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
30 Jul, 2024
How to declare a module in TypeScript ? 30 Jul, 2024 A module is a piece of code that can be called or used in another code. There is nothing new about modules in Typescript. The concept of the module was introduced by JavaScript with ECMAScript 2015 release. Typescript is just re-using this feature. Will the code not work without Modules? Of course, it will. The code will still work. But there are major drawbacks with the code that is not modularized. Let’s say we created a very basic chatting application that can either send or receive text messages. Initially, we have added our entire code in just 2-3 files and the application is working great. Later we decided to add a feature to record and send audio messages also. For this, we again added more code into the same files and the application is still doing great. Later we decided to add features like share images or share videos or maybe some large documents as well and we kept on dumping code into the same files or maybe 1 or 2 extra files. Now there is a problem. Here are few issues that we can foresee: Our app will start becoming slow (or super slow at one point).Frequent crashing of the application causing potential loss of dataCode base will become spaghetti (impossible to maintain)Bug fixing or debugging is another big issueNightmare for the testing teamAll the above problems (and more) can be solved if we just make our code more modular. Development efforts without using module: Let’s mimic a scenario. We want to buy some fruits. Maybe Apple, Kiwi, and Strawberry. We’ll create 3 separate classes for all 3. Since all 3 are fruits so they share some common features like name, color, and quantity. So we’ll create one more class (as a data type) with one method. Let’s create classes one by one. 1. Creating Apple class: Right-click into project folder and click ‘New file’. Call it apple.ts. First we will define Fruit class here to be used as data type for apple and In the same file We will define class for Apple also: JavaScript class Fruit { // Properties that every fruits have name: string; color: string; quantity: number; // To initialize the values constructor(name, color, quantity) { // Initialize values using this operator } myCart() { // A simple placeholder text console.log("I have " + this.quantity + " " + this.color + " " + this.name + " in my cart"); } } class Apple { // Initialize Fruits class with values fruits: Fruits = new Fruits(..., ..., ...); constructor() { // call method to see everything is correct this.fruits.myCart(); } } // initialize apple class and call // its constructor automatically var obj: Apple = new Apple(); We will do the same procedure for Kiwi class 2. Creating Kiwi class: Right-click into project folder and click ‘New file’. Call it kiwi.ts. First we will define Fruit class here to be used as data type for kiwi and In the same file we will define class for Kiwi also: JavaScript class Fruit { // Properties that every fruits have name: string; color: string; quantity: number; // Initialize the values constructor(name, color, quantity) { // Initialize values using this operator } myCart() { // A simple placeholder text console.log("I have " + this.quantity + " " + this.color + " " + this.name + " in my cart"); } } class Kiwi { // Initialize Fruits class with values fruits: Fruits = new Fruits(..., ..., ...); constructor() { // Call method to see everything is correct this.fruits.myCart(); } } // Initialize kiwi class and // call its constructor automatically var obj: Kiwi = new Kiwi(); 3. Creating Strawberry class: Right-click into the project folder and click ‘New file’. Call it strawberry.ts. First we will define Fruit class here to be used as the data type for strawberry and In the same file we will define class for Strawberry also: JavaScript class Fruit { // Properties that every fruits have name: string; color: string; quantity: number; // Initialize the values constructor(name, color, quantity) { // Initialize values using this operator } myCart() { // A simple placeholder text console.log("I have " + this.quantity + " " + this.color + " " + this.name + " in my cart"); } } class Strawberry { // Initialize Fruits class with values fruits: Fruits = new Fruits(..., ..., ...); constructor() { // Call method to see everything is correct this.fruits.myCart(); } } // Initialize strawberry class and // call its constructor automatically var obj: Strawberry = new Strawberry(); Reduced development efforts using modular approach: There is a major flaw in the above approach. Yes, you are right. Redefining the same Fruits class, again and again, is painfully stupid. That’s where the module comes into the picture. What if we keep Fruits class in one file and call it one module and then just call that class/module wherever required. This will save a considerable amount of time and effort of developer. Let’s do that quickly. Step 1: Create a new file called Fruits.ts Step 2: Remove Fruits class definition from all 3 classes Step 3: Paste it at only one location i.e. file Fruits.ts JavaScript export class Fruit { // Properties that every fruits have name: string; color: string; quantity: number; // Initialize the values constructor(name, color, quantity) { // Initialize values using this operator } myCart() { // A simple placeholder text console.log("I have " + this.quantity + " " + this.color + " " + this.name + " in my cart"); } } console.log("Hello world!"); Notice that we are using the export keyword in the first place. Export keyword actually makes it possible for our class (or interface) to be used somewhere else in the project. In parallel, we use Import statement in the module that wants to use the exported module. Also notice that we have added one console log statement at the end of the file. It’s not required, but we want to tell you an important fact later in this article itself. For now, you can just ignore it and assume it is not there. Now when we have our module ready. We can just call it in our classes. Technically we call it ‘importing‘ and we use a keyword called ‘import‘. Syntax: import {classname} from './location';Let’s import the same quickly: Filename: Apple.ts JavaScript import { Fruits } from './main'; class Apple { fruits: Fruits = new Fruits('apples', 'green', 5); constructor() { this.fruits.myCart(); } } var obj: Apple = new Apple(); Filename: Kiwi.ts JavaScript import { Fruits } from './main'; class Kiwi { fruits: Fruits = new Fruits('kiwi', 'golden', 2); constructor() { this.fruits.myCart(); } } var obj: Kiwi = new Kiwi(); Filename: Strawberry.ts JavaScript import { Fruits } from './main'; class Strawberry { fruits: Fruits = new Fruits('strawberries', 'red', 5); constructor() { this.fruits.myCart(); } } var obj: Strawberry = new Strawberry(); See how clean it looks. It’s easy to understand and easy to maintain now. That’s the whole idea behind the modular approach. Some Left over points: We have added one console statement at the last. There is the reason for that. Let me first show you the output. OutputSee every time we run the files, we are getting a class-specific output but also we are getting “Hello world!” The reason is that it doesn’t belong to the exported class. Then why it was called. The reason is whenever we import a module, the entire module is once executed as one simple program and every line inside the file will get executed no matter it is inside the export class braces or not. So be careful what you put in there. In an expert’s opinion, there should be no stray line of code. Use them in some method or just remove those statements if they are not required. Summary: So, the module is nothing but a concept or approach where a piece of code is kept separated and exported explicitly so that other pieces of code can import it. We use export keywords to make a class available publicly and we use import to use that exported module. How to execute the code: First we will run: tsc apple.tsThen we will run: node apple.jsThis is so because not all browsers understand Typescript like they understand JavaScript. So the Typescript first has to be compiled into JavaScript that’s why we use node command for that. We can also club the two commands together using the AND operator: For Linux: tsc apple.ts && node apple.jsFor windows I can use pipe operator: tsc apple.ts | node apple.jsSimilarly, I can run Kiwi and Strawberry classes. Final output: https://media.geeksforgeeks.org/wp-content/uploads/20240730171820/file.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.
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?
https://www.geeksforgeeks.org/how-to-declare-a-module-in-typescript/?ref=next_article
PHP
How to declare a module in TypeScript ?
jQWidgets jqxSortable disabled Property, Node.js Stream transform.destroy() Method, jQWidgets jqxSwitchButton enable() Method, Convert string into date using JavaScript, jQWidgets jqxSplitter height Property, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxTree checkAll() Method, jQWidgets jqxScrollBar rtl Property, jQWidgets jqxScrollBar step Property, jQWidgets jqxTabs position Property, jQWidgets jqxTooltip height Property, jQWidgets jqxTreeMap width Property, jQWidgets jqxTree collapseItem() Method, jQWidgets jqxTabs keyboardNavigation Property, jQWidgets jqxTree destroy() Method, jQWidgets jqxTree collapseAll() Method, jQWidgets jqxSortable opacity Property, jQWidgets jqxScrollView buttonsOffset Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, jQWidgets jqxTabs disabled Property, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Node.js date-and-time Date.transform() Method, jQWidgets jqxListBox enableHover Property, jQWidgets jqxSlider height Property, jQWidgets jqxSwitchButton onLabel Property, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, jQWidgets jqxToolBar theme Property, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxSplitter orientation Property, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxSlider buttonsPosition Property, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, jQWidgets jqxSwitchButton orientation Property, jQWidgets jqxToolBar tools Property, jQWidgets jqxSlider rtl Property, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTooltip opacity Property, jQWidgets jqxTree width Property, jQWidgets jqxScrollBar showButtons Property, jQWidgets jqxScrollView showButtons Property, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, jQWidgets jqxTree clear() Method, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView disabled Property, jQWidgets jqxScrollView animationDuration Property, jQWidgets jqxToolBar height Property, PHP, jQWidgets jqxSplitter destroy() Method, jQWidgets jqxTreeMap destroy Method
GeeksforGeeks
[-0.0161825418, 0.016067246, -0.0157790072, 0.0259414781, 0.0074200863, -0.0252661761, 0.0158284195, 0.0249367617, -0.0224167313, 0.029433284, 0.00161928358, -0.00529947365, 0.0398263447, -0.0347204059, -0.00473123183, -0.0025365, -0.0130942706, 0.0067447843, -0.0521464907, 0.0176566765, 0.0137613369, 0.0181178581, -0.0567583069, -0.0261555985, -0.0314427204, 0.0067983144, 0.000587286253, 0.0130942706, -0.0655207634, 0.00603242312, -0.0145436991, 0.0138272196, 0.0198143478, -0.0189578682, -0.0255955923, 0.00419387221, -0.0041321069, -0.0130119165, -0.0464805402, 0.018150799, 0.0208684783, -0.011002481, 0.000645448687, 0.0119989635, -0.0197155233, 0.0427252054, -0.02132966, -0.0525088459, 0.0291368105, -0.0209014192, -0.0230426211, 0.0202425886, 0.0490170419, 0.0231908578, 0.00548065221, 0.0018478157, 0.028362684, -0.0386733934, 0.00642772205, -0.0067159608, 0.0512241274, -0.0728008449, 0.00110663055, -0.030981537, 0.016684901, 0.0423628464, -0.0537935682, 0.0548477, 0.0233720373, -0.00343621662, -0.00432358, 0.0257108882, 0.0172119662, 0.022482615, 0.0115130758, -0.00921540149, 0.0121307299, 0.0412098914, 0.00663772458, 0.024788525, -0.00274650264, -0.0107636545, 0.0065759588, 0.0178049132, 0.0092071658, -0.00193119899, -0.0339298062, -0.0592948087, 0.0296803452, 0.0210825987, -0.000778244343, 0.023833219, 0.0249532312, -0.0073212618, 0.001923993, 0.0282968, 0.0192049295, -0.00770420721, -0.0121966125, 0.0215602517, 0.0343580469, 0.0368616059, -0.00116119, -0.0466123074, -0.00252002943, -0.0306521226, 0.0263861902, 0.0287250411, 0.0710220039, -0.00480123237, 0.00844127499, -0.00456652371, -0.0367957242, 0.0283462126, -0.0132425074, 0.00101192354, -0.0309321247, -0.0867021903, 0.00230796798, 0.00863892399, 0.0050812359, -0.0054188869, -0.0152601777, 0.0412757769, -0.0471064299, 0.0401228219, -0.016462544, -0.0215602517, 0.00520064868, 0.0114389565, -0.0161907766, 0.00200428814, 0.00672419602, 0.0132589778, 0.0325462632, -0.011002481, 0.0210002456, 0.0509935357, -0.0373557284, -0.0217249598, 0.025365, -0.00328180287, -0.0128883859, 0.00289062201, 0.00344651076, -0.0057318313, -0.00877892599, 0.0471064299, -0.0116530769, 0.0171131399, -0.0411440097, -0.0198967028, 0.0176402051, 0.00560418284, 0.0286426861, 0.0222520232, 0.00095684937, 0.015391944, -0.0279509146, 0.00497829309, -0.00582242059, -0.0493793972, 0.00641948637, 0.00890245661, 0.012970739, 0.00536123896, 0.0354780592, 0.00487123337, -0.0360380672, 0.0351486467, -0.0287909247, 0.0138519257, 0.0235038027, 0.0305368267, -0.0120236697, -0.0277862065, -0.00354533549, 0.0102777667, -0.0117354309, -0.0140248695, -0.0262214821, -0.0135966288, 0.0301579982, 0.0141978124, 0.0190731641, 0.027209729, 0.0225320272, -0.00175310869, -0.0374545529, -0.0429228544, 0.00291532814, 0.0155484164, 0.0599207, 0.0132425074, 0.013366038, 0.024508521, -0.0572194904, 0.0217908416, -0.010887186, 0.0217579, 0.0045212293, -0.0338968672, -0.00569065474, 0.0129295625, 0.0156966541, -0.018908456, 0.00949540455, 0.00254679448, 0.0672007799, 0.00350827607, -0.0276214983, 0.026732076, -0.0141648706, -0.0153178256, 0.00733361486, -0.00267856056, 0.0135389809, 0.00343209878, -0.0254308842, -0.0152437072, 0.0042371084, -0.00949540455, -0.0112742493, -0.0165037215, -0.0464476, -0.0203743558, -0.00542712212, -0.00320562557, 0.0248873495, -0.0166684296, 0.0645984, 0.0365321897, -0.0177060887, -0.0154660624, 0.0118424911, 0.00913304742, 0.0383110344, 0.00677772611, -0.0182002112, 0.0609418862, 0.0104424749, -0.00176031468, -0.0357745364, -0.0367298387, -0.0211649518, 0.00972599536, 0.00904245861, 0.0494452827, 0.00571536086, 0.0110354228, 0.00256738276, -0.015054293, 0.0143707553, 0.0212143641, -0.0375533774, 0.0100142341, 0.00584712718, -0.000960967096, -0.0107142422, -0.0130448584, 0.00938834436, 0.00783597399, -0.0189908091, 0.00180457986, -0.00344239315, -0.0260238331, 0.0235367455, -0.018908456, -0.0386404507, 0.00475593796, 0.0466452502, -0.0723396689, 0.0266661923, 0.0269461963, -0.0388381, 0.00424946146, -0.0171296112, 0.0314427204, 0.00941305049, 0.0429228544, 0.00471887831, -0.029910937, 0.0367298387, 0.0240473393, -0.0147825256, -0.0313274227, 0.0085730413, 0.00656360574, -0.0324474387, -0.00871304236, -0.0285273921, -0.000239855741, 0.00741185108, -0.0109530687, 0.0510923602, -0.00109633629, 0.00233267434, 0.0134978043, -0.0195672866, 0.00964364223, -0.00770832505, -0.0393981077, -0.00768773677, -0.0138025135, -0.0315909572, 0.0237343945, 0.00906716473, 0.00257561821, -0.0111013055, 0.0148648787, 0.0288568065, 0.0118589615, -0.0550782904, -0.0341603979, -0.0541888662, 0.0355110019, 0.0544194579, 0.00189928687, -0.0215602517, -0.00675713737, -0.00535712112, -0.00900128111, -0.0351157039, 0.0197155233, 0.0846598074, -0.0116036646, -0.0107718902, 0.0330403857, 0.0153507674, 0.00404563546, -0.02025906, -0.031656839, 2.91616452e-05, 0.0105083575, 0.0189249273, -0.0331721529, -0.0131354472, -0.0125672054, -0.0432522669, 0.0329580307, -0.0103436504, 0.0138025135, -0.0110354228, -0.0236190986, 0.00983305555, -0.0558688864, -0.0111507177, 0.0337156877, 0.0155978287, 0.0173766725, 0.00170060806, 0.033682745, 0.0555724129, -0.0046035829, 0.0356757082, 0.00571947824, -0.0194025785, -0.0285109207, 0.0330403857, 0.0439440422, 0.0080748, -0.00766303064, 0.0135636879, 0.0320027247, 0.0228943843, -0.02470617, -0.0096848188, -0.0202755313, -0.0226143803, -0.00437299209, -0.0131519176, 0.0071524363, 0.00543535734, -0.0131766237, -0.0196166988, -0.0243767556, 0.00381092681, 0.00219267257, 0.00293797534, 0.0156554766, 0.0136789829, 0.0655207634, 0.0244755801, 0.0333203897, 0.00391592784, -0.0154413562, -0.00553829968, -0.0321509615, -0.00983305555, 0.00355151203, -0.0239979271, 0.0101130586, 0.0118095493, 0.00482182112, 0.0242944, -0.00579771446, 0.0036606309, -0.0372569039, 0.020934362, -0.0301909409, -0.00818597805, -0.0131354472, 0.0234049782, 0.00427828496, -0.0291203391, -0.0036029832, -0.0145436991, 0.00963540655, 0.0371251367, 0.0177884419, -0.00918246, -0.0157790072, -0.0694408119, 0.00441828696, 0.0388710424, 0.0428240299, -0.00469417218, 0.0347862877, -0.0270944331, -0.00624654349, 0.0417699, -0.0177225601, -0.00925657805, 0.0166684296, -0.00255708862, 0.00556712365, -0.00530359102, -0.0265014861, -0.0172284357, -0.00206811237, -0.00982482079, -0.0191555172, 0.00239443965, 0.00490005733, 0.0105824759, -0.0438122749, 0.00598712871, 0.0154084144, 0.0211155396, -0.0319533125, -0.00764655974, 0.00126927951, 0.0403534099, -0.0580100864, -0.0367627814, -0.0162401889, -0.0762926564, 0.00634948583, 0.0100471759, 0.0105165932, -0.00815303624, 0.0251508821, -0.0636101514, 0.0154825337, 0.0482923277, -0.0218896661, -0.00177472655, -0.000363643951, 0.0168990213, -0.0232896823, 0.0288238656, -0.016264895, 3.42926796e-05, 0.0349839367, -0.0279673841, -0.0215437803, -0.0233061537, -0.0188096315, -0.0321015492, 0.0148154665, 0.0190896336, 0.00518829562, 0.0546500497, 0.0360051244, 0.00528300274, 0.00070567, -0.0144860512, -0.0248214658, 0.0149225267, -0.0137119247, 0.0246896986, 0.0513888337, 0.0139589859, 0.00915775355, -0.0211484823, 0.00450064056, 0.0257767718, 0.0148319378, 0.0367957242, -0.00803774, 0.0062094843, 0.000672213733, -0.0208684783, 0.00809127092, 0.022762619, -0.0322333165, -0.0294826962, -0.014378991, 0.00204958278, 0.0438122749, -0.0116613125, 0.00180457986, -0.0317721367, 0.0389698669, -0.0190072805, -0.00439769821, -0.0314097777, 0.0174260847, -0.00868010148, -0.0211155396, 0.00411769515, -0.0114060156, 0.00739538, 0.0491158664, -0.0204731803, -0.0245908741, -0.011002481, 0.032925088, -0.00549300527, -0.00434416812, 0.0184637439, -0.021527309, -0.0288403369, -0.00533241499, -0.0196166988, -0.00874598417, 0.0207531825, -0.0265179556, -0.00310062431, -0.0506641194, -0.0292191636, -0.0139425155, 0.0143460492, 0.0336662754, -0.0126166176, -0.011002481, -0.00638242718, 0.0267814882, 0.00993188, 0.0149472328, -0.0294497553, 0.0237179231, -0.0339298062, 0.0162319541, -0.00626301439, 0.020934362, 0.0270779617, -0.0299274083, 0.00409916556, 0.024310872, -0.0189743396, 0.0222684946, -0.0232732128, 0.0025715006, -0.0234873332, -7.46332225e-05, -0.0441087484, -0.0163554847, -0.0357745364, -0.0137613369, 0.0157213602, -0.013786043, 0.0149637042, 0.0122130839, -0.00263738376, -0.0107389484, -0.0145272277, 0.0237343945, 0.00547653437, 0.0362686589, 0.015391944, -0.0189413968, 0.00493299868, -0.00405798852, 0.0252332352, 0.0384757407, 0.01795315, -0.0247226413, 0.0042659319, -0.0122872023, 0.00243767537, 0.00987423304, 0.00802950561, -0.0289226901, -0.0229273252, -0.00190649286, 0.00315621332, -0.0264356025, -0.0405510627, 0.0111095412, 0.0105083575, 0.0184472743, 0.00162237184, 0.0147660542, 0.0046900548, 0.00157913601, 0.000363901287, -0.0335839204, 0.00974246673, -0.00341768679, 0.0119907279, 0.0088695148, 0.00151119404, -0.00777832605, -0.0328097939, -0.0031891549, -0.0276709106, -0.0122460248, -0.00184678624, 0.00773714902, -0.0329745, -0.0160919521, 0.00355768856, -0.00797185767, 0.014263696, -0.000577506726, 0.00549300527, 0.0265014861, -0.00778656127, -0.013983692, 0.020176705, 0.0275556147, 0.0400569364, 0.00239855726, -0.00562065374, 0.0170637276, -0.0213461313, -0.0262050107, -0.00370798446, -0.0270450208, 0.0054188869, -0.016124893, 0.0095448168, 0.000555374136, 0.010409533, 0.0416381322, 0.031574484, -0.00655948836, 0.00105310045, -0.0173931438, 0.0225649681, 0.00457064155, 0.020061411, 0.104029447, -0.01066483, 0.0273414943, -0.0352145284, 0.0162978377, 0.0280003268, -0.0118836677, 0.00345268729, -0.00787303317, 0.00735832099, 0.0166519582, -0.0216755476, -0.0112413075, -0.00653478224, -0.0245414618, 0.0173931438, 0.0019126694, -0.0192708131, -0.0206214171, 0.0307015348, 0.0309156552, 0.0195343457, -0.00936363824, 0.000599124643, 0.0167754889, -0.00587595068, 0.0247226413, -0.0180684458, -0.0306027103, -0.00641125115, 0.0250520576, -0.0198472906, -0.0275556147, -0.00860598311, 0.014996645, 0.00778656127, -0.0162154827, -0.0218896661, -0.0170307867, 0.000835892104, 0.0143707553, -0.0243273415, -0.00942128617, -0.0366639569, -0.00624242565, -0.0306191798, 0.00108810095, 0.010409533, 0.0122872023, 0.0421651974, 0.0144695807, 0.0201931763, -0.0340615734, -0.00324062607, -0.0284779798, 0.00370180793, -0.0117024891, 0.0198472906, -0.0139178094, -0.0384428, 0.00674890215, 0.00681890314, 0.028955631, 0.00445534615, -0.0145684052, -0.0145436991, 0.000947584573, 0.0184966866, 0.00382122095, -0.011142483, 0.00385622145, 0.0106236534, -0.00145663461, -0.0144860512, -0.00579771446, -0.0656195879, 0.00409504771, -0.0199955273, -0.0121966125, -0.000996996881, -0.0177390296, -0.0289391614, -0.00465299562, -0.0403204709, -0.00738714496, 0.00337239215, -0.00776185514, 0.00700831693, -0.0134236859, 0.0469087809, 0.00773303118, -0.0126989717, 0.0130777992, -0.000371364615, -0.0178378541, -0.0317886062, 0.00996482186, 0.0339627489, 0.0166931357, 0.00350209954, 0.0096848188, -0.00605301186, 0.0128719145, 0.0184966866, 0.00407034159, -0.0239814557, -0.00479711452, -0.0193366967, -0.0450311117, 0.0181178581, -0.0215931926, 0.015136647, 0.00386239798, -0.0138683971, 0.0125424992, 0.0129542686, 0.0111836595, 0.0084742168, 0.000200866314, -0.0141072236, 0.0150131164, 0.0202261172, -0.0224661436, -0.0159848928, -0.0238661598, 0.0125507349, -0.00777009036, 0.0262873657, 0.0194190498, 0.0223837905, -0.0039982819, 0.00170987286, -0.0192378704, 0.00209796568, -0.0428899117, -0.00316033093, -0.00224208506, -0.00615183637, -0.0100554116, 0.0105577698, 0.00222561415, 0.0300591737, -0.0126825, 0.0241955761, -0.0175907928, -0.000823024311, 0.0402545854, -0.00677772611, -0.00233061542, 0.0100059994, 0.011620135, 0.00339092198, -0.0133001553, -0.0168331377, -0.0127566196, -0.0150213512, -0.0524100214, -0.00596242258, -0.0254308842, 0.0189578682, 0.0393322222, 0.0285273921, -0.0208849497, -0.0261226576, -0.031376835, -0.0152107654, 0.0186778642, -0.000199450849, 0.0260732453, -0.021807313, 0.0511911847, 0.0253320597, -0.0151613532, 0.0444381647, 0.0426593199, -0.0204072967, 0.0399251729, 0.0248214658, 0.00264356029, 0.0429557934, -0.01688255, -0.0124848513, 0.0312450696, 0.0299438778, 0.00201458228, 0.0208355375, 0.00804597605, -0.011480134, -0.0125095574, -0.0549465232, 0.0365321897, -0.0248049945, 0.0231085047, -0.00124560273, 0.00156060641, 0.0255297087, 0.0126248533, -0.0185131561, -0.0125589697, 0.0206049457, -0.00963540655, -0.0244426373, 0.00795950461, -0.0118342554, 0.0083053913, 0.0400569364, -0.00195590523, 0.0498405807, 0.0181343295, 0.0257932413, 0.0297627, 0.0113813095, 0.0154084144, -0.0128719145, 0.00919069536, 0.0177884419, 0.00491652777, -0.00409504771, -0.00337445107, 0.0193202253, -0.00896834, 0.00567418383, 0.0105989473, -0.0210331865, -0.00341974571, -0.0294003431, 0.00726773171, 0.0034568049, -0.0166766644, 0.00697537558, 0.0382122099, -0.00630007358, 0.00845774543, -0.0119330799, -0.00989893917, -0.0222520232, 3.0480594e-06, 0.0396616384, -0.014321343, -0.00344856968, -0.028955631, 0.0102860024, 0.0289062187, 0.0182166826, -0.0250026435, -0.000253881648, -0.0162401889, -0.000280517968, -0.00628360268, 0.00748185208, -0.0122130839, -0.00106030644, 0.0145931114, -0.0105824759, 0.010804832, 0.00531594409, 0.0114718983, 0.0161743052, 0.000240627807, 0.00767538371, 0.0135389809, 0.0196990538, -0.00841245055, -0.0115871942, 0.00691772765, -0.0200449396, 0.00571536086, 0.0102777667, 0.0263861902, -0.0369933732, -0.0207202416, 0.00624242565, -0.0127319135, -0.0192049295, 0.0142884022, 0.0185955111, 0.00115089573, -0.0395298712, 0.000600668776, -0.0113071902, 0.0199131723, -0.00933069736, -0.00696302252, -0.0241296925, 0.0011838373, -0.0114883687, 0.0128883859, -0.0128883859, 0.0367298387, 0.00931422599, -0.00127854431, -0.0259744208, -0.0150625287, -0.016742548, 0.0320191979, -0.0642360449, 0.00723890774, 0.0127566196, 0.0328427367, -0.00703302305, -0.013786043, -0.0299274083, -0.00564124202, -0.011900139, 0.0386404507, 0.000114073024, 0.0296803452, -0.0113236615, 0.0134566277, -0.0150131164, -0.0178049132, 0.00573594915, -0.0258097127, -0.0235367455, 0.0271932576, -0.0165778399, 0.0264520738, 0.00303062354, 0.0139095737, -0.00904245861, 0.00251797051, 0.0258920658, 0.00812833, -0.0135801584, -0.00770420721, -0.0236685108, -0.0211978946, -0.00301827048, -0.0184802152, 0.0113566034, -0.0067447843, -0.00495358696, -0.0243767556, -0.0134895686, -0.0362027735, 0.00926481374, -0.0297956411, -0.0010036882, -0.0424616709, -0.0134401564, -0.0291532818, 0.0170472581, -0.0149719389, 0.0193366967, -0.0211484823, -0.0422969647, 0.00837539136, 0.0112742493, 0.00425357884, 0.0183978621, 0.015531946, -0.0428240299, -0.0157625359, 0.0256120637, 0.0311791878, 0.000348202593, 0.0117683727, -0.0207202416, -0.0197155233, -0.0186943356, 0.0284944493, 0.0344898142, 0.0217414293, 0.0468429, -0.0133742737, -0.0239485148, 0.0212802477, -0.0302568227, -0.0342592224, -0.0181343295, 0.00152251776, -0.0126083819, 0.0112330718, 0.0329415612, 0.0383110344, 0.0183978621, -0.00241708709, -0.00170678459, -0.00259208912, 0.0252002943, -0.0104836514, 0.00852362905, 0.0116366064, -0.00539829815, -0.0221531987, 0.0115871942, -0.0178213846, -0.0129295625, -0.00855657, 0.0036256304, 0.0169813745, 0.0199296437, -0.00530359102, 0.00364416023, -0.0610077716, -0.00085030403, -0.0124189686, 0.0115707228, 0.00340739265, -0.0113977799, -0.00460770074, -0.0190731641, 0.0053488859, 0.00131663296, 0.0254144147, -0.0070742, 0.0119166095, -0.00173046137, -0.0104424749, -0.00638242718, -0.0249532312, 0.0149307624, -0.00414034259, -0.0164460745, -0.0233226251, 0.0143131083, 0.0142884022, -0.0208355375, -0.0128472084, -0.00904245861, 0.000841039233, -0.00743243936, 0.0135801584, 0.0304380022, 0.0142801665, -0.000859054155, 0.00946246367, 0.0198967028, -0.017360203, 0.0114554279, 0.00260650087, 0.0131519176, 0.0124024972, 0.0232567415, -0.00482593849, -0.00494946958, -0.012015434, -0.0113648381, -0.00122295541, 0.0513229519, 0.0221696701, -0.0279838555, -0.0237179231, 0.0105907116, -0.0154907685, -0.0107142422, -0.033007443, -0.00149163499, 0.0130448584, -0.00719361333, 0.0175743233, 0.00237385114, 0.0147413481, 0.0160013624, 0.0897987, -0.0030203294, -0.0168990213, -0.0251014698, 0.00323650823, -0.0196990538, -0.017475497, 0.0165696051, 0.0190237518, -0.00569889, 0.0215931926, -0.00201561162, -0.0152190011, 0.00183752144, -0.0232896823, -0.0154331215, -0.0124189686, 0.0064071333, 0.0210002456, -0.0248049945, -0.00864716, 0.00938011, 0.00749832252, -0.00571536086, -0.0113813095, 0.00332503882, -0.0110189524, -0.0229273252, -0.0396616384, 0.00184369797, -0.00164501916, 0.00705772918, 0.0363345407, 0.0231085047, 0.0296474043, 0.0409463607, 0.0111918952, 0.00533653283, -0.010467181, 0.00959422905, 0.0127319135, -0.00301827048, -0.0347204059, 0.00310680084, 0.0127236778, -0.0232896823, 0.00219267257, -0.0119907279, -0.020654358, 0.00702890567, 0.00264561898, 0.000156987124, -0.00573594915, -0.0223343782, -0.0190402213, 0.00833833218, -0.00800891686, -0.00810774136, 0.0153754735, -0.0234543905, 0.00129398564, 0.00970952492, 0.00720184855, -0.0168331377, -0.00476417318, 0.00826009642, -0.0223014355, -0.00652654655, -0.0143954623, -0.0031315072, 0.000849274627, 0.0165037215, -0.00248502893, 0.0080665648, -0.0179696213, -0.00546006346, -0.019386109, -0.00704125874, 0.00522535481, -0.00991541, 0.00830950867, 0.0149225267, -0.0134648625, -0.0178049132, -0.0151613532, -0.00937187392, -0.0109201269, 0.000495667569, -0.00558359455, 0.0126825, -0.0164543092, -0.00450887624, -0.00957775861, 0.0327439122, -0.0012373674, -0.0296144634, 0.0320027247, -0.00417946046, 0.00888598617, -0.00297091692, -0.000310628617, 0.0158448908, 0.0109777749, 0.00877892599, 0.0358733609, 0.013843691, 0.0139589859, 0.00469829, -0.0220708456, 0.0183649193, 0.0461840667, -0.00228326186, 0.00301003503, -0.0175743233, 0.019386109, -0.0035268059, 0.00408887118, 0.0319862552, 0.00528300274, -0.0148978205, -0.020934362, 0.0324474387, 0.0138107492, -0.0210331865, 0.013168389, 0.00673243124, 0.0143295787, 0.0299274083, -0.00883657392, -0.0142060481, -0.0129460329, 0.00297091692, 0.0120648462, 0.0114554279, -0.0101707065, -0.00488358643, 0.000783391471, 0.022202611, 0.0111918952, -0.0271438453, -0.00201972947, -0.00292356359, -0.0304709431, 0.00861421786, -0.00255297101, 0.0034918054, -0.0118836677, 0.0136954533, 0.0276709106, -0.00430299155, -0.0259908903, -0.00882010255, -0.00144736981, 0.00212473073, 0.00672007818, -0.00201355293, 0.021412015, -0.012970739, 0.00465711299, -0.0101871779, -0.00635360368, 0.0277532637, 0.0269626677, -0.011562488, 0.00271973759, 0.0179366805, -0.0162566602, -0.0174919683, -0.0112660136, 0.00780715, -0.00783597399, -0.0118013136, -0.00235120393, -0.0170143154, 0.0228614435, -0.0123036727, 0.0432193279, 0.00455005281, 0.0273085535, 0.00865539536, -0.0316074267, -0.00325915567, -0.0170966703, -0.00202178815, -0.00490417471, -0.00776597299, 0.00548476959, -0.00562477158, -0.00914128311, 0.0134319216, 0.000693316921, 0.00939658, -0.00879539642, -0.010146, 0.0347862877, -0.0114307217, 0.00648948736, -0.00871304236, -0.00412593037, 0.00812833, -0.0251014698, -0.0132178012, 0.0105248289, 0.0144119328, 0.00201767054, 0.0135801584, -0.0281156227, 0.0190566927, 0.0297462288, -0.00136295706, 0.0145025216, 0.00417946046, -0.00894363411, -0.0150460573, 0.0434499197, 0.00299974089, -0.00233267434, -0.00204649451, 0.014798996, -0.0101212943, -0.0302403532, 0.00032118021, -0.00745302811, 0.000981555553, -0.0160425398, -0.0190896336, 0.00218031951, 0.00641536899, 0.0109118922, 0.0260073617, -0.0260732453, 0.00895186886, 0.0402216464, -0.0232732128, 0.00823539, 0.0107389484, -0.0180519745, -0.0307344757, -0.0254802965, 0.0079965638, 0.00162031304, 0.0171790235, 0.0039056337, -0.00771656074, 0.0146342879, 1.15247203e-05, 0.0107060075, -0.0128554441, -0.0216590762, 0.00184575678, -0.0112330718, -0.00742832199, -0.00330650923, -0.0328097939, 0.0220708456, -0.0149307624, -0.00159251853, -0.0182002112, -0.00459123, -0.0228614435, 0.00638654502, 0.00694655161, -0.01350604, -0.0023450274, -0.0121307299, -0.00279591489, -0.0146095818, -0.00562888896, -0.00871304236, -0.0123695564, -0.00781950261, 0.0203743558, 0.0175907928, 0.0011282484, -0.0219061375, 0.00299562304, 0.0109036565, -0.00351857045, -0.0161825418, -0.0112413075, 0.00115604291, 0.0107718902, 0.00844951067, 0.0058553624, -0.0231908578, 0.0479299687, 0.0078565618, 0.0227790885, -0.0083630383, -0.0321674347, 0.0112577779, 0.00238002767, 0.00779479695, -0.0136625124, -0.0348851122, 0.0423299037, 0.0138848675, 0.0149142919, -0.00487946859, -0.00451299362, 0.00122398487, -0.0156801827, -0.0250026435, 0.00678184396, 0.0185296275, -0.00310885976, 0.00617242465, -0.0171131399, 0.00210002437, 0.00445946353, -0.00197752309, -0.040584, -0.00543124, -0.0173766725, -0.020061411, 0.00111177762, 0.0134566277, -0.000179891809, -0.00213914248, -0.01795315, 0.00449652318, -0.020176705, 0.00617242465, 0.0165613703, 0.000794200459, -0.00901775248, -0.022877913, -0.00144531101, 0.00588418636, 0.000589859788, -0.00296885823, -0.0308497716, -0.000782876799, 0.0189908091, -0.017277848, 0.0105907116, 0.0044059339, -0.0320356674, 0.00630007358, -0.00464887777, -0.0378169119, 0.0114142504, -0.00855657, 0.0126248533, 0.0150131164, -0.0128225023, -0.00464476, 0.0344568714, -0.0051265303, 0.0154907685, -0.0140578113, 0.00083898037, -0.000230590929, -0.00839598, 0.0127977962, 0.00892716274, -0.00215355447, 0.0260238331, -0.0124189686, -0.0029091516, 0.0029091516, 0.00344445184, -0.0159684215, -0.00736655621, -0.00136604533, -0.00801715255, -0.0115213105, -0.0116942544, 0.0319862552, -0.00319121359, -0.0163637195, 0.00663772458, 0.0392004587, 0.00883657392, 0.0158366542, 0.0163554847, 0.0224002618, 0.00742832199, 0.00623419043, -0.0320686102, -0.0186613947, -0.0139672216, -0.024228517, -0.0267979596, -0.0246073455, -0.0166272521, -0.0164460745, 0.00956128817, -0.00230796798, 0.0148978205, 0.0260073617, 0.0104424749, 0.0254144147, 0.027885031, -0.0427581444, 0.00201252336, 0.000130608139, 0.0126413237, -0.0131025054, 0.0016439897, -0.0024788524, 0.0134730982, -0.0185296275, 0.00072625844, 0.00388298649, -0.00564947771, 0.00715655414, -0.0154495919, 0.0129377982, -0.0092071658, 0.0181178581, -0.0147001715, -0.0145354634, -0.0147825256, 0.00500299968, 0.0062383078, 0.00390769262, 0.0416051894, 0.0081653893, 0.00216384884, 0.00345886382, 0.0122295544, 0.00868833624, 0.00481358543, -2.42236274e-05, -0.0291532818, 0.0317391939, 0.00457064155, 0.0165284276, -0.0050812359, -0.00609830627, 0.00218855496, 0.011002481, -0.0138601614, -0.0350827612, -0.00464064209, -0.017080199, -0.00928128418, -0.014123694, 0.0298121125, 0.0105001228, -0.00242738123, 0.000561550667, 0.00289885723, 0.0033579804, -0.0151119409, 0.00146281114, 0.0109036565, -0.00209178915, 0.00910010561, 0.0165201928, 0.00524594355, -0.0112413075, 0.0186613947, -0.0217249598, 0.000290297496, 0.0037718087, -0.0284944493, 0.0362686589, 0.0147495838, -0.0123695564, -0.0176731478, 0.00241708709, 0.00507711805, 0.012493087, 0.0103024729, 0.0088695148, 0.00802127, -0.0135142747, -0.00683125621, 0.00555888843, -0.0380145609, 0.00089559867, -0.00636595674, 0.020176705, 0.0100965882, 0.00119001383, 0.00583889149, -0.00690537458, -0.00719361333, -0.011480134, 0.0166684296, 0.0028165034, -0.00145251688, 0.00800479949, 0.0368616059, -0.0146507593, 0.0103765912, -0.00222767307, 0.0193202253, 0.0151613532, -0.0151448827, 0.00443887524, -0.00195590523, 0.0144860512, 0.00562888896, -0.010887186, 0.0111342473, -0.0206049457, -0.0272591412, -0.0214449558, -0.0128060319, 0.00950364, 0.012295437, 0.00445122831, 0.00560418284, -0.0145766409, 0.00882010255, 0.00486299768, 0.0237673353, 0.0103765912, -0.025579121, -0.00415063649, 0.00723479036, 0.0221367292, -0.00264150137, -0.00863892399, -0.00513064815, 0.01404134, 0.017360203, 0.0203743558, -0.0253155883, 0.0100059994, -0.012353085, -0.00330650923, 0.00865539536, 0.0115871942, 0.0037718087, -0.00101192354, -0.00828892, 0.0022173787, 0.00902598724, 0.000883245608, -0.00523770833, -0.00264150137, -0.0144448746, 0.000342540763, 0.0072224373, 0.0197319947, 0.0269956086, -0.00815303624, 0.0353792347, -0.0295485798, -0.00525417877, -0.0156637114, -0.0079965638, 0.0181343295, -0.0220708456, -0.00769597199, 0.0127401482, 0.00510182418, -0.0127236778, 0.00811186, 0.0218567252, 0.0105330637, 0.00237796898, -0.00311709521, -0.00174899097, -0.0111260116, 0.0143707553, -0.00422063749, -0.0243602842, 0.00296885823, -0.0233226251, 0.00185090397, -0.00770832505, -0.0184143316, 0.0025323825, -0.00870480761, -0.0104012974, -0.00846598111, 0.0220214333, 0.00501535274, 0.0109201269, 0.0119330799, 0.0116860187, -0.0173107907, 0.000969202491, 0.00406416506, -0.0021062009, -0.0124766156, -0.00393239874, 0.000440593372, -0.023157917, 0.0192378704, 0.012575441, -0.0154495919, 0.018035505, -0.00549300527, 0.0144201685, 0.015729595, -0.0057318313, 0.000713390647, -0.000288238662, -0.02132966, -0.00698772864, -0.0206873, -0.0152107654, 0.00273620826, -0.0084330393, -0.0156225348, -0.00176546175, 0.00562888896, -0.00914128311, -0.011142483, -0.0233226251, -0.00316650746, 0.00235120393, -0.0266661923, 0.00118486676, 0.0100883525, -0.0277367942, 0.000748905761, -0.0212802477, 0.00509358896, 0.0144119328, 0.00155854761, -0.00674066693, 0.00482593849, 0.00447181705, 0.0108707147, -0.00387681, 0.0124272034, 0.00427004974, -0.00182722718, -0.00329621485, -0.00564536, -0.00896834, -0.00977540761, 0.000824053714, 0.00023226373, 0.00141957542, 0.00600359915, -0.00544359302, -0.00673654908, 0.0257932413, 0.00719361333, -0.00318709598, -0.0237343945, -0.00350827607, 0.00802127, 0.0210167151, -0.00923187193, -0.0297132879, -0.00788126793, -0.0127813257, -0.00627536746, -0.00905069336, 0.0173766725, 0.00186531583, 0.0293674, 0.0281815045, -0.0083342148, 0.00367504288, 0.00896010455, -0.0113318972, 0.0103518851, 0.0102365902, -0.00894363411, -0.0186943356, 0.00940481573, 0.0104918871, -0.000590889249, 0.00905892905, 0.000825083174, -0.00220296695, -0.00583889149, 0.00506064715, -0.0039632814, 0.010211884, 0.0134154502, -0.0142801665, 0.00399004668, -0.00168619608, -0.0112413075, 0.0294497553, 0.0250026435, -0.00501535274, -0.0140495757, 0.00720596639, -0.0115377819, 0.00290709268, 0.00577712618, -0.0216920171, 0.0127154421, -0.0324968509, 0.00860598311, 0.00381916226, -0.00471887831, 0.0161084235, -0.00949540455, -0.00199399376, -0.00791009236, -0.00598712871, 0.002835033, -0.0198802315, -0.0155648869, 0.0201272927, 0.0195672866, 0.0155237103, 0.0355110019, 0.00563712465, -0.0267156046, 0.0175743233, 0.0196166988, -0.00406004721, 0.00845774543, -0.00225649681, -0.00351857045, 0.020061411, 0.0184802152, -0.00894363411, 0.000713905378, 0.00400651712, 0.00628772052, 0.0106730657, -0.0117930789, 0.00439358084, 0.0216426048, 0.0270285495, -0.000354379124, 0.0143378144, -0.0273744371, -0.000430813845, -0.0277862065, 0.00189516915, 0.0114718983, -0.0161413644, 0.0100636464, -0.0032118021, -0.0201931763, 0.0250520576, 0.0121142585, -0.00945422798, -1.901217e-05, 0.0196661111, 0.00315003679, -0.0113154259, 0.0188919846, 0.0159025379, -0.00805009343, 0.0092071658, -0.0114307217, 0.00769597199, -0.00852362905, 0.00368121942, 0.0288732778, 0.0101130586, -0.00323444954, 0.0251014698, -0.00424122578, -0.0154413562, 0.00140722224, -0.022877913, 0.02701208, 0.00128780911, -0.00986599736, 0.0225649681, 0.00947069842, -0.000493608706, 0.00250149984, 0.00263944245, 0.0125095574, 0.00301827048, 0.00491652777, -0.0251014698, 0.0032118021, -0.00325092021, -0.000742214557, 0.00505241193, -0.0105742412, -0.00890245661, 0.00989893917, -0.00504005887, -0.0126413237, 0.0189908091, -0.0174096152, 0.00401063496, 0.00676949043, -0.00960246474, 0.0197155233, -0.0263861902, 0.00649772258, 0.0138766319, -0.00421446096, -0.0110601289, 0.00699596386, -0.0016234013, 0.014378991, -0.00198884681, -0.0101212943, 0.0238496903, 0.0058553624, -0.0111095412, 0.0265014861, -0.00952011067, -0.00430710893, 0.0117683727, 0.00531594409, -0.00169649033, -0.0063083088, -0.0212967191, -0.00929775555, -0.0141648706, 0.0124683809, -0.0157213602, 0.0282473881, -0.0105330637, -0.00765067758, -0.0100471759, -0.00700008171, 0.0101954127, -0.00945422798, 0.00733773271, -0.0113236615, -0.0074200863, 0.00609830627, 0.00573594915, -0.00263532484, -0.0171625521, 0.0264685433, -0.023553215, -0.000990305678, 0.0112083657, 0.0203414131, -0.00735420315, 0.0060694823, -0.00854009949, -0.00163060729, -0.0139342798, -0.00625066087, -0.015391944, -0.0202261172, -0.0186449233, -0.0122130839, 0.00481358543, -0.00227708532, 0.00706596486, 0.00991541, 0.0121307299, 0.00105155632, 0.0182002112, 0.00306562404, -0.010549535, 0.00210002437, -0.000757655886, 0.0112907197, -0.014321343, -0.00456652371, -0.011084835, 0.00731302658, -0.0063618389, 0.00265385443, 0.00218443712, 0.0200449396, -0.00923187193, -0.0194355212, -0.0100801177, -0.00648125215, 0.0148731144, -0.0115295462, 0.0103107085, 0.0129789747, 0.0188096315, 0.0107060075, 0.00330239139, -0.0180190336, -0.0135719227, -0.00940481573, 0.00350621738, 0.0139507512, -0.00297297584, 0.0165943112, 0.00849892292, 0.0174919683, 0.00641536899, -0.00732537964, -0.0181672703, -0.0305203553, -0.0176402051, -0.00672419602, 0.00398592884, -0.030981537, -0.00251797051, 0.000603242312, 0.0266991351, 0.0094459923, 0.00415887218, 0.0146919359, -0.00614771852, 0.0110107167, 0.0273744371, 0.0118342554, -0.00370180793, 0.0138931032, 0.0110601289, 0.0119742574, 0.0185790397, -0.0127072074, 0.0168084316, -0.0188755132, 0.0181837417, 0.0107801259, -0.00777832605, -0.00422887271, 0.0140166339, 0.0152601777, -0.00941305049, -0.0012373674, -0.00357827707, 0.00268473709, 0.0141319297, 0.027209729, 0.0219061375, -0.0130777992, -0.0198637601, -0.0224002618, 0.000143733298, 0.00608183537, -0.00339503959, 0.00946246367, 0.0167096071, -0.0158448908, -0.00247473479, 0.0226637945, 0.02808268, 0.00967658311, 0.0265838392, 0.0191719886, 0.00915775355, -0.00291532814, -0.00439769821, 0.0125177931, -0.00547241652, -0.0309321247, 0.0127154421, -0.00679419702, -0.00135472172, 0.0146754654, -0.0160507746, 0.00325915567, -0.014856644, -0.00576065527, 0.0149719389, -0.00506064715, 0.00401887, 0.00308415364, -0.0180684458, -0.0089106923, 0.0101377657, 0.00420004874, 0.000381658872, 0.0141978124, 0.00859774742, -0.0153837083, -0.00827656686, -0.0025900302, 0.0139425155, 0.0052500614, 0.00169340207, -0.00545594608, 0.0096848188, 0.0146672297, 0.019781407, 0.00998952799, -0.00702067, 0.000406365027, 0.0108377738, -0.0072224373, 0.00916598924, -0.0103024729, 0.00890245661, 0.00290297507, -0.0262050107, 0.0207696538, -0.00287826895, 0.00784009136, -0.0124189686, 0.00222973176, -0.0252332352, 0.0183484498, -0.00530770887, -0.0098824678, -0.0081365658, 0.0120566115, -0.0116119, 0.0210331865, -0.00111280708, 0.00459946552, -0.00301621156, -0.00170472579, -0.00718537765, 0.0342262797, 0.0159848928, -0.0318050757, -0.00428652065, 0.00628772052, -0.0239320435, -0.00182208011, -0.0119330799, 0.0148978205, 0.00140310463, 0.00860598311, -0.00045371853, 0.0253320597, -0.017360203, -0.00530359102, -0.00269503146, 0.0046900548, -0.0274567902, -0.00309856562, -0.00732949702, 0.0261720698, -0.00603654096, -0.00674066693, -0.0058718333, 0.00711125927, 0.00497417571, 0.00721831946, 0.0109695392, 0.00493299868, 0.0184802152, 0.00637419196, 0.00595830474, -0.00777832605, 0.00596654, 0.0161660705, -0.00745714596, 0.0112166014, 0.000482285046, 0.00305327098, -0.00634948583, 0.0176566765, 0.00398181099, 0.015136647, -0.00063618389, 0.024903819, 0.0123942625, 0.00749420514, 0.0227132067, -0.0149884103, 0.0060736, -0.0234873332, -0.00935540348, -0.0206873, 0.00975070149, -0.0088695148, -0.0105989473, 0.00339709851, -0.0171625521, -0.0137942787, 0.01795315, -0.00827244949, -0.0215767212, -0.00235532154, 0.0160837173, 0.00787303317, 0.0164378379, 0.0172613785, -0.0114718983, -0.00821068417, -0.00879539642, -0.00910010561, -0.0220543742, 0.00478064409, -0.0133166257, -0.0179696213, -0.0198308192, -0.0165119562, 0.0134154502, 0.00153795909, -0.00593359862, -0.0083630383, 0.00578947924, -0.0081365658, 0.0155566521, 0.0264685433, 0.000217079738, 0.0157954786, 0.00611889502, 0.00196105218, -0.00434416812, 0.0019723759, -0.00876245461, -0.00223384961, -0.0138601614, 0.00075405289, 0.0115707228, 0.00415269565, 0.00149472326, -0.00647301646, 0.00160075398, -0.00621771952, 0.00895186886, -0.0054477104, -0.0133578023, 0.00475593796, -0.00746949902, 0.0294991676, -0.0294662248, -0.0067447843, 0.0105577698, 0.00082765671, 0.0228449721, -0.0118589615, -0.0127648544, -0.000663978339, -0.00646889908, 0.00380680896, 0.00655948836, 0.0116119, 0.00800068118, -0.0091083413, 0.0150378225, -0.00865539536, -0.00143295783, 0.00464887777, 0.000414343056, -0.0206873, -0.0108624799, 0.00124972046, -0.00781126739, 0.00278973836, 0.00288444548, 0.0356757082, -0.00990717392, -0.0175084397, -0.0134730982, 0.00903422292, 0.00250561745, 0.0178543255, -0.00189516915, -0.00351445284, 0.0228285, 0.00111486588, 0.00959422905, 0.00462828903, -0.0273250248, 0.00249120547, -0.00312738935, 0.015474298, 0.00172840245, -0.0109118922, -0.0442405157, 0.00964364223, -0.0132589778, -0.0225155558, 0.00134854508, 0.018150799, 0.00254679448, 0.00350415846, 0.00728420261, -0.00198267028, -0.00648948736, 0.0189908091, -0.0266497228, -0.00798009336, -0.0114307217, 0.0101954127, 0.0232896823, -0.0343909897, -0.00442240434, 0.00113030733, 0.00471064309, -0.00336003909, 0.00761773577, 0.0134566277, 0.000539932749, -0.000461439195, -1.9929e-05, -0.00294415187, 0.0297627, 0.0143625205, 0.0113813095, 4.2881933e-05, 0.0070824353, -0.0010891303, -0.00136604533, -0.0024562052, 0.012295437, -0.00991541, 0.0239814557, 0.00431946199, 0.0184637439, 0.0254308842, -0.00756832352, -0.0161084235, 0.00835892092, 0.00259414781, -0.00387886865, -0.0149801746, -0.0229932088, -0.0222684946, 0.00517594256, -0.00534476805, -0.015729595, -0.0266661923, -0.00276914984, -0.000246675656, -0.00842068624, 0.0107389484, -0.00662125368, 0.0235861577, 0.00492476346, 0.0254802965, 0.0166354887, -0.0124766156, 0.0125836758, -0.00951187592, -0.0154248858, -0.0033991572, -0.00331062684, 0.000239341025, 0.0129542686, -0.00595830474, -0.00076589128, 0.00924010761, 0.00772067811, 0.000904348795, -0.00117560197, 0.0146754654, -0.0039468105, 0.02132966, -0.00325503782, 0.0105907116, 0.0137448665, -0.0168578438, 0.00198678789, 0.015531946, 0.0187437478, -0.00480535, -0.00459534768, -0.00898481067, -0.0311956573, 0.00415063649, 0.0136295706, 0.00985776167, 0.0229108557, -0.00048717481, -0.0146507593, -0.0231908578, 0.0127648544, 0.0140495757, -0.00103662978, -0.00764655974, -0.00334150949, 0.0074900873, -0.00587595068, 0.0167672541, 0.00687655061, 0.0196002293, -0.0144531094, -0.00105721818, 0.0026126774, -0.00226473226, 0.01688255, 0.0032653322, 0.00416298956, 0.0197155233, 0.0163225438, -0.0119907279, 0.0228614435, -0.00721831946, 0.000760744151, 0.0188096315, -0.0171954948, 0.0262873657, -0.00502358796, 0.0241955761, -0.0103683565, 0.00650184043, -0.000391181035, 0.0248544067, 0.00608183537, 0.0096848188, 0.0117271952, 0.0117024891, 0.00877069, -0.00947069842, -0.000225057767, -0.000696919858, 0.00498652877, -0.0262379535, -0.0138766319, 0.00813244749, -0.00141957542, -0.0114389565, 0.00993188, -0.00670360774, -0.00697949296, 0.00972599536, 0.0259908903, 0.00690125674, -0.0108377738, 0.0159107745, -0.0121801421, 0.0106895361, -0.0119248452, 6.85853593e-05, 0.00896834, -0.0214943681, -0.00894363411, -0.00513064815, -0.00192193419, -0.0149225267, 0.00764655974, 0.00562065374, 0.0209014192, -0.0187931601, -0.00459123, 0.0103024729, 0.00831774436, 0.0176731478, -0.00261061871, -0.0271932576, -0.00234708609, -0.00797185767, -7.99090194e-05, 0.0169319622, -0.0171954948, -0.0298285838, -0.0118342554, 0.0123777911, 0.00144428154, -0.00538182724, -0.0156801827, -0.0109942462, 0.00556712365, -0.0285109207, -0.00779891433, -0.00599948177, -0.00114471919, 0.0168249011, -0.00137222186, -0.00742832199, -0.00689713936, 0.00470652524, 0.000383460341, -0.0119907279, 0.0103765912, 0.0015214883, -0.00361945387, 0.0130366227, -0.016742548, 0.000796774, -0.00486711552, 0.00611889502, 0.0282638595, 0.0117848432, 0.00375945563, -0.0209508333, -0.00437711, -0.00523359049, 0.0105907116, -0.00472299615, 0.026254423, 0.0145601695, -0.00210002437, 0.00127236778, -0.0226473231, -0.00318091945, 0.0135225104, 0.00407240028, -0.00324268476, 0.00096817303, -0.0246402863, 0.000928540248, -0.00271767867, -0.00287826895, -0.0063083088, -0.00630419096, -8.40267166e-05, -0.00385004492, -0.000343055464, -0.00190752221, -0.00379651482, 0.0036956314, -0.000251050718, 0.00243767537, 0.0153013552, -0.00163781317, -0.0182166826, 0.0032653322, -0.00260855979, -0.00082817144, 0.00798009336, 0.00476417318, 0.012970739, 0.013646041, -0.0136048645, -0.0010103794, -0.0578124374, -0.00711125927, 0.00469829, 0.0251673516, 0.0115789585, 0.0223837905, 0.0131272115, 0.00590477465, 0.00935540348, 0.00741596892, 0.0201108232, 0.0041671074, -0.00438534515, 0.0107554197, -0.000708758249, 0.00545182824, 0.0270779617, -0.00271150214, -0.00610242411, -0.0231249761, 0.0138848675, 0.00357621815, 0.00378416176, -0.0121966125, 0.0145766409, 0.0316238962, -0.00644831033, 0.00969305448, -0.00730890874, -0.0175743233, 0.0146260532, -0.00701243477, -0.00781538524, -0.00124766165, -0.00453769974, 0.00669949, -0.00970128924, -0.0192214, -0.00340739265, 0.00212473073, 0.010887186, 0.00338474521, -0.0146754654, -0.0175907928, 0.00324886129, -0.0210496578, -0.0142389899, -0.00564947771, 0.00385416253, -0.0169319622, -0.00284532737, 0.0222190823, 0.00566183077, 0.00471887831, -0.00159354799, 0.0134566277, 0.00568241905, -0.00941305049, -0.0103930626, 0.00547241652, -0.0142060481, -0.0101707065, -0.0146919359, -0.00690537458, 0.00914128311, -0.0037182786, 0.0048424094, -0.00397151709, 0.00325092021, 0.0318709612, -0.0110765994, -0.028362684, 0.00435652118, 0.0131189767, -0.00577712618, 0.0029276812, 0.00804185867, 0.00860598311, 0.00396945793, 0.00915775355, 0.0162731316, -0.00153590029, 0.00201149401, -0.00136398652, 0.0138272196, 0.0084742168, -0.0201931763, 0.00845774543, -0.00140928116, -0.0134072155, -0.00170060806, 0.0141154584, -0.00765067758, 0.00932246167, 0.00378004415, 0.012015434, -0.0019723759, -0.00199811161, -0.00104074739, 0.00689302152, 0.0100059994, -0.00658419449, 0.0127319135, -0.0123860268, 0.00548065221, -0.026336778, 0.00778656127, -0.00104898284, 0.0109201269, 0.0171460826, 0.0214778967, -0.00711537711, 0.0114471922, -0.0211978946, 0.0454264134, 0.00722655468, -0.00842480361, -0.00752714649, -0.0104836514, -0.010409533, -0.0156801827, -0.0183155071, 0.0170472581, -0.00946246367, -0.0050812359, -0.0140083982, -0.00942128617, -0.00945422798, -0.00579359708, 0.00894363411, -0.0159437153, -0.00591712771, -0.00087243662, -0.00486299768, 0.0192214, -0.00222973176, -0.00443064, 0.0161496, -0.00429063803, 0.00751479343, 0.0050277058, -0.00776185514, 0.0214943681, -0.00233679195, -0.0164790154, -0.0132672135, 0.00989070348, 0.0111836595, -0.0171131399, -0.00349386432, 0.00501535274, -0.00471887831, 0.000345114328, 0.00718949549, 0.00142472249, -0.0104424749, -0.0118836677, -0.0217414293, -0.0127072074, 0.0137778074, 0.0167590193, -0.000272025238, 0.0115048401, -0.0105824759, -0.00151222351, 0.00760126486, -0.00644007511, 0.0183813907, -0.0134730982, -0.0194355212, 0.0285109207, 0.0175413806, -0.000528609089, 0.00146281114, -0.0115295462, 0.00611477718, -0.0178543255, 0.000752508757, 0.0154001797, 0.000254267681, 0.0188919846, 0.0267979596, -0.00469417218, -0.0070536118, -0.0328097939, -0.00964364223, 0.00114574865, 0.0271767881, 0.00379857374, 0.0191884581, -0.00837951, 0.0247555822, 0.0100307055, -0.0230755638, 0.00763832452, -0.00107265951, -0.00737479189, 0.00953658205, 0.00350004085, 0.0172449071, 0.0173107907, -0.00263738376, 0.0123036727, 0.0062094843, -0.0137448665, -0.00141545769, 0.00708655315, 0.0134730982, -0.0203743558, 0.00534065068, -0.0142801665, 0.0138025135, -0.00784009136, -0.00261473632, 0.016067246, 0.0153013552, -0.00177987374, -0.00593771646, -0.0111836595, -0.00106339471, 0.0160343051, 0.00491652777, 0.0156884175, 0.0168331377, 0.0294826962, -0.000954275834, 0.0218896661, 0.0132095655, 0.000778244343, -0.00160898932, -0.00455005281, 0.00126310298, -0.00144222274, 0.0165943112, -0.00625477871, 0.00586771546, 0.0191390458, 0.0145272277, 0.000628463225, 0.0183484498, 0.0138601614, 0.000279488566, -0.0115048401, -0.0234214496, -0.00236973353, 0.00422475534, 0.0114389565, -0.00636595674, -0.0183155071, -0.013926045, -0.0239155721, 0.0201272927, -0.0156884175, -0.000919275393, -0.00538182724, -0.00480123237, 0.00897657499, 0.0158119481, 0.000258771412, 0.0165037215, -0.00228943839, -0.0084742168, 0.00584712718, 0.00506888283, -0.016544899, -0.0134813339, -0.00226679118, -0.00264973682, -0.0100307055, -0.0198472906, 0.0096848188, -0.00380886788, -0.017475497, -0.0303227063, -0.00990717392, -0.0130201513, 0.0124024972, 0.0201602355, -0.00605301186, 0.0123366145, -0.00552182924, -0.0263861902, -0.0173766725, 0.0120401401, -0.00108398322, 0.00143501675, -0.0325792022, -0.0196661111, -0.0203908253, -0.00346298143, 0.0131930951, -0.0192378704, 0.0202261172, -0.00663360674, -0.0244426373, -0.000641331, 0.00285562151, -0.0133825094, -0.0059253634, 0.00144839927, 0.0142719308, -0.0302897654, 0.00378004415, -0.00156163587, 0.00306768273, -0.0203084722, -0.00895186886, -0.0328262635, -0.002835033, -0.00283709192, -0.00310885976, 0.0119742574, -0.0224332027, 0.00585948024, -0.0113154259, -0.00322415517, 0.000432615343, -0.0102365902, -0.0101954127, -0.0101212943, -0.00642360421, -0.0123860268, 0.0101954127, -0.0090095168, 0.0122872023, 0.0114389565, 0.0119083738, -0.0182002112, -0.00555065274, 0.005073, -0.00927304942, -0.00868010148, -0.00128780911, -0.0241296925, -0.0106236534, 0.00892716274, -0.0163554847, 0.00371416099, -0.00140413397, -0.0154001797, -0.00721831946, -0.00105155632, 0.0048588803, -0.00371004315, 0.00382739748, -0.0081365658, -0.00481358543, -0.0028926807, 0.0190566927, -0.0230590925, -0.0211814232, 0.00996482186, 0.00746949902, -0.00111074827, -0.0151201766, -0.000660890073, -0.0151613532, -0.0229767375, 0.0320850797, -0.00660890061, -0.0176402051, -0.0228120312, -0.0159437153, -0.0365980752, -0.00723890774, -0.00549712311, 0.0038644569, 0.0101624718, -0.012633088, -0.0158119481, 0.0016789902, 0.00849068724, -0.018826101, 0.0831445, 0.00848245155, 0.00935540348, -0.0448005237, -0.0235861577, 0.00165634288, 0.00197752309, 0.0508617684, -0.0113895442, 0.0186613947, -0.0185460988, -0.00506064715, -0.0328427367, 0.00846598111, -0.00973423105, -0.0231249761, 0.0210661273, -0.0308003593, -0.0284120962, -0.0107554197, 0.00752714649, -0.0276709106, 0.00123530847, -0.0148072317, 0.00937187392, -0.0107060075, -0.000355151191, -0.00849068724, -0.00297915237, 0.00949540455, 0.00112104253, 0.0244096965, 0.022960268, -0.00976717286, -0.0243767556, 0.00428240281, -0.0102036484, 0.00624654349, 0.0139919277, -0.00820656586, 0.0133825094, 0.00549300527, -0.0203084722, -0.000700522854, 0.0119660217, -0.00490829255, -0.0253320597, -0.0213131905, -0.0118013136, -0.0210331865, -0.00027588557, -0.00424534362, -0.00542300427, -0.017277848, -0.0159766562, -0.00691772765, 0.0271603167, -0.00768773677, 0.00246238173, 0.0232238, -0.00520476652, 0.0115707228, 0.0103601208, -0.0122789666, -0.00490829255, -0.0269132555, -0.00266003096, -0.00247473479, 0.00282679754, 0.00889422093, -0.0129377982, -0.0084042158, 0.00121677888, -0.0107554197, -0.000443939, 0.0341603979, -0.0218731966, 0.018826101, 0.00120751408, -0.0118424911, -0.0190566927, 0.0106401239, -0.00584300933, -0.00152972376, -0.0161413644, 0.00338886306, -0.0329745, -0.00694243377, -0.00444299309, 0.00529123796, 0.00648948736, 0.0331886224, -0.00367710157, 0.0334356837, 0.00549300527, 0.00913304742, -0.00479299715, 0.0229108557, 0.0217908416, -0.00192708126, 0.00597477565, 0.00293385773, -0.0121389646, -0.0205390621, -0.00727596693, 0.0244591087, 0.0013042799, 0.0161660705, 0.0136213349, 0.00874598417, -0.017080199, 0.00777420821, 0.00388504518, 0.0310803615, -0.000114587732, -0.010071882, 0.00157193013, 0.0133166257, 0.0152437072, -0.00811186, 0.0242614597, 0.0168413725, -0.012353085, 0.0195343457, 0.0153672379, 0.00044188014, -0.000802950526, 0.00183443318, 0.0208684783, -0.00880363211, 0.00980834942, -0.0120483758, 0.00623419043, 0.00931422599, 0.0244920496, 0.0405181199, 0.00695066946, -0.0092483433, 0.00055177114, 0.000586771523, 0.000663978339, -0.0153013552, 0.0105742412, 0.00750655821, -0.00854009949, -0.00196002284, -5.22754272e-06, -0.00892716274, 0.0234708618, 0.0124601452, -0.00639066286, 0.0138272196, 0.00100317341, -0.00802950561, 0.00279797381, -0.00336209801, -0.0153590022, 0.0109942462, -0.00153692963, 0.00880363211, -0.0169484336, -0.00576889096, 0.0319203734, -0.00277738529, 0.00914128311, -0.00917422492, 0.0159601867, -0.0022523792, 0.0129460329, 0.0112495432, 0.00984129123, 0.025381472, -0.00556712365, 0.0118424911, 0.000388350105, 0.00685596233, -0.00919893105, -0.0115954289, 0.0142142829, -0.0118754329, 0.00464476, -0.00179428561, 0.000206914177, 0.0418687239, -0.00797597505, 0.00361945387, 0.0093471678, 0.00804185867, 0.0199296437, 0.00665007764, -0.00981658511, -0.00367504288, 0.00511829508, -0.0122295544, -0.00358033576, -0.0105248289, 0.00120648462, 0.0023450274, 0.000847215764, -0.011677783, 0.0110107167, 0.00651007565, 0.0111918952, -0.00984129123, 0.00781950261, 0.025381472, 0.0233720373, -0.00247267587, 0.0100307055, 0.00249326439, 0.00896834]
23 Feb, 2024
How to Declare Optional Properties in TypeScript ? 23 Feb, 2024 The optional properties are the properties that may or may not be present in an object or assigned with a value. You can define the optional properties for different data types in TypeScript like interfaces, type aliases, classes, etc. In TypeScript, you can use the question mark (?) symbol to declare the optional properties just after the name of the property. TypeScript won't throw any error if you don't pass or use the optional property in the object. Syntax:interface interface_name { property1: type1; property2?: type2; // Optional property}Example: The below code will explain how you can declare an optional property in TypeScript. JavaScript interface myInterface { name: string; desc: string; est?: number; } const myObj: myInterface = { name: "GeeksforGeeks", desc: "A Computer Science Portal", } console.log(myObj); Output: { name: "GeeksforGeeks", desc: "A Computer Science Portal"} 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.
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?
https://www.geeksforgeeks.org/how-to-declare-optional-properties-in-typescript?ref=asr10
PHP
How to Declare Optional Properties in TypeScript ?
jQWidgets jqxSortable disabled Property, Node.js Stream transform.destroy() Method, jQWidgets jqxSwitchButton enable() Method, Convert string into date using JavaScript, jQWidgets jqxSplitter height Property, How to Declare Optional Properties in TypeScript ?, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxTree checkAll() Method, jQWidgets jqxScrollBar rtl Property, jQWidgets jqxScrollBar step Property, jQWidgets jqxTabs position Property, jQWidgets jqxTooltip height Property, jQWidgets jqxTreeMap width Property, jQWidgets jqxTree collapseItem() Method, jQWidgets jqxTabs keyboardNavigation Property, jQWidgets jqxTree destroy() Method, jQWidgets jqxTree collapseAll() Method, jQWidgets jqxSortable opacity Property, jQWidgets jqxScrollView buttonsOffset Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, jQWidgets jqxTabs disabled Property, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Node.js date-and-time Date.transform() Method, jQWidgets jqxListBox enableHover Property, jQWidgets jqxSlider height Property, jQWidgets jqxSwitchButton onLabel Property, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, jQWidgets jqxToolBar theme Property, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxSplitter orientation Property, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxSlider buttonsPosition Property, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, jQWidgets jqxSwitchButton orientation Property, jQWidgets jqxToolBar tools Property, jQWidgets jqxSlider rtl Property, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTooltip opacity Property, jQWidgets jqxTree width Property, jQWidgets jqxScrollBar showButtons Property, jQWidgets jqxScrollView showButtons Property, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, jQWidgets jqxTree clear() Method, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView disabled Property, jQWidgets jqxScrollView animationDuration Property, jQWidgets jqxToolBar height Property, PHP, jQWidgets jqxSplitter destroy() Method, jQWidgets jqxTreeMap destroy Method
GeeksforGeeks
[-0.0175418705, 0.0160197448, -0.0169180483, 0.0406731851, 0.0207108855, -0.000277405779, 0.0198999178, 0.00614152616, -0.00754824467, -0.00450711278, 0.00946961623, 0.00237988052, 0.00849021599, 0.00436363416, -0.0351835527, -0.0249029696, -0.0624320917, 0.0154458294, -0.024067048, -0.00140359916, 0.00753576821, 0.0290950518, -0.0262504239, -0.0253645964, 0.00450087478, 0.00667489413, 0.0236802772, 0.0104802074, -0.0443412587, -0.0189142786, -0.0096754767, -0.00505919522, -0.011671707, -0.0164938495, -0.0363064334, -0.0171925314, 0.0178413056, 0.0182155985, -0.00802234933, -0.00348716415, -0.00517772138, -0.0530997179, -0.0197252482, -0.0292946752, -0.0110166939, 0.00981895626, -0.00514029199, -0.0100809615, 0.0079911584, -0.0128507307, -0.00174826081, -0.00356826116, 0.0298436377, 0.021209944, 0.0238299947, 0.0210851785, 0.0261007063, 0.00367119163, 0.00564870704, -0.0124514848, 0.0290701, -0.0664744601, -0.0235804673, -0.028645901, -0.0388266742, 0.0172424372, -0.00617895555, 0.0218961481, -0.0126760602, 0.0091265142, -0.0399246, 0.00782272592, 0.0113098901, 0.0467616878, -0.00344037754, -0.00147066009, 0.0151463952, 0.00594814168, -0.00479407096, 0.0284961835, 0.0221581534, -0.00348404516, 0.0191762839, 0.0464622527, -0.0260008946, -0.0153335417, 0.0125388196, -0.0357574709, 0.0395253524, 0.00596061815, 0.00211631577, -0.0105238752, 0.0249653514, 0.00460692449, -0.00433868123, -0.00202742103, -0.0188518967, -0.00325011183, 0.0133497883, 0.0340357199, 0.0226821639, 0.0504297614, 0.0168556664, 0.0164938495, -0.00756072113, -0.0420705453, 0.0359321386, 0.0104365395, 0.0306920353, 0.00010702444, 0.00908908434, 0.0232311264, -0.0195880067, 0.0464622527, -0.0283464659, 0.012382864, -0.0471110269, -0.0519019775, 0.00182155985, 0.009550713, -0.0366308205, 0.0203116406, -0.0354330838, 0.0454391837, -0.00160634133, 0.000125544146, -0.0126386313, -0.0190639962, 0.0171301477, 0.00562687311, 0.00574228028, -0.0236054193, -0.0167558547, 0.0180908348, 0.0174046308, 0.0268243402, 0.0353083163, -0.0156080229, -0.0186897032, -0.00156969181, -0.0319147259, -0.00207264815, 0.0320145376, 0.00672479952, -0.00386145734, -0.0039986982, -1.32074783e-05, 0.0327880755, 0.0182155985, -0.00187926332, -0.0287457108, -0.0556948148, 0.0308417529, 0.014859437, 0.000124277009, 0.03610681, -0.00822821073, -0.00992500596, -0.0149717247, 0.0392259173, 0.00182467897, -0.0116467541, -0.00795996655, 0.05025509, 0.00109480741, 0.0141358031, 0.0144851441, 0.0126386313, -0.0376289338, 0.00958190393, -0.0166934729, -0.021609189, 0.0107546886, 0.0200371575, -0.0254145022, -0.0347344, -0.000129735447, 0.00110962312, 0.0490573533, -0.0426195115, -0.0341854393, -0.00296003465, 0.00617583655, 0.00861498, 0.0157577395, -0.0071115694, 0.00627564779, -0.0067934203, -0.0238050427, -0.0365060568, -0.0354330838, 0.0445907861, 0.0173547249, 0.0295442045, 0.0047847135, 0.00174202258, -0.0151588712, -0.0205112621, -0.0435677208, -0.026549859, 0.0213846136, -0.00726752495, -0.0436425768, 0.00618831301, 0.0148469601, -0.0092388019, 0.0127134901, -0.0434429534, 0.0590385, -0.0211725142, 0.00496250298, -0.0115219895, -0.0155082112, -0.0146099078, -0.00820949581, -0.0119524272, -0.0153335417, 0.0071115694, -0.0267993882, -0.0123391962, -0.0147845782, -0.00504359975, -0.0260258485, 0.0217713825, -0.0500554666, 0.0134995049, 0.0118151866, 0.00864617061, 0.0309415646, 0.0155456411, 0.0559942499, 0.0175793, -0.0119087594, -0.030118119, 0.0302678365, 0.0224575866, -0.00148625555, -0.0299434494, 0.0372795947, 0.0461877696, -0.00181064301, 0.00281655579, -0.0149592487, -0.0255267899, -0.0185524616, 0.00202742103, -0.013449599, 0.0308168, 0.0438422, 0.024753252, 9.14288903e-05, -0.0473356023, -0.0113535579, 0.00671232305, -0.041072432, -0.0115157515, -0.00365871517, -0.0171426255, 0.0139860865, 0.0133872172, 0.0358073749, -0.00521515077, -0.00305828662, -0.00546156056, 0.037129879, -0.0146722905, 0.0317151025, -0.0477098972, -0.0252398327, 0.0333869457, 0.0296190623, -0.0175668243, 0.041446723, 0.035033837, -0.0324387364, 0.0198375359, -0.00688699353, 0.0108295474, -0.0149592487, -0.00829683058, 0.00831554551, -0.0106611159, -0.00569861289, 0.00113223668, 0.0194133371, -0.0347843058, -0.00915770512, 0.0455389954, -0.0261007063, 0.000145136059, -0.0386520028, -0.0314905271, -0.0149093429, -0.00135213393, 0.031141188, -0.000590291456, -0.00947585423, 0.0219211, 0.0106673539, 0.013087783, -0.0406482331, -0.0310164224, -0.00190109713, -0.023006551, -0.000565728464, -0.00389888673, 0.0773539096, -0.0173048191, -0.00532431947, -0.00580466259, -0.00910156127, 0.0188144669, -0.0608351082, -0.0299684033, -0.0128881596, 0.00167652126, 0.0689198375, -0.0163690858, -0.0556449108, -0.010604972, -0.0252647847, -0.0210103206, -0.0383026637, -0.0191762839, 0.0458883382, 0.00532431947, -0.0277975015, 0.0517023578, 0.0116030863, -0.045264516, -0.0361816697, -0.027248539, -0.0504796654, 0.0364311971, 0.0246659163, -0.00834673643, -0.000479952956, -0.0232935082, -0.050280042, 0.0113036521, 0.036007, 0.00136071141, 0.011671707, 0.015570594, 0.0444660224, -0.0268243402, 0.0021709, 0.0199997295, 0.0238799, 0.0242292415, 0.000728312, 0.0261007063, 0.0397998355, 0.0103866337, 0.0387767665, -0.0162318442, -0.00550210895, -0.0291449577, 0.00399245974, 0.0290950518, 0.00342790107, 0.00330937491, -0.00606666785, 0.0516025461, 0.0288205706, -0.029743826, -0.0108856913, 0.0142231388, -0.0155456411, -0.0230814088, -0.029718874, 0.00514964946, 0.0179910231, -0.0110166939, -0.0298186857, 0.000659691636, -0.00851516891, 0.00271986332, -0.0198125821, 0.037154831, 0.0163067039, 0.0301929787, 0.0027806859, 0.00250308518, -0.0153335417, 0.00676222891, 0.00908284634, -0.0138737978, 0.0244662929, 0.0313657634, -0.019500671, 0.0699179545, 0.0165437553, -0.0137615101, -0.0118713304, 0.00352459354, 0.00153382204, -0.00887074694, 0.00780401146, 0.00398310274, -0.0106798308, -0.00787263177, -0.0214469954, -0.00112443895, -0.00281187706, -0.00809720811, -0.0238549486, -0.0312160458, 0.0386021, 0.0355328918, -0.0354580358, 0.00453830417, -0.0164813735, 0.00481278589, 0.034335155, 0.0591882169, 0.0251649749, 0.0445907861, 0.00203209976, 0.0195256248, 0.0498308912, 0.00525258, -0.0237551369, -0.0184401739, 0.0311910938, 0.00242978614, -0.0449151732, 0.00879588816, 0.0252897386, -0.0252398327, 0.0100497706, 0.0246409643, 0.0279222671, -0.0242167655, -0.0302428845, -0.0470860749, 0.0175543465, -0.00860250369, 0.0118214246, 0.00976905, -0.0192261897, 0.0133996941, -0.0021053988, -0.00148157694, -0.0181033108, 0.00542413117, -0.0479095206, -0.00921384897, 0.00482526235, 0.00514029199, -0.00159386487, 0.0094571393, -0.0245286766, -0.0137490341, 0.0227445457, -0.0339608639, -0.0226073042, -0.0128382538, 0.0408229046, -0.00819078088, -0.00476599904, -0.0173172951, 0.0274980683, 0.0234307498, -0.000359087455, 0.0192137137, -0.0197002944, 0.0185025558, 0.00333744707, 0.0319895856, 0.0306670833, -0.00815335196, 0.0177414939, 0.0096692387, 0.0114845606, 0.00499681337, -0.0306421295, 0.0224825405, -0.00819078088, -0.029020194, 0.0302428845, 0.0289952401, 0.0381529443, 0.0379533209, -0.01414828, -0.00902670249, 0.0468365476, 0.0314156674, 0.0358572826, 0.0204364043, 0.0149467718, -0.0160571747, 0.00900175, -0.025501838, 0.0125637725, -0.00814087503, -0.0343850628, -0.041072432, 0.0212972779, 0.0144352382, -0.00887074694, -0.00203677849, -0.0254519321, 0.00333120883, 0.00630683918, -0.00992500596, -0.032214161, 0.0345098265, -0.0261256602, -0.0206235517, -0.00130924617, -0.0209354609, 0.0139736095, 0.0292697214, 0.0196628645, -0.0132624526, -0.0244163871, -0.00277444767, 0.0148220072, 0.027248539, -0.0165936612, -0.0243415292, -6.35518518e-05, 0.0129754944, -0.038227804, 0.026200518, -0.00686204061, -0.036131762, 0.00349340239, 0.0086836, -0.0139112277, -0.0134121701, 0.0125450576, 0.00280251983, -0.00364935794, -0.00385521911, -0.00636922102, 0.0268991981, -0.0149717247, -0.00927623082, -0.028321512, 0.0349340253, -0.0122269085, -0.00677470537, -0.00865241, 0.0123267202, 0.0336364768, -0.042170357, 0.00108700956, 0.045264516, 0.0248655397, 0.0317151025, -0.0246908702, -0.00533055793, -0.00784144085, -0.0244538169, -0.0267993882, 0.0126573453, 0.00422639307, -0.0432682857, 0.0185275096, -8.79686286e-06, 0.0240420941, -0.0197127704, -0.00156579283, -0.00729871588, 0.0103866337, 0.0274481624, -0.00200870633, 0.0140734212, 0.00135993166, -0.0272734929, -0.0042170356, 0.0190016143, 0.00178413058, 0.00621326594, 0.0171551015, -0.0360319503, 0.0416213945, -0.00455701863, -0.0171800535, 0.0217464305, 0.0225449223, -0.00289297383, -0.0182655044, 0.0141108502, -0.0127883479, -0.0300432611, -0.0331873223, -0.012376626, 0.0167184267, 0.0227694977, 0.0164439436, 0.0450648926, 0.00874598231, 0.0235929433, -0.00035167957, -0.0222454872, 0.0177290179, -0.0112475082, 0.0153709706, 0.0312659517, -0.0341854393, 0.0146099078, -0.0238299947, 0.000587172341, -0.000392812828, -0.0119586652, -0.0323389247, 0.00510598207, -0.0785017461, -0.0080036344, 0.00237832079, -0.0249778274, 0.0144352382, 0.0100934375, -0.0177165419, 0.0200122055, -0.0366807245, 0.00288985483, 0.0216840487, 0.00349964062, 0.0372296907, -0.00343725854, 0.0108545, -0.0165312793, -0.00452582771, -0.0287706647, 0.0203116406, -0.0292697214, -0.0420455933, -0.027223587, -0.0043418, 0.0141358031, 0.00661251182, 0.0443662107, 0.0246659163, 0.0211974662, -0.00703047263, -0.000138020594, 9.54008829e-06, 0.00432620477, 0.0144726671, 0.0725130513, 0.00145506451, 0.0280220788, -0.0341105796, 0.0377786532, 0.0135868406, -0.0289952401, -0.00170459331, -0.0269241519, 0.0280719846, 0.0049874559, 0.00489388267, 0.0195630528, -0.00378347957, -0.00837168936, 0.018053405, -0.0252024028, -0.026175566, -0.00884579401, 0.0283464659, 0.0342353433, 0.00648774719, 0.0216590948, -0.030766895, -0.0330126546, -0.0214095656, -0.0177290179, -0.0276976917, -0.0260508, -0.0118027097, -0.00188238244, 0.00605107192, -0.0507291928, -0.0241668597, 0.0242791474, 0.0110915527, -0.0151089653, -0.0110728377, -0.0173422471, -0.00996243488, 0.0264999531, 0.00218025735, -0.00747962436, 0.000741178344, 0.0182779804, -0.0130753061, 0.0163815618, -0.00459756702, -0.017666636, 0.00618207455, 0.00639417395, 0.0433680974, -0.00898303464, 0.0103991106, -0.0133373113, 0.00926999282, -0.0321143493, 0.0189018026, -0.0229192153, -0.0247158222, 0.036081858, 0.00502176583, 0.0469613113, 0.0125637725, -0.00784767885, -0.0148968659, 0.00385833834, 0.00622262293, 0.0155456411, 0.0211350843, -0.0261506122, 0.00339982915, 0.0132125467, -0.00352459354, 0.00459132902, -0.0117839947, -0.00326882652, -0.00234401063, -0.0281468425, 0.000314445206, -0.0238923766, -0.00595126068, -0.00502488529, -0.0281468425, 0.0164813735, -0.00218025735, -0.00289297383, -0.00631307717, 0.0142855207, 0.00744843297, -0.00758567406, 0.0127197281, -0.00449775578, 0.00250776391, 0.0231936965, 0.00174202258, -0.0404236577, 0.0156080229, 0.0245536286, -0.000239391637, 0.0128632067, -0.0389763899, 0.0189267546, 0.0209354609, -0.0146722905, -0.00879588816, 0.0292946752, -0.0287457108, -0.026549859, 0.0102992989, -0.0179785453, 0.0160322227, -0.0151588712, -0.00641288888, 0.0209354609, -0.0232560784, -0.00146208249, 0.00263252831, 0.0150964893, -0.00824692473, 0.021247372, 0.00101371051, 0.0164189916, 0.000631229777, 0.0178912114, -0.00422015507, 0.00050022715, 0.0104053486, 0.028670853, 0.00776658207, -0.00261069462, -0.0262753777, 0.0195256248, -0.0104739694, -0.0346096382, -0.00634738756, 0.000432386529, -0.00113535579, -0.0273982566, -0.018040929, -0.0223203469, -0.00371797825, -0.0158326, 0.0174171068, -0.0239672363, 0.0168057606, 0.0104240635, -0.020149447, 0.00548339402, 0.00108778942, 0.0317650102, 0.0196004827, -0.0274481624, -0.00996867381, -0.0106548779, 0.032164257, -0.00981271826, -0.0104490165, 0.0154333534, 0.021234896, 0.0183029342, 0.0155955469, 0.0223702528, 0.00574228028, -0.00972538255, 0.0154458294, -0.00539917825, 0.00749833882, 0.0185025558, -0.00592318876, -0.00180908339, 0.00767300883, -0.025127545, 0.00703047263, 0.00875845924, 0.0309415646, 0.0257763192, 0.0260008946, -0.0233933199, 0.0158076454, -0.0160946045, -0.00238767825, 0.0213721376, 0.0400493629, 4.52758213e-05, 0.00960685685, -0.00502176583, -0.0213222317, -0.0153959235, -0.01701786, 0.020186875, -0.0177290179, 0.00320332521, -0.00347780692, -0.0232560784, 0.00698056677, 0.00696185185, 0.000833581958, -0.000339982915, -0.0162193682, -0.0298186857, -0.0129380655, 0.00256078877, 0.0273233969, 0.000924815889, 0.0222829171, 0.0258012731, 0.038202852, 0.0221831053, 0.00239859498, 0.0374542661, 0.0134995049, 0.0315653868, -0.0169055723, -0.0306171775, 0.0010526994, -0.0221706294, 0.030766895, 0.0171675775, -0.00678718183, 0.0340606757, -0.00664994121, -0.0282466542, 0.00625693332, -0.00895808171, -0.0118713304, 0.0268243402, -0.0287457108, 0.00394255435, 0.00834049843, 0.0106673539, -0.0111788874, -0.00691194646, -0.0416962542, 0.00432620477, 0.00713028386, -0.00340918661, 0.0576910451, -0.00708037801, 0.0185898915, -0.00147455896, 0.0237551369, 0.0158450752, -0.0108607383, -0.0157826934, 0.0140484683, -0.00156111422, 0.0225573983, 0.0128756836, -0.0129255895, -0.0296440143, 0.00642536534, 0.05295, 0.0234931316, -0.00450087478, 0.0156080229, -0.0183403622, -0.00474104611, 0.00857755076, -0.00133887772, 0.0112974141, 0.0304924119, -0.0140734212, 0.0103242518, 0.0235430375, -0.0313657634, 0.0245910585, 0.00645655626, 0.0243914351, -0.0144726671, -0.0378285572, 0.0148095312, -0.0125700105, 0.00143557007, 0.0343850628, -0.00306764408, 0.0111102676, 0.00497186044, 0.0240046661, 0.00146208249, 0.00531808147, 0.0144726671, -0.0208481271, -0.0558944382, -0.0164688975, 0.00255922927, 0.00671232305, -0.0135494107, 0.00915770512, -0.0093573276, 0.0213970896, 0.0100372937, 0.00114237377, 0.0114907986, 0.0165312793, -0.0220583417, -0.014160756, 0.0355578475, 0.000781726791, -0.0138737978, 0.0195381, -0.0538982078, -0.0114471316, -0.0160696507, 0.0168057606, -0.00228318805, 0.0046693068, -0.00314250262, 0.0228443574, 0.00539605925, -0.0192386657, 0.0057734712, -0.0344349667, -0.0101558203, 0.0221332, -0.0107359746, -0.00180752389, -0.0105488282, 0.00845902413, -0.00450087478, -0.0173672, 0.0198874418, 0.0140609453, -0.000993436319, -0.00526193762, -0.0244039111, -0.0359820463, -0.000938072102, 0.00190733536, 0.0399246, 0.0251649749, 0.014173233, -0.0304425079, 0.00903917849, 0.0110042179, -0.0127134901, -0.0272984449, 0.00379595603, -0.0147596253, 0.00349652162, -0.0116093252, 0.0175293945, -0.0300682131, 0.0245910585, -0.00559568219, -0.0323638767, 0.0330625586, -0.016643567, -0.000524790143, 6.82305181e-05, 0.00618207455, -0.0125575345, -0.00809096918, -0.0120834298, 0.0381030403, 0.00230034324, -0.0312659517, -0.025514314, -0.0197252482, -0.00198843214, 0.0306920353, 0.000145623417, 0.0203864984, 0.0113785109, -0.00775410561, -0.0152586829, -0.000230034319, -0.0266995765, -0.0401741266, -0.0321393, -0.0157577395, -0.00895184372, -0.00308635877, -0.00960685685, 0.0296939202, 0.00943218637, 0.0106611159, -0.00119851774, 0.000486191158, 0.0149218189, 0.00996243488, 0.011684184, 0.00787263177, -0.00193540729, -0.0100684846, -0.0142231388, -0.0199248698, -0.00707414, -0.0154084, 0.00354642724, -0.0113847489, 0.0120647149, -0.00525569916, -0.00538982078, -0.0457885265, 0.0107921185, 0.00471921219, 0.0505794771, 0.0026715172, 0.00735485973, 0.00686827861, -0.0279222671, 0.0133373113, 0.00459132902, -0.0155331641, 0.0181033108, 0.0277226437, -0.00907660834, -0.0033280896, 0.00650646212, -0.0258262251, 0.000138507952, 0.00496250298, -0.0248655397, -0.00916394312, 0.0188144669, 0.0140858982, -0.00193384779, -0.0184776038, 0.000307427224, -0.00741100358, -0.0289203823, 0.0186897032, -0.00713028386, -0.00865241, 0.00887698494, -0.0101059144, -0.000942750776, 0.0267993882, -0.0138613218, 0.00767300883, 0.00817830488, 0.0132375, 0.0268492922, -2.91441775e-05, 0.00106361625, -0.0213596616, 0.0111913644, 0.0101994872, 0.0319396779, -0.0109355971, -0.0151339183, -0.00988757703, 0.00895808171, -0.00641912688, -0.0229316913, -0.0235804673, -0.00714899879, 0.0203241166, -0.0122518614, 0.0232685562, 0.021247372, -0.01701786, 0.00196659844, 0.0580902919, 0.0144851441, -0.00393943489, 0.000266683841, -0.0495813601, -0.0456388071, -0.00620078947, 0.0243290532, 0.0246534403, -0.0158949811, 0.0284712296, 0.00762934145, 0.00840911921, 0.0143978084, -0.0399495512, 0.0269241519, -0.0018761442, -0.0146598136, 0.0317151025, -0.0366308205, 0.0192137137, 0.0026559215, 0.0118775684, -6.19923e-05, 0.00424198853, -0.00983767118, -0.0101558203, -0.0183777921, -0.012033524, -0.00638169749, -0.0186023675, 0.00844654813, 0.0196878184, 0.00344661577, 0.0295192506, 0.0120834298, 0.0489824936, 0.00191201398, -0.0119898561, 0.0217214767, -0.012750919, -0.0254020263, 0.0167059489, -0.0309415646, -0.0043230853, 0.0121645266, -0.00192760956, 0.00797244348, -0.0394255407, 0.012046, 0.0118650915, 0.0130378772, -0.0190390442, 0.0196129587, -0.0436425768, 0.0144976201, -0.00973785948, 0.0240296181, 0.00494690752, -0.0227320697, -1.5290947e-05, 0.0293944869, 0.00863993261, -0.00974409748, -0.00729247741, 0.00395191135, 0.0185399856, -0.00363688148, 0.0275479741, 0.0132749295, 0.0103928726, 0.0281717964, 0.0022286037, 0.0150091536, -0.0179785453, 0.0153959235, -0.0179161634, 0.00835921336, 0.025501838, -0.0064378418, -0.0219335761, 0.0146598136, 0.00834049843, 0.00929494575, -0.0202243049, -0.00943842437, -0.0161320344, 0.0136367464, -0.0153335417, 0.0324137844, -0.0249279216, 0.0130254, 0.00808473118, 0.00548339402, 0.0026559215, -0.015932411, 0.031241, 0.0296190623, 0.011684184, -0.0123017672, 0.00865864754, 0.0279222671, 0.0239422824, 0.0443662107, 0.0131252119, 0.00793501455, 0.00347468769, 0.00973162148, -0.0200621113, 0.0175793, 0.0246908702, -0.000430826971, 0.00706166355, -0.000927155255, 0.00264344527, -0.0295941085, 0.0101371054, 0.0242042877, -0.00691194646, -0.0174295828, -0.0395503081, 0.0447904095, -0.00551770441, 0.00096224522, 0.0101308674, -0.0232685562, -0.0290950518, 0.0191762839, 0.00112599845, -0.0293196272, 0.000913119235, 0.0167932846, 0.0160571747, 0.0103554428, -0.0105113983, -0.0155206881, 0.0112350322, 0.0171675775, -0.00126635842, -0.0304175541, 0.01558307, -0.00440418255, -0.00073299068, 0.0117964717, -0.00807225518, 0.0303177424, 0.0253146905, -0.0316901505, 0.00186366786, -0.0143479025, -0.0221581534, 0.000702579389, 0.0225199685, 0.00917642, -0.00863369461, -0.00118682114, 0.0102992989, 0.0116155632, -0.00450399378, -0.0026528025, 0.0150964893, 0.00302085746, 0.0175293945, -0.00797868147, 0.025152497, 0.00406108052, -0.0206734575, -0.0215093773, -0.0122892903, 0.0163191799, 0.00661875, -0.0181656927, -0.0104926834, -0.0133747412, 0.0514029227, -0.00608538231, 0.0101371054, -0.0119773801, 0.0281468425, -0.0193634313, -0.0184651278, -0.0133497883, 0.0116280392, 0.0112911761, -0.0233309381, -0.0105301132, -0.0231188387, -0.00506543368, -0.00392383942, 0.00681213476, 0.00468802126, 0.0146598136, 0.00886450894, 0.0214594714, -0.00133030012, 0.0119274743, -0.00624445686, -0.00119851774, 0.00432932377, 0.0230689328, -0.0219585299, -0.00503112329, 0.0435427651, 0.0315404348, 0.0102556311, 0.0210727025, -0.00627252879, -0.00110806362, 0.0346595421, 0.00209916057, 0.035008885, -0.0233309381, 0.0097815264, -0.0279472191, 0.0152836358, -0.00840911921, -0.00867736246, -0.0301929787, -0.00177477323, -0.00522762723, 0.00958814193, 0.00499681337, 0.00120631559, 0.0136866514, -0.00444161147, 0.0102930609, 0.00853388291, 0.00794749055, -0.00480342843, -0.00514964946, -0.00178257097, 0.00829683058, 0.0138488458, -0.00198063441, 0.00480030943, -0.0141857089, -0.0104303015, -0.0174670126, 0.0244538169, -0.0157452635, -0.0053399154, 0.00609785877, -0.0163316559, -0.00928870775, 0.0154583063, -0.000216778091, 0.00671856152, -0.00559880119, -0.00984390918, -0.0174794886, -0.0251899268, -0.00931989867, 0.000129735447, -0.0174919646, 0.00387393381, -0.00376164587, 0.019488195, -0.031241, -0.0211101323, -0.0359820463, 0.0189018026, 0.0178537816, -0.00299746403, 0.0178787354, -0.00721138064, -0.0131751178, -0.00168743811, -0.0154583063, -0.00830306858, -0.00294287968, -0.00678718183, 0.00699928124, 0.0482588597, -6.39051905e-06, 0.00286646141, 0.0168681424, 0.0290701, 0.0140110394, -0.0334368534, -0.00260289665, -0.0203740224, -0.0373544544, 0.0131875947, -0.0064378418, -0.0233683679, 0.0351586, 0.00893936772, 0.0209229849, 0.00358385663, -0.0227694977, 0.00657508243, 0.0148095312, -0.00401741266, -0.0142231388, 0.00473792711, 0.00801611133, 0.0171426255, 0.0147097195, -0.00113145693, -0.0214969013, 0.00795996655, -0.0111476965, -0.0055582528, 0.00383026619, 0.00993124396, 0.0271487273, -0.00436363416, -0.0137365572, 0.0221831053, -0.00231749821, 0.0159199331, -0.00739852712, 0.0171551015, 0.0164813735, -0.0390262976, -0.0107484506, 0.0250901151, -0.0365809128, 0.0021709, -0.0284712296, 0.00888322294, -0.000187049081, 0.00462563895, 0.00503112329, 0.00040119543, -0.0056611835, -0.0058795209, -0.0149966776, 0.0123329582, 0.00181532162, -0.012046, -0.0155206881, 0.0163316559, 0.0179535933, -0.00172798662, 0.0235180836, -0.0163191799, -0.0441915393, 0.00905165542, 0.00296783261, -0.0324886441, 0.0234931316, -0.0129380655, 0.0109480741, -0.00423263153, -0.013462076, 0.016980432, 0.00641288888, 0.00253271684, 0.0446656458, -0.00228942628, -0.00517148338, 0.02759788, -0.00420455961, 0.0049905749, -0.00572044635, 0.00527753308, 0.00677470537, -0.0156828817, -0.0032376356, 0.0355328918, -0.0122892903, 0.00427318, 0.0137240812, 0.0063317921, 0.0189891383, -0.00622262293, -0.0157951694, -0.00584833, -0.00273233978, -0.00898303464, -0.000199817936, 0.0449151732, -0.011322367, 0.0196503885, 0.0133248353, 0.0257014614, -0.0165437553, 0.00734862173, 0.00102930609, -0.0471858867, 0.00250776391, -0.0114346547, -0.0204364043, -0.00842159521, 0.00693066092, 0.0221831053, 0.0162817501, 0.00145740388, 0.01169666, 0.0386021, 0.0121832406, 0.00717395125, 0.0119212363, -0.0205861218, -0.00705542509, 0.000677236589, 0.0170303378, -0.0210976563, 0.0072238571, -0.00126401905, 0.0118962834, 0.0182405505, 0.000958346354, 0.00329066045, 0.00617583655, 0.0234806556, -0.0406731851, 0.0160072688, -0.00490323966, 0.0165687092, 0.0197502, -0.00519955531, 0.0162942279, -0.036156714, 0.0181407407, -0.00820949581, 0.0564933084, 0.00908908434, -0.0079038227, -0.0256016497, 0.027622832, -0.0396501161, 0.00652517658, 0.0168806203, -0.00903917849, 0.00829683058, -0.00881460309, 0.00802858733, 0.00568925543, 0.00468490226, -0.00792877562, 0.0122269085, 0.0137240812, -0.016631091, -0.00714899879, -0.0148220072, -0.000640197191, -0.014160756, 0.0174295828, 0.00832178351, 0.00257326523, 0.0170927197, 0.0112537462, 0.00664994121, -0.0212972779, 0.00294132018, 0.00869607646, -0.00248593022, 0.0104739694, 0.0234681778, 0.0185275096, -0.0179785453, 0.0213097557, -0.00718018971, 0.00404548459, 0.0216590948, -0.0182530284, 0.0126199163, -0.00600428553, -0.00459756702, -0.0321393, 0.00106829498, -0.00625381432, -0.00683084922, -0.00983767118, -0.000284618727, 0.00188238244, -0.0167059489, 0.0287457108, 0.0054584411, -0.0304924119, 0.0272984449, -0.0257264134, 0.0154333534, -0.00464747287, 0.00386769557, -0.00507479068, 0.00351835531, -0.00208356511, -0.0056674215, 0.00698680477, 0.00718018971, 0.0206859335, -0.00696809031, 0.022644734, 0.0129255895, 0.0158700291, -0.0100747235, -0.00023276353, 0.00384274265, -0.00417960668, -0.00911403727, -0.000291441771, 0.0140983742, 0.0241793357, -0.0079038227, 0.0230564568, -0.00681213476, 0.00549899, -0.00716147525, 0.0436924845, -0.00204457622, -0.0160197448, 0.00927623082, 0.01523373, -0.0133622643, 0.000944310334, -0.0310912821, 0.00717395125, 0.0207982212, -0.00791006163, -0.00272922055, 0.0208356511, 0.0136117935, 0.00470361672, -0.00179348781, 0.0158825051, -0.0129380655, 0.0119586652, 0.0128756836, -0.000627720729, 0.00822821073, -0.0229441691, 0.0209229849, 0.0123454351, 0.0121270968, 0.00951952208, -0.0158326, 0.00228474755, -0.0047722375, 0.00964428578, -0.00180128566, -0.0296689682, -0.0169430021, -0.013811416, -0.0061290497, 0.013100259, -0.0055613718, 0.0238799, -0.00614464516, 0.0268243402, -0.0288704764, -0.01558307, -0.0330376066, -0.00830930751, 0.000964584586, -0.0294194389, 0.007791535, 0.00759191206, -0.0232810322, -0.00772291468, -0.012750919, 0.0349090733, -0.00108778942, 0.00867736246, -0.00620078947, 0.00430125184, -0.00892689079, -0.00936356653, -0.00313470489, 0.0106923068, 0.0121582886, -0.00474728458, 0.00766053237, 0.00782272592, -0.0162443221, -0.0165312793, 0.0015143276, -0.0204114523, -0.0137864631, -0.00374293118, 0.0140983742, 0.0103991106, -0.000856975268, 0.0118900444, 0.0136367464, -0.0133373113, -0.000538046355, 0.00264968327, -0.000739618787, 0.00189797801, 0.000943530584, -0.00353083177, 0.0179535933, -0.0168057606, -0.0076854853, -0.00202898053, -0.00111742096, 0.0175044425, -0.0221581534, -0.00752329174, -0.00937604252, -0.0188643727, -0.0157702174, -0.0256515555, -0.0234806556, 0.0174171068, -0.0019993491, -0.00175761816, 0.000523230585, 0.00964428578, 0.0233808439, -0.00641288888, -0.000664370309, -0.0346844941, -0.0197252482, -0.0100372937, -0.00911403727, 0.00507167168, 0.00698680477, -0.0213970896, 0.00267931493, -0.0071178074, 0.0045726141, 0.0114408927, 0.0142605677, -0.00922632497, 0.00180284516, 0.0110853147, 0.000506855256, -0.00993124396, 0.00907660834, 0.0232061725, -0.00449151732, 0.0309166126, 0.0200995412, -0.00630372, 0.00525258, 0.0100934375, -0.00196347921, 0.00157281093, 0.00688075507, -0.00432932377, -0.0156205, 0.0190639962, 0.0117715187, -0.00257794396, -0.0216965247, -0.0216590948, -0.0140235154, 0.0243540052, -0.0139237037, -0.0317650102, 0.0156953577, -0.0156205, 0.00256390776, 0.00452582771, 0.00855883583, 0.00473168865, 0.00195100287, 0.0223203469, 0.000582493667, -0.00715523679, -0.00468802126, -0.0200995412, 0.0150840124, -0.00776034407, -0.0103055369, -0.0260508, -0.00494690752, -0.0102306791, -0.00203677849, 0.00580466259, 0.0238923766, -0.0342353433, -0.0170802418, 0.0121582886, -0.0250776391, 0.0197502, 0.0278224554, -0.00284774671, -0.00782272592, 0.0118900444, -0.00394567335, 0.022669686, 0.00453206571, 0.00280719833, 0.00346221146, -0.00336239976, -0.0211974662, 0.00101682963, 0.00849021599, -0.0156828817, 0.00448216032, -0.0110728377, 0.0191762839, -0.0138737978, -0.0164314676, 0.00994372088, -0.0139112277, 0.018078357, 0.0220333878, -0.00236896356, -0.0164813735, -0.0446157381, -0.0148095312, 0.00118916039, 0.017704064, 0.0110977907, 0.00713028386, 0.0151089653, 0.00161413907, 0.00930742268, 0.0112599842, 0.0045726141, 0.0121957175, 0.00273857801, -0.0184401739, 0.0126698222, 0.0190639962, 0.011665469, -0.00589199737, -0.00101838924, -0.0183154102, -0.00860874169, 0.00173734385, 0.0112100793, 0.00793501455, 0.00943218637, 0.0078851087, -0.00197439617, -0.0259010848, -0.00646903273, -0.0204114523, 0.0329377949, 0.0136616984, -0.0171426255, 0.00425446499, -0.0093573276, -0.016656043, 0.00361816678, 0.00492195459, 0.0252772626, -1.63022196e-05, -0.018764561, 0.000934173237, -0.0300432611, 0.0184651278, 0.0113909869, -0.00396126881, 0.0147845782, -0.00626317132, 0.0133373113, 0.0129006365, 0.00740476558, 0.0142979976, -0.0131252119, 0.0102992989, 0.0210103206, 0.00914522819, 0.00641288888, 0.0226073042, -0.00441042054, 0.00157982891, -0.0260258485, 0.00284774671, 0.00756695913, 0.00718018971, 0.0062288614, 0.00763557944, -0.0327631235, -0.001726427, -0.00592942676, 0.0078913467, -0.013437123, 0.0160446987, -0.0110166939, -0.0144601911, -0.0103803957, -0.0164065156, 0.0092325639, 0.00354330824, 0.0112724612, 0.0133747412, 0.0140110394, 0.0140484683, 0.00835297443, 0.000602767861, -0.013437123, 0.0047847135, -0.024765728, 0.00742348, 0.00493755, -0.00532431947, -0.00230814097, -0.00684332568, 0.00641912688, 0.00152290508, 0.0177539699, -0.014871913, 0.012027286, 0.020536216, -0.0161445104, 0.001327181, 0.0101745343, 0.00950704515, 0.00867736246, -0.00729871588, -0.0057734712, 0.0101807732, -0.0161944162, -0.0184651278, -0.0100809615, -0.00906413142, 0.00471609319, 0.0193634313, -6.85351188e-06, -0.00112131983, -0.0093573276, -0.00016872432, 0.000919357466, 0.0174794886, -0.0137240812, 0.00310507324, -0.00650646212, -0.00960685685, 0.000343296968, 0.00769796176, -0.0229940731, 0.00915770512, -0.0190390442, 0.00291012903, 0.0162193682, 0.0363563374, -0.0260008946, -0.0070055197, -0.0132749295, -0.0154084, -0.000294365949, -0.00450087478, -0.00834673643, -0.00448839832, -0.0182031225, -0.0161694624, -0.0106860688, -0.0151339183, 0.0220957696, 0.00513405399, 0.00179036881, -0.0121395737, -0.00453206571, 0.0203241166, -0.0094446633, 0.0228817854, -0.0193759073, -0.0155456411, -0.0315404348, 0.0205736458, -0.0345347784, 0.0239547603, -0.00653141504, 0.0177539699, 0.00482214289, 0.000449151732, 0.00673103798, -0.0189517085, -0.00678718183, -0.00354954647, -0.0106923068, 0.0167932846, -0.00200558733, -0.00402988913, 0.0121270968, 0.00824692473, -0.00113769516, -0.0310413763, -0.00542725, -0.0203989744, -0.00994995888, 0.021946054, -0.0139112277, -0.00847150106, 0.0259509888, 0.000152348992, 0.012039762, -0.0208356511, -0.0204987861, 0.00182311935, 0.000991097, -0.0248655397, -0.00273233978, 9.13314216e-05, 0.00113145693, 0.0115095135, -0.0106860688, 0.00675599091, 0.0234681778, -0.0010542589, -0.002209889, -0.00272922055, 0.0248156339, -0.00304581015, 0.0115656573, 0.00498121744, 0.00200714683, 0.0123142432, 0.0277725495, -0.00117980305, 0.00542101217, -0.0170802418, 0.00820325781, 0.00506231422, -0.00476288, -0.0249653514, 0.0217963364, -0.00392695842, 0.0108357854, 0.0105613042, 0.00192760956, -0.0140734212, 0.0146847665, 0.0319646336, 0.00859002676, 0.0023377724, -0.0163690858, -0.0188643727, -0.0208106972, 0.0204863101, 0.00248125149, 0.00649398565, 0.00917018112, -0.00931989867, 0.00252959761, -0.0037678841, 0.0181282628, 0.00372421648, 0.0318648219, 0.0443662107, -0.00128741236, 0.00686827861, 0.00408603344, 8.09019e-05, -0.000373708288, -0.0111414585, 0.00603859546, 0.000891285483, 0.000582883542, 0.000237637141, 0.00558632473, -0.015246206, -0.0167808086, -0.0342852511, -0.00506855268, -0.0264250934, -0.0171176717, -0.00335304253, -0.0161819384, 0.00243602437, 0.00852764491, -0.0108794533, 0.00192605, 0.0214095656, -0.00573292281, 0.00820325781, -0.00484709581, -2.63905895e-05, 0.0231687445, 0.0172424372, 0.00493131205, 0.0174046308, 0.0138987508, 0.00627564779, -0.00225667562, -0.00406731851, -0.0137864631, 0.00825316366, 0.00479407096, -0.0170802418, 0.0107983565, 0.00104568142, 0.00169991457, -0.0132499766, -0.00814711396, 0.0126012014, 0.000660861318, 0.00630060071, 0.0053461534, -0.0102182021, -0.0314905271, 0.00989381503, -0.00529312855, -0.0301680248, 0.00975033548, -0.0040018172, -0.0113473199, -0.00348404516, 0.0127010131, 0.0102992989, -0.0188144669, 0.00635050656, -0.0177539699, 0.0439170599, -0.0136117935, -0.00249216845, 0.00337487622, 0.0105675422, -0.0188019909, 0.0112662232, 0.00216154265, 0.0100934375, -0.0230564568, 0.000808629091, -0.010954312, 0.025127545, -0.00393943489, 0.000265904062, -0.000557150925, 0.00142309361, -0.0082157338, 0.00470049772, -0.0146223847, -0.0049874559, 0.0109293591, -0.00441042054, -0.00161569868, 0.0165687092, 0.00463811541, 0.000704528822, 0.0220209118, 0.00292572449, -0.00044642252, 0.0136991283, 0.0124826757, -0.00769796176, 0.0129879713, 0.00867112353, -0.00510286307, 0.00637857849, 0.00163285376, 0.0104303015, 0.0126760602, 0.010966788, 0.0104303015, -0.002567027, 0.0157702174, 0.0108732153, 0.012389102, 0.0164314676, -0.0153709706, -0.00447904086, 0.0124514848, -0.0158949811, -0.000740008662, -0.0083280215, 0.00581713906, -0.00149015454, -0.00968795363, 0.0199997295, -0.0111976024, -0.014160756, 0.0175543465, -0.00285086595, 0.000188608639, -0.0113098901, 0.00108545, 0.012389102, 0.0081096841, 0.0220583417, -0.0121021438, -0.00680589676, 0.00512469653, -0.0334118977, -0.0188269448, 0.00911403727, 0.00179660693, 0.0153709706, -0.0016016626, -0.0272734929, -0.00247969199, -0.0136616984, 5.36096923e-05, -0.0234681778, 0.0122019555, 0.0142231388, 0.0133373113, 0.000186561723, 0.0196628645, -0.0182904564, 0.00935109, -0.00433556177, -0.00519331684, 0.00260445639, -0.00109168829, 0.00992500596, -0.0108856913, 0.00235336809, -0.00689323153, 0.00305204839, 0.00740476558, -0.0188144669, 0.0112974141, 0.0121645266, -0.00447280286, 0.00264656427, -0.0338610522, -0.00819078088, -0.0123142432, 0.023717707, -0.0201244932, 0.00901422556, 0.00320332521, -0.00877717324, 0.0195755307, -0.00533367693, -0.00928870775, -0.0412221476, 0.0124764377, 0.00980647933, 0.00384586188, 0.0137864631, 0.006905708, 0.00406108052, 0.021209944, -0.0100310557, 0.0213721376, 0.013087783, -0.00837168936, -0.00928870775, 0.00480030943, 0.0183653161, -0.0210976563, -0.0168930963, -0.00546467956, 0.00879588816, -0.0239173304, -0.0106299249, -0.00114159402, 0.0174545366, 0.0145350499, 0.0106299249, 0.0115843723, 0.00209448184, 0.00113457604, -0.00301773823, -0.00170303369, -0.00774786761, 0.0102306791, 0.00454142317, 0.0118526155, 0.0143479025, -0.012027286, -0.00422327407, 0.00766677083, 0.020536216, -0.00748586236, -0.00376476487, 0.00729871588, 0.0110603618, 0.00835297443, 0.0167433787, 0.0138862748, -0.017005384, -0.0137490341, 0.00232217694, -0.0241419058, -0.0108794533, -0.0113098901, 0.0283464659, 0.0205985978, -0.0116280392, -0.0140858982, -0.000366690278, -0.00129910908, 0.00516212592, 0.00171862927, 0.024054572, 0.0181282628, 0.0107297357, -1.80323514e-05, -0.0189392325, 0.0461129136, 0.00103554432, 0.0181656927, 0.0134995049, 0.00354954647, -0.000589121773, -0.00337487622, -0.0082219718, 0.00641912688, -0.018065881, 0.026574811, 0.00440730155, -0.0055520148, 0.0171675775, 0.000509194622, 0.00293508195, 0.0105363512, 0.0140609453, 0.00974409748, 0.00948209222, -0.00624757586, -0.0281468425, 0.00394879235, -0.00242978614, -0.0080098724, 0.00409227144, -0.00542725, 0.00750457682, 0.00101994874, 0.0125949634, -0.00372109748, 0.0114159398, -0.00371797825, 0.0252523087, 0.00354330824, -0.0138238929, -0.0174171068, 0.0153709706, 0.00669360859, 0.00719890418, -0.0118900444, -0.015944887, 0.0179785453, -0.00424198853, -0.0203615464, 0.0135618877, 0.00795372855, 0.0127010131, 0.00734238327, 0.0224575866, -0.00196503894, -0.00152212533, -0.0153709706, 0.00605731038, -0.0055333, -0.0136741754, 0.0279222671, -0.0113098901, 0.0173672, -0.0117153749, -0.0151838241, -0.00995619688, -0.0253022145, 0.0037710031, -0.00465059187, 0.00360880955, 0.0174046308, -0.0204488803, 0.0065438915, -0.0222829171, -0.00408603344, 0.0154583063, -0.0073236688, -0.0264001414, -0.015208777, 0.00268867216, 0.00723633356, 0.0318149142, 0.00255922927, 0.00852140691, 0.0103803957, -0.00152524444, -0.00315809809, 0.0108545, 0.0303676482, 0.00917642, 0.00104490167, 0.0153085887, 0.00238299952, 0.0186772272, 0.0147970542, 0.0307169892, -0.00794125255, 0.00707414, -0.00922008697, 0.0133622643, 0.00590447383, 0.00486892974, -0.00685580214, 0.00430749, -0.0124577228, -0.00647527119, -0.00886450894, -0.0125824874, -0.00391448243, 0.00817206688, 0.0129879713, 0.00395815, -0.0273982566, -0.0082157338, -0.00774786761, -0.0419208296, -0.00470673619, -0.00471921219, -0.00170147419, -0.0047784755, 0.0153335417, 0.0117465658, -0.0036649534, 0.00360257132, 0.0331873223, -0.00637857849, -0.00518084038, 0.00279940059, 0.00963804778, 0.014522573, 0.0125138666, -0.0218961481, 0.00809096918, -0.0192511436, 0.00100825215, -0.0139736095, 0.000201572446, -0.00196036021, 0.0036805491, -0.00560815865, 0.00820949581, 0.000571186887, -0.0142356148, -0.00305984635, 0.0316402465, 0.0101371054, -0.000110143548, -0.0344599187, -0.00578594767, -0.000965364336, 0.00937604252, 0.0120210471, -0.0163316559, -0.00242666714, -0.0159698389, 0.0304924119, 0.00970666856, -0.0103616808, 0.00491883559, -0.00313002616, 0.00774786761, -0.00104802079, -0.0127197281, -0.0168057606, -0.00608226331, -0.0380531326, 0.0190016143, 0.000951328373, 0.00282903225, -0.00179816654, 0.0142730447, 0.0144851441, 0.00913899, 0.00871479139, -0.00387393381, 0.0161320344, -0.0199872535, -0.00194788375, -0.0304425079, -0.0175044425, 0.0121582886, -0.00787887, 0.0280220788, -0.0101932492, 0.00795372855, 0.0121270968, 0.0122580994, 0.00713028386, 0.00515900692, -0.00838416629, -0.0186897032, 0.00480654743, 0.00578906713, 0.00133263948, -0.00378036057, 0.00609474, 0.0121083828, 0.00915146712, 0.00617895555, -0.00681213476, -0.0168681424, -0.00320644444, -0.0192885716, 0.0257513672, -0.000734940113, -0.0191638079, 0.0128257778, -0.00804106425, 0.0204738341, -0.00358697562, -0.00633803, -5.25862342e-05, 0.0104677305, -0.0341604836, -0.0115344664, 0.00756695913, -0.0156329758, 0.00218025735, 0.00365559617, -0.00316433632, 0.0274980683, 0.00693066092, 0.0136741754, -0.000757163798, -0.0227071159, -0.00908284634, 0.00126947754, 0.0326633118, -0.00441977801, 0.0248780157, 0.00363064324, 0.0126448693, 0.00920137297, -0.0023377724, 0.0169055723, 0.0168806203, 0.0121645266, 0.000793423445, -0.0226821639, 0.00409539044, 0.0182031225, 0.0071115694, -0.00806601718, -0.000635518518, 0.0164439436, -0.00896432064, 0.0110166939, -0.0148968659, 0.0224575866, 0.00643160334, 0.0168806203, 0.0079163, -0.00721138064, -0.0185025558, -0.00453830417, 0.0129754944, 0.0179910231, -0.0161320344, 0.00420144, -0.00840911921, 0.00415777275, -0.0234557018, -0.0211600382, 0.0105425892, 0.00836545136, 0.0146722905, -0.0176167302, -0.00880212616, -0.00888322294, -0.0137739871, 0.00168899773, -0.00464435387, 0.00581090059, 0.024765728, 0.0100372937, 0.00751705328, -0.00257482473, -0.00203365926, -0.0118276626, 0.0153460177, 0.020561168, -0.0198500119, 0.0237925667, 0.000404704449, 0.00976281241, -0.012763395, -0.0205736458, -0.0159823168, 0.0276477858, -0.0240420941, -0.00756695913, 0.000967703643, 0.00394567335, 0.0472607464, -0.00425134599, -0.0310912821, 0.00684332568, 0.00423575053, 0.00209604157, 0.00681837322, -0.000252452912, 0.0193010494, 0.0203116406, 0.0177290179, 0.00476288, -0.000954447431, -0.00974409748, 0.021596713, 0.0277475957, -0.0117340889, -0.0105987331, -0.00041250221, -0.0108669773, 0.00377724133, 0.00414217729, 0.0273982566, -0.00634426856, 0.00713028386, 0.0160322227, 0.00482214289, 0.00459444802, -0.0136242695, -0.00693689892, -0.00676846737, 0.0103117758, -0.0120085711, -0.00640665041, -0.00382402795, 0.0369302556, -0.0170677658, 0.0065501295, -0.00271050609, 0.00754200621, 0.02265721, 0.0260508, -0.0245161988, 0.0170303378, -0.00771043822, 0.0274731144, 0.00352771254, -0.00443849247, 0.0150341066, -0.0183777921, -0.02759788, -0.00860874169, 0.00310975197, 0.0132624526, 0.00859002676, -0.0061290497, -0.00525569916, -0.00994372088, 0.0238674246, -0.00513717299, 0.00374916941, -0.00835921336, -0.00736109819, 0.00828435458, 0.0115219895, 0.00360257132, -0.0195381, 0.0307169892, 0.023006551, -0.0246035345, 0.021621665, 0.0240296181, -0.00860250369, -0.00302241696, -0.00292884372, -0.0353332721, 0.0025451933, -0.00527129462, 0.028321512, -0.00866488554, 0.00832178351, -0.0220832936, 0.0130628301, -0.0067934203, 0.00749210082, 0.0107359746, -0.0211600382, -0.0136117935, -0.00684332568, -0.00297095161, -0.0196628645, 0.0203740224, -0.0209853668, 0.0144352382, -0.00960685685, -0.00855883583, 0.0092388019, -0.00281967479, 0.0136242695, -0.0117652807, -0.006019881, 0.00689947, 0.0177165419, -0.0169679541, -0.019138854, -0.024753252, -0.0238175187, -0.0206485037, 0.000112092988, 0.0317400582, 0.0129630184, 0.00105191965, 0.0192137137, -0.0100560086, -0.00151978608, -0.0290701, 0.010617448, -0.0244787708, -0.00971290655, 0.0142855207, -0.000981739606, 0.00186834647, 0.0290701, 0.00351835531, -0.00170459331, -0.00350275985, 0.00979400333, 0.00446656439, -0.020174399, -0.00452894671, -0.00363064324, 0.0122331465, 0.0300682131, 0.0143104736, -0.0010729736, -0.00602923846, -0.0140858982, 0.00567054097, -0.0159698389, -0.0128507307, 0.00114627264, 0.0121957175, 0.0131376889, -0.0248281099, 0.0130378772, -0.0121832406, 0.0274731144, 0.00415465375, 0.0173547249, -0.00843407121, 0.00894560572, 0.0207607914, 0.00361192855, 0.0167932846, 0.0103304898, 0.0100061027, 0.014871913, -0.00177945185, 0.0053430344, 0.0173172951, -0.00264344527, 0.00448216032, -0.020149447, 0.0147845782, -0.0110853147, 0.00364935794, 0.00130144833, 0.0107546886, 0.0110666, 0.00671856152, 0.022295393, 0.0124577228, 0.00196347921, 0.00074351771, -0.00669984706, -0.0117590418, 0.0265249051, -0.00153304229, -0.0209354609, -0.000543894712, 0.00840288, -0.0241793357, 0.00255766977, -0.0155456411, -0.00812216103, 0.0163441338, 0.00105581852, -0.00390824396, 0.00482214289, 0.0114034638, 0.00337487622, 0.0096567627, -0.00639417395, 0.0121146208, 0.0110166939, -0.0177789237, -0.0135993166, -0.00786639377, 0.00135369343, -0.0126635842, -0.0192137137, -0.00374916941, -0.0261007063, -0.00549275149, -0.0157951694, -0.00461628195, 0.0171426255, 0.00839664228, 0.0182405505, 0.009544475, 0.016618615, -0.00173110573, -0.00936356653, -0.0133622643, 0.0124327699, -0.0033436853, 0.00973162148, -0.00723009557, 0.0100310557, -0.00902670249, 0.00433244277, 0.00090142258, -0.00352771254, 0.00994372088, -0.0125949634, -0.00599804707, 0.00512781553, -0.00101215101, -0.0317400582, -0.0147970542, -0.00709909294, 0.009563189, -0.00582337705, 0.0149717247, -0.0203740224, -0.0120896678, 0.00493131205, -0.0116218012, -0.0246035345, -0.000382870669, -0.0213970896, 0.0203864984, -0.00359945209, -0.0137240812, 0.0233808439, -0.00742348, -0.00497186044, 0.00333432783, 0.00891441479, 0.00141139701, 0.00741100358, -0.00735485973, 0.00264812377, 0.019463243, -0.0126573453, -0.00224108016, 0.0105301132, 0.0109418351, -0.0106299249, -0.0132250236, -0.0165936612, -0.0114159398, -0.000585222908, 0.0132998824, -0.0178787354, -0.000474884408, -0.00757943559, 0.00698680477, -0.00723009557, -0.00713028386, -0.0135618877, -0.0132000707, 0.00831554551, 0.0123516731, 0.0147970542, 0.00162505591, -0.00870231539, -0.00646279473, -0.0178038757, 0.0297687799, -0.0130503532, -0.0224451106, 0.000355773402, 0.00670608506, -0.0281468425, 0.00592318876, -0.0134121701, 0.0181906465, -0.0131252119, 0.0306670833, -0.0100871995, -0.0124514848, 0.00485645328, -0.00395815, -0.0175543465, -0.0203864984, 0.00436363416, -0.000247969205, -0.00960685685, -0.0101558203, -0.0156579297, 0.00179972604, 0.0223827288, -0.0184776038, 0.00281967479, 0.00840288, 0.0109106442, -0.0256016497, -0.00257638423, 0.0180908348, -0.00689947, 0.03116614, 0.026549859, 0.0100123407, -0.0401242226, -0.0134121701, -0.00176541589, 0.00189018028, 0.00975033548, -0.0273483507, -0.00121567282, -0.018752085, -0.0254768841, -0.00695561385, -0.00544284564, -0.00417336822, -0.0239921883, -0.00940723345, 0.00991876796, -0.00559256319, 0.0165063273, -0.0047784755, -0.0122206705, 0.0224700645, 0.017691588, 0.0245161988, 0.0213721376, -0.0272984449, -0.0185774155, 0.009550713, 0.000905321504, 0.00797244348, 0.000836701074, 0.00897055864, 0.00436051469, 0.0131501649, -0.0357325152, 0.0184027459, 0.00740476558, 0.0166685209, -0.0171051957, -0.0131626418, 0.00736733619, -0.0105987331, -0.00275417347, -0.00742348, -0.0125076286, -0.027248539, -0.00253115711, 0.0194258131, 0.0034310203, -0.0153584946, -0.00592318876, 0.0234557018, 0.0179910231, 0.0184401739, 0.0303426962, -0.0169430021, -0.00858378876, -0.00760438852, -0.0206485037, -0.0133497883, 0.0100934375, 0.00882707909, -0.0108732153, -0.00857755076, -0.00571732735, 0.0171426255, 0.0208356511, 0.000991097, -0.0278973132, 0.0163690858, -0.00160478172, -0.024765728, -0.00399245974, 0.000895184407, -0.0317400582, -0.00691818446, 0.00501552783, -0.00073299068, -0.0197252482, -0.0018324767, -0.0103928726, 0.00893936772, 0.00629748171, 0.0162942279, 0.0202243049, -0.0015665727, -0.00401429366, 0.0143728554, -0.0186647493, 0.00824068673, 0.0193384774, 0.0231936965, 0.0338610522, -0.00502176583, -0.00301773823, -0.0104926834, -0.0160571747, 0.00278692413, 0.00564246858, 0.000298654719, 0.0102306791, -0.0133497883, -0.0299933553, -0.00681213476, -0.0034341393, 0.010617448, -0.0053430344, -0.0267744344, -0.0285710413, -0.0149467718, -0.00518396, -0.00680589676, 0.00638169749, 0.0137240812, -0.0110416468, 0.0184027459, 0.00837792736, -0.00315809809, 0.00116966595, 0.0124140549, -0.0127758719, -0.0197377242, -0.00681213476, 0.0179036874, 0.00530248601, 0.00999986473, 0.0194258131, 0.0368054919, -0.00140983739, 0.0043230853, 0.00677470537, 0.00979400333, -0.00712404586, 0.000508804689, 0.0210727025, 0.0164065156, -0.00224887789, 0.00706166355, 0.0112038404, 0.00615400262, 0.0375540778, 0.0351336487, -0.0079038227, -0.0104240635, -0.00853388291, -0.017704064, -0.00815335196, 0.00424822699, -0.0147596253, -0.0113410819, -0.000643316307, -0.01523373, 0.00262473058, 0.00331873237, 0.00687451707, 0.00316901505, -0.00676846737, 0.00696185185, 0.0136117935, 0.00241419068, 0.0119212363, 0.0193135254, 0.0173547249, 0.0240171421, 0.0215218551, -0.00523386523, 0.0225948282, 0.0136367464, -0.00219429331, -0.00443537347, 0.0337362848, -0.02052374, 0.00124998309, -0.0105113983, 0.0206734575, 0.0115656573, -0.00814711396, -0.0118838064, 0.0192261897, 0.00418896368, 0.0128008248, 0.0048907632, -0.00618831301, 0.0256765075, 0.00446656439, -0.0148469601, -0.0183403622, -0.0142979976, 0.0295442045, -0.00155721535, -0.00408603344, -0.0032407546, -0.0125762485, -0.0061196927, 0.0102431551, 0.00245473906, -0.0091327522, 0.00320020621, 0.0310413763, -0.00602923846, 0.0106673539, -0.0165936612, 0.0310663283]
22 Jan, 2025
TypeScript Optional Parameters 22 Jan, 2025 Optional parameters in TypeScript allow functions to be called without specifying all arguments, enhancing flexibility and code readability.Denoted by appending a ? to the parameter name.Optional parameters must follow the required parameters in function definitions.Syntaxfunction functionName(param1: type, param2?: type): returnType { // function body}Parameters:param1: A required parameter of the specified type.param2?: An optional parameter; if omitted, its value is undefined. JavaScript function greet(name: string, greeting?: string): string { if (greeting) { return `${greeting}, ${name}!`; } return `Hello, ${name}!`; } console.log(greet("Alice")); console.log(greet("Bob", "Good morning")); The greet function has two parameters: name (required) and greeting (optional).If greeting is provided, it customizes the message; otherwise, it defaults to "Hello".Greeting Function with Optional Parameter JavaScript function greet(name: string, greeting?: string): string { if (greeting) { return `${greeting}, ${name}!`; } else { return `Hello, ${name}!`; } } console.log(greet("Alice")); console.log(greet("Bob", "Good morning")); The greet function has two parameters: name (required) and greeting (optional).If greeting is provided, it customizes the message; otherwise, it defaults to "Hello".Output:Hello, Alice!Good morning, Bob!Function with Multiple Optional Parameters JavaScript function createUser(username: string, age?: number, email?: string): string { let userInfo = `Username: ${username}`; if (age !== undefined) { userInfo += `, Age: ${age}`; } if (email !== undefined) { userInfo += `, Email: ${email}`; } return userInfo; } console.log(createUser("john_doe")); console.log(createUser("jane_doe", 28)); console.log(createUser("sam_smith", 30, "[email protected]")); The createUser function accepts username (required), age, and email (both optional).It constructs a user information string based on the provided arguments.Output:Username: john_doeUsername: jane_doe, Age: 28Username: sam_smith, Age: 30, Email: [email protected] Practices for Using TypeScript Optional ParametersPlace Optional Parameters After Required Ones: Always define optional parameters following all required parameters to maintain clarity and prevent errors. Provide Default Values When Appropriate: Assign default values to optional parameters to ensure predictable behavior when arguments are omitted. Use Union Types for Flexibility: Consider using union types for optional parameters to clearly specify the types that are allowed, enhancing type safety.TypeScript Optional Parameters - FAQsHow do I define an optional parameter in TypeScript?Append a question mark (?) after the parameter name in the function definition to make it optional.What happens if an optional parameter is not provided in a function call?If an optional parameter is omitted, its value is undefined by default. Can optional parameters have default values?Yes, you can assign default values to optional parameters, which are used when the parameter is not provided during the function call. Is it mandatory to place optional parameters after required ones?Yes, in TypeScript, optional parameters must follow required parameters in the function signature. How can I check if an optional parameter was provided?Within the function, you can check if an optional parameter is undefined to determine if it was provided. 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.
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters
https://www.geeksforgeeks.org/typescript-optional-parameters?ref=asr10
PHP
TypeScript Optional Parameters
jQWidgets jqxSortable disabled Property, Node.js Stream transform.destroy() Method, jQWidgets jqxSwitchButton enable() Method, Convert string into date using JavaScript, jQWidgets jqxSplitter height Property, How to Declare Optional Properties in TypeScript ?, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxTree checkAll() Method, jQWidgets jqxScrollBar rtl Property, jQWidgets jqxScrollBar step Property, jQWidgets jqxTabs position Property, jQWidgets jqxTooltip height Property, jQWidgets jqxTreeMap width Property, jQWidgets jqxTree collapseItem() Method, jQWidgets jqxTabs keyboardNavigation Property, jQWidgets jqxTree destroy() Method, jQWidgets jqxTree collapseAll() Method, jQWidgets jqxSortable opacity Property, jQWidgets jqxScrollView buttonsOffset Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, jQWidgets jqxTabs disabled Property, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Node.js date-and-time Date.transform() Method, jQWidgets jqxListBox enableHover Property, jQWidgets jqxSlider height Property, TypeScript Optional Parameters, jQWidgets jqxSwitchButton onLabel Property, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, jQWidgets jqxToolBar theme Property, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxSplitter orientation Property, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxSlider buttonsPosition Property, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, jQWidgets jqxSwitchButton orientation Property, jQWidgets jqxToolBar tools Property, jQWidgets jqxSlider rtl Property, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTooltip opacity Property, jQWidgets jqxTree width Property, jQWidgets jqxScrollBar showButtons Property, jQWidgets jqxScrollView showButtons Property, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, jQWidgets jqxTree clear() Method, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView disabled Property, jQWidgets jqxScrollView animationDuration Property, jQWidgets jqxToolBar height Property, PHP, jQWidgets jqxSplitter destroy() Method, jQWidgets jqxTreeMap destroy Method
GeeksforGeeks
[-0.0204642974, 0.0205754414, -0.0014544169, 0.0437627546, 0.0186721087, 0.00778004527, 0.0172967073, 0.0337320529, -0.0425401777, -0.0216174107, -0.00903735589, -0.00200752961, -0.0142124752, 0.0053661475, -0.030981252, -0.0125870015, -0.0719654188, -0.00422345335, -0.0261326171, 0.00665471749, 0.0269523, 0.0442906879, -0.0453465506, -0.00923185702, 0.0121910535, 0.00291404384, 0.0217980202, 0.0154211614, -0.0277303047, -0.0279109124, -0.0119687663, 0.0184776075, 0.00127901859, -0.0276608393, -0.0224648807, -0.0228260979, 0.0172272436, 0.0123716611, -0.010023755, 0.00498061813, -0.0177412815, -0.0499312207, -0.0134066856, -0.007759206, -0.00306339283, -0.00130419957, -0.0120312842, -0.012573109, 0.0267994776, -0.00276643131, -0.0112393871, 0.00423387298, 0.0565720424, 0.0251878966, 0.0268411562, 0.0138095804, 0.0492087863, -0.0182553213, 0.0149488011, -0.0344544873, 0.0308423229, -0.0592394881, 0.00108799071, -0.0250072889, -0.0256324708, 0.00522721792, 0.000966427498, 0.0287305955, -0.0228955615, 0.000189833969, -0.0510426536, 0.0141638499, -0.00352185988, 0.0683532581, 0.0010853858, -0.0170466341, 0.00361563708, 0.0181719624, -0.0275358036, 0.00522374455, 0.0268967282, -0.00272648898, 0.00430681091, 0.0423734598, -0.015435054, -0.0347879156, 0.0202003326, -0.0481529236, 0.0141985826, 0.0238263886, 0.00500840414, -0.00630044751, 0.00795370713, 0.00555370189, -0.0150877303, 0.0236874595, -0.0134622566, -0.00694646919, -0.00781477802, 0.0594062023, 0.0243959986, 0.0408174507, 0.0134553108, 0.0263826884, -0.00520290527, -0.0273413025, 0.000859625521, 0.0305922497, 0.0388168693, 0.00820378, -0.00210478017, -0.00843301322, -0.0330374055, 0.0511260107, -0.0201169737, -0.00114877231, -0.0325650461, -0.0544603169, 0.00421650661, 0.00341245299, -0.0280776285, 0.0262854379, 0.0176162459, 0.0352324918, -0.0263132248, 0.0139832422, -0.00835660193, -0.0268272627, 0.00631434051, -0.032342758, 0.00618583057, -0.00829408411, -0.0160046648, 0.00805095769, 0.0322594, 0.00178524258, 0.0138026336, -0.0212284084, -0.033926554, -0.010023755, -0.047263775, 0.0029296733, 0.05323774, -0.00298698177, -0.000932563446, -0.0171161, -0.0160324499, 0.0411786698, 0.0121146422, 0.0220758785, -0.0212839805, -0.0555717535, 0.0285916664, -0.0165325962, 0.0213951245, 0.0314258263, -0.0178941041, -0.0141707966, -0.0209227651, 0.027160693, 0.0141152246, -0.0113852629, 0.014837658, 0.0333152637, -0.000968164124, 0.0142958332, 0.028063735, 0.00558496127, -0.0406785235, 0.0182136409, 0.0222009141, -0.0157823768, 0.0299253892, 0.00682490598, -0.0187415741, -0.0291751698, 0.00312417443, 0.007759206, 0.0282304492, -0.0243265349, -0.0354547761, 0.00874560419, -0.0103155067, 0.00511607435, 0.00629002787, -0.0148237646, 0.0136289718, -0.0294252429, -0.0243265349, -0.0457911231, -0.0441517569, 0.0383445099, -0.000976847252, 0.0426235348, 0.00472359871, 0.0379277207, -0.0298420303, -0.000613025913, -0.0391502976, 0.0156156626, 0.0199641511, -0.0384000801, -0.0332874805, 0.00721738115, -0.0193528626, -0.00821767282, 0.00939857215, 0.0287861675, 0.0412898101, -0.0473471321, 0.00690479, -0.00394212129, -0.0150321592, -0.0279803779, -0.0177134965, -0.0139762955, -0.0137679018, 0.00453951769, -0.0121979993, -0.018380357, -0.00774531299, 0.0278553404, 0.00268828357, 0.0182136409, -0.0406785235, 0.0098362, 0.0402339473, -0.0141013321, 0.0298142452, 0.0157684851, 0.0255630054, 0.0301198903, -0.0258130785, -0.0225760248, 0.0189360753, -0.00579335494, 0.0105169537, -0.0298142452, 0.0302310325, 0.0489865, -0.0145597989, 0.00982925389, -0.008155155, -0.0115311388, -0.0172967073, 0.00862751435, -0.025799185, 0.0352324918, 0.00304949982, 0.00348539092, 0.00593228452, -0.0289528836, -0.0119687663, -0.0107184015, -0.0428180359, -0.0110171, -0.0131427189, -0.014698728, 0.00138842547, 0.00103502383, 0.015518412, 0.00730768545, -0.0199224725, 0.00151606684, 0.0395393, -0.0279248059, 0.0101210056, -0.0199641511, -0.0318981856, -1.27261483e-05, 0.0174495298, -0.0143791912, 0.0606843531, 0.0288973115, -0.0269661918, -0.000872216, -0.0196307208, -0.0157545917, -0.0157823768, -0.00490420731, -0.00844690669, -0.0114199948, 0.0253962912, -0.00406021113, -0.00317627285, -0.0312313251, -0.0017904524, 0.0344544873, -0.0268689413, 0.0212145168, -0.0424568169, -0.00201100274, 0.00577598903, -0.00218813773, 0.0364272818, 0.0197279714, 0.00129812141, 0.00649147527, -0.00515428, 0.0281609856, -0.0158657357, -0.0210339073, -0.00181302836, -0.0084538525, -0.00814126153, 0.0076689017, 0.0282860212, -0.0364828557, -0.00535225449, -0.0149210151, 0.00905124936, -0.00326310378, -0.0646299496, -0.00597396353, 0.00586976623, 0.0168104544, 0.050042361, 0.00899567734, -0.0660748109, -0.000100398182, -0.025146218, 0.00253372453, -0.005168173, -0.0346212, 0.0485697128, -0.034176629, -0.00888453424, 0.0222703796, 0.0291751698, -0.0500979349, -0.0467914157, -0.0344267, -0.0517095141, 0.0229372401, -0.000473662367, -0.00202489574, -0.0145736923, -0.0355937071, -0.0186582152, 0.00050144823, 0.0177829601, 0.00249204575, 0.0109684747, 0.026479939, 0.0427068919, -0.0396504439, -0.0234373864, 0.0146848354, -0.00196758728, 0.0304533206, 0.000896094483, 0.0252156816, 0.0455966219, -0.00880117621, 0.0158240572, -0.0254379697, -0.0134622566, -0.0195751488, -0.0175745673, 0.0113505302, 0.0285916664, 0.00633518, -0.0153100174, 0.0400672331, 0.042901393, -0.0486252829, 0.0234929584, -0.0142819406, -0.0248127878, -0.0304533206, -0.0218813773, 0.00279595377, 0.0395115167, -0.0164909177, -0.0430403203, -0.0217285547, -0.0107948128, -0.00725211343, -0.0240486749, 0.0419011, -0.0139624029, 0.030953465, 0.00267439056, 0.0145320129, 0.0209505502, 0.00435196282, -0.00621361658, -0.00575167639, 0.0203392617, 0.00297308876, -0.0282860212, 0.0832464844, 0.0114477808, -0.0259797946, -0.00186339032, 0.00752302585, -0.0105100079, -0.000844864291, 0.01030856, -0.0220897719, -0.00397685356, 0.00240695151, -0.0202142242, 0.0335653387, 0.0092526963, -0.0129343253, -0.0231317412, -0.0222703796, 0.0387890823, 0.0120729627, -0.0223954152, -0.0184776075, -0.0547381751, 0.00348712737, 0.0409008078, 0.0448186174, 0.0153239109, 0.0302866045, 0.0133650061, 0.00567179173, 0.0394559428, 0.0205893349, -0.0250767525, 0.0188110378, 0.0346489884, 0.0067797536, -0.00718959561, 0.00423039962, 0.048847571, -0.0104266498, -0.0293418858, 0.00504313642, 0.0226177033, 0.00220029405, -0.0136428652, -0.038427867, 0.0223398451, 0.011072672, 0.0164492391, 0.00320232217, -0.0101557374, 0.0166576318, -0.00294009293, -0.0151155163, -0.0364272818, 0.0116978539, -0.0442073271, 0.0148237646, 0.0112393871, 0.0219091624, 0.00057004462, 0.0275496952, -0.0257019345, 0.0272857305, 0.0036816285, -0.0491254292, -0.0116770146, 0.00405326486, 0.0180747118, -0.0228260979, -0.00341939926, -0.00475485809, 0.0266744401, 0.00590449851, -0.00691521, 0.00230275444, -0.00678670034, 0.00408452377, -0.00249899225, 0.0190194324, 0.0492087863, 0.00691868318, 0.0164353456, 0.0132052377, 0.0245766081, -0.00367120886, -0.0374275744, 0.00937773287, -0.0249517169, -0.0280220564, 0.0358437784, 0.0460134111, 0.0449297614, 0.0142541546, -0.0256046839, -0.0227010604, 0.0401228033, 0.022853883, 0.0446241163, 0.024243176, 0.00434501655, -0.0132608097, -0.00818294, -0.0273413025, 0.0165048111, -0.0251601115, -0.0134483641, -0.0470414869, 0.0080787437, -0.00592186488, -0.000980320387, 0.022006413, -0.0428736061, -0.00370246801, -0.0237847101, -0.0382611528, -0.0230900627, 0.0317036845, -0.042679105, -0.0389557965, -0.00473749172, 0.0052897362, 0.0231873132, 0.0444296151, 0.004786117, -0.0159768779, -0.0437071845, -0.00800927915, 0.0121563207, 0.0279803779, -0.00387612963, -0.00834270939, -0.00691521, 0.0132955415, -0.0175745673, -0.00522027165, -6.82707687e-05, -0.0406229496, -0.00726600643, -0.0128231822, -0.0272579435, 0.0083704954, 0.0252295751, 0.0251184311, -0.00304255332, 0.0136150792, 0.00617541093, 0.0327317603, -0.0105516864, 0.0115033528, -0.0677419677, 0.0188249312, -0.0380388647, 0.00557106826, 0.00850942452, 0.00816904753, 0.0228399895, -0.0600174926, 0.0084538525, 0.0508759394, -0.00680753961, 0.0147126215, -0.0387890823, -0.010280774, -0.018463714, -0.0330929793, -0.0409841686, 0.006470636, 0.015546198, -0.0240903553, 0.0227705259, -0.00426165853, 0.037094146, -0.0239236392, 0.00307207601, -0.0190472174, 0.00194674789, 0.0362883545, 0.00333430502, 0.0362327807, 0.0143791912, -0.0376220755, 0.00757859787, 0.00169667508, -0.00106541463, 0.0263687968, 0.0311479662, -0.019825222, 0.0422623158, -0.0123786079, -0.0182275344, 0.0202420112, 0.0345934145, 0.0166854188, -0.00419566734, -0.0119687663, -0.0160880219, -0.0202697963, -0.000758467591, -0.0188666098, 0.0101696309, 0.00443879375, -0.00608163374, 0.022798311, -0.018463714, 0.0196029358, -0.00770363398, 0.00198148028, -0.00791897438, 0.00503619, 0.0149765871, 0.0141291181, -0.0079745464, 0.0314258263, -0.0171855651, -0.00549465697, -0.00620319694, -0.0166159533, -0.00557106826, 0.017810747, -0.0612956434, -0.00511954771, -0.00433807, -0.0193667561, -0.0052897362, -0.0401228033, -0.0179079976, 0.0142819406, -0.0223954152, 0.00344892195, 0.0181163903, 0.0135803465, 0.0387335122, 0.0105655789, -0.0264521539, 0.00310159847, -0.00212388299, -0.0340932682, 0.0219369493, -0.0247572158, -0.0394281596, -0.0163658801, -0.000914328964, -0.00167757226, 0.00902346335, 0.0315925404, 0.0150599452, 0.0289528836, -0.0275913756, 0.00434154319, -0.0138304196, 0.00735631073, 0.0133580603, 0.0832464844, -0.00831492338, 0.0247988943, -0.0270217638, 0.0712985545, 0.00136324449, -0.0107531343, 0.00821072608, -0.0235763155, 0.038316723, 0.0223676302, 0.0284249503, -0.00204399857, 0.00811347552, -0.00832187, -0.0127259316, -0.0197279714, -0.0145875849, -0.03551035, 0.0261326171, 0.0448464043, -0.00919017848, 0.0218119118, -0.00288104801, -0.0218813773, -0.0209505502, 0.0011461674, -0.0103016132, -0.0321760438, -0.0313702524, 0.00894705206, 0.00303560705, -0.0462357, -0.0202697963, 0.0290640257, -0.000344935601, -0.00522721792, 0.0103293993, -0.000359913916, -0.0409563817, 0.00835660193, -0.0201030821, -0.00864835363, -0.00575167639, -0.00194327475, -0.0257436149, -0.00552938925, -0.0119131943, -0.0225621313, -0.00122952496, 0.00474443845, 0.0480139926, -0.0256324708, -0.00304255332, -0.0130176833, 0.00969727058, -0.00164457655, -0.00541129941, -0.0439850427, -0.0226038098, 0.0239931047, -0.000116896052, 0.0354269929, 0.00387612963, -0.00546687096, -0.0255768988, 0.0016411033, 0.0138373664, 0.0080787437, -0.00139797688, 0.0041713547, -0.0194778983, 0.0190472174, 0.00437974883, 0.000452822947, -0.00201273942, 0.0044769994, 0.00565789919, -0.0400394462, 0.0116631212, -0.0169493835, 0.00448741904, 0.00014685269, -0.0186165366, 0.00367120886, -0.0130107366, 0.00136324449, -0.0130107366, 0.0156017691, 0.0100654336, -0.00319711235, -0.000434805552, -0.0151710883, -0.0239375327, 0.00331520243, 0.0147959786, -0.0262298677, -0.0121424282, 0.014726514, 0.00734936399, 0.00608510664, -0.0553772524, 0.0343989134, 0.0334819816, -0.00468886644, 0.0110032065, 0.0349268466, -0.000756296795, -0.0330651924, 0.0256324708, -0.00585934659, 0.0163797736, -0.00417830097, -0.0150599452, 0.0195473637, -0.0126078408, 0.00752997259, 0.0293140989, 0.0218258053, 0.00710971095, 0.0262298677, 0.00437627546, -0.00563011318, -0.00709234504, 0.0159907714, 0.0126217343, -0.0125105903, 0.0141569041, 0.00354964565, 0.0122813573, 0.00378582557, -0.0295086, 0.0419011, 0.0116006033, -0.0439016856, -0.020728264, 0.00681448588, -0.0266327616, -0.0206310134, -0.0107184015, -0.00776615227, -0.00682143262, -0.00303560705, 0.0104752751, -0.0149488011, 0.0234234929, 0.0047687511, 0.0128718074, 0.0439572558, 0.0200058315, 0.00755081186, 0.0159074143, -0.0251323245, 0.00451520504, 0.00960696675, 0.0139346169, -0.0224232022, -0.0107809203, 0.00708192494, 0.00247815275, 0.0299531743, 0.00791897438, 0.00336209103, -0.0124480724, -0.016199166, 0.0225621313, 0.0195334703, -0.0039838, 0.00685269153, 0.0035739583, 0.0203392617, 0.00470275944, -0.0209922288, 0.0244515706, 0.0283138081, -0.00407063076, 0.0192695055, 0.0326761901, -0.03092568, 0.0218952708, -0.0300643183, -0.0192695055, 0.0245071426, 0.0475972071, -0.0069777281, -0.00609899964, 0.00978062861, -0.0226732753, -0.0183942504, -0.0272579435, 0.0450409055, -0.00961391348, 0.00929437578, -0.00491115358, -0.0223259516, 0.0121146422, 0.0475972071, -0.00194674789, -0.00460550888, -0.0137470625, -0.0264938325, -0.014837658, 0.00803706422, 0.0307033937, 0.00167236244, 0.0207143705, -0.0140596535, 0.0419011, 0.0278692339, -0.0108156521, 0.019825222, 0.0185748581, 0.0298142452, -0.0168660264, -0.0287583824, 0.00285499869, -0.0114616742, 0.0338987671, 0.0439572558, 0.00421650661, 0.0111074038, -0.00259624282, -0.00779393828, 0.00776615227, -0.0103432927, -0.0212700889, 0.000418958924, -0.0223676302, 0.00428249827, 0.00672070868, -0.000348843, 0.000679451507, 0.00240695151, -0.039761588, -0.0163242016, 0.0129898973, -0.00850247778, 0.0378999338, -0.0188110378, 0.0176301375, -0.0082662981, 0.0294808149, 0.000293488323, -0.00549813034, -0.0181441773, 0.00643243035, -0.00535572739, 0.0305644628, 0.0167409908, -0.00848163851, -0.0255352203, 0.0334541947, 0.0435960405, -0.00271433266, -0.0137470625, 0.00691521, 0.0106628295, -0.00798843894, 0.0207143705, -0.0124411257, 0.00545992469, 0.0194778983, -0.0181441773, -0.00852331705, 0.0129760038, -0.029397456, 0.00498061813, 0.0181719624, 0.0167132039, -0.0148515506, -0.0438461117, -0.0227427389, -0.00133545871, -0.00771058071, 0.0171577781, -0.00230275444, 0.0100029157, 0.00268307375, 0.0262854379, -0.0210616942, -0.00104110199, 0.0136637045, -0.0191583615, -0.0330096222, -0.0119270869, 0.00916239247, 0.00624140259, -0.0152961249, 0.0106697762, 0.0145181203, 0.0141221713, 0.00683532562, -0.0140874395, -0.0166298468, 0.0223954152, -0.0380388647, -0.00918323174, 0.0179774612, 0.014073546, -0.0163380951, 0.0121910535, -0.0358993523, -0.0473193452, -0.012489751, 0.0129273785, -0.00193632825, 0.0253685042, -0.00982925389, -0.00319190254, -0.00346976123, -0.0159074143, 0.0109893139, -0.0390391573, -0.0174356364, -0.0149626946, 0.00560232718, -0.014809872, -0.00475485809, 0.021325659, 0.00162026391, -0.00641506398, 0.00945414416, 0.0253962912, 0.0123716611, -0.0149488011, -0.00175137853, -0.0121424282, -0.0017018849, -0.0219369493, 0.0248961449, 0.00514038699, 0.0112254936, -0.00919712521, 0.00159508293, 0.00499103777, -0.0168799199, -0.0217146613, 0.00704719266, -0.00469928607, -0.00153690623, 0.00740493601, 0.0227010604, -0.0387335122, 0.00884285476, -0.0147126215, -0.019991938, 0.0175051019, -0.0142124752, -0.0145597989, -0.0151710883, 0.0190611109, -0.0151016237, -0.00213951245, 0.0109129027, 0.014837658, -0.00828713737, -0.0122674638, -0.0329262614, -0.0194501132, -0.010336346, 0.00937773287, 0.00249725557, 0.0217841268, 0.0141985826, -0.012628681, -0.019144468, -0.00829408411, -0.015518412, -0.0378443636, -0.0327595472, -0.0159768779, -0.0276608393, 0.0136289718, 0.00071635464, 0.0155878766, 0.0329818353, 0.0189221818, -0.0348434895, 0.00655746693, 0.00723127415, 0.0135525614, 0.0118715158, 0.0151571957, 0.00601911545, -0.00613373192, -0.00407410413, -0.00862751435, -0.00250767521, -0.00480001, -0.00165673287, 0.0020544182, -0.0123299826, 0.000121454672, -0.00539393304, -0.0627405047, 0.0109476354, 0.0470692739, 0.0210755877, -0.012802342, 0.000412446592, -0.0165048111, -0.0239375327, 0.0193250775, 0.0239653178, -0.00806485, 0.019088896, 0.0147126215, -0.0122952498, -0.0261604022, -0.00383097772, -0.03551035, 0.00903041, 0.0029227268, -0.0126703596, -0.0248127878, 0.0142124752, 0.00798843894, -0.0093568936, -0.0161852725, 0.00345760491, -0.0141360648, -0.0119618196, 0.017755175, -0.0148237646, -0.00742577529, 0.00653662719, -0.019991938, 0.00323879113, 0.0249656104, 0.00438322173, -0.0214784816, 0.0190333258, 0.00222113356, 0.00425818563, 0.000278075837, 0.0165325962, -0.00894010533, -0.00311201811, 0.0133441668, 0.0332319066, 0.00492852, -0.0384556539, -0.0167409908, 0.0256463643, -0.0114061022, -0.0317592546, -0.0304533206, -0.0205476545, 0.0146431569, -0.0246599652, 0.0210755877, 0.00442837412, 0.00388307613, 0.0162686296, 0.0646855161, 0.00479306374, -0.00775225926, 0.00240868819, -0.0407063067, -0.0409563817, 0.00187728321, 0.0279942695, 0.01546284, -0.0278692339, 0.0307589639, -0.005182066, 0.00378929893, 0.0171161, -0.0238958541, 0.0476527773, 0.0121076955, -0.00891231932, 0.0126495203, -0.0253268257, 0.0208949782, 0.00345239509, 0.00784951, 0.0194084346, 0.00257366686, 0.00595659716, -0.0109267961, -0.0297864582, -0.019936366, -0.00119131943, -7.20153475e-05, 0.00217250828, 0.0324261189, 0.00598091, 0.027382981, 0.0241042469, 0.0415398851, 0.00602953508, -0.0163242016, 0.0191027895, 0.00481737638, -0.0183108915, -0.0157268066, -0.0168104544, 0.00320926867, -0.00308770547, -0.0146848354, 0.00579682831, -0.0504869372, -0.00660261884, 0.00862751435, 0.000251375342, -0.00371636101, 0.0111629758, -0.0441795439, 0.00435543619, -0.0374831483, 0.00207004766, 0.0141221713, -0.0158101637, -0.0109545812, 0.0240069963, 0.00936384, -0.0124272332, -0.0212006234, -0.00066859764, -0.0153378034, 0.00465066079, 0.0196585078, 0.00251462171, -0.00287410151, 0.0117325857, 0.000718091207, 0.0157823768, -0.00572736375, 0.029564172, 0.00487989467, 0.0183664635, 0.014837658, 0.000536614738, -0.00338814035, 0.0126564661, 0.0146292634, 0.0104197031, -0.0125314305, 0.00962780602, -0.0224232022, 0.018547073, -0.0117186932, 0.0115033528, -0.0130315758, -0.018547073, 0.00794676, 0.0123369293, 0.0322871879, -0.0215201601, 0.0321760438, 0.0312313251, 0.00127554534, -0.0255907923, 0.0145597989, 0.022853883, 0.00870392565, 0.0174495298, 0.0261742957, -0.00776615227, 0.0242292844, -0.00430333754, -0.00800233241, 0.00726600643, 0.0281470921, 0.00920407102, 0.018435929, -0.00415398832, 0.006470636, -0.0192833971, 0.0076689017, 0.0243126415, 0.00493546622, -0.0199641511, -0.0339821279, 0.0341488421, -0.0147959786, -0.0272579435, 0.0267022271, -0.0115380846, -0.0184776075, 0.02520179, 0.013309435, -0.00117048, 0.00311549124, 0.04412397, 0.00699856738, -0.0191305764, 0.0101487916, -0.00696730847, 0.00917628594, 0.0190194324, 0.00539740641, -0.0286750235, 0.006470636, 0.000150868625, -0.0313980393, 0.0141638499, -0.0127815027, 0.00675196806, 0.0146153709, -0.0146848354, 0.00263444846, -0.0108364914, -0.0260770451, -0.0013189608, 0.0196446143, -0.012204946, 0.00518901227, -0.0274246596, 0.0323149748, 0.0166159533, 0.0159907714, 0.000400724442, 0.000957744429, 0.0116770146, -0.00848163851, -0.00946803764, 0.00766195543, 0.00848858524, -0.0107600801, -0.0171994567, -0.011413049, 0.0276886262, 0.0131149339, -0.00545645133, -0.0136081325, -0.0152822314, 0.025799185, -0.00966253877, 0.0196862929, -0.0363995, 0.026535511, -0.0140943853, -0.0217424482, -0.0131913442, 0.00908598118, -0.0103988638, -0.0190472174, -0.00567179173, -0.0161435939, -0.0100584868, 0.00757165113, -0.00568568474, 0.0147126215, 0.0257852934, 0.012573109, -0.00616846466, 0.0196446143, -0.000953402894, 0.00839133468, 0.00612331228, 0.00197279709, 0.0214506965, -0.0187276807, 0.0256741494, 0.0357326381, 0.0283971652, -0.012489751, 0.0164909177, -0.0244376771, 0.00580377504, 0.0338709839, 0.00873865839, 0.0305922497, -0.0102043627, -0.00723822089, -0.0280498415, 0.0126703596, 0.00137540081, 0.00470623281, -0.0194362197, -0.00319884904, 0.0112602264, 0.00764806243, -0.00350796687, 0.00656094, 0.00236700941, -0.0101626841, 0.0088498015, 0.00945414416, -0.00202142238, -0.000769321457, -0.0123647144, -0.00228365161, 0.022853883, 0.0151988743, -0.0029435663, -0.00224197283, 0.00869003311, -0.0165603813, -0.0274107661, 0.000311722804, -0.0138859916, 0.00857888907, 0.0145597989, -0.0216729827, -0.00788424257, 0.00481042964, -0.000196563371, 0.000717657094, -0.0118715158, -0.0223815236, -0.0215757322, -0.0216868762, -0.0123091433, 0.0149765871, -0.0157268066, -0.00416788133, 0.0092735365, 0.0220342, -0.0120104449, 0.00821072608, -0.0236874595, 0.0111560291, -0.0100376476, -0.00340029667, 0.0198530089, -0.00830797665, -0.0108087054, -0.0126911988, -0.000553112593, -0.0240764618, 0.00510565471, -0.00714097032, -0.000202207375, 0.0304811057, -0.00362953, -0.00920407102, 0.00624140259, 0.0192833971, -0.0131010404, -0.0228260979, -0.00629002787, -0.0287861675, -0.0170466341, 0.0164075606, -0.0143791912, -0.0291195977, 0.0185609646, 0.00889148, 0.0255074333, -0.00680753961, -0.0126217343, 0.00790508185, 0.00689437054, -0.0023531164, -0.0121076955, -0.0153239109, 0.0187832527, 0.011413049, -0.0125383763, -0.00683532562, -0.0194917917, 0.0185748581, -0.00901651662, -0.0145736923, 0.00196411414, 0.00917628594, 0.0146570494, 0.00526542356, -0.00828713737, 0.0344822705, -0.00100897462, 0.0179774612, -0.018491501, 0.0235068519, 0.00789813511, -0.0332319066, -0.00220897724, 0.016907705, -0.0292585269, 0.0039872732, -0.0277441964, -0.0116909072, -0.0137331691, 0.00877339, 0.00964169856, -0.0225343462, -0.00311201811, -0.0173522793, -0.0144764418, 0.0132608097, -0.0122257853, -0.0022992813, -0.0219369493, 0.0343711302, 0.0124966977, -0.00454646396, 0.0199502595, -0.0129829505, -0.0304533206, 0.0167826694, -0.00771752698, -0.0377054326, 0.0108642774, -0.0212978739, 0.0176301375, -0.016907705, -0.0219786279, -0.00439711474, 0.0112046544, -0.00394906756, 0.0360938534, -0.0206310134, 0.00793286785, 0.0298976023, 0.0191027895, 0.00411925605, 0.00497367186, -0.0153239109, 0.0071757026, -0.0160324499, 0.00638380507, 0.0212284084, -0.00941246562, -0.00630044751, 0.00141273811, 0.00537656713, 0.00277164113, -0.0225343462, -0.00903735589, 0.00456730323, -0.016226951, 0.00629350077, 0.0109198494, 0.0437071845, -0.0216590911, 0.0127467709, -0.00222981651, 0.0105655789, -0.038316723, 0.00278032431, -0.00753691886, -0.0400672331, -0.00978757441, -0.0203670468, -0.0257852934, -0.0152405528, -0.00220203074, 0.0122952498, 0.0243265349, -0.0131913442, 0.0292863138, 0.027327409, 0.0210200157, 0.0102877207, -0.0013189608, -0.0127050914, 0.012288304, -0.0160324499, 0.0114894593, -0.0186721087, 0.0222564861, -0.0219647344, 0.00704719266, 0.00979452115, 0.00473401882, 0.00368510187, 0.0244376771, 0.00473749172, -0.0325372592, 0.0332319066, -0.0162825231, 0.0112949582, -0.00701246038, -0.00134587835, 0.018435929, -0.0540713146, 0.0232289918, -0.0148237646, 0.0547659621, 0.0156851262, -0.00534878112, -0.0148793366, 0.0185609646, -0.00843301322, 0.00174790528, -0.0173939578, 0.00555717526, -0.0103710778, -0.0187971443, -0.00394559419, 0.0255213268, 0.00213951245, -0.00565442583, -0.00992650446, 0.00315369689, 0.00158900477, -0.0302032474, -0.0287861675, -0.00393170165, -0.0182831064, 0.000177786191, -0.00266397092, -0.00193459156, 0.0197140798, 0.011808997, 0.00597049, -0.0223537367, 0.0127328774, 0.0109337419, 0.00065644132, 0.00782172382, 0.0194501132, 0.0100862728, -0.0128995925, 0.0328706913, -0.0101835234, 0.00239826832, 0.0015056472, -0.0157406982, 0.0076689017, -0.0105030611, -0.0131496657, -0.0134066856, -0.0111768683, -0.00880812295, 0.0122118928, -0.0168104544, -0.00125210104, -0.000519682711, -0.00239479518, 0.0203809403, 0.00801622495, -0.0220342, 0.0127953961, -0.0135525614, 0.0284805223, -0.00070333, 0.00900957, -0.0134692034, 0.00894010533, -0.00459856261, 0.00474791136, 0.0036816285, 0.00188596628, 0.00571694411, -0.0094610909, 0.0290084537, 0.00364342309, 0.0137609551, -0.00675891433, 0.00575514976, -0.000385311956, -0.00574125675, -0.00611636601, 0.001837341, 0.017018849, 0.00645326963, 0.00383445085, 0.0357604213, -0.004772224, 0.00444226712, -0.00814820826, 0.0253962912, 0.00925964303, -0.014837658, 0.00133893185, 0.00411578268, 0.00649842154, 0.00386223686, -0.0295919571, 0.0139485095, 0.0174495298, -0.0233957078, -0.0141360648, 0.0249239299, 0.0175328869, 0.012830128, -0.0202836897, 0.0125661623, -0.00309465197, 0.00871087238, 0.016199166, -0.00899567734, 0.00464718789, -0.00575514976, 0.0019050691, 0.0170605276, -0.00337772048, 0.0100862728, -0.0182136409, -0.00539740641, -0.0144069763, 0.00931521505, -0.00207178434, -0.0263549034, -0.00852331705, -0.0157962702, -0.003674682, 0.0100098616, -0.00515775336, 0.0196307208, -0.00793286785, 0.0188943949, -0.0373720042, -0.00912766065, -0.0125244837, 0.00376845943, -0.0103502385, -0.0367051437, -0.00383792422, -0.00402547885, -0.0192972906, -0.00148741272, 0.00159421458, 0.0366773568, -0.00118610961, 0.0167270973, -0.0101487916, 0.0170883145, 0.00225412915, -0.0151710883, -0.0043866951, 0.000339508668, 0.0120868562, -0.00203184225, 0.00620667, 0.00656788656, -0.0106142042, 0.00230275444, 0.0115797641, -0.0228399895, -0.00383097772, -0.00610594638, 0.016907705, 0.0136845438, 0.00267091743, 0.0179913547, 0.00174877362, -0.00664082449, -0.0117048007, -0.00171838282, 0.0014031867, -0.00650189491, -0.00973200332, -0.0044943653, 0.0346767716, -0.012628681, -0.0043866951, 0.0177968536, 0.00789118838, 0.0142958332, -0.0152544463, -0.00166975753, -0.00349928369, -0.0269661918, -0.0023531164, -0.0227705259, -0.0373442173, 0.00633518, 0.011892355, -0.0215479471, -0.00380666507, -0.00480695674, 0.0116909072, 0.00880812295, -0.0142402612, -0.0173383858, -0.0110240467, -0.00527237, -0.0260770451, -0.0023253304, 0.0123855546, -0.0220342, 0.00495283259, 0.00570999738, -0.0119826589, 0.0177412815, 0.00611983938, -0.00708887167, 0.00687353127, -0.00112098642, -0.016963277, -0.00564053282, 0.0040775775, 0.0239653178, -0.00222981651, 0.0264938325, 0.00191722543, 0.00120087084, -0.000725906, 0.003235318, -0.00222807983, 0.0164909177, 8.90559e-05, 0.00623098249, -0.0440684, 0.00447352603, -0.00667903, -0.0146014774, -0.0119965523, -0.013253863, -0.00278900727, 0.011781211, -0.00750218658, -0.0166576318, 0.0119201411, -0.0123786079, 0.00148914929, 0.00555022852, 0.0144625483, -0.0101765767, 0.0122744106, 0.00601911545, 0.00812042225, -0.00951666292, -0.0102043627, -0.00771752698, 0.00524111092, -0.0120590702, -0.014726514, -0.0162964165, -0.00414704205, -0.00562316645, 0.00182344811, -0.00167757226, 0.0152544463, -0.0292585269, -0.000385311956, 0.00917628594, -0.0156017691, 0.0182553213, 0.0317592546, -0.00448394567, 0.00210651662, 0.0181580707, -0.00112966949, 0.0178941041, 0.0392058715, -0.009544448, 0.00321621518, -0.0116422819, -0.0265216194, 0.0086691929, -0.000764545752, 0.0069777281, -0.00542519242, -0.000619972358, 0.0352324918, -0.00812736899, -0.00205268152, 0.0196307208, -0.0136914905, 0.0038726565, 0.0103571853, -0.0120729627, -0.0111351898, -0.0202975832, 0.000475833134, 0.00919017848, 0.00615804456, -0.00148828095, 0.00288452115, -0.0053661475, -0.0176718179, 0.00646021636, -0.00591144525, 0.0048764213, 0.00341071631, 0.0120173916, -0.0206865855, 0.0252712537, 0.01976965, 0.00373372715, 0.000543127069, -0.0020335787, 0.00371983415, 0.00464024115, 0.0105864191, 0.0016949384, 0.0018790199, 0.0126078408, 0.00587671297, 0.0134205781, -0.0271190144, 0.0101279514, -0.0264521539, 0.0384834372, 0.0247155372, -0.0153378034, 0.0112741189, -0.00828019064, -0.0122744106, 0.0215201601, 0.0170605276, 0.0153516969, -2.55337e-05, -0.0305922497, -0.00573083712, -0.0176718179, 0.0185053926, 0.00643590372, 0.00262923841, 0.00810653, 0.0066720834, 0.00782867055, 0.000643850828, -0.00484168902, 0.0124550192, -0.0119757121, 0.00463329488, 0.0108434381, 0.00419219397, -0.000974242284, 0.0216174107, -0.00372678065, -0.00419219397, -0.0230900627, -0.00129812141, 0.011440834, 0.00859972835, 0.000958612713, 0.00292620016, -0.0277719833, -0.00629350077, -0.0110379392, 0.0178385321, -0.000737628201, 0.0120173916, -0.00554675562, -0.0153655894, -0.0144486558, -0.0190194324, 0.0132330237, -0.00921101775, 0.00723127415, 0.014726514, 0.0179218892, -0.00261013582, 0.00412620278, 0.00555717526, -0.00614762492, 0.00163155189, -0.00741882902, 0.0128995925, -0.00564747909, 0.00174616859, -0.013281649, -0.0121146422, 0.00829408411, -0.00169580674, 0.00650884164, -0.00362953, 0.0306756068, 0.0211589448, -0.0105377939, 0.00176527142, 0.00392128155, 0.0104891686, 0.00733547146, -0.00569263147, 0.00184776075, 0.000248770433, -0.0021777181, -0.0162964165, -0.0123369293, -0.00858583581, -0.0056891581, 0.022006413, -0.00205268152, 0.0115241921, -0.0173800662, -0.0107670268, 0.000834444596, -0.00552938925, 0.00320579554, 0.0122535713, -0.00645674299, -0.00213430263, 0.00989177171, 0.0242153909, -0.0133441668, -0.0119201411, -0.00597396353, 0.00035665778, 0.0307311788, 0.029397456, -0.00539046, 0.0084538525, -0.00119045109, -0.00140926486, -0.01146862, 0.0170883145, -0.013622026, -0.00634212606, -0.0218535922, -0.00921101775, -0.00403242512, -0.018435929, 0.0185053926, 0.00585934659, -0.0104683284, -0.00822462, 0.00773836626, 0.0122813573, -0.0193250775, 0.0125661623, -0.00855805, -0.0159768779, -0.0262576528, 0.00444226712, -0.0258130785, 0.0259242225, -0.0126564661, 0.000584371679, -0.00868308637, -0.00323184463, -0.0215757322, -0.0203392617, -0.0138859916, -0.000294356636, -0.0117256399, 0.00872476492, -0.000123082747, -0.0151571957, 0.00741882902, 0.0200336166, 0.0116283894, 0.00105846825, 0.00889842678, -0.0216729827, -0.00300087454, 0.0131913442, -0.00293488312, -0.00857194234, 0.0161574874, 0.00982925389, 0.0158935208, -0.0143097257, -0.0244237855, -0.0136845438, 0.000210781916, -0.017644031, -0.00112532801, -0.0035947978, 0.006074687, 0.0313146822, 0.00599132944, 0.0137470625, 0.0089539988, 0.0178246386, 0.00910682, 0.0041887206, 0.0278275553, 0.0178941041, 0.0126703596, 0.00377540593, 0.0130385226, 0.00348365423, 0.0136081325, -0.00090130436, 0.00531752221, -0.0164353456, -0.00444574, 0.0153100174, -0.00271954271, -0.0135178287, 0.0198669, 0.0107600801, 0.0218952708, -0.0157962702, 0.0107531343, -0.033926554, 0.0277025178, 0.0268828347, -0.00309465197, 0.000395514566, -0.00839133468, -0.0259936862, -0.0137331691, 0.0141360648, 0.00434154319, 0.00121129048, -0.0119548729, -0.0074813473, 0.00451173168, 0.00967643131, 0.0090651419, 0.0187415741, 0.0121146422, 0.0306200348, 0.00243300083, -0.00898873061, -0.00317627285, 0.0138720982, -0.00481042964, -0.0223815236, 0.00136237626, 0.000417005213, -0.0197001863, 0.00716875587, 0.0117464792, -0.0141569041, -0.0239375327, -0.00807179697, 0.0104058105, -0.0249239299, -0.0102390954, 0.00451173168, -0.0171994567, -0.0241876058, 0.00982230715, -0.00493546622, -0.00457425, 0.0194084346, -0.00926659, 0.00149956904, 0.00160029274, -0.00697425473, 0.00934994686, 0.0297308881, 0.0248127878, -0.00185991707, 0.00915544573, 0.00627960777, 0.00412272941, 0.00491462694, 0.00185644382, 0.00939857215, -0.0142263686, -0.0237986036, -0.00511260098, 0.00551896961, 0.00481042964, -0.00690131681, -0.0101765767, 0.0217563417, 0.00128075527, -0.0109684747, 0.00272648898, -0.0113505302, -0.0241181403, 0.0133441668, -0.00321621518, -0.0186721087, 0.00345760491, 0.00130419957, 0.00160289777, 0.0105447397, 0.0151433023, -0.00166107435, -0.0166159533, -0.00220376719, -0.0141985826, 0.0354825631, -0.0143236192, -0.00929437578, 0.0180747118, 0.0194640066, -0.0240764618, 0.000158683397, 0.00528278947, 0.019991938, -0.0142402612, -0.000572649529, 0.00232185726, 0.015518412, -0.0149071226, 0.0105516864, 0.0098639857, 0.00904430263, -0.0114269415, 0.00128249184, 0.00286194519, -0.00301303086, 0.013253863, -0.00276122149, -0.00905819517, 0.00134674669, -0.00551202334, 0.0106142042, 0.00698120147, -0.000773228821, 0.00367815536, 0.00336209103, 0.0142680472, -0.00314154057, 0.0109129027, 0.00370594114, -0.0163519885, 0.00524458429, 0.00981536, -0.00727295317, 0.00136758608, 0.0133302743, 0.00456383033, 0.0122952498, -0.0019797436, -0.000185818048, -0.0122813573, 0.0111490823, -0.0120938029, -0.00398032693, 0.007773099, -0.0189360753, -0.00180434529, -0.0110101532, 0.000967295782, -0.0262854379, -0.00816904753, 0.0179496761, -1.07724536e-05, 0.0029227268, 0.00470275944, 0.00302345073, -0.0163242016, -0.00645674299, 0.0109684747, 0.00615457166, 0.00696036173, 0.0435404666, -0.023020599, -0.00291751698, 0.00221939688, -0.0144764418, -0.0290084537, -0.00573431, -0.00824545883, 0.0134830959, -0.0129621113, -0.00760638341, 0.000559190754, -0.0192695055, 0.00938468, -0.00641853735, 0.0152127668, -0.00831492338, 0.0216590911, -0.00869003311, -0.0121979993, -0.0141916359, -0.00193459156, -0.0131913442, 0.00393517455, 0.00371983415, -0.00725211343, -0.00120347575, -0.0224093087, 7.02108935e-07, -0.00407063076, -0.0086622471, 0.0253546126, -0.011100457, 0.0100793261, 0.00461940188, -0.000675978255, -0.0102043627, -0.0379277207, -0.02520179, -0.0302032474, 0.0281331986, -0.0211311579, -0.00281852973, 0.00545297796, -0.00629697414, 0.0315369703, -0.00615109829, 0.00737715, -0.0201169737, 0.0127606634, 0.000532707316, 0.00435543619, 0.0222009141, 0.000219899157, 0.0061788843, 0.0164492391, -0.0212839805, 0.00859972835, 0.000484082062, -0.00883590896, -0.0174217448, 0.00175224675, 0.0118159438, -0.00632823305, -0.00285499869, 0.00658872584, 0.0296475291, -0.012830128, -0.0232706703, -0.0112254936, 0.0121076955, 0.0113922087, 0.0141916359, -0.00848163851, 0.00814820826, 0.0201308671, -0.00621709, -0.00602258882, -0.00376498629, -0.00657483283, 0.00378582557, -0.00613025902, -0.000242258102, -0.0162825231, 0.0030981251, -0.00114443072, 0.0156990197, 0.00684921863, -0.00573431, -0.000634733588, 0.0210894793, 0.00695341546, 0.0193806477, 0.00610594638, -0.0122188386, 0.00276816799, 0.008155155, -0.0172828157, -0.0115728173, -0.00310507161, 0.0229511335, 0.0242570695, -0.00248336256, -0.00151954009, 0.00401505921, -0.00607816037, 0.00395948719, 0.000432634784, 0.0340932682, 0.0227010604, 0.00244168378, -1.69184514e-05, -0.00642201072, 0.0373442173, -0.00411231, 0.019991938, -9.84987564e-05, 0.0140040815, -0.000993345, -0.00347670773, -0.000388785178, 0.0153100174, -6.51774171e-05, 0.0255074333, -0.0054877107, -0.00231664744, 0.00890537351, 0.00219508423, -0.0135734007, 0.00476180436, 0.0203392617, 0.0105100079, -0.00639422471, -0.00960696675, -0.0189499669, -0.000962085964, 0.0011626652, -0.0174912084, -0.012913486, -0.00407410413, -0.00757165113, -5.53818099e-05, 0.00165412796, -0.0167548824, 0.0111907618, 0.000828366436, 0.0318426155, 0.0195612572, -0.00197453378, -0.0179913547, 0.0216590911, -0.0150321592, -0.0280220564, -0.000145767306, -0.00919712521, 0.0207004771, -0.00715486286, -0.00422345335, -0.00212735613, 0.0079676, 0.00945414416, 0.00362258358, 0.00358437793, 0.00787729584, 0.00719654188, -0.00950971618, 0.0303699616, -0.0107670268, -0.0188805033, 0.0217007697, 0.00188249315, 0.00957918074, -0.0200197231, -0.003688575, -0.0059670168, -0.0268967282, -0.00153864291, -0.0187693592, 0.00195543095, 0.0120729627, -0.00790508185, 0.0057829353, -0.0326761901, 0.000813605206, 0.00733547146, -0.00534183485, -0.0136289718, -0.0116839604, -0.000148155159, 0.00924575049, 0.0157962702, -0.00121736864, -0.00404631812, 0.0156434476, -0.00516122626, 0.0123855546, 0.00675891433, 0.0116909072, -0.00154298439, -0.0145597989, 0.020783836, 0.00378929893, 0.00869697891, 0.00289667747, 0.00502577052, -0.00492504658, 0.00130333123, -0.00850942452, 0.00953750219, 0.00486252829, 0.0014987007, -0.00715486286, 0.0179496761, -0.0148793366, -0.0174634233, -0.0028897312, 0.00913460646, -0.00125904754, 0.00667555677, -0.00408452377, 0.0113435835, -0.0113019049, -0.0216590911, 0.00149783236, -0.0257714, -0.0071618096, -0.0268550497, -0.00420261361, 0.00505008316, -0.0105725257, 0.0178385321, -0.00197627046, -0.000294790778, 0.0196585078, 0.0138998842, -0.0092526963, 0.0122396788, 0.0116700679, 0.00882201549, -0.010391918, -0.0265494045, -0.00153343298, -0.0274802316, 0.00655052, -0.0151988743, -0.00909292791, -0.00654357392, -0.00504661, -0.0157268066, 0.0208810866, -0.0030373435, -0.0131774517, 0.0126981456, 0.0186165366, 0.00609899964, 0.0101835234, -0.0193111841, -0.0152822314, -0.00598091, 0.0092526963, 0.000385963183, -0.00889842678, -0.0106975622, -0.00951666292, 0.0202281177, 0.0133580603, -0.00656094, 0.00462982152, -0.00784951, 0.0142541546, -0.0127953961, 0.0111699225, -0.011781211, 6.00761e-05, -0.0222703796, 0.00101852603, -0.00791897438, 0.0159490928, -0.00170535815, 0.00229580794, 0.00628308114, -0.00475485809, 0.000687700405, -0.0250628609, 0.0108920634, -0.0171716716, -0.00793981366, -0.0128440214, -0.00469234, 0.017588459, -0.00861362182, 0.00812736899, -0.0115658706, -0.00820378, 0.0183525719, 0.000689871202, 0.00722432788, 0.00250072894, -0.00456730323, -0.0181441773, 0.00852331705, -0.0108781708, 0.0128162354, 0.0141499573, 0.0050639757, 0.00724516716, -0.00802317169, 0.000221310154, 0.0201030821, 0.00575167639, 0.0016714941, -0.0109893139, 0.0301198903, -0.0101835234, -0.0278970189, -0.00147699297, -0.0144625483, 0.00251288526, -0.00750913285, -0.00599480281, -0.0061649913, -0.00504661, -0.0445407592, -0.00182344811, -0.000980320387, -0.00702635339, 0.00948887691, -0.00798843894, -0.00340376981, 0.0217285547, 0.00859278254, 0.00811347552, 0.019936366, -0.0108434381, -0.0149488011, -0.0117325857, 0.0120034982, -0.0123508219, 0.0243682135, -0.00180434529, 0.0281887706, -0.00118784618, 0.0175467804, -0.00128770166, -0.000709408137, 0.00681795925, -0.00689437054, -0.0248683598, -0.00163328857, 0.0113991555, 0.00366426236, 0.00121042226, 0.000301520166, 0.0233540293, -0.00608858, 0.0104266498, -0.0090651419, 0.00399074657, 0.00805790443, 0.0303421766, 0.00498756487, -0.0207699426, -0.0169771705, -0.00915544573, -0.00419914071, 0.0176162459, -0.0106558837, 0.0102460422, -0.0092526963, 0.00239826832, -0.00989177171, -0.00950971618, 0.00481737638, 0.0110865645, -0.00274038198, -0.0140527068, 0.00247120624, -0.01631031, -0.0098639857, 0.0216729827, 0.00591491815, 0.00137019099, 0.0154767325, 0.00571694411, 0.0144764418, -0.0143375117, 0.00965559203, -0.0159629863, -0.0108851166, 0.00714791659, -0.00744661456, 0.0289806686, 0.0183108915, 0.00495630549, -0.0124341799, -0.0160880219, -0.0130315758, 0.0303421766, -0.0260770451, 0.00202836888, 0.000104142768, -0.00597396353, 0.0119409803, 0.0161435939, -0.0262298677, -0.00560927391, 0.0128718074, 0.00685616489, 0.0124828052, 0.00201968593, 0.0059670168, 0.0139901889, 0.0230761692, 0.00910682, 0.00264834124, -0.0035340162, 0.00661998475, 0.016991064, 0.00315890671, -0.0293140989, -0.000664690277, -0.0100445943, -0.00241389801, 0.0115033528, 0.0247016437, -0.00605732109, 0.0237986036, 0.0238402821, 0.023645781, -0.000885240617, 0.000830103061, 0.00564053282, 0.0144069763, 0.0242570695, -0.0176301375, 0.000143379468, -0.00907208864, 0.00757859787, -0.0118993018, 0.00605732109, -0.00214993209, 0.00614762492, 0.0225482378, 0.0258547571, -0.0252990406, 0.0039872732, 0.00166107435, 0.0166298468, 0.0155045185, -0.00725211343, 0.0110379392, 0.00283242273, -0.0164909177, -0.0308978949, -0.00409841677, -0.00493546622, 0.0273135155, 0.00684921863, 0.00658177957, -0.019825222, 0.0156990197, -0.023590209, -0.00116092863, -0.0159768779, -0.00189117622, 0.000374241, 0.00751607958, -0.00539046, -0.00335688121, 0.0156017691, 0.0198113304, -0.0233818144, 0.00152648659, 0.0234929584, -0.00427207863, 0.00523416419, 0.00499451114, -0.0359271392, -0.00744661456, -0.0159213077, 0.0331485495, -0.0104544358, 0.0143791912, -0.0230067056, -0.003674682, -0.00491462694, 0.00211693649, 0.00995429, -0.0105030611, -0.0174356364, -0.00588018587, -0.0168938134, -0.0181858558, 0.00533488812, -0.0158935208, 0.0181024987, 0.00471665245, -0.0135386679, 0.0139971348, -0.010225202, 0.00461245561, -0.0303977486, -0.00401158584, 0.00446657976, 0.0106975622, -0.0133302743, 0.00496325223, 0.0042790249, -0.00883590896, -0.0138304196, 0.00603300845, 0.0181997493, 0.0040810504, 0.0137053831, 0.0115519781, -0.0108781708, -0.0160463434, -0.0106906155, 0.00444574, -0.0220342, -0.00162373716, 0.00389002264, 0.006484529, 0.010023755, 0.0272301584, 0.00846079923, 0.00198669, 0.00168625533, 0.018435929, -0.00809958298, -0.00899567734, -0.0105516864, 0.00767584844, 0.00598785607, 0.00510218134, 0.0188943949, 0.0119965523, -0.0106628295, -0.00462634815, 0.0201725457, -0.00213951245, 0.011440834, 0.00626918813, 0.00370941451, 0.000119609511, -0.00480348337, 0.0141499573, -0.0249378234, 0.0133163808, 0.00854415726, 0.016226951, -0.0124133397, -0.0152961249, 0.0133024883, -0.00390044227, 0.0107878661, -0.0142958332, 0.0292863138, 0.00599480281, 0.00232012058, 0.0125592155, 0.0116631212, 0.0013120143, -0.00295572262, -0.0114338882, 0.00962085929, -0.022798311, -1.44627656e-05, -0.00675196806, 0.0129760038, 0.0201030821, 0.00283068605, 0.0197835434, 0.0176579244, -0.00549465697, -0.00242258096, -0.0138790449, 0.0179774612, 0.0272301584, 0.0239792112, -0.0186860021, 0.0177690685, -0.00137626915, -0.0188249312, 0.0198391154, -0.0026240286, -0.00369899464, 0.0098639857, 0.00944025163, 0.00150304218, 0.0231178496, 0.00236527273, 0.00800927915, 0.00892621279, -0.0019797436, -0.000949061301, 0.00805790443, -0.0183247849, -0.014726514, -0.0057655694, -0.00315543357, -0.00540782604, -0.0143791912, 0.00192243524, -0.0312591121, -0.00909292791, -0.0214506965, -0.0015290915, 0.00122518349, 0.0053696204, 0.0232289918, 0.00577598903, -0.000585674192, -0.00957918074, -0.0171438847, -0.0211728383, 0.00745356129, -0.00970421731, 0.0148932291, -0.0190472174, 0.0164075606, -0.0107114548, 0.00138842547, 0.00321621518, -0.0079745464, 0.0131705049, -0.00837744121, -0.0274107661, 0.0146431569, 0.00999596901, -0.0354269929, -0.0170605276, -0.00764806243, 0.0290362407, -0.0305366777, 0.0106419902, -0.00700204074, -0.012600895, 0.0123647144, -0.0216313042, -0.0119548729, -0.000827498094, -0.0111143505, 0.0174912084, 0.0152961249, -0.00962085929, 0.0118715158, -0.00581419468, 0.013309435, -0.00142576278, 0.000567439711, -0.00488336757, 0.0224093087, -0.0151849808, -0.00271085952, -0.000842259382, -0.00328394328, 0.00612678565, 0.0223259516, 0.00186165364, -0.00221766019, 0.00376498629, -0.00292446348, -0.00750218658, 0.0130940937, 0.0165464897, -0.00818294, -0.0209366567, 0.00397685356, 0.0246738587, -0.00704024639, 0.00278727058, -0.01546284, -0.00311896461, 0.00490768, 0.00230796426, 0.00823156536, 0.00904430263, -0.014698728, -0.00598438317, 0.000710710592, 0.019880794, -0.0356214941, -0.0191583615, -0.0166298468, 0.0180747118, -0.0311201811, 0.00943330489, -0.00849553198, 0.0263826884, -0.0222842731, 0.0468747728, -0.00914155319, -0.0031814829, 0.00992650446, -0.00634212606, -0.0257158279, -0.0124966977, 0.000991608482, -0.011072672, -0.0149349086, -0.0104335966, -0.00626571523, 0.00287236483, 0.0295919571, -0.0181163903, 0.00619625, 0.0159074143, 0.0067658606, -0.00907903537, 0.00428249827, 0.0120034982, 0.00269002, 0.0449297614, 0.00514038699, 0.0111560291, -0.0317870416, -0.014865444, -0.00726600643, -0.00907208864, -0.00836354867, -0.0159213077, -0.00948887691, -0.0215479471, -0.0222981647, -0.00818988681, 0.000748047896, -0.024382107, -0.0194501132, -0.0170466341, 0.0253407191, -0.0153516969, 0.0279664844, -0.00321447849, -0.0284249503, 0.00687353127, 0.0242153909, 0.0185053926, 0.0217702333, -0.0105100079, -0.0138026336, 0.00350102037, 0.000778872811, 0.00420261361, 0.00298524508, 0.0101974169, -0.000962085964, 0.00853026379, -0.00594270416, 0.0102738272, 0.0127537167, 0.0156851262, -0.0112254936, -0.0151849808, 0.00581072131, -0.0163519885, 0.00257019349, -0.0132121844, -0.00591491815, -0.0158379488, 0.00588365924, 0.0232289918, 0.00857194234, -0.00362605671, -0.00779393828, 0.0120104449, 0.0254935417, 0.0180608202, 0.0192833971, -0.027160693, -0.00274038198, 0.00631086715, -0.00803706422, -0.019991938, -0.00248683593, 0.00670334278, 0.00548076397, -0.0127815027, -0.019825222, 0.0103293993, 0.00975978933, -0.000168343337, -0.0379832909, 0.0174217448, -0.0212423019, -0.0119965523, 0.00838438794, -0.00638380507, -0.0289806686, -0.0132608097, -0.018547073, -0.00643243035, -0.0296475291, -0.000309986179, -0.0143375117, 0.0142541546, 0.00801622495, 0.0267161205, -0.000102514685, -0.00802317169, -0.00427207863, 0.0173661727, -0.00353575265, -0.00164631312, 0.00887064077, 0.00399074657, 0.0149349086, 0.00240347837, -0.0108503848, -0.00734936399, -0.012121588, -0.0014144748, 0.00118176802, 0.000490160193, 0.0172967073, -0.00101244787, -0.0306478217, 0.0128162354, 0.0051855389, 0.0153655894, -0.000601737876, -0.0109754214, -0.0223537367, -0.0079745464, 0.0124480724, -0.00666861, 0.00761333, 0.00868308637, -0.012288304, 0.0138373664, 0.0147681935, -0.0105030611, 0.00645326963, 0.0177829601, -0.0233818144, -0.00452215131, -0.000156078473, 0.0155045185, -0.00310333492, 0.00340550649, 0.0100098616, 0.0422623158, 0.0144069763, -0.0035340162, -0.00469581317, 0.0026917567, -0.0098362, -0.00878033694, 0.0203948338, 0.017644031, -0.0142680472, 0.0017366173, 0.00597743643, 0.00680753961, 0.0312591121, 0.0258686505, -0.00245210365, -0.00383097772, -0.00464718789, -0.0225760248, 0.00533141475, -0.00299219158, -0.0229928121, -0.0209783372, 0.00899567734, -0.00662693148, 0.00172619754, 0.00755081186, 0.0200336166, 0.00272648898, 0.0124689117, -0.00361563708, 0.0272440519, 0.0224787742, 0.00408452377, 0.0115033528, 0.0128440214, 0.0264521539, 0.0192695055, 0.000629957882, 0.0157823768, 0.0102599347, 0.00776615227, -0.0100932196, 0.0271468014, -0.0194778983, 0.00323879113, -0.00510565471, 0.0170466341, 0.0238680672, -0.00235137972, -0.0126217343, 0.0214784816, 0.00115398213, 0.0262715463, 0.00488336757, -0.00738409674, 0.00635254569, -0.00279595377, -0.0102182562, -0.0134553108, -0.00974589586, 0.0125522697, 0.00172098773, -0.0146153709, -0.00855110306, -0.0118298363, -0.0102877207, 0.0109754214, 0.00253546122, -0.016171379, 0.0256046839, 0.0070715053, -0.00102286751, 0.0101557374, -0.0113366377, 0.0239375327]
15 May, 2024
How to Make a Single Property Optional in TypeScript ? 15 May, 2024 TypeScript is a popular programming language that is a strict syntactical superset of JavaScript, adding optional static typing and class-based object-oriented programming to the language. One useful feature of TypeScript is the ability to specify optional properties in interfaces and classes, allowing you to define an object type that may or may not have certain properties. Using Utility TypeThis approach employs a utility type named MakeOptional. The utility type uses TypeScript's Omit to exclude the specified property and introduce the ? syntax to mark it as optional. Syntax:type MakePropertyOptional<T, K extends keyof T> = Omit<T, K> & { [P in K]?: T[P] };Parameters:T: The original type.K: The key of the property you want to make optional.Note: It uses Omit<T, K> to exclude the specified property and then introduces { [P in K]?: T[P] } to add the property back as optional. Example: here, we define a utility type MakeOptional that takes a generic type T and a property key K. It utilizes TypeScript's Omit to exclude the specified property and introduce the ? syntax to make it optional. The resulting ExampleWithOptionalAge type is then used to create an object with the age property being optional. JavaScript type MakeOptional<T, K extends keyof T> = Omit<T, K> & { [P in K]?: T[P] }; interface Example { name: string; age: number; } // Make 'age' property optional type ExampleWithOptionalAge = MakeOptional<Example, 'age'>; // Example usage: const optionalAgeExample: ExampleWithOptionalAge = { name: 'John' }; console.log(optionalAgeExample); Output: { "name": "John" } Optional Property Inside an Interface:In TypeScript, an interface is a way to define the structure of an object. When making a property optional inside an interface, you use the ? modifier after the property name. Example: Here, the lastName property is marked as optional by appending ? after its name in the Person interface. This allows objects of type Person to either include or exclude the lastName property. The person1 object doesn't have a lastName property, while the person2 object includes it. Attempting to create an object without the required properties (firstName and age in this case) will result in a compilation error. JavaScript interface Person { firstName: string; lastName?: string; age: number; } // Valid usage const person1: Person = { firstName: "John", age: 25 }; // Valid usage with optional property const person2: Person = { firstName: "Alice", lastName: "Johnson", age: 30 }; // Error: Missing required property 'age' const person3: Person = { firstName: "Bob" }; Output: Property 'age' is missing in type '{ firstName: string; }' but required in type 'Person'.Optional Property Inside a Class:In TypeScript, a class is a blueprint for creating objects. When making a property optional inside a class, you declare the property with a ? modifier in the class definition. Additionally, you may need to adjust the constructor to handle the optional property. Example: Here, the lastName property is marked as optional in the Person class. When creating instances of the class, you can choose to provide or omit the lastName property. The person1 instance is created without specifying the lastName, while the person2 instance includes it. JavaScript class Person { firstName: string; // Making lastName optional lastName?: string; age: number; constructor(firstName: string, age: number, lastName?: string) { this.firstName = firstName; this.lastName = lastName; this.age = age; } } // Creating instances const person1 = new Person("John", 25); const person2 = new Person("Alice", 30, "Johnson"); console.log(person1); console.log(person2); Output: Person: { "firstName": "John", "lastName": undefined, "age": 25} Person: { "firstName": "Alice", "lastName": "Johnson", "age": 30} Using Object Spread SyntaxThis approach leverages the object spread syntax to create a new object with the specified property marked as optional. Syntax:interface OriginalType { // Define properties here}// Making a single property optional using object spread syntaxconst newObject = { ...originalObject, propertyName?: value };Parameters: originalObject: The original object.propertyName: The name of the property you want to make optional.value: Optional value for the property.Example: Here's how you can make a single property optional in TypeScript using object spread syntax: JavaScript interface Example { name: string; age: number; } // Original object const originalExample: Example = { name: 'GFG', age: 22 }; // Make 'age' property optional using object spread syntax const optionalAgeExample: Partial<Example> = { ...originalExample, age: undefined }; console.log(optionalAgeExample); Output: { "name": "GFG", "age": undefined} Using Conditional and Mapped TypesThis approach introduces a utility type called OptionalProperty that makes a specified property optional. Unlike previous methods, it employs advanced TypeScript features for a streamlined solution. Syntax:type OptionalProperty<T, K extends keyof T> = Omit<T, K> & Partial<Pick<T, K>>;Parameters: T: The original type.K: The key of the property you want to make optional.This utility type first removes the specified property from the type (Omit<T, K>) and then reintroduces it as optional using Partial<Pick<T, K>>. Example: Here, we define a utility type OptionalProperty that takes a generic type T and a property key K. It utilizes TypeScript's Omit and Partial to make the specified property optional. The resulting PersonWithOptionalLastName type is then used to create an object with the lastName property being optional. JavaScript type OptionalProperty<T, K extends keyof T> = Omit<T, K> & Partial<Pick<T, K>>; interface Person { firstName: string; lastName: string; age: number; } // Make 'lastName' property optional type PersonWithOptionalLastName = OptionalProperty<Person, 'lastName'>; // Example usage: const person1: PersonWithOptionalLastName = { firstName: 'John', age: 25 }; const person2: PersonWithOptionalLastName = { firstName: 'Alice', lastName: 'Johnson', age: 30 }; console.log(person1); // Output: { firstName: 'John', age: 25 } console.log(person2); // Output: { firstName: 'Alice', lastName: 'Johnson', age: 30 } Output: { firstName: 'John', age: 25 }{ firstName: 'Alice', lastName: 'Johnson', age: 30 } 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.
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?
https://www.geeksforgeeks.org/how-to-make-a-single-property-optional-in-typescript?ref=asr10
PHP
How to Make a Single Property Optional in TypeScript ?
jQWidgets jqxSortable disabled Property, Node.js Stream transform.destroy() Method, jQWidgets jqxSwitchButton enable() Method, Convert string into date using JavaScript, jQWidgets jqxSplitter height Property, How to Declare Optional Properties in TypeScript ?, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxTree checkAll() Method, jQWidgets jqxScrollBar rtl Property, jQWidgets jqxScrollBar step Property, jQWidgets jqxTabs position Property, jQWidgets jqxTooltip height Property, How to Make a Single Property Optional in TypeScript ?, jQWidgets jqxTreeMap width Property, jQWidgets jqxTree collapseItem() Method, jQWidgets jqxTabs keyboardNavigation Property, jQWidgets jqxTree destroy() Method, jQWidgets jqxTree collapseAll() Method, jQWidgets jqxSortable opacity Property, jQWidgets jqxScrollView buttonsOffset Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, jQWidgets jqxTabs disabled Property, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Node.js date-and-time Date.transform() Method, jQWidgets jqxListBox enableHover Property, jQWidgets jqxSlider height Property, TypeScript Optional Parameters, jQWidgets jqxSwitchButton onLabel Property, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, jQWidgets jqxToolBar theme Property, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxSplitter orientation Property, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxSlider buttonsPosition Property, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, jQWidgets jqxSwitchButton orientation Property, jQWidgets jqxToolBar tools Property, jQWidgets jqxSlider rtl Property, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTooltip opacity Property, jQWidgets jqxTree width Property, jQWidgets jqxScrollBar showButtons Property, jQWidgets jqxScrollView showButtons Property, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, jQWidgets jqxTree clear() Method, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView disabled Property, jQWidgets jqxScrollView animationDuration Property, jQWidgets jqxToolBar height Property, PHP, jQWidgets jqxSplitter destroy() Method, jQWidgets jqxTreeMap destroy Method
GeeksforGeeks
[-0.00294458633, -0.000358092482, -0.0130636804, 0.0415669642, 0.0170287453, 0.00964390952, 0.00883375946, 0.0113810599, -0.00656689517, -0.0102904728, 0.00504786242, -0.00825730525, 0.0110149337, -0.0374538936, -0.0318451561, -0.0236501694, -0.0684265792, -0.00264856964, -0.0445271321, -0.00136712939, -0.00270309905, 0.0293991249, -0.0550590903, 0.00164172379, 0.00585022336, 0.0189918038, 0.0128066139, 0.0284643341, -0.0268907733, -0.0133207478, -0.0192410797, 0.0117939254, -0.00655131508, -0.0295705013, -0.0208458025, -0.00339834858, 0.0248030759, 0.0159147885, -0.00885712914, 0.0207834821, -0.0124872271, -0.0254574288, -0.0173403416, -0.00509070698, 0.00328734238, 0.0131805297, -0.0149955787, -0.0161251165, 0.000318412611, -0.00867796, -0.00793791935, -0.00308285723, 0.0609171055, 0.0386691168, 0.0325306691, 0.0279034618, 0.016872948, -0.0145749236, -0.00608002534, -0.0137414029, 0.0235255305, -0.0603562295, -0.025223732, -0.0237436481, -0.00642667664, 0.0243201014, -0.0153305447, 0.0237592291, -0.0183841903, -0.00533219427, -0.0610729, 0.0231048763, 0.0127209248, 0.0294770226, 0.0149644194, 0.00175273, 0.00983865745, 0.018742526, -0.0351169184, 0.0134765459, 0.0153850745, 0.0107500767, 0.00329513242, 0.0137336133, -0.0412865281, -0.0138426721, 0.0239306074, -0.0441532172, 0.0245538, 0.0141075291, 0.00973738916, 0.0100178253, 0.0114979083, -0.016187435, -0.029539343, 0.0197240543, -0.0103917411, 0.0033730315, -0.000358092482, 0.034929961, 0.0163432341, 0.042159, 0.0287136119, -0.00672269333, 0.0244291611, -0.0390118733, 0.0333096609, 0.0291965865, 0.0536257476, -0.0136323441, 0.0138348816, 0.00883375946, -0.0201135501, 0.0368618593, -0.0298820976, 0.0141464779, -0.026579177, -0.0704207942, 0.00513744634, -0.0195838362, -0.00671100849, 0.0229802374, -0.00937905256, 0.0388560742, -0.029944418, 0.0257690251, -0.0119808828, -0.0201602895, -0.00401569903, 0.0158758387, 0.014761881, -0.0131727392, -0.0127910338, 0.0132584283, 0.0318139978, 0.0274828058, 0.0347741619, -0.0170599055, -0.0374850519, 0.0140452096, -0.0178544763, -0.0129234623, 0.0250367746, 0.00736146607, 0.00756010879, -0.00803139806, -0.00415981235, 0.0478612147, 0.013827092, 0.0175584592, -0.049761951, -0.0242422037, 0.0324060284, 0.0142165879, 0.0109448247, 0.0184932481, -0.0107111279, 0.0111395726, -0.021858491, 0.0360828675, -0.00770422211, -0.0322813913, -0.0259092432, 0.0272023696, -0.00187736854, 0.0135154957, 0.0237748083, 0.0201758686, -0.0563989542, 0.0295549221, -0.0277009234, -0.0115524381, 0.011731606, 0.0269530918, -0.0262052603, -0.0375473723, 0.00131552119, -0.00099175307, 0.0440285765, -0.0362075046, -0.0036787854, 0.00365541573, 0.00206627394, -0.00663310941, 0.0279346202, -0.0120587824, 0.0101268841, -0.0106877582, -0.01578236, -0.0381082445, -0.0301313754, 0.0361451879, 0.0337458961, 0.0441220552, 0.00956601091, -0.00165730354, -0.0286357123, -0.000487599726, -0.0403517373, -0.00879481, 0.0107189175, -0.0214066748, -0.0500735492, 0.0189450644, 0.0192722399, -0.0153149646, 0.00248108665, -0.0258313455, 0.0468952656, -0.0184465088, -0.0341198109, 0.0122691095, -0.0113810599, -0.0308168884, -0.000979581266, -0.0106098587, -0.00429224083, 0.00167969952, -0.0273425877, -0.00115777552, -0.000608099916, 0.0156421419, -0.0170443244, 0.0119497236, -0.0634410381, 0.0100178253, 0.0122301606, 0.00580737879, 0.0417850837, 0.0194591973, 0.0441220552, 0.0349611193, -0.0150734773, -0.0332473405, 0.019817533, 0.0186802074, 0.00985423755, -0.015572032, 0.0223570447, 0.0547163337, 0.00800802838, -0.0129390424, -0.0101736235, -0.031019425, -0.0175740384, 0.000398502627, -0.0213599354, 0.0534699485, 0.0367060602, 0.0132272691, 0.00828846544, -0.0283396952, 0.000978607568, -0.00981528778, -0.0315958783, 0.00481027, 0.0151825361, -0.00209548604, 0.00543346303, 0.00710439868, 0.0384198427, 0.00696807541, 0.0152993854, -0.00239539752, 0.0403517373, -0.0212041382, 0.0361763462, -0.0510395, -0.029258905, 0.0134531762, 0.052472841, -0.0167171489, 0.0343379267, 0.0443401746, -0.0428133495, -0.0128533533, -0.0333096609, 0.0188204255, 0.00848321337, -3.92234178e-05, 0.0075406339, 0.0033730315, 0.00207795878, 0.0159537382, 0.0104229013, -0.0479235314, -0.0284799151, 0.0434365422, -0.0559315607, -0.00749389455, -0.0434365422, -0.0187736861, -0.0162030142, -0.00851437263, 0.0258780848, 0.00998666603, -0.00169527938, -0.00896618795, -0.00347819529, 0.000794084044, -0.0302715935, -0.0445582904, -0.00699144509, -0.0124794375, -0.0113888495, 0.0388249159, 0.0573960654, -0.0280592591, -0.0193034, -0.0112330513, 0.0275762845, 0.0154396035, -0.063378714, -0.0119964629, -0.0206432641, 0.0241331439, 0.052597478, 0.00193968788, -0.0498554297, -0.0166392494, -0.0283552762, -0.00738483574, -0.0328734256, -0.0149566289, 0.04368582, -0.0160783771, -0.0148008307, 0.0384198427, 0.0232762545, -0.0435611829, -0.0606678277, -0.0161562748, -0.0414111651, 0.0241643041, 0.0277009234, -0.00245576934, -0.00604107603, -0.00875586, -0.0449945256, -0.000363934902, 0.00657858, -0.00714724325, 0.0221545063, 0.0145203937, 0.0460539535, -0.0345872045, 0.000745397119, 0.010991564, 0.00701481476, 0.0303339139, 0.00149858417, 0.025628807, 0.0180102736, -0.00729914661, 0.0402894206, 0.00574116455, 0.00649289088, -0.0202849284, -0.00993213616, -0.0031802312, 0.020767903, 0.0030964897, -0.00937126298, 0.0434677042, 0.0119497236, -0.0219363887, -0.0170754846, 0.00564768538, -0.00278489315, -0.0318451561, -0.0314089209, -0.00318802102, 0.0241175648, -0.0192099214, -0.0265012775, -0.0124249076, 0.00934010372, 0.00926220417, 0.00161445909, 0.0253951102, -0.0127910338, 0.0275918655, 0.0200512316, 0.0313310213, 0.000204363445, 0.0130948406, -0.0108669261, -0.0151124271, 0.0353973545, 0.0306922495, -0.0209860206, 0.0619453713, 0.0145749236, -0.0245538, -0.0130636804, 0.020238189, 0.0100022461, -0.0109136654, 0.0134765459, -0.014232167, -0.0121834204, -0.000730791, 0.00431171572, 0.00797297433, -0.00648120604, -0.0127131343, -0.0282617975, -0.0184620898, 0.0325618275, 0.00769253727, -0.00696807541, -0.00401959429, -0.0347741619, -0.0132038994, 0.0234476328, 0.0443090126, 0.0188515838, 0.04720686, 0.00185984129, -0.00320165348, 0.0555576459, 0.0148787303, -0.000329123752, 1.05665886e-05, 0.027919041, 0.0101346746, -0.0352415554, 0.0104852198, 0.0160783771, -0.0574895442, -0.0242577828, 0.0104774302, 0.0206276849, -0.0190229621, -0.00891944766, -0.0351792388, 0.0348988026, -0.0126274461, 0.0140607897, -0.0108279763, -0.00742378505, 0.0169041064, 0.0151669569, 0.00503228232, -0.0193812978, -0.0110149337, -0.0475496165, -0.00475574052, -0.00499722781, 0.00300495815, -0.0112330513, 0.0175117198, -0.0342444479, 0.0137491925, 0.00505175721, -0.0286824517, 0.0146684023, -0.00878701918, 0.0232450943, -0.0169352666, -0.00306727737, -0.00579569396, 0.0368618593, 0.0197396353, 0.0128066139, 0.0223882049, -0.0196461547, 0.0259715635, -0.00763800787, 0.0323125497, 0.0157901496, 0.0310038459, 0.0229179189, 0.0180570129, 0.0165769309, -0.00413644267, -0.0202693492, -0.00699144509, -0.00817940664, -0.0286512934, 0.0333408192, 0.028869411, 0.0297730397, 0.0181972329, -0.0150345284, -0.0144113349, 0.050447464, 0.0300378967, 0.0363009833, -0.0060138111, 0.0116537064, 1.23086675e-05, -0.0096517, 0.000146304272, 0.0163276531, -0.0361451879, -0.000868088217, -0.0463032313, 0.00924662407, 0.0268284529, 0.00716282334, 0.0129000926, -0.049076438, 0.00831183512, 0.021313196, -0.0229646582, -0.0481728092, 0.028324116, -0.0131727392, -0.0440597348, -0.0167327281, 0.0148086203, 0.0139049906, 0.0386691168, 0.00907524582, -0.0147696715, -0.0251769926, -7.84468357e-05, 0.0198486932, 0.0169664267, 0.00439740485, -0.0126040755, 0.0122613199, 0.0162185952, -0.0267661344, 0.0181037523, -0.00333018694, -0.0405075364, 0.0135077052, 0.00676164264, -0.0196305756, -0.00887270831, -0.00413644267, 0.0171066448, 0.000592520111, -0.0205342062, -0.00274789101, 0.0359270684, 0.00595538691, 0.0079846587, -0.0198486932, 0.0272179488, -0.0437793, 0.00345287798, -0.0172468629, 0.0249121357, 0.0312063824, -0.0461474322, 0.0163276531, 0.0396039076, -0.00331655471, 0.0355843119, -0.0191164408, 0.00360672874, -0.0152993854, -0.0444648117, -0.0506032631, 0.0156655107, -0.000500988623, -0.0462720729, 0.0177609976, -0.0228711795, 0.0355531536, -0.00514523638, 0.000525332114, -0.0183997694, 0.0109759849, 0.0239461865, -0.00437014, 0.0278567225, 0.00380926649, -0.0308947861, 0.00782496575, 0.00313154422, 0.0186957866, 0.0260338821, 0.0243668407, -0.0231516156, 0.0448075682, -0.000757081958, -0.00364957331, 0.00463499688, 0.0170754846, -0.0117549757, -0.0216247924, 0.0137959328, -0.00802360848, -0.016872948, -0.0220610276, -0.0224193633, 0.0288226698, 0.0238059685, -0.00414812751, 0.0273270085, 0.0165457707, 0.0346495248, 0.00743936514, -0.00937905256, -0.00974517874, -0.0351792388, 0.0126741854, 0.0092076743, -0.00354830455, 0.0145749236, -0.0303806532, -0.0173870809, -0.0140140494, -0.0127365049, -0.0226374809, -0.00364567828, -0.0474249795, -0.00706934417, 0.0124326982, -0.0177765768, 0.018882744, -0.0240864046, -0.0155486623, 0.0192410797, -0.0231360365, -0.00879481, 0.0103372121, -0.0129156727, 0.0391365141, -0.00726798689, -0.0261117816, -0.00102632074, 0.00684733177, -0.0204407256, 0.0166859888, -0.0180414338, -0.00569442473, -0.0191008616, -0.0130325211, -0.00649289088, 0.0289005693, 0.0349922813, 0.0114511689, 0.00186568371, -0.0154084442, 0.000520463451, -0.00277126092, 0.0162030142, 0.000760976924, 0.109494992, -0.0167794675, 0.0309882667, -0.0382640436, 0.0502916649, 0.00721345749, -0.0230581369, -0.0162653346, -0.0331538618, 0.0515380502, 0.0191164408, 0.00272257393, -0.000502449286, -0.00453762291, -0.014426915, -0.00527766487, -0.00436624512, -0.0223414656, -0.021593634, 0.0345560461, 0.0303962324, -0.0106332283, 0.0108591355, -0.0196617357, -0.0094569521, 0.00822614599, 0.000186714431, -0.0274049062, -0.0270154104, -0.00791065488, 0.00368852285, -0.00292121666, -0.0543112606, -0.0272802673, 0.0233385731, 0.0205809455, -0.00264467485, -0.0227776989, -0.00981528778, 0.00492322352, 0.0231827758, 0.0139595205, -0.0113187404, -0.0164678711, 0.0166392494, -0.0305208713, 0.0260338821, -0.018742526, 0.00136031315, 0.0293368045, 0.00552304694, 0.0307545681, -0.0154473931, 0.000669932342, -0.0162497535, 0.0154941333, -0.0170443244, 0.0329980627, -0.0213599354, -0.0393857881, 0.0430003069, 0.00437403517, 0.0254574288, 0.00383068877, 0.00387158571, 0.00368268043, 0.00510239182, 0.0173715018, 0.0258625038, -0.00238176528, -0.00088123366, -0.00639551692, 0.0190852825, 0.00110519363, -0.0126897646, -0.0198019538, 0.0111941025, -0.0146138733, -0.0353973545, 0.0143645955, -0.0466148257, -0.014761881, 0.0030984371, -0.0215001535, 0.00983865745, -0.00847542286, -0.00607613055, 0.0097919181, 0.0124794375, 0.0369241796, -0.0147930412, 0.00697586546, -0.00498164818, -0.0115524381, 0.00415591756, -7.82642601e-05, -0.0306299292, 0.0266414955, 0.0103294216, -0.00700702472, 0.0047362661, -0.0274204873, 0.0147151416, 0.019568257, -0.0127131343, -0.00760684814, 0.0198019538, -0.0206121039, -0.0235722698, 0.0243356824, -0.0216403734, 0.0139361508, -0.0272646882, -0.0147229321, 0.0201291293, -0.00743547, -0.0247251783, 0.011186312, 0.0184932481, -0.0110460939, 0.0185867269, 0.00499722781, 0.0220454484, 0.00174883497, -0.00239929254, 0.0072640921, -0.022528423, 0.0216871127, 0.0291810073, 0.0408191346, -0.00654742029, -0.0301002152, 0.0166859888, -0.00702260481, -0.0555576459, -0.0169820059, -0.000123482256, -0.00744715473, -0.0133674871, -0.017792156, -0.01659251, -0.0110850437, -0.0259248242, 0.0087636495, -0.0190385431, 0.0131727392, 0.0189762227, -0.00291732163, 0.0146528222, -0.00311401696, 0.0318451561, 0.00767695718, -0.0297574606, -0.0010428743, -0.0331538618, 0.0331850201, -0.0332785, -0.020908121, -0.0121756308, 0.0118951937, 0.0119029842, -0.00128241407, -0.00592033239, -0.00679280236, -0.0197396353, 0.00401959429, -0.00843647402, -0.00313933403, 0.0119263539, -0.0157356206, 0.00162711763, 0.0101190945, -0.0294458643, 0.00911419559, 0.0186490472, -0.0127832443, 0.0189918038, 0.0373604149, -0.0114823291, 0.0226686411, -0.0305052921, -0.024008505, 0.0277320836, 0.0415046439, -0.014497024, 0.0327799469, 0.0015910893, -0.0222791452, -8.08203258e-05, -0.0371422954, 0.0331227, -0.0152682252, 0.0160316359, -0.0083196247, 0.00458046747, 0.0297418796, 0.00415591756, -0.00958159, 0.00415202277, -0.00839752425, -0.0167171489, -0.0141698476, 0.013126, 0.0250990931, 0.0174961407, 0.0167171489, -0.00711608352, 0.04449597, 0.0173559207, -0.00325228786, 0.0302715935, 0.00935568288, 0.0224972628, -0.00151611143, -0.0108123962, 0.00331655471, -0.0170131661, 0.0261741, 0.0119964629, 0.0206588432, 0.0251925718, 0.000309892406, -0.0298042, -0.0115524381, -0.000999056, -0.0352415554, -0.0044441442, -0.0247251783, 0.00130091514, 0.00983865745, 0.0159537382, -0.0216092132, 0.0162341744, -0.0436235, -0.00168846315, 0.0092076743, -0.00950369146, 0.0320321135, 0.000610534276, 0.00568274, -0.0199889112, 0.0293212254, 0.00923104491, -0.00896618795, -0.0244447403, -0.00470121112, -0.0112252617, 0.0132038994, 0.0140607897, -0.00125417567, -0.0432495847, 0.0316737778, 0.0433119051, 0.0065824748, -0.0124093285, 0.0176986773, 0.0109292455, 0.00234476314, 0.0270777307, 0.0026933616, 0.0241019838, 0.0108357659, -0.0119575132, 0.0163120739, 0.00835078489, -0.0113187404, 0.0181660727, 0.0182595514, 0.0260494631, -0.0156421419, -0.0357089527, 0.0109292455, -0.00261351513, 0.00224544178, 0.0141308988, -0.00487648416, 0.0117082363, -0.00984644704, 0.0239461865, -0.0100022461, 0.0156109817, 0.0151046375, -0.0219363887, -0.0308480468, -0.0017001481, 0.00643057143, 0.0177142583, 0.00813266728, 0.0347430035, 0.00439740485, 0.0159069989, 0.00376057951, -0.00263104239, 0.000786781, 0.0132038994, -0.0350234397, -0.0101424642, 0.0112953708, 0.025893664, -0.0228555985, 0.0184932481, -0.0496996306, -0.0156577211, -0.0084286835, 0.00621245382, 0.0110071441, 0.00483753486, -0.00585801294, -0.000834494189, 0.00971401855, -0.0190229621, 0.00315880892, -0.0313154422, -0.0264545381, 0.0206432641, -0.00577621907, 0.02631432, -0.0159381572, 0.0141854277, -0.0206744242, -0.00823393557, 0.0233853124, 0.0114277992, 0.00898176711, -0.0192566607, -0.0167950485, -0.0312531218, 0.0131883193, 0.0106799677, 0.0475184582, 0.00783665, 0.0172468629, -0.02885383, 0.00628645811, -0.00620076898, -0.00689407112, -0.00795349944, -0.000468855258, -0.0231827758, -0.0022240195, -0.0238371268, 0.0334342979, -0.0298820976, 0.0084598437, -0.0152682252, -0.0348988026, 0.0173247624, -0.00188028975, -0.00268362439, -0.0241331439, -0.00107598142, -0.0265168566, -0.0231671948, 0.0126508158, 0.0250835139, 0.00163101265, -0.0123859588, -0.0176675189, -0.0195838362, -0.00163685507, 0.0138426721, 0.00870133098, 0.0183997694, 0.0394481085, 0.00378589681, -0.0246472787, -0.0223414656, -0.0219519697, -0.0388872363, -0.0083352048, -0.00497775292, 0.0101736235, -0.00119769876, -0.00704597449, 0.0261896811, 0.00924662407, -0.0125028072, -0.000460578478, 0.00465447176, 0.022123348, -0.0005623342, 0.00955043081, 0.0190229621, 0.00516860606, -0.0194280371, -0.022247985, -0.00519197574, -0.0163120739, -0.0204718858, 0.00504007237, -0.00609171, 0.0247563366, 0.0101502538, 0.00254924828, -0.0492010787, 0.0162809137, 0.000111249668, 0.0373604149, -0.0164055526, 0.00639551692, -0.00547630759, -0.0259559825, 0.00518808048, 0.0112252617, -0.00777433114, 0.0158836283, 0.0179946944, -0.0115758078, 8.86102353e-05, 0.0150578981, -0.0235878509, -0.00136323436, 0.000323281303, -0.0302248541, -0.00186860492, 0.0363944657, 0.00681227725, -0.0311908033, -0.0167638883, -0.010111304, -0.0229023378, -0.0247719176, 0.0258313455, -0.00867796, -0.00542567298, 0.0101346746, 0.00811708719, 0.00243629469, 0.0215468928, -0.0101424642, -0.00290174177, 0.0113732703, 0.000387791515, 0.0136946635, 0.00221233466, -0.00840531383, -0.00453762291, 0.00458436273, 0.0137180332, 0.033714734, 0.00706155412, -0.0385444798, -0.0206121039, 0.00866238121, -0.00869354047, -0.0196461547, -0.0162809137, -0.00253561605, 0.0125807058, -0.0143957557, 0.0141386883, 0.000589598902, -0.012876723, -0.00110908854, 0.0924818218, 0.0162030142, -0.00179070584, -0.0125261769, -0.0228400193, -0.0514445715, -0.0107890265, 0.032904584, 0.0250990931, -0.0157356206, 0.0244135801, 0.000310379255, 0.000401180412, 0.0186957866, -0.0496996306, 0.0161562748, 0.00665258383, 0.00341392844, 0.0268128738, -0.0324683487, 0.0115134884, -0.000137175462, 0.009776338, 0.00814824644, -0.00581906363, 0.00193287164, -0.0129234623, -0.0215624738, -0.0269530918, 0.00484142965, -0.00580348354, 0.00205264147, 0.0196305756, -0.00367683801, 0.0242110435, 0.0367060602, 0.0310505852, 0.0116614969, -0.0177298374, 0.0135388654, 0.0130247315, -0.0118172951, 0.00348988012, -0.00569832, -0.010796817, -0.00735367602, -0.015237066, 0.0189606436, -0.0333096609, -0.00239734515, -0.00339055876, 0.0092232544, -0.0146606127, 0.00918430462, -0.0338082127, 0.0114122191, -0.0057372693, 0.00782886054, 0.00416370761, -0.0212352965, -0.000809177, 0.0142010078, 0.00430003088, -0.0218896493, -0.0131883193, -0.00520366058, 0.00572947972, -0.0075990581, 0.0141153187, 0.0144113349, 0.015572032, 0.0333719775, 0.0108669261, 0.0078756, -0.0104774302, 0.00637604203, -0.0108046066, 0.00230970862, 0.00904408656, -0.0224037841, -0.0136557138, 0.0196149964, 0.0174961407, 0.00511797145, -0.0262208395, -0.00610339502, -0.0257534459, 0.00871691, -0.00334381917, 0.0133596975, -0.00485700928, 0.0129156727, -0.00705765933, 0.00643446669, 0.00151124271, -0.0185399875, 0.0339640118, 0.0194436181, 0.00207795878, -0.00871691, -0.00363788847, 0.0210795, 0.0166859888, 0.0459916331, 0.00138270925, 0.00244992692, 0.0274672266, 0.00456488784, 0.00221038726, 0.0178388953, 0.0234943721, -0.00147034565, 0.00134473341, -0.0113499006, 0.00177025725, -0.0180102736, 0.0125573361, 0.0175584592, 0.00076195068, -0.01578236, -0.0460539535, 0.0525663197, 0.0177454166, -0.00808592793, 0.0210327599, -0.0176986773, -0.0185399875, 0.0169352666, 0.0155330822, -0.00913756527, -0.0244291611, 0.0206744242, 0.0228555985, -0.00502838753, -0.00368268043, -0.000946961052, 0.0084442636, 0.0333096609, 0.0135933943, -0.0167950485, -0.0120198326, 0.0174961407, -0.0250367746, 0.0210171789, -0.00454930821, 0.00277515571, -0.0111239925, -0.021313196, 0.0049426984, 0.00429613609, -0.0102593126, -0.0134531762, 0.00548409717, 0.0122223701, -0.00122788467, -0.0117238164, 0.0137491925, 0.00740431, -0.00262714736, -0.00255119591, 0.0219052304, 0.0182751305, 0.0346806832, -0.0141542684, 0.0169820059, -0.00255703833, -0.0191943403, -0.00119185634, -0.0117160259, 0.0279346202, -0.0015901156, -0.0180258546, -0.0137102436, -0.00219286, 0.0200044923, -0.0191164408, 0.0285266545, -0.00356193678, 0.0452749617, -0.018742526, -0.0128689334, 0.00186081498, -0.0083196247, 0.0182907116, -0.00514913118, -0.00477132061, -0.0138660418, -0.0200512316, 0.00380537147, 0.0116225472, 0.00969064888, 0.0185244083, 0.0123859588, 0.00140705262, 0.0203472469, 0.000485165394, -0.0202693492, -0.0164211318, -0.00917651504, 0.0125884963, -0.0194903575, 0.00535945874, 0.0346806832, 0.0366125815, 0.0105553297, 0.014232167, -0.0336212553, -0.00842089392, 0.0141698476, -0.00215001544, 0.0152214859, -0.0256911255, 0.00347040524, -0.0283708554, 0.000330584357, -0.00562042091, -0.0154941333, -0.0328422636, 0.000669932342, 0.00478300545, 0.003456773, -0.000630495895, 0.000551623059, 0.00381316151, -0.00772369653, 0.00496606808, 0.016047217, 0.00923104491, -0.00884154905, -0.00125514937, -0.00960496068, 0.0217650104, 0.0325306691, 0.00311985938, 0.00099175307, -0.0110538835, -0.00558536639, -0.0210639201, 0.0118874041, -0.0203005075, -0.00682006683, 0.00718229776, -0.00840531383, 0.000632443407, 0.0185244083, -5.24297539e-05, 0.00962833, -0.0101424642, -0.0309571065, -0.0179635342, -0.0235566907, -0.0168262068, 0.00226102164, -0.0196461547, 0.00541009335, 0.0120977322, 0.0194903575, -0.0223882049, -0.0237436481, -0.03156472, 0.0111707328, 0.0200668108, -0.00522703025, 0.0178856347, -0.00780159561, -0.00232528849, 0.00644615153, -0.0110383043, -0.0121678412, -0.00260767271, -0.0136089744, 0.00790676, 0.0235099513, 0.0133051677, 0.00335160922, 0.0212352965, 0.0378278084, -0.00243629469, -0.0261117816, -0.00522703025, -0.0260338821, 0.00643836148, -0.00294263894, -0.00743936514, -0.00384042622, 0.0305052921, 0.000862245797, 0.0296328217, -0.000550162455, -0.0281683188, 0.00566716027, 0.00843647402, 0.00377615937, -0.00861564185, 0.014761881, 0.00862343144, 0.0154396035, 0.00741599547, 0.00756400358, -0.0150656877, 0.00784054585, -0.0226842202, -0.0128221931, -0.00488427421, 0.012611866, 0.0208302215, 0.0132662188, -0.0186802074, 0.0241019838, -0.00358335907, -0.00821835641, -0.0191631801, -0.00303222286, 0.00151805894, -0.0283552762, -0.0152136963, 0.0257222857, -0.0291342679, 0.00116069673, -0.0361140259, 0.0122301606, 0.00360478135, 0.00171572785, -0.0184153486, -0.00148592552, 0.00431171572, -0.00803139806, -0.00867796, 0.00358920149, -0.00168846315, -0.00918430462, -0.0146917719, 0.00338666374, 0.0205809455, -0.0126274461, 0.0258625038, -0.00916093495, -0.0265947562, 0.0151357967, 0.0121912109, -0.0390430354, 0.0355531536, -0.0163120739, -0.00348209031, -0.00934010372, -0.0195838362, 0.00831183512, -0.00218507, -0.00299911574, 0.031299863, -0.0104229013, -0.00969064888, 0.0262831599, 0.0138426721, 0.00993992668, 0.00111687847, 0.00757958321, 0.0162809137, -0.0237436481, 0.00710439868, 0.0115835974, 0.0025823554, 0.000275081227, 0.00597875658, 0.0116692865, 0.00761853298, -0.00155019225, -0.0105319601, 0.000516568485, 0.0283552762, -0.0190852825, 0.00898955762, 0.0395104289, -0.0010983774, 0.0138582513, 0.0141542684, 0.0313777626, -0.0167950485, 0.00986202713, -0.0145359738, -0.0454307608, -0.0127287144, -0.0118874041, -0.00768864201, -0.0214378349, 0.00463889213, 0.00156966702, 0.0212508775, -0.00129702012, 0.0149488393, 0.0246472787, 0.0174338203, 0.00542956777, 0.00939463265, -0.0176675189, 0.0114044296, -0.0115524381, 0.0254418496, -0.017527299, -0.00808592793, 0.0141464779, 0.0128455628, 0.00402738387, 0.0008505609, 0.0143801756, 0.00812487677, 0.0199889112, -0.0285110734, 0.0255976468, -0.00860006176, 0.0272179488, 0.00459215231, -0.0010146359, 0.0126663949, -0.0333096609, 0.0302871745, 0.00209548604, 0.0650613382, 0.0186334662, -0.00780549087, -0.0149410488, 0.0173247624, -0.0189762227, 0.000482000731, 0.00193384534, 0.00441298448, -0.0128689334, -0.00648510084, -0.000698170799, 0.00178583711, -0.014707352, 0.00317828357, -0.000324741908, 0.00208574859, -0.00226686406, -0.00690965122, 0.00177025725, -0.00182089175, -0.0140452096, 0.00859227218, 0.00772759179, -0.000663116167, -0.00212469813, 0.0222791452, 0.0105553297, -0.0172312837, 0.00805476774, 0.00988539681, 0.00732641108, 0.0126975551, 0.0345872045, 0.0101892035, -0.0123002697, 0.0264701173, -0.00751726422, -0.000214952859, 0.0194591973, -0.0291498471, 0.0221389271, 0.00117335538, -0.0153149646, -0.0261273608, -0.00392027292, -0.00276736589, 0.00804697815, -0.00582295842, 0.00672658812, 0.0103917411, -0.0230737161, 0.0226998013, 0.00852216221, -0.0383886807, 0.010376161, -0.0144347055, 0.0151435873, -0.00895060785, 0.00799244829, -0.0012356746, 0.010041195, -0.000336426776, -0.00317633618, 0.013016941, -0.00629424816, 0.0118095046, 0.000898274127, 0.0395104289, 0.0128533533, 0.024678437, 0.00717840297, 0.0148709398, 0.0129312519, 0.00387742813, -0.00558147114, 0.00604497083, 0.0212976169, 0.010851346, -0.00524650514, 0.019552676, -0.0114122191, 0.0111239925, -0.00510628661, 0.0199421719, 0.0105319601, -0.00457657268, 0.00937126298, 0.0110772531, -0.00996329635, 0.00355219934, -0.0358335897, 0.0119653037, 0.0208146423, -0.0022201247, -0.00105553295, 0.0332161821, 0.028729191, -0.00086175889, -1.9931218e-05, 0.00881038886, 0.000815993175, 0.0128533533, 0.0252393112, -0.0083352048, 0.018617887, -0.0244914796, 0.0096517, 0.0105709089, -0.00054870185, 0.0126663949, -0.00218117516, -0.00105066423, -0.00678501232, 0.00813266728, -0.0100256158, -0.0213910956, -0.0186802074, -0.0203784071, -0.000747344573, 0.0158992074, -0.0114589594, 0.0276230238, -0.00263883243, 0.0372669324, -0.0297107212, -0.00388911297, -0.0261896811, 0.00295432378, 0.00408970332, -0.017807737, 0.00571779488, 0.000286279217, 0.00154434983, -0.00905966666, -0.0117393956, 0.0156733, -0.00513355155, 0.00654742029, -0.00712776836, 0.00493880361, -0.00624750881, 0.00207016873, 0.00952706113, -0.0030146956, -0.00998666603, -0.0103372121, 0.00756789837, 0.00662531937, -0.00723293237, -0.0108980853, 0.012681975, -0.0295705013, -0.00225517922, -0.00115777552, 0.00821056589, 0.014567134, -0.000123908278, 0.0052348203, 0.00526987482, -0.00506344205, 0.00233502593, -0.0125884963, -0.00487648416, 0.001644645, 0.00338861137, -0.0148319909, 0.0237436481, -0.0133363279, -0.00814824644, 0.0274828058, -0.00692133605, 0.0167950485, -0.00508681173, 0.00199324358, 0.000614916091, -0.0186957866, -0.00662531937, -0.0251925718, -0.0353661962, 0.0061929794, -0.00808592793, -0.0108591355, -0.00450646365, -0.00385795347, 0.0217026919, -0.018072594, -0.00355804176, -0.0293212254, -0.0101502538, -0.00366125815, -0.0272802673, 8.92796816e-05, 0.00872470066, -0.0127988234, 0.00225517922, -0.00816382654, 0.00790676, 0.0131805297, 0.00578400912, -0.0181972329, 0.000254632701, 0.0233074129, -0.0191008616, -0.0123236394, 0.00786391553, 0.0102826823, 0.00828067493, 0.0211885571, -0.00384042622, -0.00944916159, 0.00624361355, 0.00207211636, -0.00278294575, 0.00824172609, 0.00199811207, -0.00595538691, -0.024273362, 0.0126040755, -0.00267193955, -0.00807813741, -0.0227776989, -0.0207523219, -0.0133285373, 0.0209548604, -0.000184280085, -0.0261741, 0.0151591664, -0.00411696779, -0.00267583434, 0.00555031141, 0.0150812678, 0.0137102436, 0.00969064888, 0.0217182711, 0.00548409717, -0.0166704096, 0.000624653476, -0.00861564185, 0.00279073557, -0.00296406122, 0.0102281533, -0.0174961407, -0.011061674, -0.0089038685, -0.00263493741, 0.010111304, 0.0187113658, -0.0331538618, -0.000164318437, 0.00593201723, -0.0153305447, 0.0157512, 0.0235099513, -0.0199733321, -0.0115680182, -0.00333018694, -0.00550746685, 0.027513966, 0.0249277148, -0.00898955762, -0.00536724878, 0.0159848966, -0.0357089527, 0.0094569521, 0.00311401696, -0.00881817937, 0.00618518936, -0.0150578981, 0.018742526, -0.0109448247, -0.0178856347, 0.0228555985, -0.00828067493, 0.0169664267, 0.00556589151, -0.0192566607, -0.00951148104, -0.0361763462, -0.00906745624, 0.00814045686, 0.0229958165, 0.00807813741, 0.00862343144, 0.00686680665, -0.0192566607, 0.00875586, 0.00561652565, 0.00270504667, 0.0192566607, 0.00705376454, -0.0113576902, 0.00469731633, 0.0133363279, 0.013422017, -0.0017848633, 0.00429613609, -0.0101346746, -0.00617739931, -0.00477911, 0.0120899417, 0.0160004776, 0.0236657504, -0.00738483574, -0.003236708, -0.0191787612, -0.00410138816, -0.0167015698, 0.0275607053, 0.0100645646, -0.0181193333, 0.0238994472, -0.0103917411, -0.0100645646, 0.0267972946, 0.00894281734, 0.0130091514, -1.68730694e-05, -0.0251769926, -0.0061929794, -0.0159848966, 0.0150267379, 0.0103450017, 0.00226102164, 0.0132350586, -0.00617350452, 0.00397674972, 4.28445092e-05, 0.00717061292, 0.0213910956, -0.0186646264, -0.00723293237, 0.0350857601, 0.00478690024, -0.00418707728, 0.0230269767, -0.00696807541, 0.0112797907, -0.0107111279, 0.00545293745, 0.00821835641, -0.00155116606, -0.00242071482, -0.000519002846, -0.0141153187, -0.0127754537, 0.00269725663, 0.00301859039, -0.0111629423, 0.00620855903, -0.00846763328, -0.0080002388, 0.000718132418, -0.00442077452, -0.00240124017, 0.0187892653, 0.00145476591, -0.00350156496, 0.0193034, 0.00949590188, -0.00788338948, 0.015307175, -0.0068590166, 0.0146761918, -0.0172001235, 0.00326981512, 0.00556199625, -0.0157589894, -0.0099009769, -0.000871009426, 0.0190697014, 0.00997887552, 0.00523092505, -0.0153850745, 0.0231360365, 0.0027206263, -0.0185399875, 0.0239617657, 0.00813266728, 0.00955043081, 0.0106098587, 0.0101424642, 0.00270894147, 0.00609560544, -0.0125339665, -0.0141698476, -0.0163432341, -0.00830404554, 0.000843744725, 0.0352415554, 0.00344119314, 0.00154337613, -0.010656598, 0.00745105, -0.000827678, 0.000236618551, -0.000220917, -6.31104485e-05, -0.0132584283, 0.00167677831, -0.00332629192, 0.00479858508, -0.0264545381, 0.0188515838, -0.0205342062, 0.0139439404, 0.0218117498, 0.0170443244, -0.0139595205, 0.0138738314, -0.00979970768, -0.0167794675, 1.86075413e-05, 0.00447530393, -0.0156655107, -0.0114901187, -0.0236501694, -0.0182283912, -0.0039436426, -0.0222168267, 0.0136946635, 0.0145281842, 0.00768864201, -0.00857669208, 0.0058463281, 0.0178700555, -0.0180102736, 0.014972209, -0.021578053, -0.0183062907, -0.0268907733, 0.000972765149, -0.0142165879, 0.0302248541, -0.000342999527, -0.00231749844, -0.000752213295, -0.0106176483, 0.010921455, -0.0135310758, -0.0209548604, 0.00193287164, -0.00860006176, 0.0161562748, -0.0170443244, 0.00220843987, -0.00146839826, 0.0103683714, 0.000228463483, -0.00853774231, -0.0125105968, -0.0141854277, -0.0015910893, 0.0320944339, -0.0166392494, -0.0207211636, 0.020097971, 0.0183686092, 0.00831183512, -0.0289317295, -0.0255041681, -0.0164367128, -0.00116653915, -0.00146742444, -0.00775096146, -0.0158368889, -0.00654352503, 0.019817533, -0.0179012157, 0.0144035453, 0.00854553189, 0.00140218402, -0.00482585, 0.0102982624, 0.0199110117, 0.00474016089, 0.00739652058, -0.00198155851, 0.00084228412, 0.0161562748, 0.0296016615, 0.00414423272, 0.00960496068, -0.015517503, -0.00695249531, 0.00887270831, 0.00130675756, -0.0192722399, 0.0253172107, 0.00869354047, 0.0135778151, 0.00642278139, 0.0128455628, -0.00431561051, 0.0212976169, 0.0282617975, 0.00143723853, -0.0192255, -0.0106098587, -0.0183062907, -0.0279969405, 0.0141542684, 0.00114803808, -0.00304585509, 0.00425329152, -0.00296211359, 0.00040166729, 0.018742526, 0.0201447103, 0.0209237, 0.0131727392, 0.0432495847, 0.00607223576, 0.00293874391, 0.00472847605, 0.0143801756, 0.00105066423, -0.0137180332, 0.00567105506, -0.00385016343, 0.0073186215, 0.00297964085, -0.0128221931, -0.0162497535, -0.00638772687, -0.0186646264, 0.00575284939, -0.0262364205, -0.00822614599, -0.00122106855, -0.0142243775, -0.00252977363, 0.00727577694, 0.00950369146, -0.0034022436, 0.0120432023, -0.0144424951, 0.00689407112, -0.00585801294, 0.00749778934, 0.0119964629, 0.0116692865, 0.00408191327, 0.0137491925, 0.01315716, 0.0208925419, -0.00085640332, 0.00200979714, -0.0130091514, 0.00340029621, 0.00487648416, -0.0155408727, 0.0168262068, -0.0056243157, -0.000242582697, -0.0118250847, -0.0251458324, 0.0042766612, 0.00229802378, -0.00303222286, 0.0101736235, 0.00261741015, -0.0329357423, 0.0161251165, -0.0107267071, -0.0246161185, 0.00349572254, -0.0021383306, -0.00662921416, -0.000999056, 0.00197669, 0.0172936022, -0.0198642723, -0.00138465664, -0.014091949, 0.0445271321, -0.0034840377, -0.00714334846, 0.00558926119, 0.011536858, -0.0103683714, 0.0151591664, 0.000125490595, 0.026984252, -0.00868575089, -0.0059047523, 0.00781717524, 0.0194280371, -0.0149877891, -0.0060995, 0.00458046747, -0.000996621791, -0.0170443244, 0.0117861349, -0.00850658305, 0.0062514036, 0.00418318203, 0.00261351513, 0.00857669208, 0.014372386, 0.00160666916, 0.00644225627, 0.0205965247, 0.0206432641, 0.0081092976, 0.0108279763, 0.0218117498, -0.00718229776, -0.00202537677, 0.0256911255, -0.00155603467, 0.0123547986, -0.00368852285, -0.00468563149, 0.011731606, 0.00385211105, -0.00750947418, 0.00670711324, 0.0107111279, 0.0203784071, 0.000660681806, 0.0185244083, 0.0147930412, 0.00492711877, 0.00796518382, -0.0217182711, -0.0117004467, -0.0192566607, 0.00242655724, -0.000837902306, -0.0130714709, 0.00287252967, 0.00909861643, -0.0109058749, 0.0131337903, -0.00436624512, -0.00611508032, -0.00386963831, 0.0127832443, 0.00405075355, 0.00772759179, 0.02631432, -0.0136011848, -0.00345287798, 0.013351907, -0.0228400193, 0.000185132099, 0.0122145806, -0.00430392567, 0.00250250893, -0.0105942786, -0.0155642424, 0.0122223701, 0.0019737687, 0.0100801447, -0.0156577211, 0.0135310758, -0.00291926903, 0.0279034618, 0.0155252926, 0.0158914179, -0.00744715473, 0.0172780231, -0.00822614599, -0.00385211105, 0.0176830981, -0.00403906871, 0.000848126539, -0.0189294834, 0.0018627625, 0.00473237084, 0.0100723552, 0.00733809592, -0.0138115119, 0.010321632, 0.00115874922, -0.00647731079, -0.00995550584, -0.0221856665, -0.00183744531, -0.0105942786, 0.018882744, -0.020097971, 0.00486479932, 0.00219870242, -0.00229218137, 0.0354596749, -0.00136810308, -0.00838973373, -0.0364879444, -0.00784054585, 0.0158524681, 0.00916872546, 0.00766137755, 0.0112797907, 0.00383653119, 0.0243512616, -0.0108902957, 0.0251146723, 0.0235566907, -5.103e-05, -0.00280631543, -5.16994478e-05, 0.0159848966, -0.0130714709, -0.0162497535, -0.00971401855, 0.017137805, 0.000729817257, -0.0247407574, -0.0035969913, 0.0116614969, 0.00435066549, 0.0149021, -0.00824951567, -0.00639941171, 0.0220766086, -0.00364373089, -0.000272646896, 0.0121678412, 0.0021675427, -0.000204972035, 0.00105845416, 0.00282189529, 0.0158524681, -0.00680838199, -0.0123236394, 0.0261273608, -0.00252198358, -0.00382095133, -0.00104774302, 0.0103839515, -0.00188515848, 0.0243512616, 0.00955043081, -0.0087636495, -0.00443635415, -0.00401569903, -0.0145203937, -0.00986981764, -0.0183218699, 0.0250835139, 0.0259404033, -0.0218740702, -0.0208146423, 0.00395143218, -0.00803139806, 0.00330876466, 0.00107306021, 0.0241643041, 0.0111785224, 0.00919988472, -1.93834894e-05, -0.0141542684, 0.0311752241, 0.000203267991, 0.00489595905, 0.000764871889, -0.00525819, 0.000256823638, -0.0149566289, -0.0122379502, 0.00986981764, -0.0188204255, 0.0260338821, -0.0008646801, 0.0121211018, 0.0107578672, -0.0134298066, -0.00810150709, 0.00818719622, 0.0133051677, -0.00272841635, -0.00294069131, -0.0140841594, -0.0210950784, -0.00202342938, -0.000707421277, -0.0144892344, -0.00500501785, -0.00491932873, -0.0052893497, 0.00147618807, 0.0206588432, -0.00442466931, 0.00616571447, 0.00794181414, 0.0179946944, 0.0204095673, -0.0164834522, -0.0085533224, 0.0167794675, -0.00495438324, 0.00332823955, -0.00654742029, -0.012541757, 0.0226374809, -0.0066954284, -0.0197240543, -0.00120451499, 0.0100256158, 0.00476353057, -0.00422602659, 0.0182907116, -0.00380537147, 0.00815603696, -0.0116225472, -0.000413595582, -0.0151903266, -0.0173403416, 0.00118796143, -0.00115388061, 0.0151357967, -0.014162058, -0.00373136741, -0.0111629423, -0.0468329452, 0.000588138297, 0.00598654663, 0.00379563402, 0.0115524381, -0.00872470066, -0.00852216221, -0.0339951701, 0.00188321096, 0.0200200714, -0.000511699764, -0.0234008934, -0.00318802102, 0.00302638044, 0.0106332283, 0.0215001535, 0.0214222558, 0.00443635415, -0.00358725409, 0.00150637398, 0.00731083145, 0.00305948756, 0.0354596749, 0.00377226435, -0.00559315598, 0.0191631801, 0.0133830672, 0.00972180907, 0.013881621, 0.0280125197, -0.00520755537, 0.00246550678, -0.00785223, -0.00146450324, 0.00185205135, 0.0129702017, -0.0130558908, 0.0146450326, -0.0188983232, 0.00132136361, 0.000361744, 0.00382484635, -0.00060420495, -0.00454541296, 0.00722903758, 0.000944526691, -0.0176519379, -0.00791455, 0.00185010384, -0.0326864682, -0.00961275, -0.00217728014, 0.000829138677, -0.00692523085, 0.00699923513, 0.0117627652, 0.00669153361, 0.00903629698, 0.0271867886, 0.00022359479, -0.00186373619, 0.00482585, 0.00206627394, 0.0257067066, 0.0111629423, -0.0131805297, 0.00826509576, -0.0141308988, 0.0084598437, -0.00393585255, 0.00741599547, -0.00108961377, -0.00414812751, -0.00185399887, 0.0139205707, -0.0145437634, -0.0125807058, 0.00444803899, 0.0269375127, 0.0231360365, -0.00294653373, -0.0193812978, -0.00624750881, 0.0161406957, 0.0164678711, 0.0155642424, -0.0197863746, -0.00462331204, -0.0125261769, 0.017792156, 0.00382679375, -0.00098055508, -0.0161406957, -0.00704597449, 0.00409749337, -0.00325228786, 0.00210327585, -0.0161718559, 0.00319970585, -0.0137491925, 0.0133363279, -0.0127053447, 0.00638772687, 0.004113073, 0.00877144, 0.00790286437, 0.000222134186, -0.00983086787, -0.0122145806, 0.00482585, -0.0207990631, -0.00602549594, -0.00809371751, -0.00372163, 0.0174649805, 0.00426108111, 0.0292121656, -0.0110538835, -0.00338082132, 0.00649289088, 0.00794181414, 0.00279463059, 0.00806255825, -0.00622803392, -0.0230113976, -0.0114433793, 0.00955043081, 0.00696028536, 0.00510239182, 0.00163685507, 7.04743507e-05, 0.0042065517, -0.00732641108, 0.0100178253, -0.00409749337, -1.84249657e-05, -0.0054568327, 0.0146684023, -0.00942579191, -0.0295860823, 0.0182439722, -0.00393195776, 0.00370799773, -0.00755621353, 0.00167872582, -0.0157356206, 0.0169041064, -0.0314556621, -0.0111395726, 0.00992434658, -0.0115680182, 0.0029874309, 0.00803139806, -0.0046661566, 0.0172157027, -0.000909472117, 0.00810150709, -0.00776654109, -0.0487648435, -0.0129312519, -0.00183744531, 0.0329357423, 0.00134765462, 0.0258313455, 0.00366710057, 0.0150812678, 0.0062514036, 0.0084442636, 0.0167638883, 0.013211689, -0.010656598, 0.00184426142, -0.0219363887, 0.00465057697, 0.00815603696, 0.00158037816, 0.00477521541, 0.00233502593, 0.0118484544, -0.014302277, 0.00567495031, -0.0139673101, 0.0142633272, -0.0065824748, 0.0162185952, -0.000592520111, -0.0314868204, -0.00931673311, -0.00692523085, 0.00431171572, 0.0126040755, -0.0229179189, 0.0027206263, -0.00302053802, -0.0110071441, -0.0367372185, -0.00774706667, 0.00730693666, 0.00539840851, 0.0164055526, -0.016872948, -0.00500891265, -0.00717061292, -0.0020545891, -0.00188905338, -0.000992239919, 0.00535166869, 0.0149799986, 0.0135388654, 0.00729525182, -0.00862343144, 0.00162322272, -0.00634488231, 0.0115212779, 0.0196461547, -0.0176675189, 0.0280125197, 0.00948811136, 0.00840531383, -0.0137024531, -0.018617887, -0.0109993545, 0.0165457707, -0.0205809455, -0.00688238628, 0.00196403125, 0.0173247624, 0.0310505852, -0.0171689633, -0.0217182711, 0.00558147114, 0.00897397753, -0.00559315598, 0.00548409717, -0.00504786242, -0.00124249083, 0.0106332283, 0.0167950485, 0.0227776989, -0.00962833, 0.00869354047, 0.0120354127, 0.0166236702, -0.0155486623, -0.018742526, 0.0108357659, -0.00970622897, -0.00517250085, 0.006305933, 0.020908121, 0.00228828634, 0.0232139342, 0.0162497535, 0.0120042525, -0.00414033746, -0.00405075355, -0.0016728834, 0.00253561605, 0.0204718858, -0.0123080593, 0.003236708, 0.00420265691, 0.0402582586, -0.024538219, 0.000787267869, -0.00345093058, 0.00765748229, 0.0241019838, 0.0211262386, -0.0244603213, 0.0116459168, 0.00871691, 0.0212197173, -0.00578011386, 0.00706155412, 0.009776338, -0.0133908568, -0.0206276849, -0.0106955478, -0.00806255825, 0.0155097125, 0.0145359738, -0.00339445379, -0.0128221931, -0.0132038994, 0.0242110435, -0.00383458356, 0.00109545619, 0.00228828634, 0.000303806533, 0.0036787854, -0.0127832443, 0.0144113349, -0.0171845444, 0.0233385731, 0.0320632719, -0.0251769926, 0.0128377732, 0.0203472469, -0.00595538691, 0.0061929794, 0.00388911297, -0.0273270085, -0.00334381917, -0.0206276849, 0.0176986773, -0.00233113091, -0.000356875302, -0.00384237361, 0.00978412852, -0.000590572599, 0.0113499006, -0.00254730089, -0.0151513768, -0.00394559, -0.0155486623, 0.000647536363, -0.0111941025, 0.01659251, -0.0127910338, 0.009776338, 0.00959717, -0.00297574606, 0.00577621907, -0.00437793, 0.0179167949, -0.00958159, -0.0108591355, 0.0084442636, 0.0276697632, -0.0306922495, 0.00461552246, -0.0097919181, -0.0238838661, -0.0161095355, 0.00292121666, 0.0212508775, 0.00283163274, 0.011186312, 0.00604886608, -0.00408580853, -0.0161718559, -0.0201602895, 0.0129546216, -0.0217805915, 0.00404685875, 0.0109837744, -0.0016738571, 0.0206900034, 0.0240240861, 0.00224154699, -0.00624361355, -0.00570221478, 0.0105553297, 0.000472750224, -0.00206237892, -0.0212508775, 0.00514913118, 0.0167638883, 0.0292121656, 0.0211573988, -0.00251029874, -0.0148631502, -0.021593634, -0.00298548327, -0.00391248288, -0.0125339665, 0.004113073, -0.00752115902, 0.00395727484, -0.0145593435, -0.00803918857, -0.00667984877, 0.0116147576, -0.0200668108, 0.00804697815, -0.0223570447, -0.000643154548, 0.0191164408, -0.00476742536, 0.0140452096, 0.00103313697, 0.0147307217, -0.00535166869, 0.00838194415, 0.0194124579, 0.00495048845, -0.00018281948, 0.00257456559, 0.00877144, 0.018072594, -0.00216949, -0.00840531383, 0.00340808602, 0.0142944865, 0.0104151107, 0.018742526, 0.0243668407, 0.0334031396, 0.00827288534, -0.00200979714, -0.0108357659, -0.0175117198, 0.0255664885, 0.011256421, -0.0169508457, 0.0023622904, -0.000371481379, -0.0199889112, 0.0178544763, -0.0198486932, -0.0106254388, 0.00479469029, 0.0115835974, -0.0146839824, 0.0154785533, 0.0123937484, 0.0180414338, 0.00175467739, -0.00231165602, 0.0110538835, 0.0130481012, -0.00620466424, -0.0156187713, -0.00740820542, 0.0084286835, -0.006640899, -0.0164990313, 0.00884154905, -0.0293991249, -0.0256443862, -0.0158992074, -0.00102339953, -0.00209743343, 0.0147540914, 0.0118484544, 0.0140529992, 0.00236423803, -0.0102047836, -0.0118172951, -0.0153383343, 0.00358530646, -0.00533608906, 2.60779434e-05, -0.024958875, 0.00870133098, -0.0107033374, 0.0014800831, 0.00635267235, -0.00181504921, -0.000516568485, -0.0168106277, -0.0289784689, 0.00439740485, 0.00906745624, -0.0224037841, -0.00693691568, -0.0100334054, 0.0196773149, -0.0186957866, 0.0120509919, -0.00654742029, -0.0113109509, -0.00430003088, -0.0203472469, -0.0236813296, 0.00343729812, -0.0195370968, 0.0195370968, -0.00162711763, -0.0159381572, 0.0194747783, -0.0212508775, 0.00246550678, 0.00199129595, -0.00503617758, -0.00330681726, 0.0110149337, -0.00958159, -0.00434287544, 0.00250640395, -0.0164990313, 0.00596317695, 0.00810150709, 0.00807034783, -0.0191943403, -0.000999056, -0.00279657799, -0.00703039486, 0.00891944766, 0.0161562748, -0.0181816518, -0.00280826283, 0.00902071688, 0.0106488084, -0.00836636405, -0.00845205318, -0.0296639819, -0.0140296295, 0.0136479242, 0.0182283912, 0.00341782346, 0.0116069671, -0.0176519379, -0.0269998312, -0.00505175721, 0.0240864046, -0.0175896194, -0.0260338821, 0.00986202713, 0.00965949, -0.00385990087, 0.0131104197, -0.00421044696, 0.00893502776, -0.024958875, 0.0241954643, -0.0105786994, -0.000302345929, -0.0052348203, -0.0169820059, -0.0341198109, -0.00322307576, -0.0019494252, -0.00273425877, -0.00222986192, -0.0292121656, -0.0149877891, 0.00445972383, 0.015237066, -0.0226530619, 0.0717918202, 0.00797297433, 0.0215157345, -0.0316426195, -0.00113830075, -0.00402348908, -0.00351519743, 0.0473003387, 0.0195370968, 0.0133674871, -0.0234164726, -0.00899734721, -0.0122145806, -0.010796817, -0.00108474505, -0.0223414656, 0.0120977322, -0.0202070288, -0.0268596131, -0.0046661566, -0.00264662225, -0.00864680111, -0.00623192871, -0.0150501076, 0.00586580299, -0.0118250847, -0.00302832783, -0.004888169, -0.0156187713, 0.00729525182, 0.00453372812, 0.0259715635, 0.0145593435, -0.0174649805, -0.00626698323, 0.00285694981, 0.014091949, 0.0193812978, 0.00430392567, 0.0046817367, 0.00176149362, 0.00988539681, -0.0168417878, 0.00994771626, 0.014232167, 0.0108357659, -0.0165769309, -0.0156499315, -0.000282140827, -0.00627477327, -0.0122613199, -0.00729525182, -0.0103683714, -0.0208146423, -0.00104384811, 0.0204407256, 0.0261741, -0.019147601, -0.0123703787, 0.0274360664, 0.00245966436, 0.00856111199, 0.026252, -0.00763800787, -0.00477521541, -0.00854553189, -0.0328734256, -0.00841310341, -0.000641693943, 0.00317438878, -0.0198798534, -0.0129935713, -0.00173617643, 0.00739262532, 0.00647731079, 0.0120509919, -0.0224972628, 0.00845205318, 0.00653573545, -0.0224972628, -0.00866238121, 0.0119886734, -0.0332473405, -0.0173870809, 0.000875391241, -0.00246940181, -0.0229802374, -0.00383653119, -0.0266103353, 0.0228400193, 0.00531271938, 0.0313621834, 0.00165827735, -0.00149858417, -0.00590864755, 0.00965949, -0.0145203937, 0.020097971, 0.0136011848, 0.0153850745, 0.018882744, -0.00107890263, -0.00282189529, -0.0077626463, -0.0106020691, 0.0134687563, -0.00245966436, 0.00917651504, 0.00706934417, -0.0143957557, -0.0208146423, -0.00693691568, -0.00930894352, 0.0172936022, 0.013827092, -0.0130403107, -0.0131026302, -0.00818719622, 0.00530492933, -0.00193579285, 0.00824951567, 0.0208458025, -0.0185244083, 0.016187435, 0.00726019684, 0.00375863211, 0.014707352, 0.0159381572, 0.00459604757, -0.0185244083, 0.00395727484, -0.00289005693, 0.00665258383, 0.0112330513, 0.0081092976, 0.0383263603, 0.0106332283, 0.00424939627, 0.0100256158, 0.00605276087, -0.0104462709, -0.0112096816, 0.0117160259, 0.031019425, -7.05960701e-05, 0.00887270831, 0.00600212626, -0.00171280664, 0.0159848966, 0.0251458324, -0.00835857447, -0.00860785134, -0.00470510637, -0.00973738916, -0.015377284, -0.000883181172, -0.0225907415, -0.0193812978, 0.00335745164, -0.0181193333, -0.00325423526, 0.00464668171, 0.0203005075, 0.00906745624, -0.000360770238, -0.0173715018, 0.0351792388, 0.010656598, 0.00452204328, 0.0132895885, 0.00543735782, 0.024273362, 0.0239461865, 0.00407412322, 0.0167171489, 0.0205342062, -0.0154084442, -0.0175896194, 0.0265012775, -0.0153850745, 0.000705473823, -0.00276152347, 0.0138037223, 0.0420343578, -0.00996329635, -0.0186023079, 0.0330915414, 0.0197552145, 0.0219675489, -0.00777433114, -0.0162030142, 0.0245693792, -0.0149644194, -0.00579569396, -0.0228711795, -0.0155954016, 0.0303027537, -0.00389690301, -0.00600991631, -0.0132584283, -0.0105241695, 0.00778212119, 0.0106488084, -0.00604886608, -0.0117549757, 0.029009629, 0.0206121039, -0.00880259927, 0.010991564, -0.00919209514, 0.0131104197]
11 Jun, 2024
How to Sort an Array Having Optional Properties in TypeScript ? 11 Jun, 2024 Sorting an array with optional properties in TypeScript involves arranging its elements based on a primary property, with fallbacks to secondary properties or default sorting criteria if the primary property is absent. Below are the approaches used to sort an array having optional properties in TypeScript: Table of Content Using the Array.prototype.sortUsing Array.prototype.reduce and Array.prototype.spliceUsing custom sorting function with ternary operatorUsing Array.prototype.sort with Optional ChainingApproach 1: Using the Array.prototype.sortIn this approach, we are using Array.prototype.sort with a custom comparator function to sort arrays with optional properties. Prioritize sorting based on optional properties, then fall to other criteria such as numerical values Syntax: arr.sort(compareFunction);Example: Here, we are Sort arr by name property in ascending order, fallback to sorting by id. Handles cases where `name` is present or absent in MyObject interface. JavaScript interface MyObject { id: number; name?: string; } const arr: MyObject[] = [ { id: 3, name: "Rohit" }, { id: 1, name: "Amit" }, { id: 2, name: "Rahul" } ]; arr.sort((a, b) => { if (a.name && b.name) { return a.name.localeCompare(b.name); } else if (!a.name && b.name) { return -1; } else if (a.name && !b.name) { return 1; } else { return a.id - b.id; } }); console.log(arr); Output: [ { id: 1, name: 'Amit' }, { id: 2, name: 'Rahul' }, { id: 3, name: 'Rohit' } ]Approach 2: Using Array.prototype.reduce and Array.prototype.spliceIn this approach, Sort an array with optional properties using `Array.prototype.reduce` and `Array.prototype.splice`. Iterate through each element, insert it into the sorted array considering the presence and absence of optional properties. Returns the sorted array, ensuring proper handling of optional properties during sorting. Syntax: array.reduce( myFunction, initialValue ); array.splice( myFunction, initialValue )Example: Here, we are Sorting an array of arrays numerically using the first element. Uses `reduce` and `splice` to insert elements into the sorted array. Returns the sorted array. JavaScript type MyObject = number[]; const arr: MyObject[] = [ [3, 4, 5], [1, 2], [6, 7, 8] ]; // Sorting function using reduce and splice const result = arr.reduce((acc: MyObject[], curr: MyObject) => { const index = acc.findIndex((obj: MyObject) => { return curr.length && obj.length ? curr[0] < obj[0] : obj.length === 0; }); if (index !== -1) { acc.splice(index, 0, curr); } else { acc.push(curr); } return acc; }, []); console.log(result); Output: [ [ 1, 2 ], [ 3, 4, 5 ], [ 6, 7, 8 ] ]Approach 3: Using custom sorting function with ternary operatorThis approach involves defining a custom sorting function that compares elements based on their optional properties. The ternary operator is used to handle cases where properties are undefined, ensuring correct sorting by comparing values or falling back to another property for comparison. Example: In this example we sort an array of objects based on the presence of a 'name' property. It prioritizes names and sorts by 'id' if 'name' is absent. JavaScript interface MyObject { id: number; name?: string; } const array: MyObject[] = [ { id: 3, name: "Rohit" }, { id: 1 }, { id: 2, name: "Rahul" } ]; array.sort((a, b) => { if (a.name === undefined && b.name === undefined) return a.id - b.id; if (a.name === undefined) return 1; if (b.name === undefined) return -1; return a.name.localeCompare(b.name); }); console.log(array); Output: [ { id: 2, name: 'Rahul' }, { id: 3, name: 'Rohit' }, { id: 1 } ]Approach 4: Using Array.prototype.sort with Optional ChainingIn this approach, we sort an array of objects with optional properties using Array.prototype.sort and optional chaining, provide a comparator function. Use optional chaining to access optional properties safely within the comparator. Example: This TypeScript Example sorts an array of objects with optional properties by accessing them safely using ternary operators and the comparison function of the sort method. JavaScript interface MyObject { id: number; name?: string; } const arr: MyObject[] = [ { id: 3, name: "Nikunj" }, { id: 1 }, { id: 2, name: "Dhruv" } ]; arr.sort((a, b) => ((a.name ? a.name : a.id) as any) - ((b.name ? b.name : b.id) as any)); console.log(arr); Output: [{ "id": 3, "name": "Nikunj" }, { "id": 1 }, { "id": 2, "name": "Dhruv" }] Approach 5: Using Type AssertionsUsing type assertions to sort an array with optional properties involves asserting that the optional property exists and providing a default value if it doesn't. This ensures TypeScript treats the property as defined for comparison purposes. Example JavaScript interface Item { name?: string; value?: number; } const items: Item[] = [ { name: 'item1', value: 10 }, { name: 'item2' }, { value: 5 }, { name: 'item3', value: 15 }, ]; items.sort((a, b) => { return (a.value ?? 0) - (b.value ?? 0); }); console.log(items); Output: [ { name: 'item2' }, { value: 5 }, { name: 'item1', value: 10 }, { name: 'item3', value: 15 } ] 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.
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?
https://www.geeksforgeeks.org/how-to-sort-an-array-having-optional-properties-in-typescript?ref=asr10
PHP
How to Sort an Array Having Optional Properties in TypeScript ?
jQWidgets jqxSortable disabled Property, Node.js Stream transform.destroy() Method, jQWidgets jqxSwitchButton enable() Method, Convert string into date using JavaScript, jQWidgets jqxSplitter height Property, How to Declare Optional Properties in TypeScript ?, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxTree checkAll() Method, jQWidgets jqxScrollBar rtl Property, jQWidgets jqxScrollBar step Property, jQWidgets jqxTabs position Property, jQWidgets jqxTooltip height Property, How to Make a Single Property Optional in TypeScript ?, jQWidgets jqxTreeMap width Property, jQWidgets jqxTree collapseItem() Method, jQWidgets jqxTabs keyboardNavigation Property, jQWidgets jqxTree destroy() Method, jQWidgets jqxTree collapseAll() Method, jQWidgets jqxSortable opacity Property, jQWidgets jqxScrollView buttonsOffset Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, jQWidgets jqxTabs disabled Property, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Node.js date-and-time Date.transform() Method, jQWidgets jqxListBox enableHover Property, jQWidgets jqxSlider height Property, TypeScript Optional Parameters, jQWidgets jqxSwitchButton onLabel Property, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, jQWidgets jqxToolBar theme Property, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxSplitter orientation Property, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxSlider buttonsPosition Property, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, jQWidgets jqxSwitchButton orientation Property, jQWidgets jqxToolBar tools Property, jQWidgets jqxSlider rtl Property, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTooltip opacity Property, jQWidgets jqxTree width Property, jQWidgets jqxScrollBar showButtons Property, jQWidgets jqxScrollView showButtons Property, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, jQWidgets jqxTree clear() Method, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView disabled Property, jQWidgets jqxScrollView animationDuration Property, jQWidgets jqxToolBar height Property, PHP, How to Sort an Array Having Optional Properties in TypeScript ?, jQWidgets jqxSplitter destroy() Method, jQWidgets jqxTreeMap destroy Method
GeeksforGeeks
[0.0148651535, -0.00922092237, -0.0145482309, 0.0332919061, -0.00059092755, -0.0180947389, -0.00397284422, 0.0116582038, -0.0243879054, 0.00520657655, -0.00401057303, -0.000481514, 0.0106621627, -0.000287446397, -0.00445577316, -0.0247350112, -0.029111553, 0.02007173, -0.057136517, -0.0292624682, -0.0177023597, 0.0307565294, -0.0473270267, 0.0265610851, -0.0211130455, 0.00753821712, 0.0188795, 0.00768158678, -0.042226091, 0.0105565228, 0.000416667608, 0.00149783399, -0.00333145447, -0.0491380095, -0.00440295273, 0.00380683737, 0.0316318385, 0.0166459531, -0.01700815, 0.0116053838, -0.0179589167, -0.018109832, 0.00014089355, -0.00972648803, -0.0144274989, 0.0369742401, -0.0161177497, -0.0121411327, 0.0240408015, -0.00338238827, -0.00208451692, -0.00294284755, 0.0234371405, 0.00667045452, -0.00507452572, 0.0241615325, -0.006678, 0.00366158155, 0.00261272048, -0.00994531531, 0.045274578, -0.0759405568, -0.0197095331, -0.027768407, 0.0181249231, 0.00235993741, -0.0223052762, 0.015046251, -0.00208074413, 0.00391625101, -0.0522166789, 0.0264705364, 0.0117940279, 0.0261385236, -0.0124731464, 0.0012243, 0.0253839474, -0.00175156025, -0.0244331807, 0.0289002731, 0.0280853305, -0.0174608957, 0.00963593926, 0.0126693361, -0.00166289753, -0.0154084479, 0.00764008518, -0.0475383066, 0.0070100138, 0.0120883128, -0.00884363428, -0.0156348217, 0.032929711, 0.0212488677, 0.00674968492, 0.0189398658, 0.0172797982, -0.00433504069, -0.0219128951, 0.0275722183, 0.00545935938, 0.0134842787, 0.012171316, 0.00470101042, 0.0101264138, -0.0398114473, 0.0286437161, 0.0294133835, 0.0426486507, 0.00104980427, 0.0111601837, -0.000501793227, -0.00884363428, 0.0188945904, -0.0469950102, -0.00851916615, -0.033503186, -0.075518, -0.00733825471, 0.00612338679, -0.00216752035, 0.0349519737, -0.0232560411, 0.0399019942, -0.0462706201, 0.0323864147, 0.00710433582, -0.00471232878, -0.00570837, -0.00165912462, -0.00120354921, -0.0110620884, -0.0087153567, -0.0105263395, 0.0172948893, 0.0262592547, 0.0373364352, 0.00224486459, -0.0296699405, -0.00741371233, -0.039660532, -0.0247651935, 0.0172797982, 0.00811924133, 0.0162384827, 0.00289002713, -0.00404075626, 0.0788381323, -0.0220185369, -0.013356, -0.0472062938, -0.0476590395, 0.0470855609, 0.0100811394, 0.0120354919, 0.0166610442, -0.0257461425, 0.00444068154, -0.00951520726, 0.0198604483, 0.0136125563, -0.0337446518, -0.0226071067, 0.0140577564, 0.0109715397, 0.00694210175, 0.0124354176, 0.0159819257, -0.052971255, 0.023980435, 0.00425958307, -0.00876817666, 0.00774949882, 0.0256857779, -0.0392379686, -0.0317525715, 0.0100811394, 0.0249010175, 0.0481117852, -0.0400830917, -0.019090781, -0.0329598933, -0.000400161254, -0.0189096816, 0.00863989908, -0.00940956641, -0.00621016277, -0.00696096616, -0.00531976297, 0.00017461367, -0.0415016972, 0.0148651535, 0.0369742401, 0.0557782799, -0.00401057303, -0.00967366807, -0.0384230241, -0.0224712826, -0.0116355661, 0.0087153567, 0.0309376288, -0.0351330712, -0.0027277933, 0.0263196211, 0.0416224301, -0.0308470782, -0.00313715101, -0.0496209376, 0.0371553376, -0.0177778173, -0.0450029299, 0.0206452068, -0.0148123326, 0.0145029565, -0.000797964458, -0.0122995935, -0.00733448146, 0.0167365018, -0.0207055733, -0.00660631573, -0.0258366931, 0.0104961563, -0.0189398658, -0.0053424, -0.0264101699, -0.0178683661, 0.0340464823, 0.0385437571, 0.0286588073, 0.0237842444, 0.0320845842, -0.00915301, -0.0202981029, -0.0308621712, 0.0488965437, -0.0133182714, -0.0126240617, -0.0201320965, -0.0138464747, 0.068998456, 0.00310319499, 0.00897191186, -0.0259574242, -0.0252783056, -0.00555745466, -0.00968121365, -0.0192266032, 0.0493794717, 0.0342879482, 0.0456971414, 0.00976421777, -0.0201773699, -0.0146010518, -0.0292021036, -0.0428599343, 0.0296397563, -0.0158611946, -0.00720997667, -0.00612715958, -0.00500661368, 0.0223505497, 0.0115752006, 0.0220638104, 0.0257310513, 0.0421053581, -0.0107451668, 0.00967366807, -0.0330806263, -0.0335635543, -0.00468969159, 0.0398718119, -0.0230598524, 0.0240709838, 0.0058668307, -0.0170685165, -0.00882099662, -0.0255499538, -0.0108658988, 0.0195133425, 0.00283909333, -0.00648935605, -0.00640635286, 0.0498624034, 0.0284173433, -0.00648935605, -0.0367025919, 0.0185022112, 0.0209470373, -0.0558386445, -0.00632712245, -0.0469950102, -0.0148198782, 0.00727788825, 0.00415771548, 0.0284777097, -0.00785514, 0.00226372899, -0.0121486783, 0.00560272904, 0.00385399838, -0.00666290894, -0.0357669182, 0.015355628, -0.0163592137, -0.0590380505, 0.0257461425, 0.0194378849, -0.0386946723, -0.0511300899, -0.00224863738, 0.0198000818, 0.00790041406, -0.0310885441, -0.0296246652, -0.0389965028, 0.0224109162, 0.0583438389, 0.0337446518, -0.0261385236, 0.012722156, -0.0114620142, -0.0164346714, -0.0289153643, -0.0162384827, 0.0241917167, -0.0233918652, -0.0191360544, 0.0272552967, 0.00846634619, -0.0456065908, -0.0403547399, -0.00879836, -0.0536654666, 0.0180343743, 0.0446407348, 0.0179589167, -0.0136427395, 0.00502547808, -0.0550237037, 0.00515752891, -0.00078523095, 0.00253537646, 0.00812678691, 0.0292775612, 0.0569554195, -0.0337144695, 0.0187285841, -0.0079985084, 0.0485645309, -0.00830788538, 0.00148651528, -0.0169326924, 0.0334126391, 0.00889645424, 0.0624789186, -0.0380004607, 0.000273062295, -0.00765517633, 0.0231654923, -0.0097944, 0.00867762789, -0.0245539136, -0.059219148, 0.0532127209, 0.018230563, -0.00801360048, -0.00562913902, 0.0164497625, -0.0273609366, 0.000955953845, -0.0201924611, -0.00548199704, 0.00842107181, -0.005565, -0.0642899, -0.0301226862, 0.00609320356, -0.0102018714, 0.0129711665, 0.0128504345, -0.0146085974, 0.0278438646, 0.0128428889, 0.0071307458, -0.0305754319, -0.0204942916, 0.00851916615, -0.00393134262, -0.0144124078, 0.011741207, 0.006119614, 0.0547218733, 0.00861726142, 0.000104284802, -0.0103527866, 0.00747030554, -0.00714206463, 0.03866449, -0.00251651206, -0.0150688887, -0.00366158155, -0.0054329494, 0.0202528276, -0.00572346104, 0.00411998667, -0.00224297796, -0.0252481233, -0.0063233492, 0.0549331531, 0.0157102793, -0.0113412822, 0.0306357983, -0.0236635134, 0.0233314987, 0.0244029984, 0.0218676217, 0.0206150245, 0.0442181714, -0.00746653229, -0.0205848422, 0.00993777, 0.0131069906, -0.0247350112, -0.000703642378, -0.00310696801, 0.00502170529, -0.00602151873, -0.00861726142, 0.0130164409, -0.00513111893, -0.0229843948, 0.00921337679, 0.0158008281, -0.0193926115, -0.0187889505, -0.0257159602, 0.0128127057, -0.0193473361, -0.00342577649, -0.00793059729, 0.00636862405, 0.0346803255, -0.0229693018, 0.000532919483, -0.0320845842, -0.0168421436, -0.0524581447, 0.024221899, -0.00149877719, 0.0192869697, 0.0102169635, -0.0138691124, -0.0435541421, 0.019090781, 0.0366120413, -0.0212941431, 0.0246142782, -0.0103376955, 0.00629316643, 0.006678, 0.0160875674, -0.0012007195, 0.00657235971, 0.000631486066, 0.00432372233, 0.00962839369, -0.00657613249, 9.18460864e-05, -0.00432372233, 0.0173401628, 0.0165554043, -0.0274363942, 0.0315111056, 0.0159366522, 0.026712, -0.000258206564, -0.018472027, 0.0239653438, 0.00144124078, -0.0201622788, 0.0152650783, 0.0208263062, 0.00615356956, 0.027044015, -0.0115299262, -0.0063233492, 0.0249462929, 0.0120807663, 0.00876063108, 0.0187285841, 0.00956048165, -0.000582438603, -0.0176570863, -0.0178985503, -0.0106772548, -0.00735711912, -0.0297906715, -0.0599435419, -0.00495002046, 0.0422562733, 0.0248255599, -0.0162082985, -0.0320845842, 0.00647426443, -0.0110319052, -0.0253084898, -0.0337748341, 0.0339559317, 0.000399925426, -0.0386343077, -0.00105735008, 0.00800605491, 0.0360083804, 0.0291417371, 0.0136502851, -0.0075042611, -0.00150349329, -0.00784004759, -0.00104414497, 0.00887381751, 0.013220177, -0.00806642, 0.00289380015, 0.0239502508, -0.0290964618, 0.00302585098, 0.00777968159, -0.0461498871, -0.0188191328, -0.00338427466, -0.0425882861, 0.00504811527, -0.00160819071, -0.00111582968, 0.000564045797, -0.0140577564, -0.00605547475, 0.0159517433, -0.00433881395, 0.0079985084, -0.0257612355, 0.0372760706, -0.0455462262, 0.00965857692, -0.031933669, 0.0538465641, 0.0293228347, 0.00310319499, 0.00719111226, 0.0335937366, -0.00131767883, 0.0327486098, -0.0439163409, -0.00911528151, -0.0347105116, -0.00129881443, -0.0466629975, -0.00225241017, -0.00755708152, -0.0356763676, 0.00400680024, 0.00822488125, 0.0491681919, -0.00993777, 0.0185625777, -0.0217468888, 0.00296548475, 0.0584947541, -0.00579514587, 0.00768158678, 0.0075231255, -0.0291870106, -0.00783250201, 0.0147217838, 0.000917753438, 0.0379702784, 0.00274288491, -0.0361894779, 0.0254895873, -0.0163139403, -0.0225316491, 0.0057460987, 0.014133214, -0.0109187188, -0.0224561915, -0.0142992204, -0.0174759869, -0.0335937366, -0.0161630251, -0.0125184208, 0.00718356622, 0.0218374375, -0.00806642, 0.0217619799, -0.00616488839, 0.0265912693, 0.0136880139, -0.00219581695, -0.00366724073, -2.67786163e-05, 0.0169477835, 0.0108658988, -0.0294888411, 0.00581401028, -0.00967366807, -0.0105414307, -0.00744012231, -0.0046670544, -0.017747635, 0.0126542449, -0.0751558, 0.00577628147, 0.0015591433, -0.0116355661, 0.00543672219, 0.00711942744, -0.00548199704, -0.00376533577, -0.0260027, -0.0128504345, 0.0151820751, -0.0063233492, 0.0151745295, 0.00629316643, 0.025202848, 0.0292171948, -0.00792305078, -0.0304396078, 0.00634975964, -0.0234371405, -0.026802551, -0.0367025919, -0.0222147256, -0.0171892475, 0.0236936957, 0.0106848, 0.0160422921, 0.0127070649, -0.0199057236, -0.00173646875, 0.00594228832, 0.0175665356, 0.0295642987, 0.101173587, -0.00953029841, 0.0389965028, -0.0420449898, 0.0399321765, 0.0135748275, -0.00288814073, 0.00197510351, -0.0307414383, 0.0567743219, 0.0191813298, 0.00212979154, -0.0213696, -0.0120053086, -0.021158319, -0.00974912569, 0.0253386721, -0.0225618314, -0.0348312408, 0.0558386445, 0.0603359193, -0.00845125411, 0.0193624273, 0.00414262386, 0.00440672552, 0.0157404616, -0.00891154632, -0.0146463262, -0.0295642987, -0.0148651535, 0.0223354585, -0.00361819332, -0.0513413697, -0.0152499871, 0.0307565294, 0.0328089781, -0.0046444172, -0.0272552967, -0.0128353424, 0.0090398239, 0.0112884613, -0.0186078511, -0.00708547141, -0.01848712, 0.00263535767, 0.00447086478, 0.00837579649, -0.011258278, 0.00246180524, 0.0392983332, 0.0143595869, 0.0171137899, -0.0225165561, 0.0309979953, 0.000652708521, -0.00420299, -0.0426788367, 0.019090781, -0.0205999333, -0.0211432278, 0.0301981438, -0.0117940279, 0.0446407348, 0.00276363571, 0.0291719195, 0.00169968314, -0.00105735008, 0.0113865566, 0.0368836895, -0.00396529865, -0.0026976103, 0.0112733701, 0.0281758793, -0.0203282852, 0.00836070534, -0.024478456, -0.0102320546, -0.0213696, -0.0134012755, 0.0192869697, -0.0281456951, -0.0187285841, -0.0104282442, -0.0112130037, 0.0213092342, 0.00253726286, -0.00675723096, 0.0103452411, -0.000802208902, 0.0255046785, -0.000688550877, -0.0114393765, -0.00893418305, 0.0212488677, 0.00222222717, -0.013340909, -0.0178834591, 0.0269987397, -0.00289757294, 0.00449350197, 0.00390115939, -0.0158310104, 0.0230598524, 0.00823997334, -0.0145784141, 0.0150387054, 0.0193020608, 0.00325411023, -0.0297604892, 0.0204792, -0.00453877635, 0.0101716882, -0.0242369901, -0.0225618314, 0.0128051601, -0.0126089696, 0.00729298, 0.00497265765, 0.0174458046, -0.0107527124, 0.0203433763, -0.0226674713, -0.0223656408, -0.0331711732, 0.0131673561, 0.00492738327, -0.0247651935, 0.0140200276, 0.00326165603, 0.026545994, -0.0220034458, -0.0379702784, 0.00601020036, -0.0118770311, -0.0273156613, -0.0022731612, 0.0228032954, 0.0154839056, 0.0157555528, -0.00569327828, -0.0226825643, 0.0268780086, -0.00976421777, 0.0131145362, -0.0217016134, 0.0435541421, 0.0236031469, 0.00263913069, 0.00672327494, -0.024961384, 0.0295492075, 0.00323335943, -0.016268665, -0.0231805835, -0.023738971, -0.0121034039, -0.00922092237, -0.0200566389, -0.0133031802, 0.0170534234, 0.032899525, 0.00427467469, -0.0181249231, -0.0181701966, 0.0027051561, 0.0164346714, 0.00342011708, -0.0157555528, 0.0209470373, -0.0051801661, 0.0207810309, -0.00442181714, -0.016510129, 0.00529712578, 0.0192718785, 0.0148877902, 0.0143671324, 0.0238747932, -0.0170685165, 0.0257461425, -0.0285833497, -0.0511602722, 0.00642899, 0.0335635543, -0.0129560754, 0.0180947389, 0.0123675056, -0.000432230736, -0.025202848, -0.0387550369, 0.029111553, -0.0155593632, 0.00195246621, -0.00548199704, 0.0179740079, 0.00558386464, 0.0194529761, 0.0349519737, -0.00173269585, -0.0124203255, -0.0107376203, 0.00533862738, -0.00197321712, -0.0107149836, 0.0306056142, 0.0275420342, 0.00980194658, 0.048926726, 0.00559141, -0.00633844081, 0.0337748341, 0.0207357574, 0.0276929494, -0.0310885441, -0.0194831602, -0.00445954595, -0.0191662386, 0.0221090857, 0.00405207463, -0.000792305102, 0.0051009357, 0.00798341725, -0.0155140888, -0.0177174509, -0.0250670239, -0.0373666175, -0.0015600865, -0.0185323935, 0.0125184208, -0.00507452572, 0.0147821493, -0.0311187264, 0.00513111893, -0.0579816438, 0.0260027, 0.00596492551, 0.00795323402, 0.0252179392, -0.0102471458, -0.0103376955, -0.0209017638, 0.0373968, -0.00607811194, -0.00527826138, 0.000201495452, -0.00495002046, -0.0269383732, 0.030454699, -0.00684023416, -0.0186380353, -0.0385437571, 0.0180192813, 0.0238295197, 0.0219581705, -0.00595360715, 0.0134239122, -0.0293077435, 0.00579891866, 0.00490474608, -0.00853425823, -0.0015544272, 0.0228938442, 0.00145538908, 0.00252971705, 0.0180947389, -0.00126297213, 0.0317223892, 0.0112809157, 0.0136880139, -0.0156800952, -0.0517035685, -0.0217921641, -0.0270892885, -0.017506171, 0.00965857692, -0.0123297768, -0.0098774042, 0.008624807, 0.0102546923, -0.0123976888, -0.00448218314, 0.0200415459, 0.0153858103, -0.0501642339, -0.00823997334, -0.00123656192, -0.0109564476, 0.0123750512, 0.0196189843, -0.00453877635, -0.00168270513, 0.000825789466, 0.0121939527, 0.0126693361, 0.00542917661, -0.0417733453, -0.0424071886, 0.0171892475, 0.0246897358, 0.00598379, -0.00073759834, -0.0295944829, -0.00269006449, -0.00830788538, -0.0234522317, -0.00747030554, 0.0203282852, -0.00363517134, 0.0300170444, 0.0157706439, -0.0262592547, 0.00348048308, -0.00827015657, -0.0277231336, 0.0247953776, -0.00562159345, 0.00312394579, -0.0196793508, -0.00299189496, 0.00487079, -0.00770045118, -0.0115223797, -6.99162119e-05, -0.0110847261, 0.000704585633, -0.00264290348, -0.0224109162, 0.00951520726, 0.0167365018, 0.0221845433, 0.00479533244, -0.0235880557, -0.00624789158, 0.0296397563, -0.0287644491, -0.00169496704, -0.00990004092, -0.0123675056, -0.0217167065, -0.00878326781, -0.0128051601, 0.0273911189, -0.0283117034, 0.0169930588, -0.016268665, -0.0294737499, 0.0274213031, 0.0166006777, -0.00169779663, 0.0145105021, 0.00605924753, -0.00798341725, -0.0103678787, 0.00185531448, 0.0162535738, 0.00510470849, -0.0270138308, -0.0315111056, -0.028024964, 0.0111979125, 0.0300472286, 0.0323260501, 0.0226825643, 0.0287795402, -0.0169779658, -0.00454632239, -0.014993431, -0.0183060206, -0.0214903336, -0.0368836895, -0.011809119, 0.0136880139, 0.0203433763, -0.0101415059, 0.01859276, 0.0475383066, -0.00896436628, -0.0117562991, -0.0265912693, 0.0145859597, -0.00384645257, 0.0101415059, 0.0120053086, 0.0234069563, 0.00454632239, -0.0188795, -0.0298057646, -0.0249462929, -0.0143369492, 0.0105867051, -0.0082927933, 0.0202981029, 0.0118921222, -0.00882099662, -0.0625996515, 0.00716092903, -0.0114091933, 0.0444596373, 0.00065035047, 0.0338955671, -0.000805510208, -0.0185022112, -0.00788532197, 0.00308244419, -0.0160121098, 0.00233541359, 0.0194077026, -9.52652554e-05, 0.00175910594, 0.00847389176, -0.0248104688, 0.0126542449, -0.0114167398, -0.00910019, -0.0201924611, 0.0237087868, 0.0198604483, -0.0101792347, -0.0212790519, 0.00731561705, -0.0158008281, -0.0152801704, 0.0111979125, -0.00250330684, -0.0110545428, 0.00536503736, -0.00973403454, 0.0233616829, 0.00502170529, -0.0180796478, -0.00258631026, 0.011809119, 0.0199057236, 0.0177023597, 0.000539522036, 0.00234673219, -0.00808151253, 0.0119751254, -0.013220177, 0.0291568283, 0.0112130037, -0.0242973566, -0.0268931, 0.0205697492, -0.00847389176, -0.0138691124, -0.0218525305, -0.00328617985, 0.00786268525, -0.0198604483, 0.00704019703, -0.00930392556, 0.00346916448, 0.0194680691, 0.0747936, 0.0108206244, 0.00353707629, -0.0286588073, -0.0173401628, -0.00704397, 0.0159517433, 0.00234673219, 0.0221845433, -0.0257310513, 0.0358574651, 0.00437654275, 0.00576496311, 0.0156499129, -0.0376986302, 0.0211281367, 0.00737975631, -0.0119373966, 0.0225014649, -0.0551142544, 0.011567655, -0.00457650516, -0.00156291621, 0.00148840179, 0.00912282709, 0.0143897701, -0.0178230926, -0.0264252629, -0.0143520413, -0.00652331207, 0.0161177497, 0.00888136309, 0.0343181305, -0.00192228309, 0.0277382247, 0.0258517843, 0.0167968683, 0.014186034, -0.0171137899, 0.0345897786, -0.0051801661, -0.0295039341, -0.0135899195, 0.00559518347, -0.0089568207, -0.00134503224, -0.00343332207, 0.00627430202, -0.0262290724, 0.00340313907, -0.0174156204, 0.00262592547, -0.020811215, -0.00508584408, -0.0231654923, 0.0145935053, -0.00114506949, -0.0130390786, 0.00264101708, -0.0125863329, -0.00757971872, 0.0141256684, 0.0145859597, -0.0338653848, 0.0102396, -0.015906468, -0.0197397154, -0.0150613431, 0.0100660482, 0.000654123316, -0.0114091933, 0.0225014649, 0.0255348627, 0.00858707819, -0.0102245091, 0.0130088953, -0.0210677702, -0.0106244339, 0.000636673765, -0.0290360954, -0.0185474847, 0.023723878, -0.00353519, 0.0112809157, -0.0183362048, 0.000865876325, -0.0182909295, 0.0099075865, 0.0035050069, 0.00390115939, -0.000285559974, 0.00351632549, -0.0107225291, -0.00444068154, -0.00207319832, 0.00309753581, 0.0297001228, 0.0343483128, 0.00884363428, -0.0117713902, -0.00353896292, 0.0099981362, 0.00124127802, 0.0180041902, 0.00219770358, -0.00616866117, 0.00441427156, -0.00214488315, 0.00170628564, 0.0231654923, 0.0361894779, 0.00897191186, 0.0177325439, 0.00325222383, 0.00514998334, 0.000607905502, 0.00497265765, 0.0129183466, -0.0124882376, -0.00770799676, -0.0408980362, 0.015114163, 0.0199208148, -0.00353519, -0.00306169339, -0.0168119594, -0.0114242854, 0.0287040826, 0.02313531, -0.00353707629, -9.89791879e-05, 0.0144803189, 0.0144425901, 0.0163139403, -0.0148651535, 0.0034653917, -0.0139672076, 0.0261385236, -0.011069634, 0.00105640676, 0.0213545095, 0.0165252201, -0.0245388206, -0.0153782647, 0.0186984, -0.020811215, 0.0153631736, -0.0255197696, 0.0137936547, 0.014925519, -0.0187134929, -0.00596492551, -0.0058668307, -0.00636107801, -0.00889645424, -0.0218374375, 0.0119223054, 0.006119614, 0.0163893979, 0.00634975964, 0.00300510018, 0.00174401444, 0.025700869, -0.0175665356, -0.00413507828, -0.00516507495, -0.00670441054, 0.00149972038, 0.00516507495, 0.0223052762, -0.00882099662, -0.0473270267, 0.00919073913, -0.0133484546, 0.0265912693, -0.00130636024, 0.0290511884, -0.0107979868, 0.0345897786, -0.0182607472, -0.0128881633, 0.0101792347, -0.0053914478, 0.0222750921, -0.00888136309, -0.0234673228, -0.0188644081, -0.0205848422, 0.00422185427, 0.000681476726, -0.00343709509, 0.00499529531, -0.00405584741, 0.0166459531, 0.0108206244, 0.0192869697, -0.00817206129, 0.00539899338, -0.0124882376, 0.0300170444, -0.0124052344, -0.000691380526, 0.0263799876, 0.0343181305, 0.00778722763, 0.013031533, -0.0372760706, -0.0153707191, 0.0157404616, -0.00102905347, -0.00490474608, -0.0367327742, -0.00488965446, -0.0527901575, 0.00865499, 0.00367855956, 0.00338804768, -0.0220185369, 0.0106395259, -0.0121034039, 0.00774949882, 0.0114016477, -0.00187700859, 0.0156951863, -0.0209923126, -0.00811169483, 0.00108847627, 0.00338238827, -0.0130768074, -0.0039992542, -0.0182607472, 0.0106319804, 0.0278136823, 0.00358235091, -0.00680250535, 0.00910773594, -0.00447086478, -0.0292171948, 0.00336729665, 0.00402189186, 0.00892663747, 0.0118845766, -0.0159366522, 0.0121109495, 0.0126995193, -2.82966121e-05, -0.00312394579, -0.000473260821, -0.0337144695, 0.00239955261, -0.0237842444, -0.0287342649, 0.00714583742, -0.00599888153, 0.00735711912, 0.00854934938, 0.0221845433, -0.0287644491, -0.0271798391, -0.0320845842, 0.00569327828, 0.0158762857, -0.00944729522, 0.0405962057, -0.0150160687, 0.00820979, -0.00483306125, -0.0230900347, -0.0106244339, 0.00642899, -0.00209017633, 0.0262290724, 0.00545181381, 0.0171590652, 0.00523675932, 0.00852671172, 0.0239955261, -0.0195133425, -0.018834224, -0.0106017971, -0.0143294036, 0.011137546, 0.00503679691, 0.00612338679, 0.000468780519, 0.015544272, -0.00612715958, 0.0121411327, -0.0148198782, -0.0426788367, 0.00479155965, 0.00343143567, -0.0163743049, -8.68941788e-05, 0.0249462929, 0.0179438237, 0.0111450916, -0.00602151873, -0.0091605559, -0.0148198782, 0.0026674273, 0.00739862071, -0.0259876084, -0.00419921707, 0.00327108824, 0.0129409833, 0.00531599, -0.0313903727, 0.0216714311, 0.0257159602, 0.00421808148, -0.0192869697, -0.00511225453, 0.0113110989, -0.0263799876, 0.00125448313, 0.00686287135, -0.0186984, -0.00724393269, -0.0450331122, -0.0188945904, -0.00451991195, 0.0202226453, 0.0164195802, -0.00702133263, -0.0121109495, -0.022395825, -0.0167214107, -0.0146463262, -0.00338993408, -0.00909264479, -0.00813433249, 0.0139219323, 0.0225014649, 0.00128938223, 0.00203735591, -0.0124052344, -0.0246897358, 0.010209417, 0.0127523392, -0.0201019123, 0.044912383, -0.00931147113, -0.0227731131, 0.00149500428, -0.0135748275, -0.0172345228, 0.011929851, 0.0152801704, 0.0354047194, -0.0302434172, -0.0257914178, 0.00557631906, -0.00490851887, 0.0268780086, 0.000838522916, 0.0165855866, -0.00030654663, -0.0131598106, 0.0034729375, 0.00590455951, 0.0106470715, 0.000102457314, -0.0220939945, 0.00969630573, -0.00225995597, 0.00104131526, -0.0132277226, 0.0147066917, 0.0286588073, 0.000778628397, -0.00530467136, 0.0158310104, -0.0124429632, -0.00872290228, 0.017747635, 0.0230900347, -0.028372068, 0.00536503736, -0.0173703469, -0.0365516767, -0.000845597067, -0.0102320546, -0.00915301, -0.0101943258, 0.00225995597, -0.0038973866, 0.0413809642, 0.0115827462, -0.000430580112, 0.00897191186, 0.0179740079, 0.00848898292, 0.0266516358, 0.00228447979, 0.0310281776, -0.0204641093, 0.00779477321, -0.00393134262, 0.00704019703, 0.000921054685, 0.0134918243, 0.0193624273, 0.00149877719, -0.0167214107, 0.00783250201, 0.00178645935, -0.0488361791, 0.0105112474, -0.006678, 0.0262441635, 0.0091605559, -0.0245539136, 0.0259272419, -0.0253386721, 0.032929711, -0.0192869697, 0.0684551597, 0.00447841035, -0.000689494074, -0.00296359835, -0.00143275177, 0.00370685617, -0.0079683261, 0.0317525715, -0.00597247155, -0.00808151253, 0.00719488505, -0.000431994937, -0.0106319804, 0.010398061, 0.00147991278, 0.0136125563, -0.0224410985, -0.00170062634, -0.0100056818, -0.00823997334, -0.00329561206, 0.0115752006, 0.00750048831, 0.010035865, 0.0155744553, -0.0093492, 0.0172043387, 0.00360687473, -0.0207055733, 0.0206904821, 0.0142916748, -0.00576496311, 0.0105942516, 0.0140577564, 0.00653840369, -0.00953029841, 0.00351821189, 0.000830505567, 0.0110998172, -0.00185814418, -0.00899454951, 0.0174005292, -0.0142086716, -0.0214450583, -0.0348614268, -0.000450151914, -0.0167365018, 0.00413130503, -0.0314809233, 0.00687796297, 0.0200566389, -0.00831543095, 0.0262139812, -0.00539899338, -0.0325675122, 0.0192567874, -0.00993022416, -0.00593851553, 0.0187587664, -0.00783250201, -0.000114542323, 0.00311451359, -0.00449350197, 0.000332249387, 0.0192567874, -0.0123750512, 0.0136578307, -0.00122901611, 0.0374269858, -0.00997549854, 0.00956802722, 0.00631957641, 0.00602906477, 0.0313300081, -0.00103471277, -0.0116506582, 0.00625543762, 0.0184569359, 0.00627052924, -0.0168572348, 0.0244482718, -0.0111828204, -0.00415771548, -0.00185248477, 0.0193473361, 0.0100585017, 0.00863235258, 0.0182154719, 0.0191511456, 0.0101943258, 0.000228377234, -0.010948902, 0.00594606111, 0.0337748341, -0.0104886107, 0.00931901764, 0.0246746447, 0.00828524772, -0.0146765094, 0.00183267717, 0.012292048, 0.0139973899, 0.0201019123, 0.00487079, -0.00994531531, 0.00543672219, -0.0212639607, 0.00980949216, 0.0192718785, 0.010760258, 0.0217167065, 0.0197548084, -0.0119524887, -0.0241313502, 0.0100735938, -0.0103452411, -0.027044015, -0.0219581705, -0.0215959735, 0.0154537223, 0.00900964066, 0.00814187806, 0.0364007615, 0.00368987815, 0.016027201, -0.0255801361, 0.00106395257, -0.0211432278, 0.00123373221, 0.0210074037, -0.0212488677, -0.00734580029, 0.0047274204, 0.00435013231, -0.0219732616, 0.00202037813, 0.0129108, 0.000371157221, 0.00329372543, -0.0166459531, 0.0145784141, 0.0173703469, 0.0210979525, 0.00481042406, -0.00436145114, 0.0157102793, -0.00545181381, -0.00131296273, 0.00536503736, -0.0119072143, 0.00894173, 0.0159668345, -0.00917564798, -0.000424213358, -0.0170836076, -0.00118374161, 0.0199660882, 0.00416526105, 0.0189247727, -0.00160536112, 0.0096661225, 0.00802114606, -0.00759481033, 0.00109130598, -0.00441804435, 0.0116053838, -0.0124505088, 0.0192416962, -0.00456895959, 0.000988495, 0.0157555528, 0.00578005426, 0.0153782647, -0.00709301699, 0.00455764076, -0.00647049164, -0.015665004, -0.0089190919, -0.0129032545, -0.0190002304, 0.00597247155, -0.010277329, -0.000996984, 0.00372572057, -0.0144652277, 0.0172647052, -0.0108583532, -0.014012482, -0.0390266851, -0.0189096816, -0.00658367807, -0.0326580629, 0.00213545095, -0.00852671172, -0.0274665765, -0.00866253581, -0.00144312717, 0.00878326781, 0.00308621698, 0.014374679, -0.0043539051, 0.0201019123, -0.00846634619, -0.0111149093, -0.00536881, 0.00833806768, -0.00176665175, -0.00550086144, 0.0150613431, -0.0011271484, -0.0246595535, -0.00705151539, 0.00323335943, 0.00102811016, 0.00981703773, 0.00876063108, -0.00573100708, -0.0103301499, -0.00974912569, -4.00868666e-05, -0.0114016477, -0.0180796478, -0.0122995935, -0.0051801661, 0.00678364094, 0.00255046785, -0.0168874171, 0.00694587501, -0.00997549854, -0.00350689329, 0.00422185427, -0.0111677293, 0.0182758383, 0.0134918243, 0.00813433249, 0.00985476654, -0.0179740079, 0.00563668506, -0.00544426776, -0.00310508139, 0.0032277, 0.00291643734, -0.0130692618, -0.00794568844, -0.00853425823, -0.0103754243, 0.00608188519, 0.0232862253, -0.0277080424, 0.0126316072, 0.0117034782, -0.0286135338, 0.00230523059, 0.0134993698, -0.034982156, -0.0322656818, 0.0144576821, -0.0073005259, 0.0236484203, 0.0194378849, -0.00621770881, -0.00404452905, 0.0218676217, -0.0357669182, 0.00348614249, 0.0193020608, 0.0090398239, -0.0050405697, -0.016147932, 0.0202377364, -0.0178532749, -0.0169628747, 0.0136502851, -0.00935674645, 0.0107979868, 0.00436899671, -0.0170383323, -0.0200113636, -0.013340909, -0.0175363533, 0.00181286957, 0.0120053086, 0.015114163, 0.0228032954, 0.0165855866, 0.00561782066, -0.00791550521, -0.00291832373, 0.00808151253, 0.0050179325, 0.00465573557, -0.0166157708, 0.000497077126, 0.00797587167, 0.00121015171, -0.000461706368, 0.00378420018, 0.00138842035, -0.00472364761, -0.0184267536, 0.0234220475, 0.0248255599, 0.0275420342, -0.0177627262, -0.0146916006, -0.00204112893, -0.013703106, -0.01859276, 0.0169477835, 0.0171439741, -0.0267270934, 0.0090398239, -0.0106546171, -0.0143973157, 0.0248708352, 0.0145859597, -0.00162799831, -1.43398975e-05, -0.0152273495, 0.0155895464, -0.0138012, 0.0150839798, 0.0043312679, -0.000522072485, 0.0167214107, -0.00973403454, -0.00670063775, -0.00714206463, 0.00794568844, 0.0185173023, -0.0140879396, -0.00722506829, 0.0316016562, 0.00367478654, -0.0127070649, 0.0193775184, -0.00339370687, 0.0113412822, -0.00876063108, 0.000753633096, 0.0102018714, -0.0027768407, -0.0118166646, -0.0143218581, -0.0105414307, -0.0251726657, -0.0107376203, 0.00148745847, -0.0151820751, -0.00305226119, 0.0079985084, -0.00106866867, 0.00288436795, 0.000604604254, -0.0123524144, 0.0152650783, -0.0027768407, -0.00424449146, 0.0180645566, 0.0122694103, 0.0144425901, 0.0175212622, -0.0195284355, 0.0146689629, -0.000484343676, 0.00597247155, 0.0100811394, 0.00368799176, -0.0273458455, -0.00905491598, 0.0108357156, 0.0149406111, 0.0042935391, -0.0146614173, 0.00443690876, 0.00115450169, -0.00121486781, 0.0178834591, 0.00993777, 0.0075231255, 0.0113488277, 0.00161762291, 0.00551595259, 0.00258631026, 0.00721374946, -0.00327108824, -0.00746653229, -0.011741207, -0.00714583742, 0.0232107677, 0.0142614916, -0.00325788325, -0.000775798748, 0.00600265432, -0.00534617295, -0.0144878654, -0.0127598848, 0.00112054578, -0.00983967539, -0.00998304412, 0.00406716624, 0.0230598524, -0.0102622379, -0.00167515944, -0.00910773594, -0.000739013136, 0.00681759696, 0.0245991871, -0.0266214516, -0.00471610203, -0.00672704773, -0.011567655, 0.00432749512, -0.00950766169, -0.0197397154, 0.0027070425, -0.0330806263, -0.023120217, -0.000791833503, -0.0039200238, 0.00675723096, 0.0164346714, 0.00124976703, 0.0108734444, 0.00749294274, 0.0173401628, -0.0332315415, 0.0160121098, -0.0149481567, -0.0234371405, -0.00802114606, 0.0165704954, -0.00809660368, 0.0350727066, 0.0155593632, -0.0138540212, -0.0125184208, 0.00141954666, 0.0115978373, -0.014736875, -0.0221694522, 0.000134055197, -0.0153933568, -0.00132711104, 0.00295793917, 0.00264856289, 0.00385211199, -0.00144218397, -0.00623657322, 0.00213733735, -0.00865499, -0.0172043387, 0.00536881, 0.0110394517, -0.0141030308, -0.00424071867, -0.00608565798, -0.00671195611, -0.000322109758, -0.00582155632, -0.00598379, -0.0169025082, 0.00254669506, -0.00149123138, 0.0109036276, -0.00457273237, 0.0023033442, -0.000309847906, -0.0127598848, 0.00548199704, -0.00784759317, 0.0162535738, -0.0124052344, 0.00998304412, 0.00931901764, 0.00259574247, 0.0145557765, 0.0143294036, 0.00577628147, 0.00291832373, 0.0279193223, -0.00654217647, 0.00294096116, 0.000432230736, 0.00181569927, -0.00340502546, 0.00368610513, -0.0145406853, 0.0206904821, 0.0121109495, 0.0106621627, -0.0176721774, 0.025942333, -0.0134163667, 0.0285229832, 0.0238597021, -0.00575741706, -0.0149028823, 0.00137615856, 0.00116865, -0.0189549569, -0.00943220407, -0.000509339, 0.00476514921, 0.00642144447, -0.0174005292, -0.00258253748, 0.0176118109, 0.0163441226, 0.0164346714, 0.00836825091, 0.0357065499, -0.00129032542, 0.0156348217, 0.000745615689, 0.00854180381, -0.00319751701, -0.0202981029, 0.014616143, 0.00273911189, 0.00133748644, 0.00206376612, -0.00666290894, -0.00204678811, -0.00690437295, -0.00620261719, 0.000151622677, -0.00856444053, -0.00106961187, 0.00232032221, -0.00972648803, -0.0150236143, 0.0126089696, 0.0122467736, -0.000752689841, 0.00893418305, -0.013031533, -0.00811169483, -0.00657235971, 0.0154688144, 0.0266818181, 0.0161932074, 0.00642521726, 0.00550463423, 0.0225165561, 0.0118845766, -0.00109885179, 0.00657613249, -0.0106395259, 0.0155895464, 0.00368987815, -0.0145331398, -0.0019354882, -0.0178532749, -0.00799096283, -0.0043727695, -0.00974158, -0.00363328494, -0.00729675265, -0.00502170529, -0.0182154719, -0.00527826138, -0.021414876, 0.00359366974, -0.00140256865, -0.0187285841, 0.011929851, 0.00914546475, 0.00208074413, 0.00577628147, 0.013152265, 0.0116808414, -0.0254292209, 0.000978119555, -0.00676100375, 0.0347708762, -0.00504811527, 0.00476892199, -0.00390115939, 0.00568573223, -0.0125636952, 0.0302283261, 0.000439069088, 0.0411998667, -0.00604792917, 0.00367478654, 0.0119751254, 0.0289002731, -0.0160724744, -0.00114978559, 0.0034936883, -0.00478401361, -0.00447463756, 0.0184116624, 0.0019100213, 0.00293530175, 0.00900964066, 0.0123976888, 0.0193624273, 0.00931147113, 0.00784759317, 0.0144803189, 0.0179136414, 0.0111752748, -0.00910773594, 0.0109413564, 0.0195435267, -0.0234673228, -0.000440483913, 0.0148349702, -0.014736875, 0.00669309171, -0.0151217086, -0.0180796478, 0.0155744553, 0.00914546475, -0.00215431536, 0.00292209676, 0.0046444172, 0.0253084898, -0.00579514587, 0.00747407833, -0.0131673561, -0.0115299262, 0.0264252629, -0.0216865223, -0.0120807663, -0.0161177497, 0.0100509562, -0.00307867141, 0.00471232878, -0.000542351743, 0.0042105359, -0.0194077026, 0.0136804683, 0.00107149838, -0.00339748, 0.00275609, 0.00548199704, 0.0123222312, 0.0100585017, 0.0137861092, -0.0168723259, -0.00900964066, -0.00833052211, -0.0345897786, -0.00651576649, 0.0318431184, -0.00728543429, -0.00304471538, -0.00931901764, -0.028628625, 0.0127372481, -0.0182003807, -0.00182135857, -0.0128504345, 0.0205697492, -0.00601020036, 0.0221845433, 0.0130088953, 0.0117713902, -0.0133861834, 0.0158611946, -0.0174608957, -0.00845125411, 0.000450151914, -0.00457273237, -0.00533485459, -0.022758022, 0.0035238713, 0.0117940279, 0.0158461016, 0.00710433582, -0.0064554, 0.0156951863, -0.0142841293, -0.00742880348, -0.0104508819, -0.00858707819, 0.000427043036, 0.00738730188, 0.0250821169, -0.0259121507, -0.00419544429, -0.00817206129, -0.00336918328, 0.00959066488, 0.00890400074, -0.0137634715, -0.0314809233, 0.00548199704, 0.0144199533, -0.00402189186, 0.00885118, 0.00165723823, 0.00100735936, 0.0298661292, -0.0215808824, 0.00617998, 0.0101792347, -0.00350123411, -0.0358272828, 0.008745539, 0.0148651535, -0.0228334796, -0.0097038513, -0.0319034867, 0.0207659397, 0.000285559974, -0.0159366522, -0.0126089696, 0.00722129503, 0.0199811812, 4.65420308e-05, -0.00625921041, -0.01113, 0.0133031802, 0.0090398239, 0.00330315786, 0.00813433249, 0.0043124035, -0.00608943077, 0.00137898815, -0.000128749583, 0.0181400143, 0.00716470182, -0.0212790519, 0.00671950215, -0.00860216934, 0.0187436752, 0.00264478987, 0.013461641, 0.0145482309, 0.0173099805, -0.00659876969, -0.0043124035, 0.00456895959, 0.000123915583, -0.0173099805, -0.0240408015, -0.0233465899, 0.0316318385, 0.0151066175, -0.011741207, -0.00910019, 0.00684777973, -0.00134503224, 0.00209960854, 0.00950011518, 0.0179287326, 0.0223052762, 0.0006678, -1.98076286e-05, -0.00931901764, 0.0197849907, -0.000666856824, 0.0296246652, -0.0122995935, 0.0172797982, -0.00668177335, -0.0147595126, -0.000371864619, 0.00954539049, -0.00733070867, 0.0209319461, -0.00302396459, 0.00611206796, -0.00100264326, -0.0302283261, -0.014133214, 0.0129108, 0.0107149836, -0.00544804102, -0.00212413236, -0.00379929156, 0.000691380526, 6.00934527e-06, -0.00168364833, -0.0233164076, -0.00745521393, 0.00646671886, -0.01082817, -0.00894173, 0.00610829517, -0.0228485707, 0.0168270506, -0.00407471182, 0.00922092237, 0.0123297768, 0.00034899154, -0.0227127466, 0.0078777764, -0.00421430869, -0.00777968159, 0.00334088667, 0.00617243396, 0.018109832, -0.00284852553, -0.0258819666, -0.0131824482, 0.00103282626, -0.00619129837, -0.0145255942, 0.00897945836, -0.0196793508, -0.00364083075, -0.00226561539, -0.0118770311, -0.0143520413, -0.0266818181, 0.00912282709, -0.0176269021, 0.013220177, -0.0125938784, 0.0072816615, -0.00694587501, -0.0378495455, 0.0121411327, 0.00756085431, 0.0106470715, 0.0167968683, 0.00707038, -0.0136804683, -0.0347406939, 0.00362007972, 0.00547822379, 0.0113941021, -0.00861726142, 0.00409734948, 0.0173250716, -0.00268817809, 0.0219732616, 0.0158159193, -0.00591965113, 0.0109564476, 0.00821733568, 0.00397661701, 0.0106395259, 0.00801360048, 0.0191360544, 0.0225316491, 0.0123448679, -0.00107338477, 0.00391625101, 0.0112130037, 0.0193473361, -0.00831543095, -0.000297114428, -0.00325222383, 0.00706283422, -0.00284286612, 0.014872699, -0.0299566798, 0.0095755728, -0.00127806363, 0.0153329903, -0.00947747845, 0.0125636952, 0.0121184951, -0.00471232878, 0.00956048165, 0.0160724744, -0.00623280043, -0.00519148493, 0.000833335216, -0.0369742401, -0.0154989976, 0.0161781162, -0.0174156204, -0.0148123326, 0.00835316, 0.00748539669, -0.0035333035, 0.00300321355, 0.0128579801, 3.40148836e-05, -0.00934165437, -0.00747785112, 0.00774949882, 0.0166761354, 0.0104433363, -0.0156197296, 0.00692323735, -0.0225014649, 0.00735711912, -0.00753067154, 0.0093718376, -0.00265988149, -0.0229843948, 0.0184418447, 0.0211885031, -0.0180192813, 0.0034653917, 0.0048972, 0.0205697492, -0.00217129337, -0.0124656009, -0.0275873095, -0.00747030554, 0.0141558517, -0.000598001701, 0.0238295197, 0.00247501023, -0.0176872686, -0.0124505088, 0.010398061, 0.0147896959, 0.0110922717, -0.005565, -0.00872290228, 0.00196755771, -0.0138766579, 0.00111111358, -0.00428976631, -0.00493492885, 0.00284475274, 0.00557254581, -0.0209621303, 0.00411998667, -5.70648335e-05, 0.00856444053, 0.00865499, 0.0109715397, -0.0111903669, -0.0180494655, 0.00123750512, -0.0111149093, -0.0101490514, -0.00921337679, -0.00891154632, -0.00396907143, -0.00121675432, 0.0239049774, -0.00904736947, 0.00363705773, 0.00892663747, 0.0232711323, 0.0141483052, 0.0025599, 0.00459914235, -0.0314205587, -0.012050584, 0.00532730855, -0.000854557671, 0.00567818666, 0.000773440697, 0.00510848174, -0.00271081529, -0.0174458046, 0.00202226453, -0.0202981029, 0.00475005759, -0.0127976136, 0.0059083323, -0.00726279709, -0.0190455057, 0.0120053086, -0.00625921041, -0.00129975763, 0.00554990862, 0.00403321, -0.0130692618, 0.0169477835, -0.0304848831, -0.0146916006, 0.00106206618, -0.00107998739, -0.00143652468, 0.0112130037, 0.00275986292, 0.0180947389, 0.0118770311, -0.018834224, -0.000396624178, -0.0620563552, 0.00404830184, 0.00488210889, 0.0313300081, 0.00112337549, 0.0288097225, 0.00226938818, -0.00366535434, -0.00554990862, 0.0131371729, 0.00890400074, 0.0283569768, 0.00800605491, 0.0120430375, -0.0119147599, 0.00355216791, 0.0308018047, -0.00207885774, 0.00952275284, 0.0110469973, 0.0216865223, -0.00714206463, 0.0130239865, -0.0180343743, 0.00621016277, 0.0170232411, 0.0136653772, 0.0140200276, -0.0251273904, -0.0125410585, -0.0138615668, 0.00713451905, 0.0186682176, -0.0173401628, 0.00790041406, 0.00107432797, -0.00830788538, -0.0258668754, -0.00677986816, -0.00830033887, -0.000410772482, 0.00714583742, -0.0183060206, -0.00613847841, -0.00929638, 0.00109696528, 0.00125071022, 0.00214488315, 0.0217468888, 0.0047877864, 0.00508207129, 0.0217468888, -0.0232258588, 0.00475005759, -0.00806642, 0.00648181047, 0.00220336276, -0.010707438, 0.0460291542, 0.0198000818, 0.00250330684, -0.0357065499, -0.022154361, -0.00248255604, 0.0264101699, -0.0232711323, -0.0038973866, -0.0127598848, 0.0114771053, 0.0159215592, -0.0123675056, -0.00529712578, 0.0204188339, -0.00139407977, 0.00200340012, 0.0134767331, -0.00580269191, -0.00974158, -0.00152424409, 0.01088099, 0.0255801361, 0.00375590357, 0.00839088857, 0.000882854278, 0.00524053257, 0.0096661225, -0.00842861738, 0.00742503069, 0.00542163057, -0.00844370853, 0.0123675056, 0.0208413973, 0.00268817809, 0.0191058721, 0.00160064502, 0.00772686116, -0.00855689496, -0.00960575603, -0.0122845024, 0.00868517347, 0.0181852896, -6.82066238e-05, -0.0202377364, -0.00189304329, 0.0466328152, -0.0109413564, -0.000936146243, 0.0189398658, -0.0093492, 0.0255952273, 0.0265309028, -0.0170986988, 0.0136125563, -0.0123297768, 0.0291870106, -0.0015949856, 0.00495379325, 0.00143652468, -0.00680250535, -0.023723878, -0.0120204007, -0.0129560754, 0.00409734948, 0.0123524144, 0.00105829327, 0.011741207, -0.0152424416, 0.0230145771, -0.0127447937, -0.00351632549, -0.00517262053, -0.0031522424, 0.0131975394, -0.00498397648, 0.0101264138, -0.0245840959, 0.0108206244, 0.0325373299, -0.0133484546, -0.00485947123, 0.0182154719, -0.0114469221, 0.0128957089, -0.00803623721, -0.0260177907, 0.00295982556, -0.00427467469, 0.00540276617, -0.0073835291, -0.0187134929, -0.0151820751, 0.00677986816, -0.00827770215, -0.00676477654, -0.0189096816, -0.00607433915, -0.000209866528, -0.0141709428, 0.00408980343, -0.0138087459, 0.023376774, -0.0080890581, 0.00261272048, 0.00913791917, -0.0124957832, 0.00294850697, -0.0181701966, 0.00886627194, 0.0126089696, -0.00366724073, 0.0229843948, 0.000742314442, -0.0080890581, 0.00100452965, 0.00667045452, -0.0169930588, -0.0116657494, -0.0208715796, -0.000431523309, 0.0112356413, 0.0130088953, 0.00251085265, -0.0126316072, -0.00621393602, -0.00171571784, 0.00623280043, -0.0166610442, -0.000751275045, 0.00953784399, -0.0156951863, 0.0126693361, 0.0199359059, -0.008624807, -0.0063422136, -0.00968121365, 0.0148274247, -0.00257687806, -0.00176665175, -0.00381249678, 0.0034503, 0.00690437295, 0.00737221027, 0.0236031469, 0.00494624767, 0.00296925777, -0.0106319804, 0.0140502108, -0.00364837633, -0.0120204007, -0.012480692, 0.00281456951, -0.00575364428, -0.00206942554, -0.00282022892, -0.00840598, 0.00799096283, -0.0291417371, 0.0242068078, -0.00992267858, 0.00140822807, 0.012548604, -0.0157555528, 0.0107225291, 0.00386154419, 0.0160121098, -0.0220185369, -0.00659876969, 0.0140275732, 0.00980194658, 0.0120128542, -0.0132880891, -0.000748445338, 0.0153103527, 0.00162799831, -0.00974158, -0.000752218242, -0.0118015734, 0.0270138308, 0.00170439924, 0.0220336281, 0.0290813707, 0.00117902551, -0.0198000818, -0.00436145114, -0.00717602065, 0.0229542106, 0.0273609366, -0.00923601352, 0.00108187378, -0.00780986482, -0.0243426319, 0.00192794239, -0.0147896959, 0.00991513301, 0.000977176358, 0.0030994222, -0.0211734101, 0.0276778582, 0.0202981029, -0.00442559, -0.014616143, 0.00327486102, 0.00265799509, 0.000640918268, -0.00388606801, -0.019573709, -0.00882099662, -0.00321638142, -0.00321449502, -0.0149330646, 0.00631203083, -0.0216865223, -0.0230145771, -0.014616143, -0.00323713222, 0.00359932892, 0.00845880061, 0.00639503403, -0.00652331207, -0.00971139688, -0.014925519, -0.0168119594, -0.0138012, -0.000425628183, -0.00877572224, 0.000484343676, -0.0327184275, 0.00753444433, -0.00823997334, 0.000935203, 0.0121939527, 0.00771176955, -0.00761744753, -1.36619574e-05, -0.013823838, 0.0046746, -0.000339559338, -0.0180041902, 0.000835693267, -0.00644030888, 0.0178683661, -0.0138615668, -0.0110545428, 0.00328617985, -0.0175212622, 0.000586211449, -0.0132428138, -0.0279645976, 0.00317865261, -0.00669309171, -0.00549708819, 0.00436522393, -0.0106772548, 0.0206904821, -0.0159970168, 0.00377854076, 0.00706283422, -0.014857607, -0.000195128712, 0.0072816615, -0.00834561419, -0.0030503748, 0.00794568844, -0.0123750512, 0.0047877864, -0.0142237628, 0.0031616746, -0.00512357289, -0.000737126742, 0.00603661034, -0.0046859188, 0.00500661368, 0.0152877159, -0.0244331807, 0.0179438237, 0.0193473361, 0.00640635286, -0.0140728476, 0.00940202083, -0.014133214, -0.00996795297, 0.0211432278, 0.0109790852, 0.0110017229, 0.0171137899, -0.0158762857, -0.0255197696, -0.00577628147, 0.0189398658, -0.0138162924, -0.0147293294, -0.0051613017, 0.0167968683, -0.00968121365, 0.00558386464, -0.00580269191, -0.00365026295, -0.0255952273, 0.0272703879, -0.0034729375, 0.00524807815, -0.0133031802, -0.023738971, -0.027768407, -0.0285380762, 0.00108187378, 0.0134767331, -0.00346916448, -0.0191360544, 0.00143369497, -0.00129032542, -0.00674213935, -0.0139521156, 0.0682136938, 0.0167365018, 0.00601020036, -0.048443798, -0.00129504153, -0.00824751891, 0.00393134262, 0.0441578068, 0.0123146856, 0.00944729522, -0.0239955261, -0.0150236143, -0.0204037428, -0.00185437128, -0.000438361662, -0.0123825967, 0.00715715624, -0.0139294788, -0.0149104279, 0.00359366974, -0.00610829517, -0.00804378372, -0.00256933225, -0.0185625777, 0.0039200238, -0.000533862738, 0.00824751891, -0.0195435267, -0.0151217086, 0.0106244339, 0.00567818666, 0.00918319356, 0.0146387806, -0.0152877159, -0.02165634, -0.00369553734, 0.0067157289, -1.07659762e-05, 0.00977176335, -0.0246444624, -0.0104508819, 0.0211281367, -0.0100735938, 0.0152424416, 0.0107828956, 0.00463687116, 0.00117902551, -0.00816451572, 0.0117789358, -0.00403698301, -0.0207357574, -0.0158762857, -0.00182607467, -0.0299264956, 0.0105037019, 0.0394492485, 0.0258668754, -0.000662140723, 0.00908509828, 0.0142388549, 0.0130239865, -0.00475383084, 0.0187738575, 0.00102245086, -0.000662612321, -0.00796078, -0.0127825225, -0.00256555947, 0.00235050521, 0.00430485792, -0.0278438646, -0.0107225291, -0.00155254069, 0.00812678691, 0.0180343743, -0.00510848174, -0.010896082, -0.00519525772, 0.0115148341, -0.0251273904, -0.00643653562, 0.0165855866, -0.0387248546, -0.00993022416, -0.00438031554, -0.00289568654, -0.0273458455, -0.00876817666, 0.00447841035, 0.0232258588, 0.0107678035, 0.0455160439, -0.0123976888, 0.000895587727, 0.0097944, 0.0059271967, 0.0015459382, 0.025700869, 0.0209319461, -0.00479533244, 0.0232107677, 0.0156197296, -0.0106772548, 0.00637616962, -0.0103678787, 0.0142841293, 0.00415016944, 0.00321260863, 0.0101037771, -4.74263e-05, -0.0107300747, -0.0102471458, -0.00955293607, 0.0178834591, -0.00519525772, -0.00657235971, -0.0164799467, 0.0109262653, 0.0112809157, -0.0113865566, 0.0117864814, 0.0071232, -0.00700246822, 0.00552349864, 0.000603189401, -0.0062818476, 0.0122316815, 0.0069006, 0.00581778307, -0.008504075, -0.00856444053, 0.00253537646, 0.00743634952, 0.00658745086, 0.0197849907, 0.0291719195, -0.00308999, 0.014065302, 0.00282777473, 0.000996040762, 0.00929638, 0.00260894746, -0.00130353053, 0.027044015, 0.0148349702, -0.00278061372, 0.00184965518, -0.00249010185, 0.005353719, 0.0297001228, -0.00879836, 0.00514621055, -0.0158611946, -0.00894927513, -0.00465196278, 0.00606302079, -0.0191360544, -0.00942465756, 0.0031013086, -0.0265007205, 0.00334277307, 0.00345973228, 0.0304245166, 0.00307489838, 0.0079985084, -0.0136955595, 0.0240558926, 0.0284928, 0.00756462757, 0.0172797982, 0.0061611156, 0.0134767331, 0.00897945836, 0.00584419351, 0.0043727695, 0.0148425158, -0.00183739327, 0.00052112923, 0.0128353424, 0.00147896959, -0.00344652729, -0.00328052044, 0.0162988473, 0.0491681919, 1.47967694e-05, -0.0234975051, 0.0204641093, 0.0134088211, 0.0196944419, 0.00281834253, -0.0133635467, 0.0207508486, -0.00854934938, -0.0235276893, -0.0164799467, -0.00558763742, 0.0408678539, -0.000560272892, -0.0289002731, -0.0142765837, 0.00247878325, -0.00860971585, 0.00755708152, 0.00751935272, -0.00814187806, 0.0217016134, 0.023980435, 0.00696096616, 0.000669214875, -0.0146991462, -0.0121562239]
06 May, 2024
How to use Optional Chaining with Arrays and Functions in TypeScript ? 06 May, 2024 In this article, we will learn how we can use optional chaining with arrays and functions in TypeScript. Optional chaining in Typescript is mainly a feature that allows us to safely access the properties or the call functions on potentially null or undefined values without causing any runtime errors. We will see three different approaches with implementation in terms of examples. Below are the possible approaches: Table of Content Optional Chaining with ArrayOptional Chaining with FunctionsOptional Chaining with Array and FunctionsOptional Chaining with ArrayIn this approach, we are using optional chaining with array elements, where we are accessing the first author in the authors array of the geeksArticle object. We are storing the result in mainAuth, which prints the author name or 'undefined' if the authors array is not defined or empty. Syntax:const result = object?.property?.[index]?.method();Example: Below is the implementation of the above-discussed approach. JavaScript interface Approach1 { title: string; authors?: string[]; } const geeksArticle: Approach1 = { title: 'Top 10 TypeScript Features', authors: ['Geek1', 'Geek2', 'Geek3'], }; const mainAuth: string | undefined = geeksArticle.authors?.[0]; console.log(mainAuth); Output: "Geek1" Optional Chaining with FunctionsIn this approach, we are using optional chaining with function (getAuthFn), the geeksAuthor object has an optional method. The res variable consists of either the return value of the function or the undefined if the function or object is not defined. Syntax:const result = object?.method();Example: Below is the implementation of the above-discussed approach. JavaScript type Approach2 = { getAuthFn?(): string; }; const geeksAuthor: Approach2 | undefined = { getAuthFn: () =&gt; 'Geek1', }; const res = geeksAuthor?.getAuthFn?.(); console.log(res); Output: "Geek1" Optional Chaining with Array and FunctionsIn this approach, we are using optional chaining with both array and functions, where the user is an option with the optional posts array that has posts with properties like likes and the function as getAuthor. We use the optional chaining (?.) for safe access. Syntax:const result = object?.property?.[index]?.method?.();Example: Below is the implementation of the above-discussed approach. JavaScript type Approach3 = { username: string; posts?: { title: string; likes?: number; getAuthor?(): string }[]; }; const user: Approach3 | undefined = { username: 'geekUser', posts: [ { title: 'Introduction to TypeScript', likes: 20, getAuthor: () =&gt; 'Geek1' }, { title: 'Advanced JavaScript', likes: 15 }, ], }; const res1 = user?.posts?.[0]?.likes; const res2 = user?.posts?.[1]?.getAuthor?.(); console.log(res1); console.log(res2); Output: 20undefinedUsing Optional Chaining with Array, Functions, and Ternary OperatorThis new approach involves utilizing optional chaining along with a ternary operator for more concise and flexible access to array elements and function calls. Example: JavaScript type Approach4 = { username: string; posts?: { title: string; likes?: number; getAuthor?(): string }[]; }; const user: Approach4 | undefined = { username: 'geekUser', posts: [ { title: 'Introduction to TypeScript', likes: 20, getAuthor: () => 'Geek1' }, { title: 'Advanced JavaScript', likes: 15 }, ], }; const res1 = user?.posts?.[0]?.likes ?? 0; // Fallback to 0 if likes property is not present const res2 = user?.posts?.[1]?.getAuthor?.() ?? 'Unknown Author'; // Fallback to 'Unknown Author' if getAuthor function is not present console.log(res1); console.log(res2); Output: 20 "Unknown Author" 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.
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?
https://www.geeksforgeeks.org/how-to-use-optional-chaining-with-arrays-and-functions-in-typescript?ref=asr10
PHP
How to use Optional Chaining with Arrays and Functions in TypeScript ?
jQWidgets jqxSortable disabled Property, Node.js Stream transform.destroy() Method, jQWidgets jqxSwitchButton enable() Method, Convert string into date using JavaScript, jQWidgets jqxSplitter height Property, How to Declare Optional Properties in TypeScript ?, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxTree checkAll() Method, jQWidgets jqxScrollBar rtl Property, jQWidgets jqxScrollBar step Property, jQWidgets jqxTabs position Property, jQWidgets jqxTooltip height Property, How to Make a Single Property Optional in TypeScript ?, jQWidgets jqxTreeMap width Property, jQWidgets jqxTree collapseItem() Method, jQWidgets jqxTabs keyboardNavigation Property, jQWidgets jqxTree destroy() Method, jQWidgets jqxTree collapseAll() Method, jQWidgets jqxSortable opacity Property, jQWidgets jqxScrollView buttonsOffset Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, jQWidgets jqxTabs disabled Property, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Node.js date-and-time Date.transform() Method, jQWidgets jqxListBox enableHover Property, jQWidgets jqxSlider height Property, TypeScript Optional Parameters, jQWidgets jqxSwitchButton onLabel Property, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, jQWidgets jqxToolBar theme Property, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxSplitter orientation Property, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxSlider buttonsPosition Property, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, jQWidgets jqxSwitchButton orientation Property, jQWidgets jqxToolBar tools Property, jQWidgets jqxSlider rtl Property, How to use Optional Chaining with Arrays and Functions in TypeScript ?, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTooltip opacity Property, jQWidgets jqxTree width Property, jQWidgets jqxScrollBar showButtons Property, jQWidgets jqxScrollView showButtons Property, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, jQWidgets jqxTree clear() Method, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView disabled Property, jQWidgets jqxScrollView animationDuration Property, jQWidgets jqxToolBar height Property, PHP, How to Sort an Array Having Optional Properties in TypeScript ?, jQWidgets jqxSplitter destroy() Method, jQWidgets jqxTreeMap destroy Method
GeeksforGeeks
[-0.0249976665, 0.00329876388, -0.0205053817, 0.013385687, -0.00285119284, -0.015855616, -0.0305674393, 0.0168419294, -0.0272189453, 0.0120678395, 0.0217320565, 0.00792780798, 0.0114793666, -0.00102205726, -0.0239036046, -0.0214005224, -0.0551009588, 0.000335937249, -0.0276830923, -0.0229090024, 0.00639860705, 0.0217320565, -0.0753245354, 0.00638203043, 0.000605567649, 0.00897628441, 0.0248484761, 0.0121258581, -0.0549351908, -0.0179525688, 0.00513463374, 0.0159385, -0.00774546433, -0.0499621816, 0.00721086562, -0.00865303911, 0.0122004533, -0.000895659963, -0.0454201661, -0.00824276544, -0.00837123487, -0.0292081498, -0.00205447502, 0.012299913, -0.0088436706, 0.0468457602, -0.000238808119, -0.0241688322, 0.0205716882, -0.00811429601, -0.00514706597, -0.0153831802, 0.0551341139, 0.0194776244, 0.0253292, 0.0172397699, 0.0203561913, -0.0109489122, 0.0270697549, -0.00729374913, 0.0270863324, -0.0553661846, 0.00576040428, -0.0278322827, 0.0309818573, 0.0198423136, -0.0300038308, 0.0317609608, 0.0109820655, -0.00644419296, -0.0597424358, 0.0524818413, -0.000250463607, 0.0318935737, -0.00937412493, -0.00155717402, 0.0155655239, 0.0274344422, -0.0285782348, 0.0383916423, 0.0288766157, 0.0067259972, -0.0181680657, 0.0164689533, -0.0113384649, -0.0268045273, -0.00636545382, -0.0594109, 0.0262243431, 0.0191958211, -0.00735591166, 0.022759812, 0.00259218179, 0.00818889122, -0.0220304374, 0.0296059903, -0.00252380292, -0.00972223561, -0.0303685181, 0.0504263304, 0.0188642871, 0.030998433, -0.012714331, -0.0053418423, 0.0193947423, -0.0373970419, 0.0146455169, 0.0338827781, 0.0503931753, 0.0079816822, 0.000378415047, -0.0111478325, -0.028777156, 0.0434309617, -0.0293904934, 0.00817231461, -0.0148361484, -0.0463816151, 0.0233565737, -0.0132696507, 0.00509733614, 0.0406792276, -0.0159219224, 0.0418064445, -0.0465805344, 0.0316449255, -0.00291542755, -0.0163529161, 0.0102444021, 0.00699536828, -0.0227929652, -0.0401819274, -0.033501517, -0.00892655458, 0.0217320565, 0.00949016213, 0.0203893445, 0.00677158311, -0.0113550415, -0.0112390043, -0.0396514721, -0.0615658723, 0.0207043011, 0.0203064606, 0.00787807815, 0.00660581607, -0.019577086, 0.0323908776, -0.0151925478, 0.00430994248, -0.0166595858, -0.0147947073, 0.0120098209, -0.000662032049, 0.0140073132, 0.0094404323, -0.00794852898, -0.00338371936, -0.0470115282, 0.0213839468, 0.00502274092, -0.011379906, -0.0208866447, 0.0248650536, 0.0207706075, -0.00811015163, 0.0323079936, -0.00943214353, -0.0447902493, 0.0334020555, -0.00171568873, 0.0083049275, 0.00611265888, 0.0265393015, -0.024052795, -0.039618317, 0.016145708, 0.0124076614, 0.0241854098, -0.0171237327, -0.0333191715, -0.0015685705, 0.00565265538, -0.0148858791, 0.0247655939, -0.0117280167, 0.0173226539, -0.0178531092, -0.0176044572, -0.0540068969, -0.0468457602, 0.0307166297, 0.027318405, 0.0262409206, -0.00502688484, -0.000954196439, -0.0367339738, -0.00500202, -0.0243180227, 0.00853700191, 0.022759812, -0.0381264165, -0.0231576525, 0.0194776244, 0.0207208786, 1.95715165e-05, 0.0171734635, -0.0157975983, 0.0515203923, -0.00772888772, -0.0111063905, 0.0253126249, -0.00562779047, -0.000859398395, -0.00489012711, 0.00472436, -0.0169911198, -0.00247614481, -0.00869448, -0.0325566418, 0.00834636949, 0.0232073832, 0.00793609675, 0.0205551106, -0.0244672131, -0.00695392676, 0.0140819084, 0.0216491725, 0.01321992, -0.00714455871, 0.00992944464, 0.0278322827, -0.0104847644, -0.0456853919, 0.0203893445, -0.0153831802, 0.00915862806, -0.0279151667, 0.00187523942, 0.0597424358, -0.0233731512, 0.0188808646, -0.0160876904, -0.0145046143, -0.000323504704, 0.00011422384, -0.0371649675, 0.0383916423, 0.0204888042, 0.0119932443, 0.013634338, -0.0206877254, 0.015018492, -0.00107126939, -0.0473430604, 0.0238372982, -0.0149604743, -0.0257104654, 0.00199438445, 0.0170905795, 0.0111975623, 0.0144465966, 0.00929953, 0.0222293586, 0.0450886302, -0.005312833, -0.00558634894, -0.0262906495, -0.0528796799, -0.0085204253, 0.0507910177, -0.0163197629, 0.0412096828, 0.031247085, -0.026522724, -0.0149521856, -0.0351094566, 0.0206379946, -0.0211850256, 0.0230416171, 0.0379938036, -0.0288931932, 0.02493136, 0.00271857926, 0.0104764756, -0.0179857221, -0.00203271816, 0.0316283479, -0.038988404, 0.00952331536, -0.0508241691, -0.00572310667, 0.00818474684, 0.0128800981, 0.0488349646, 0.0162368808, 0.0202235766, -0.0104184579, -0.0221630502, -0.0151676824, -0.00288641825, -0.042502664, 0.00184415816, -0.017654188, -0.0428673513, 0.0406129211, 0.0459174663, -0.0112721575, 0.0142808296, -0.0176873412, 0.0358056761, 0.00456273742, -0.0527470671, -0.029241303, -0.0430331193, -0.000823136885, 0.0515867, 0.0328716, -0.0177536476, -0.0167921986, -0.00352876564, -0.0116036916, -0.0324074514, 0.00187005929, 0.00466219755, -5.15108077e-05, -0.0152920084, 0.0210689884, -0.0020389345, -0.0373638868, -0.026058577, -0.00950673874, -0.02819697, 0.0117777474, 2.00247869e-05, -0.00368002802, -0.0138083929, 0.00433066348, -0.0372312739, 0.00370282098, -0.0182343721, -0.0156152537, 0.0260254219, 0.00862817373, 0.0242682919, -0.0621294789, -0.020870069, -0.00590130594, 0.0065105, 0.016228592, 0.00160275993, 0.00631157961, 0.0181680657, -0.0281803943, 0.0371318124, -0.00991286803, -0.0151179526, -0.00610851496, -0.00374426274, 0.0358388312, 0.0205219574, -0.0227929652, -0.038822636, 0.0278820135, 0.0278488602, -0.0357062183, -0.00156235415, -0.00972223561, 0.0052755354, -0.0210855659, -0.0381595679, -0.00412345491, 0.0288600381, -0.0115208086, -0.0372975804, -0.025097128, 0.021499984, -0.00729374913, -0.0350099951, 0.0392867848, -0.0278820135, 0.0195273552, 0.00891826581, 0.0252628941, -0.0247821696, 0.0215165596, -0.034346927, 0.0176707655, 0.00650635548, 0.00772059895, -0.0284124687, 0.0495311879, 0.0302690584, -0.0063032913, 0.0257601961, -0.0024222706, -0.0194776244, 0.00960619934, 0.0106339548, -0.046249, -0.0112804463, 0.0112224277, -0.00299002277, 0.0276333634, 0.00299623888, -0.0107582798, -0.0106588192, -0.0075589763, 0.0496306457, 0.0405134596, -0.0360046, -0.0102444021, -0.0178696848, -0.00549517665, 0.0553993396, 0.0377948806, 0.0387231782, 0.0355736, -0.0270531792, 0.00128780259, 0.0283295847, 0.0190632083, -0.00186695112, 0.000352772942, 0.00674257381, -0.00578941312, -0.0276167858, -0.00393489469, 0.00988800265, -0.0159716532, -0.0167258922, 0.00549103273, 0.0349768437, -0.0110566607, -0.0228261184, -0.0684286281, 0.0185824838, -0.00880222861, 0.000341117469, -0.00728546083, 0.0125982938, 0.0101615191, -0.0200909637, 0.00385408336, -0.012507122, -0.0295728371, -0.059278287, 0.0158224627, 0.00628257031, -0.00680888072, -0.0159716532, 0.00820546784, -0.0335346684, 0.0275173262, 0.0153417382, -0.0296391435, 0.00299623888, -0.0162368808, -0.000443944824, 0.0166015681, 0.0209695287, 0.00778276194, -0.00468291854, 0.0144880377, -0.0149604743, -0.00927466527, -0.00662239268, 0.0168667939, -0.0058432878, 0.0317941159, 0.0465473793, 0.00114275643, 0.0318272673, 0.013054153, 0.0313631222, 0.000650635571, -0.0186819434, 0.0161208436, -0.0186653677, -0.0325566418, 0.0257601961, 0.0392867848, 0.0262409206, 0.000371162721, -0.0235223416, -0.00852871314, 0.0440608747, 0.0268376805, 0.023969911, -0.00697050337, 0.0141482158, -0.00801069103, -0.0304845553, -0.0255447, -0.0102858441, -0.043464113, -0.0320924968, -0.0394193977, -0.0108660283, 0.0187979806, 0.0207540318, 0.0330705196, -0.013012711, 0.00310191535, 0.00590130594, -0.0475088283, -0.0393862464, 0.0483045094, -0.00617482187, -0.03630298, -0.0119020725, -0.000579148531, 0.0403145403, 0.0357062183, 0.00950673874, 0.00214461097, -0.0324406065, 0.00859502051, 0.00520508457, 0.0200246572, 0.00969737116, 0.00332570099, 0.0123993736, 0.0195936617, -0.025478391, -0.014935609, 0.00155510195, -0.0264729932, 0.00610851496, -0.0141316392, -0.0346453078, -0.0063323, -0.00690005254, 0.0312305074, -0.0135348774, 0.00054910325, 0.011545673, 0.0243180227, 0.00142352434, 0.019494202, -0.0399166979, 0.0468789153, -0.0320593417, 0.0197428521, -0.0262243431, 0.0533438288, 0.0116202682, -0.0259259623, 0.0134519944, 0.0423037447, -0.0154909287, 0.0261580367, -0.0165849905, 0.0128800981, -0.0299209487, -0.0186819434, -0.0500616431, -0.0103189973, 0.00506418245, -0.031578619, 0.0111809857, -0.00572310667, 0.0607701913, 0.00210731337, 0.00816402584, -0.0289760754, 0.0115705384, 0.0409444533, 0.00380228111, 0.0378943421, 0.0126397358, -0.0261414591, 0.0114545012, -0.00810186286, 0.0254452378, 0.0160545371, 0.0175381508, -0.0156484079, 0.0466799922, -0.00789465476, -0.0244672131, -0.0269205645, 0.0303519424, 0.00350804464, -0.0126231592, -0.0414749086, 0.00334849395, -0.0253457781, -0.0221962053, -0.0257933494, -0.00308533874, 0.00478652306, -0.000138182353, 0.019494202, -0.00703681028, 0.0132779386, -0.00192393351, 0.00659752777, -0.018532753, -0.0225940458, 0.00189906848, 0.00677987142, -0.00614581257, 0.0113881947, 0.00558220455, -0.0131204603, -0.0168667939, -0.0137835285, -0.0154411979, 0.0259591155, -0.0317941159, -0.000497301051, 0.0198423136, 0.00526310317, -0.000427368097, -0.0174386911, -0.0170076974, 0.01965997, -0.0365682058, 0.0100869238, 0.019411318, 0.0102112489, 0.022129897, -0.00769573404, 0.0029402927, 0.012548564, -0.0198588893, -0.0188145582, 0.0129215391, -0.0193947423, -0.0183835626, -0.0348442271, 0.00767915742, -0.0187482499, 0.0234394576, 0.0427678935, 0.0163694937, 0.0205882639, -0.00624112831, 0.0203064606, -0.00654779747, 0.0265061464, 0.00719843293, 0.114777088, -0.0241025258, 0.0337998979, -0.026771374, 0.0420716703, 0.0288600381, -0.0058515761, 0.00293200416, -0.043464113, 0.0307332072, 0.026042, 0.0268874113, -0.0070782518, 0.00422913115, 0.0107665686, -0.00494400132, -0.0104516111, 0.00861159712, -0.030202752, 0.0172729231, 0.0357725248, -0.0105759362, -0.0112887342, -0.00026393219, -0.0131536135, 0.0022461433, -0.0122336065, 0.00644419296, -0.0190632083, -0.0344132334, 0.0265393015, -0.0109323356, -0.0390547104, -0.0346453078, 0.0326561034, 0.00992944464, 0.000793609652, -0.0314294286, -0.00467877416, 0.0136509147, 0.00850384869, 0.0102444021, -0.0159633644, -0.0162203033, -0.00286984164, -0.0222625118, 0.0119186491, -0.000397840864, 0.0137503743, 0.0102195367, 0.0124325268, 0.0412096828, -0.0141647924, 0.0192621276, -0.0116534214, 0.0194278955, -0.0270034485, 0.0153168729, -0.0127889263, -0.0161622856, 0.0151345292, -0.00261290278, 0.0156815611, -0.00503931753, 0.0193284359, -0.017571304, -0.0200909637, 0.0110069308, 0.0148029951, -0.0138332583, 0.00575211598, 0.0185990594, 0.0202401541, 0.00207105186, 0.0201738477, -0.00510562444, 0.00555319525, -0.0137089333, -0.018615637, 0.014894167, -0.04810559, -0.0268211048, -0.00744293956, -0.0106836846, 0.00603391975, 0.015101376, -0.00659752777, 0.0159385, -0.00934097171, 0.0213010628, -0.00783663616, -0.0206214171, -0.0144631732, 0.0113716181, 0.0070989728, -0.0178199559, -0.00100237248, 0.0306668989, 0.0195439328, -0.00183276169, 0.000187653452, -0.0181846432, 0.0145874983, 0.0204722267, -0.00317651057, 0.0217486341, 0.0223951247, -0.0163363405, -0.0222459342, 0.0424032062, 0.0019156452, 0.0207706075, -0.00403642701, -0.00812672824, -0.000675500603, 0.00368831633, 0.00845826231, 0.00650635548, 0.0187979806, -0.0348442271, 0.014347136, 0.0117031522, -0.0230416171, -0.018947171, -0.00633644452, 0.00220470154, -0.0224282779, 0.0199583489, 0.00426021265, 0.0258596558, -0.0101117883, -0.0299706776, 0.011794324, -0.00641932804, -0.0295231063, -0.0183338337, 0.000968701032, -0.0234726109, -0.00346453092, -0.0146952467, -0.0205053817, 0.0184332933, 0.00861988496, 0.0280477814, -0.0128552327, 0.0341148525, 0.022759812, 0.00330912415, 0.0167010278, -0.025014244, 0.0182675254, 0.0274675954, -0.0167258922, -0.0176044572, -0.0178199559, 0.0192289744, -0.0329213329, -0.00941556692, -0.0487023517, 0.023638377, 0.0211684499, -0.0148444371, -0.0322582647, -0.0158390384, -0.0285450816, 0.00335885445, 0.0122253178, -0.0024616404, 0.0333523266, -0.0391873233, 0.0266387612, -0.00404471532, 0.00962277595, -0.00366552337, 0.026356956, -0.0172231942, 0.0369992, 0.018615637, -0.00774546433, 0.0286279656, -0.0461826921, -0.0440608747, 0.0166844502, 0.0309155509, -0.0207540318, 0.00508075953, 0.00842510909, -0.00765429251, -0.00234560343, -0.0183006786, 0.036104057, -0.00786150154, 0.00371318124, 0.00139865931, -0.0281306636, 0.0106173782, 0.0308326669, 0.00950673874, -0.0119932443, 0.00363029772, -0.00700365659, -0.0303353649, 0.007529967, 0.0219309777, 0.0223453958, 0.0254452378, 0.00226686406, 0.0301695988, 0.01965997, -0.0180188753, 0.0283793155, 0.030119868, 0.014935609, -0.0141896578, -0.0148112839, -0.00431823079, -0.0197262764, 0.0377948806, 0.00239533349, -0.0178862624, -0.00117798196, 0.00653536478, -0.00486940611, -0.0158804804, -0.0402482338, -0.0248319, -0.00581013411, -0.0149936276, 0.000588472933, 0.0146206515, 0.039618317, 0.00905916747, 0.0196433924, -0.050989937, 0.00325317774, 0.00908403285, -0.0335346684, 0.0275173262, -0.0122501832, -0.0179691464, -0.00385615532, 0.00787807815, -0.00713212602, 0.00120284699, -0.0353746824, 0.000601423497, -0.0219641309, 0.0197096989, -0.00181204081, -0.0205551106, -0.0522166118, 0.0206214171, 0.0245666727, -0.0293076094, -0.00213839463, -0.0162451677, 0.00308741094, 0.00993773341, 0.00383957871, -0.0398172401, 0.0159053467, 0.0287108477, -0.0148112839, -0.00550760934, 0.00512634544, -0.0147864185, 0.031744387, 0.00411516661, 0.00105987291, -0.0150516462, -0.032341145, -0.0129132513, 0.00856186636, -0.0339822397, 0.0126314471, 0.0109489122, 0.00911718607, 0.00380020915, -0.00261497474, -0.0237544142, 0.00873592217, 0.0062659937, -0.000968701032, -0.0269205645, -0.0190466307, -0.0295065306, 0.00352669344, 0.00668455521, 0.0185659062, 0.00242019864, 0.015101376, 0.0268045273, -0.00259839813, -0.00887682382, 0.0301530212, -0.0500947945, -0.0411765277, 0.00831736065, 0.0323245712, -0.00405507581, -0.00167631905, -0.0305011328, -0.0217652097, -0.00711140549, -0.00017690449, 0.00424156385, 0.0378943421, -0.0133276684, 0.00818889122, 0.0184332933, -0.0132033434, -0.00320344768, -0.00723573053, -0.0193947423, 0.00700780097, -0.00462904433, 0.0155738117, -0.00604635244, 0.00658509508, -0.0139990253, -0.0116036916, 0.0115622496, 0.0157064255, 0.013427129, -0.0284953509, -0.0149521856, -0.0197262764, 0.00901772641, 0.00627013762, 0.0276996698, 0.0110815251, 0.00404264312, -0.0175547283, -1.81469568e-05, -0.0435304195, 0.0217817873, 0.00289677875, 0.00678401534, -0.00543715851, 0.00851213653, -0.00993773341, 0.0134105524, -0.0285782348, 0.0215497129, -0.0142393876, -0.00753411138, -0.0039328225, 0.00278074178, 0.00770402234, -0.0226271991, 0.0112058511, -0.0210026819, -0.0243677534, -0.00769987842, 0.0103521505, -0.0233897269, -0.0205551106, -0.00567337638, -0.0243677534, 0.00261083059, 0.0256110057, 0.0101117883, 0.0218646713, 0.0309321266, 0.0207374543, -0.00937412493, -0.0191460922, -0.0163777824, -0.0350763, -0.00656437408, -0.00960619934, -0.0151096638, -0.0164109357, -0.00945700891, 0.00489012711, 0.0259591155, -0.00875249878, -0.0162203033, -0.0149438968, 0.0351094566, 0.0140404673, 0.0189803243, 0.0199583489, -0.00438039377, 0.00178821175, -0.0004154536, -0.0108162984, -0.0148775904, -0.0105179176, -0.00306876213, -0.00422498723, 0.00766258081, 0.00157685881, -0.0127972141, -0.060239736, 0.0122916251, 0.0259259623, 0.0294899531, -0.0210855659, 0.00685861055, 0.0101035, -0.023257114, -0.0133193806, 0.0147781307, 0.0191295147, 0.00961448718, 0.0165518373, 0.00440525869, -0.0122253178, 0.00498544332, -0.0196931232, 0.0174221136, 0.0119600911, -0.0242019854, -0.0191792455, 0.0168916602, 0.00273308391, -0.0188477114, -0.00612923596, 0.00306254579, 0.00319308741, -0.0240196418, 0.013427129, -0.00803555641, -0.0251800101, 0.00605878467, -0.00481553189, 0.0170076974, 0.0218812469, -0.0178862624, -0.00968908239, -0.00282839988, 0.00705753127, 0.011752882, 0.0040384992, 0.0202733073, -0.0199251957, -0.0115539618, -0.0195605084, 0.0381927229, 0.0147615531, -0.0185161773, -0.0171403103, 0.0262243431, -0.0245666727, -0.00428507756, -0.0182177965, -0.00714455871, -0.00104692241, -0.0310315862, 0.0442597941, -0.0110732373, -0.0176044572, 0.0109820655, 0.0933599845, 0.0146786701, -0.00178199552, -0.0164855309, -0.0305674393, -0.0129381167, -0.00386858801, 0.0217652097, 0.0173226539, -0.0165021066, 0.0217154808, 0.00414624764, -0.01146279, 0.0219641309, -0.0338496268, 0.0190797839, -0.0209032223, -0.0166595858, 0.0378943421, -0.0275836326, 0.0117197288, 0.000392919639, 0.0242848694, 0.00149604736, 0.00692077307, 0.0198257361, -0.00626184931, -0.0309818573, -0.0188974403, -0.00854529, 0.0137255099, 0.00886024721, 0.0102029601, -0.00486526219, 0.0274510197, 0.0211684499, 0.00558220455, 0.0185990594, -0.0163943581, 0.0234726109, 0.010915759, -0.0219144, -0.0192289744, -0.000583810732, -0.00308119459, 0.00148879504, 0.00380849745, -0.00160275993, -0.0590793677, -0.00257353298, -0.00870276894, -0.00868619233, 0.004077869, -0.023257114, -0.0229918864, 0.0138912769, -0.0144714611, -0.0148858791, 0.0301364455, -0.0213010628, 0.00148050673, 0.0147449765, -0.000725748774, -0.0263403803, 0.00782420393, -0.000812258397, -0.0236715302, -0.00776618486, 0.00267299335, -0.00725645153, 0.00080500613, 0.013302804, 0.0155986771, 0.00158618321, -0.00224199891, 0.031379696, -0.00189078017, -0.0107582798, 0.00108681, -0.0224780086, 0.0165601261, 0.0246164035, -0.0131453248, -0.003754623, -0.0243511759, 0.000765118399, -0.0301032923, 0.0291086901, -0.00896799564, 0.00626184931, 0.0104350345, 0.00598418945, -0.00550760934, -0.00787807815, 0.00270821876, -0.00640689535, 0.019411318, 0.0267879516, -0.000582774694, -0.00523409387, 0.00672185281, 0.00788636599, 0.0251965877, 0.0148361484, 0.0109406235, 0.00190217665, 0.010874317, 0.00295686931, -0.00394939957, 0.00255695637, 0.027484173, 0.0131038837, 0.00333813345, 0.00615410088, 0.0045005749, -0.00634887721, 0.0185659062, 0.0297883339, -0.00172812119, -0.017107157, -0.0420053639, 0.0367339738, 0.00997917447, -0.0167839117, 0.00963935256, -0.00419804966, -0.00863646157, 0.0219475534, 0.0319598839, -0.00354119809, -0.00701608928, 0.0262243431, 0.00978854299, 0.0127309076, -0.0108411638, -0.00449643051, -0.0190632083, 0.0272023678, 0.000845411851, -0.0222459342, -0.00562779047, 0.0111726979, -0.00678815972, 0.00479481136, -0.0121341459, -0.0224448554, 0.00351426098, -0.0316449255, 0.00640689535, -0.000389034481, -0.0226769298, -0.0326063745, 0.0168750826, 0.0130458651, -0.00843339693, -0.012507122, 0.0249645133, -0.00157375063, 0.0258265026, -0.00215082709, 0.00931610633, 0.0181349125, 0.0022357828, -0.0263403803, 0.00447570952, 0.0129464045, -0.0233068429, -0.00961448718, -0.0058225668, 0.00266056065, -0.0136011839, -0.00702852197, 0.00469120685, 0.00726059545, 0.0123164896, 0.0040384992, 0.0381927229, -0.0125319874, 0.0175049976, -0.0248816311, -0.0188145582, 0.00534598669, -0.00824691, 0.00553661864, -0.012299913, -0.00964764, -0.0109572, 0.000429958222, -0.00602563145, 0.0161208436, -0.00936583709, 0.00487769488, 0.00315993396, 0.0182509497, 0.0170905795, 0.00428922195, -0.0123247784, 0.00548274443, -0.000700883684, 0.0203893445, -0.0157893095, 0.0177039187, 0.0106173782, 0.0256607346, 0.00773717603, -0.00659338338, -0.0253789313, -0.0104847644, 0.0249147844, 0.00149708346, 0.0108577404, -0.00294858101, -0.000476062181, -0.0440940298, 0.0126894657, 1.36790168e-05, -0.00361993746, -0.0369328931, 0.020455651, 4.63305878e-05, 0.00331948465, 0.00987142604, 0.00491499249, 0.000735591166, -0.02317423, 0.0116699981, 0.0154909287, 0.00304182479, 0.0126314471, 0.00522994949, -0.0141730802, 0.0320096128, 0.0273515582, -0.00972223561, -0.0155240819, -0.0202401541, -0.0148444371, -0.0459174663, -0.0121590113, 0.0138664115, 0.00393696688, 0.0217320565, -0.0191792455, 0.00318065472, 0.0044508446, -0.000126008847, 0.00806456618, -0.0121092815, -0.027815707, -0.0179525688, -0.00936583709, -0.0179525688, 0.0134105524, -0.00103345374, 0.000953678391, 0.00441354699, 0.0144051546, -0.0134602822, -0.0219309777, -0.0170076974, 0.0111478325, 0.00116658548, 0.00369867682, 0.0100206165, -0.0178862624, 0.0296888743, -0.00366759533, -0.0143139828, -0.0209363755, -0.0214502532, 0.00385201117, 0.0213507935, 0.0212347563, 0.0123496437, -0.0128220795, 0.00987142604, 0.0325234905, -0.0109737767, -0.0195273552, -0.00457931403, -0.0201075394, 0.0202401541, 0.0267879516, -0.00136239768, -0.0162866097, 0.01321992, -0.00550760934, 0.0109240469, -0.00705753127, -0.0178199559, 0.00100651663, -0.0053625633, -0.0149190323, -0.0122584719, 0.0253292, 0.0189637467, 0.000700365694, 0.00121631555, 0.0029009229, -0.0183006786, 0.00298795057, -0.00240569399, -0.0360709056, 0.00642761635, -0.0177039187, 0.0162866097, -0.00336921471, -0.0232405365, 0.0276665166, -0.0129464045, 0.00572725059, -0.0178862624, -0.000127433406, -0.00357020739, -0.037065506, 0.00103708, -0.000328425929, -0.00929953, 0.000681716891, -0.0310150106, 0.00432651956, -0.00180686056, 0.00910060946, -0.00794852898, -0.00197573565, 0.00223992695, -0.0145294797, -0.0239864886, -0.006274282, -0.0189803243, -0.0104350345, -0.0176376123, 0.0279317442, 0.00766258081, -0.00334020564, 0.0348110758, 0.00265227235, -0.0135597428, 0.0135183008, 0.00775375264, -0.0431988873, 0.0188808646, -0.0122750485, -0.00237668469, 0.00833808165, -0.0219475534, 0.0169413891, 0.00879394077, 0.0126646, 0.044425562, -0.0215165596, -0.0256110057, 0.00440940307, 0.00369660463, 0.0271029081, -0.00348732388, 0.00495643402, 0.00749266939, -0.0139907366, 0.0156318303, 0.0126894657, -0.000270666467, -0.0175547283, -0.000549621298, 0.022378549, -0.00551589765, 0.00389966927, -0.00215082709, 0.0215662904, 0.0228095427, -0.0244672131, -0.00430165417, 0.0251468569, -0.0154411979, -0.0108826049, 0.0241191015, 0.0188974403, -0.0122916251, 0.0184830241, -0.00894313119, -0.0274675954, -0.00700780097, 0.00341894478, -0.00358678401, -0.0294236466, 0.0191460922, 0.00914205145, 0.0353746824, -0.0127640609, 0.00908403285, 0.00927466527, 0.00697464775, 0.0219475534, 0.0209695287, 0.0113550415, 0.0207374543, -0.0310647395, 0.0244340599, -0.0280975103, -0.000236606531, 0.0113301761, 0.0093824137, -0.001249469, 0.00788636599, 0.0268874113, 0.00997917447, -0.00247200066, -0.0243843291, 0.0202733073, -0.0221630502, 0.0383253358, -0.00649392325, -0.0282135475, -0.0088436706, -0.0251800101, 0.0374301933, 0.000597279286, 0.0700863, 0.00933268387, -0.00534598669, -0.00214875513, 0.000906538393, -0.00525067048, -0.0120678395, -0.00279524643, -0.000582256645, -0.00156131817, -0.000512064726, -0.0125154108, -0.000157349161, 0.00780762685, -0.00823447667, -0.00593031524, -0.00424778, -0.00720672123, 0.00716113532, -0.0124988332, -0.00108370197, -0.00318272691, 0.00672185281, 0.0048445412, -0.00548688835, -0.00238082884, 0.0110898139, 0.00446327729, -0.0328881778, 0.00510976836, 0.0011168553, 0.00316615, -0.00318065472, 0.0271526389, 0.0129215391, -0.00874421094, 0.0166595858, -0.00929124188, 0.010542783, -0.00876907539, -0.0253623556, 0.0117860353, 0.00269164215, -0.0107334144, -0.026042, -0.0148195717, -0.00325110578, 0.00853700191, -0.0119186491, 0.00728546083, 0.00397633668, -0.0117280167, 0.011504232, -0.00222335, -0.032424029, 0.0114047714, -0.00145978585, 0.0154494867, 0.00115415291, -0.00252794707, -0.00392867858, 0.00951502752, -0.0030791224, 0.0031184922, 0.0113550415, 0.00134892913, 0.0062452727, 0.00372561393, 0.0161208436, 0.00624112831, 0.0416075215, 0.00708239619, 0.00537499599, 0.0209032223, -0.0131038837, -0.02493136, -0.0118191885, 0.026356956, 0.00184933841, -0.0146538047, 0.0113716181, -0.00367381168, 0.00628671423, -0.00298173446, 0.0147284, -0.00303146453, 0.000906538393, 0.016104266, 0.0116865756, 0.0015685705, 0.00628257031, -0.0144714611, 0.0132696507, 0.0272189453, -0.0173060782, -0.016609855, 0.0245666727, 0.0156981368, 0.0045378725, 0.00881880615, -0.000657887897, 0.00412552664, 0.0131204603, 0.0191295147, -0.0130458651, 0.00182136521, -0.0223122407, 0.000580184569, 0.00898457319, 0.0104516111, 0.0167010278, 0.00452544, 0.0044218353, -0.0125817172, 0.00612094719, -0.00534598669, -0.0339822397, -0.0121341459, -0.0232736897, 0.0052755354, 0.00886024721, -0.00588887371, 0.0249810908, 0.00851213653, 0.0409444533, -0.0269039888, 0.00956475735, -0.0277825538, 0.0109986421, -0.00360957696, -0.0291086901, -0.0226437747, -0.0176210348, 0.00178613968, -0.0164689533, -0.000736109214, 0.014222811, -0.00674257381, 0.00425606826, -0.0200246572, 0.0171568878, 0.00203064596, 0.0277991295, 0.0186487902, -0.0184664465, 0.0115539618, -0.000356399105, -0.000562053814, -0.00276002102, -0.00261290278, 0.00115829706, 0.0187814031, -0.0262243431, -0.0105842249, -0.00652707648, 0.0145874983, 0.0195107795, 0.014305694, 0.0126148704, -0.00929124188, -0.002666777, -0.0115622496, -0.0248484761, -0.00504760584, 0.00340651232, 0.00079516368, -0.0172231942, 0.0165518373, -0.00845411792, 0.00628671423, 0.0200412329, 0.0159219224, 0.0126065826, 0.0097636776, 0.0106173782, 4.78199e-05, -0.0167093165, -0.0164440889, -0.0136757791, -0.034579, 0.00619968679, -0.00626184931, 0.00305840163, 0.017107157, -0.019577086, 0.00584743172, -0.00981340744, -0.0118026119, -0.0373307355, -0.0104184579, -0.0052465261, -0.0263735335, -0.00557806, 0.0138249695, -0.0155655239, 0.000768744561, -0.00439697038, -0.0102112489, 0.0114462133, 0.00479895528, -0.00678815972, -0.00179546408, 0.0053418423, -0.0136011839, -0.00675086211, 0.00726474, 0.00366759533, 0.00993773341, 0.0282135475, 0.00182758144, -0.000916380843, -0.00494400132, 0.000171206251, -0.00253623538, 0.0131038837, 0.0102692675, 0.0116119804, -0.0210026819, -0.00466219755, -0.00964764, -0.00278488593, -0.0173060782, -0.013021, -0.0135431662, 0.00452129543, -0.0191460922, -0.0226106215, 0.00929124188, -0.0120346863, -0.0035391259, 0.0132447854, 0.00337335886, -0.000957822602, 0.0261911899, 0.0286776945, 0.000947980152, -0.0102692675, 0.00327804289, -0.0140901972, -0.00281182304, -0.00369660463, -0.0139658721, -0.00879394077, 0.00054858526, -0.00205033086, -0.00660581607, 0.00407994073, 0.0311807767, -0.0278654359, 0.0126148704, 0.00827177428, -0.027401289, 0.0148693025, 0.0255944282, -0.0204059202, -0.0178199559, 0.00643590465, -0.0242517162, 0.0208866447, 0.0477740578, -0.00234353123, 0.000777032925, 0.0101200771, -0.0297220275, 0.00508904783, 0.016692739, -0.00605049636, 0.00955646858, -0.0201406926, 0.00607950566, -0.0161705725, -0.00203582621, 0.0223122407, -0.000670838403, 0.0155655239, -0.000637685, -0.00958133396, 0.0040281387, -0.0264895707, -0.0189803243, 0.00446742121, 0.0134437056, -0.000705545885, 0.0170408506, 0.00724816322, 0.00895141903, 0.00863646157, 0.00578941312, 0.00536670722, 0.024218563, 0.00858673174, 0.00459174672, 0.0205882639, 0.0164606664, -0.00753411138, 0.01990862, -0.000303819863, -0.0192621276, -0.0015395612, -0.006274282, 0.0241025258, 0.0101283649, 0.00322624063, -0.0127972141, 0.00485697389, -0.0124988332, -0.0125568518, -0.00529211247, 0.0182343721, 0.00325317774, -0.0259425398, 0.00231659412, -0.00982169621, -0.0282964315, 0.0146786701, 0.0105262063, 0.00748023717, -1.76127469e-05, -0.0313133895, -0.0062245517, -0.0156484079, 0.020289883, 0.00898457319, 0.00259839813, 0.00757140899, 0.0159467869, -0.00923322327, 0.00153541705, 0.0100040399, 0.00611265888, -0.0166844502, -4.4323253e-05, 0.0352420695, 0.00117590989, -0.0240196418, 0.00812258385, -0.0108577404, 0.00827591866, -0.00426850095, -0.0119932443, 0.00645248126, 0.00757555291, -0.00834636949, 0.00977196638, -0.0144880377, -0.0140073132, 0.00448399782, -0.00479481136, -0.0058432878, 0.0112804463, 0.00897628441, -0.00339407986, -0.00469120685, -0.00741807418, -6.3069172e-05, 0.0184001401, -0.00578112481, -0.00427264487, 0.0208534915, 0.00178095943, -0.022759812, 0.0138415461, -0.010832875, 0.0216657501, -0.000879601284, 0.00617482187, 0.00157996698, -0.00973881222, -0.0254452378, -0.0124822566, 0.0119849555, 0.00973052438, 0.0219641309, -0.0218646713, 0.016270034, 0.00085162808, 0.0101780957, 0.0348442271, -0.00595932454, 0.0105510708, 0.00973052438, 0.00386029948, -0.00282839988, -0.000979061471, -0.00263155159, -0.0282964315, -0.0145957861, 0.00173537352, -0.0102775553, 0.0354741439, 0.0120429741, -0.00861159712, 0.00786564499, -0.00600491045, -0.00876907539, -0.00733519066, -0.00490670372, 0.0128966747, -0.00806042179, 0.00569409737, 0.0117777474, 0.0249147844, -0.0116948634, -0.00803555641, -0.0187979806, 0.0093243951, 0.0210192595, 0.0261580367, -0.0318438448, 0.00256524468, -0.00767086912, -0.00469949516, -0.00139140699, -0.00324903359, -0.0244837888, -0.00307705044, -0.0145957861, -0.02643984, -0.00555733964, -0.00777861755, 0.0216989033, 0.020289883, 0.00310398755, -0.0115705384, 0.0151676824, 0.0239864886, -0.0206048414, 0.0194776244, -0.00903430302, -0.00182965351, -0.0188974403, 0.00163798546, -0.00564436708, 0.0198257361, 0.0132447854, -0.0208037607, 0.00233317097, -0.00341065647, 0.00568166468, -0.0195273552, -0.0246827099, -0.00553247426, -0.0114959432, 0.00773303164, -0.00633644452, 0.0156401191, 0.00798582658, -0.0015209124, -0.00407165242, -0.00556977186, 0.0105262063, -0.00939899, 0.0252794717, 0.0119600911, -0.0122833364, -0.00118109, 0.0076460042, -0.0102278255, 0.00983827282, -0.0127723496, -0.0154743521, -0.0235720705, 0.000257197913, -0.0134188402, 0.00893484242, 0.0174386911, -0.00612509158, 0.0159716532, -0.00869448, 0.000270407472, 0.00577698089, 0.00760456221, -0.0142891174, 0.0150019154, 0.0129712699, 0.0171237327, 0.00548688835, 0.0071569914, -0.00726059545, 0.00239326153, 0.0148112839, -0.012507122, 0.00968908239, -0.00828006305, -0.0130707296, 0.018615637, 0.00244506355, -0.0276665166, 0.0111975623, 0.014305694, 0.00924151205, -0.00307083409, 0.0033526381, -0.0164275113, 0.0226271991, 0.0174552668, 0.00685032224, -0.0024802892, 0.00827177428, -0.0220801681, -0.0240030643, 0.0205053817, -0.00508904783, -0.00633644452, 0.00489427149, -0.014222811, -0.0120429741, 0.0212347563, 0.00928295311, 0.0257270429, 0.000527087308, 0.0283295847, 0.0234891865, -0.00569409737, -0.000932439521, -0.0044425563, -0.00772474334, -0.0242019854, 0.0137006445, 0.00555319525, -0.00744708348, 0.00606292905, -0.0053832843, -0.0215165596, -0.00848312769, -0.0149190323, 0.00700365659, -0.0147118233, -0.00557391625, 0.00218812469, -0.0175049976, -0.0163031872, 0.00688762, 0.00282425573, -0.00673014112, 0.0145957861, 0.00267299335, -0.00787807815, 0.00742636248, 0.00768330181, 0.0254120845, 0.0113301761, 0.0094404323, 0.00362822576, 0.0252463184, 0.0175547283, 0.0104184579, 0.00099253, -0.00593031524, 0.00319308741, -0.0126397358, -0.00717356801, 0.0188642871, -0.00748438109, -0.00221091765, -0.00221091765, -0.0207871851, -0.000846965879, -0.0111312559, -0.0180851817, -0.0184332933, 0.00527968, -0.0201406926, 0.00114172033, 0.000810704369, -0.017654188, -0.00393696688, 0.00972223561, 0.00357020739, 0.0124739688, 0.0185990594, 0.0159467869, -0.0132945152, 0.00171672471, -0.00141005579, 0.030119868, 0.00695392676, -0.00968079455, 0.00744708348, 0.00910060946, -0.0158224627, 0.00708654, 0.0039514713, 0.0277494, -0.00558220455, 0.00332155684, 0.0124988332, 0.013021, -0.0147864185, -0.000978543423, -0.00599662215, 0.0112804463, -0.00441769138, 0.010832875, 0.00937412493, -2.09637e-05, 0.00368624413, 0.0123745082, -0.0103189973, -0.00284704869, 0.00600076606, 0.0160462484, 0.0121755879, 0.00680888072, -0.00458760234, 0.006253561, 0.0078822216, -0.0222293586, 0.00588472933, 0.0445250235, -0.010749992, 0.00939899, -0.00711554941, -0.0101532303, 0.0171237327, 0.0012401446, 0.0131950555, 0.00239118934, -1.18254702e-05, 0.0193450116, 0.00288020214, 0.0114296367, 0.0057355389, -0.00422498723, -0.00164109352, -0.0315123126, 0.00486940611, -0.0277991295, 0.0159799419, -0.0147449765, 0.00329876388, 0.00328218704, 0.00651464425, -0.00895141903, 0.00411309442, -0.0115290964, -0.00916691683, -0.0063323, 0.0177702252, 0.0193118583, 0.00710311718, 0.0138249695, -0.0224780086, -0.0175049976, -0.0102444021, -0.0160048064, -0.00677987142, 0.00205033086, -0.0106505314, 0.0037857045, -0.00861988496, -0.026522724, 0.00617896579, -0.0200909637, 0.0104433224, -0.0192952808, 0.0153251616, -0.00939070154, 0.0272852518, 0.00446742121, 0.0078822216, 0.00629500253, 0.0136011839, -0.00711554941, -0.00797339343, -0.00950673874, -0.0171568878, 0.00261704694, -0.0144383078, -0.00573968329, 0.0188145582, 0.0120678395, 0.0205053817, -0.0109406235, 0.00909232162, 0.00544130243, -0.00849556, -0.018449869, -0.00325732213, 0.00442597969, -0.000460262498, 0.0144880377, -0.0291252658, 0.0194610488, -0.00202442985, 0.00689176423, 0.0266387612, -0.0105510708, 0.0152588543, -0.0108080097, -0.00131784787, 0.0103107085, 0.00270614657, 0.00495643402, -0.00424156385, -0.0101780957, 0.0172066167, -0.0305011328, 0.0161125548, 0.00120284699, -0.013634338, -0.0265061464, -0.00485697389, 0.00255074, -0.0208369158, -0.00402192259, -0.0165103953, 0.018068606, -0.00302524818, -0.0203064606, -0.0129629811, 0.0129712699, 0.00416282425, 0.0145129031, -0.0163612049, -0.0114545012, 0.0173558071, 0.002498938, -0.0093824137, 0.0110649485, -0.00905088, -0.000150873893, 0.00629914692, 0.00121527945, 0.00476165768, 0.00210627727, -0.0108908936, 0.0177204944, 0.0044425563, -0.00316407811, 0.0057645482, 0.000386962405, 0.00562364608, 0.0217320565, 0.00547445612, -0.000887889648, 0.00539986091, -0.00435552839, -0.0112472922, -0.0163860712, -0.0159467869, 0.00989629142, 0.0185659062, -0.0111229671, -0.0194278955, 0.00819303561, -0.00179857225, 0.00284083234, -0.0165269729, 0.0234228801, 0.0296225678, -0.00502688484, -2.21292503e-05, -0.00900115, 0.0221464746, 0.015184259, 0.0124988332, -0.000126850631, 0.0178199559, -0.0175381508, -0.00480309967, -0.00371318124, 0.0022150618, -0.00426850095, 0.0173060782, 0.0106588192, -0.00769573404, 0.000126008847, -0.013261362, -0.00387894828, -0.000566716, 0.0137586631, 0.00270407461, 0.0028926346, -0.0157064255, -0.00614581257, -0.00440525869, -0.0218812469, -0.0137669509, -0.0201075394, -0.00433895178, -0.0101366537, 0.00593445962, 0.0031557898, -0.012382797, 0.0190963615, 0.00717771193, 0.0207540318, 0.0234394576, -0.00847483892, -0.0148195717, 0.0178531092, 0.00329669169, -0.00311434804, 0.00822204445, -0.00573968329, 0.0207706075, 0.00285740918, -0.0101698069, 0.00574797159, 0.0022461433, 0.000404834165, -0.00335885445, -0.00295894127, -0.0203396138, 0.00124118058, -0.0149936276, -0.007844924, -0.0377617292, -0.0206877254, 0.0252131652, -0.0140570439, 0.00873592217, -0.0200080797, -0.0110483719, -0.00396390399, -0.0371649675, 0.00240776595, 0.000158255702, -0.00541229313, 0.0102361133, 0.00413588714, -0.0184996, -0.0345458463, 0.00656437408, -0.00617067749, 0.00984656159, -0.00289677875, -0.00667212252, 0.00502688484, 0.00971394777, 0.00366137922, 0.0115539618, 0.0085204253, 0.00527968, -0.0128966747, 9.4992276e-05, 0.00561121386, 0.00143284875, 0.0219144, -0.00428093318, 0.0130707296, -0.00140280346, 0.0157064255, 0.0124325268, 0.0263403803, -0.00170118408, 0.00876907539, -0.00365101872, 0.0105510708, 0.0110898139, 0.000537706772, -0.0129215391, 0.00458760234, -0.00417525694, 0.000193740212, -0.00434724, 0.0158804804, 0.0295231063, 0.0164192244, -0.00404678751, 0.00273308391, -0.00461661164, -0.0180520285, 0.00418768963, -0.0392867848, -0.0232736897, 0.00532112131, -0.00695807068, 0.00212596217, 0.00165974232, 0.0141233504, 0.00978854299, 0.0120015321, 0.0234228801, -0.000240491689, -0.00417111255, -0.0107168378, 0.00131266762, 0.00717771193, -0.00329876388, -0.00414417544, 0.00219226885, -0.0215165596, -0.0192289744, -0.0151262414, 0.00142974057, -0.00415868033, -0.0111229671, -0.00190321263, 0.0173060782, -0.0182841029, 0.00450471882, 0.0151262414, 0.00992944464, 0.0101946723, 0.00440940307, -0.0246827099, -0.00285740918, -0.00510976836, -0.00260047, 0.00837123487, -0.00678401534, -0.0110649485, -0.0012214958, 0.0317112319, -0.00155406585, 0.0124573922, -0.000950570276, -0.0127226189, 0.0137420865, -0.0108908936, -0.000552211422, -0.0107582798, -0.000240362191, -0.00538742822, 0.00842925347, -0.0159219224, 0.00699122436, 0.00829249527, 0.00147947064, 0.00230830582, 0.0106422426, 0.00146082195, -0.0118937837, 0.00966421794, -0.00571481837, -0.0219475534, 0.00318272691, -0.00962277595, 0.00797339343, 0.0149936276, 0.0365019, -0.00173122936, -0.0149190323, 0.0183504093, 0.00569409737, 0.0126065826, 0.00737248827, -0.00677572703, -0.00570238568, -0.00360543281, -0.0061582448, 0.007844924, 0.00711140549, 0.00414210372, 0.0163280517, -0.000111698486, -0.00632815622, 0.0140653318, -0.00451715151, 0.00799825881, -0.00135410938, 0.0287440028, -0.00782006, -0.0257436186, 0.0067342855, -0.00701608928, -0.00546202343, 0.0102858441, -0.0019715915, 0.00904259086, 0.0158887692, -0.01990862, -0.0142476754, 0.00643176073, -0.00912547484, 0.000235052459, 0.00644004904, 0.00281389523, 0.00811429601, 0.00650635548, 0.00278695812, 0.0048528295, -0.0568580888, -0.0110898139, 0.00475751376, 0.0194776244, -0.00157893088, 0.0227100831, 0.00265848869, 0.0224614311, -0.00106194499, 0.0348442271, 0.0228758492, 0.0145460563, -0.00965592917, 0.00271029095, -0.0212347563, -0.0028822741, 0.0179857221, 0.0126148704, 0.0187316742, 0.00551589765, 0.0123579316, -0.00520094, 0.00437210547, -0.0092663765, 0.00441769138, -0.00112307165, 0.016651297, 0.00642761635, -0.017107157, -0.0138912769, -0.015225701, 0.00568580907, 0.0167839117, -0.00891826581, -0.0044218353, -0.00448399782, -0.0191295147, -0.0129712699, -0.00881051738, -0.00263569574, 0.0152008366, 0.00432237517, -0.0152505664, -0.00264398404, -0.00209902483, -0.00225857575, 0.0083836671, -0.0172066167, 0.00026509774, 0.00353705394, 0.00111063907, 0.0239533354, -0.0162037257, 0.00384579506, -0.0233731512, 0.00600491045, 0.0121424347, -0.00721500954, 0.0247324407, 0.0106505314, -0.00126397354, -0.0219807066, -0.0118274773, 0.00157996698, 0.00961448718, -0.0201572701, 0.00170843641, -0.00527968, 0.012714331, 0.0118937837, -0.00701608928, -0.0249810908, 0.0178531092, -0.00918349344, -0.00164523767, 0.0291086901, -0.00924151205, 0.00933268387, 0.00355155859, 0.0163777824, 0.0197428521, 0.00459174672, -0.00515949866, -0.0159219224, 0.0122336065, 0.000991494, -0.020289883, 0.00949016213, -0.00671356451, 0.00683374563, -0.00117072964, 0.00973052438, 0.00221298984, -0.00279317447, 0.00547445612, 0.00325732213, 0.00145771378, -0.0224780086, 0.00567752076, 0.00794852898, 0.00528796809, -0.0148195717, 0.00136239768, -0.00765429251, 0.0252628941, -0.0102444021, -0.00611265888, 0.00464562094, 0.00410480611, 0.0285782348, 0.0329876393, -0.0244672131, 0.00506418245, 0.00200785301, 0.0248484761, -0.000750095758, -0.000945390086, 0.0161208436, -0.0220304374, -0.0245666727, -0.0153417382, -0.0178033784, 0.019577086, 0.00943214353, -0.00870276894, 0.0145626329, -0.0209529512, 0.0130292885, -0.0213673692, -0.0186322127, 0.0190797839, -0.00320759183, -0.00636959774, -0.0128137907, 0.0137586631, -0.0236549545, 0.0206545703, 0.0334020555, -0.0104433224, -0.00152194849, 0.0184664465, 0.00943214353, 0.00187109527, 0.00271650706, -0.0233731512, -0.000836087449, -0.0168585069, 0.0161622856, -0.0165186841, -0.00559878116, -0.0111809857, -0.00209177262, -0.00802726857, 0.00537085161, -0.0124988332, -0.0205219574, -0.015184259, 0.00579770189, -0.0180023, -0.0244009066, 0.00686275493, -0.0197760053, -0.00433480786, 0.00861988496, -0.00944872, 0.00458345842, -0.00754239969, 0.00838781148, -0.0110235075, 0.00206483551, 0.0157395788, 0.0259591155, -0.0162866097, 0.00890997797, 0.00754654361, -0.0112141389, -0.0161539968, -0.0014276685, 0.0188808646, 0.000190243562, 0.0112307156, 0.0184167158, -0.00736005604, -0.00827177428, 0.00555733964, -0.0149770509, -0.0110483719, 0.0119518023, 0.00328218704, 0.00435967278, 0.00851213653, 0.0306337457, -0.00114379241, -0.00674257381, 0.0067259972, -0.00548274443, -0.0065105, -0.0103770159, 0.00245128, -0.00778690586, 0.00735591166, 0.0284290444, 0.0135846073, 0.00062059029, -0.0190466307, -0.000321432628, 0.00654779747, 0.0124159502, -0.0224282779, -0.00799411442, 0.0142559642, 0.00909232162, -0.00886024721, -0.0160048064, -0.0279317442, 0.00308326655, -0.0205716882, 0.00985484943, -0.0084416857, -0.00419390574, 0.01573129, 0.00106194499, 0.0177039187, 0.0158224627, 0.0226603523, -0.00594689185, 0.0167921986, 0.0271692146, 0.0175381508, -0.0066472576, 0.00795267336, -0.00462075602, 0.00792366359, -0.00656023, 0.00423120335, 0.00200578105, -0.0106919734, 0.0143802892, 0.00902601425, 0.0236218013, 0.0328550227, 0.0215165596, -0.0152920084, -0.00525067048, 0.00184001401, 0.0190134775, 0.0202401541, -0.0322914161, 0.0123164896, -0.00920835789, -0.0205882639, 0.00799825881, 0.00343137747, -0.00176438282, 0.00678401534, 0.0192621276, -0.00702023366, 0.0092663765, 0.0067259972, 0.01321992, 0.00611265888, 0.00357435155, 0.0169496778, 0.0144465966, -0.0199749265, -0.0150847994, -0.000509992591, -0.00177059905, -0.0147781307, -0.0184830241, 0.00952331536, -0.0187648274, -0.0173060782, -0.0303187892, -0.00982998498, 0.0126231592, -0.00341065647, 0.00933268387, 0.00500202, 0.00338579156, -0.00677572703, -0.0146620935, -0.0201572701, 0.000706063933, -0.00175091415, -0.0106753968, -0.0274510197, 0.0102195367, 0.000570342178, 0.0144631732, 0.000314957346, -0.0106173782, 0.00898457319, -0.0103272852, -0.0205219574, 0.00967250578, 0.0115622496, -0.019991504, 0.00319723156, -0.011504232, 0.0235886481, -0.0372644253, -0.00236839638, 0.00702852197, -0.00730618183, -0.00502274092, -0.0182012189, -0.0224614311, -0.00520094, -0.00167321088, 0.00558220455, 0.0167590454, -0.00731032575, 0.0145874983, -0.0169911198, -0.00257353298, -0.00730203744, -0.0208037607, -0.00390381343, 0.0071569914, -0.0033132683, -0.0152422776, -0.00631986791, -0.00620797509, 0.00895141903, 0.0150930872, 0.0118274773, 0.00179753616, 0.00613338, -0.00143492082, 0.00137897441, 0.00164212962, 0.0149687622, -0.0137503743, 0.000459744479, 0.0106505314, 0.00698708, -0.00975539, -0.00127122586, -0.0126563124, -0.00115104474, 0.0164026469, 0.00233109877, -0.00215289928, 0.0178531092, -0.0195107795, -0.0270697549, 0.00742221856, 0.0249976665, -0.0316117704, -0.0235389173, 0.00483625289, 0.00793609675, -0.00222749449, 0.00544959074, -0.0104516111, 0.0137835285, -0.0191958211, 0.0165435486, -0.00467048585, 0.0183006786, -0.00905088, -0.0186487902, -0.031877, -0.00975539, 0.00190321263, -0.000835569401, -0.0229090024, -0.0255778525, -0.0234228801, 0.0118772071, 0.00312056416, -0.0075009577, 0.0662736595, 0.0193781648, 0.00892655458, -0.0350763, -0.00410480611, 0.00282632769, 0.00039007052, 0.052117154, 0.00731032575, 0.0100371931, -0.028777156, -0.00365516287, -0.00429751026, -0.0114876544, -0.00181100471, -0.0231245, 0.00982998498, -0.0194278955, -0.00710311718, -0.00141316385, 0.00516364258, -0.0192621276, -0.00588058541, -0.015308585, -0.0142476754, -0.00679230364, -0.0114545012, -0.00821375567, -0.0109903533, 0.00191875326, -0.00620383071, 0.0233731512, 0.0173060782, -0.0359714441, -0.0194776244, 0.000581738655, 0.0179028381, 0.00332984515, 0.0128966747, -0.00766672473, -0.00891826581, 0.00306461798, -0.00927466527, 0.00801898, 0.014554345, -0.00614995649, -0.00386444386, -0.00411516661, 0.00454616081, -0.0206048414, -0.0122418944, -0.00256317272, -0.00455030473, -0.0085784439, 0.0126148704, 0.0184996, 0.0202733073, -0.00754654361, -0.00858673174, 0.0162783209, 0.0170242731, 0.00674671773, 0.00990457926, -0.00116658548, 0.00515535427, -0.0080397008, -0.0347116143, -5.37771521e-05, 0.00659752777, 0.000694149407, -0.00902601425, -0.0103935925, -0.0031288527, 0.00711554941, 0.0214336757, 0.00239947764, -0.0177536476, 0.0207871851, 0.00327804289, -0.022129897, -0.00246371236, 0.0146620935, -0.0345458463, -0.00726474, -0.0145377684, 0.00095937663, -0.0235886481, -0.00842925347, -0.0154411979, 0.0159550756, 0.0122004533, 0.0279151667, -0.00482796459, -0.00308326655, -0.00910060946, 0.0210524127, -0.00590130594, 0.0196268149, 0.0366013572, 0.00182032911, 0.0340817, 0.00129919907, -0.0136923566, 0.00306669, -0.00726888422, 0.022295665, 0.0155406585, -0.000112087, 0.0121672992, 0.00236632419, -0.00822204445, -0.00369660463, 0.0106919734, 0.0336507075, 0.00539571652, -0.0100206165, -0.0155406585, 0.00674671773, 0.00854529, -0.00386444386, 0.0143802892, 0.00743465126, -0.0132945152, -0.0019156452, -0.00379606476, -0.00623284, -0.00250101, 0.0115208086, -0.000226634598, -0.0057645482, -0.0122170299, -0.00924151205, 0.0017560944, 0.0058432878, 0.0192289744, 0.0239533354, 0.00110960298, 0.0160628241, -0.00813501701, 0.0075382553, 0.00638617482, -0.00691662915, 0.0190963615, 0.0159550756, -0.00933268387, 0.00138933491, 0.014264252, -0.0126977544, 0.00851213653, 0.0132447854, -0.00464147655, 0.0058432878, -0.00762942713, -0.0185493305, -0.00978854299, -0.0143637126, -0.00688762, -0.013021, 0.00191668118, -0.00564436708, 0.00975539, 0.000226246091, 0.0250805505, 0.00739735365, 0.0137752397, -0.0189637467, 0.00748023717, 0.0177868, 0.0270366017, 0.0280809347, 0.00995431, 0.00542887, 0.00984656159, 0.0166595858, 0.00931610633, 0.0183835626, 0.0129629811, 0.00119041442, 0.00517193135, -0.0113964826, -0.0015405973, 6.62096791e-05, 0.0122833364, 0.0495974943, -0.000479688315, -0.0156981368, 0.000839195563, 0.00681716902, 0.0365350507, -0.0029029951, -0.020455651, 0.00298795057, -0.0196102392, -0.00696221506, -0.0340485461, -0.00607950566, 0.0310978945, -0.00881051738, -0.0229587331, -0.0070782518, -0.000164860481, -0.00774960825, 0.0089016892, 0.00885195937, 0.00131266762, 0.0259093866, 0.0333523266, 0.0113301761, 0.00121735153, -0.0124739688, -0.009705659]
14 May, 2024
Optional Property Class in TypeScript 14 May, 2024 TypeScript is an Object Oriented Programming language that allows you to create classes with optional properties which may or may not be assigned with a value. We will discuss two different ways of creating optional property classes in TypeScript: Table of Content By using the Question Mark(?)By assigning the properties with default valuesBy Using Partial TypesBy using the Question Mark(?)The optional properties can also be created by declaring the properties with a question mark symbol just after the name of the property. The question mark symbol tells the TypeScript compiler that the declared property is optional. Syntax:class className { property1: type; property2?: type; property3?: type; }Example: The below code example uses the question mark symbol to define a class with optional properties in TypeScript. JavaScript class optionalPropClass { name: string; company?: string; age?: number; constructor( name: string, company?: string, age?: number) { this.name = name; this.company = company; this.age = age; } } const employee1 = new optionalPropClass(&quot;Employee 1&quot;); const employee2 = new optionalPropClass(&quot;Employee 2&quot;, &quot;company 1&quot;); const employee3 = new optionalPropClass(&quot;Employee 3&quot;, &quot;company 2&quot;, 32); console.log(` Employee Name: ${employee1.name}, Company: ${employee1.company ? employee1.company : &quot;N/A&quot;}, Age: ${employee1.age ? employee1.age : &quot;N/A&quot;} `); console.log(` Employee Name: ${employee2.name}, Company: ${employee2.company ? employee2.company : &quot;N/A&quot;}, Age: ${employee2.age ? employee2.age : &quot;N/A&quot;} `); console.log(` Employee Name: ${employee3.name}, Company: ${employee3.company ? employee3.company : &quot;N/A&quot;}, Age: ${employee3.age ? employee3.age : &quot;N/A&quot;} `); Output: Employee Name: Employee 1, Company: N/A, Age: N/A Employee Name: Employee 2, Company: company 1, Age: N/A Employee Name: Employee 3, Company: company 2, Age: 32By assigning the properties with default valuesIf the properties of a class are initialized with some initial or default values, then either you pass or omit the values of those properties while creating an instance will not throw an error and it uses the provided default values in the case you omit passing the values. Syntax:class className { property1: type; property2: type = initialValue; property3: type = initialValue; }Example: The below code example implements the default values approach to create optional properties class in TypeScript. JavaScript class optionalPropClass { name: string; company: string = &quot;GeeksforGeeks&quot;; age: number = 25; constructor( name: string, company: string = &quot;GeeksforGeeks&quot;, age: number = 25) { this.name = name; this.company = company; this.age = age; } } const employee1 = new optionalPropClass(&quot;Employee 1&quot;); const employee2 = new optionalPropClass(&quot;Employee 2&quot;, &quot;company 1&quot;); const employee3 = new optionalPropClass(&quot;Employee 3&quot;, &quot;company 2&quot;, 32); console.log(` Employee Name: ${employee1.name}, Company: ${employee1.company}, Age: ${employee1.age} `); console.log(` Employee Name: ${employee2.name}, Company: ${employee2.company}, Age: ${employee2.age} `); console.log(` Employee Name: ${employee3.name}, Company: ${employee3.company}, Age: ${employee3.age} `); Output: Employee Name: Employee 1, Company: GeeksforGeeks, Age: 25 Employee Name: Employee 2, Company: company 1, Age: 25 Employee Name: Employee 3, Company: company 2, Age: 32By Using Partial TypesIn TypeScript, you can leverage partial types to define classes with optional properties. Partial types allow you to specify that all properties of a type are optional, which aligns well with creating classes with optional properties. Syntax:class ClassName { property1: type; property2?: type; property3?: type; }property1: Required property.property2 and property3: Optional properties.By using partial types, you can explicitly declare that certain properties may or may not be assigned values when creating instances of the class. Example: In this example Class OptionalPropClass has optional properties: company and age. Instances are created with various property combinations. Displayed information shows properties or "N/A" if undefined. JavaScript class OptionalPropClass { name: string; company?: string; age?: number; constructor( name: string, company?: string, age?: number ) { this.name = name; this.company = company; this.age = age; } } // Creating instances of OptionalPropClass with various combinations of properties const employee1 = new OptionalPropClass("Employee 1"); const employee2 = new OptionalPropClass("Employee 2", "Company 1"); const employee3 = new OptionalPropClass("Employee 3", "Company 2", 32); // Displaying information about the created instances console.log(` Employee Name: ${employee1.name}, Company: ${employee1.company ? employee1.company : "N/A"}, Age: ${employee1.age ? employee1.age : "N/A"} `); console.log(` Employee Name: ${employee2.name}, Company: ${employee2.company ? employee2.company : "N/A"}, Age: ${employee2.age ? employee2.age : "N/A"} `); console.log(` Employee Name: ${employee3.name}, Company: ${employee3.company ? employee3.company : "N/A"}, Age: ${employee3.age ? employee3.age : "N/A"} `); Output: " Employee Name: Employee 1, Company: N/A, Age: N/A " " Employee Name: Employee 2, Company: Company 1, Age: N/A " " Employee Name: Employee 3, Company: Company 2, Age: 32 " 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.
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript
https://www.geeksforgeeks.org/optional-property-class-in-typescript?ref=asr10
PHP
Optional Property Class in TypeScript
jQWidgets jqxSortable disabled Property, Node.js Stream transform.destroy() Method, jQWidgets jqxSwitchButton enable() Method, Convert string into date using JavaScript, jQWidgets jqxSplitter height Property, How to Declare Optional Properties in TypeScript ?, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxTree checkAll() Method, jQWidgets jqxScrollBar rtl Property, jQWidgets jqxScrollBar step Property, jQWidgets jqxTabs position Property, jQWidgets jqxTooltip height Property, How to Make a Single Property Optional in TypeScript ?, jQWidgets jqxTreeMap width Property, Optional Property Class in TypeScript, jQWidgets jqxTree collapseItem() Method, jQWidgets jqxTabs keyboardNavigation Property, jQWidgets jqxTree destroy() Method, jQWidgets jqxTree collapseAll() Method, jQWidgets jqxSortable opacity Property, jQWidgets jqxScrollView buttonsOffset Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, jQWidgets jqxTabs disabled Property, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Node.js date-and-time Date.transform() Method, jQWidgets jqxListBox enableHover Property, jQWidgets jqxSlider height Property, TypeScript Optional Parameters, jQWidgets jqxSwitchButton onLabel Property, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, jQWidgets jqxToolBar theme Property, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxSplitter orientation Property, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxSlider buttonsPosition Property, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, jQWidgets jqxSwitchButton orientation Property, jQWidgets jqxToolBar tools Property, jQWidgets jqxSlider rtl Property, How to use Optional Chaining with Arrays and Functions in TypeScript ?, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTooltip opacity Property, jQWidgets jqxTree width Property, jQWidgets jqxScrollBar showButtons Property, jQWidgets jqxScrollView showButtons Property, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, jQWidgets jqxTree clear() Method, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView disabled Property, jQWidgets jqxScrollView animationDuration Property, jQWidgets jqxToolBar height Property, PHP, How to Sort an Array Having Optional Properties in TypeScript ?, jQWidgets jqxSplitter destroy() Method, jQWidgets jqxTreeMap destroy Method
GeeksforGeeks
[-0.0117118834, 0.0117799323, -0.0177379455, 0.0479967967, 0.0253593661, 0.0101770144, 0.00991238188, 0.0016048078, 0.00340241939, 0.00125605986, 0.0173750222, 0.00116343843, 0.0139347976, -0.0512026325, -0.0313325, -0.0309090894, -0.0674435124, 0.00125038915, -0.0301076304, -0.00104151841, -0.00567447953, 0.0149555234, -0.0461519286, -0.0199911036, -0.00141578447, 0.0104038427, 0.0116513958, 0.0251627807, -0.0120143211, -0.00559509, -0.00694471598, 0.00869507156, 0.00573496707, -0.033752, -0.0307881143, -0.00819605, 0.0189628173, 0.00547033409, -0.014471624, 0.0117270052, 0.00152352778, -0.0501441024, -0.00566313788, -0.0106382314, 0.0144489408, 0.0115228603, -0.00770458952, -0.0113111539, 0.00346101657, -0.0169516094, -0.0168608781, 0.000222693081, 0.0524426252, 0.0340846814, 0.0136626037, 0.0203389078, 0.0234540105, 0.00342699233, -0.000895497855, -0.00449119369, 0.0328144431, -0.0690766722, -0.0211554877, -0.0246486384, 0.00307540898, 0.0337822437, -0.022047678, 0.0226374306, -0.00971579738, -0.0209891479, -0.0381070971, -0.00100276864, 0.0133904107, 0.0454563238, 0.0186452586, 0.00566691859, 0.00782556459, 0.0205506124, -0.022455968, 0.0276881326, 0.0071413, 0.0195525698, 0.00665740063, 0.0247696135, -0.028293008, -0.0110843265, 0.0189476963, -0.0417363457, 0.0259793624, 0.0265237484, 0.00379936839, 0.000890772324, 0.0209437814, 0.00124944397, -0.0187813547, 0.0240135193, -0.0147740608, -0.00784068648, 0.00402241573, 0.0368368588, 0.0242101047, 0.042099271, 0.0140935769, -0.0110767651, 0.00926970225, -0.0452143736, 0.0251779035, 0.0290188566, 0.0518679917, -0.00522460416, 0.0175111182, 0.0256920476, -0.0379256345, 0.0389841646, -0.0172238033, 0.0210345127, -0.0346895568, -0.0760327354, 0.0109482296, -0.00641167024, -0.0176320933, 0.0330563933, -0.0245125405, 0.0167247821, -0.0356876, 0.0241798609, -0.00612057419, 0.0048957034, 0.00600338, 0.0273252074, 0.00850604847, -0.0149706453, -0.011296032, -0.000917235564, 0.0111145703, 0.0261910688, 0.0400426947, -0.0209437814, -0.0313325, 0.0169364884, -0.0250266846, -0.0151672298, 0.0284744706, -0.0101316487, 0.00307162851, -0.00370107614, -0.000382772181, 0.0445792563, 0.0141162602, 0.00614703773, -0.0513538495, -0.0209135376, 0.0227886494, 0.025646681, 0.00238358369, 0.0284744706, -0.00512631191, 0.0039127823, -0.0287164189, 0.0343568735, 0.0180857498, -0.0430973135, -0.0279905703, 0.0250569284, 0.000171656779, 0.00730008, 0.0139801633, 0.0366554, -0.0584913678, 0.0200062264, 0.00646459684, -0.0151143027, 0.0288676377, 0.0316651836, -0.034417361, -0.035354916, -0.00328333466, -0.002806996, 0.0280964226, -0.0402241573, -0.0127855362, 0.0234388895, -0.00204145163, -0.0102450624, 0.0313627459, -0.00809019711, 0.0320885964, -0.0100862831, -0.0482387468, -0.047966551, -0.0384397767, 0.0427041426, 0.0267354548, 0.0477246, -0.0116135916, 0.00375400274, -0.0318768881, -0.00902775303, -0.0528962798, 0.00743617676, 0.014622842, -0.0293061715, -0.0273554511, 0.0189476963, 0.00873287674, -0.0239379108, -0.00871775486, -0.0153335696, 0.0544387102, -0.009231898, -0.0313627459, 0.0184940398, 0.0118555417, -0.0146379638, -0.00840019528, -0.00508472696, -0.000185360972, 0.000639371283, -0.0241798609, -0.0249813199, -0.00896726549, 0.00485789869, -0.0228793807, 0.0170272179, -0.059368439, 0.0139272362, 0.0112657882, 0.00491460599, 0.0400729403, 0.0226223078, 0.0533196926, 0.0317861587, -0.0213218275, -0.0441255979, 0.0271891113, 0.0255408287, 0.0143733313, -0.0121957837, 0.0112733496, 0.0473314337, 0.00896726549, -0.0105928658, -0.0235447418, -0.0257979, -0.0121579785, 0.00545143196, -0.00804483145, 0.0476036258, 0.0376836844, 0.0242554694, 0.00756471232, -0.0245579071, 0.0130577292, -0.00780288177, -0.0319676213, -0.00649106, 0.00691447221, -0.015016011, 0.00507338531, 0.00960238371, 0.0362622291, -0.011091887, 0.00526240887, 0.0184940398, 0.0387422144, -0.0260549709, 0.0399217196, -0.0455470532, -0.0161501504, 0.0299866553, 0.0479060635, -0.0340846814, 0.0357480869, 0.0554065108, -0.0317861587, -0.0130048031, -0.0101316487, 0.00513765309, -0.00248943688, 0.0112809101, 0.0150008891, -0.00743617676, 0.0256013162, 0.00733410381, 0.00823385455, -0.0504162945, -0.0254803412, 0.029230563, -0.0376836844, -0.00556862634, -0.0395587943, -0.00781044271, -0.0309998207, 0.010887742, 0.0308788456, 0.00943604298, -5.83609435e-05, -0.0105928658, 0.00286559318, 0.00996530801, -0.0239681546, -0.0380466096, -0.000438770337, -0.0187511109, -0.0116211521, 0.032270059, 0.0595499, -0.0319978632, -0.000316614023, -0.00460460735, -0.00768946763, 0.0176018495, -0.0409500077, -0.0184940398, -0.0209286604, 0.0259793624, 0.0776658952, 0.00444582803, -0.0721010491, -0.00111145701, -0.0136096776, -0.00737568922, -0.034145169, 0.0021851093, 0.0233632792, -0.00485033775, -0.0345080942, 0.025314, 0.0158325918, -0.0563138202, -0.0463333912, -0.0263725314, -0.0348710194, 0.027899839, 0.0420085378, -0.0156511292, 0.00516411662, -0.0149252797, -0.0596708767, -0.000886519265, 0.00655154744, -0.0165886842, 0.0245881509, 0.0371090546, 0.0454563238, -0.0294725131, -0.0178740434, 0.00240626652, 0.00996530801, 0.0320885964, 0.00143752224, 0.0322398134, 0.0339334644, -0.0102753062, 0.0399519652, 0.00815824512, 0.00713373907, -0.0165433194, 0.0105550606, -0.00067056017, 0.00886141229, -0.00187700137, -0.0239681546, 0.0515655577, 0.0223047491, -0.0106835971, 0.00833970774, 0.0215032902, -0.0185847711, -0.0163013693, -0.0168608781, 0.00208870741, 0.0205959789, -0.0223954804, -0.0311510395, -0.00810531899, 0.00435131649, 0.00390522135, -0.0101392101, 0.0236203521, 0.000737663417, 0.034417361, 0.0281417891, 0.0230003558, -0.00947384816, 0.00201120786, -0.00681618, -0.0198701285, -0.00301492168, 0.0105323782, -0.0154621061, 0.062181104, 0.0339334644, -0.0131182168, -0.00775751611, 0.0144489408, -0.00781044271, -0.0179950185, 0.0120370034, -0.0255408287, -0.0138743101, 0.0211706087, -0.00736056734, 0.0123091973, -0.00761763891, -0.0226827953, -0.0201423224, 0.0110540828, 0.0366856419, 0.0261154585, -0.0244671758, -0.0079994658, -0.024845222, 0.0224710889, 0.0137987006, 0.0203993935, 0.0230457205, 0.0568884537, 0.00378613663, 0.00109066442, 0.05313823, 0.0128006581, -0.0125360256, 0.00293175131, 0.0227886494, 0.0177530684, -0.0322095715, 0.00435887743, 0.0242403485, -0.0336612687, -0.00728117768, 0.000135387934, 0.0112884715, -0.0324817635, -0.00530021312, -0.0393470898, 0.0262515564, 0.00165867945, 0.00691447221, -0.0163618568, -0.0170272179, 0.0275217928, 0.00729251886, -0.0241496172, -0.00984433386, 0.00833214726, -0.0613645241, -0.00989726, 0.00210382929, 0.00382016087, -0.00192992785, -0.00118895655, -0.0492065437, 0.0061243549, 0.0190233048, -0.0212008525, 0.0191594, -0.0195374489, 0.0169213656, -0.0154847885, -0.0148572316, -0.0117421271, 0.0194164738, 0.022849137, -0.000605347101, 0.0248754658, -0.0142674781, 0.0140482113, -0.00578411296, 0.0275671575, 0.0145245502, 0.0143884532, 0.0252232682, 0.0178589206, 0.0178589206, -0.0142447958, -0.0215940215, 0.000804766722, -0.00379369757, -0.0120899305, 0.0405870825, 0.0275217928, 0.0331168808, 0.0154847885, -0.0250569284, -0.000392459624, 0.0596406311, 0.00982921198, 0.0407080576, 0.0165584404, 0.0138969934, 0.004615949, -0.00933019, -0.0179798957, 0.015084059, -0.0302134845, -0.00827922, -0.057795763, 0.0263725314, 0.0327842, 0.00628691493, -0.00596935581, -0.0312115271, 0.0221988969, 0.0112506663, -0.0335100517, -0.0371997841, 0.0204145163, -0.0231364518, -0.0490553267, 0.00179477618, -0.003886319, 0.0145321116, 0.0416153707, -0.00345156551, -0.0262666773, -0.027899839, 0.00809775852, 0.00815068465, 0.00988213811, 0.00919409283, -0.0248603448, 0.0128762675, -0.00180800783, -0.0336915143, 0.0144565022, 0.00449119369, -0.0297295842, -0.00628691493, -0.00605252618, -0.0365041792, -0.00947384816, 0.0111674964, 0.032421276, -0.00570850354, -0.00573874731, 0.0210798774, 0.0264178962, 0.0161501504, 0.0128460238, -0.0309998207, 0.0314232334, -0.0259491187, 0.000378519151, -0.00629069516, 0.0246032719, 0.0279452037, -0.0375627093, 0.0265086275, 0.0222896282, -0.00781800319, 0.0319373757, -0.00812800229, 0.000527847558, -0.018463796, -0.0394983068, -0.0321490839, 0.018856965, 0.000206626093, -0.0407383032, 0.0211101212, -0.016739903, 0.0446095, -0.00483143562, 0.014146504, -0.0329959057, 0.003886319, 0.0285349563, -0.00230986462, 0.0174203869, 0.0169364884, -0.0308788456, 0.00760629773, 0.0213218275, -0.00422656117, 0.0311510395, 0.0288071502, -0.0361715, 0.0430973135, 0.00807507522, -0.0120445648, 0.0125965122, 0.0148723535, -0.00353851612, -0.0274310615, 0.00913360622, -0.00632093893, -0.0162711255, -0.0302739721, -0.0295783654, 0.0248301011, 0.0257827789, -0.00284480071, 0.0271891113, 0.0186603796, 0.017934531, 0.00739459135, -0.00515277497, 0.00947384816, -0.0126116341, 0.0168155134, 0.0053682616, -0.00806751475, 0.019658424, -0.0107365232, -0.00538716419, -0.00448363274, -0.0266447235, -0.0163618568, -0.0012456635, -0.0418875627, -0.0071564219, 0.0178438, -0.00828678161, 0.0191291571, 0.00128252304, -0.0263725314, 0.0129065104, -0.0370485671, -0.00192047667, 0.0115077384, 0.000851549965, 0.0365344249, -0.00685776537, -0.00615459867, -0.00899750926, 0.000310943316, -0.0121277347, 0.0115984697, -0.0289886128, -0.0329354182, -0.018993061, -0.00160764321, -0.000825086725, 0.0164374653, 0.0348710194, 0.0252686348, 0.0119235897, -0.00151691202, -0.0141843082, 0.0053720423, 0.0131182168, -0.00846824422, 0.0957516432, -0.0180555061, 0.0234691333, -0.0378349051, 0.0376534425, 0.025374487, -0.0256013162, -0.0117421271, -0.0337217562, 0.0452748612, 0.0104038427, 0.0130350469, 0.000267940515, -0.0174506307, -0.0255710725, -0.00150746084, -0.00717910472, -0.00672544912, -0.0431880429, 0.0348407738, 0.0283383727, -0.00260852161, 0.0185847711, -0.0184335522, -0.0164828319, -0.00160858827, 0.00118139561, -0.0117421271, -0.0264632627, -0.0186150149, 0.00627557375, -0.0125209037, -0.0522611625, -0.0240135193, 0.00971579738, 0.00898994785, -0.0163921, -0.0169213656, -0.0149025973, 0.0146984514, 0.0234388895, 0.013345045, -0.00650996249, -0.0034137608, 0.0158930793, -0.026962284, 0.0229096245, -0.00709593482, -0.00305839698, 0.0250418074, -0.00599959958, 0.0226374306, -0.0147211347, -0.00736434758, 0.00283345929, 0.00603362359, -0.0191745237, 0.0237110835, -0.0348407738, -0.0354758911, 0.0334193185, 0.00268602115, 0.0331168808, 0.00692959409, -0.00427192636, -0.00247620512, 0.0202330537, 0.0202330537, 0.0329051763, 0.0205354914, 0.00130237057, 0.00178721524, -0.00634362176, -0.00368406414, 0.00833970774, -0.0131333387, 0.0011086216, -0.0163921, -0.0191140361, 0.0117421271, -0.0529567674, -0.0225467, 0.00129575469, -0.01938623, 0.00402241573, -0.016210638, -0.00226827967, -0.00108121324, 0.00585594168, 0.0396192819, -0.00424924353, 0.00614325702, -0.0107818889, 0.00929994602, 0.00247242465, 0.00116154819, -0.0300773866, 0.0242252257, 0.00992750376, 0.00951921288, 0.00951921288, -0.0317861587, 0.0222140178, 0.0312115271, -0.028958369, 0.00274083787, 0.0299110468, -0.0165281966, -0.0461216867, 0.0160594191, -0.0217301194, 0.00509984838, -0.0203389078, -0.00579545414, 0.0190081839, -0.00836995151, -0.0157872252, 0.00893702172, 0.0284593478, -0.0109482296, 0.0140255289, -0.00390144088, -0.00272949645, 0.000348511705, 0.000613380631, -0.002824008, -0.0236505959, 0.017269168, 0.0203993935, 0.0503255613, -0.0021851093, -0.0230154768, 0.0292910505, 0.0010093844, -0.0438534059, -0.018070627, -0.00525106722, -0.00140633329, -0.00878580287, -0.0152277173, -0.0257374123, 0.0120748086, -0.0206564665, 0.0155301541, -0.0157267377, 0.00824897643, 0.00727361673, -0.000432863366, 0.0194769613, -0.00198474457, 0.0337822437, 0.0151823517, -0.028293008, -0.00320205465, -0.00902019162, 0.026175946, -0.0265086275, -0.00922433659, -0.00246864418, 0.0173599, 0.00994262565, -0.00387875806, -0.00305461651, -0.0191594, -0.004283268, 0.00241760793, -0.00676325383, -0.00557240704, -0.0053720423, -0.0205808561, 0.000821306254, 0.0105853043, -0.0200364701, 0.00258583878, 0.0162862483, -0.00669142464, 0.0163769778, 0.0250418074, -0.0251476597, 0.0270227715, -0.0353851616, -0.020323785, 0.0237564482, 0.0345080942, -0.00951921288, 0.0176169723, 0.0105248177, -0.0254047308, -0.0250115637, -0.0212915838, 0.033358831, -0.0196433011, 0.0146304034, -0.00169837428, 0.00790873449, 0.0224408451, 0.00558752893, -0.00920921471, -0.0112884715, -0.0261305813, -0.026962284, 0.0103509156, 0.0190686695, 0.0167247821, 0.0141389426, 0.0195223261, 0.00570094259, 0.0364739373, 0.0452446155, 0.000671505288, 0.042250488, 0.0161199067, 0.0154696666, -0.0159838106, -0.00812044088, 0.00478228927, -0.0128006581, 0.0148723535, 0.00656288909, 0.0179798957, 0.0198701285, -0.0104718907, -0.0172994118, -0.00971579738, -0.0178891644, -0.0382280722, 0.00125133421, -0.0192803759, 0.00261041173, 0.00562155293, 0.0221081655, -0.0129443156, -0.00172011205, -0.0443977937, -0.00611301372, 0.0132543137, -0.00824897643, 0.0278695952, 0.00715264166, -1.90057017e-05, -0.0323910341, 0.0324817635, 0.0164677091, -0.00151880225, -0.0141918696, 0.00124944397, -0.00992750376, 0.0146908909, 0.00416229293, 0.000306454021, -0.0448816903, 0.0238925442, 0.0419782959, 0.000576521037, -0.00483143562, 0.0119235897, 0.00873287674, 0.00702410564, 0.0202481765, 0.00451765675, 0.028035935, 0.016195517, -0.000287315401, 0.00734166475, 0.00513009215, -0.018856965, 0.0191442799, 0.018463796, 0.0210193917, -0.0220023114, -0.0409802496, -0.00646081613, 0.0136399213, 0.00128724868, 0.0248754658, 0.00357443048, -0.0162257608, -0.000332917291, 0.00658179121, -0.00295821461, 0.0172086805, 0.0044760718, -0.0164223444, -0.034266144, -0.00975360256, -0.00737568922, -0.00480119186, -0.0129972417, 0.0277939867, -0.00420387834, 0.0168155134, 0.0206564665, 0.000260143308, 0.0196886677, 0.0198701285, -0.0326632261, -0.0189325735, 0.0239681546, 0.0407685451, -0.0174052659, 0.00750422478, -0.0437626727, -0.0164525881, -0.0195374489, 0.00827922, 0.00853629224, 0.00454412028, -0.0195828136, 0.0060714283, 0.00886897277, -0.0174355097, 0.0175867286, -0.0231062081, -0.0285198353, 0.0303798243, 0.00195828127, 0.0242403485, -0.0171028282, 0.00327199325, -0.0205354914, -0.016876, 0.0167550258, 0.00796166155, 0.0132467523, -0.026160825, -0.00660825474, -0.0219418239, -0.00312077464, 0.00460460735, 0.0508094616, 0.0289734919, 0.0048957034, -0.0357178412, 0.012679683, -0.0116967615, -0.00256882655, -0.0057916739, 0.00589752709, -0.0244369321, -0.0039997329, -0.0239832755, 0.0161501504, -0.0283383727, 0.019265255, -0.0254954621, -0.0383490473, 0.0100257955, 0.00123904773, 0.0104870126, -0.0143884532, -0.00295065367, -0.0257525351, -0.029623732, 0.00596935581, 0.0295783654, 0.00983677246, -0.00900507, -0.0141011383, -0.022576943, -0.00645325519, 0.0153940571, 0.0151974736, 0.00015240004, 0.05501334, -0.00499399565, -0.0357178412, -0.0104643302, -0.0265086275, -0.0401334278, -0.0110389609, 0.00171727664, 0.00398461102, 0.00410936633, -0.0109406682, 0.0323305465, 0.00859678, -0.0214730464, -0.00024596657, -0.00121636491, 0.0161199067, -0.00852117, 0.0105550606, 0.0216242652, -0.000172483764, -0.0105399387, -0.0232876707, 0.00289583695, 0.00127968774, -0.0145321116, 0.0191594, -0.00012747258, 0.0273252074, 0.0198852513, -0.00250455877, -0.0534709096, 0.0113565195, -0.00361601566, 0.034417361, -0.00873287674, 0.0152655216, -0.0149025973, -0.0277788639, 0.00471802149, 0.0137911402, 0.00276730116, 0.00805995334, 0.0252837557, -0.0226374306, 0.00703166658, -0.00146776589, -0.0133526055, -0.00173239852, -0.00193276326, -0.0288676377, -0.00939823873, 0.029351538, 0.0075269076, -0.0196886677, -0.0208379291, 0.00474826526, -0.0241949819, -0.0194164738, 0.0292154402, -0.00742483512, -0.0153940571, -0.00152636319, -0.00166624039, 0.00217754836, 0.029744707, -0.0194164738, -0.0137382131, 0.012951876, 0.00454790052, 0.0257525351, 0.0093150679, -0.0105853043, -0.0213369504, 0.00823385455, 0.010494574, 0.0272042323, -0.00864214543, -0.01938623, -0.00445716921, 0.00885385089, -0.0101845758, -0.0205354914, -0.0133526055, 2.83534955e-05, 0.00886141229, -0.0239379108, 0.0186150149, 0.00167569157, -0.0120445648, -0.00565935764, 0.0865575522, 0.0181916021, 0.0115984697, 0.0103055499, -0.0296086092, -0.0417363457, -0.00193370832, 0.0119840773, 0.0282022767, -0.0187662337, 0.0330866389, -0.00925458, -0.000800041133, 0.0116513958, -0.04146415, 0.0202028099, 0.0076252, -0.00742483512, 0.0267808214, -0.0418573208, 0.00946628675, 0.0100938445, 0.00407156209, 0.00769324834, 0.00217187777, 0.00920921471, -0.0208984166, -0.0319071338, -0.00837751292, -0.00761763891, -0.00496753212, -0.00460460735, 0.0301832408, 0.00287882495, 0.0264481399, 0.0144111365, 0.0221232865, 0.0142599177, -0.00994262565, 0.0195828136, 0.00304516545, -0.00585972238, 6.95842e-05, -0.020732075, -0.0166642945, -0.00472180219, -0.0179950185, 0.0111070089, -0.016210638, 0.0116740791, -0.00756849302, 0.0106533533, -0.00722069, -0.00486167939, -0.0358993039, 0.0236959606, -0.015802348, 0.0116135916, 0.0138365058, -0.00990482047, -0.00149895472, 0.00719044637, 0.00368973473, -0.0111296922, -0.00306784804, -0.00303571415, -0.0115833478, -0.004219, 0.0202179328, 0.0101165269, 0.0173750222, 0.0403451324, 0.0099879913, 0.00597691676, -0.0175716057, 0.0156360064, -0.000377810327, -0.00243651029, 0.0102979895, -0.0185545273, -0.0156964939, 0.0187964775, 0.0109028639, 0.00792385638, -0.0216998756, -0.00767056551, -0.00879336428, 0.0184184294, -0.00387875806, 0.0253442433, -0.0100711612, -0.00471802149, -0.00757227326, 0.0109104244, 0.00910336245, -0.0339032188, 0.0356271118, 0.0345685817, -0.00552326068, -0.0133904107, 0.00530399382, 0.0270076487, 0.0224106032, 0.0388329476, 0.010033357, 0.00222102366, 0.020732075, 0.00465375371, 0.00108688395, 0.0193559863, 0.0281115454, -0.000504692202, 0.00505448319, -0.00276541081, 0.00130048033, -0.0242857132, 0.0126418779, 0.0162862483, 0.00234577921, -0.0223198719, -0.0444582812, 0.0531684719, 0.0172540471, -0.0094284825, 0.00418119552, -0.004219, -0.0106079876, 0.0273554511, 0.00514899474, 0.00144791848, -0.00637386553, 0.0217149965, 0.0121126128, 0.00852873083, -0.00354796741, 0.00202632975, 0.00840775669, 0.0214428026, 0.0172086805, -0.0249964409, -0.0206413437, 0.0189628173, -0.0251174159, 0.00952677429, -0.00186187949, -0.00417363457, 0.000137750729, -0.0283383727, 0.0104794521, -0.00827922, -0.0285652, -0.0154621061, 0.000193867018, 0.0118177366, -0.00643057283, -0.00390144088, 0.0101467706, -0.00975360256, 0.00775751611, -0.00080145878, 0.022576943, 0.00929238554, 0.0324817635, -0.0097914068, 0.0243310798, -0.00282022753, -0.0203540288, -0.0151596684, -0.0207018312, 0.0232271831, 0.0111977402, -0.025646681, 0.00590886828, -0.0134735806, 0.0340846814, -0.00567069883, 0.0190837923, -0.016739903, 0.0295178778, -0.0159082, -0.013019925, -0.00608655, 0.00332491985, 0.0109028639, -0.0122940755, -0.0103282332, -0.0236354731, 0.00396948913, -0.00485789869, 0.0147135733, 0.00672166841, 0.0192198884, 0.00550057786, 0.0141540645, 0.00676703406, 0.00231175497, -0.00612813514, -0.0155150322, -0.00730008, 0.0177681893, -0.0343266316, -0.00163127109, 0.0463938788, 0.0326027386, 0.0156057635, 0.0101240883, -0.0347198, -0.00898238737, 0.0333285891, -0.0115304217, 0.0154999103, -0.026569115, 0.00587484427, -0.0390446521, 0.000377810327, 0.00675569288, -0.017677458, -0.0204447601, 0.0022909625, -0.00817336701, 0.00104813417, 0.00690691127, 0.00137136399, 0.0131711438, -0.00441180402, 0.0130577292, 0.0135189462, 0.0097914068, -0.004283268, -0.0116816396, -0.023378402, 0.0231515728, 0.0335705392, 0.0011757249, -0.00385418511, 2.97859369e-05, -0.0161803942, -0.0183125772, 0.00424168305, -0.0112884715, -0.0103509156, 0.0179496519, -0.00717532448, 0.0110540828, 0.0210647564, -8.01576898e-05, 0.00912604481, 0.00605630642, -0.0234842543, -0.0188115984, -0.0309090894, -0.0164525881, 0.00259528984, -0.0164525881, 0.0117723709, 0.00339863892, 0.0130426073, -0.0213823151, -0.0223803595, -0.0286710542, 0.0174959973, 0.00793141779, -0.00413961, 0.00758739514, -0.00582947861, -0.00440424308, 0.00761007797, -0.015273083, -0.012883828, 0.00152825343, -0.00350638223, 0.0323305465, 0.023922788, 0.00577277178, 0.00712995883, 0.00723959226, 0.0278091077, 0.00824141596, -0.0182369687, -0.00463863183, -0.0303798243, 0.0169516094, 0.0161803942, -0.0163769778, -0.0135416295, 0.034931507, 0.0134433368, 0.0282325204, -0.00239681546, -0.0237564482, 0.00700520352, 0.0165281966, 0.00815068465, -0.0100182351, 0.01281578, 0.0148345483, 0.0225467, -0.0158628356, -0.0174052659, -0.00435509672, 0.00811288, -0.0251476597, -0.0135643119, -0.000591170392, 0.00415095175, 0.0221686531, 0.00538338348, -0.0254500974, 0.0198550075, -0.00515277497, -0.00207547587, -0.0245579071, 0.00962506607, -0.0025971802, -0.0282778852, -0.0072131292, 0.0223501157, -0.0189779401, 0.00317181088, -0.0379558802, 0.00981409, 0.00505448319, 0.0104718907, -0.00483521586, -0.0141162602, 0.00985189434, -0.00630581705, -0.0125738299, 0.00767812645, 0.00291284896, -0.00214730459, -0.0223349929, 0.010819694, 0.0236354731, -0.0070165447, 0.0205052476, -0.00155377155, -0.0436114557, 0.0148421098, 0.000264160073, -0.0350827239, 0.0216998756, -0.0127704144, 0.000791535072, -0.00833970774, -0.0208984166, 0.00128913892, 0.00656666933, -0.000270539604, 0.0380768515, -0.0204750039, -0.00613947678, 0.0210042689, 0.00385229476, 0.0123848068, -0.00377479522, -0.0068275216, 0.0246032719, -0.0209437814, 0.00401863549, 0.0155301541, -0.0135869943, -0.00161236874, -0.00708837388, 0.00218699966, 0.00374833192, 0.00142901612, -0.0118328584, 0.0103055499, 0.0131635824, -0.0132391918, 0.0131257782, 0.0447002314, 0.00105664029, 0.0120370034, 0.0170120969, 0.0292759277, -0.0140708946, 0.00511497026, -0.0141918696, -0.0447002314, -0.00015877957, -0.0110087171, -0.0181159936, -0.0206262227, 0.0126645612, 0.0164374653, 0.0222291406, -0.0127628529, 0.00949653052, 0.0293061715, 0.0150613766, 0.0054552122, 0.0095797, -0.0260096062, 0.00312833558, -0.00127590727, 0.0250871722, -0.0221232865, -0.000123219565, 0.0131106563, 0.00637386553, 0.00293364166, 0.00173239852, 0.00625289092, 0.00695983786, 0.0159082, -0.0335705392, 0.0182520896, -0.00304516545, 0.0309393331, -0.000650240167, -0.011757249, 0.0209135376, -0.0382583141, 0.0530172549, -0.00169742922, 0.0570699126, 0.0100862831, -0.00254803407, -0.0237564482, 0.00742483512, -0.00731898192, 4.081722e-05, 0.00569716236, -0.00790873449, 0.0147513784, -0.0150538152, -0.00503936131, 0.000545332208, -0.00286559318, -0.00245352252, 0.0106911575, 0.00855141412, -0.000866199262, -0.0047558262, 0.000427192659, -0.00977628492, -0.00497509306, -1.94044223e-05, 0.00184297713, 0.00573874731, 0.00259528984, 0.0178740434, 0.0100711612, -0.0258735083, 0.0133223617, 0.00386930699, 0.0137004089, 0.0171784367, 0.0283837393, 0.012218466, -0.0202179328, 0.0288827606, 0.000266995397, -0.00203767116, 0.0181764811, -0.0197491534, 0.0217301194, 0.00594667299, -0.00414717104, -0.0221081655, -0.00304516545, -0.00945872627, 0.00803727098, -0.000154053982, 0.0119084679, -0.00174752041, -0.0233481582, 0.00846824422, 0.00879336428, -0.0381070971, 0.0198701285, -0.0139877237, 0.0214428026, 0.0118026147, 0.00890677795, -0.00598069699, 0.00862702355, -0.0068804482, -0.00260663126, -0.000191149811, 0.00186282466, 0.0185545273, -0.004615949, 0.0223501157, 0.0168155134, 0.0100560393, 0.00973091926, 0.00632471964, 0.0168003906, 0.00751556642, -0.0164223444, 0.00138932129, 0.0307125058, 0.0191442799, 0.00479363091, 0.00655532815, -0.0116060302, 0.00601094076, -0.00940579921, 0.0129140718, 0.00127779751, 0.00310565275, 0.0199759826, 0.0212764628, -0.00564045506, 0.00665362, -0.0326329805, 0.0193711072, 0.0147967441, -0.0138062621, 0.00300736073, 0.0384095348, 0.0205959789, -0.00157361897, -0.000642679224, 0.0051754578, 0.0020981587, 0.00973091926, 0.0200213473, -0.00780288177, 0.00919409283, -0.0271588676, 0.012150418, 0.0146304034, 0.00578033226, 0.0200515911, 0.0155150322, -0.00818848889, -0.00776507705, 0.0153184477, -0.00593911204, -0.0231364518, -0.025102295, -0.0253442433, 0.00483143562, 0.00355552835, -0.0069673988, 0.0277939867, 0.000251637277, 0.0424621925, -0.0303647034, -0.0077197114, -0.0242857132, 0.00225882838, 0.011296032, -0.0376534425, -0.00444582803, 0.00020142796, -0.0115304217, 0.00948897, -0.011757249, 0.0168911219, -0.00863458402, 0.0150764985, -0.017526241, -0.00410558609, -0.00553082163, 0.00928482413, 0.00711105671, -0.00865726732, 0.00198285445, -0.0133072399, 0.00563289411, 0.00339674857, -0.0133148013, -0.00483899657, 0.0217452403, -0.0138743101, -0.00824141596, 0.00262364349, 0.00231931591, 0.0231062081, -0.00391656253, 0.0149328411, 0.00814312417, -4.12602421e-05, 0.00228529167, -0.00416985387, 0.00380881946, 0.00188456231, 0.012558708, -0.00363680837, 0.0283686165, -0.00789361261, -0.00814312417, 0.0186755024, 0.00382961193, 0.0182520896, -0.0083926348, 0.00237980322, 0.0038333924, -0.0124301724, -0.0173447784, -0.01979452, -0.0190837923, 0.00165395392, -0.00152447296, -0.0116362739, -0.00823385455, -0.0119084679, 0.0106684752, -0.00288827601, -0.000773577834, -0.0336915143, -0.0154394228, -0.0010358477, -0.0281266663, -0.00119179185, 0.0140255289, -0.0212915838, 0.00149233895, -0.0123394411, 1.40659913e-05, 0.00713373907, 0.0105399387, -0.0226979181, 0.00202443963, -0.0045630224, -0.0108348159, -0.00854385272, 0.00764788268, 0.00810531899, 0.00577277178, 0.0244974196, -0.00462351, -0.0108423764, 0.00221535307, 0.0107818889, -0.0043361946, 0.00539850537, 0.00702788634, 0.00261986302, -0.0216696318, 0.0094284825, -0.0113943247, -0.0134433368, -0.00672922935, -0.0294573903, 0.00424924353, 0.0133979712, 0.00469155842, -0.0309242122, 0.019658424, -0.00902775303, 0.00137797988, 0.00418497575, 0.0186906233, 0.00728495792, 0.00799190532, 0.0209740251, 0.00713752, -0.0185394045, 0.00133639469, -0.0107289627, 0.00553460233, -0.0146001596, 0.00583325885, -0.0247847345, -0.005315335, -0.0072131292, -0.00819605, 0.0182672124, 0.0335402936, -0.0202179328, 0.00637764623, 0.00232687686, -0.0108121326, 0.0187813547, 0.0366856419, -0.0161803942, -0.00882360805, 0.00445716921, -0.00919409283, 0.0241344944, 0.0235901084, -0.0115606645, -0.00635874365, 0.011091887, -0.038651485, -0.00143657706, 0.0065477672, -0.00407912256, -0.00759873679, -0.015477228, 0.0217301194, -0.0129367542, -0.0147362566, 0.0189628173, -0.0127930967, 0.0170423407, 0.000361034501, -0.0075269076, -0.0187662337, -0.0387422144, -0.0215486567, 0.00805995334, 0.0244066883, 0.011961394, 0.00898238737, 0.00644191401, -0.0104340864, 0.0124074891, 0.00294876355, 0.00268224068, 0.0138289444, -0.000666307111, -0.0248754658, 0.00981409, 0.0111750579, 0.0235901084, 0.00278242305, -0.0035971133, -0.00720556825, -0.00225126743, -0.00683130184, 0.00262553361, 0.00433997484, 0.0187057462, -1.79867475e-05, 0.00101411, -0.0217603613, -0.00305461651, -0.0283837393, 0.0231969394, 0.0161350295, -0.0279603265, 0.0133677274, -0.0073530064, -0.0111750579, 0.018463796, 0.00869507156, -0.00703544728, -1.43318057e-05, -0.0108726202, 0.00240248605, -0.0103206718, 0.0212462191, 0.00365571049, 0.00425680447, 0.0200062264, -0.000325356348, 0.000784919248, -0.00305650686, 0.0193106197, 0.0202632975, -0.0134130931, 0.00245919311, 0.0264481399, 0.0062680128, -0.00950409193, 0.0173750222, -0.00348180905, 0.0102526238, -0.0139952851, 0.0157872252, 0.00924702, 0.00814312417, -0.000108924673, -0.00017094794, -0.0191594, -0.00979896821, -0.00231364509, 0.0104718907, -0.0186150149, 0.0117421271, -0.00798434392, -0.0156208854, -0.00730764074, -0.00390900159, -0.00909580104, 0.0111523746, 0.00780288177, 0.000226827964, 0.0148950359, 0.0103735989, -0.0115455436, 0.0139726019, 0.00169175852, 0.0106609138, -0.0205808561, -0.000113000489, 0.015273083, -0.00390522135, -0.0126948049, -0.000776413188, 0.0217149965, 0.00287504448, 0.00255559501, -0.00612057419, 0.0202481765, 0.014879914, -0.012558708, 0.0129216323, -0.00399595266, 0.00460838806, 0.00999555178, 0.00399217196, -0.00632471964, 0.00319260359, -0.00553838257, -0.0146682076, -0.0193106197, -0.00548167573, 0.0013335594, 0.0322398134, -0.00368595426, 0.00533423759, 0.000963073689, 0.00443448639, 0.00617350079, 0.000296530314, 0.00499021495, 0.00366327143, -0.0127779748, -0.00761385867, 0.00392412348, 0.0120143211, -0.0164979529, 0.010887742, -0.0163769778, 0.0125133423, 0.0153864967, 0.0183277, -0.0137760183, 0.0130048031, -0.0128611457, -0.00314345746, -0.0028504713, 3.72730319e-05, -0.0149782058, -0.01022238, -0.00882360805, -0.0284895916, -0.0111674964, -0.0274159387, 0.0134584587, 0.0118177366, 0.00190251949, -0.00709215412, 0.0164828319, 0.0282022767, -0.0167550258, 0.0222896282, -0.0215486567, -0.00379558792, -0.0218964592, -9.9414443e-05, -0.0230608433, 0.0220174342, -0.00625667116, 0.00108310347, 0.00797678344, -0.00561777223, 0.00897482596, -0.0156662501, -0.0180555061, -0.00587862451, -0.0144489408, 0.018856965, 0.00161236874, 0.00244029076, -0.000621414103, 0.00743617676, 0.00850604847, -0.0127174873, -0.000684264349, -0.00719422661, 0.00917897094, 0.033207614, 0.00718288543, -0.0079541, 0.0187813547, 0.0208984166, 0.0121806618, -0.0292759277, -0.0171028282, -0.0113111539, 0.000512253144, -0.0112355445, -0.00601472147, 0.00348558952, 0.00570850354, 0.0228642579, -0.0172389243, 0.00739837205, 0.0133072399, 0.0100409174, -0.00812800229, 0.0191745237, 0.0265086275, 0.000421758246, 0.0133828493, 0.00669520535, 0.000774050422, 0.00263120444, 0.0377744175, 0.00287504448, 0.00609411113, -0.0145623554, -0.0079162959, 0.00390522135, 0.00167947204, -0.0199759826, 0.0245125405, 0.0105777439, 0.0103357937, -0.00484277681, 0.0201725662, -0.00562155293, 0.0293817818, 0.0324817635, -0.0021945606, -0.0198852513, -0.00664983969, -0.0246788822, -0.0292456839, 0.0280964226, 0.000933775096, -0.00661203498, 0.020732075, -0.00833970774, -0.00913360622, 0.0257979, 0.0216847528, 0.0159384441, 0.0219569467, 0.0358993039, 0.00782556459, 0.00842287857, 0.00534179853, 0.00862702355, 0.0047558262, -0.0139121152, 0.00165395392, -0.00199797633, -0.000779721129, -0.000641261518, 0.00825653784, -0.017148193, -0.0183881857, -0.0239832755, 0.013345045, -0.019401351, -0.0101694539, -0.0016019725, -0.0205506124, -0.00179288595, 0.0174052659, 0.00487680128, -0.00245163217, 0.0079162959, -0.00846068282, 0.0100409174, -0.00451765675, 0.00465375371, 0.0138365058, 0.0139423581, 0.00359144271, 0.0141389426, 0.0153033258, 0.0196130574, -0.00290339789, 0.00374833192, -0.00581813697, 0.00520570157, -0.00385607523, -0.0206867103, 0.0126418779, -0.0114548123, -0.00911092293, -0.0172540471, -0.00378802698, -0.000644096872, -0.00809019711, 0.00432485295, 0.00958726183, 0.00272571598, -0.0263725314, 0.00838507339, -0.00169175852, -0.0241647381, 0.00172861805, 0.0172086805, -0.019401351, -0.00137325423, 0.00969311502, 0.0116287135, -0.0179496519, -0.000342841, -0.00880092476, 0.04146415, -0.00962506607, -0.007107276, 0.00684642373, 0.00841531716, -0.0154999103, 0.0100938445, 0.00395814795, 0.00692581385, -0.0165130757, 0.00432107272, 0.00481253304, 0.0246788822, -0.0149025973, -0.0164223444, 0.0103887208, -0.000608182454, -0.0164828319, 0.010887742, -0.0103811594, -0.00812044088, 0.0112884715, 0.0139499195, -0.00515277497, 0.0146152815, 0.00815068465, 0.00960994419, 0.0213974379, 0.0184940398, 0.0113792028, 0.0222593844, 0.00579545414, -0.00873287674, 0.00891433842, 0.0235447418, 0.0018382516, 0.0167701468, 0.0014469733, -0.00273138657, 0.0111296922, 0.0141011383, 0.00214919494, 0.00276730116, 0.00396192819, 0.0127779748, 0.0110087171, 0.0129065104, 0.00445716921, -0.00393546512, 0.0059844777, -0.015477228, -0.00314912805, -0.0184033085, 0.00726605579, -0.00117950537, -0.0178589206, 0.00871019345, 0.00330979796, -0.00566313788, 0.0160896629, -0.00531911571, -0.021125244, -0.00852117, 0.00317181088, -0.00116154819, 0.0118026147, 0.029230563, -0.00528131099, -0.00541740796, 0.00944360439, -0.0130728511, -0.00175130088, 0.0131787043, -0.0034137608, 0.0126872435, -0.0038333924, -0.0225315765, 0.00575386919, -0.013019925, 0.0124528548, -0.0187057462, -0.00125038915, 0.00469911937, 0.0129972417, 0.0151747903, 0.015477228, -0.00604874548, 0.0179950185, -0.0123394411, -0.00222291402, 0.0117270052, -0.00156322273, -0.0100257955, -0.0158930793, 0.00533045689, 0.00609789183, 0.00511875097, 0.0141540645, -0.0133148013, 0.0161501504, 0.00974604115, -0.00382772181, 0.00273138657, -0.0295178778, -0.00260852161, -0.0121428566, 0.0300471429, -0.0234540105, 0.00935287308, 0.0105475, -0.00726983603, 0.0204447601, -0.00120596867, -0.0147362566, -0.0265086275, 0.0138743101, 0.0254954621, 0.00417363457, 0.0164979529, 0.00739459135, 0.00255937548, 0.0228340141, -0.00383717287, 0.0193106197, 0.0281417891, -0.000972524867, 0.00232309639, 0.000374974974, 0.0166340508, -0.00767434575, -0.0231062081, -0.0192803759, 0.017269168, -0.00585216144, -0.0339637063, 0.00595045323, 0.0141313821, 0.00499777589, 0.0190989133, -0.0162257608, 0.00241004699, 0.011893346, -0.0109255463, 0.0102979895, 0.00459704641, 0.00477850903, 0.00592021, 0.00168419757, -0.00103490253, 0.0151521079, -0.00358388177, -0.00629825611, 0.0259642396, -0.00768946763, -0.00329089561, 0.00174941064, 0.0204447601, -0.00215675589, 0.0202935413, 0.0137987006, -0.00878580287, -0.000403328449, -0.000541079207, -0.0127401706, -0.0105853043, -0.00490326434, 0.0257979, 0.0183579419, -0.0155755198, -0.0180101395, 0.00381827075, -0.00259528984, 0.00861946214, 0.00431729201, 0.0286408104, 0.0151445465, 0.00203389069, -2.06005861e-05, -0.016210638, 0.0371392965, -0.000821778784, 0.00884629, -0.00102923182, -0.00213596318, 0.00768946763, -0.0155755198, -0.00955701806, 0.0141918696, -0.0144262584, 0.0232876707, 0.00907311868, 0.00100182346, 0.0167096592, -0.0115682259, -0.0100938445, 0.0113792028, 0.0113338372, -0.00307351886, 0.00295443414, -0.0165735632, -0.0223652367, -0.00610923301, -0.0111977402, -0.00950409193, -0.00782556459, -0.00689178938, -0.00856653601, 0.000188196325, 0.00743239606, -0.01281578, 0.0160291754, 0.0153940571, 0.0119689554, 0.0116740791, -0.0147513784, -0.00491082529, 0.0172994118, -0.00703544728, 0.00206224411, 0.00472558243, -0.00981409, 0.0230306, -0.0125738299, -0.016074542, 0.00167002087, 0.0167247821, 0.00234766933, -0.00519814063, 0.0177530684, -0.00238925451, 0.00304138497, -0.0172389243, -0.00106136582, -0.00463485112, 0.000851077377, 0.00375400274, -0.00230986462, 0.0181764811, -0.00974604115, -0.00846824422, -0.00732276263, -0.0383490473, -0.00322284736, -0.0115077384, 0.000727739709, 0.00962506607, -0.00136191281, -0.00338351703, -0.0368368588, 0.00240815687, 0.0113943247, 3.39060534e-05, -0.0163769778, -0.00687288726, 0.00927726366, 1.49372709e-05, 0.0226979181, 0.00305650686, 0.0119916378, 1.42505851e-05, 0.00805239286, -0.00374455145, 0.00420009764, 0.0252686348, 0.00520948227, 0.00183069066, 0.0158325918, 0.000355363794, 0.00311132357, 0.0217301194, 0.0203691516, -0.0140406508, 0.0147211347, -0.00652886461, 0.00652508438, 0.00474826526, 0.00479741115, -0.00871775486, 0.00985945482, -0.014811866, 0.00570850354, 0.00282211788, -0.0084758047, 0.00258583878, -0.00341187045, 0.0110767651, 0.00150179013, -0.0238471795, -0.00998043, 0.00618862268, -0.0329656638, -0.0137608964, -0.0112204226, 0.00622264715, -0.00444582803, 0.00301492168, -0.000817525783, -0.00273138657, 0.000904476503, 0.0299412906, -0.000606764806, -0.00852873083, 0.00121447467, -0.00489192316, 0.025374487, 0.000929049507, -0.017934531, 0.00730764074, -0.0223803595, 0.000304327521, -0.0130274855, 0.00279187411, 0.000408526597, -0.00525862817, 0.00496753212, 0.0126418779, -0.00494484929, -0.0151974736, -0.00437021861, 0.018872086, 0.0181462374, -0.000934247626, -0.0223652367, -0.00474826526, 0.00365949096, 0.0205808561, 0.0151521079, -0.0198398847, -0.00921677612, -0.00945872627, 0.0230910871, -0.0103887208, 0.00902019162, -0.00307540898, -0.0111070089, 0.00374266133, -0.0226223078, -0.000721596472, -0.00977628492, 0.00166907569, -0.00949653052, 0.0143279657, -0.0103735989, 0.00741349394, 0.00624154927, 0.00374077098, 0.00906555727, -0.00536448136, 0.0087555591, -0.0135265077, 0.0160140544, -0.0133526055, -0.00153581426, -0.0126948049, -0.013889432, 0.0156208854, -0.00672166841, 0.0268413089, -0.00615459867, 0.00844556093, -0.00281833741, 0.00196584221, 0.0116589572, -0.000849659729, -0.0057916739, -0.0181311145, -0.00597691676, -0.00125416962, 0.00431351177, 0.00521704322, 0.00904287491, 0.000447985221, -0.00316425, -0.00300169, 0.00720178755, -0.00312455511, -0.00340619986, -0.0097914068, 0.0222140178, -0.0143430876, -0.026962284, 0.0150008891, -0.0138591882, 0.0112204226, -0.00133072399, 0.00734166475, -0.0104189645, 0.0227281619, -0.024315957, -0.0046121683, 0.0103962813, -0.0111901797, 0.00652508438, 0.00372186885, 0.00455924217, 0.0201423224, 0.00203011022, 0.0130955344, -0.00840019528, -0.0431578, -0.00260852161, 0.00566691859, 0.0285047144, -0.00869507156, 0.0216847528, 0.000281644723, 0.0170120969, -0.00168892322, 0.00945116486, 0.0199608598, 0.0123016359, -0.00087990344, 0.00544387102, -0.0225467, 0.00945872627, 0.0153789353, 0.00177209347, 0.00112657889, -0.00215486553, 0.00808263663, -0.00982165057, 0.0021945606, -0.0113792028, 0.0152957654, 0.015802348, 0.0226827953, 0.00382772181, -0.0159686878, -0.0148572316, -0.00317370123, 0.00728117768, 0.00454790052, -0.015288204, 0.00557240704, -0.00956457853, -0.0105021344, -0.0283837393, -0.011296032, 0.000652602932, 0.0069333748, 0.023771571, -0.0287920292, -0.0100938445, -0.00671410747, -0.0104643302, 0.00231742556, -0.00207358552, -0.00364247896, 0.0130274855, 0.00592021, 0.0117874928, -0.00686910655, 0.00814312417, 0.000236633539, 0.00725849485, 0.0111221308, -0.00534935948, 0.0224106032, 0.00444204733, 0.00376534415, -0.00996530801, -0.0114926165, -0.0181613583, 0.0125738299, -0.0240437631, -0.00495619094, 0.00223047496, 0.013685287, 0.0374417342, -0.0183277, -0.0213974379, 0.0129443156, 0.0166189279, 0.00369540555, 0.0118177366, 0.000360325677, 0.00551569974, 0.0138213839, 0.0103660375, 0.0253593661, -0.00497887377, 0.00159913709, 7.79130423e-05, 0.0147135733, -0.00596557511, -0.0160896629, 0.0106382314, -0.00527375, -0.00784824695, 0.013345045, 0.0192350112, 0.00394302607, 0.0146908909, 0.0107214013, 0.0164374653, -0.00222102366, -0.0115379822, -0.00757227326, -0.00222858461, 0.00513765309, -0.0150386933, -0.00236657169, -0.000154880967, 0.0315139629, -0.0163013693, 0.00385418511, -0.00469911937, 0.0113716414, 0.0146152815, 0.01022238, -0.0241042506, 0.0209589042, 0.0170877054, 0.0164072216, -0.00506960507, 0.00127968774, 0.000728212239, -0.0143733313, -0.0173447784, -0.0126343174, -0.0107365232, 0.00432107272, -0.000544859678, -0.0029676659, -0.00237602298, -0.01395748, 0.0195676927, -0.00492594717, 0.000762236479, 0.00350827235, 0.00454033958, 0.00232876698, -0.00708837388, 0.0166189279, -0.0127552925, 0.0268564299, 0.023378402, -0.0292003192, 0.00824141596, 0.0108272545, -0.00479741115, -0.000610545278, 0.00150179013, -0.0362319872, -0.00945872627, -0.0156662501, 0.0225467, -0.00764032174, -0.00280321552, -0.0127023654, 0.0102299405, 0.000447276369, 0.00321717653, -0.0103357937, -0.0218510926, -0.00201687869, -0.0131409, -0.00228718203, -0.00650240155, 0.0128913894, -0.0321490839, 0.0128535843, -0.0117421271, -0.0176169723, 0.010562622, -0.00212273165, 0.0154999103, -0.00895970408, 0.000969689514, 0.0107516451, 0.0248149782, -0.0207471978, 0.00545899291, -0.00970067549, -0.0177530684, -0.01249066, -0.00261041173, 0.0106911575, 0.00368595426, 0.0126191955, 0.00290339789, -0.00836239103, -0.013889432, -0.0187662337, 0.0178286768, -0.0224710889, 0.00862702355, 0.0125965122, 0.00426814612, 0.0224710889, 0.0252081472, 0.0112884715, -0.0017418497, -0.00652886461, 0.00956457853, -0.00551948044, -0.0143960146, -0.00759873679, -0.000580774096, 0.017677458, 0.0323003, 0.0121277347, 0.00562911388, -0.00821873266, -0.00889165606, 0.00237224251, 0.00475960644, -0.0245579071, 0.00396948913, 0.000120797704, 0.00647971872, -0.00153203378, -0.00340430951, -0.000782083895, 0.0184335522, -0.0169364884, 0.00458948547, -0.0313022584, -0.00126267562, 0.0183277, 0.00366894226, 0.0110087171, -0.00333248079, 0.0226071868, 0.00372753944, 0.0133677274, 0.0232120603, 0.00347991893, 0.00525862817, 0.0062642321, 0.0152504, 0.0192198884, -0.00762898056, -0.00282589835, -0.00634362176, 0.00726983603, 0.0121655399, 0.012883828, 0.0221081655, 0.022985233, 0.00692959409, -0.00988213811, -0.00985189434, -0.0123772454, 0.0238018129, 0.00148477801, -0.0149101578, 0.0100862831, -0.0146908909, -0.0286559314, 0.00834726915, -0.00906555727, -0.00915628858, 0.00492972741, 0.00368784461, -0.00602606265, 0.0138213839, 0.00515655568, 0.0198398847, 0.00844556093, -0.00748532265, 0.00554594351, 0.0060714283, -0.0192350112, -0.0197642762, -0.00368595426, 0.00960994419, -0.00312833558, -0.0200667139, 0.00889165606, -0.022183774, -0.028429104, -0.0221081655, -0.00210193917, -0.00108026818, 0.0206715874, 0.0152277173, 0.00571984518, 0.0065969131, -0.000737663417, -0.0102753062, -0.0164525881, 0.00568204047, -7.58456e-05, 0.0194618385, -0.00303949462, -0.00111618254, -0.00877068099, 0.0116060302, -0.00171349617, 0.00834726915, 0.00819605, -0.0015140766, -0.0314534754, 0.0142372353, 0.00936043356, -0.026175946, -0.00660447404, -0.0045630224, 0.0217452403, -0.0246486384, 0.000771215069, -0.00464241207, 0.000486262434, -0.0105928658, -0.015341131, -0.023378402, -0.0044231452, -0.0257071685, 0.0109028639, 0.0132694356, -0.00434753578, 0.0188115984, -0.00868751109, 0.00910336245, 0.0162408818, 0.000707892235, 0.00551569974, 0.0153108872, -0.00693715503, 0.0018117883, -0.00410558609, -0.0103660375, 0.00902019162, 0.0107138408, -0.00250833924, -0.0158779565, -0.00860434, 0.00482765492, -0.00367272273, 0.00464241207, 0.0156208854, -0.0279149599, 0.00155471661, -0.00413961, 0.0170877054, -0.00964774936, -0.0123243192, -0.00904287491, -0.0104794521, -0.00256693643, 0.00928482413, 0.00778776, 0.00886141229, -0.0133299232, -0.0144867459, 2.29486104e-05, 0.0313627459, -0.0192350112, -0.0221686531, 0.0105777439, 0.00658557191, -0.0150008891, 0.00544009032, -0.00974604115, 0.00185526372, -0.0303949472, 0.0300622657, -0.0139121152, -0.00592021, -0.00595423393, -0.00770080928, -0.0364436917, -0.00691447221, -0.00470289961, 0.00184108689, -0.00573118636, -0.0224257242, -0.00502045872, 0.00327955419, 0.00130142539, -0.0214276817, 0.0664152279, 0.0130577292, 0.0131257782, -0.0280964226, -0.00430973107, -0.00871019345, -0.00069655088, 0.0427041426, 0.0172389243, 0.0101694539, -0.0239530317, -0.0123470016, -0.0107818889, -0.0036670519, 0.00173617899, -0.0283081289, 0.0141540645, -0.0268564299, -0.0248301011, -0.005315335, 0.00276352069, -0.0222593844, -0.00678971689, -0.0156208854, 0.000170239102, -0.014350649, 0.0117270052, -0.00611679396, -0.012679683, 0.0154999103, 0.00664983969, 0.0228037704, 0.0235901084, -0.00467643654, -0.0218510926, 0.00179572136, 0.0113338372, 0.00136285799, 0.00798434392, 0.0108953025, 0.0104492083, 0.0115379822, -0.0169516094, 0.00200553727, 0.0106533533, -0.00385796558, -0.019658424, -0.0148647921, 0.00176736782, -0.00543631, -0.0014649306, -0.00649862085, -0.0135038244, -0.0238320567, 0.0027105941, 0.0250720512, 0.0274613053, -0.00953433476, -0.0188872088, 0.0194315948, 0.00936043356, 0.0210042689, 0.0172842909, -0.00700142281, -0.00362168648, -0.0107894503, -0.0231818166, -0.00650240155, 0.00618862268, -0.00125511468, -0.0172389243, -0.0100031132, -0.00213029259, 0.0122109056, 0.00354229659, 0.0123167578, -0.0221384093, 0.0176925808, 0.00490704505, -0.0145245502, -0.00595423393, 0.0111750579, -0.0254652184, -0.0224408451, -0.0085589746, 0.0124301724, -0.0244974196, -0.00521326251, -0.0165735632, 0.0154999103, 0.00948140863, 0.031634938, 0.00244407123, -0.0026841308, 0.00262364349, 0.0157721043, -0.016346734, 0.0294120256, 0.0214428026, 0.0202632975, 0.0246788822, 0.00237413263, -0.00827922, 0.00203200057, -0.013345045, 0.0197642762, -0.00341565092, 0.00693715503, 0.0124755381, -0.0107214013, -0.0263574086, -0.00711105671, -0.0055081388, 0.0061772815, 0.00102072582, -0.013292118, -0.016210638, -0.0153260091, 0.00329278596, -0.000852022495, 0.00757605396, 0.0127401706, -0.0231364518, 0.0127855362, 0.00260096067, -0.00148572319, 0.0224257242, 0.0124982204, 0.0027805327, -0.010819694, 0.00583703956, 0.00255370466, 0.0117950542, 0.017269168, 0.00303004356, 0.0442163311, 0.0105928658, 0.00249321735, 0.00401485479, 0.00764788268, -0.00818092842, -0.00403753761, 0.0109406682, 0.0195223261, 0.0114623727, 0.0018117883, 0.00576143, -0.00776507705, 0.00912604481, 0.0369880795, -0.00643435307, -0.00150651566, -0.0037464418, -0.0212159753, -0.0178286768, 0.00102167088, -0.0172540471, -0.00260285079, -0.00203578104, -0.00939823873, 0.000257780513, -0.00109066442, 0.0103509156, 0.00148383295, -0.00293175131, -0.0140557727, 0.0231364518, -0.00374833192, 0.0120823691, 0.0166945383, 0.00753824925, 0.0369880795, 0.00947384816, 0.00552326068, 0.008438, 0.0170877054, -0.0108801806, -0.00838507339, 0.0312115271, -0.0219418239, 0.00120691373, -0.00155755202, 0.0181008708, 0.0517167747, -0.00312077464, -0.0123470016, 0.0238320567, 0.00780288177, 0.0201120786, -0.00513387285, -0.00434753578, 0.0174506307, -0.00830190349, -0.0173901431, -0.0212310962, -0.00707703223, 0.0241496172, -0.0159838106, -0.0103811594, -0.0111221308, -0.0079541, 0.0156360064, 0.00965531, -0.00509606814, 0.00458192499, 0.0217149965, 0.0353246741, -0.00415851269, 0.00716398284, -0.0121050524, 0.00809019711]
21 Jan, 2025
Introduction to TypeScript 21 Jan, 2025 TypeScript is a syntactic superset of JavaScript that adds optional static typing, making it easier to write and maintain large-scale applications. Allows developers to catch errors during development rather than at runtime, improving code reliability.Enhances code readability and maintainability with features like type annotations and interfaces.Fully compatible with JavaScript, enabling seamless integration with existing projects.It is ideal for large-scale applications where strict type-checking and better tooling are essential.Key Features of TypeScript1. Static Type Checking (Optional)TypeScript allows you to check and assign types to variables, parameters, and function return values. While this step requires a little more effort, it significantly improves code quality. Optional static typing helps prevent bugs and makes your code more readable. 2. Class-Based ObjectsOne of TypeScript’s standout features is its support for classes. Unlike JavaScript’s prototype-based approach, TypeScript lets you write true object-oriented code. You can create classes, define constructors, and use inheritance and access modifiers (public, private, protected). 3. ModularityTypeScript promotes modularity. By using modules, you can organize your code into smaller, reusable pieces. This modularity enhances maintainability and collaboration among team members. 4. ES6 FeaturesTypeScript embraces ECMAScript 6 (ES6) features. If you’re familiar with ES6 syntax (arrow functions, template literals, destructuring, etc.), you’ll feel right at home with TypeScript. 5. Syntactical SugaringTypeScript’s syntax is closer to that of high-level languages like Java. It’s like a sweetener for developers—more concise and expressive. Structure of TypeScriptTypeScript Code cannot be interpreted by the Browser directly so there is a need to compile the TypeScript code into plain JavaScript Code, for this purpose we need the TypeScript Compiler (tsc). TypeScript Compiler (tsc)Written in TypeScript itself.Compiles .ts files to .js files.Installed as an NPM package (NodeJS).Supports ES6 syntax. TypeScript vs. JavaScriptFeatureTypeScriptJavaScriptTypingStatically TypedDynamically TypedObject OrientationClass-BasedPrototype-BasedModulesSupports ModulesDoes not Support ModulesError DetectionCompile-Time ErrorsRuntime ErrorsCompilationRequires CompilationInterpreted by Browsers/Node.jsCode MaintainabilityEasier due to static typing and interfacesCan be harder in large codebasesTooling SupportAdvanced (autocompletion, refactoring)BasicUse CasesLarge projects, complex applicationsSmall to medium projects, quick prototypingWhy TypeScript is Gaining Popularity ?Enhanced Code Quality: Static typing and interfaces lead to more robust and maintainable code.Developer Experience: Improved tooling support provides a richer environment for spotting errors during development.Framework Adoption: Popular frameworks like Angular have adopted TypeScript, contributing to its rising popularity.Active Community: Used by top tech companies, ensuring continuous improvement and support.Why Do We Use TypeScript ?Better developer experience – One of the biggest advantages of TypeScript is to enable IDEs to provide a richer environment for spotting common errors as you type the code. For a large scale project adopting TypeScript might result in more robust software, while still being deployable where a regular JavaScript application would run.Code quality – Defining data structures in the beginning, using types and interfaces, forces you to think about your app’s data structure from the start and make better design decisions.Prevents bugs – TypeScript won’t make your software bug free. But it can prevent a lot of type-related errors. Along with the Clever IntelliSense many browsers and IDEs support direct debugging through Source Maps.Active community – TypeScript is getting more and more popular. It’s used by the top tech companies like Google, Airbnb, Shopify, Asana, Adobe, and Mozilla so we can assume that it reaches their expectations in terms of scalability – as they are developing large and complex applications.TypeScript Is Just JavaScript – TypeScript starts with JavaScript and ends with JavaScript. Typescript adopts the basic building blocks of your program from JavaScript. All TypeScript code is converted into its JavaScript equivalent for the purpose of execution.Steps for Adding TypeScript File in HTML Code 1. Create the TypeScript File (types.ts) JavaScript let myString; myString = 'Hello from ts'; console.log(myString); myString is declared as a string variable.It’s assigned the value ‘Hello from TypeScript’.The value is logged to the console.2. Compile TypeScript to JavaScriptUse the TypeScript compiler (tsc) to transpile types.ts into JavaScript. Open your terminal and run: tsc types.tsThis command generates a types.js file containing the equivalent JavaScript code. 3. Create the HTML File (index.html) HTML <html lang="en"> <head> </head> <body> <h2>Welcome to GeeksforGeeks</h2> <p>Default code has been loaded into the Editor.</p> <script src="types.js"></script> </body> </html> A heading and a paragraph for content.A script tag that references the compiled JavaScript file types.js.4. Run the HTML FileOpen index.html in a web browser. 5. OutputTypeScript – FAQsWhat is TypeScript, and how does it differ from JavaScript?TypeScript is a superset of JavaScript developed by Microsoft that adds optional static typing and other features to enhance code quality and maintainability. Why should I use TypeScript if JavaScript is already available?TypeScript offers static typing, which helps catch errors during development, leading to more reliable and maintainable code. Is TypeScript compatible with existing JavaScript code?Yes, TypeScript is fully compatible with JavaScript. Any valid JavaScript code is also valid TypeScript code, allowing for gradual adoption in projects. What are the key features of TypeScript?TypeScript introduces features like static typing, interfaces, classes, and modules, which are not present in JavaScript. These features help in building robust and scalable applications. Can I use TypeScript for both front-end and back-end development?Yes, TypeScript can be used for both front-end and back-end development. It compiles to JavaScript, making it compatible with various environments, including Node.js for server-side development. 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.
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript
https://www.geeksforgeeks.org/introduction-to-typescript/
PHP
Introduction to TypeScript
jQWidgets jqxSortable disabled Property, Node.js Stream transform.destroy() Method, jQWidgets jqxSwitchButton enable() Method, Convert string into date using JavaScript, jQWidgets jqxSplitter height Property, How to Declare Optional Properties in TypeScript ?, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxTree checkAll() Method, jQWidgets jqxScrollBar rtl Property, jQWidgets jqxScrollBar step Property, jQWidgets jqxTabs position Property, jQWidgets jqxTooltip height Property, How to Make a Single Property Optional in TypeScript ?, jQWidgets jqxTreeMap width Property, Optional Property Class in TypeScript, jQWidgets jqxTree collapseItem() Method, jQWidgets jqxTabs keyboardNavigation Property, jQWidgets jqxTree destroy() Method, jQWidgets jqxTree collapseAll() Method, jQWidgets jqxSortable opacity Property, jQWidgets jqxScrollView buttonsOffset Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, jQWidgets jqxTabs disabled Property, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Node.js date-and-time Date.transform() Method, jQWidgets jqxListBox enableHover Property, jQWidgets jqxSlider height Property, TypeScript Optional Parameters, jQWidgets jqxSwitchButton onLabel Property, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, jQWidgets jqxToolBar theme Property, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxSplitter orientation Property, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxSlider buttonsPosition Property, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, jQWidgets jqxSwitchButton orientation Property, jQWidgets jqxToolBar tools Property, jQWidgets jqxSlider rtl Property, How to use Optional Chaining with Arrays and Functions in TypeScript ?, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTooltip opacity Property, jQWidgets jqxTree width Property, jQWidgets jqxScrollBar showButtons Property, jQWidgets jqxScrollView showButtons Property, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, jQWidgets jqxTree clear() Method, Introduction to TypeScript, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView disabled Property, jQWidgets jqxScrollView animationDuration Property, jQWidgets jqxToolBar height Property, PHP, How to Sort an Array Having Optional Properties in TypeScript ?, jQWidgets jqxSplitter destroy() Method, jQWidgets jqxTreeMap destroy Method
GeeksforGeeks
[-0.00257785199, 0.00750699081, -0.0195238851, 0.0291288365, 0.0168265048, 0.0120454375, 0.0317691267, 0.0203659236, -0.0079066027, 0.00573371397, 0.019723691, -0.000500406604, 0.0225923322, -0.0251041763, -0.0247473791, -0.00285793701, -0.0390477702, -0.0206799041, -0.0424159244, 0.00752839865, 0.0271307789, 0.0460124314, -0.0625677705, -0.0280156322, -0.0233772825, 0.00708597107, 0.0135297095, 0.0237483513, -0.0258605834, -0.00842038915, -0.0134654865, 0.0113603892, 0.0105326222, -0.0617114604, -0.0192955341, 0.00267775496, 0.0232345648, -0.0189958271, -0.0394473821, 0.0103970394, 0.0211936906, -0.0146571854, 0.0150425248, 0.014307525, -0.00832048617, 0.0580293238, 0.00908403, -0.0549180619, 0.0319118463, -0.0210937876, -0.0222498067, 0.0311411675, 0.0417023338, 0.0302277692, 0.0242050495, 0.00998315588, 0.0516355373, -0.0341382548, 0.022635147, -0.00364824058, 0.0482673794, -0.059313789, -0.0179967973, -0.0498372838, 0.0206085443, 0.0141005833, -0.00662570447, 0.00954072829, 0.0148855345, -0.0307130106, -0.0152851464, 0.0345949531, 0.023691263, 0.0172118451, 0.0223925263, -0.0337386429, -0.0150139816, 0.0232488364, -0.0226208754, 0.00459553441, -0.00324327685, 0.01771136, 0.0200376716, 0.0232488364, -0.00530199055, 0.0144859236, -0.0292144679, -0.0460124314, 0.028086992, -0.00437075272, 0.015199515, -0.00195702678, 0.0347091295, -0.0413027219, -0.0227065068, 0.0376776718, -0.0239196122, -0.0169549529, -0.0184963122, 0.0407603905, 0.029342914, 0.021079516, 0.01272335, -0.0576582551, 0.00226922333, -0.0323970877, 0.00864873827, 0.0438431092, 0.0278729144, -0.00112212379, 0.0176257286, -0.0305132046, -0.0485813618, 0.0361648574, -0.0238482542, -0.00174651714, -0.0207798071, -0.0826054439, 0.0119740786, -0.00654364098, -0.00453844666, 0.0164268948, -0.00905548595, 0.0347662158, -0.0445281565, 0.0508077703, -0.00361077697, -0.0191813596, 0.0179397091, 0.00784237869, -0.00727864122, 0.0244048554, 0.000376865908, 0.0189244673, 0.0479534, -0.0115245152, 0.0251755361, 0.0162270889, -0.0236769915, -0.00401038863, 0.00558385951, -0.0167836901, 0.0122737875, 0.00216753641, 0.0277016517, -0.00871296134, -0.00190529134, 0.0515213609, -0.002502925, 0.00864160247, -0.026103206, -0.047154177, 0.0141933504, -0.0106610684, 0.0196380597, 0.00152530347, -0.00624036463, 0.039390292, -0.0256607775, 0.0259034, 3.4704e-05, -0.0199520402, -0.00227814331, 0.0258177686, 0.00236734236, 0.0464691296, 0.0334532075, 0.00251898076, -0.0446708761, 0.0345093235, -0.0261888355, 0.025375342, 4.70803643e-05, 0.0221927203, -0.0330250487, -0.0317405835, -0.00408888375, 0.00542686926, 0.0225495156, -0.0199948549, -0.0057729613, -0.0262601953, -0.00807072874, 0.0118242241, 0.0194382537, 0.0164268948, 0.0279442742, 0.0109322332, -0.00517354393, -0.0375634953, -0.0125378165, 0.0349660218, 0.0447850525, 0.0202517491, 0.0132514089, 0.0143574765, -0.0365644693, 0.0223782528, -0.00853456371, 0.0248900987, 0.0174544677, -0.00994747598, -0.0099189328, 0.0139150489, 0.0369355343, -0.00536264572, 0.025375342, 0.0113389809, 0.0558314584, -0.0145786898, -0.0361648574, 0.0149568943, -0.0154278651, -0.0116743697, 0.00264385948, -0.00193740299, 0.0144145638, -0.00946223363, -0.0251184478, 0.0122809233, 0.00564808305, -0.000727418112, -0.00766398106, 0.0164411664, -0.0526060238, -0.0167979617, 0.000408308581, -0.0208368935, 0.0266598072, 0.00329679623, 0.0643374771, 0.0292858277, -0.00771393254, -0.024419127, 0.0173831079, -0.0158845633, 0.0241336897, -0.00996888429, -0.0222783498, 0.06468, -0.00205336185, 0.00651866524, -0.00480247615, -0.0214648563, -0.0199520402, -0.0101900976, 0.0108965542, 0.0432722345, -0.0182536896, -0.00883427262, 0.00130854978, -0.00619041314, 0.0116815055, 0.00421376247, -0.0249043703, 0.018539127, 0.00541973347, -0.0171404872, 0.0259034, -0.0148284473, 0.00874150544, 0.0129374275, -0.00493449066, 0.0103613595, -0.00561953895, 0.00327003654, 0.0367642753, -0.0295427199, -0.0488382541, 0.00578723336, 0.0609122366, -0.0478392243, 0.0475537889, 0.0195381567, -0.0216789339, -0.0126591269, -0.0200947579, 0.000415221497, 0.0131372334, 0.0120240301, 0.0387052447, -0.00390334963, 0.0456699058, 0.0286435932, 0.00494876225, -0.0547753423, 0.0188245643, 0.0149711659, -0.0235628169, -0.0297996141, -0.0182536896, -0.00672917534, 0.00240480597, 0.00169388962, 0.0669064149, -0.000701996381, 0.00669706333, 0.00177952077, -0.00449563144, 0.0168550499, -0.00403536437, -0.0433007777, 0.00837043766, -0.0283581577, -0.0249043703, 0.0186247583, 0.046954371, 0.00500228163, -0.0114888353, -0.0297425259, 0.015199515, -0.00814208761, -0.0381914601, -0.0081849033, -0.00560883526, 0.0233059227, 0.0420448557, 0.000749717874, -0.0298567, -0.0319689326, -0.0167123303, -0.00933378655, -0.0394759253, 0.0230204873, 0.0618827231, -0.0266883504, -0.00523419911, 0.0122309718, 0.0263315551, -0.0119098546, -0.023363011, -0.0189815536, -0.0481246635, 0.0288719442, 0.0450419448, -0.0146857286, -0.00105076458, 0.00651152944, -0.023691263, 0.0262459237, -0.0123879621, 0.00400682073, -0.0275732055, -0.0012282707, 0.0179682542, -0.0505794212, -0.0307415556, 0.0169406813, 0.00255466043, 0.0289433021, 0.00138793699, 0.0274875741, 0.0346520394, -0.0059941751, 0.0351658277, -0.00389621384, -0.00760689378, -0.0357081555, 0.00540189352, 0.0306273811, 0.0191813596, 0.00357688125, 0.0180253405, 0.041473981, 0.00531269424, -0.0369926244, -0.0207512639, -0.0223639812, -0.0107110199, -0.022007186, -0.0206085443, 0.00106503651, 0.00872723386, -0.00332712405, -0.0330535956, -0.0113461167, -0.00220678421, 0.00566949043, 0.00247259717, 0.0300565064, 0.00812781602, 0.04903806, 0.0514357314, 0.0400753431, 0.0185533985, -0.0131657775, 0.00576939341, -0.00434934488, -0.0050986167, 0.0200804863, 0.0187532045, 0.0290146619, -0.026103206, -0.00926242769, 0.016455438, 0.0039354614, -0.0272734966, -0.0122452434, 0.0217502918, -0.019595243, 0.00817063171, 0.00266705104, 0.00784237869, 0.0123950979, -0.0295998082, -0.0244762152, -0.0371067971, 0.0054625487, 0.0289004873, -0.0115387868, -0.0216646623, -0.0184534956, -0.0374493226, -0.0189815536, 0.0446708761, 0.0577438883, 0.0187817477, 0.0419592261, -0.0160986409, -0.013315632, 0.0483244695, -0.0119241271, -0.00306131085, -0.00477750041, 0.0215933025, 0.0201090295, -0.0327681564, -0.00784951542, 0.00492021861, -0.0210509729, -0.000463388977, -0.0111962631, 0.0181252435, -0.0136367483, -0.00349838613, -0.0496374778, 0.0297710691, -0.000879948493, -0.0040746117, 0.00641519437, 0.00165018218, -0.0111463116, 0.0356796123, -0.0371067971, -0.0588570908, 0.000566413859, -0.0615972839, -0.00617257319, 0.023363011, 0.00788519438, 0.0127162142, 0.00817776751, -0.0424444675, 0.0255037881, 0.0261317492, -0.0036892721, 0.0227778647, 0.00059317355, 0.0399040803, -0.019795049, -0.000350998191, -0.00432080124, 0.00698606856, 0.021379225, -0.0209082533, 0.019595243, -0.0157846604, -0.0215933025, -0.0341097116, 0.0310555361, 0.027259225, 0.000443542202, 0.0450990312, 0.0243763123, -0.0104184467, -0.0185819436, 0.0081849033, -0.000475430861, 0.000496392604, -0.0222212635, 0.0242050495, 0.0377918482, 0.0457555354, -0.0158988349, -0.0170120392, 0.0160843693, 0.0294000022, 0.0129588358, 0.0529770888, 0.000544114097, -0.0173260197, 0.026602719, -0.0379060209, -0.0232202932, 0.00607623812, -0.0294000022, -0.015827477, -0.011367525, 0.0163412634, 0.0516355373, -0.0281298067, 0.00565165095, -0.0250185449, 0.0389050506, -0.0204658266, 0.0164982527, -0.0449277684, 0.0283724293, -0.0250185449, -0.0321401954, -0.00506293727, -0.030798642, 0.00584075274, 0.0537763126, -0.0164268948, -0.00704315584, -0.0204087384, 0.0212365054, 0.00206228159, -0.00892703887, 0.0188816506, -0.00897699, -0.0256036911, 0.00204087398, -0.0319974758, -0.0219929144, 0.0210081562, -0.0211080592, -0.0219643693, -0.0374493226, -0.0437003896, -0.00947650522, -0.00384983025, 0.0200234, 0.00203017, 0.00153957529, -0.00356260943, 0.0110107288, -0.00651152944, 0.00677555846, -0.0365073793, 0.0303134, -0.0464405864, 0.0199805833, -0.00804218464, 0.0155991269, 0.0140006803, -0.0279442742, 0.0172832049, 0.0248187389, -0.0227921363, 0.0241194181, -0.0105254864, -0.00465618959, -0.0152280591, -0.0159987379, -0.0557743721, -0.0210367, 0.00846320391, -0.0122666508, 0.0174830109, 0.00695038866, 0.0528914593, -0.0108323311, 0.00274733035, -0.0360792242, 0.0188531075, 0.00106771244, 0.0100759231, 0.0263743699, 0.0116529614, -0.0172832049, -0.00482388353, -0.00811354443, 0.0360792242, 0.0283153411, 0.0249329135, -0.02205, 0.0230490305, -0.00245832535, -0.00854883529, -0.0040425, 0.0133798551, -0.0103899036, -0.0258034971, -0.0105468938, -0.0232773796, -0.0171547588, -0.00703958794, -0.0223068949, -0.00470614107, 0.000686832587, 0.0161842722, -0.000832227, -0.0148998071, 0.0105468938, 8.79168e-05, -0.0100259716, 0.0175686423, -0.00139418093, 0.0168122333, 0.0119383987, 0.0189101957, 0.0249471851, -0.0324256346, -0.0122880591, -0.0120026218, -0.0215362143, -0.00807786454, 0.0040710438, -0.0628532097, -0.0169264078, 0.0245618466, 0.00633669924, -0.000720728189, -0.030170681, -0.00718944194, 0.0306844674, -0.0241765063, 0.00428155344, 0.0237483513, -9.08157672e-05, 0.0108965542, -0.00693611708, 0.0136724282, 0.0250042733, -0.00178487261, -0.0329679623, 0.00481318, -0.0230062157, 0.0133370394, -0.0189101957, 0.00536264572, 0.0131372334, 0.0154564083, 0.0474967025, 0.0296283513, -0.00449919933, -0.00668279175, -0.0131015545, 0.00667208759, 0.0160272829, 0.0247188359, 0.129017487, -0.0071930103, 0.0302277692, -0.0323970877, 0.024618933, 0.0277159233, -0.0205800012, -0.00200341037, -0.0131372334, 0.0155705838, 0.0143503407, -0.0125021366, -0.00504152942, 0.00394973345, -0.0180110689, -0.00184820394, 0.0103899036, -0.00681837415, -0.0151424278, 0.0509504899, 0.0206085443, 0.011103496, -0.0114460196, 0.00993320439, -0.00340561918, -0.00435291277, 0.0146857286, -0.0125092724, -0.0245618466, -0.0184249524, 0.0100830588, 0.00852029212, -0.0358794183, -0.00285615306, 0.0245333016, 0.0279157292, -0.000253994251, -0.0141219907, -0.00641162647, 0.0306559242, 0.00541259721, -0.00476679625, -0.0125949038, -0.017611457, 0.00261174771, -0.0218787398, 0.0252326224, 0.0120882532, 0.0191100016, 0.047582332, 0.00928383507, 0.0490095168, -0.0199092235, -0.00749271875, -0.0385339819, 0.00961922389, -0.018439224, 0.0367357284, -0.032282915, -0.0233915541, 0.00465618959, -0.00713235466, 0.0250328165, 0.0111534474, -0.0181823317, -0.00903407857, 0.00100527308, 0.023791166, 0.0215933025, 0.015499224, 0.0013647452, 0.0103899036, 0.0142361661, 0.0110464087, 0.0117814085, -0.0590283535, 0.0298281573, -0.00137277308, -0.00608337391, -0.00565521885, 0.00556601956, -0.02451903, -0.00268667494, -0.0326539837, 0.0303990301, -0.0218359232, -0.0124165053, 0.000575779763, -0.0142218936, 0.0423302948, -0.00503796153, -0.0119169913, 0.0112248063, 0.00792801, -0.00725366548, -0.0242478661, -0.00129249401, 0.0199092235, 0.0133441752, -0.0171690304, 0.00571944192, -0.0257606804, 0.00649368949, 0.021279322, 0.00487740338, -0.00794228166, -0.00449206354, -0.0130301947, -0.0385339819, 0.0129802432, -0.0433007777, -0.00386410207, -0.000969593471, -0.00823485479, 0.019695146, 0.00374992727, 0.0129088843, 0.0313980617, 0.0127804372, -0.00507720886, 0.0127518941, 0.0078994669, -0.0154421367, -0.0193954371, 0.0172403902, 0.00782097131, -0.0186247583, 0.0269024279, 0.0318262167, 0.028515147, 0.00405320432, -0.0174116511, -0.00999029167, 0.0149426218, -0.0337671861, -0.0281012636, 0.00711094681, -0.00564808305, 0.00828480627, -0.0280299038, -0.0159559231, 0.0156419426, -0.0196666028, 0.0240766034, 0.00585859269, 0.0144002922, 0.0195524283, -0.00672203908, 0.0139364572, 0.00807786454, 0.0357937887, -0.019167088, -0.0179825258, -0.00899126288, -0.0168407783, -0.00327717257, -0.0247473791, -0.0115387868, -0.00045580705, 0.0282154381, 0.0186247583, 0.0321687385, -0.0243763123, -0.0283581577, -0.0170691274, 0.00191956316, 0.0283438843, 0.0128803402, 0.0234486423, -0.0227493215, 0.0276588369, 0.027259225, -0.00651866524, 0.0167551469, 0.0324256346, 0.00379274297, 0.0278015547, -0.0055125, -0.00622966047, 0.0168122333, -0.0247759242, -0.0162984468, 0.0403322354, 0.0294285454, 0.00281868945, 0.0319974758, 0.00451347092, -0.0317691267, -0.0325398073, -0.0415596142, 0.0173117481, -0.0371067971, 0.0169977676, -0.0157846604, -0.000338733342, 0.0167694185, 0.00561953895, -0.0240480602, 0.00262780348, 0.0233201962, -0.0114602922, -0.0085416995, 0.0270451475, 0.00364824058, 0.0147000011, 0.026631264, -0.0122309718, 0.056173984, -0.000753285829, 0.0184534956, 0.0316264108, 0.0051414324, 0.0294285454, -0.0160130113, -0.013151506, 0.0156847574, -0.0206370894, 0.0226779617, 0.00684335, 0.0166409723, 0.0119455345, 0.00637594704, 0.00104095275, -0.0199805833, -0.0196380597, -0.0255608745, 0.00999742746, -0.0166267, -0.0174401943, 0.00979762152, 0.0264885444, 0.00864873827, 0.0254181568, -0.0205657296, -0.0113318451, -0.0071537625, -0.00718230614, 0.0385910682, -0.00456342241, 0.00419235462, -0.0240623318, 0.0254181568, 0.0217502918, -0.0205371864, -0.0142004862, -0.00105790049, -0.0102971364, -0.00589427212, 0.00872009713, 0.00548038865, -0.036050681, -0.00151192362, 0.0192527194, -0.00327538862, 0.00847034063, -0.00240123807, 0.0121167963, 0.00703958794, 0.00368570397, -0.0147142727, -0.0144359721, 0.0460695177, -0.0116030099, -0.00293108029, 0.0109322332, -0.0251755361, 0.00668635964, 0.00624750042, 0.0137223797, -0.0337101, -0.0336244665, 0.00587643217, -0.0113889324, -0.0403036922, -0.00473468471, 0.0152566023, 0.0022103521, -0.0112462146, 0.00480247615, -0.00734286429, 0.0239767, -0.0203373805, 0.000395374722, -0.0330535956, -0.00594779151, 0.00104719668, -0.000854526763, -0.00315942988, 0.0311697107, -0.000959781581, 0.00382842263, -0.014571554, -0.00437075272, -0.0138650974, 0.0440429151, -0.0401038863, -0.00977621414, -0.00618684478, 0.0148855345, -0.00210509729, -0.02451903, -0.0336815566, -0.0106967483, -0.0108109228, 0.000907600159, 0.00580150494, 0.0393046625, -0.00317191775, 0.0130801462, 0.000638219062, -0.0136082042, -0.0177256316, -0.0175258256, -0.0266455356, 0.0189530104, -0.00749271875, 0.0206656326, 0.010375632, 0.0200376716, 0.00554461172, 0.0109465057, 0.0324827209, 0.0174687393, -0.0189958271, -0.0119312629, -0.015299418, 0.0113889324, 0.00382128661, -0.00601915084, 0.0350516513, -0.0224924292, 0.00728220912, -0.0482102931, 0.0115673309, -0.0251898076, 0.0172832049, -0.0238767974, 0.000217868641, -0.0288291276, -0.0311982539, -0.00573728187, 0.023891069, -0.0417594202, 0.0289004873, -0.0131229619, -0.047582332, 0.0187532045, 0.0168265048, 0.00277052191, -0.00795655418, 0.0261460207, -0.0324256346, -0.00385339838, 0.00897699, 0.0345949531, -0.00184820394, 0.00159220281, 0.00185355591, -0.00277944189, -0.0118384957, 0.0153422337, 0.0194667969, 0.0243334956, 0.0184534956, -0.0231489334, -0.0552605838, 0.0215362143, -0.0259319432, -0.0340526216, -0.0109179616, 0.000213520194, -0.016455438, 0.0349089354, 0.00419949042, 0.00819917489, 0.00718587404, -0.00980475824, -0.0121667478, 0.010739564, 0.0349660218, -0.0156847574, 0.0136652924, 0.0128732044, -0.00836330187, -0.0148141757, -0.0136652924, -0.00525917485, -0.00792087428, -0.00727864122, 0.00710381102, 0.0114674279, 0.0265884474, 0.00916252472, 0.00321294926, -0.0365930125, 0.00403179647, -0.0032450608, 0.0274875741, -0.0137295155, -0.0165125243, -0.00528771896, -0.018539127, -0.00358401728, 0.00597990304, 0.0191528164, 0.0030827187, -0.00398541288, 0.000513340463, -0.0210081562, -0.00652223313, -0.0193240792, 0.00533410208, -0.00812068, -0.018439224, -0.0177969914, 0.00955500081, 0.00486313133, -0.0192099046, -0.0273734, -0.00498444214, -0.01179568, -0.0200519431, 0.0125592239, 0.01592738, -0.000282314955, 0.00882713683, 0.00149586785, 0.0238197092, -0.0166552439, -0.00441713631, -0.00212472095, 0.00727864122, 0.00655791303, -0.0039354614, -0.0137437871, -0.0110678161, -0.00455628661, -0.0118384957, -0.0023084709, 0.0310555361, 0.0175258256, -0.0248187389, -0.0287577678, -0.00685048569, -0.00326111657, -0.0095692724, -0.034994565, -0.00092856196, 0.0229491275, -0.00807786454, 0.00515213609, -4.78887305e-05, 0.0139721371, 0.00240480597, 0.0807215571, -0.00212472095, 0.00711451517, -0.0217931084, -0.0035822331, -0.0213506799, -0.00294178422, 0.0220928174, 0.0226494186, -0.0058122091, 0.014043496, 0.00661500031, -0.0426157303, 0.0210937876, -0.0192527194, 0.00200876221, -0.018439224, -0.00575155392, 0.0185533985, -0.0404178649, 3.87737055e-05, 0.0259604864, 0.0208939817, -0.00515927235, 0.00312196626, -0.0107038841, 0.0166409723, -0.0343951471, -0.0270451475, 0.00232095877, -0.0101686902, 0.0151567, 0.0241336897, 0.0162841752, 0.026003303, 0.0289861187, 0.0281440783, 0.0115387868, -0.00267240312, 0.00887708832, 0.0100830588, -0.0168835931, -0.0171690304, -0.0215933025, -0.0132300006, 0.00234771846, -0.019595243, -0.0131657775, -0.0254609715, 0.0139221856, 0.0030666627, 0.00590497628, 0.00243156566, -0.0175686423, -0.0167694185, 0.00954786502, -0.02205, 0.00445638364, 0.0377633, -0.0322543718, -0.00143967243, 0.0089341756, 0.0196808744, -0.0144787868, -0.018967282, 0.0145929623, -0.013579661, -0.00520208757, -0.00686832564, 0.00301314332, 0.0117029129, 0.044442527, -0.00196059467, 0.00526274322, -0.0098832529, -0.00340918708, 0.00197843462, 0.0113389809, -0.00320224534, 0.000599417486, 0.00246724533, 0.0176257286, 0.00434934488, -0.0076853889, -0.018967282, -0.00190350739, -0.0131943207, -0.00409245165, -0.00583004905, 0.0152423307, 0.00673631113, -0.0133013595, -0.0146072339, -4.07806838e-05, 0.00483102, -0.00233523082, 0.0276445653, 0.017083399, 0.0102900006, -0.0038248545, 0.00118902314, 0.0290146619, -0.00459196605, 0.000863000634, 0.0190386418, -0.0108608743, 0.0208654385, 0.00228349515, -0.0212935936, 0.0222069919, 0.0445567, -0.0148998071, 0.00195345888, -0.0152566023, 0.0134083992, -0.0246046614, 0.0112248063, 0.00372495176, 0.00334139587, -0.018439224, -0.0236056317, 0.0431009717, 0.0111177675, -0.0287292246, 0.000422134442, -0.00124521856, 0.0121025247, 0.0319403894, -0.0136296125, -0.020551458, 0.000647139, 0.00383912632, 0.0123665538, 0.0129945157, -0.00926242769, -0.00708597107, -0.00259925984, 0.0284437872, -0.00346984249, -0.0233487394, 0.0174401943, 0.0183678642, -0.0187246613, 0.0143146608, -0.00453844666, 0.00339669921, 0.0210652445, 0.00891990308, -0.0139007773, -0.030170681, -0.01771136, 0.00414240314, -0.0149711659, 0.00707526738, 0.0291716512, -0.014043496, 0.0288862158, 0.0137437871, 0.02042301, -0.0120811174, 0.00353584974, 0.0174544677, 0.0168835931, -0.026702622, -0.000573549769, 0.0120168943, -0.0209938847, -0.0131086903, -0.000652044953, 0.0171262138, 0.019894952, -0.00652580149, -0.0100402432, -0.0180824287, 0.0172403902, -0.0101187387, 0.052634567, -0.0141648063, 0.0318262167, 0.00283117732, -0.0182822347, -0.00038935378, -0.00950504933, 0.00388194202, -0.019795049, 0.00317191775, -0.00929097179, 0.00572657818, 0.00167515781, 0.00780669926, -0.00493449066, 0.00767825264, 0.00177595275, -0.00609051, 0.0293714572, 0.00797082577, 0.00930524338, -0.00875577703, -0.011025, -0.00248865294, -0.0138793699, -5.88713629e-05, 0.0337671861, 0.025047088, 0.0035073061, 0.00126751827, -0.0224496126, 0.00244762143, 0.00944082532, -0.00881286431, 0.00652580149, -0.0129945157, 0.00289183273, -0.0112604862, 0.0185248554, 0.00397470873, 0.00593352, -0.0247331075, 0.0309413616, -0.0180396121, -0.00122737873, 0.0106039811, 0.00259390799, 0.00597990304, -0.013415535, -0.0164839812, 0.0114531564, 0.0122309718, -0.000340963306, 0.0254895166, -0.0254324283, 0.0192241762, 0.039647188, -0.00445638364, 0.0289290305, -0.00331463618, -0.0140149519, -0.0275161173, -0.0188959241, 0.0129588358, 0.00232095877, 0.0150853405, -0.0107752429, -0.00657932088, 0.00694325287, -3.94705712e-05, 0.00579793705, -0.00634026714, -0.0200519431, -0.0186104868, -0.0169264078, -0.00165375008, 0.0055945632, -0.0115530593, 0.0303990301, -0.00434577698, 0.00412813108, -0.0299994182, -0.00584432064, -0.041102916, 0.0147285443, 0.0243049525, 0.00113996363, -0.00539475773, 0.00566949043, 0.00224603177, 0.0147428159, -0.00525917485, -0.0103684952, -0.00804932, -0.00534837414, 0.0310269911, 0.0127447583, 0.00652936939, -0.00846320391, -0.0104683982, 0.00899839867, 0.0185819436, -0.00185533985, -0.0110963602, -0.0306559242, 0.0240052436, 0.0136296125, -0.00978335, -0.0112890294, 0.0329394192, 0.00452774297, -0.00129606191, -0.0209510699, -0.0290003903, 0.0189958271, 0.012095389, -0.0018767477, -0.00782097131, -0.00570873823, 0.0205942728, 0.0270166043, 0.00431009755, 0.00160379859, -0.00280441763, 0.0165981557, -0.00580150494, -0.0154135935, -0.00427084975, 0.00579793705, 0.00896985456, 0.00460267, -0.00600844715, -0.00209439336, -0.00688616559, -0.0100117, -0.0285008755, -0.00710381102, -0.0140363602, -0.0307700988, -0.00134690537, 0.00074169, -0.00884854421, -0.00690400507, -0.0127804372, 0.00470970897, -0.014143399, 0.00707526738, 0.00636167498, -0.00168764568, -0.000828213058, -0.00447065569, -0.000499068585, 0.00124700251, -0.0133798551, -0.00637237914, -0.0319403894, 0.00203373795, 0.0118099526, -0.0102543207, 0.0186675731, 0.00480961194, -0.0409316532, 0.00796369, 0.00539475773, -0.0336530097, 0.0316264108, -0.0063081556, 0.00979762152, 0.0206799041, -0.019195633, 0.00518424762, 0.0106039811, -0.0119027188, 0.013087282, -0.00824199058, -0.00863446668, 0.00589427212, -0.0123094665, 0.0242906809, 0.00908403, 0.0138080101, 0.0184963122, -0.0247473791, -0.00138436898, 0.0013531493, 0.0176257286, -0.00593708782, -0.00754267024, -0.00732859271, -0.0131372334, -0.0233915541, -0.0111748548, 0.0338528156, 0.00885568, -0.0124022337, 0.00372138363, 0.0377062149, -0.00309699052, 0.00726436917, 0.0276017487, 0.0295427199, -0.0118599031, 0.000452239095, -0.0194667969, -0.0273305848, -0.00548395654, -0.0301135946, -0.0377062149, -0.00996888429, 0.00649368949, -0.0100402432, 0.014307525, 0.000437744253, 0.0110107288, 0.00317191775, 0.00188566756, 0.0223354381, 0.0187960211, -0.0357652456, -0.0119098546, -0.0123879621, 0.00523419911, -0.000581131724, 0.00113193574, 0.0069789323, 0.0154278651, -0.0117814085, 0.00209617731, 0.00398898078, -0.0171975736, -0.00754980603, -0.0289718471, 0.0255751461, 0.0116815055, 0.000433953304, -0.0168693215, -0.0103042722, -0.0224496126, -0.0115245152, 0.0378774777, 0.00217824033, 0.0458697118, 0.0159987379, -0.0064901216, -0.0330535956, 0.00600487879, 0.00200876221, 0.0029721118, 0.0110749518, -0.0113033019, 0.0238054376, -0.0119740786, 0.0138936415, 0.00524133537, 0.00834189355, -0.0135653894, 0.00365002453, 0.00250649289, -0.0399326235, -0.0169264078, -0.000973161485, -0.0095692724, 0.00310234237, 0.0188245643, 0.0091839321, -0.00209082547, -0.00434934488, -0.00691114133, 0.00943368953, 0.00638665073, 0.0112248063, 0.00797082577, -0.0102614565, 0.00134601339, 0.0239338856, 0.0175829139, -0.000526274322, 0.0051021846, -0.026731167, 0.00752839865, 0.00557672372, -0.024419127, 0.031226797, 0.0100759231, -0.00558742741, -0.0221927203, 0.00618684478, 0.00759975752, 0.01179568, -0.00754980603, 0.00415667519, 0.0212365054, -0.00834189355, 0.010111602, 0.00253325258, -0.0376776718, 0.017811263, -0.00702888379, 0.0129731074, -0.0015431433, -0.00296319183, -0.00343951466, -0.0129017485, 0.0125592239, -0.0103256805, 0.0172118451, -0.00482031563, 0.0172832049, 0.0215219427, 0.0454130135, -0.0092124762, 0.00797796156, 0.00169656565, 0.0088628158, 0.0217217486, -0.0153422337, -0.00216753641, -0.0141576706, 0.0139293214, -0.000294802798, 0.013515438, 0.0142504377, -0.0114388838, -0.00289004878, -0.0209225249, 0.00582648069, 0.0114032049, 0.0111177675, 0.0127518941, 0.00252968469, -0.0125449523, -0.00330393226, -0.0132799521, 0.0104541266, 0.0319689326, -0.0216646623, -0.00747131091, 0.0216218457, 0.0282439813, -0.0150282532, -0.00114620756, 0.00609407807, 0.0107538356, 0.0200091265, 0.0158417486, -0.0163983498, 0.0185819436, -0.0174259227, 0.00727150543, 0.0146286413, 0.00234415056, 0.00514856819, 0.0176828168, -0.00472754892, -0.0128089814, 0.0129517, -0.000102411643, -0.00329858018, -0.00260461168, -0.0155563112, 0.00603699079, 0.0059513594, 0.0135511169, 0.0239196122, -0.00124700251, 0.0375634953, -0.0331677683, -0.0128660686, -0.0294000022, 0.01179568, 0.0187532045, -0.0126377195, 0.00816349592, -0.00365002453, 0.00296854391, -0.00506293727, -0.00811354443, 0.0188531075, -0.00220321608, 0.00288826483, -0.0124735925, 0.00322008505, -0.0129017485, 0.0121310689, -0.00190172344, -0.0122166993, 0.00461337389, -0.0138508258, -0.000238830413, 0.00305774296, -0.0154278651, -0.00119080709, 0.00450276723, -0.0148141757, -0.00904835, 0.0151424278, 0.0113817966, 0.00692184502, 0.0139864087, 0.0150282532, -0.0254324283, -0.0138365543, -0.00212115305, 0.017911166, -0.0256750491, 0.00226030359, 0.00224603177, -0.0120739816, 0.025774952, 0.00636524288, 0.00831335, 0.0209796131, -0.00438502431, 0.00179111655, 0.00202125, -0.00597276725, 0.00177952077, -0.00412456319, -0.00450276723, -0.0142290303, -0.0122880591, 0.00429582549, 0.00869869, -0.0120668449, -0.0162984468, -0.000807697244, 0.0163269918, -0.00941228215, -0.0130730104, -0.0350516513, -0.0118028158, -0.0195524283, -0.0192384478, 0.00817776751, 0.00778529188, -0.0140220877, 0.0118099526, -0.00927669927, -0.000464726967, 0.00762116536, 0.00502725737, -0.0176828168, -0.000912060146, -0.000695752446, -0.00796369, -0.0033360438, 0.0195524283, -0.000348768226, -0.000145617421, 0.00109714817, 0.00141380471, -0.00218894426, -0.0123808263, 0.00397470873, -0.000187540965, 0.000705118349, -0.000978513388, -0.00903407857, -0.0161842722, 0.00243334961, -0.0030862866, -0.00205157767, -0.0236341767, -0.007863787, 0.00899839867, 0.0123380106, -0.00841325242, -0.0344522335, 0.00800650567, -0.0136938356, -0.00835616514, 0.00249400502, 0.0212079622, 0.000540100154, 0.0156704858, 0.0172261167, -0.00868441816, -0.00271700253, 0.00192491512, -0.0206941757, -0.00321116531, 0.00119615905, -0.00356082548, -0.0215790309, 0.00275803404, 0.0103613595, -0.00192134723, 0.0185819436, 0.016555341, -0.019695146, -0.0102043692, 0.00170548551, -0.0167694185, 0.0105326222, 0.0312553421, -0.0140220877, -0.00668992754, -0.00309699052, -0.00553390803, 0.0317691267, 0.0377062149, 0.00193740299, -0.0103328163, 0.0107538356, -0.0113817966, 0.000415667484, 0.0218501948, -0.00484172348, -0.00622609258, -0.00750699081, 0.0182679612, -0.0117457286, -0.00705742743, 0.0265028179, -0.00588713633, 0.0111819906, -0.0135939326, 0.000319109531, -0.0175686423, -0.0319403894, -0.0106682042, 0.00971199106, 0.0178683512, -0.0011524515, 0.0382200032, 0.00811354443, -0.0107181557, 0.00720014609, 0.00707526738, 0.0104113109, -0.0129659716, -0.00446351944, 0.00712521886, 0.0196095165, 0.0042565777, 0.00279192976, 0.00934092328, 0.00644017, 0.000680588651, 0.00687546143, -0.015827477, 0.00931951497, 0.0212365054, 0.0255608745, -0.0130801462, 0.00404606806, -0.0116386898, -0.00931951497, -0.00635097129, 0.00549109234, 0.0199377686, -0.0352229141, 0.0113033019, -0.00453487877, -0.0275874771, 0.040018253, 0.0173545647, 0.00265634712, -1.36725394e-05, 0.00827053469, 0.00355904154, -0.00829194207, 0.0230204873, 0.0109679131, 0.00744990353, 0.00642589852, -0.00929097179, -0.0017893326, -0.00356974523, 0.00168229383, 0.0216932055, 0.00682551, 0.00569446618, 0.0214648563, -0.0127661657, -0.0117885442, 0.00682551, -0.0208083503, 0.03542272, -0.012359418, -0.0200947579, 0.0193954371, 0.0107538356, -0.00966204, 0.0201946609, 0.00803504884, -0.00587643217, 0.00277052191, 0.00914825313, -0.0179967973, 0.012787573, 0.00976907834, -0.0042886897, -0.00103024882, -0.00643660221, -0.00906262174, 0.0157846604, 0.00182590424, 0.0107895155, 0.0251898076, -0.00971912686, -0.00661500031, 0.0146072339, -0.0265599042, 0.0169549529, -0.0271450505, 0.00420662621, 0.0257035941, 0.00981189404, -0.00391762145, -0.00331285223, 0.00143432047, 0.0183964092, 0.00367500028, -0.0051057525, 0.0150282532, 0.0176542737, -0.00303455116, 0.0120882532, -0.00487383502, 0.0078994669, -0.000176502595, -0.000550804, 0.000482566771, 0.00587286428, -0.00687902933, 0.00212828885, -0.00922674779, 0.0202660207, -0.00485599553, 0.0147999041, -0.0013986408, -0.0124950008, -0.0131300976, -0.000786289456, 0.00489167497, -0.00137009716, 0.00459910231, -0.0243049525, -0.0051414324, -0.00101419305, 0.00828480627, 0.00215504877, -0.0287006814, 0.0227207784, -0.0154278651, 0.00949791353, 0.0168978646, 0.013515438, -0.022435341, 0.00589427212, -0.00762830116, 0.00322008505, -0.0115031078, -0.0218644664, -0.0133869909, -0.0210081562, -0.00352692977, -0.0142361661, -0.00320402929, 0.00100081321, 0.0197094195, 0.00852742791, 0.00103738473, -0.00858451519, 0.0297710691, 0.0209082533, -0.00915538892, 7.05229832e-05, -0.00373208756, 0.00293643214, -0.0204087384, -0.00260104379, -0.0177684482, 0.026103206, -0.00686832564, -0.00907689333, 0.000460267, 0.00669349544, -0.00542330137, -0.016255632, -0.00852029212, -0.00833475776, 0.00508434512, 0.00580507331, -0.00812781602, -0.0002852139, 0.0137366513, 0.019067185, 0.00370711181, 0.00860592257, -0.0160843693, -0.00654720888, -0.0117385928, 0.00742849568, -0.00951932091, -0.0100402432, 0.00688259723, 0.0174259227, -0.00162788236, -0.0139079131, -0.02683107, -0.00718587404, -0.0127590299, -0.00906975754, 0.00488097128, -0.0199663118, 0.00802077726, 0.0155277681, -0.00401038863, 0.00601558294, 0.0136652924, 0.0147000011, -0.0104826707, 0.00344486674, 0.0198521372, -0.00877004862, -0.00267418707, 0.0227635931, 0.0013986408, -0.00121756678, 0.0204943698, -0.0146286413, 0.018239418, -0.0103684952, 0.0143217966, 0.00298459968, 0.0107752429, -0.0128018456, 0.0194953401, 0.0162270889, -0.0143931564, 0.00799223315, -0.00233166269, 0.00115958741, 0.0237340797, 0.0269309729, 0.00588713633, -0.012851797, 0.00539119, -0.00286328909, -0.0126091754, 0.0271450505, 0.0103684952, -0.00458483025, 0.0149568943, -0.0131158261, 0.0049630343, 0.0240337886, 0.0121810203, 0.0105468938, 0.0240623318, 0.0289290305, 0.00647228211, 0.00265634712, -0.00345735461, 0.00846320391, -0.0114745637, -0.00987611711, -0.00132371369, -0.000451347121, 0.00379274297, 0.000830443, 0.00260461168, -0.0147856316, -0.0193240792, -0.00925529189, 0.00621538889, -0.0182965063, -0.00712165097, 0.00210866518, -0.02451903, -0.0138722342, 0.00904835, -0.00706456369, 0.00200162642, 0.00972626265, -0.00318440562, 0.00235307054, -0.00807786454, -0.010311408, 0.0242906809, 0.0109893214, 0.0235913601, -0.0037534954, 0.0101615535, 0.0250899047, 0.0165267978, 0.0154135935, -0.010211505, 0.0144359721, 0.0124950008, -0.0199663118, 0.00703958794, -0.00545184501, 0.014143399, -0.00254574046, -0.023891069, 0.000867014634, -0.00169388962, 0.00462051, 0.00970485527, -0.00576582551, -0.0223211665, 0.0113960681, -0.00362148089, -0.0286435932, -0.0133013595, -0.00693254871, -0.00607267, 0.0283581577, 0.00117475132, 0.00367143215, -0.00705029164, -0.0104469908, -0.00828480627, 0.0394759253, -0.0057729613, -0.0216075741, 0.0099260686, 0.00846320391, -0.0185533985, 0.00641162647, -0.0112747578, 0.00920534, -0.00130230584, 0.0164126214, 0.0132085932, 0.012687671, -0.023163205, -0.00588000054, 0.000865230628, 0.0294285454, -0.0136367483, 0.0142861176, -0.00644730637, 0.0137152439, 0.00390334963, -0.00443854416, 0.0010391688, 0.0078352429, 0.0108466027, 0.0145430109, 0.0068041021, -0.00154046726, 0.01384369, 0.00191956316, 0.0265599042, 0.00317726959, -0.00284901704, 0.0165267978, -0.00436004857, 0.013579661, -9.15405108e-05, -0.000526720309, 0.00245654141, 0.0222498067, -0.00617257319, 0.00721085, 0.0149140786, 0.0150425248, 0.0147142727, 0.00222819182, 0.00274197827, -0.0132300006, 0.0092481561, -0.025047088, -0.00435291277, -0.0107609713, 0.0174401943, -0.0181537867, -0.0161985438, 0.0123094665, -0.0108751459, -0.0119312629, 0.0256465059, -0.0113746608, -0.0200234, -0.00107930833, 0.0213221367, -0.00711451517, 0.0256750491, 0.0272877682, -0.0239767, -0.021707477, -0.00812781602, -0.0156704858, -0.0168550499, 0.0118813114, -0.0137866028, -0.0127447583, -0.0340526216, -0.00408531586, 0.0100545147, -0.00716803456, 0.0108608743, -0.0122381076, 0.0158702917, -0.011003593, 0.012687671, 0.0078709228, -0.00569446618, 0.00914825313, 0.00896271877, 0.00453131087, -0.00726436917, 0.00506293727, 0.00403536437, -0.0174401943, -0.0126591269, -0.00143788848, 0.00824912637, 0.000849620788, -0.000657396857, -0.00193205103, -0.00866301, 0.00747844717, -0.0018767477, -0.00916252472, -0.00384269445, 0.00978335, 0.00779956346, 0.0294856317, -0.0329965055, -0.00123719056, 0.0141719421, -0.00644730637, 0.0311411675, -0.0116244182, 0.000978513388, -0.0169121362, 0.00157168694, 0.00665424811, 0.0205371864, 0.0150996121, -0.0016796178, 0.00367143215, 0.00811354443, -0.00302027934, -0.00689330138, -0.0139721371, -0.000442650198, -0.00737140793, 0.00289361668, 0.0137723312, -0.0174687393, -0.00251719682, 0.0133655835, 0.032083109, 0.00236377446, -0.0270594191, -0.0126591269, -0.00197843462, 0.000866122602, 0.0235485453, 0.00303990301, 0.00159041875, 0.0317120403, -0.01272335, 0.0078709228, -0.00188388361, -0.0269167013, 0.00136385323, 0.00412099529, 0.0190243702, 0.00573371397, 0.00192669919, -0.0216932055, 0.0202802923, -0.00707883528, -0.0015886348, -0.00707883528, 0.016455438, -0.0146429138, 0.0242621377, -0.00674344692, 8.14498708e-05, -0.0156704858, -0.00729291281, -0.0117100496, -0.0088628158, -0.00934805907, 0.0142861176, 0.0105611654, -0.0208939817, 0.0033092841, 0.0107467, 0.0126091754, 0.00584075274, 0.00794228166, 0.0250756331, 0.0225780588, 0.0159987379, -2.28015033e-05, -0.00670776749, 0.0282582548, 0.00861305837, 0.0179682542, -0.00450990302, -0.00430652918, 0.0100473789, -0.0178968944, 0.00205336185, 0.00665067974, -0.00971912686, 0.01764, -0.00852742791, 0.0219215546, 0.0206799041, -0.0161842722, -0.0055125, 0.0233201962, 0.00505936937, -0.0010311408, -0.00827053469, -0.0177399032, -0.0258034971, 0.0117742727, -0.00170816155, -0.0192527194, -0.0108323311, -0.00576225761, -0.0214363113, -0.0298852436, 0.00904835, -0.00313623808, 0.0110606803, -0.00480961194, 0.0228777677, 0.0208368935, -0.0177541766, 0.0164839812, -0.000726972125, -0.0109750489, -0.00549109234, -0.00821344741, 0.00792801, 0.0321401954, 0.000789411424, -0.00323078898, -9.49412206e-05, 0.00633313134, 0.00545184501, 0.000931237941, 0.0111891264, -0.012987379, 0.02180738, -0.0078709228, 0.000569535827, -0.0148998071, -0.0330535956, 0.00977621414, 0.0049666022, 0.00602628663, -0.0112533504, 0.00389621384, -0.000532518257, -0.0415596142, 0.0078281071, 0.00898412708, 0.00500941789, 0.0160843693, -0.00311661419, 8.25648531e-05, -0.0241479632, 0.0125306807, -0.00296140788, 0.00260996376, -0.00760689378, -0.00196237885, 0.00298103178, -0.00661500031, 0.0114460196, 0.0208939817, 0.0160843693, 0.00515570398, -0.00823485479, 0.0106610684, -0.00317191775, 0.0169692244, 0.00090314023, 0.0208797101, 0.00637594704, 0.0166837871, -0.00606910232, 0.0288434, 0.00767111685, -0.0134012625, 0.00117742724, -0.0129017485, 0.0199377686, 0.00700390805, 0.0140791759, -0.00922674779, 0.011267622, -0.0092124762, 0.00895558298, -0.00437432062, 0.00296319183, 0.0014976518, 0.00338599528, 0.00827767048, 0.00557672372, -0.0159131084, -0.0138080101, -0.000405409606, -0.02451903, -0.00856310688, 0.0141790789, -0.0110749518, -0.0147999041, -0.0117671369, 0.00311304629, -0.000282537949, 0.00515927235, 0.016555341, -0.00167694187, -0.01592738, 0.00539475773, 0.00349838613, 0.0092481561, -0.00627247617, -0.00912684482, 0.00795655418, -0.0147142727, -0.017183302, -0.0123380106, 0.00416737888, -0.0166695155, 0.00628318, 0.000474538858, 0.0139935445, -0.0221070889, 0.0016189625, 0.0111605832, 0.0249043703, 0.0272021368, 0.014571554, -0.0288005844, -0.0140363602, -0.00378560694, -0.0047453884, 0.0168550499, -0.0130159231, -0.0211508758, -0.015827477, 0.00820631068, -0.0047846362, -0.0100117, -0.00721441768, 0.00530555844, -0.00335745164, -0.0334817506, -0.00886995159, -0.0175115541, -0.00504152942, 0.0109821847, 0.000730986067, -0.00874864124, -0.00140488474, 0.0102400491, 0.0102614565, -0.00872723386, -0.0107252914, -0.0101615535, -0.0163269918, -0.00192134723, -0.00973339844, 0.00486313133, -0.00891990308, 0.0121738845, 0.0160700977, 0.00730361696, 0.0154849524, -0.0281155352, 0.00489881076, -0.000879502448, 0.0194382537, 0.0150853405, 0.0165981557, -0.00514856819, -0.017611457, 0.00119348313, -0.0138793699, 0.00451703928, 0.00169567368, 0.00128446613, 0.0199663118, 0.0210367, -0.0212935936, 0.0286435932, 0.00135047338, 0.00249400502, -0.00803504884, 0.00146108016, -0.00197486673, -0.0147428159, 0.0185105838, -0.00410315534, -0.00971912686, 0.0147999041, 0.00653650519, -0.00652936939, 0.0234343708, -0.0284580607, -0.0191813596, 0.00117029133, -0.0124807293, -0.0110678161, 0.00492021861, -0.00797796156, 0.00255822833, 0.0105754379, -0.00113371969, 0.0184106808, -0.0613689348, -0.0172974765, -0.00362861669, 0.0303419437, 0.0120240301, 0.0249329135, 0.00837757345, 0.0212935936, 0.000314203586, -0.00347697828, 0.031455148, 0.00534480624, 0.00697179651, 0.0158702917, -0.013679564, 0.00342881097, 0.0195096135, 0.0031576457, -0.0046454859, -0.0117457286, 0.016355535, 0.000466064957, -0.00575868972, -0.00635097129, 0.00305239088, 0.0311126225, 0.0165696125, 0.0192384478, -0.0134583507, -0.011103496, 0.00105522457, -0.00204800977, -0.00518067973, 0.013679564, -0.00909830164, 0.00177238486, -0.00650796155, -0.00739281578, -0.00886995159, -0.00298816757, 0.00193561905, -0.0046062381, -0.0243049525, -0.00929097179, 0.0040710438, -0.0128803402, 0.013515438, -0.00101776095, 0.011431748, -0.00418878673, -0.000399611657, 0.0240337886, 0.00514500029, 0.0150139816, 0.00201054616, -0.00368570397, -0.00620468473, -0.0275589339, -0.0002308025, 0.00396043714, -0.0141219907, -0.0202374775, -0.00487383502, 0.000214969667, 0.0143788839, -0.0134226708, 0.000227011536, -0.0128732044, -0.00579080125, 0.0113817966, -0.0100188358, -0.0147856316, 0.00470970897, -0.000190216946, 0.00282225735, -0.0119169913, 0.00860592257, -0.000602539454, 0.0100331074, 0.0150425248, 0.0124664567, 0.00374635938, 0.00710737891, -0.00221392, 0.0201090295, 0.0103684952, -0.034166798, 0.00420662621, -0.00502725737, 0.000776031578, 0.0110535445, 0.00933378655, -0.00358580123, 0.0091767963, -0.00143075245, 0.0110606803, -0.00128714205, -0.00725009758, 0.00698606856, 0.010375632, 0.0023726942, -0.0134868938, 0.0240766034, -0.0112961661, 0.018339321, -0.0214077681, -0.0059513594, -0.011531651, 0.0125949038, 0.0403607786, 0.0121524762, -0.00737854419, 0.0140006803, -0.0190814566, 0.0180967, 0.00779242767, -0.00931237917, 0.00231203903, -0.0148284473, -0.0137295155, -0.010111602, -0.00177952077, 0.00336458767, -0.00115601951, -0.0107324282, 0.00894844718, -0.023363011, 0.0023013351, -0.0109322332, -0.00996888429, -0.00889136, -0.00832048617, 0.012259515, -0.00136652915, 0.0220785458, 0.00426371396, 0.00973339844, 0.020223204, -0.00587643217, 0.0102685932, 0.00450276723, -0.00327895652, 8.10596248e-05, -0.000905370223, -0.0234486423, -0.00642946642, 0.00725723337, 0.0180824287, -0.012159612, -0.00891276728, 0.000477214839, 0.00596919935, -0.00625106832, -0.00856310688, -0.0189815536, -0.00395686924, -0.0047846362, 0.000491486688, -0.0111748548, 0.00389621384, 0.0189815536, -0.0117100496, 0.0178398062, -0.00743563147, 0.00265456317, 0.0152280591, -0.00842752494, 0.0199663118, -0.00877718534, -0.0135083022, 0.0156419426, 0.0264600012, -0.00738568, 0.00677199056, -0.0131443692, 0.0153136905, -0.0127090784, 0.00108822819, 0.0101330103, 0.0128375245, 0.0173831079, 0.0119812144, -0.013679564, -0.0047453884, -0.0191385448, 0.00659359246, -0.0111891264, 0.02793, 0.00345021859, 6.19933271e-05, 0.0011827792, 0.0123522822, 0.00827767048, -0.0138008744, -0.0122737875, -0.00422446616, -0.00754980603, -0.00989752449, -0.00378203904, 0.00518781599, 0.0172832049, 0.00463478174, 0.000592727563, 0.000808589219, -0.0154278651, -0.0116458256, 0.016555341, 0.0113603892, -0.00726436917, 0.00355368946, 0.0051414324, -0.0124593209, -0.0176970884, 0.00280084973, -0.00606910232, 0.0193098076, -0.0105326222, 0.0166837871, -0.0265741758, -0.0119169913, 0.0144573795, 0.00939801056, 0.0150425248, 0.00516997604, 0.0238482542, 0.00458839815, 0.00796369, 0.0286578648, 0.00523063121, -0.0049594664, -0.011025, 0.00186069182, 0.00591211207, -0.000155540809, -0.00653650519, 0.00534480624, 0.00838470925, 0.0222069919, -0.00204800977, 0.0267454386, -0.00124967843, 0.0136938356, -0.0063045877, -0.0226494186, -0.00102846487, 0.0244619437, 0.00966917537, -0.00974767, -0.0142004862, -0.0148284473, -0.0119383987, 0.0175115541, -0.019595243, -0.00800650567, 0.00891990308, 0.0109465057, 0.00788519438, 0.00440286426, -0.0136082042, 0.00847034063, -0.00193561905, -0.007863787, 0.0104541266, 0.00869869, -0.0229063127, -0.00350373797, -0.00976907834, 3.06621696e-05, -0.0104612624, -0.0162270889, 0.011995486, -0.0201090295, -0.0235200021, -0.0300850496, -0.00709667522, 0.000596741564, 0.0135439811, 0.0134012625, -0.00213542487, -0.00755694229, -0.0151709719, -0.0200234, -0.00961922389, 0.025475245, -0.0162413605, -0.00591211207, -0.0270308759, -0.00236555841, 0.00229063118, 0.002122937, 0.00436718483, -0.0251327194, 0.00421376247, -0.00977621414, -0.030598836, -0.00426371396, 0.0026616992, -0.0176257286, -0.0159416515, 0.0020551458, 0.0137437871, -0.0284152441, 0.00628674775, 0.00254930835, -0.00325933262, -0.0112890294, 0.003328908, -0.0282439813, -0.0116600981, -0.0260603894, -0.00764257321, 0.00232095877, -0.0024833011, 0.000792087405, -0.00611191802, -0.0061333254, -0.00220321608, -0.0101044662, 0.0141148549, 0.00290075247, -0.0025742841, -0.0069789323, 0.00416024309, -0.0180681571, 0.0114246123, 0.00936233066, 0.00939087383, -0.00979762152, -0.00706456369, 0.00384269445, -0.0037570633, 0.00287756091, 0.00867728237, -0.0108180586, -0.000861216686, 0.0032646847, -0.00109447213, -0.00971912686, 0.0035750973, -0.0132656805, -0.00585859269, 0.0184820406, 0.010111602, -0.00435648067, -0.00262423558, -0.016455438, -0.00539475773, -0.000293464807, 0.0301992241, -0.0262459237, -0.0176828168, 0.0187817477, 0.0132514089, -0.0115245152, -0.00304525509, -0.00228884723, -0.0116672339, -0.0167836901, 0.0238767974, -0.0209367964, -0.0163698066, -0.0106967483, -0.0224496126, -0.0232916512, -0.00440286426, -0.0144859236, -0.00175186899, -0.006839782, -0.0220785458, -0.00611905381, 0.00425301, 0.00477036415, -0.0183964092, 0.0698178709, 0.0104541266, 0.00180271245, -0.0273020398, -0.00106057653, -0.015727574, 0.00278479373, 0.0419877693, 0.00780669926, 0.0119169913, -0.0160843693, 0.000863000634, -0.0165410694, -0.00215504877, -0.0196523312, -0.0137081072, -0.000985649298, -0.00991179701, -0.0152280591, -0.0155563112, 0.00463834964, -0.0260318462, 0.000654720934, -0.000717160234, 0.00436718483, -0.00380344689, 0.000338510348, -0.0134512139, -0.00654007308, 0.0101401461, -0.00272413855, 0.0276160203, 0.0158845633, 0.00615473324, -0.0295712631, -0.0127733015, 0.0122809233, 0.0101472819, 0.0127447583, -0.0124379136, 0.0051378645, 0.0127090784, -0.0190386418, -0.00403893227, 0.0126733985, 0.0018803156, -0.0179397091, -0.0190243702, -0.0121096605, -0.0181823317, 0.00264742738, -0.00354120159, -0.001015977, -0.0283438843, -0.000262022164, 0.0158560202, 0.0383341759, 0.0078709228, -0.00222819182, 0.0255894195, 0.0161985438, 0.0177256316, 0.00843466073, -0.0213649534, -0.00347876223, -0.0159131084, -0.0134298066, 0.00660072872, -0.000268712087, 0.00111142, -0.0162128173, -0.00860592257, 0.00923388358, -0.0222069919, -0.00201768219, 0.0170405842, -0.0129731074, 0.00421019457, -0.00927669927, -0.0229491275, -0.0151567, 0.00632956345, -0.015827477, -0.0128660686, -0.0232488364, 0.00970485527, -0.0231346618, -0.00825626217, -0.00804218464, 0.010111602, 0.00865587406, 0.0242478661, -0.00394259719, 0.0234486423, 0.00672917534, 0.0165838841, 0.000295694801, 0.0300565064, 0.0326539837, 0.00161628646, 0.0247759242, -0.00337707554, 0.000504420546, -0.0122095635, -0.000915182114, 0.0179682542, 0.000651598966, 0.0082205832, 0.0104683982, 0.00538762147, -0.0109821847, 0.0139935445, 0.00388551, 0.0212650504, -9.5387215e-05, -0.00767111685, -0.0138151459, 0.00646871375, 0.0244476721, 0.00656861672, 0.0155277681, 0.0139578646, -0.00712521886, 0.0110107288, 0.00365716033, 0.0106467968, 0.0161985438, 0.013351311, -0.0068005342, -0.017083399, 0.00505223311, -0.0144217, -0.00100794912, 0.00903407857, 0.018339321, 0.033339031, 0.018539127, -0.00566592254, 0.0134226708, 0.00836330187, -0.00545184501, -0.0119812144, 0.0181823317, 0.002122937, -0.000722066208, 0.000510218495, 0.000788965437, -0.00151549163, 0.0253325254, 0.0186247583, 0.0136867, -0.000238607419, -0.0164411664, -0.0257892255, 0.0106967483, 0.00824199058, -0.0066613839, -0.0203373805, -0.00540902931, -0.00651866524, -0.00113817968, 0.00660072872, 0.0193811655, 0.000204711789, 0.00775674777, 0.00343237887, 0.0302848555, 0.00106682046, 0.00635810709, 0.0177256316, 0.0071965782, 0.0231489334, 0.00468116533, 0.011995486, 0.00112479983, 0.00824199058, 0.00452774297, -0.0135582527, 0.0207655355, -0.00900553446, 0.00355904154, -0.014143399, 0.0111605832, 0.038391266, -0.00348589825, -0.0125092724, 0.0188959241, 0.0119740786, 0.0114816995, 0.00874864124, -0.00412456319, -0.0135511169, -0.00115601951, -0.0159844663, -0.0159701947, 0.00342167495, 0.0143860206, -0.00323970895, -0.021179419, -0.0163983498, 0.00675058272, 0.00314694201, 0.00585502479, -0.0122809233, 0.00702888379, 0.0104255835, 0.0155848553, -0.011895583, 0.0210367, -0.00228349515, -0.00420305831]
29 Dec, 2022
Difference between Flow and TypeScript 29 Dec, 2022 1. Flow : Flow is developed and maintained by Facebook. It is a static type checker, designed to quickly find errors in JavaScript applications. Nothing more, nothing less. It’s not a compiler, but a checker. It can work without any type of annotations and it is very good at inferring types. To enable type checking in flow add // @flow at the top of the file. It checks types locally and doesn’t have a language server or type definitions like TypeScript. 2. TypeScript : TypeScript is an open-source object-oriented programming language. It was introduced on October 1st, 2012. It follows JavaScript syntactically but adds more features to it. It is a superset of JavaScript. It is launched and maintained by Microsoft under the license of Apache 2. It does not directly run on the browser and requires a compiler to compile and generate a TypeScript file. Difference between Flow and TypeScript : S.No. FLOW TYPESCRIPT 1. It is developed by Facebook in 2014. It is developed by Microsoft in 2012. 2. The main features of Flow are Precision, Real-time feedback, Easy to integrate, Reliability, Speed, High throughput, Path sensitivity, Low latency, Type inference, Easily understandable JavaScript patterns. The main features of Typescript are Compile-time type checking, Enumerated type, Interfaces, Namespaces, Type annotations, Type erasure, Type inference, Generic, Tuples. 3. Its utility size is 68.4 MB. Its utility size is 42.4 MB. 4. It is best choice we are working on React as it is easily integrated with babel and the already present infrastructure. It is best choice when we are working on Angular 2 or higher versions. 5. It doesn’t really support encapsulation. It supports encapsulation with public, private, protected modifiers and readonly since TypeScript 2.0. 6. It is only supported by React. It is much better because it support major frontend frameworks like Vue, Angular, and Facebook’s own React. 7. It support very few library. It support many library. 8. Along with the provision of static typing, it also provides us a wide range of inter-procedural analysis and develops an in-depth understanding of our code. Along with the provision of static typing, it also provides us with great language services and appropriate tooling that includes code refactoring, navigation, and auto-completion. 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.
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript
https://www.geeksforgeeks.org/difference-between-flow-and-typescript?ref=asr10
PHP
Difference between Flow and TypeScript
jQWidgets jqxSortable disabled Property, Node.js Stream transform.destroy() Method, jQWidgets jqxSwitchButton enable() Method, Convert string into date using JavaScript, jQWidgets jqxSplitter height Property, How to Declare Optional Properties in TypeScript ?, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxTree checkAll() Method, jQWidgets jqxScrollBar rtl Property, jQWidgets jqxScrollBar step Property, jQWidgets jqxTabs position Property, jQWidgets jqxTooltip height Property, How to Make a Single Property Optional in TypeScript ?, jQWidgets jqxTreeMap width Property, Optional Property Class in TypeScript, jQWidgets jqxTree collapseItem() Method, Difference between Flow and TypeScript, jQWidgets jqxTabs keyboardNavigation Property, jQWidgets jqxTree destroy() Method, jQWidgets jqxTree collapseAll() Method, jQWidgets jqxSortable opacity Property, jQWidgets jqxScrollView buttonsOffset Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, jQWidgets jqxTabs disabled Property, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Node.js date-and-time Date.transform() Method, jQWidgets jqxListBox enableHover Property, jQWidgets jqxSlider height Property, TypeScript Optional Parameters, jQWidgets jqxSwitchButton onLabel Property, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, jQWidgets jqxToolBar theme Property, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxSplitter orientation Property, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxSlider buttonsPosition Property, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, jQWidgets jqxSwitchButton orientation Property, jQWidgets jqxToolBar tools Property, jQWidgets jqxSlider rtl Property, How to use Optional Chaining with Arrays and Functions in TypeScript ?, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTooltip opacity Property, jQWidgets jqxTree width Property, jQWidgets jqxScrollBar showButtons Property, jQWidgets jqxScrollView showButtons Property, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, jQWidgets jqxTree clear() Method, Introduction to TypeScript, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView disabled Property, jQWidgets jqxScrollView animationDuration Property, jQWidgets jqxToolBar height Property, PHP, How to Sort an Array Having Optional Properties in TypeScript ?, jQWidgets jqxSplitter destroy() Method, jQWidgets jqxTreeMap destroy Method
GeeksforGeeks
[-0.0366627462, 0.00987373758, -0.0196955074, 0.0204490293, -0.00526815839, -0.0224107858, 0.0246583596, 0.0148625728, -0.0376501195, -0.01081564, 0.038585525, 0.0307125207, -0.0224627517, 0.00427104114, -0.00839267671, -0.012231742, -0.0168503132, -0.0390012637, -0.00491413288, -0.00665827701, 0.00638545, 0.0170841645, -0.0270228609, -0.0213064849, -0.0267110579, -0.0073143607, 0.0294653103, 4.30859545e-05, -0.0491868034, 0.00700905453, 0.045445174, 0.011153426, 0.015486178, -0.0582030825, -0.0170971565, -0.0174609255, 0.0176038351, -0.0226056613, -0.00333563425, 0.0143818781, -0.0202281699, -0.00456010783, -0.0195915736, 0.0106532425, -0.00913970266, 0.0229564402, 0.0109455576, -0.0233072173, 0.0210596416, -0.0464065671, -0.0203191116, 0.0105882846, -8.51569275e-05, 0.0321416147, 0.00490114139, 0.0185782164, 0.0452373065, -0.0213324688, 0.0229824223, -0.0238528699, 0.029543262, -0.0724420547, -0.0278543327, -0.0433664955, -0.00325281173, 0.00274613313, 0.000420202239, -0.00217287173, 0.0148495818, -0.0211635772, -0.0163176507, 0.0345580801, 0.00412813155, 0.0239178296, 0.00691161631, 0.0037318829, -0.00391376764, 0.000901303312, -0.00975031592, 0.0124655934, 0.00928261224, 0.0319857113, 0.00498558767, 0.0139791332, -0.0360131562, -0.0020932972, -0.0442759171, -0.0390792117, 0.0285818707, -0.0368186459, 0.0114067653, 0.00463156216, 0.0209167339, -0.0400146209, -0.00571962213, 0.0258406103, -0.0110949632, -0.0159278978, 0.0225666873, 0.0424310863, 0.00359222153, 0.026685074, 0.000165441947, -3.14136705e-05, 0.0302188322, -0.0268409755, 0.0121018244, 0.0537339188, 0.00724940188, 0.0273606461, 0.00842515659, -0.022306852, -0.0397028178, 0.0523308069, 0.0117575424, 0.0361430757, -0.00529414229, -0.0468482859, 0.0165125262, -0.047887627, -0.00573911, 0.00873046275, -0.0347139835, 0.0328431688, -0.0184093229, 0.0399366692, 0.00708700484, -0.00986724161, 0.0054402994, 0.0192927625, -0.014057084, 0.0257106926, -0.0049693482, 0.0217352137, 0.0269708931, -0.0219560731, 0.019084895, 0.0420413353, -0.0188900176, 0.0190199353, 0.0345061123, -0.0430027246, 0.0103154574, 0.0117185675, 0.0313101411, -0.0120043857, -0.018032562, 0.0325313658, -0.0162526909, -0.024879219, 0.00444642967, -0.081016615, 0.0237489361, -0.0158889219, 0.0268929433, -0.0274905637, 0.0124006346, 0.0138102407, -0.0135114305, -0.0089448262, -0.00720393052, -0.0150314663, 0.0211505853, 0.0226316452, -0.0342202932, 0.0237099621, 0.0213714447, 0.0103934081, -0.0288936738, 0.0295172781, -0.0308944043, 0.0454971418, -0.0260874536, 0.0232162736, -0.0161097813, -0.0280102342, 0.0211246014, 0.0215793122, 0.00236450019, -0.00871097483, -0.0126994448, -0.0144338449, 0.00356299, -0.00980228279, -0.00509926584, -0.00181722234, 0.0375461839, 0.0132645862, 0.0110624833, -0.0168503132, -0.0236969702, 0.0542535894, 0.0537339188, 0.0253988896, 0.0247882772, 0.0112248808, -0.0589825884, 0.0116730956, -0.00416710693, 0.0106922183, 0.0187990759, 0.0115821538, -0.0167723615, 0.0182144474, -0.00719093904, -0.0379619226, 0.052304823, 0.02451545, 0.0271787606, -0.00512524927, -0.00551500218, -0.0093021, 0.00207056175, 0.00417035492, 0.00170192053, -0.0160967894, 0.00951646362, -0.0117835263, 0.00252689724, 0.0052908943, 0.0130307348, -0.00388453621, -0.0135893803, 0.0113093266, -0.0282700695, 0.00467053754, -0.00384880882, -0.0152393337, 0.000633348303, -0.00513824075, 0.0431066602, 0.0476537757, -0.00350127928, -0.0265551563, -0.0157200284, -0.0159668718, 0.0354675055, -0.0370265134, -0.0316219442, 0.0499922894, 0.00367017207, 0.00773659302, -0.0160058476, -0.0128943212, -0.0347139835, -0.0208387822, 0.016226707, 0.0232422575, -0.0348179154, -0.0257236846, -0.0225666873, -0.0192148127, 0.0117575424, -0.018357357, -0.0447696038, 0.0159019139, 0.0221249666, 0.0100166472, 0.0179026444, -0.0184482988, 0.0180975217, 0.0390532278, 0.001081564, 0.0176947769, -0.00238074, 0.0238918457, 0.0153042926, -8.67174549e-06, -0.0368965976, 0.0289456397, 0.0089448262, -0.0206958726, 0.0156550705, -0.0207088646, 0.0226186533, 0.0256717168, -0.045367226, -0.00557346502, 0.0484852456, 0.0186431743, 0.0224887356, -0.0103024654, 0.0492387675, 0.0368965976, -0.0169152711, -0.0171491224, 0.0191628449, -0.00423531374, -0.0247103274, -0.0321416147, -0.0280622, 0.00245706644, 0.000353416457, 0.0050050756, 0.0353116021, -0.0339864418, -0.00529739, 0.03240145, -0.0125630312, 0.0424570702, -0.00531038176, -0.0340384096, 0.0385335609, -0.0603857, -0.0187601019, 0.000152145687, 0.0459908284, 0.00736632757, 0.00254151295, -0.0638155267, 0.0170451887, 0.00487515796, -0.0274645798, -0.0170451887, 0.0450554229, 0.00240185158, 0.0406901911, 0.00310178264, -0.0378060192, -0.0115756579, -0.0176428091, 0.0185262486, -0.0409760103, 0.0204360373, 0.0312321894, -0.0109260697, 0.0164215844, -0.0360131562, 0.0170321967, -0.0127773955, -0.0316479281, -0.0217611976, -0.0128293624, -0.0134074958, 0.0531882644, 0.00774308899, -0.0178636704, 0.00221834285, -0.0275944974, 0.00443019, 0.0102310106, 0.0321156308, -0.0363249592, 0.0302708, 0.0161747411, -0.0399626531, -0.0105168298, -0.0132061234, -0.00391051965, 0.0207738243, 0.00089318346, 0.0395209342, 0.0420153514, -0.0301928502, 0.0377800353, -0.012231742, 0.00537534058, -0.0535780154, 0.0213974286, 0.0707271397, 0.0188120678, 0.0103219533, 0.0114977071, 0.0510056503, 0.0278023649, -0.0184353068, -0.0185262486, -0.00728837727, 0.0124850813, 0.00640493771, -0.0296991635, 0.0109065827, 0.02377492, 0.0177987106, -0.0105947796, -0.00659331819, -0.0206568986, 0.018773092, -0.000957330281, 0.040378388, -0.0266071241, 0.0342202932, 0.0422492027, 0.0382737257, 0.00110511156, -0.0376241356, 0.011536683, -0.0136023723, 0.00440745428, 0.00932158716, 0.0156550705, 0.0188900176, -0.00655759079, 0.0140960589, -0.0236579943, 0.010432383, -0.0094515048, -0.011523691, 0.0135114305, -0.0461986959, 0.00235313247, 0.0273086783, -0.01439487, -0.000976817915, -0.0362470113, -0.0163566247, -0.0316219442, 0.00750923716, 0.0372603685, 0.00210141717, -0.0419114158, 0.00304007181, 0.000984937767, -0.0146417134, 0.0359352082, 0.0174999, 0.0115821538, 0.0329211205, -0.0395209342, 0.00319597288, 0.0338045582, 0.00696358318, 0.0184742827, -0.0226446372, 0.0233072173, 0.0426909216, -0.00291177817, 0.00458284328, 0.00339409732, -0.000513174513, 0.0200982522, -0.00836019777, 0.0282960534, -0.0400925688, -0.0109715406, -0.0382737257, 0.0698956698, -0.0119719068, -0.00870447885, 0.00113759097, 0.0177467428, 0.0274385959, 0.0321676, -0.0409760103, -0.0588786565, -0.0138622075, -0.0231902916, 0.00064593408, -0.0236839782, 0.0167203955, 0.0247233193, 0.00787950214, -0.00363769266, 0.0275165476, 0.00267955032, 0.0105298208, 0.0493167192, 0.00814583339, 0.0301928502, -0.0164605603, -0.00535585312, 0.0261913873, 0.00470626494, -0.00563192787, -0.0253469236, -0.0257366765, 0.0230733659, -0.0154342102, -0.00737931952, 0.0094515048, 0.0198384169, 0.00997117534, 0.0124006346, 0.0297771133, -0.0324274339, 0.00142503367, 0.0352336541, -0.0133685209, 0.0255158152, -0.0143039273, 0.0265291724, 0.0340643935, 0.0253469236, -0.0226576291, 0.00287117879, -0.0171101466, 0.0515253171, 0.0283220354, 0.045367226, -0.0405602753, 0.0102829775, 0.00229142164, -0.0202931277, -0.0337266065, 0.0169542469, -0.0262823291, -0.0184742827, -0.0153172845, 0.0265941322, -0.00717794709, -0.0117380545, 0.0174479336, -2.3128885e-05, 0.0103674242, -0.0381178223, 0.0146806883, -0.0330510363, 0.0265291724, -0.0428208411, -0.0314660408, -0.0214234125, -0.0179805961, 0.0040371893, 0.0346620157, -0.015473186, 0.00114002696, 0.0155381449, -0.000249279401, -0.0223328341, 0.0217611976, 0.0217741895, -0.00347204786, -0.0152393337, -0.0134984385, -0.0348698832, -0.0103154574, 0.0167203955, -0.00987373758, -0.012634486, -0.0292314589, -0.0273086783, 0.0106922183, 0.016941255, 0.021995049, 0.00552474568, 0.0108741028, 0.0177077688, 0.00548901828, -0.0177727267, 0.00646340055, -0.053681951, 0.00962039828, -0.0573196448, 0.0249831546, -0.0172270741, 0.0141999936, 0.0191888288, -0.028114168, 0.00184320589, 0.00504080253, -0.0012163535, 0.0198903847, 0.00598270539, -0.00183183816, 0.00745727, -0.0192667805, -0.0420933031, -0.000604116824, 0.0112963347, -0.0153302765, -0.000544841925, 0.0303747337, 0.0670374781, -0.0142389685, -0.000954082352, -0.0286078546, 0.0289196577, -0.0182014555, -0.000172445303, -0.00404368527, -0.00409565214, -0.0105493087, -0.00341358478, 0.00045836551, 0.0271267947, 0.0243595485, 0.0341163613, -0.00705452543, 0.0197344832, -0.0134984385, -0.00661930162, 0.00852909, 0.00364418863, 0.00697007915, -0.0115106991, 0.00504080253, -0.0194096882, -0.022306852, 0.0107571771, -0.0238658618, 0.00494011678, 0.0154082272, 0.0202281699, 0.0106402515, -0.0326612853, -0.00730136875, -0.00394949503, -0.00239210785, -0.0119784027, -0.0170971565, -0.0132840741, 0.00291340216, 0.019448664, 0.0170711726, -0.0185262486, -0.0173310079, -0.0139661413, -0.0113028307, -0.0124850813, 0.00797694083, -0.0218521394, -0.0250740964, 0.0137712648, -0.0081978, -0.0235670526, -0.0154082272, -0.0182664134, 0.0189289935, -0.0272826962, -0.004323008, 0.00735333608, -0.0249701627, 0.00412488356, 0.0217611976, -0.0030416958, 0.0108676068, 0.0173829738, -0.048875, 0.00682067405, -0.0129917599, 0.00343956845, -0.0024684344, -0.00797694083, 0.0190329272, -0.00308391894, 0.00262108748, 0.0361950435, -0.00556372106, -0.00108968385, -0.0361950435, -0.0249701627, 0.00341683277, 0.0412618294, 0.0748845041, 0.0035824778, 0.0400406048, -0.0394949503, 0.0390012637, 0.0288936738, 0.0114132613, 0.011179409, 0.00357273384, 0.00744427834, 0.0115561699, -0.0149665074, -0.00763265882, -0.0156550705, -0.0390532278, -0.00317810918, 0.013329545, -0.0124461055, 0.0178506784, 0.0172270741, 0.000568795484, 0.0110429954, -0.00209816918, 0.0133035621, 0.0245934017, 0.0049790917, 0.000269985, -0.0305826031, -0.0126734618, -0.00789899, 0.00506029045, 0.0184612907, -0.0169152711, 0.0113547975, 0.0313880928, -0.0202411618, -0.00798343588, -0.0287897401, -0.0167463776, 0.00418984238, 0.0125760231, 0.00065527187, -0.00553448964, -0.0235540606, -0.00666477252, -0.0103804162, 0.0244375, 0.00502131507, -0.0130372308, 0.0196435414, -0.00520969555, 0.0175778512, -0.0168113373, -0.0146547053, -0.023411151, -0.0112053929, -0.00814583339, 0.0276724473, -0.0444578, -0.0304007176, -0.0074637658, -0.0145637626, 0.0259315521, -0.00161585014, -0.00808737054, -0.00812634546, 0.0214234125, 0.00431976, -0.00693759974, 0.000125756167, -0.0394689664, 0.0204100553, -0.0318557955, -0.0106727304, 0.038507577, -0.0622565113, 0.0268149916, -0.026685074, -0.0209427159, 0.0201762021, 0.00980228279, -0.02163128, -0.010809144, -0.00464455411, 0.0336746424, -0.0207348485, -0.0140960589, -0.00260647177, -0.01081564, -0.00751573313, -0.00749624521, -0.00963339, 0.0503560603, 0.0186951421, 0.0047257524, 0.0117445504, -0.0287117884, 0.0147846229, 0.00168568082, -0.0291015413, 0.0159278978, -0.0414177291, 0.00616134191, 0.0225017276, 0.0189289935, -0.00110348756, 0.0158369541, 0.0178636704, -0.0318038277, 0.0013852464, -0.0220859908, 0.011517195, 0.0091981655, -0.00375786657, 0.00272664567, -0.0106727304, 0.0314920247, 0.00228817365, -0.00295237731, -0.00581056438, 0.0192667805, -0.0113158226, -0.0236579943, -0.00150704407, 0.0189679693, 0.0202671457, -0.00700905453, 0.0373383164, 0.0282960534, -0.0033128988, -0.0202671457, -0.0188120678, 0.00443993369, 0.0150704412, -0.0166684277, -0.0245544259, 0.045029439, -0.0341163613, 0.0405083075, -0.0425610058, -0.0120693445, -0.0150184743, -0.0265421644, 0.0435483791, 0.0087889256, 0.0226576291, 0.00868499093, 0.0127773955, 0.0303747337, 0.0144338449, 0.0176817849, -0.00732735265, 0.000311599229, -0.0121343033, 0.00096951006, -0.0204880051, -0.0291275252, -0.00329828309, 0.00536234863, 0.00209492119, 0.00231578108, 0.0238528699, -0.0376241356, -0.000265925075, 0.00222159084, 0.00358572556, 0.0224367697, 0.0108286319, 0.00844464358, -0.000553773774, 0.0137972487, 0.0164735503, -0.00688563241, -0.00830173399, 0.0146547053, 0.0165774859, 0.00572287, 0.00505379448, -0.0192667805, 0.015499169, -0.0401965044, 0.00849661, 0.0237359442, 0.0260354858, 0.00125370477, 0.0187081341, 0.00913320668, -0.0313880928, -0.0220859908, -0.0352856182, 0.00327392342, -0.0463026315, 5.20177891e-05, -0.00808737054, 0.0245804098, 0.0176428091, 0.0131476605, -0.022722587, 0.00278023654, 0.00202509062, -0.00980228279, -0.000626040448, 0.00371564319, 0.00714546768, -0.00216637598, 0.0331549719, -0.0359352082, 0.0447955877, -0.00784052722, 0.0225017276, 0.032479398, 0.0195266139, 0.0135633973, 0.00189679686, -0.0398327336, -0.000954894349, -0.0312062073, 0.0376241356, 0.0113937734, 0.0281921178, 0.0278283488, -0.00984125771, -0.00284844334, -0.010809144, -0.020526981, -0.00125451677, -0.0187601019, -0.0141090509, -0.0150834331, 0.000928910798, 0.0286858045, 0.00729487324, 0.014044092, -0.0107182013, 0.00751573313, 0.0149405235, -0.0123291798, 0.0331809558, 0.0190459192, -0.00844464358, 0.0119069479, 0.0210986175, 0.043236576, -0.00711298827, -0.00988023356, -0.00453412393, -0.0152133508, -0.00461857067, 0.0192407966, 0.00206731376, -0.0413657613, 0.0221509505, 0.0117835263, 0.0126799578, 0.022358818, -0.0147066722, -0.0186691582, 0.00586577971, 0.00107100816, -0.027750399, -0.0144598288, 0.0510056503, -0.0307644866, -0.00103771675, -0.00538183656, -0.0307904705, 0.016226707, -0.00128374831, 0.0303487498, -0.0259185601, -0.022306852, 0.0141090509, 0.0130956937, -0.0499143414, -0.000688157277, -0.00131460372, 0.0172400642, -0.0128228664, 0.0264512226, -0.022358818, 0.0200073104, 0.0261004455, 0.0216962378, -0.00982177071, -0.0344281644, 0.00926312432, -0.029543262, 0.01081564, 0.026996877, 0.00227680593, -0.0134464717, -0.0330510363, 0.0199813265, -0.00139742612, 0.0353635699, -0.028425971, -0.0195136238, 0.0257496685, -0.00606390368, 0.0240997151, -0.0233981591, -0.0308944043, -0.0222418923, 0.0159798637, -0.0100036552, 0.0158369541, 0.0357793048, 0.00221834285, 0.0290235914, -0.000704803, -0.00585278776, -0.000963826198, -0.0301148985, -0.0202151779, -0.00324794, -0.000421014207, 0.0335447229, 0.0315439925, 0.0487450808, -0.000609800743, 9.90114204e-05, 0.0372603685, 0.0057975729, -0.0149794985, -0.0151094161, 0.000198428825, -0.0043944628, 0.00584304379, 0.0121148163, 0.0308164544, 0.00207218574, 0.01007511, -0.025944544, -0.012965776, -0.0148106059, 0.00587227521, -0.022358818, 0.00449514901, -0.00260159979, -0.024138689, 0.00393975107, 0.00102147716, -0.0360911079, 0.000126771149, -0.0134074958, -0.0547212921, 0.0334667712, 0.0138492156, 0.000774633663, -0.00697007915, 0.00821079221, -0.040378388, -0.00153302762, -0.0129138092, 0.0236579943, -0.0290235914, -0.00810036249, -0.000493686879, -0.0135244215, -0.0318298116, 0.00193902012, 0.0115691619, 0.0172270741, 0.0121667832, 0.00701555, -0.068388626, 0.0316219442, -0.0195006318, -0.0320896469, -0.0331809558, -0.011900452, -0.0119459229, 0.0189679693, 0.00365718035, -0.0171621144, 0.0260744616, -0.00382282538, -0.0167723615, -0.00109617971, 0.0312841572, -5.17006083e-06, 0.019097887, 0.000258211221, 0.00658357423, 0.00595347397, -0.0205399729, -0.00882790051, 0.000307539303, -0.011549674, 0.00332589052, -0.00592099456, 0.018396331, 0.0182274394, 0.0141090509, -0.0426129699, 0.00780155184, -0.0264252387, -0.00795095693, 0.0141220428, 0.0184353068, -0.0155381449, -0.0151094161, -0.0135374134, -0.00453087641, 1.7508426e-05, 0.00339734508, 0.0267630257, -0.0111924009, -0.0165255181, -0.0126799578, -0.0333368555, 0.00779505586, -0.00848361943, -0.0311542396, -0.0149924904, -0.0199163668, 0.0128293624, -0.0115626659, -0.0195785817, 0.00139499025, -0.00713897217, -0.0154472021, 0.0102504985, 0.00488165347, 0.0232162736, -0.00661930162, -0.0123551637, 0.00444967765, -0.00568064675, -0.0334407911, -0.0149665074, -0.0145767545, -0.00192440441, -0.02089075, -0.0169022791, -0.0107571771, -0.0076716342, -0.00773009704, -0.00320571661, 0.0265941322, 0.013342537, -0.0114912111, -0.0288936738, -0.0327652171, -0.00651211943, -0.0178506784, -0.0132905701, -0.00859404914, 0.0215273462, -0.0129592801, -0.0017392718, -0.00648288801, -0.019812433, 0.00932808314, 0.0703633726, -0.0086914869, 0.0179286283, -0.0193057545, 0.00544679537, 0.0014022981, -0.00181884633, 0.0189289935, 0.0254248735, -0.0192148127, -0.00134058716, 0.000296171522, -0.0286078546, 0.0153302765, -0.0341423452, 0.025580775, -0.0118030133, 0.00329828309, 0.011536683, -0.0457050093, -0.0101920357, 0.0267370418, -0.0117640384, -0.0199293587, 0.0106987143, -0.0217222217, 0.00748325372, -0.015122408, -0.0161487572, -0.0039332551, 0.0223977938, -0.00904226489, 0.00979578681, -0.00059071905, 0.0236190185, 0.0366887301, 0.0293613765, -0.00603142427, -0.00856156927, 0.0237619281, -0.01007511, -0.0236969702, -0.0222548842, -0.00797694083, -0.00845114, 0.0107246973, -0.0113677895, 0.00915269461, -0.0150184743, 0.00864601601, -0.00537858857, 0.00624903617, -0.00403069332, 0.00212090486, 0.00270715798, 0.015512161, -0.0131346686, -0.00644716062, 0.00342982449, -0.0268409755, -0.000336161786, 0.00489139743, 0.00789899, -0.0146936802, -0.0428728051, 0.00335187395, 0.0087434547, 0.00405992474, 0.00973732397, 0.000900491315, -0.00904876087, 0.0371824168, 0.0288157221, 0.0140960589, -0.00902927294, 0.0206568986, -0.00622305274, 0.00314238179, 0.000287645671, 0.00330315484, 0.00178311905, 0.005579961, -0.0112378718, 0.00201697065, -0.0110559873, -0.00042304417, -0.0253988896, -0.00767813, -0.00464130612, 0.0112443678, 0.000771385734, -0.0140960589, -0.00626527611, 0.00336811366, 0.000943526567, 0.0225796774, 0.0213454608, 0.0178896524, 0.0120888324, -0.0141870016, -0.0142779443, 0.0217871815, 0.0165774859, -0.0130307348, -0.0165774859, -0.0307385027, 0.0252819639, 0.0101530598, -0.00632698694, 0.0137582738, 0.0268149916, -0.0168503132, -1.1913342e-05, -0.0134984385, 0.0200722683, -0.0233202092, 0.0310503058, 0.00535910064, 0.018370349, -0.0207348485, -0.0385595411, 0.0365328267, 0.00234338874, -0.0275165476, -0.00242783502, 0.0160188396, 0.00938005093, 0.00574560557, 0.0116146328, 0.00732735265, -0.000585035188, -0.00525191892, 0.0147846229, 0.00639519375, -0.00676870672, -4.57502792e-05, 0.00341033703, 0.0104908459, -0.0175648592, -0.00797044486, 0.0174609255, 0.0240607392, -0.0291535091, -0.000987373758, -0.0102829775, 0.0139401583, 0.018370349, -0.0019260284, -0.0078470232, -0.0296212118, -0.0267370418, -0.00437822286, -0.0207998063, 0.00713897217, 0.0404563397, -0.0152393337, 0.0233072173, 0.0381438062, 0.0225536954, -0.00572936609, -0.0279582664, -0.00252202526, -0.000774227665, -0.0172270741, 0.00724940188, 0.0119199399, -0.0242426228, 0.0103284493, -0.0096853571, 0.00560919242, -0.00584304379, 0.00326905143, 0.000288051669, -0.0149924904, 0.000708862906, -0.00236612419, 0.0204360373, -0.0156160947, 0.0337266065, 0.0125370482, -0.0269189253, -0.00155901117, 0.000966262131, 0.0233072173, -0.0195006318, -0.0160318315, 0.0041411235, 0.0129917599, -0.00889935531, 0.00303195184, -0.00332589052, 0.0045081405, 0.00903576892, -0.00546628283, 0.0206049308, 0.0164345764, 0.0279582664, -0.0124526015, -0.0095034726, -0.0153822433, 0.0109910285, 0.0134334797, 0.0284519531, 0.0262563471, 0.0106857223, -0.00470951293, -0.0341683291, 0.042846825, 0.0137972487, 0.0277763829, 0.00295075332, 0.000549713848, -0.0039332551, -0.00915919058, 0.0288157221, 0.00525841489, 0.0139661413, -0.0206439067, -0.00580082089, -0.010094597, -0.0164865423, 0.00782753527, 0.020929724, 0.012264221, -0.015473186, -0.0165385101, 0.0116211288, 0.00969185308, 0.0030254561, 0.0195136238, -0.0332848877, 0.0156940464, 0.0224627517, -0.00926962, 0.0187860839, -0.0146157295, -0.00726239383, -0.0301148985, 0.0108805988, 0.0365588106, -0.00019812434, -0.0137842568, -0.0222418923, -0.0258016344, 0.00787950214, -0.000160468539, -0.00197961926, -0.00321708457, -0.0164215844, -0.0067037479, -0.0218391474, -0.000947586494, 0.00565466331, -0.0229044724, 0.0232942253, -0.00817181729, 0.0133555289, -0.0208257902, -0.00451788446, -0.0153172845, 0.021995049, 0.0282700695, -0.00308391894, 0.00423206575, 0.00994519237, 0.0109715406, 0.0137582738, 0.00855507329, -0.00580406841, -0.0218911152, -0.0160578154, 0.022683613, 0.017668793, -0.00582355633, -0.0119524188, 0.00234826049, 0.0099127125, -0.00575534953, -0.0121083204, -0.00950996764, -0.0357793048, 0.00693759974, -0.00141366583, -0.0156550705, 0.0217352137, 0.0158369541, 0.0228525046, 0.0170451887, -0.00895781815, -0.0122967009, 0.0445357524, -0.00434249546, 0.0137842568, -0.00645690458, -0.00900978502, 0.00417035492, 0.0147456471, 0.0080419, -0.00292639388, 0.00709999679, 0.00149486435, 0.0146287214, 0.00833421387, -0.0140311, -0.0128423544, -0.0013332793, -0.0134984385, 0.0150054824, 0.00310178264, -0.0140181091, 0.00502131507, -0.0289716236, 0.0256587248, -0.0134854466, -0.0374942198, -0.00376436231, 0.0131541565, -0.0262693372, -0.0157979801, -0.0299589969, 0.0117315594, 0.0160448235, 0.016564494, 0.029543262, -0.0157330204, 0.00124802091, -0.00268117432, -0.00401120586, -0.0210596416, -0.01114693, -0.0450814068, -0.0166164599, -0.00507653, 0.0103154574, 0.0217222217, 0.0164865423, 0.000526978227, -0.0200722683, 0.00791847706, -9.16020581e-05, -0.00773009704, 0.0132256113, -0.0235150848, -0.000348341564, 0.0144598288, -0.0306605529, -0.0166294519, -0.00546628283, -0.00218261569, -0.00232227705, 0.00258860807, -0.0159019139, -0.0101205809, -0.0118549811, 0.0200592764, -0.00734684, 0.00473874435, -0.0105623007, 0.00577808497, -0.00711948425, 0.017668793, 0.00570338266, 0.0136673311, -0.0290235914, -0.0152783096, -0.00614510244, -0.015499169, -0.0185652245, 0.0286858045, 0.0109325657, 0.000574073405, -0.0109910285, 0.0251130722, 0.004498397, 0.0112248808, 0.0032771714, 0.0262043793, 0.00447566109, 0.00386829651, -0.0141220428, -0.0123746507, -0.0185262486, -0.0145247877, -0.00917218253, 0.00719743501, -0.0151613839, -0.00772360107, 0.00114165084, -0.00155332731, 0.0364548787, 0.00982826576, -0.00300596841, 0.0250091366, 0.00500832358, -0.0055539771, 0.00506678643, -0.0335707068, -0.00218586368, -0.0044366857, 0.0108741028, -0.000684909348, 0.0141610177, 0.0121797742, 0.0125890151, 0.0126929488, -0.0156420786, -0.00416385895, -0.0398587175, -0.00514798472, -0.00608663959, -0.0116016418, -0.00872396678, -0.000329259899, 0.00452438043, -0.0343761966, 0.0325313658, -0.00371889118, 0.0424830541, -0.00711298827, -0.00769761764, -0.00806788262, 0.0250351205, -0.00664853305, 0.00898380205, 0.0202801377, 0.00732085668, 0.0301408824, -0.011900452, 0.0257626586, -0.0338305421, 0.0138881914, 0.0021095369, 0.0103154574, 0.00792497303, -0.0386374928, -0.0325833336, -0.00938005093, -0.0168762952, 0.016928263, 0.0167983454, 0.0160318315, -0.0103154574, -0.0225147195, 0.014044092, 0.00350452727, 0.00231090933, 0.0291535091, 0.0271008108, -0.0143429022, 0.0278543327, -0.00753522059, 0.0120238736, 0.00594373, -0.00607039966, -0.0250221286, 0.00404368527, -0.00858755317, -0.0219300911, 0.0214753784, 0.00519670406, 0.00907474384, 0.00348503958, -0.00431001605, 0.0183443651, -0.00213389657, -0.00530713378, -0.00559620047, 0.0256457329, -0.0161357652, -0.00228167768, 0.00291827391, -0.00146157295, -0.00391051965, -0.01587593, 0.0123421717, -0.0160838, 0.00221184711, -0.00714546768, -0.0151613839, 0.000676789496, -0.00112135126, 0.0157719962, -0.00765864225, 0.0111988969, 0.0204490293, 0.0518631041, -0.00530713378, 0.000606552756, -0.0101855397, -0.00200235494, 0.0143818781, -0.0102440026, -0.0138622075, -0.0183183812, 0.0198903847, -0.00395923853, -0.00155982317, 0.00462506665, -0.0168633033, 0.0140051171, -0.0091981655, 0.00557671301, 0.00784052722, 0.0199553426, 0.0235280767, -0.0072104265, -0.00491413288, 0.00887337141, -0.00773659302, 0.00412163557, 0.00212252885, -0.000647152, -0.0301668663, 0.0199553426, 0.00656733429, -0.024151681, 0.00286468305, 0.0164995342, 0.00816532131, 0.0310762897, 0.0235800445, -0.0154082272, 0.0170971565, -0.0171751063, -0.00316511746, 0.0157330204, -0.00603142427, 0.0102310106, 0.0211765692, -0.0159278978, -0.0139531503, 0.00819130428, 0.000309366267, 0.00958791841, -0.00502456306, -0.000542, 0.0179286283, -0.0107701691, -0.00751573313, 0.00617758185, -0.00700905453, 0.0197734591, -0.00278835651, -0.0156160947, -0.0127384206, 0.00497584417, 0.0106597384, 0.00107263215, -0.0035662381, 0.000878567749, 0.0181364957, 0.00795745291, -0.0322195627, 0.0197214913, -0.00305631151, 0.0172530562, -0.0164735503, 0.00575859752, -0.0128618423, -0.000853396195, -0.00211278489, -0.00811984949, 0.00762616284, 0.00249766582, 0.00454386789, 0.00384556083, -0.0134724546, 0.022358818, -0.0112378718, -0.010101093, -0.0210466515, 0.0110040205, -0.0185002666, -0.00626202812, -0.0125825191, 0.0055442336, -0.0237489361, -0.0123746507, -0.00293613761, 0.0247622933, -0.0130047519, 0.0196175575, -0.00490438938, -0.0184742827, 0.00666477252, 0.0194876399, 0.00466728956, 0.00380658568, 0.00256587262, 0.00758718746, -0.00551175419, 0.00357598183, -0.00116844638, -0.00218099169, 0.000719824689, 0.000455929578, 0.0031732372, 0.00932158716, 0.0412878133, 0.000269579, -0.0119264349, -0.000548495853, 0.0166944116, -0.016551502, -0.0125240562, -0.00836669281, -0.00551500218, -0.0152913015, -0.00281758793, 0.00383906509, 0.00861353707, -0.0170971565, -0.000507490593, -0.0147196641, 0.00292477, -0.0148495818, 0.0350777507, 0.00529739, 0.00634972239, -0.00361170922, -0.00232552504, -0.00625553215, 0.0287377723, -0.00510900933, -0.00464455411, 0.012257725, 0.0195266139, -0.0192148127, -0.0041411235, -0.00463481, 0.0123226838, 0.00885388441, -0.00456985133, -0.00563842384, -0.0272826962, 0.00205919379, -0.0094320178, -0.0106857223, -0.0366107784, -0.00378709799, 0.0124396095, 0.0175518673, 0.0108286319, -0.0310503058, 0.00567739876, 0.00279485225, -0.0156420786, 0.00246518641, 0.030972356, -0.0115431789, 0.00496285222, 0.015499169, 0.00531038176, 0.0133555289, -0.0032089646, -0.0142259765, 0.00113190711, 0.0140830679, -0.0144598288, -0.0215143543, -0.011185905, 0.00793146901, -0.00309528667, 0.0167463776, 0.0182664134, -0.0159668718, -0.0157330204, -0.0026665586, -0.0306865368, 0.00845763553, 0.000997117604, -0.015473186, -0.005946978, -0.00607039966, -0.00365393236, 0.0116925836, 0.0314400569, -0.00719743501, 0.00483293459, -0.00592424255, 0.00592099456, 0.0185522325, 0.0191758368, 0.0123421717, -0.00762616284, -0.00200885092, 0.0246453676, -0.003514271, 0.00316024548, 0.0217741895, 0.00497259619, 0.00128212431, 0.0112183848, 0.00693759974, -0.01007511, -0.0296991635, -0.0208387822, 0.00440745428, -0.0120368656, -0.0180455539, 0.0268149916, -0.00222321483, -0.00296374527, 0.00559295248, 0.00536559662, -0.0001731558, -0.0119719068, 0.0107701691, -0.00169380067, 0.0196305495, -0.00503755501, 0.0152263427, 0.00608663959, 0.006853153, -0.00744427834, 0.0155901117, -0.0120108817, 0.00633348292, 0.0141870016, 0.0162137169, 0.0093021, 0.0144598288, 0.00467703352, -0.0287637562, -0.0200852603, -0.00553124165, 0.00139174226, -0.0185782164, -0.013680323, 0.0035662381, -0.0195266139, 0.0352596343, 0.0334927551, -0.0122447331, -1.81427895e-05, 0.0056221839, 0.00462181866, -0.0162916668, 0.00726239383, 0.00817181729, 0.0199163668, 0.015512161, 0.00160773029, -0.00930859614, -0.0109975245, -0.00949697662, 0.00350452727, -0.00457309932, -0.0113612935, 0.0188510437, -0.00300434441, -0.0139791332, -0.00193577225, 0.00325118797, 0.0102440026, 0.00116438651, 0.00767813, 0.00789899, 0.0028062202, -0.0276724473, 0.0149794985, 0.00442694221, -0.0167074036, -0.0103544323, 0.00142584566, -0.00508952187, 0.0148625728, 0.0296731796, 0.00389103196, -0.00290690619, -0.000435223948, 0.0118679721, 0.00408590864, -0.0172530562, 0.00645365659, 0.0152783096, -0.015862938, -0.000486379, 0.0206828807, -0.0347139835, 0.0254638493, -0.0321156308, 0.0102764815, 0.0146547053, 0.000938654644, 0.00164183357, -0.0111988969, 0.00654784683, 0.017668793, -0.00777556794, 0.00503755501, 0.0160058476, 0.00572611811, -0.0140830679, 0.00754171656, -0.000881815678, 0.0124461055, 0.0143169193, 0.0039657345, -0.0139271664, 0.0193577223, -0.00249279384, 0.00142746954, -0.0153692514, 0.0224757437, 0.00797044486, -0.0118744681, -0.015473186, -0.00166781712, -0.00849661, -0.00893183518, 0.00150054821, 0.012251229, -0.0167983454, -0.00756120402, 0.00115464267, 0.00653810287, -0.00762616284, 0.00597620942, -0.0407421589, 0.00123502919, -0.0149405235, 0.0162526909, 0.0216702558, 0.00775608048, -0.0284519531, 0.00408915617, -0.00842515659, -0.0136023723, 0.00290690619, -0.0250351205, -0.0157070383, -0.0112963347, -0.00534610916, -0.0405862555, -0.00339734508, -0.0240477473, 0.0193317384, -0.00490438938, 0.0019617558, -0.00884089246, 0.0108481189, 0.0305826031, -0.00909423176, 0.00389103196, 0.0100166472, 0.00143558939, 0.0103219533, 0.0180845298, -0.0080419, 0.0249571707, 0.00168080896, 0.0277763829, -0.00559620047, 0.00558645651, 0.00403069332, -0.00296536903, 0.00623929268, -0.0154342102, -0.00164589356, 0.0163696166, -0.0180585459, -0.00984125771, 0.0109585496, -0.00261134375, -0.0190589111, 0.0329990685, -0.0201372281, -0.00583979581, 0.000362957275, 0.0187601019, -0.000514798448, -0.0225926694, 0.0080419, 0.00428403262, -0.00190004485, -0.00765214628, -0.0176817849, 0.000533880142, 0.00519020809, -0.022306852, 0.0131996274, 0.00137793855, 0.0145117957, 6.91202222e-05, 0.00650562346, -0.00513824075, 0.00384880882, 0.0133685209, -0.00976980291, 0.00311802235, -0.0103349453, -0.0144468369, -0.0167074036, 0.0282181017, -0.0157719962, -0.019097887, 0.0195785817, -0.00936056301, 0.00449190103, -0.0279063, 0.00500832358, 0.00650237594, 0.0148885567, -0.0204490293, 0.0148625728, 0.0424570702, -0.0116666006, -0.0143039273, -0.020513989, 0.00824327115, 0.0095034726, 0.0335966907, 0.00665827701, -0.00152328378, 0.0150574492, 0.00910072774, 0.00241321931, -0.000671511574, -0.000459583505, -0.0144598288, 0.0143429022, -0.00691161631, 0.0226576291, 0.0082562631, 0.0144988038, 0.00832122192, 0.0240997151, 0.034584064, 0.00539158, 0.022709595, -0.000548089854, -0.00237099617, -0.0131801404, 0.00400471, 0.00614185445, -0.00688563241, -0.00463481, 0.00312614208, 0.0147456471, 0.00847712345, -0.0353116021, -0.0112768477, -0.0086914869, -0.00480370317, 0.000108501496, 0.0135244215, -0.00443343818, 0.00230928534, -0.000975194, 0.00108481199, -0.00839267671, 0.00220697513, -0.00615159841, 0.00608339161, 0.00273151742, -0.00865251198, 0.0113223186, 0.0154082272, 0.016603468, 0.00941902585, 0.024892211, 0.0313101411, 0.00872396678, 0.0235540606, -0.0325313658, 0.00726888934, 0.013680323, -0.00388128823, -0.00169380067, 0.00289716246, 0.0163046587, 0.00571637414, -0.0163696166, -0.0044366857, 0.0112118889, -0.00926312432, 0.0040014619, 0.00224107853, -0.0167333856, -0.00598595338, -0.0155381449, 0.00127075647, -0.00980877876, 0.00717145111, 0.00188542914, 0.0157200284, -0.00196500355, 0.0256197508, 0.00179935875, -0.0035305107, -0.0185522325, 0.0228265226, 0.00107100816, -0.0175518673, 0.00797044486, 0.00244245073, -0.0180455539, 0.0327912, -0.00626527611, 0.0208127983, 0.00144776923, 0.0274385959, 0.0168503132, 0.00791198201, -0.0235670526, 0.0162137169, 0.00266980659, 0.025567783, 3.63870786e-05, 0.00906824786, -0.0254638493, 0.0213324688, 0.00211116089, -0.0174479336, -0.0100556221, 0.0149535155, 0.0191628449, 0.0107766651, 0.00893833, -0.00907474384, 0.028114168, -0.0148625728, 0.0095034726, 0.0240737312, 0.00403069332, 0.00673622731, 0.0105428128, 0.0195655897, -0.0108805988, 0.00975031592, -0.000570013479, 0.0120108817, -0.00396248652, 0.00669725193, 0.0358572565, 0.00708700484, 0.0235800445, 0.00931509212, -0.00390727166, 0.00198286725, -0.0159278978, -0.029205475, 0.00562868, -0.016226707, 0.0177727267, -0.0197474752, -0.0113223186, 0.0230084062, -0.0136283562, -0.00679469, 0.00590475462, -0.00113109511, -0.027750399, 0.00483943056, 0.0244894661, 0.00113759097, 0.0137972487, 0.0226706211, -0.0176947769, -0.015473186, -0.0109130777, -0.0109130777, -0.00490763737, 0.0145897465, -0.0116925836, -0.0126734618, -0.0326872692, -0.00426779315, -0.00242133928, 0.00181559846, 0.0151094161, 0.00668426044, 0.0115886498, -0.0144468369, -0.00546628283, -0.0116536086, -0.00735333608, 0.0030595595, 0.0129527841, -0.00439121481, 0.00532986922, 0.0136673311, -0.00494336477, -0.0163826086, -0.0196435414, -0.00565466331, -0.0265291724, -0.00600544084, 0.0157200284, -0.00229304563, -0.0262043793, 0.00697657513, 0.00161016616, -0.0253988896, -0.0135374134, 0.00915919058, -0.00678169867, 0.00866550393, -0.0248272531, -0.00348828756, 0.0103934081, 0.000700743054, 0.00845114, -0.00454386789, 0.00571312616, -0.0159538817, 0.0163566247, 0.0127124367, 0.0201242361, -0.00811984949, -0.00254800892, 0.0168503132, 0.00403069332, 0.00668426044, 0.00308067095, -0.0226186533, -0.0137842568, -0.0222678762, 0.000385083869, -0.00119686581, -0.0192018207, 0.0191368628, 0.00230441336, 0.0228265226, -0.011172913, 0.00437497487, -0.00917218253, 0.00338435336, -0.000658519799, 0.00845114, 0.02377492, -0.0168503132, 0.0281921178, -0.0161227733, -0.00346879987, 0.012270717, -0.0187860839, 0.0106142676, 0.0165255181, 0.00481994264, 0.00339734508, 0.0135374134, 0.0040989, 0.0100556221, -0.00135439099, -0.0040989, -0.00891884323, 0.0255547911, -0.0172270741, 0.0224237777, -0.00198124326, 0.0062685241, 0.0011822501, -0.0238918457, -0.00435548741, -0.0127838915, 0.0159408897, 0.00826275907, 0.017993588, -0.00991920847, 0.0078470232, 0.00902927294, 0.0134464717, 0.0106207635, -0.00747026177, 0.019461656, 0.0181364957, 0.0111988969, -1.85614699e-05, -0.00854857825, 0.018032562, 0.0103739202, 0.0113807814, -0.00584629178, -0.00499857962, 0.0119199399, -0.0197344832, -0.0102764815, 0.00971134, -0.00201209867, 0.0188900176, -0.0267890077, 0.0125630312, 0.0103349453, -0.0254508574, -0.00370914745, 0.024528442, -0.0047517363, -0.00224595051, 0.00039360972, -0.00462831417, -0.021618288, 0.0102440026, -0.0196955074, -0.0368965976, -0.00916568656, -0.020929724, -0.0280622, -0.0275165476, -0.0142129855, -0.00726239383, 0.0146676963, -0.0113547975, 0.0247882772, 0.0156550705, -0.0143558942, 0.00999066327, -0.0123421717, 0.0190589111, -0.00480695115, -0.0050830259, -0.00271040597, 0.0213064849, 0.0145637626, -0.0246323757, -0.00733384816, 0.0184872746, 0.0180975217, -0.00520644756, -0.00444967765, -0.0200462844, 0.0226056613, -0.0182534214, 0.0115431789, -0.00551500218, -0.0211116094, 0.00962039828, 0.00453412393, 0.00912671071, -0.0214753784, -0.00169867254, 0.0243335664, -0.0330510363, -0.00660306169, 0.00279322825, 0.0046120747, 0.0263862647, 0.0130502228, 0.0145507706, -0.0291275252, -0.000673947507, -0.0125695271, 0.000182595119, -0.0102375066, -0.00111241941, -0.00902927294, -0.00438471884, 0.0181235056, 0.0101270769, 0.012608503, -0.00973082799, -0.0128228664, 0.0216442719, -0.0154601941, 0.000301449414, -0.0139791332, 0.0251000803, 0.0200332943, 0.0282181017, -0.0103284493, 0.0212025512, 0.0107182013, -0.0155901117, -0.00984775368, -0.00758069195, 0.00240672356, 0.00723641, 0.00814583339, -0.017344, 0.0216962378, 0.00761317136, 0.0323235, 0.00114002696, -0.0027558771, -0.00581056438, 0.0256197508, -0.00505704246, 0.0125370482, -0.0139141744, 0.000124741186, 0.0140051171, -0.0205399729, 0.0127903875, 0.0146936802, -0.00499533163, -0.002432707, -0.00402744533, -0.00882140454, -0.0143039273, -0.00567090325, -0.00180260662, 0.0052649104, -0.0210596416, -0.006853153, 0.00798993185, 0.0218651313, 0.00146076095, -0.00860704109, -0.00121310551, -0.0144858118, -0.00425804919, 0.00103365688, -0.0112443678, -0.0183443651, 0.0104258871, -0.00980228279, 0.0039657345, -0.0160578154, 0.00948398467, -0.000271608966, -0.00629125955, 0.0120433616, 0.0050050756, -0.0231902916, -0.0103414403, -0.00641468121, -0.0120953284, 0.00890585128, 0.00782753527, 0.000500994734, 0.0012520809, -0.0298550632, -0.0135504054, -0.0224237777, -0.00523892697, 0.00397547847, -0.00427104114, -0.018383339, 0.00452762842, -0.0124396095, -0.0117900223, 0.000905363238, 0.00759368343, -0.0209687, 0.00505379448, 0.000212943065, 0.00954894349, -0.00440095877, -0.0128163705, -0.00559620047, -0.00431001605, -0.000340221712, -0.0156940464, -0.0140181091, 0.00754821254, 0.0063822018, 0.0196435414, -0.00906824786, 0.0188640356, -0.00999066327, 0.00266168686, -0.0131606525, -0.00256424863, 0.0376241356, 0.0268669594, -0.00984775368, -0.014044092, 0.00555072911, 0.00593398605, 0.0150054824, 0.000760017952, 0.0183183812, 0.0276464652, 0.0116276247, -0.00154358346, 0.0322195627, 0.0117835263, 0.00995818339, 0.00363119692, 0.0143039273, -0.000541188, -0.00946449675, 0.0105103338, 0.00114977069, -0.0112573598, 0.000485973, -0.00362470094, -0.00509277, 0.0141220428, -0.0329471, -0.0282440856, 0.00594373, -0.0213714447, -0.0123096919, -0.00405992474, -0.00411189208, -0.00523567898, 0.0203580875, -0.0189419854, 0.0192278046, -0.0171101466, 0.00140554598, -0.00372213917, 0.0215533301, 0.00691161631, 0.00456985133, -0.00244245073, 0.00281434, 0.0078470232, 0.00768462569, 0.0238918457, -0.00843165163, 0.0255028252, 0.0224757437, -0.0182014555, -0.0109845325, 0.0131801404, -0.00056108163, -8.31777143e-05, -0.00732735265, 0.0108416239, 0.0240607392, -0.00284032337, -0.0211116094, -0.000359303347, 0.00490438938, -0.000382038939, 0.0220729988, 0.00239373161, 0.00256749662, -0.0029198979, 0.0016044823, -0.0105882846, 0.018721126, 0.00945800077, -0.00512524927, -0.00200235494, 0.00439771079, -0.0119134439, 0.0187081341, 0.00188380515, -0.00573261408, -0.0075677, -0.00534935715, 0.0119848987, -0.00813284144, 0.030998338, 0.000974382, 0.0143818781, -0.0125370482, -0.0135893803, 0.00704153394, 0.0055085062, 0.00990621652, 0.00909423176, 0.00445617363, -0.0117055755, -0.0225926694, 0.00517721614, 0.00314075779, -0.00678819465, -0.0195396058, 0.00289066648, 0.00886038, -0.00359222153, -0.0117770303, -0.0040989, -0.00811335351, -0.00335187395, -0.0105298208, -0.0089448262, -0.00893833, 0.0067752027, -0.0041411235, -0.00960091, -0.0218131654, 0.00157443888, 0.0187860839, 0.0105623007, -0.00724290591, 0.0157719962, -0.0056221839, 0.00719093904, 0.0109455576, 0.00575210154, -0.00208030548, -0.00910072774, 0.00489789341, 0.00310340663, 0.0149924904, 0.00758069195, -0.00977629889, 0.014797614, -0.00015417565, -0.00639519375, 0.0158369541, 0.00682067405, -0.00369615573, 0.00279322825, 0.00321221258, -0.013706306, -0.00261783949, 0.0230213981, -0.0203450955, 0.0201632101, -0.0267370418, -0.0227485709, 0.00100280147, -0.00369290775, 0.0287897401, -0.00575210154, 0.000924850872, -0.000355852419, -0.00658682222, -0.0177337527, 0.0279063, -0.00527465437, 0.0115821538, -0.00778206391, -0.0384296253, -0.0312062073, -0.0196695235, -0.00684665749, 0.0169672389, -0.0127644036, 0.0140830679, -0.00212252885, 0.00278186053, -0.00393650308, -0.00272989343, -0.00249441783, -0.0196175575, 0.00538508454, 0.00367991603, 0.00614510244, 0.00839917269, 0.0138492156, -0.00706751738, 0.0132515952, 0.00189354899, 0.0109780366, -0.010088101, -0.0038195774, -0.00706751738, -0.00811984949, -0.00423531374, 0.0145247877, 0.0247882772, -0.00310178264, -0.0126409819, -0.00868499093, 0.0204360373, -0.000134180518, -0.0122772129, -0.0193447303, -0.00651211943, -0.00641143322, 0.00718444306, -0.0166294519, 0.0055539771, 0.0199423507, -0.0122967009, 0.0344021805, 0.0033291385, 0.0105817886, 0.00114327483, -0.0237359442, 0.0193187464, 0.000630100316, -0.0152263427, 0.0146287214, 0.0148365898, -0.00295724929, -0.0131996274, -0.0193966981, 0.0085355863, -0.00229791738, -0.00889285933, 0.00382607314, 0.0144338449, 0.00181722234, 0.00509277, -0.0121862702, -0.00773659302, 0.000727538543, -0.00034955953, -0.0212415271, 0.0158499461, 0.0164215844, 0.00313101406, -0.0145767545, 0.0126604699, -0.000925662869, -0.00267467857, 0.0144728199, 0.00185944559, -0.00928261224, -0.00629775552, -0.00679469, 0.00464455411, -0.019825425, 0.0204230454, -0.0106012756, -0.0196825154, -0.0330250524, -0.0150054824, 0.0160838, -0.0041768509, -0.0208127983, 0.00934107509, 0.0106012756, -0.0134464717, -0.0260095038, 0.0134594627, -0.00506353844, 0.0242296327, -0.00910722371, 0.0235670526, -0.0121472953, -0.00765214628, 0.0135893803, -0.000431976019, 0.00576509349, 0.0143818781, 0.000244407478, -0.00725589786, 0.000659331796, 0.000200255789, 0.0134724546, 0.00811335351, -0.0025009138, -0.0177467428, 0.0201632101, 0.0100621181, -0.00301733613, -0.000574885344, 0.0213584527, 0.0157979801, -0.00329016312, 0.0328171849, 0.00266331062, 0.0122122541, -0.0146936802, -0.0178766605, 0.00387479225, 0.00882140454, -0.00268117432, -0.0161487572, -0.00340708904, -0.00623604469, -0.00190004485, 0.0266590901, -0.0181624796, -0.00172952795, 0.00370589946, 0.00976980291, 0.00859404914, -0.00542081194, -0.00876943767, 0.0171101466, -0.0101725478, 0.000859080115, 0.0182014555, 0.0136413481, -0.0157330204, -0.0183183812, 0.00330477883, 0.00419633836, -0.00141204183, -0.00787300617, 0.00254963292, 0.00629125955, -0.00245544268, -0.0265811402, -0.00510251382, -0.005579961, 0.0126799578, -0.00257886434, -0.00455036387, -0.00153871148, 0.00181397446, -0.012251229, -0.0035662381, 0.0254508574, -0.0237619281, -0.00219885539, -0.0309463721, 0.000750680105, 0.000942714571, 0.00658357423, 0.000878567749, -0.0278023649, 0.00962689426, -0.0214753784, -0.031336125, 0.0049693482, -0.00801591575, -0.0267890077, -0.0182404313, -0.0124785854, -0.00944500882, 7.50071122e-05, 0.032479398, -0.00822378416, -0.00871097483, 0.00452113245, -0.00207380974, -0.0230213981, -0.00761317136, -0.0345320962, -0.00810036249, -0.00188380515, -0.00521619152, 0.00797694083, 0.00985425, -0.00823677517, 0.00424180971, -0.0146676963, 0.0102115227, -0.0116925836, 0.0135244215, 0.00808737054, 0.0099386964, -0.0142909354, 0.00128780818, 0.0143169193, 0.00826275907, 0.00107344415, -0.022345826, 0.00362470094, -0.00921765342, 0.0178246945, 0.0135374134, -0.031336125, 0.0158369541, -0.00226381421, 0.00407941267, -0.0102829775, 0.0112833437, -0.0214883704, -0.0105947796, 0.0448735394, 0.01587593, -0.00991920847, -0.0188510437, -0.00809386652, -0.00594048202, 0.0191888288, 0.0287637562, -0.0153562604, -0.0204750132, 0.0145377787, 0.023787912, -0.022358818, -0.0014867445, 0.00160935428, 0.00938654598, 0.00151354, 0.0157719962, -0.0134074958, -0.0156940464, -0.00789249409, -0.0433145277, -0.0215273462, -0.00477771973, -0.00771060959, -0.0166554358, -0.0119394269, -0.00657383027, -0.00867849588, -0.0121797742, -0.0013162276, -0.0185522325, 0.00912671071, 0.00711948425, 0.00973082799, -0.00628801156, 0.0192407966, -0.00960091, 0.00416385895, 0.0287377723, 0.0393910147, 0.0118095092, -0.000558645639, 0.000408022461, -0.00773659302, 0.00110673555, -0.0228395127, -0.00554098561, -0.0497064739, -0.0138881914, 0.0032268283, -0.0121407993, -0.0134594627, -0.00117331825, -0.00934107509, 0.0113612935, -0.000468921324, -0.00229304563, 0.014771631, -0.0284519531, -2.2913202e-05, 0.00928261224, 0.011179409, 0.0132970661, 0.0186561663, -0.00265519088, -0.0167463776, -0.00696358318, 0.00268117432, -0.0061288625, 0.010451871, -0.00592749054, 0.00131947559, 0.0139531503, -0.00864601601, 0.00948398467, 0.0149665074, 0.00488165347, 0.00188542914, -0.0228914805, 0.00998416729, 0.00633023493, -0.0146027375, 0.00283545163, -0.00492387684, -0.0243985243, -0.000169603358, 0.00259185606, 0.0271008108, -0.00250903354, 0.021254519, 0.0296991635, 0.0116471127, 0.0139401583, 0.0190589111, -0.0165904779, 0.00873695873, -0.0130502228, -0.0127773955, 0.00358897354, 0.00928910822, -0.000318907114, -0.00505704246, -0.00484917453, 0.00534935715, -0.0157070383, 0.0269189253, 0.0060509122, -0.0283740032, 0.00268117432, -0.0106272595, -0.0084901154, -0.0114002693, 0.00996467937, -0.00745727, -0.0080419, -0.00105314457, -0.0042190738, -0.0105298208, -0.00137387856, -0.0168113373, 0.00166213326, 0.0107961521, 0.0117445504, 0.00617433386, 0.00327392342, 0.00971783604, -0.00336811366, 0.00674921926, 0.0137322899, 0.0236839782, 0.0146806883, 0.0133555289, 0.0105428128, 0.00149486435, -0.0216442719, -0.0188510437, -0.00713897217, 0.00676221075, -0.000313020224, 0.00252202526, 0.00628476357, -0.0103674242, -0.00942552183, -0.00335837, -0.00194226811, 0.00156144716, -0.0113612935, -0.0235540606, 0.0157200284, 0.00201534666, -0.0047257524, 0.0290235914, 0.000340830709, -0.00334213022, 0.0074637658, -0.011153426, 0.0285818707, -0.00178961491, 0.00652511138, -0.0124850813, 0.00106207631, -0.00128862017, 0.000353619456, 0.0134724546, -0.01081564, 0.0225796774, 0.00674921926, 0.00689212838, 0.0123681556, -0.0118225012, 0.0119589148, -0.00228492566, -0.012595511, 0.00528764632, -0.00283057964, -0.015862938, -0.0179676041, 0.00745727, 0.00129917602, 0.0268149916, 0.00929560419, 0.0236839782, -0.0143299112, -0.00681417808, -0.00531687774, 0.0146547053, 0.00851609837, -0.00385530479, -0.0206439067, 0.00865251198, -0.0154212192, 0.024476476, 0.00340384105, -0.00749624521, -0.0143039273, -0.0117575424, 0.000908611168, 0.00443343818, 0.000241971531, -0.00676870672, 0.0131216776, 0.0145507706, 0.0084381476, 0.0181754716, 0.00534286117, -0.00369615573, -0.00588526716, 0.00823028, -0.00857456122, -0.00379359373, 0.00568714272, -0.00683366554, -0.00960091, 0.0329990685, 0.0257756505, -0.0216442719, 0.0105752926, -0.00365393236, 0.0176428091, 0.0285818707, 0.0177467428, 0.0133035621, -0.00103040889, 0.00854208227, 0.000379602978, -0.00516747264, 0.00481344713, 0.0263602808, -0.0112508638, -0.0125305522, -0.0139141744, -0.00170516851, -0.00946449675, 0.004865414, 0.00800942, 0.0119784027, -4.83384792e-05, 0.000954082352, -0.00379684172, 0.0109910285, -0.0303227678, -0.00127725233]
28 Dec, 2024
Difference Between Flow Control and Error Control 28 Dec, 2024 In data transmission, the general aspect of maintaining effective and accurate transfer of data between gadgets is very important. This is where the flow control and the error control mechanisms will be of help. Flow control regulates the amount of data being transmitted from the sender to the receiver so that it does not overpower the receiver, while error control concerns itself with errors that may occur in the transmission process. Protocols are two categories that run again in the Data Link Layer to ensure that the transmission of data is accurate and efficient. What is Flow Control? It is an important function of the Data Link Layer. It refers to a set of procedures that tells the sender how much data it can transmit before waiting for acknowledgment from the receiver. Purpose of Flow Control Any receiving device has a limited speed at which it can process incoming data and also a limited amount of memory to store incoming data. If the source is sending the data at a faster rate than the capacity of the receiver, there is a possibility of the receiver being swamped. The receiver will keep losing some of the frames simply because they are arriving too quickly and the buffer is also getting filled up. This will generate waste frames on the network. Therefore, the receiving device must have some mechanism to inform the sender to send fewer frames or stop transmission temporarily. In this way, flow control will control the rate of frame transmission to a value that can be handled by the receiver. Example –Stop & Wait Protocol What is Error Control? The error control function of the data link layer detects the errors in transmitted frames and re-transmits all the erroneous frames. Purpose of Error Control The function of error control function of the data link layer helps in dealing with data frames that are damaged in transit, data frames lost in transit and acknowledged frames that are lost in transmission. The method used for error control is called Automatic Repeat Request (ARQ) which is used for the noisy channel. Example –Stop & Wait ARQ and Sliding Window ARQ Difference Between Flow Control and Error Control Flow control Error control Flow control is meant only for the transmission of data from sender to receiver. Error control is meant for the transmission of error free data from sender to receiver. For Flow control there are two approaches : Feedback-based Flow Control and Rate-based Flow Control. To detect error in data, the approaches are : Checksum, Cyclic Redundancy Check and Parity Checking. To correct error in data, the approaches are : Hamming code, Binary Convolution codes, Reed-Solomon code, Low-Density Parity Check codes. It prevents the loss of data and avoid over running of receive buffers. It is used to detect and correct the error occurred in the code. Example of Flow Control techniques are : Stop & Wait Protocol and Sliding Window Protocol. Example of Error Control techniques are : Stop & Wait ARQ and Sliding Window ARQ (Go-back-N ARQ, Selected Repeat ARQ). Conclusion Flow control and error control are two vital sub layers of the Data Link Layer that assists in data communication to be smooth. Flow is mainly concerned with the control of data flow rate to avoid overloading of the receiver while error control is mainly concerned with the identification and elimination of errors in the stream of data. Difference Between Flow Control and Error Control – FAQs How does flow control prevent data loss? Flow control ensures that data loss is avoided by controlling the flow of data whereby the receiver controls the rate at which the sender sends data to the former. It makes provision that the receiver cannot be flooded with more data than it can process at any one time, thus minimizing the risk of data overflow and the consequent loss of data. Common techniques of error control? The error control techniques which are often used include the ARQ methods such as the Stop & Wait ARQ and the Sliding Window ARQ. Checksum, Cyclic Redundancy Check (CRC) and parity checking are also used error detection techniques to find out errors in the transmitted data. Why is it important to manage both flow control and error control in data communication? Both flow control and error control are significant aspects in data transmission since they serve different functions. Flow control guarantees that the receiver is capable of handling incoming data without being overloaded while error control is used to check and correct all the errors that is likely to happen during the transmission. Collectively all of them provide a proper flow of communication and minimizes the chances of failure and faults. Can you give an example of a scenario where flow control is crucial? Flow control is important in cases where information is sent to or received from a network in which its throughput or capacity differs. For instance in a network where a fast server transmits data to a slow client, the flow control makes sure that data is transmitted in a rate that the client in question can cope with, thus avoiding loss of data. 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!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control
https://www.geeksforgeeks.org/difference-between-flow-control-and-error-control?ref=asr10
PHP
Difference Between Flow Control and Error Control
jQWidgets jqxSortable disabled Property, Node.js Stream transform.destroy() Method, jQWidgets jqxSwitchButton enable() Method, Convert string into date using JavaScript, jQWidgets jqxSplitter height Property, How to Declare Optional Properties in TypeScript ?, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxTree checkAll() Method, jQWidgets jqxScrollBar rtl Property, jQWidgets jqxScrollBar step Property, jQWidgets jqxTabs position Property, jQWidgets jqxTooltip height Property, How to Make a Single Property Optional in TypeScript ?, jQWidgets jqxTreeMap width Property, Optional Property Class in TypeScript, jQWidgets jqxTree collapseItem() Method, Difference between Flow and TypeScript, jQWidgets jqxTabs keyboardNavigation Property, jQWidgets jqxTree destroy() Method, jQWidgets jqxTree collapseAll() Method, jQWidgets jqxSortable opacity Property, jQWidgets jqxScrollView buttonsOffset Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, jQWidgets jqxTabs disabled Property, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Node.js date-and-time Date.transform() Method, jQWidgets jqxListBox enableHover Property, jQWidgets jqxSlider height Property, TypeScript Optional Parameters, jQWidgets jqxSwitchButton onLabel Property, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, jQWidgets jqxToolBar theme Property, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxSplitter orientation Property, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxSlider buttonsPosition Property, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, jQWidgets jqxSwitchButton orientation Property, jQWidgets jqxToolBar tools Property, jQWidgets jqxSlider rtl Property, How to use Optional Chaining with Arrays and Functions in TypeScript ?, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTooltip opacity Property, jQWidgets jqxTree width Property, Difference Between Flow Control and Error Control, jQWidgets jqxScrollBar showButtons Property, jQWidgets jqxScrollView showButtons Property, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, jQWidgets jqxTree clear() Method, Introduction to TypeScript, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView disabled Property, jQWidgets jqxScrollView animationDuration Property, jQWidgets jqxToolBar height Property, PHP, How to Sort an Array Having Optional Properties in TypeScript ?, jQWidgets jqxSplitter destroy() Method, jQWidgets jqxTreeMap destroy Method
GeeksforGeeks
[-0.0462966375, 0.0365715101, -0.0129747037, 0.0142100155, 0.0170583129, 0.02788499, -0.0112672988, 0.00415835716, -0.0500733852, -0.0103309797, 0.0484367944, 0.0111728804, 0.0290180147, -0.0268149115, 0.0231640562, -0.00721909665, 0.00902485475, -0.00308434432, -0.0100162514, -0.005684793, 0.017199941, -0.00413081842, -0.0100870654, -0.0236204136, -0.0681073591, 0.00845047366, 0.00811214, 0.0192928892, -0.045258034, 0.0230853725, 0.059420839, 0.0019001764, 0.0223929696, -0.0359735265, -0.0118967565, -0.0472093523, -0.00631031673, -0.00958349835, 0.00926877, 0.0189781599, -0.0032318735, 0.0125812925, -0.00555890147, 0.0275230519, -0.0249580108, 0.0139661, -0.0298520476, -0.0104332669, 0.000222523246, -0.0423939973, -0.0188207943, -0.028750496, 0.000222031493, 0.0305759236, 0.00606246758, 0.0310794897, 0.0434640758, -0.00244308403, 0.00125793251, -0.0369491875, 0.0373898074, -0.0313470103, -0.0237148311, -0.0237305686, -0.00927663781, -0.0241711885, -0.0410406627, 0.011007647, 0.012746525, -0.0224716514, -0.0580360293, 0.0177349802, -0.0335186385, -0.00941039715, -0.00180280709, -0.00154315575, 0.00686502689, 0.0373583362, 0.0450062491, 0.0192299429, -0.00422523683, 0.0423310511, -0.00672733271, 0.00815935, -0.00638899906, -0.00200147973, -0.00655423198, -0.0474926084, 0.0636067316, 0.0168222655, 0.00180772482, 0.0236676224, -0.0146978451, -0.0476814471, 0.00207917858, -0.0181126557, 0.0231797919, -0.00470126467, -0.0101500107, 0.00495304773, -0.00847407896, 0.0117944703, -0.0209452156, -0.00730958162, 0.0359735265, -0.0111650117, -0.0604909174, 0.0135254795, 0.0178766083, 0.0764162, 0.0144775352, -0.0192456786, 0.0127701303, 0.0132343555, -0.0183172282, -0.0261225086, 0.0165232737, -0.0139110228, 0.0110469889, 0.00258471211, 0.000863537716, 0.0266418122, -0.0365715101, 0.0680444166, -0.0290652253, 0.0501992777, 0.034148097, 0.0040226304, 0.0203314945, -0.00922156, -0.0269093309, 0.0112515623, -0.00240374287, 0.0124711376, 0.0174989328, -0.0380822122, -0.0266103391, 0.0227076989, 0.0238879323, -0.0178294, 0.0463910587, -0.0190883148, -0.0227863807, 0.00480355183, 0.0148394732, -0.0112909032, -0.00317286188, 0.0318505764, -0.061844252, 0.01046474, -0.00198377622, -0.0516155586, 0.00647161528, 0.00153627107, 0.0288921241, -0.0501363315, 0.00106024335, 0.00365085667, -0.0103781894, -0.0401908942, -0.0026830649, -0.0335186385, 0.00467766, 0.00996904168, 0.0156892408, 0.018789323, 0.0280738287, -0.00339317229, -0.0485941619, 0.0431178771, -0.0485626869, 0.0259336717, -0.0225345977, 0.0322911963, -0.0227863807, 0.00333612761, 0.00752202328, 0.0276804175, -0.0191040505, 0.00612541335, -0.0315673202, -0.0329836, -0.0138244722, -0.00694764312, 0.0355958529, 0.00574380439, 0.00155102392, -0.00548415305, -0.0143516436, -0.0325115062, -0.0201426577, 0.0149574969, 0.0595782027, 0.0344628282, -0.00900124945, -0.01622428, -0.0384598859, 0.00420556637, 0.0209137425, -0.0213386267, -0.00990609545, 0.00610574288, -0.0117787337, 0.0170425754, 0.0044652177, -0.0101421429, 0.017199941, 0.0191827342, -0.00121269026, 0.00468946248, -0.0403482616, 0.00177920249, 0.00338333682, 0.0031649936, 0.0247534364, -0.00601525838, -0.0265946016, -0.0114010582, -0.0373898074, 0.00225818064, 0.00791936927, 0.0175146703, -0.0309693348, -0.00259848149, -0.064708285, -0.0307018161, -0.00532678841, -0.0677296817, -0.0457616, -0.0215589385, -0.030450033, 0.0457616, 0.010826678, -0.0250052195, -0.0408833, 0.0396243818, -0.00606246758, 0.0183801744, -0.0269722771, 0.00575560704, -0.0327632912, 0.0330780186, -0.0363197289, -0.0256661512, -0.029002279, 0.0128960218, 0.022629017, 0.0518358685, 0.00382395764, -0.0269250665, -0.0391837619, 0.00258864625, 0.0456986539, -0.00114482676, -0.0192299429, 0.0345257744, -0.00098549528, -0.0249894839, 0.0214330461, -0.0100555923, 0.0428031459, 0.0082222959, 0.0030922126, 0.0340851508, -0.00775413634, -0.012927494, 0.0134940064, 0.0293956902, 0.0155790867, 0.000874848338, 0.0105512906, -0.00382395764, -0.0210868437, -0.0472093523, 0.0164603274, 0.0184431206, -0.0396558568, -0.00753382593, 0.0468946248, 0.0240767691, -0.0131950136, -0.0363512, 0.00753382593, -0.00214802544, -0.0384598859, -0.0245646, -0.00918221939, 0.0133759836, -0.0714434832, -0.0391522907, -0.0349663943, 0.00651489059, -0.00769905839, -0.00508680753, 0.0214645192, 0.00283846236, -0.0176562984, 0.021763511, -0.0244072359, 0.00850555208, -0.00483895885, -0.0176562984, 0.0201269202, -0.0134625332, -0.0505140088, -0.0249894839, 0.0173730422, -0.00307057495, 0.0242970809, -0.0101814838, 0.0365400389, -0.00175756484, -0.0147686591, -0.0667855, 0.00885962136, 0.012817339, 0.0321967788, 0.0298363101, -0.036067944, -0.0202528127, 0.0397502743, 0.029804837, -0.00812000874, 0.0460133813, 0.0046815942, -0.037987791, 0.00251586502, 0.0141155962, -0.00834031869, -0.00741580268, -0.0395614356, 0.00124416314, -0.015933156, -0.0291753802, 0.0195761453, -0.0162557531, -0.0260123536, 0.0186319575, -0.0389005058, 0.0049569821, -0.0148158688, -0.025965143, -0.0429919846, -0.00334989699, 0.00371380243, 0.00935532, 0.00713254651, 0.0097566, 0.00559824239, -0.0142965652, 0.00164249202, 0.0383339934, 0.0220939778, 0.0101421429, 0.0506084263, -0.0183801744, 0.00334006175, 0.00880454388, 0.00198082579, 0.00440227194, 0.015099125, 0.0159016829, -0.0290337522, 0.0456671789, -0.0157600548, 0.00144972058, -0.00787216, -0.000930417678, 0.00101598457, -0.0165232737, -0.0497271828, -0.00500419131, -0.00233292882, 0.0179552902, -0.00882814918, 0.0265788659, 0.0164445918, -0.0059208395, -0.00546054821, 0.0151542025, 0.00708533684, 0.0198279284, 0.0188837405, 0.0127622616, -0.0300723575, -0.0102522979, -0.012274432, -0.0134074558, -0.0101185376, 0.0308749173, -0.0343369357, 0.013289433, -0.0116371056, 0.0163344368, -0.00603886321, 0.00141333, -0.00805706251, -0.0155004039, 0.0398761667, -0.0252727401, 0.0331409648, 0.0272712689, -0.00263192132, 0.00281092362, -0.0395299643, 0.023211265, -0.0142257512, -0.00827737339, 0.00723876758, 0.0295058452, 0.0060506654, 0.0199066103, 0.0333298035, -0.0116685787, 0.00544087775, 0.0227706451, -0.0443138443, 0.0492865629, -0.0196863, 0.00652275886, 0.00507107144, 0.021763511, 0.0135962935, 0.00282469299, 0.0732689127, 0.0219366122, -0.00223851018, 0.00912714191, 0.00397148682, 0.00913501, 0.0349663943, 0.0140919918, -0.0147135817, -0.00343251345, -0.000735187321, -0.0551719964, 0.0467687324, -0.0254301038, -0.0170583129, 0.0147843957, 0.019953819, 0.0493180379, 0.0278535187, -0.0530003682, -0.0444397368, 0.000751907297, -0.0376730636, -0.0259179343, -0.0291753802, -0.0277905725, -0.0126442378, -0.0186162218, -0.0129983081, 0.0216218829, -0.00280895643, 0.00970152207, 0.0713805407, -0.0477758646, 0.0522135422, -0.00420950074, 0.0218421929, 0.00992970075, -0.0276489444, 0.00990609545, 0.0269722771, -0.019591881, -0.0012648172, 0.0131163318, -0.00788002741, -0.00956776179, 0.027302742, -0.0335501134, 0.0118810199, 0.0212284718, 0.0104096625, 0.0180024989, 0.0125419516, 0.000407180662, -0.00639686733, -0.0607427, 0.0339907333, 0.0126521066, -0.0087809395, -0.0196390916, 0.00623163441, 0.00248635933, 0.0487829968, 0.00483895885, 0.012675711, -0.0515526123, 0.0160826519, -0.0133209061, -0.0371380225, -0.0314729027, -0.0151856747, -0.010936833, -0.0441564806, -8.64275353e-05, -0.0272870064, -0.00428031478, 0.0101185376, 0.0189624224, 0.00707746856, 0.0551405251, -0.0360364728, 0.00109269982, 0.0234158393, 0.0236676224, 0.00288370461, -0.0480591208, -0.00689649954, 0.0285459217, -0.0151384659, 0.0410721377, 0.000985003426, 0.0280895643, -0.00536613, 0.000652079179, -0.00709320512, 0.0255245231, 0.0218264572, 0.0137064485, 0.0146112945, -0.00136218651, -0.0166963749, -0.013179278, 0.00871012546, -0.00292107859, -0.0349034481, -0.0520247072, -0.0074669458, 0.0201269202, 0.0186004844, -0.0175304059, -0.0353125967, 0.00419769809, 0.0299307294, 0.0225975439, -0.0146270311, -0.00512614893, -0.0419848524, 0.0368862413, -0.0315673202, 0.00805706251, -0.00404820219, 0.0168222655, -0.0095913671, 0.00797051191, 0.0278377812, -0.00815935, 0.0337074772, 0.00405213609, 0.0125419516, 0.0186162218, -0.010716523, 0.000876323611, 0.0119360983, -0.00452422956, -0.0191512611, -0.000163388613, -0.0199223459, 0.0342425182, 0.0164131187, 0.0427087285, 0.0171369947, -0.0160275754, 0.0224087052, 0.00439046975, -0.0276804175, -0.00776200416, -0.0214959923, -0.0217163023, 0.0197020359, -0.00112810684, 0.0180024989, 0.0212284718, 0.0404426791, -0.0139582315, 0.0255087875, 0.0283413474, -0.00208311272, -0.00924516469, 0.0355643779, 0.020063974, 0.0182385463, -0.00858423393, 0.0019916445, 0.0164918, -0.00334596285, -0.0103152432, -0.0101893516, 0.0110155158, -0.000438899442, 0.0213858373, 0.0147607913, 0.00859210175, 0.00137202186, 0.00774626806, -0.00732531771, -0.0110705933, 0.0149653647, 0.027192587, 0.0229752176, 0.0112515623, 0.00675487146, -0.00114384328, -0.0335186385, 0.0224873889, 0.00209884904, -0.00880454388, 0.0186949037, 0.0139346272, 0.0113066398, 0.0106693134, -0.0290652253, -0.0258392524, 0.00944973901, 0.00890683103, -0.0045517683, -0.0104962131, 0.00727024, -0.0172314141, 0.0227076989, -0.00920582376, -0.00537399808, -0.0153587759, -0.0280895643, -0.0433696583, -0.0212756824, -0.0235889405, -0.0179395545, 0.0207563788, -0.00798624847, -0.0103073753, 0.0036606919, -0.014013309, -0.00685715862, -0.00904059131, -0.012274432, -0.0554867275, -0.0225818064, 0.0138559453, -0.024438709, 0.092593275, 0.00808066782, 0.0427087285, 0.00260241563, 0.0570288971, 0.013360247, 0.0163501725, -0.00376691297, 0.00926877, 0.00330465473, 0.0338018946, -0.0223614965, -0.0366029851, 0.0438732244, -0.0534409881, -0.0207563788, -0.00226998306, -0.0107243909, 0.00749448454, 0.0300251488, -0.0123216407, -0.00188935758, -0.019733509, 0.0211497899, -0.00100319879, -0.000808460172, 0.0463281125, -0.0231325831, -0.0142100155, 0.0475240797, 0.0254615769, -0.04163865, -0.0124868741, 0.00109761744, 0.0549202152, 0.000236907348, -0.0349978656, -0.0479647033, -0.0118888887, 0.0197492465, 0.0166649017, -0.00358004263, 0.00570052909, -0.0377045348, -0.00805312861, -0.015169939, -0.00330858887, -0.0191040505, -0.0114561366, -0.00405607, -0.0356902704, -0.0161770713, 0.00338923815, 0.00183034595, -0.0141392015, -0.00909566879, -0.016114125, 0.0219680853, 0.00375117641, -0.0291596428, 0.000549300516, -0.0180497095, 0.0302297212, 0.00134349952, -0.00905632786, -0.0269880127, 0.0117157875, -0.00176051538, -0.0365400389, -0.0131478049, 0.00188148941, 0.0191040505, -0.0338963158, -0.0112358257, 0.00311778439, -0.0171527322, 0.00210278318, -0.0103703206, 0.016727848, 0.0286246035, -0.0358791091, -0.0387116708, 0.00371380243, 0.0119439662, 0.0245016534, -0.0131478049, -0.0010700787, 0.0119675705, -0.0115190819, -0.00304697035, -0.02310111, -0.0060939407, 0.0205675419, 0.0205045957, 0.0282154568, 0.0327947624, -0.0300094113, 0.0324170887, -0.00640473561, -0.00388887036, -0.00798624847, -0.0152879618, -0.0102522979, 0.017451724, 0.0290494878, -0.0099769095, -0.0208350606, 0.0135726891, -0.0245960727, 0.0148237366, -0.0306860786, -0.0203157589, 0.00916648284, 0.0165390093, 0.0143201705, 0.0159095526, 0.014847341, 0.00190804468, 0.0272397958, -0.00812787656, 0.00566118816, 0.00186968711, -0.0180654451, -0.031504374, 0.0143595114, 0.0300251488, -0.0264057647, 0.0209137425, 0.0344313532, -0.00388493622, -0.033424221, -0.0149102872, -0.00155299099, -0.00546841649, -0.02766468, -0.0179080814, 0.0199223459, -0.0359105803, 0.0280108824, -0.0401908942, -0.0101893516, -0.00791543443, -0.0197020359, 0.0223614965, 0.00091812358, 0.000234202642, 0.0368862413, 0.0214173105, 0.0328891836, 0.00521663344, 0.00947334338, -0.00399705861, -0.000297763152, -0.0284357667, 0.0262956098, -0.0227234345, -0.00282075885, 0.0194345172, -0.014808, -0.0173415691, -2.78768766e-05, -0.00719942618, -0.0314414278, -0.0206776969, -0.0494124554, -0.0319449939, -0.00272830715, -0.0158072654, 0.0113145085, 0.00851342, -0.0134467976, 0.019481726, 0.00594837824, 0.0186791681, -0.0241711885, -0.000913697702, -0.00162970624, -0.0196548272, -0.00184706587, 0.00533465669, -0.0236676224, -0.0120541211, 0.0022542465, -0.0170583129, 0.00215392676, 0.0468002036, 0.019843664, -0.00538580026, -0.0162557531, -0.019371571, -0.0168380029, -0.0234001018, 0.00530711794, -0.00922942813, 0.0115898959, -0.000336366647, 0.00266929553, -0.0070577981, -0.00420556637, -0.0057752775, 0.0283413474, -0.0119754393, 0.00435112882, 0.0107243909, -0.026830649, 0.0310480166, -0.0267991759, -0.00368232955, 0.0349034481, 0.00113302446, -0.00183624716, -0.0225031245, 0.0361308903, 0.00915861409, 0.00894617196, 0.00580675, -0.0151542025, 0.00133268069, 0.0199066103, -0.00499238912, 0.0423939973, -0.00249422737, 0.0047248695, -0.00687682908, -0.01383234, -0.00227588415, -0.0120383846, -0.01853754, -0.0440305881, 0.00160216738, 0.0169324204, -0.0160590485, -0.0255874693, 0.0178608708, 0.0117629971, 0.013580557, -0.00790363271, 0.0290337522, 0.0377674811, -0.0305287149, 0.016979631, 0.0195604078, 0.0199380834, -0.0216848291, -0.0250524301, -0.00477601262, -0.0331409648, -0.026358556, 0.0218264572, -0.041827485, -0.0146506354, -0.0114325313, 0.0109447017, -0.0248321202, 0.000876323611, -0.0179080814, -0.0142414877, -0.0192456786, -0.017310096, -0.0206619594, -0.00223457604, 0.0250839032, -0.0671002269, 0.00456357095, -0.0162714906, -0.0113617172, -0.0235102568, 0.00207917858, 0.00717188744, -0.0128881531, 0.00511434674, 0.0365085676, 0.0369806588, -0.043558497, -0.0196548272, -0.00117236562, -0.00442587677, -0.0151620703, -0.0147607913, 0.0106299724, 0.0110705933, 0.00601525838, -0.0110312523, -0.00379445171, -0.015099125, -0.011550555, -0.00601919228, -0.0075574303, -0.00261815195, 0.00736859301, -0.0275702626, -0.0574065745, 0.0302769318, -0.0280266181, 0.0151384659, -0.0453524515, -0.00784068648, -0.00557070365, 0.0128016025, 0.0173415691, -0.0179080814, 0.0163816456, -0.0105827628, 0.017089786, 0.0233843662, 0.0109761748, -0.00844260585, -0.0150597831, 0.000207032688, 0.0145326126, -0.0209452156, 0.00651882496, -0.0524653271, -0.0377360098, -0.0475240797, -0.000850260083, 0.0216690935, 0.0173573047, -0.01853754, 0.0026397896, -0.00465012109, 0.0130691221, -0.00118220085, 0.0120147802, -0.0272712689, -1.02348404e-05, -0.0120305168, 0.0220625047, -0.0226762258, 0.00500812568, 0.0086943889, 0.017923817, -0.00456750486, -0.0357217416, -0.00614115, 0.00851342, 0.00801772159, 0.0063299872, 0.00188444, 0.024548864, -0.00590903731, 0.0169009473, -0.0394040719, -0.00191001175, -0.000938777637, -0.0197492465, 0.00296632107, -0.0236361492, -0.00363905425, -0.00606246758, -0.007404, 0.0015579086, 0.00505926879, 0.0128960218, -0.00344824977, -0.0222828146, -0.0236990955, 0.0103073753, -0.0313470103, -0.0204101764, 0.0311739091, 0.0127386572, 0.0329521298, 0.0204416495, 0.0163344368, 0.00195820467, 0.00283846236, -0.0469890423, -0.0312840641, -0.0215117279, -0.0268149115, -0.0173887778, 0.00435112882, -0.0281525105, -0.038963452, -0.00289157289, -0.0196863, -0.000255963212, -0.0180182364, -0.00903272256, 0.000209122678, 0.0333298035, 0.0220782403, 0.0181283914, 0.0210396349, -0.029616, 0.0107401274, 0.00411114795, 0.00111138681, -0.0163659081, 0.0026633942, -0.02070917, -0.0095913671, -0.00856063, -0.0707510859, 0.0124396645, 0.016617693, 0.00589330075, 0.0145404804, 0.012384587, 0.00492944336, -0.010936833, -0.0148552097, -0.0122350901, -0.00048905937, 0.00546448259, 0.00401869603, -0.00119105261, -0.0182070732, 0.00931597874, -0.0198594015, -0.00952842087, 0.0303241406, -0.0144539298, 0.0156735051, 0.039907638, 0.00992183201, -0.0132343555, -0.0133366417, 0.0165547468, -0.0300251488, -0.00923729688, 0.0284829754, 0.0153745124, 0.0266890209, 0.00113990915, 0.00863931142, -0.0120619899, -0.00766365137, 0.0073213838, -0.0143988524, -0.0188837405, 0.0269250665, -0.0357217416, -0.00960710365, -0.00317876297, 0.00200639758, -0.00314532313, 0.00581068452, 0.0318505764, 0.0128252078, -0.0136041613, 0.00829311, 0.0108817555, -0.00430391915, -0.0267047565, -0.0138087356, -0.00977233611, -0.00521269953, 0.00286993524, 0.00861570705, 0.0033479298, -0.0165390093, 0.0023407971, 0.0930968449, -0.0163973812, 0.00654242933, -0.0379248448, -0.00734892255, 0.0154059855, -0.00475634215, 0.010826678, 0.0388690345, -0.003068608, 0.0303398781, -0.0116921831, 0.0125026098, 0.0062867119, -0.00857636612, 0.0115426863, -0.00259848149, 0.0163973812, 0.000694862683, 0.00165429444, 0.00480355183, 0.0114167947, -0.00187362114, -0.0278377812, 0.00643227436, -0.0110391201, -0.00169953669, -0.0249894839, -0.00561397895, -0.0082222959, 0.044282373, -0.0289550703, 0.011550555, 0.0150676519, 0.00637719687, 0.0430234559, 0.0143201705, -0.0198279284, -0.0135097429, 0.0262484, 0.00160413445, -0.0150283109, -0.0235574674, 0.0119833071, 0.0038003528, -0.00634572376, -0.00802952424, -0.00149692991, -0.0124239279, 0.0223142877, -0.0242813434, -0.000890093, -0.0100634601, -5.26341239e-07, -0.015681373, 0.0166019555, 0.00154217216, 0.00174477894, 0.0160354432, 0.00151955104, -0.0123609826, 0.00512614893, -0.0139267594, -0.00783281866, -0.00679027848, 0.000954514078, -0.0129983081, 0.00288370461, -0.00233686296, -0.0173573047, -0.00278535183, 0.013289433, 0.0131163318, 0.00240767701, -0.0331409648, 0.0212442093, 0.00955202524, 0.00189820933, -0.00157561211, -0.0036174166, 4.6471705e-05, -0.0018332965, -0.0044180085, 0.00889896322, 0.00137398881, -0.0152407531, -0.0215904098, 0.00280895643, 0.011841679, 0.0107322596, -0.00443374505, -0.00376101164, -0.0130612543, 0.0025965143, 0.000944678788, -0.00803739205, 0.0294586364, 0.00457930705, 0.00642834, -0.0200010296, -0.0187263768, -6.45440377e-05, -0.000668307417, -0.006011324, -0.0236046761, -0.0098903589, 0.0160118379, 0.0140054412, -0.00451636128, -0.00994543731, 0.0184116475, -0.0182857551, -0.00117925031, 0.00952842087, 0.00857636612, -0.020205602, 0.0303713493, 0.0278377812, -0.0102208247, 0.00780527946, -0.0363512, 0.00714041479, 0.0175304059, 0.00488223368, -0.0268463846, -0.00556676928, 0.0102286935, -0.00233096187, -0.00377084711, 0.00346201914, -0.00797444675, 0.0111178029, -0.0109997792, 0.0191355236, -0.0175461434, 0.028750496, -0.00262011914, -0.00592477387, -0.000844358932, -0.011841679, -0.0045911097, -0.00020174621, -0.020457387, -0.0130376499, 0.0043589971, 0.00620016176, -0.0192456786, -0.00780527946, 0.00671946444, 0.00137398881, -0.0446915217, -0.02310111, 0.00907206349, -0.0183014926, 0.0419848524, 0.0180497095, 0.00277945073, 0.00621983223, 0.0119439662, -0.00191591284, -0.00558644, 0.00685715862, 0.0121406717, 0.00829311, -0.0182385463, -0.0107716005, -0.0116685787, -0.0168852117, 0.00160020031, -0.00135333475, -0.0149889691, 0.00836392399, 0.00270470255, -0.00556676928, 0.0162400175, 0.0290966984, 0.00601525838, -0.00437079929, 0.0264215, 0.0111964848, -0.0107873371, -0.00365282362, 0.0127937347, 0.0187421124, 0.00448095426, -0.0189152136, -0.001607085, 0.00126678427, 0.00852915645, -0.00163954147, -0.0231640562, 0.0165862199, 0.0214173105, -0.0108896242, 0.038019266, 0.00629851455, 0.0249422751, 0.0145404804, 0.0115190819, -0.0147529226, -0.0165075362, -0.00585789373, -0.00436293101, 0.0159961022, 0.00667225523, -0.00803739205, -0.00679027848, 0.0173730422, 0.0185060669, 0.00440227194, 0.00799805112, 0.0183959119, -0.00201328215, 0.00455963658, -0.00779347727, -0.000207770325, -0.00742760487, -0.00877307169, -0.0177192427, 0.0019985293, -0.018033972, -0.032086622, 0.0106850499, 0.0133366417, -0.00901698601, -0.0217477754, 0.0331094936, 0.00879667606, 0.0173573047, 0.0180654451, -0.00861570705, 0.0221411865, 0.0179867633, 0.00591297122, -0.00543694384, -0.0211183168, 0.0261854548, -0.0134074558, -0.011369586, 0.0262169279, -0.00562184723, -0.00121957494, -0.00821442716, -0.0153273027, -0.0181913376, 6.23925662e-05, -0.001692652, 0.00292698, -0.0316302665, 0.00684535597, 0.00712467823, -0.0107479962, 0.0124868741, -0.027192587, 0.0113853225, 0.0161613356, -0.0221569221, 0.0216061473, -0.0019985293, -0.0382710472, 0.0121170674, -0.0122980364, -0.0120147802, 0.0123531139, -0.00963070802, 0.0233843662, -0.00515368767, 0.0065463637, 0.0136828441, -0.00684929034, -0.000215761494, 0.036099419, 0.00946547557, -0.00205557398, -0.0203629676, -0.00518909469, -0.00645587873, 0.0168380029, -0.0280423556, -0.00627490971, -0.00598378526, 0.0222356059, 0.00406000437, -0.0212756824, 0.0139110228, -0.00222867494, -0.00640080124, -0.0119597027, 0.00262405328, -0.00739219785, 0.00640080124, 0.0219366122, 0.013761526, -0.012274432, -0.00333809457, 0.0300566219, 0.0123609826, 0.00448095426, 0.00105925987, 0.00286993524, 0.0124868741, 0.0185532756, -0.00865504798, 0.007187624, 0.000276863168, -0.00649522, 0.00978807267, 0.00743153878, 0.0218264572, 0.00900911819, 0.000987462234, -0.047177881, 0.00298009044, 0.021291418, 0.00285223173, -0.00273224129, 0.013722185, -0.0078760935, -0.0084583424, 0.0192142073, -0.0237305686, -0.00652275886, 0.00731744943, 0.0315830559, -0.00623163441, -0.0089304354, -0.00452816393, -0.0049137068, -0.018899478, -0.00684929034, -0.00258667907, -0.0217005666, -0.0126678431, -0.0180497095, -0.0045950436, 0.00877307169, -0.00420556637, 0.00248635933, 0.002028035, -0.00579101406, -0.0138716819, -0.0116921831, -0.0281997193, 0.0204259139, 0.00188640703, -0.0184903294, -0.0100555923, 0.00780134555, -0.0135097429, 0.0400964767, -0.0192142073, 0.0198121909, -0.0133995879, -0.00602312665, -0.0148709463, -0.0141628059, 0.00557463756, 0.0140841231, 0.00920582376, -0.00320630195, -0.0124790054, 0.0115741594, 0.0132264867, -0.0199852921, -0.0146506354, 0.0213071536, 0.0259494074, -0.0090878, 0.01622428, 0.0333298035, 0.00396558549, -0.00492944336, -0.0189624224, -0.013360247, 0.0158702098, -0.00196804, 0.0310165454, 0.0182700194, 0.0239666142, -0.0184903294, -0.0022306419, -0.0166649017, 0.00263388851, -0.00152250158, -4.58262657e-05, -0.0057320022, -0.00284042931, 0.0185690112, 0.0193400979, 0.0128488122, 0.00429998524, -0.00646768138, 0.0030017281, 0.00823803246, -0.0125104785, -0.00684929034, -0.0352496505, -0.0116843143, -0.0190411061, 0.00401082775, -0.0036174166, 0.00981167704, -0.0127622616, 0.0187263768, 0.0239036679, 0.00275387894, 0.00220703729, -0.0218894035, 0.0145090073, -0.0270509589, -0.00276174722, -0.00622770051, 0.0105434218, -0.0238092504, -0.0114876088, 0.0058618281, 0.00399509165, 0.033455696, -0.0297261551, 0.0135962935, 0.00196312228, -0.00235850061, -0.0117472606, -0.0185532756, -0.0119597027, 0.0226132795, 0.0297418926, -0.000710599124, 0.0065463637, -0.0325744525, 0.000204205033, 0.00909566879, 0.0108424146, 0.00266142725, -0.015169939, 0.0057280683, 0.00912714191, -0.0170111042, 0.0132264867, -0.00688076299, -0.0101657473, -0.00247258972, -0.0243128166, -0.00730171334, -0.00763611263, -0.0109761748, 0.019371571, 0.0260753, -0.0225818064, -0.00297418912, -0.0083088465, -0.00358594372, -0.00106712803, -0.00700665452, -0.0132422233, -0.0137457894, -0.0151620703, 0.00516155595, 0.0124160601, -0.015169939, 0.0013995606, -0.00242144638, -0.0162400175, 0.0115033453, 0.023573203, 0.00899338163, 0.00664865039, 0.00594837824, -0.0169166848, 0.00268699904, -0.000512418163, 0.007640047, 0.00756136468, -0.0131005952, 0.0152014112, -0.0211969987, 0.0166334286, -0.00300959614, 0.00257881079, 0.00525204046, -0.00379051757, 0.0244859178, 0.0071010734, 0.0202528127, 0.0123531139, 0.0573436283, 0.00175264722, 0.0194974635, 0.000766660203, 0.00495304773, 0.0150361788, -0.0045911097, -0.0182700194, 0.000634867465, -0.00208704686, 0.0252412669, -0.00103565515, -0.00420163246, -0.00757710123, -0.00368823064, -0.0113459807, 0.000398820674, 0.0247377, 0.0407259353, 0.0117472606, -0.0103703206, -0.00750235282, 0.0184116475, 0.00619622739, -0.00926877, 0.00108778221, 0.00924516469, -0.00985101797, -0.00241161115, 0.0126206335, -0.00553136226, 0.00643227436, 0.00789576396, 0.00444554724, 0.0181598645, 0.0161062572, -0.00983528141, 0.0100241192, -0.0228808, 0.0074669458, 0.00180379068, -0.00820655935, 0.0222198684, -0.00159331562, -0.00340694166, 0.00251586502, 0.00477994699, -0.0151384659, -0.00275781308, -0.0119439662, 0.0163816456, -0.00652275886, -0.00020973738, -0.000743055542, 0.00664865039, -0.00634572376, 0.00339710643, -0.0128645487, -0.0441879556, 0.00653849542, -0.00745907752, 0.0040993453, 0.0131871458, 0.000242685579, -0.00409541139, -0.00117629964, 0.00203000219, 0.00785248913, 0.0108030736, 0.0119911758, 0.0231640562, -0.00293681514, 0.00150774873, 1.88868144e-05, -0.00382592459, 0.00786035694, 0.00483895885, 0.00801378768, 0.000844358932, 0.00626704143, 0.0136749754, 0.00707746856, 0.0160275754, -0.00558250584, -0.0121642761, -0.0101342741, 0.0315201096, -0.00249226042, 0.00442981068, 0.0132973008, 0.0195132, -0.00945760682, -0.0039400137, -0.015099125, 0.000631916861, -0.00285419868, 0.00109663396, -0.0206619594, -0.021763511, -0.00513795111, -0.00801378768, 0.0232742112, 0.00175461429, -0.0213071536, 0.0135648204, 0.0230853725, 0.0201269202, -0.000309565483, 0.00631031673, 0.00163462386, -0.00718368962, 0.0110233836, 0.0320236757, 0.019009633, 0.00744334143, 0.0178294, -0.0112200892, 0.0184273832, -0.0322911963, 0.000923532934, 0.000446767663, 0.00930811092, -0.00562184723, -0.000316941965, 0.000347677211, 0.00351316272, -0.0257133599, -0.0141628059, -0.00706173247, 0.0108345468, -0.00590903731, 0.0288449135, 0.0114246635, -0.0050002574, 0.00475240825, -0.00626310753, 0.012093462, 0.00133956538, -0.00576347532, 0.0060506654, 0.0197649822, 0.00399509165, -0.0193086248, 0.00730171334, -0.0201111846, 0.013289433, 0.00183231302, 0.0144932708, 0.00230342289, -0.0148001323, -0.00907993224, -0.0265001841, -0.00326728052, -0.0146112945, 0.0131556727, -4.67483223e-05, -0.0123137729, 0.0185847487, -0.0157285817, -0.0229437444, -0.00152053451, -0.00553923054, 0.00230145594, -0.00256897556, -0.00154217216, 0.0226762258, 0.0128960218, 0.0159961022, 0.00685322424, -0.014918155, -0.0326059274, 0.00477601262, 0.00516549, -0.00222867494, -0.0110863298, -0.00585396, -0.00707353465, -0.0129904402, 0.0110233836, 0.00923729688, -0.0108030736, 0.0151778068, -0.00247258972, -0.0162400175, -0.00896190852, -0.00483109057, -0.00159528269, -0.00276371418, -0.00290140812, -0.00948908, 0.00614901818, 0.0228335895, -0.0129904402, -0.0101500107, -0.00301353028, 0.00316696079, -0.0131714093, 0.00998477824, 0.0075534964, 0.00194541877, -0.00939466152, 0.0130769908, 0.00570839737, 0.0151148606, 0.00509074191, 0.010645709, -0.0174202509, 0.0191512611, 0.0124160601, 0.00686109252, -0.0204731226, -0.017782189, 0.0110233836, -0.00545661431, -0.0121013308, 0.00761644216, 0.00229948899, 0.00335579808, 0.00435112882, 0.016114125, -0.0160118379, 0.00613328163, 0.0183801744, -0.00150873221, 0.0186162218, -0.0165547468, 0.0201111846, -0.0019346, 0.000293583173, 0.00483109057, 0.00345218391, 0.0131399361, -0.00919795595, 0.000925991801, 0.000653062714, -0.0104568712, 0.0162085444, 0.0348405, -0.00785642304, -0.00524810655, -0.0110863298, -0.0154531943, -0.010283771, -0.0106221046, -0.00497271866, -0.00154905685, 0.0306860786, -0.00588543247, -0.0242498703, -1.65509355e-05, -0.00177625194, 0.0131399361, -0.00629458, -0.0222828146, 0.0146270311, 0.0214645192, 0.0273971613, 0.00379248476, 0.00444554724, 0.00759283733, -0.00627097581, 0.0171055216, -0.00664078211, -0.00882814918, 0.0377674811, 0.00317876297, -0.0119911758, 0.00467372593, -0.00805312861, -0.0122980364, 0.00729777897, 0.0106378412, 0.0173730422, -0.00647554966, -0.020063974, 0.00136218651, 0.00802165549, -0.0177507158, 0.00943400245, 0.0138952862, -0.00325351115, -0.00453996612, 0.0151778068, 0.020819325, 0.0148709463, 0.0122429589, 0.0171842035, 0.00520089688, -0.00421736902, 0.00501992786, 0.00401279517, -0.0095913671, -0.0138795497, -0.00479961745, -0.00242144638, 0.00520483125, -0.0232742112, -0.0031649936, 0.00449669082, 0.00183231302, -0.00688469736, -0.0156341642, -0.000694862683, -0.0116921831, 0.0233843662, -0.0182700194, -0.00101598457, 0.0125183463, -0.0102759022, 0.0200325027, -0.0107716005, -0.00985888671, -0.00627490971, -6.62652092e-05, 0.00973299518, 0.00684142206, -0.000238259701, -0.00453996612, -0.00260044844, 0.00602312665, -0.0112043526, 0.00600739, -0.00794297364, 0.00505533488, -0.00193656702, 0.00183526357, -0.00622376613, 0.00157757918, -0.00957563054, 0.0022306419, 0.0147686591, 0.0021578609, -0.0128330756, -0.00897764508, -0.0236204136, -0.00680601504, -0.0266890209, 0.0174045153, 0.00502779614, -0.00688076299, 0.00692010438, -0.00914287753, -0.0104726078, -0.00916648284, 0.0137693947, 0.00926090125, -0.0130140446, -0.0162557531, 0.0064165378, -0.0259808805, -0.0127071841, 0.00348955789, 0.0154768, -0.00803345814, 0.0227863807, -0.0135018751, 0.00850555208, 0.00419769809, 0.000470126455, -0.00456750486, 0.0346516632, 0.00324170897, 0.0128881531, 0.0105198175, 0.00826950464, 0.0245331265, -0.00217753137, 0.0264372379, 0.0183487013, 0.00293091405, 0.0121800127, -0.0122272223, -0.00509074191, -0.0129510993, 0.0117787337, 0.00606246758, -0.00953629, -0.00553923054, -0.000207278557, -0.0131005952, -0.0118495477, -0.00387706817, -0.00933171529, -0.0353125967, 0.0286088679, 0.00573987048, -0.0164603274, 0.0075967717, -0.0082222959, 0.0191669967, -0.00114777742, -0.0283728205, 0.0015824968, -0.017561879, 0.00241161115, 0.0117629971, 0.00981167704, 0.00801772159, 0.000227932658, -0.0141549371, 0.00706960075, -0.00539366854, 0.0130848587, -0.0045950436, 0.0068689608, 0.000947629393, 0.00506713707, -0.0157207139, -0.017451724, 0.0119833071, -0.00955202524, 0.00233292882, 0.00483895885, -0.0059051034, -0.00012072808, 0.0157128461, -0.0166806374, 0.0228808, -0.00927663781, -0.0156577695, 0.00160511804, -0.00562184723, 0.0211183168, -0.0115898959, -0.0159095526, 0.01046474, 0.0177349802, 0.0031846643, -0.000638309808, -0.00282666, 0.00951268431, -0.00178608717, 0.00558250584, 0.0117866015, -0.00121367374, 0.0121091986, 0.0172628872, 0.0102916388, -0.00223654299, -0.00357807544, -0.00562578114, -0.007404, 0.000666832086, 0.0368547663, 0.00650702231, 0.0197492465, 0.00157856278, -0.00489403633, -0.0177192427, -0.00328498404, -0.00623556878, -0.00237227, -0.00071748381, 0.0122508267, -0.0136198979, -0.0113459807, -0.0220310315, 0.00174871308, -0.000827147218, 0.00277551659, -0.00132579601, 0.00981167704, -0.0118652843, -0.00129825715, -0.0032318735, 0.0169953667, -0.0182542838, -0.0063732625, 0.00613328163, -0.0213386267, 0.00624343706, 0.00722303102, 0.00633785548, -0.00565332, 0.0108424146, -0.020457387, 0.0191984698, -0.00821442716, -0.00752202328, 0.0246118084, -0.0156262964, -0.00530318404, 0.00350922858, -0.01853754, 0.00651489059, -0.00167298142, 0.00771086104, -0.003593812, -0.0131950136, -0.0038436281, 0.00765184918, -0.0122429589, 0.0125734238, 0.0162085444, -0.0140998596, -0.016043311, 0.00740006613, 0.00199459516, 0.000316450198, 0.0162085444, -0.00262995437, -0.0123059042, 0.00864718, 0.0122508267, -0.00856849737, -0.00397542072, 0.000746006146, -0.0104332669, 0.0180969182, -0.00254143681, 0.000690928544, 0.000998772914, -0.0138559453, 0.00541727338, 0.00500419131, -0.0026830649, -0.00800985377, 0.00649522, -0.00474454, 0.0138952862, -0.0300566219, -0.0120855942, 0.00693977484, 0.000823704875, -0.00810427219, -0.0215274654, -0.00360561418, -0.00104155636, -0.0144696664, -1.8902183e-05, -0.0254458413, 0.0100005148, 0.006011324, 0.0335815847, 0.00859997049, -0.019591881, 0.0138716819, -0.00144283578, -0.00310991611, 0.0226447526, -0.0288763866, 0.0147135817, 0.00956776179, -0.00549202133, 0.00277158245, -0.00480355183, -0.0122823, 0.00348759093, 0.0106929187, -0.00183034595, -0.0193400979, 0.0057752775, 0.0113931904, 0.00121465733, 0.0173887778, -0.0155161405, -0.00352693209, -0.0179080814, 0.01263637, -0.0231955294, -0.00769905839, 0.000495944056, 0.0178294, 0.023227, -0.00389083754, -0.00951268431, 0.00418196199, 0.00922942813, -0.0338333696, 0.000911730633, 0.00621589785, -0.00784068648, -0.00503566442, -0.00158643094, 0.0146427676, 0.00136808772, -0.00696731359, -0.00451636128, -0.00142611586, -0.0167907923, -0.00952055305, -0.014485403, -0.0220625047, -0.0124003235, 0.0132186189, 0.0338018946, 0.0182857551, 0.00121367374, 0.00627490971, -0.0147450548, 0.0203157589, -0.00795871, -0.00332039106, 0.0115269506, -0.00181854365, 0.0114954775, 0.00173100957, 0.009740863, -0.0337389521, 0.003702, -0.01166071, 0.00120678905, -0.0123609826, 0.0156026911, 0.00658177072, -0.00547628477, 0.0056454516, 0.0122980364, -0.0035013603, -0.0319292583, -0.00463045062, 0.00844260585, 0.00688076299, 0.000760267256, -0.0156577695, -0.0199066103, 0.0104332669, 0.00640866952, 0.00904059131, 0.00498058647, -0.0296789464, -0.00689649954, 0.0206304863, 0.00477601262, 0.0158702098, 0.0012648172, 0.0119046252, 0.0100241192, 0.00729384506, -0.0253671594, 0.0101500107, 0.00310008088, -0.00953629, -0.0189466868, 0.0181283914, -0.00435112882, -0.00121367374, 0.0349978656, -0.00448488863, -0.00391050801, 0.0148945507, -0.00612934772, -0.0129432306, 0.00334202871, 0.00507500535, 0.00893830415, 0.0252097938, -0.0027991212, 0.0113459807, -0.0193086248, -0.00839539617, 0.0186791681, -0.0146348989, 0.00074354728, -0.0113066398, -0.0098274136, -0.00345218391, -0.00680208066, -0.0136907119, 0.0253199488, -0.00129038899, -0.00152938627, 0.0219838209, 0.0414812826, -0.0180182364, 0.0121878814, -0.00132186187, -0.0127543937, 0.00474454, -0.00845047366, -0.00693190657, -0.0180969182, 0.00840326492, 0.0161455981, 0.0041858959, -0.00851342, 0.0024568534, 0.0219523497, -0.00624343706, -0.00409541139, -0.0068689608, 0.014013309, -0.0106299724, -0.0153745124, -1.8487257e-05, 0.00445341552, 0.0271611139, 0.0159646291, 0.0313470103, 0.0103152432, 0.00310598197, 0.0142021468, -0.0126914475, -0.0205675419, -0.00281879166, 0.00225227955, 0.0115977647, -0.00879667606, -0.0313942209, -0.0241711885, -0.0203472301, 0.0258392524, 0.00590116903, -0.0147922635, 0.00408754312, -0.00245488645, 0.0161770713, -0.0123688504, 0.0135097429, -0.0230381638, -0.0188365318, -0.0150125744, -0.0194502529, -0.0114404, -0.0238249861, 0.0126206335, -0.0109919105, 0.00512221456, -0.000850260083, 0.0222356059, 0.000190681531, -0.0178766083, -0.0136749754, -0.00588149857, -0.00148217694, 0.0102759022, 0.00280502229, -0.00631031673, 0.0279951468, 0.0253514219, -0.00953629, -0.0108660189, 0.00293681514, 0.0025965143, 2.80305539e-05, 0.00273224129, -0.013108464, 0.00974873174, 0.000319400773, -0.00095598941, -0.0140998596, 0.00229162071, -0.0122193545, -0.0150204422, 0.0253671594, 0.00570446346, 0.011951834, 0.00832458213, -0.0479647033, -0.00174969668, 0.027774835, -0.00892256759, 0.0350608118, 0.0174045153, 0.00897764508, 0.00821442716, 0.00558644, 0.000742563745, -0.011951834, 0.0128881531, -0.0027263402, -0.0189466868, -0.0126599744, -0.00240177591, -0.0217163023, -0.00121760787, 0.00163560733, -0.000761250791, 0.0234315749, 0.0138402088, 0.00816721842, -0.0212284718, 0.0106378412, 0.0103309797, -0.0215746742, -0.0135176117, 0.0183801744, -0.0071482826, 0.00325744529, 0.0138480766, -0.00535826152, -0.00153135334, -0.00672733271, 0.00444554724, -0.010826678, -0.0100083826, 0.000314237259, 0.0254458413, 0.00503173, 0.0389319807, 0.0128016025, 0.012746525, -0.00116843148, -0.00178608717, 0.00175854843, -0.00624737097, 0.00959923491, 0.0017841201, -0.0207406413, 2.20525453e-05, 0.0121328039, 0.0127229206, -0.0163973812, 0.0141234649, -0.00493731163, 0.00707353465, 0.00321810413, 0.017561879, 0.00514188549, 0.00674700318, -0.0127150519, 0.0147057129, 0.00597985135, 0.00256897556, -0.0142336199, -0.0164918, 0.00974873174, 0.0223929696, -0.0173258316, -0.019119788, 0.00247455691, -0.011951834, 0.00756136468, -0.0145326126, 9.94592847e-05, 0.00649522, 0.00360168028, 0.00179887307, -0.00274207653, -0.0347460844, -0.0151148606, 0.0247062277, 0.00956776179, 0.0138952862, -0.0114876088, 0.0117629971, -0.0045950436, -0.0140605187, -0.0191040505, 0.0107007865, 0.00345415086, -0.00808066782, -0.0148945507, -0.0122980364, -0.0240610335, 0.0133523783, 0.00559824239, 0.00802952424, -0.00599952182, -0.00620016176, 0.00436686492, -0.00282666, -0.0166963749, -0.00360168028, -0.0063299872, -0.00826163683, 0.00625917315, -0.00116941496, 0.0101657473, -0.0177035071, 0.0162714906, 0.0252884757, 0.00357610849, 0.0026830649, 0.0184588563, -0.00674306927, -0.0115348184, -0.00448095426, 0.00613328163, 0.0100555923, 0.0183487013, 0.00424097339, 0.001607085, 0.0022542465, -0.0212284718, 0.0221883953, 0.00842686929, -0.0038495292, 0.0119911758, -0.00868652109, -0.0043157218, -0.00837966, 0.0060545993, 0.00419769809, -0.00636539422, 0.0186162218, 0.00559037412, -0.00507107144, -0.00700665452, 0.00166806381, -0.00242734747, -0.00698698405, -0.0147922635, -0.00394788198, 0.00366265886, -0.00655816589, -0.00736072473, -0.0161455981, -0.0190725792, 0.0113066398, -0.00188148941, 0.014556217, 0.0114010582, -0.00383182568, -0.0285773948, 0.00712467823, -0.0539445542, 0.00841113273, 0.0237777773, 0.00480355183, -0.0193400979, -0.00604279712, -0.00733318599, 0.0085212877, 0.00785642304, 0.0169953667, -0.00694370875, -0.00726237195, -0.00188247289, 0.0226132795, -0.0354699604, -0.00662111165, 0.00635752594, 0.00608607242, -0.000567003968, -0.0146191632, 0.00659750681, -0.0181913376, -0.0183329657, -0.00440227194, -0.00192279764, -0.016727848, -0.00464225281, -0.00508287363, 0.00787216, 0.0120777264, -0.00365675776, -0.0166019555, -0.0259336717, -0.0065463637, 0.00687682908, -0.00424097339, -0.00782101601, 0.00125596544, -0.00503173, 0.0133917192, 0.0111964848, -0.0150125744, -0.00358397677, 0.000989921158, 0.0118967565, 0.0174045153, 0.0103073753, 0.00140152767, -0.0276961531, 0.000670766225, -0.0290494878, 0.00949694775, -0.0131714093, 0.00102286926, 0.0217792485, -0.00870225765, -0.00280698948, -0.0202842858, 0.0163344368, -0.0106299724, -0.0279951468, -0.0159646291, -0.00904845912, 0.0266103391, -0.00166117912, 0.00592477387, -0.00250799675, -0.00461078, 0.00899338163, 0.0115112141, -0.00109466689, 0.00431178743, -0.00351709686, 0.00145660527, -0.0152328843, 0.00948908, -0.00208311272, 0.00703812763, 0.00625917315, 0.00224441127, 0.0329836, -0.0173573047, 0.017923817, -0.00341481, -0.00812787656, 0.0184903294, -0.00497665256, -0.00781708211, 0.0154217221, 0.00676667364, 0.00623556878, -0.0183959119, -0.00162675558, 0.0230224282, -0.00206737616, 0.0226132795, -0.0168537386, 0.0127307884, -0.0133445105, -0.000945662323, -0.0357846878, -0.00950481649, 0.0194187798, 0.00515762158, 0.0262484, -0.0300408844, -0.00344234868, 0.00296632107, -0.015823001, 0.013289433, 0.0195446722, -0.00094222, 0.018144127, -0.007640047, -0.00161987089, 0.01520928, 0.00352496491, 0.00996904168, -0.00281289057, -0.0190883148, 0.00898551382, -0.0415442288, 0.00575167267, 0.00923729688, -0.00169855321, -0.00988249108, -0.0163344368, 0.00384756224, -0.0208350606, -0.0153823812, -0.00294271624, 0.0135490838, 0.00481141964, -0.0104962131, -0.0122272223, 0.00207721163, -0.02070917, -0.00104352343, 0.0188050587, 0.00961497147, 0.00723876758, 0.000513893494, 0.00856063, 0.0124947419, -0.0127543937, -0.0109447017, -0.0203944407, 0.0289393328, 0.0142178833, -0.0119833071, -0.012746525, -0.00498452084, 0.0250839032, 0.00047529, -0.0333298035, 0.00534645934, 0.0097566, 0.0335815847, -0.00232309359, -0.00859997049, 0.00224834541, -0.0371694975, -0.00316892774, -0.00956776179, 0.0073213838, 0.00236243475, 0.0054094051, 0.0116843143, 0.00109860103, -0.0141706737, -0.00205754093, 0.0145090073, -0.000976643525, 0.011369586, -0.0183959119, 0.00686109252, 0.000789773127, 0.000734695524, 0.02092948, 0.0256504156, 0.00438260147, 0.0166649017, 0.0220782403, 0.0124632688, 0.0114010582, -0.0217320379, 0.0122350901, 0.0168065298, 0.003068608, -0.000162773911, -0.00388296926, 0.0247062277, 0.00473273778, 0.0068256855, -0.0239508785, 0.0013080925, -0.00486256322, 0.00237620412, 0.0114246635, -6.74946205e-05, -0.0148709463, 0.0158387385, -0.016979631, -0.00915861409, -0.0277118906, -0.0236361492, -0.0142257512, -0.00735285645, -0.00782495, 0.000937794102, 0.00453996612, 0.00121957494, -0.00483109057, 0.00263192132, -0.00367249432, -0.00925303344, -0.0228335895, -0.00550775789, -0.0127229206, 0.0216218829, 0.0165862199, 0.0083717918, 0.0157443192, 0.010574895, 0.0211025812, -0.00411114795, -0.0065621, 0.00731351553, 0.00180575775, 0.00267322967, 0.0144381933, -0.00152741931, 0.0134153245, -0.0148866829, -0.00232702773, -0.00242931466, 0.00375904469, 0.0144696664, 0.00591690559, 0.0224087052, 0.0174045153, 0.00649128575, -0.0158072654, -0.0118259424, -0.00610180898, -0.00263585546, -0.0197177734, -0.00590116903, -0.0242498703, -0.00647161528, -0.00749841891, 0.005684793, 0.0112200892, 0.0161613356, 0.0215274654, 0.00900124945, 0.00472093513, 0.00705386419, -0.0102050882, 0.0345572457, -0.034148097, -0.00518516032, 0.0103624528, 0.0181913376, -0.00146447343, -0.0104568712, 0.0197649822, -0.0109919105, -0.00889109448, 0.00132677949, 0.00163068972, 0.00509074191, 0.00307844323, -0.0159488935, -0.0100005148, 0.00127661962, -0.0057320022, 0.00900911819, -0.0124317957, -0.0201583933, 0.000272437319, -0.00583035499, -0.014485403, -0.00882814918, -0.00436293101, -0.0159724969, -0.0162400175, 0.0143516436, -0.00105925987, 0.0208980069, -0.0052795792, -0.0111256707, 0.00118908554, -0.014375248, -0.0163187, -0.0232742112, 0.0209452156, 0.00442194287, -0.00587363029, 0.00853702426, -0.00895404071, -0.0240767691, 0.0319607332, -0.00290534226, -0.0132973008, -0.0149102872, -0.0174989328, -0.0206934325, 0.0104726078, -0.00861570705, -0.0182857551, -0.00193164928, 0.00496485038, 0.00352299795, -0.00221687253, 0.00856063, 0.0118574155, -0.00211065146, 0.0119282296, -0.0156577695, 0.0175146703, -0.00743153878, 0.00942613371, 0.000919107057, 0.00487436587, 0.00856063, 0.0222356059, -0.0123295095, -0.0160197075, 0.0192142073, -0.0165862199, 0.00926090125, -0.00931597874, -0.0275859982, 0.00473273778, -0.0208665337, -0.00662111165, -0.00517729251, 0.0164288543, -0.00473667169, -0.0121878814, 0.011731524, 0.015390249, -0.00230735703, 0.0143831158, -0.0103388485, -0.026720494, 0.00923729688, 0.0293484814, -0.00505533488, -0.00568085862, -0.00212245388, -0.000240841458, -0.00588149857, -0.0163659081, -0.00901698601, -0.0137851313, 0.00176051538, -0.00950481649, 0.000983036356, -0.00912714191, -0.010936833, -0.0228650626, -0.0124711376, -0.00664078211, -0.00125596544, -0.012274432, -0.0182857551, -0.0113853225, -0.0107007865, -0.00585002545, 0.00335383113, -0.0139582315, 0.0780528, 0.021763511, 0.00647948356, -0.0365715101, 0.0115662916, -0.0169166848, -3.37780475e-05, 0.046170745, 0.0247849096, 0.0242498703, 0.000454881781, 0.00910353661, 0.00996117294, -0.00115662918, -0.0135176117, -0.0101185376, -0.0203629676, -0.00292894687, 0.00771086104, -0.00554316491, 0.000422671234, -0.0086314436, 0.00695944531, -0.0129038896, -0.00400295947, -0.00240964396, -0.0187263768, -0.018789323, -0.00366462604, 0.00131202664, -0.00548021914, -0.00947334338, 0.0028660011, -0.0100162514, -0.0111178029, 0.0123295095, -0.00333612761, 0.000988937565, 0.0131478049, -0.0103939259, 0.00352889905, 0.000966808177, 0.0100477235, 0.0195446722, 0.0142572243, -0.00315712555, 0.0136041613, -0.0246432815, -0.00703419372, -0.00131399359, 0.00251783221, -0.0169953667, 0.00566512253, -0.0250524301, 0.00887535792, 0.00615295209, 0.00348759093, -0.0061844252, 0.0328577086, 0.0242026616, 0.0143044339, -0.00121760787, -0.0020418046, -0.0089304354, 0.011731524, -0.00614115, -0.0141155962, -0.00562184723, 0.00752595766, 0.00674306927, 0.00640080124, -0.00146840757, 0.0069122361, -0.00816721842, 0.0261225086, 0.0127858659, -0.0138952862, 0.0140762553, -0.0131556727, -0.00335776526, -0.00202606805, -0.00311188307, -0.00914287753, -0.00972512644, 0.0239666142, 0.00655029761, 0.00104057277, -0.0183172282, -0.0128094712, -0.00236833584, 0.00583822327, -0.00472093513, -0.0172471497, 0.00994543731, 0.00838752836, 0.00399902556, -0.0112043526, 0.0142414877, 0.0255559962, 0.00717582181, 0.00893830415, -0.00367052713, 0.00661324337, -0.0026633942, -0.00919008721, 0.0317246839, 0.00476421043, -0.00785642304, 0.0131399361, -0.00108876568, 0.0191355236, -0.00521663344, 0.0223142877, 0.0214802548, -0.00314335595, -0.0163659081, -0.0047406056, -0.0164445918, 0.00480748573, -0.0172471497, 0.0037098683, 0.0101342741, -0.0180497095, -0.0185060669, 0.00288370461, 0.00959923491, 0.000157856266, -0.00467766, 0.00664865039, -0.0129747037, 0.00383182568, 0.0152486209, 0.02070917, -0.0310008079, 0.0202842858, 0.0203314945, -0.0132973008, -0.00768725621, -0.0150047056, 0.0335186385, 0.0396558568, -0.0165704824, -0.00885175355, 0.0037531436, -0.00871799421, -0.0207249057, -0.0138087356, -0.00725056976, -0.0247849096, -0.0258235149, 0.00670766225, 0.0248321202, 0.00819082279, -0.0132028824, 0.0158308689, 0.00126875134, 0.00308827846, -0.0156971104, 0.00489010196, -0.0209924262, -0.000736170856, 0.00985101797, -0.00569659518, -0.00877307169, -0.000609295734, -0.0023899735, -0.00653062714, -0.00954415742, -0.00853702426, 0.00996904168, 0.0260438267, 0.0057202, 0.0176248252, -0.000776003755, 0.00299976091, 0.0056454516, 0.00344038149, 3.58065722e-06, -0.0152722253, -0.00808853563, -0.00012023632, -0.00428031478, 0.0115348184, 0.0569659509, -0.00595231261, 0.00160511804, -0.0210711081, 0.0182385463, 0.0258235149, 0.02092948, 0.00730958162, 0.0248478558, 0.00490977289, -0.00264372374, 0.00314729, 0.0107401274, 0.0222356059, -0.022518862, -0.0223614965, -0.0075574303, 0.00131891132, -0.0165704824, -0.00570446346, 0.0130376499, 0.000890584779, 0.00214802544, -0.0026633942, 0.0046815942, 0.0075102211, -0.0103781894, -0.0180969182]
30 Jan, 2023
What are Issues in Flow Control Related to LANs? 30 Jan, 2023 Pre-requisites: What is Network Congestion? Common Causes and How to Fix Them?, TCP Congestion Control Congestion and flow control are two important issues that can affect the performance of a local area network (LAN). These issues can arise when there is a high volume of traffic on the network, which can lead to delays, dropped packets, and other problems. In this article, we will discuss what congestion and flow control are, how they can affect a LAN, and how they can be addressed. Flow Control in a LAN Flow control is a mechanism that is used to manage the flow of traffic on a network. It helps to prevent congestion by regulating the amount of data that is transmitted at any given time. There are several different types of flow control, including window-based flow control and rate-based flow control. Window-based flow control involves the use of a “window” of data that is transmitted between two devices. The size of the window determines the amount of data that can be transmitted at any given time. If the receiving device is unable to process the data quickly enough, it can send a signal to the sender to reduce the size of the window. This helps to prevent congestion by limiting the amount of data that is transmitted at any given time. Rate-based flow control involves the use of a predetermined rate at which data can be transmitted. If the receiving device is unable to process the data at this rate, it can send a signal to the sender to reduce the transmission rate. This helps to prevent congestion by limiting the amount of data that is transmitted at any given time. How Can Flow Control Affect a LAN? Flow control can have a significant impact on the performance of a LAN. When congestion occurs, packets may be delayed or lost, which can lead to poor performance and reduced reliability. In addition, congestion can lead to increased latency, which can make it difficult for devices on the network to communicate with each other in a timely manner. Flow control can help to prevent congestion by regulating the flow of traffic on the network. However, if flow control is not implemented properly, it can also lead to problems. For example, if the flow control mechanisms are too strict, they may prevent the network from fully utilizing its available bandwidth. This can lead to reduced performance and decreased efficiency. There are several issues that can arise due to flow control in a local area network (LAN): Reduced performance: Flow control issues can also lead to reduced performance on a LAN. For example, if the network is congested, it may be difficult for devices to access the resources they need, which can lead to delays and reduced efficiency. Decreased efficiency: Flow control mechanisms that are too strict may prevent the network from fully utilizing its available bandwidth, which can lead to decreased efficiency. Security risks: Flow control issues can also create security risks, as they may make it easier for malicious actors to access the network and steal sensitive data. By understanding these issues and implementing strategies to address them, it is possible to improve the performance and reliability of a LAN and ensure that it is able to handle the demands of its users. How Can Flow Control Be Addressed? There are several strategies that can be used to address congestion and flow control issues in a LAN. These include: Adding more bandwidth: One way to address congestion is to increase the amount of bandwidth available on the network. This can be done by upgrading the network infrastructure or by adding more devices to the network. Implementing Quality of Service (QoS) protocols: QoS protocols are used to prioritize certain types of traffic on the network. This can help to ensure that important traffic, such as voice and video, is given priority over less important traffic, such as file downloads. Using flow control mechanisms: As mentioned earlier, flow control mechanisms can be used to regulate the flow of traffic on the network. This can help to prevent congestion and improve the overall performance of the network. Monitoring the network: Regular monitoring of the network can help to identify congestion and flow control issues before they become a problem. Implementing traffic shaping: Traffic shaping involves the use of techniques such as rate limiting and packet prioritization to control the flow of traffic on the network. This can help to prevent congestion and improve the overall performance of the network. Using load balancing: Load balancing involves distributing traffic across multiple devices or links in order to evenly distribute the workload. This can help to prevent congestion and improve the performance of the network. Upgrading hardware: In some cases, congestion and flow control issues may be caused by outdated or faulty hardware. Upgrading to newer and more powerful hardware can help to improve the performance of the network and reduce the risk of congestion and flow control issues. Implementing network segmentation: Network segmentation involves dividing the network into smaller, more manageable sections. This can help to reduce congestion and improve the overall performance of the network by limiting the amount of traffic that has to travel through certain areas. It’s important to note that congestion and flow control are complex issues that can be caused by a variety of factors. As such, there is no one-size-fits-all solution for addressing these issues. It may be necessary to implement a combination of the strategies mentioned above in order to effectively address congestion and flow control in a LAN. Here are a few more points to consider when discussing flow control in a local area network (LAN): Network topology: The way in which devices on a LAN are connected can have an impact on congestion and flow control. For example, a bus topology, in which all devices are connected to a single shared medium, may be more susceptible to congestion than a star topology, in which each device is connected to a central hub. Protocols: Different protocols can be used to manage congestion and flow control on a LAN. For example, the Transmission Control Protocol (TCP) includes built-in flow control mechanisms that help to prevent congestion. Network security: Security measures, such as firewalls and intrusion prevention systems, can help to protect a LAN from external threats. However, these measures can also impact the performance of the network and contribute to congestion. Network maintenance: Regular maintenance of a LAN, such as firmware updates and hardware replacements, can help to prevent congestion and flow control issues. Network design: The design of a LAN can also have an impact on congestion and flow control. Proper planning and design can help to ensure that the network is able to handle the expected volume of traffic and reduce the risk of congestion. Overall, flow control is an important issue that can affect the performance and reliability of a LAN. By understanding these issues and implementing strategies to address them, it is possible to improve the performance of a LAN and ensure that it is able to handle the demands of its users. For more details please refer Difference between Flow Control and Congestion Control article. 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!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?
https://www.geeksforgeeks.org/what-are-issues-in-flow-control-related-to-lans?ref=asr10
PHP
What are Issues in Flow Control Related to LANs?
jQWidgets jqxSortable disabled Property, Node.js Stream transform.destroy() Method, jQWidgets jqxSwitchButton enable() Method, Convert string into date using JavaScript, jQWidgets jqxSplitter height Property, How to Declare Optional Properties in TypeScript ?, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxTree checkAll() Method, jQWidgets jqxScrollBar rtl Property, jQWidgets jqxScrollBar step Property, jQWidgets jqxTabs position Property, jQWidgets jqxTooltip height Property, How to Make a Single Property Optional in TypeScript ?, jQWidgets jqxTreeMap width Property, Optional Property Class in TypeScript, jQWidgets jqxTree collapseItem() Method, Difference between Flow and TypeScript, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTabs keyboardNavigation Property, jQWidgets jqxTree destroy() Method, jQWidgets jqxTree collapseAll() Method, jQWidgets jqxSortable opacity Property, jQWidgets jqxScrollView buttonsOffset Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, jQWidgets jqxTabs disabled Property, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Node.js date-and-time Date.transform() Method, jQWidgets jqxListBox enableHover Property, jQWidgets jqxSlider height Property, TypeScript Optional Parameters, jQWidgets jqxSwitchButton onLabel Property, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, jQWidgets jqxToolBar theme Property, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxSplitter orientation Property, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxSlider buttonsPosition Property, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, jQWidgets jqxSwitchButton orientation Property, jQWidgets jqxToolBar tools Property, jQWidgets jqxSlider rtl Property, How to use Optional Chaining with Arrays and Functions in TypeScript ?, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTooltip opacity Property, jQWidgets jqxTree width Property, Difference Between Flow Control and Error Control, jQWidgets jqxScrollBar showButtons Property, jQWidgets jqxScrollView showButtons Property, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, jQWidgets jqxTree clear() Method, Introduction to TypeScript, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView disabled Property, jQWidgets jqxScrollView animationDuration Property, jQWidgets jqxToolBar height Property, PHP, How to Sort an Array Having Optional Properties in TypeScript ?, jQWidgets jqxSplitter destroy() Method, jQWidgets jqxTreeMap destroy Method
GeeksforGeeks
[-0.0515386313, 0.0142846182, -0.0151145337, 0.0151396831, -0.00213032775, 0.0165144932, -0.0112751238, 0.00158857694, -0.0465088375, -0.00825305562, 0.0279656593, -0.00387294218, 0.0297093224, -0.0208065845, 0.00986678153, -0.00903686509, -0.00500464579, -0.0168162808, 0.011694273, -0.0102188671, 0.0121469554, 0.00203811494, -0.0305308551, 0.0102188671, -0.0448657721, 0.0100512067, 0.0106631657, 0.0342864357, -0.0283512771, 0.0596198365, 0.0658232495, 0.0267082117, 0.000557992898, -0.0502308868, -0.00163677917, -0.0453352183, 0.00491243321, -0.0103446115, 0.0052351784, -0.00342235644, -0.00966559, -0.0031666751, -0.0280327238, 0.0109398039, -0.0122810826, 0.0121050403, -0.0468441583, 0.000747658079, -0.000492238789, -0.0203706697, -0.00306188781, -0.0242939107, 0.00194485404, 0.00260501471, -0.010034441, 0.00499626296, 0.0458382, 0.0194150079, 0.0128259771, -0.0152738104, 0.0297931526, -0.0147540653, -0.0552271493, -0.0232041217, -0.00724290498, -0.0188952629, -0.0416467041, 0.0239753556, 0.00851292815, -0.00725128781, -0.0618329458, 0.0154666193, -0.049224928, -0.018174326, 0.0136055956, 0.00510105025, 0.0285692364, 0.0228017364, 0.0189958587, 0.0178390071, -0.0146115543, 0.043122109, -0.00913746096, 0.016900111, 0.00650101, 0.0267752744, 0.00246669538, -0.061631754, 0.0728984922, 0.0263393596, -0.00412233593, 0.056803152, 0.00683632959, -0.0395677201, -0.00243945047, -0.0221143328, 0.0332804769, 0.00221939711, -0.0168246645, 0.0285692364, -0.0127002327, -0.00374300568, -0.0151229165, 0.0138067873, 0.0358456708, -0.00242897193, -0.0556965955, 0.012733764, 0.0119206142, 0.0840981752, 0.00227807788, -0.0247130599, 0.0168833453, 0.0321236253, -0.0465423688, 0.00614892459, 0.0124235936, -0.0231202915, -0.0126667, 0.0416802354, -0.00308703678, 0.0132786585, -0.024897486, 0.0424850024, -0.0374552049, 0.0550930202, -0.00274123834, -0.000580522174, 0.00849616248, -0.0101434197, -0.0215945859, 0.00550762564, -0.016615089, -0.00301578129, 0.0123229977, -0.0281836186, 0.025467528, 0.0199179873, 0.0213095639, -0.0343702659, 0.0322242193, -0.0323918797, -0.00901171565, 0.0110487826, 0.0113086561, 0.00592677528, -0.0386288241, 0.0199850518, -0.0396012515, 0.0364827812, -0.0136978086, -0.0376899317, 0.0127505306, 0.0279656593, 0.0158941522, -0.0265237857, 0.00748601137, 0.024897486, 0.00571300881, -0.0390312076, -0.00353343086, -0.0500632264, -0.0116355922, -0.014343299, 0.0172689632, 0.00969073828, 0.0356780142, 0.00927997194, -0.068438746, 0.0425185338, -0.02149399, 0.0143600646, -0.0298266839, 0.0342529044, -0.00180863042, 0.00732673472, 0.00171746546, 0.0341858417, -0.0172689632, 0.020638926, -0.0278985966, -0.0335822627, -0.0248807184, 0.0135720633, 0.0400707, 0.01112423, 0.00350199477, -0.0224664174, -0.00376396324, -0.0163887478, -0.0216951817, 0.0234891418, 0.0598545596, 0.0153744062, -0.0092129074, -0.0387629531, -0.042317342, 0.0207059886, 0.0182916876, -0.0271105953, -0.044597514, 0.00698303198, -0.0112499744, -0.00132451265, 0.0107386122, -0.0179228354, 0.00600641361, 0.000815245963, 0.0104703568, 0.0092129074, -0.0582785569, -0.00165878446, 0.00196371577, -0.00143977883, -0.014293001, -0.00983324926, -0.00393581437, 0.000548562035, -0.0176210478, -0.00527709303, 0.0138738509, 0.0177551769, -0.00879375823, -0.00381006976, -0.068405211, -0.0384611674, 0.0317212418, -0.0509350561, -0.0438598134, -0.0220975652, -0.0137061914, 0.0399365723, 0.0019553327, -0.0126247853, -0.0243106764, 0.0172186643, -0.00876860879, 0.043926876, -0.001088741, -0.0190126244, -0.026842339, 0.021158671, -0.0526787192, -0.0330289863, -0.0339511149, 0.00427113427, 0.0343032032, 0.0574067272, -0.00709620258, -0.0125241894, -0.0253669322, 0.0106380163, 0.0290889814, -0.0141253406, -0.0182413906, 0.0237238668, -0.0187276024, -0.0335822627, 0.0126080196, 0.00774588436, 0.0400707, -0.00138005, -0.0039672507, 0.0277812351, -0.0160534289, -0.00898656715, 0.0100009087, 0.0543217845, 0.0334984362, -0.0111912936, 0.00462322, -0.0259872749, -0.00308703678, -0.0163971316, 0.00237029092, -0.00639203098, -0.0327774957, 0.000966139778, 0.0375222713, 0.0114008682, 0.0140163619, -0.0413113832, -0.00250022719, 0.00295081316, -0.0337499231, -0.0245789308, 0.00219424814, 0.0163384508, -0.0591839217, -0.026221998, -0.0215442888, 0.0103613781, -0.00266998284, 0.000302049681, 0.0199515205, 0.0350409038, -0.0130858496, 0.0190126244, -0.0311176647, -0.00260082306, 0.0101350369, -0.0163300671, 0.0101434197, -0.0286027677, -0.0334816687, -0.0112248259, -0.0290219169, 0.00819437392, 0.00687824469, -0.0123565299, 0.0481183715, -0.0367510356, -0.0207898188, -0.0689417198, 0.00631239265, 0.0172521975, 0.050700333, 0.00754469261, -0.0352085643, -0.0199850518, 0.0637442693, 0.0312853232, -0.00764948, 0.0578761734, -0.00970750395, -0.0305308551, 0.0307152811, 0.0336325616, 0.00995061081, -0.00353343086, -0.0184761137, 0.0380923152, -0.0202533081, -0.0540870614, 0.0210413095, -0.0144941928, -0.0290051512, 0.0191299878, -0.0191467535, 0.0195323713, -0.0126667, -0.0233047176, -0.0280159581, 0.00207269471, -0.000581046101, 0.0037136653, -0.015810322, 0.0125241894, 0.0381593779, -0.010034441, 0.00168183772, 0.0252495706, 0.0289548524, 0.024662761, 0.0548247658, -0.000464732089, 0.00503817806, 0.00203916267, -0.0180401988, 0.00144816178, 0.0386958905, -0.00648424402, -0.0353762247, 0.0567025542, -0.0293740034, 0.018794667, -0.0156175131, -0.035409756, 0.00702075567, 0.0106547819, -0.0330122225, 0.026221998, 0.0168665797, 0.00591420056, -0.00343702664, -0.0108224424, 0.00345379254, -0.00756145827, -0.0313691534, 0.0031079941, -0.00392743153, 0.0329786874, 0.0329786874, 0.0167995151, -0.0468776897, -0.00963205751, -0.00466094352, -0.00515973149, -0.00461902842, 0.0487890132, -0.0344708599, 0.0250986777, -0.026221998, 0.0368851647, -0.0115685286, -0.0145444907, -0.00974103622, -0.0232208874, 0.0431556404, -0.0186940711, 0.0202868395, 0.0286195334, 0.00786743779, 0.00372833549, -0.0386623591, 0.032894861, -0.00359420758, -0.0133876372, -0.00684471289, -0.00296548335, -0.000376186741, -0.00946439803, 0.0192976464, -0.016145641, 0.0130271688, 0.041613169, -0.0273453183, 0.0391653366, -0.0186437741, -0.00231161, 0.00958176, 0.0252663363, 0.0157348756, -0.00372623978, 0.0315703452, -0.00355858, 0.0202197749, 0.00441364525, -0.0017824336, 0.0140918093, 0.04449692, -0.00739379879, -0.0130271688, 0.00762013951, 0.000347632187, -0.0417472981, 0.0430550463, -0.00665190397, -0.007100394, 0.0247633569, -0.0147121502, 0.0047531561, 0.0379246548, -0.0387964845, -0.0330625176, -0.0085338857, -0.0335990302, -0.0421496816, -0.0117026567, -0.0299943443, -0.0416467041, 0.0152486619, -0.0306314509, -0.00103320368, -0.0159109179, -0.00804767199, 0.0430550463, -0.0485542864, 0.0381258465, 0.00510943355, 0.00855065137, 0.0182078574, -0.0278818309, 0.00131508184, 0.00325888791, -0.0110404, -0.00466932636, -0.0125325723, -0.00599383889, 0.00463579455, 0.0382264405, -0.0138570853, 0.0178557727, 0.0229861625, 0.00841652323, 0.00916260947, 0.0210580751, -0.0401377641, -0.00239963131, -0.0699476823, 0.0166989192, 0.0589492, -0.00114846986, -0.00991707947, 0.000517125824, 0.0103529943, 0.00729739433, 0.0117948689, 0.017369559, -0.0504991412, 0.0198844559, 0.000644966436, -0.0154163213, -0.0410766602, -0.0172018986, -0.00380797405, -0.00883567333, 0.00999252591, -0.0126834661, 0.00768720312, 0.000106490188, 0.0112080602, -0.00488309283, 0.0619670749, -0.0165731739, -0.0116104437, 0.0131696798, 0.0219969694, 0.0171516016, -0.0493590534, -0.00267207855, 0.010461974, -0.00802252255, 0.0354768224, -0.00265321694, 0.0109565705, -0.0108308252, -0.00144397037, -0.00834526774, 0.0227346737, 0.00776684191, 0.00276219565, 0.0175036862, -0.00953984447, -0.0210245438, -0.00641718, 0.0149887893, -0.00718841515, -0.00222358853, -0.025702253, -0.0262052324, 0.00688662753, -0.00568786, -0.00365079287, -0.023338249, 0.00312895165, 0.0250986777, 0.0322745182, -0.0208401177, -0.00629562652, -0.0229526311, 0.0328110307, -0.0425855964, -0.00829916168, -0.00432981504, 0.0329283923, 0.00808120426, -0.00654292479, 0.00732673472, -0.0206556916, 0.0208568834, 0.00258405716, 0.0118451668, 0.0190796889, -0.0127672963, -0.00245202496, 0.0269764662, -0.0148127461, -0.00573815778, 0.00125640084, -0.0300278757, 0.0218293108, 0.0126583176, 0.0185431782, -0.00460226228, -0.02650702, 0.0115936771, 0.00405527232, -0.0286530647, 0.0108224424, 0.00254633371, -0.0041558682, -0.00640460569, -0.0139073832, 0.0317380056, 0.026272295, 0.0323080495, -0.00585552, 0.01874437, 0.0144690434, -0.0145864058, -0.0116775073, 0.0258028489, 0.00630401, 0.0235897377, 0.0136642763, 0.0113421874, 0.00510105025, -0.0139744468, -0.00961529184, -0.00299691944, 0.0186605398, -0.0115266135, -0.0133708715, 0.0221478641, -0.017704878, -0.0011526614, -0.00260501471, -0.00461902842, -0.0466764979, 0.0111409957, 0.0332469456, 0.0184761137, -0.00389809115, 0.00705847889, -0.0012281083, -0.0208401177, 0.0389306135, -0.0185431782, -0.0165396426, 0.0303296633, -0.00400078297, 0.0278985966, -0.000790096936, -0.00793869328, -0.0242939107, 0.006840521, 0.000689501059, 0.00427742163, -0.00775426719, 0.0409760624, 0.00183377939, 0.0157348756, 0.00122286892, -0.00777103333, 0.00731835188, -0.0183922835, -0.0150726186, -0.0174030904, -0.0294578318, -0.0151983639, 0.00412443187, -0.00376605894, -0.0129265729, -0.0255848896, -0.0120882737, -0.0140750427, -0.0161037277, -0.0203371383, -0.0252998695, -0.0227011405, 0.0282003842, -0.021208968, 0.10213837, 0.000994432368, 0.0285021719, -0.0174701549, 0.0187611356, 0.0227849707, 0.0243106764, 0.0181407947, 0.0304134935, -0.00133394357, 0.035309162, -0.00923805684, -0.023572972, 0.000194642591, -0.0335152, -0.0127672963, 0.014913342, -0.0231538229, -0.0134714674, 0.0200856477, -0.00229484402, 0.00289213215, -0.0218796078, 0.0160282794, 0.018459348, -0.00912069529, 0.0300278757, -0.0242939107, -0.00259453594, 0.0344037972, 0.0236232709, -0.0360803977, -0.0116775073, -0.00623275433, 0.0581108965, -0.00834526774, -0.0401042327, -0.0367175043, -0.00598964747, 0.0154079385, 0.0367175043, -0.00915422663, 0.0106128678, -0.0448322408, -0.0047615394, -0.00435077259, 0.014293001, -0.00992546231, -0.0165228769, -0.00645909505, -0.0188617315, 0.00157181092, 0.0147959804, 0.00693692546, -0.0150139378, 0.00920452457, -0.0212592669, 0.0230196957, 0.0141756386, -0.00510943355, -0.00237448234, -0.0194485411, 0.0266076159, -0.00919614173, -0.0132954251, -0.0363151208, 0.0223155245, -0.00930512, -0.0314026885, -0.0054908595, 0.00884405617, 0.0183084533, -0.0148714269, -0.00527290162, -0.00407623, -0.0328780934, -0.0236065052, -0.00986678153, 0.00152046513, 0.03701929, -0.0426191278, -0.0380252488, 0.00147016719, 0.0217287149, 0.0177216437, -0.0137816379, -0.00330709014, -0.00601898786, -0.023857994, -0.0123649128, -0.00572977494, -0.00163363549, 0.0257357843, 0.00995899364, 0.0202700738, 0.0255178269, 0.00741475588, 0.0342361368, -0.00125116145, 0.014343299, -0.00307446229, -0.0219802037, -0.0108140595, 0.0247298256, 0.0105793355, 0.00062453287, -0.0300614089, -0.00466932636, -0.0247465912, 0.00464417739, -0.0304973237, -0.0325930715, 0.0162797701, 0.0363486521, 0.0135720633, 0.015005555, 0.0107302293, 0.00800575688, 0.0450334325, -0.00941409916, 0.0100092916, -0.00333223911, -0.0326601341, -0.0355438851, -0.00505913561, 0.0220640339, -0.0278650634, 0.00764948, 0.0278650634, -0.000710458553, -0.0318386033, -0.0194820724, -0.00370318652, 0.00616988167, -0.0154414708, 0.00085244549, 0.00691596791, -0.016288152, 0.0343702659, -0.0278147664, -0.00904524792, -0.000462898315, -0.036113929, 0.0323751122, -0.0170929208, 0.0107637616, 0.0466094352, 0.0162630044, 0.0398359746, 0.00297596212, 0.0102104843, 0.00432562362, -0.00865963, -0.00467770919, 0.0232208874, -0.0166905355, -0.0112835066, 0.0213598628, -0.00394210173, -0.0314697511, 0.0183755178, -0.00937218498, -0.0464082435, -0.0194150079, -0.0392994657, -0.0409760624, -0.0109230382, 0.00578007288, 0.00556630641, 0.000679546269, -0.00242268457, 0.0193647109, -0.00358372903, 0.0051220078, -0.0064465208, -0.021443693, -0.0190293919, -0.0115601458, -0.00507171, -0.00471543288, -0.0504320785, -0.0191802848, 0.0109733362, 0.013396021, -0.000768615573, 0.0352756307, 0.0301620048, -0.0114679327, -0.0116104437, -0.0284351073, -0.00584713649, -0.033414606, 0.00027061344, 0.00132765633, 0.0155923646, -0.0239585899, 0.0170174725, -0.0140666598, -0.00195638067, -0.00677764881, 0.0286698323, -0.00868477952, 0.0179731343, 0.00173632719, -0.0207059886, 0.0226676092, -0.0313188583, 0.00152151298, 0.00949792936, -0.0199347548, -0.000291046978, -0.00963205751, 0.0286865979, 0.0151145337, 0.0254842937, 0.00609443476, 0.000412076421, -0.00348732457, 0.0059225834, -0.00785905495, 0.0402048267, -0.010034441, -0.0140498942, -0.00609443476, -0.00979133416, 0.00129098073, -0.00996737741, -0.0203874353, -0.0401042327, 0.0105877183, 0.00710458541, -0.0198509246, -0.021963438, 0.0293572359, 0.0283345114, 0.00454777293, -0.0101601863, 0.0221478641, 0.0276303403, -0.025467528, 0.0268255733, 0.013018786, 0.00179291237, -0.0125744874, -0.0268088076, -0.000776998524, -0.032894861, -0.0104032923, 0.0105625698, -0.0364492461, -0.0174533892, -0.0117781032, 0.01462832, -0.0376563966, -0.0142846182, -0.00412024045, -0.0190461576, -0.0173360258, -0.0141085749, -0.0198341589, -0.0161959399, 0.0328277946, -0.0409425311, 0.00122286892, -0.023807697, -0.0148211289, -0.0189790931, -0.0157851726, 0.03152005, -0.0411437228, -0.0153911728, 0.0296925567, 0.0403389558, -0.0398024432, -0.0186773054, 0.000864496, 0.0114679327, -0.00601898786, -0.0197838601, 0.000680594123, 0.00764948, -0.0109901018, 0.0038771336, -0.00162210886, -0.0134379352, -0.00730996858, -0.00216909917, 0.00985839777, 0.00517649716, 0.00585552, -0.0107637616, -0.0237741638, 0.0433903635, -0.0147624481, 0.00982486643, -0.0367845669, -0.0107302293, -0.0206221603, 0.00427113427, 0.0363151208, -0.00932188705, 0.0129265729, -0.00989193, 0.0256351884, 0.00880214106, 0.011409252, 0.0120463585, 0.000166742946, -0.0047196243, 0.0107218465, -0.00651777582, 0.00329870731, -0.049895566, -0.0516727604, -0.043792747, 0.00932188705, 0.0238412283, 0.0329116248, -0.00394419767, -0.0110906977, -0.00308703678, -0.00485375198, 0.0192138162, -0.00689081894, -0.0331463479, -0.00374300568, -0.00346217561, 0.0166905355, -0.0280159581, -0.00357534597, 0.0114846984, 0.0105877183, -0.00663932925, -0.027362084, -0.0321739204, 0.00930512, -0.00047783053, 0.00187359867, 0.00565851945, 0.00566271087, 0.00326936669, 0.0155336838, -0.0150726186, -0.0326769, -0.0128092114, -0.00683632959, 0.00535673182, -0.0176210478, -0.00427742163, 0.00369480345, -0.0165312588, -0.0216113534, 0.00226131198, 0.0186102409, 0.00250441884, -0.0136139784, -0.0239250585, -0.00217329059, -0.031905666, -0.0159360673, 0.0253166351, 0.0162965357, 0.0346720517, 0.0198676903, 0.0193814766, 0.00323793059, -0.00505075231, -0.0353426933, -0.0441951305, -0.0115769114, -0.0037136653, 0.0119373798, -0.0028565044, -0.0146031715, 0.0023409503, -0.0083536515, -0.0239921212, 0.00632915879, -0.0188281983, 0.00204859348, -0.00544056157, 0.032324817, 0.0282339156, -6.07439433e-05, 0.0211083721, -0.0146534694, -0.000967711618, 0.00314362184, -0.000959328609, -0.012591253, -0.00631658407, -0.00575492391, -0.0196162, 0.00199096045, -0.0557636619, -0.00280411076, 0.00729320291, 0.00763271376, 0.0231705885, 0.00392743153, 0.0126499347, -0.0229191, -0.00925482251, -0.0189287961, 0.000716221868, -0.00696207443, 0.0146115543, 0.00146702351, -0.0304973237, 0.000405527215, -0.017654581, -0.00208841288, 0.0260543376, -0.011266741, -0.000213373336, 0.0281836186, -0.00155294919, -0.0111829108, -0.0141169578, 0.00543637, -0.0139912134, -0.0271776598, 0.0222652256, 0.0142678516, 0.0199012216, 0.0124990409, 0.0113757197, -0.0226173121, -0.00596030708, -0.00184530602, -0.0195659027, -0.0148378955, 0.00586809404, -0.0418478958, -0.0213430971, -0.019549137, -0.00942248292, -0.0264567211, -0.0069495, 0.0289045554, 0.0112415915, -0.000403955404, -0.00789677817, 0.000597812119, 0.000438273273, -0.0189120285, -0.0173863247, -0.0101350369, 0.0218628421, 0.00239963131, -0.00480764592, 0.0181072615, -0.0130774667, -0.00291099376, 0.0895303488, -0.0274794474, -0.000400549819, -0.0233214833, 0.00423760246, 0.00414538942, -0.0164055154, 0.0244951025, 0.0328613259, -0.00556630641, 0.0450669639, -0.000151155822, 0.000544894428, -0.00197838596, -0.0108056767, 0.00150369911, -0.0149887893, 0.0144019797, 0.00451424113, 0.0119122313, -0.00688243611, 0.018459348, 0.00208317349, -0.0163887478, 0.0193479452, -0.000872879, 0.0139576811, -0.0211922023, -0.0268926378, -0.00900333282, 0.0362480544, -0.0191970505, 0.0114595499, 0.0212425012, 0.014435512, 0.0465423688, -0.00241849315, -0.0173192602, -0.0179060698, 0.027311787, -0.00167764619, -0.00759918196, -0.0214604586, 0.000766519806, -0.00967397261, -0.00505075231, -0.00951469596, 0.000463684235, -0.00570881739, 0.0161791742, -0.0243442077, -0.0108475909, 0.00229693973, -0.0122810826, -0.004614837, 0.0155169172, 0.00933027, -0.0145864058, 0.0277812351, -0.0243777391, 0.010411676, 0.00787582062, -0.00750696892, -0.0141253406, 0.00282506808, 0.000654921227, -0.0229358654, -0.0102607822, -0.00649262685, 0.000351037772, -0.0111577623, 0.0243609734, 0.0195826683, 0.00565432804, -0.0211419053, 0.00780875655, -0.00241220579, -0.00622017961, 0.00334900524, -0.0154247042, 0.000257122068, -0.00168393343, -0.0162797701, 0.0240759514, -0.00672315946, -0.0108727403, -0.0193982422, 0.0111912936, 0.0104955053, -0.0114427833, 0.0160366632, 0.0111409957, -0.00695788302, 0.00122496462, 0.00296757906, -0.00787162874, 0.0425185338, -0.0101853348, 0.00382054853, 0.00245621661, -0.0115517629, 0.0052267951, 0.00155818858, -0.0139241489, -0.0197670944, -0.00197733822, -0.00441364525, 0.0260543376, -0.00438849628, -0.00280830218, 0.0192808807, 0.00681537203, 0.0031981112, 0.00894465204, 0.00151732145, -0.0298769828, 0.0152151296, 0.00640879711, 0.0124822743, 0.0165312588, -0.0304470249, 0.0103110801, 0.00408670865, 0.00938895065, -0.0139073832, -0.000928416324, 0.00779199088, -0.00452262396, -0.00161058223, 0.00206745532, -0.0156761948, 0.034219373, -0.0271608923, 0.0207730532, -0.0246962942, 0.0145361079, 0.00550343422, -0.00162315671, 0.000935227494, -0.0153911728, -0.0128092114, 0.0191802848, -0.025702253, -0.00553696603, -0.00367803755, -0.00461064558, -0.0166905355, -0.00597707322, 0.00706267031, 0.00483279489, -0.0292734075, -0.0125828702, 0.00228436524, -0.0236065052, 0.0351750329, 0.0182078574, -0.00504656089, 0.0109314211, 0.00570043409, -0.00168498128, 0.0125325723, 0.0120631251, 0.00933865272, -0.00103844306, -0.0148127461, -0.0293404702, 0.0142175537, 0.0247130599, -0.00309751532, -0.0220305026, -0.0134127866, -0.000522103219, -0.0115098478, -0.00337625, -0.00106254418, 0.0138822338, 0.0106715485, 0.0217622463, 0.031050602, -0.000567423762, -0.00634173304, 0.00816922542, 0.0163216852, 0.0228017364, 0.0116104437, 0.00273075956, -0.0192473494, 0.00335110095, 0.0119960606, 0.00120505504, -0.0151899811, 0.0034936117, 0.0203874353, -0.00659322273, 0.0329786874, 0.0143935969, 0.00895303488, 0.0175372176, 0.0128259771, -0.0133876372, -0.0153576406, -0.0108559746, -0.0135636805, 0.0199515205, 0.00800994877, -0.021913141, -0.00469447533, 0.0147959804, -0.00665190397, 0.00355858, 0.00997576, 0.00531900814, -0.0122810826, -0.00445136847, 0.0154498536, 0.00295710028, -0.00583875366, -0.0126331681, 0.0036989951, -0.0132115949, -0.0183755178, -0.00808120426, 0.0158690028, -0.00599383889, 0.00151732145, -0.0294243, 0.0495602451, -0.000157705028, 0.0263561253, 0.00938056782, -0.0115349963, 0.0387294218, 0.00872669462, 0.00657226564, 0.0151145337, -0.0288374908, 0.0285021719, -0.0113254217, -0.00841652323, 0.0157851726, 0.0109146554, 0.00209155632, 0.00370109081, -0.00257148268, -0.0207059886, 3.40559e-05, 0.00131089031, -1.36960398e-05, -0.0194317754, 0.0058261794, 0.00811892748, -0.00891950354, 0.0256016571, -0.0286363, 0.00445556, -0.0101601863, 0.00340559031, 0.0349067785, 0.00404060213, -0.0326601341, 0.0148043633, 0.00156866736, -0.00189560396, -0.000797956, -0.0106128678, 0.0202700738, 0.00148798106, 0.0164558124, 0.0203203727, -0.00910392869, -0.0130020203, 0.0295081306, -0.00535673182, -0.00274752546, -0.0255345926, -0.00570043409, -0.00943086576, -0.00344121805, -0.0150307044, -0.00632077549, -0.012163721, 0.0227346737, -0.00346427131, -0.0274962131, -0.00867639668, -0.00478668837, 0.000228698496, -0.00431304937, -0.0106128678, 0.00458130473, 0.00499626296, -0.00270980201, 0.0153660234, -0.015097768, -0.00248136558, 0.0462405831, 0.00823209807, 0.0250316132, 0.0058261794, 0.0166905355, 0.0102021005, 0.00972427055, -0.0156761948, -0.00758660724, -0.00498788, -0.023338249, 0.0107637616, -0.00234723766, 0.0181910917, 0.00218796078, 0.0107218465, -0.0289883856, -0.0111996764, 0.0130523182, -0.00969912112, -0.010034441, -0.000960376463, 0.00729739433, -0.000922129082, 0.00884405617, -0.0103362286, -0.0098081, 0.000146309394, 0.0146870017, 0.00215862039, -0.0160618126, -0.010411676, -0.021208968, -0.0269261692, -0.0137229571, -0.0146786179, -0.0335655, -0.00626628613, -0.0278482977, 0.000285807619, 0.019264115, -0.0154414708, 0.0134547018, -0.00623694574, -0.00762852235, -0.029491365, -0.0120379757, -0.0136223612, 0.0156510454, 0.00384150585, -0.0283009801, 0.00829077885, 0.0167156849, -0.010319463, 0.0365163125, -0.0176713467, 0.00211880123, -0.00636688201, -0.0160701945, 0.0120463585, -0.0109314211, 0.0107134636, 0.0189790931, 0.00757403299, -0.00990031287, -0.0212425012, 0.00910392869, 0.0105206547, -0.0197503287, -0.00697464915, 0.0276806392, 0.0171516016, -0.0180904958, 0.0267417431, 0.05402, 0.0016189653, -0.00637107342, -0.0198509246, -0.00540702976, 0.0169336423, 0.0028711746, 0.0353762247, 0.0149887893, 0.0286530647, -0.00641298853, -0.0127505306, -0.0231705885, 0.00237448234, 0.00777522475, -0.0039672507, 0.00371576101, -0.00479088, 0.0158941522, 0.0352756307, -0.00332595198, 0.00251699332, -0.012641551, 0.00500464579, 0.0119373798, -0.00800575688, 0.0186773054, -0.0154414708, -0.00806863, -0.011694273, 0.00467351777, -0.0081734173, 0.0153324921, -0.0194653068, 0.0186270066, 0.0118032526, -0.00865963, -0.00316038774, -0.0461399853, 0.0176713467, -0.0334313698, 0.000137926414, -0.00562917907, -0.00202344451, -0.0221310984, -0.00362983532, 0.0314362198, 0.0092129074, 0.0170845371, -0.0251825061, 0.00838299189, 0.0183084533, -0.0122727, -0.0132870413, -0.0174533892, -0.00307865371, 0.00542798731, 0.0343367346, 0.00604832824, 0.0021366151, -0.0383941, -0.0114595499, 0.0198676903, 0.00471543288, -0.00436334731, -0.0165228769, -0.00436753873, -0.0036403141, -0.0186940711, 0.0263058282, 0.000256336178, -0.00181282195, -0.0136055956, -0.0356780142, -0.00611539232, -0.0121888695, -0.0170929208, 0.0224161204, 0.0417808294, -0.0197670944, -0.0185934752, 0.00815246, -0.00167555048, 8.28475313e-05, -0.0164138973, -0.00184949755, -0.0030032068, -0.0177216437, -0.00923805684, 0.00999252591, -0.00955661, 0.00652615912, 0.00426694285, -0.0127253812, 0.0306482166, 0.0140163619, -0.0109146554, -0.00476992223, -0.0108475909, -0.0124319764, 0.0104703568, 0.00107249897, 0.00953146163, 0.0118116355, -0.0207562875, -0.00627047755, -0.0155504495, 0.00808958709, -0.00514715677, 0.0246962942, 0.0126247853, 0.00031802975, 0.0182581563, -0.00342654786, 0.010839208, 0.0139995962, 0.0530811027, -0.0128259771, 0.021443693, -0.00351037784, 0.0174533892, 0.0339343511, -0.0155085344, -0.0297093224, 0.0116104437, -0.0219969694, 0.0253669322, 0.00089750404, -0.00705847889, -0.00686986186, 0.0021753863, -0.00478668837, 0.000708362786, 0.023572972, 0.0441616, 0.00572139164, 0.0101434197, -0.00838299189, 0.0113421874, 0.0034034946, -0.0155336838, 0.00707524503, -0.00997576, 0.00306607923, 0.0128846578, 0.00422921916, -0.013915766, 0.0133876372, -0.00852969382, 0.0224831831, 0.0136055956, 0.0186940711, -0.00299063232, 0.00108454959, -0.0275129788, -0.00145968841, 0.00902848225, -0.00692016, 0.0306482166, 0.000370947382, 0.00663094642, -0.00451843254, 0.00499207154, -0.011643975, -0.0115769114, 0.00344960112, 0.0110739321, -0.000846682175, 0.00104053889, -0.00304512167, 0.00105311337, -0.0098835472, -0.000165433099, -0.0128511265, -0.0186773054, 0.00266788714, -0.00916260947, 0.00929673761, 0.0144438948, 0.0168246645, -0.0014429224, 0.00793450139, -0.00463160267, 0.00128678919, -0.00958176, 0.0270770639, 0.00870992802, 0.0044681346, -0.00615730742, -0.00632077549, -0.00121762953, 0.00182854, -0.00110760273, -0.00449328357, -0.0164055154, 0.000328508497, 0.013899, 0.00845424738, 0.00771654397, 0.00311847287, -0.00253375922, -0.0117948689, 0.0322242193, 0.00242478028, 0.0101434197, 0.0132451272, 0.024143016, 0.000521317299, 0.00370528223, 0.00697464915, 0.0068069892, -0.01112423, -0.000791668775, -0.0202365424, -0.0264399555, -0.0114763156, -0.0110404, 0.0325763039, -0.0019092263, -0.0141756386, 0.0048998585, 0.0233717803, 0.012641551, -0.00609024335, 0.0018578805, 0.00688243611, -0.00780037371, 0.0067734574, 0.0163971316, 0.0108224424, 0.00676088268, 0.00073927507, -0.0115266135, 0.0134295523, -0.0199012216, -0.00863448158, -0.0160115138, 0.00608605193, 0.00549924234, -0.00854646, 0.0112583581, -0.00747343712, -0.0126499347, -0.0043843044, 0.00236190786, -0.00408251677, -0.018459348, 0.0328613259, 0.0102775479, 0.00595611567, -0.00567528512, -0.000538083259, 0.0141421072, 0.00368013326, 0.000254764367, 0.00302206841, 0.00396934664, 0.0220808, -0.0179228354, 0.0108140595, -0.0151229165, 0.0248807184, -0.00358582474, 0.011266741, 0.000600431755, -0.0251825061, 0.00457711332, -0.0249813143, -0.00399868703, -0.00638783956, 0.00788420346, 0.0203706697, -0.00239963131, 0.0182581563, -0.0194820724, -0.0402718931, -0.00528547633, -0.0149636399, -0.00930512, -0.00821952336, -0.0067525, 0.0268088076, 0.00587228546, 0.0106463991, 0.00832431111, 0.00264064246, -0.0225502476, -0.00174471014, 0.0101685692, -0.00363193103, -0.0158941522, -0.00456453906, -0.000739799, -0.010604484, 0.0319391973, 0.0120547423, -0.0181072615, 0.0273788515, 0.00401754864, -0.00743990531, -0.00799737405, -0.0111326128, -0.0185599439, -0.000631344039, -0.00634592446, -0.0167324506, -0.00692016, 0.00890273694, -0.0228017364, -0.0216113534, 0.00244783354, 0.00729739433, -0.00311428146, 0.00743571343, 0.00457711332, 0.00524775265, 0.00410976168, 0.00765367132, 0.00357115455, 0.0214101598, -0.00166402385, 0.0163384508, -0.0164977275, -0.000358634861, 0.00890273694, 0.0080183316, -0.0388635509, -0.0180904958, 0.00896141771, 0.00122077321, -0.0142091708, 0.0252328049, 0.00394210173, -0.00471543288, -0.000427270599, 0.0030933239, -0.0107553778, 0.00990869571, 0.0272782557, -0.00999252591, 0.0248304214, 0.00156552368, -0.00497111399, -0.00315829203, 0.00706267031, -0.0121134231, -0.00397982541, 0.0190964546, 0.00469866674, 0.0106631657, 0.0143768303, -0.0193311796, 0.0182246231, 0.0171096865, -0.0171348341, -0.00506332703, -0.0185264107, -0.0315535814, -0.0212592669, 0.00331966463, -0.00694530876, -0.00474896468, 0.0419484898, -0.00537768891, -0.0325260088, -2.09083591e-05, -0.00666447822, 0.0219969694, 0.0143684475, -0.0275297444, 0.0210580751, 0.016237855, 0.0112751238, -0.00422293227, 0.0120882737, -0.0155672152, 0.00278524891, 0.0245621651, 0.00328613282, -0.0101518026, 0.0359798, 0.0044681346, -0.0198509246, 0.00374091, -0.0027978234, -0.00165878446, -0.00413910206, 0.0114511661, 0.0215778202, -0.00907039735, -0.000668019638, -0.00155923644, -0.00349151599, -0.015525301, 0.000725652731, 0.00168812496, -0.0189958587, -0.00811892748, 0.0149971722, 0.0248471871, 0.00728481961, 0.000892264652, 0.000148798106, 0.0128595093, -0.00157705031, -0.00550762564, 0.00241849315, 0.00124487421, -0.0218963735, -0.0043926877, 0.010084739, -0.00222149282, -0.013345723, 0.00578007288, -0.00702494709, -0.00876022596, -0.0325427726, -0.0129852537, 0.00443879422, -0.00668543577, 0.00839137472, -0.0148378955, 0.00938056782, 0.00492081605, -0.0141504901, 0.0145864058, -0.00132975203, -0.0058261794, 0.00512619922, 0.00829916168, -0.00357744168, 0.00764948, -0.00496692257, -0.00834107678, -0.00615730742, -0.00069264468, -0.0109733362, 0.00453519868, -0.028401576, -0.00115370925, -0.000942562649, -0.00933027, 0.00105887663, 0.000709934626, 0.008852439, -0.00440107053, 0.0127086155, 0.0208904147, -0.00678184, 0.0030032068, -0.0435244925, 0.0042879004, -0.0275297444, 0.00753630931, -0.00175309309, -0.0165815577, -0.00276219565, -0.00282925973, -0.0105877183, -0.00392114418, 0.00578845572, 0.00942248292, -0.0158690028, -0.0206724573, 0.00132660847, -0.013161297, -0.0105458032, 0.00515554, 0.0165061112, -0.00110236346, 0.00896141771, -0.0148127461, 0.00824886374, 0.00420616614, 0.00754050119, -0.00529805059, 0.0267249774, 0.00433400646, 0.0151145337, -0.0014942683, -0.00674830843, 0.0198676903, 0.00749858608, 0.023053227, 0.00397144211, 0.00740637304, -0.0111326128, -0.0125493389, -0.0170174725, -0.0235897377, -0.00323793059, 0.0156091303, -0.0126834661, -0.0128259771, -0.00640879711, -0.00823628902, -0.0107386122, 0.00515134819, -0.0205215644, -0.0160618126, 0.0381258465, 0.00356277148, -0.0172857288, -0.000398978, 0.00162630039, 0.0127086155, -0.00143139577, -0.0140918093, -0.0110404, -0.0216281191, 0.00803090632, 0.00844167266, 0.0255010612, 0.0159193017, 0.00098081, -0.00267836591, -0.00213137572, 0.00594354095, 0.0241094846, -0.00551181706, 0.00576749817, 0.0191635191, -0.00401964458, -0.0108978888, -0.00521002943, 0.014720533, -0.00839556567, -0.00550762564, 0.0219969694, -0.0180569645, 0.0111409957, 0.0130271688, -0.00938895065, 0.0128678922, -0.0178725384, -0.00842490699, -0.000356277131, 0.00253375922, 0.0230699927, -0.011694273, -0.0137900217, 0.0137564894, -0.0141756386, -0.0128846578, 0.00593934953, 0.000572663092, 0.0253334, -0.00881890766, 0.0095649939, 0.00519326329, 0.00667705294, 0.0209239479, 0.0108224424, 0.0250483789, 0.00706686173, 0.000397406198, 0.00338044134, 0.00257986574, -0.00561660435, 0.00343912235, -0.0084919706, 0.0101350369, 0.00176461972, -0.00668962719, -0.0069495, -0.0110906977, -0.00430466607, -0.00718422374, -0.0102607822, 0.0250148475, -0.0209071804, -0.0142510859, -0.0126164025, 0.0111493785, 0.0032232604, 0.014863044, -0.00185054541, 0.0115098478, -0.0129517224, 0.00821114052, -0.00257986574, 0.0328277946, -0.0211754367, 0.00254633371, 0.0031079941, -0.0249813143, 0.0206556916, 0.00704171276, 0.00315410062, -0.0136307441, -0.0104955053, -0.0264567211, 0.00244573783, 0.00549924234, -0.0116691245, 0.016472578, -0.00808958709, -0.00619083922, 0.0125409551, -0.00702075567, 0.0112583581, -0.0151145337, 0.00650520157, 0.00493339077, -0.0220640339, -0.00927158911, -0.0043843044, 0.0051220078, 0.00357534597, 0.0200521164, -0.016564792, -0.0257860832, -7.43335622e-05, -0.0125828702, -0.00596030708, 0.00959014241, 0.00497949682, -0.0121721039, -0.0109062726, 0.0109984847, -0.00116733159, 0.0222149286, -0.00857580081, -0.00611539232, 0.0183922835, -0.0134714674, -0.0130942333, 0.0101350369, -0.0148043633, 0.0135636805, 0.00577168958, 0.000326674693, -0.0198341589, 0.00681956392, -0.00432143221, 0.023388546, -0.0260543376, -0.0101853348, 0.00274333404, 7.72807e-05, -0.0184258148, -0.0173360258, -0.0169839412, -0.00845843833, -0.00616149884, -0.001745758, -0.0216784161, 0.0122978492, 0.0112332087, 0.0292901732, 0.00345588825, -0.00785905495, 0.0143935969, 0.0137145743, -0.00229065237, 0.0126667, -0.0183252189, 0.0202700738, 0.00357325026, -0.000850349723, -0.00302416412, 0.0146115543, -0.010411676, 0.00518068904, 0.00117152312, -0.00866801292, -0.00444717705, 0.0172689632, 0.0284686405, 0.0149971722, 0.00945601426, -0.00663094642, 0.00905363075, -0.0280327238, 0.0104871225, -0.0202700738, -0.000297596212, 0.0131529141, 0.00270561059, 0.0057842643, 0.00298434496, -0.00406365516, 0.00376815465, 0.00248136558, -0.027647106, -0.0210413095, 0.0102775479, -0.0115601458, 0.00645909505, -0.0146534694, 0.0150474701, 0.00787162874, -0.0175875165, -0.0117194224, 0.00478249695, 0.00473219901, -0.00814407598, -0.00440945383, -0.0261214022, -0.00916260947, 0.0118032526, 0.0245789308, 0.026272295, -0.00421035755, -0.000405265251, -0.00810635276, 0.0103781438, 0.00778779946, -0.00280830218, 0.00931350328, -0.00358372903, 0.00820275769, 0.00768720312, 0.0248304214, -0.024897486, -0.00455196435, -0.00813569315, 0.00734769227, -0.00267417426, 0.0248639528, -0.00366127165, -0.00141882128, 0.0194485411, 0.000505861128, -0.000930512091, -0.0340852439, 0.00409299554, 0.00880214106, -0.00539026363, -0.00435077259, -0.0113924854, -0.0208904147, 0.0232376531, -0.0201024134, -0.00384150585, 0.00862609874, -0.0203706697, 0.0121134231, 0.0206556916, -0.00310380268, 0.00703752134, 0.00184530602, 0.0128678922, -0.0019385668, 0.00371156959, -0.0198676903, 0.00557049783, 0.00858418364, -0.00811054464, -0.00911231153, 0.00667705294, -0.00774588436, -0.0217287149, 0.0083536515, -0.000859780586, -0.00731416, 0.011694273, -0.0041474849, -0.012876275, 0.0140750427, 0.00657226564, -0.011409252, 0.00865124725, -0.00867639668, 0.0198676903, -0.0169336423, -0.00299063232, 0.012163721, -0.0165480264, -0.00555792358, -0.00839137472, 0.000831488, -0.00575911533, -0.0117613375, 0.0143013839, 0.0284686405, -0.020638926, 0.0136223612, 0.00315200491, 0.0236400366, -0.0088692056, 0.00674411654, 0.00571300881, -0.00602317927, 0.012784062, -0.00897818431, -0.0150474701, -0.0167408343, -0.000730368134, 0.0328445621, 0.0120966565, -0.0040426976, -0.00367803755, 0.0225167163, 0.00672315946, -0.0197838601, -0.00624952046, 0.00305560045, -0.0148546612, -0.0106547819, -1.51286804e-05, -0.00428999588, 0.00455615576, 0.00569624268, 0.0123900613, 0.0186605398, 0.00500045437, 0.0124738915, -0.00252747186, -0.017704878, -0.00666447822, -0.0234556105, 0.00145025761, 0.00173004, -0.00887758844, -0.0108643575, -0.0183419865, 0.0153995557, 0.00958176, -0.00645909505, -0.00252537616, -0.0120547423, 0.00529385917, -0.00944763143, 0.00279572769, -0.0263058282, -0.00961529184, -0.000949897745, -0.0084919706, -0.00877699256, -0.00855065137, 0.00547409337, -0.015097768, 0.0128427437, -0.0132115949, 0.0238244627, 0.00526032737, -0.0404060185, 0.00256729126, -0.0140163619, -0.020689223, 0.0152654275, -0.00173318351, -0.0118703162, 0.0196329672, 0.0325427726, -0.0108475909, 0.00132660847, -0.00295500457, -0.00794288423, -0.00951469596, 0.010319463, 0.0135469148, 0.00866801292, 0.0032400263, -0.00565851945, -0.00838299189, 0.00840394944, -0.0200185832, -0.0181072615, 0.016472578, -0.0118619334, -0.000189796177, 0.0146450866, -0.0412778519, 0.00627047755, 0.0187276024, -0.00100805471, 0.0262387637, 0.00829077885, -0.00824048091, 0.00699979812, -0.00246459944, 0.00394838909, 0.00205068942, 0.00103163195, -0.00634592446, -0.0067525, -0.0105374204, -0.00454777293, -0.0241262503, 0.00332595198, 0.000744514458, -0.00548666809, 0.00619503064, 0.0126164025, 6.784984e-05, 0.00619083922, 0.00352923945, -0.00122601248, -0.0280159581, -0.00676088268, 0.00107616652, 0.00848358776, 0.012398445, 0.00820275769, 0.00202554045, 0.00456034765, -0.010696697, 0.0109901018, -0.0169336423, -0.00689501083, -0.00108350161, 0.0146199372, 0.0117278052, 0.0441280678, 0.00317505817, 0.0137564894, -0.00228226953, -0.0130607011, -0.00632915879, -0.0134211695, 0.0106380163, 0.0159947481, -0.00405317638, 0.00531481672, 0.00616149884, 0.0240759514, -0.0110320169, 0.00850873627, 0.00011736188, 0.0162127055, 0.00339511153, 0.0142762344, 0.0229023322, -0.0121385716, -0.00870154519, 0.0118870819, 0.00770816067, -0.00767882029, -0.00863448158, -0.0155001516, -0.000978714321, 0.0169671755, -0.0178054739, -0.00567109371, -0.00374091, -0.0136894258, 0.00678603165, -0.01723543, 0.00462741125, 0.00185054541, 0.00385617604, 0.00350199477, 0.00334900524, -0.0232208874, -0.0101434197, 0.0116775073, 0.0026175892, 0.0221813954, -0.00363821839, 0.0100009087, 0.00759918196, -0.0259537417, -0.0088272905, -0.000117885822, 0.0115769114, -0.0111577623, -0.024897486, -0.0138067873, -0.0247298256, 0.0219802037, 0.0159779824, 0.00307027064, -0.0236400366, 0.0110152513, -0.00516392291, -0.00718841515, -0.00273075956, -0.00453100679, 0.0188449658, 0.0060692858, 0.00707943644, -0.00624532858, 0.000274281017, -0.0265237857, 0.0118786991, 0.0218796078, 0.00495015644, 0.000549609889, 0.0329786874, 0.000877594459, -0.0138570853, -0.00231370563, -0.0036235482, -0.0100679733, 0.00990031287, 0.00773750106, 0.0155085344, 0.00990031287, -0.0271105953, 0.0207227562, 0.0121804867, -0.000565851922, 0.0102523984, 0.00206850329, -0.00158124184, -0.0167995151, -0.00777941616, 0.00745247956, -0.0104452074, 0.0185264107, 0.0100428239, -0.00157914602, -0.00570043409, -0.00459807087, -0.015667811, -0.00692435121, 0.00990031287, -0.0051303911, -0.0107972929, -0.0069872234, -0.0128846578, -0.0264064241, -0.0155755989, 0.00301368558, 0.000462636352, 0.0198844559, 0.010889506, 0.00117047515, -0.0422838107, 0.00602737116, -0.049325522, 0.000311742508, 0.0254507624, 0.021158671, -0.0121721039, -0.00122601248, 5.29176359e-05, -0.00623694574, -0.00389809115, 0.00118514546, 0.0022487375, -0.00388342096, -0.027026765, 0.0161707904, -0.0182078574, -0.00941409916, 0.00481183734, -0.00490405, -0.00302626, -0.0186437741, 0.0107637616, -0.0265237857, 0.00227598217, 0.020404201, 0.0129181901, -0.017042622, -0.0157264918, 0.00143349159, -0.0040992829, -0.00342864357, -0.011216443, 0.00936380122, -0.00583037082, -0.0107050799, 0.00116523588, -0.00515134819, -0.0147792138, 0.00440526195, 0.00244783354, 0.0114846984, -0.00507590128, -0.00407203799, -0.000295762438, -0.00205592881, 0.00518068904, 0.003550197, 0.00500045437, 0.0185264107, -0.0154247042, -0.006153116, -0.00955661, 0.0130858496, -0.00507590128, -0.0064465208, 0.0280494895, -0.0126750832, 0.0159193017, -0.0311176647, 0.0104368245, -0.0104955053, -0.0162462387, -0.00818599109, -0.00895303488, 0.0185934752, -0.000874450838, 0.0137145743, 0.00309961126, 0.00659322273, 0.00820694864, 0.0154666193, -0.00887758844, 0.0162713863, -0.00712135155, 0.0282842144, -0.00666866964, 0.00591420056, -0.0010106744, 0.00163468334, 0.00810635276, 0.00260501471, 0.0294746, -0.0129936375, 0.0322745182, -0.00270141917, -0.0110571664, 0.0163971316, 0.00732673472, 0.0117529547, 0.00244992925, 0.00663094642, 0.00655549951, -0.00436334731, 0.0126164025, 0.0228520352, -0.00194275833, 0.0164893437, -0.0169839412, -0.00722194742, -0.00974103622, 0.000854541198, -0.0288877897, -0.0047950712, 0.00167345465, 0.0111074643, 0.0320230275, -0.0275465101, -0.00676088268, 0.0258866791, -0.000630296185, 0.0167827494, 0.0182581563, -0.00902009942, 0.00845424738, 0.00426065549, 0.00796803366, 0.0242268462, 0.000640251, 0.00726805395, -0.00587228546, -0.0316877067, 0.00045110975, -0.050700333, -0.00508428458, 0.00447232602, 0.00441364525, -0.0215107556, -0.00707524503, 0.017704878, -0.0113924854, -0.0120463585, 0.0113254217, 0.0205047969, 0.0020779341, -0.0115266135, -0.0115769114, 0.00799318217, -0.0164055154, 0.00933027, 0.0200353507, 0.000993384514, 0.00217119488, -0.00293614273, 0.0305979196, 0.000429104373, -0.00105992449, -0.0126834661, -0.0244280379, 0.0239250585, -0.00546990195, -0.0135888299, -0.000849825796, -0.00546151912, 0.0217119493, 0.0100009087, -0.0168246645, 0.0111158472, -0.00395048503, 0.0149049591, 0.0120882737, -0.00288584479, 0.000539131172, -0.0239753556, 0.00482860301, -0.0111158472, 0.00932188705, -0.002651121, -0.00174890168, -2.00160298e-06, -0.0261381678, -0.0232041217, 0.00798479933, 0.0152235124, -0.00691596791, 0.00749020325, -0.00414119801, 0.00900333282, -0.0108475909, 1.79120962e-05, 0.0081147356, 0.0283848103, -0.00928835478, 0.0196162, 0.00598964747, 0.00973265339, 0.0135552976, -0.0123313805, 0.028166851, 0.00910392869, -0.00322745182, 0.00693273405, 0.000487261394, 0.00705009606, 0.0135133825, -0.00681956392, -0.0135804461, -0.000715173956, -0.0116104437, 0.020119179, 0.0139241489, 0.00164830568, -0.0122391675, 0.0210245438, -0.0203371383, -0.00488309283, -0.0212592669, -0.0172689632, -0.0069872234, 0.0128511265, -0.00922129117, -0.00188407733, 0.00679441495, 0.00749858608, -0.00953984447, 0.0182916876, 0.00271608937, -0.00739379879, -0.028166851, 0.00235771644, 0.0029130897, 0.0246459953, 0.0209742449, -0.00864286441, 0.0204209685, 0.0215442888, 0.0245956983, 0.00635849917, 0.00566271087, 0.0193982422, 0.0112499744, 0.00439687911, 0.0176210478, 0.00277267443, 0.00509685883, -0.00939733349, 0.0141840223, -0.0108140595, 0.00663932925, 0.0282003842, -0.00532319956, 0.023388546, 0.0155672152, -0.00794288423, -0.0168162808, -0.00807701237, -0.00957337674, 0.00841233227, 0.0119206142, 0.000490928942, -0.0179563686, -0.0245118681, -0.00130774674, 0.0127086155, 0.00995061081, 0.0113338046, 0.0180234313, 0.0247801226, 0.00547409337, 0.00640041428, -0.00366546307, 0.0357786082, -0.02701, -0.00265321694, 0.0157264918, 0.0187779013, -0.00641718, -0.000946754124, 0.0241597816, -0.000360992592, -0.0167911313, 0.00824048091, 0.00416425103, -0.00771654397, 0.0095649939, -0.0230699927, 0.00116418791, 0.00406365516, -0.0078213308, 0.00166716741, -0.00485794386, -0.0199012216, -0.000144737583, -0.00509266742, -0.0152989598, 0.00979133416, 0.000713078247, -0.0112415915, -0.0293069389, 0.017369559, 0.00619503064, 0.0156426616, -0.00611539232, 0.00278734462, 0.000567423762, -0.0202533081, -0.0118200183, -0.0102607822, 0.0117613375, -0.00258824858, -0.0144019797, 0.0113757197, -0.0165312588, -0.0114763156, 0.00860094931, -0.00977456849, -0.00725547923, -0.0118870819, -0.0160115138, -0.0138738509, 0.00815246, -0.0199515205, -0.019264115, -0.0107637616, -0.019599434, 0.00322116446, -0.00210832246, 0.00831592735, 0.00056113652, 0.013396021, 0.0149384914, -0.0167911313, 0.00060776691, 0.00926320534, -0.00192075293, 0.00254004658, 0.000460278621, 0.0085338857, 0.0291895773, -0.0104032923, -0.0125577217, 0.0111493785, -0.0191299878, 0.00795965083, -0.00387503789, -0.0261381678, 0.00133184774, -0.00486632669, -0.00629562652, 0.00231370563, -0.00511362497, -0.00807701237, 0.00132870418, 0.0188449658, 0.0213095639, -0.0122643169, 0.00212299265, -0.013396021, -0.00927158911, 0.00497949682, 0.035409756, 0.00941409916, -0.0139241489, -0.00239334418, -0.00383941014, 0.00734350085, -0.0101937177, -0.0133205736, -0.0256854873, 0.0189120285, 0.00197105086, -0.000583141868, 0.0039672507, -0.0125493389, -0.0251154434, -0.00501302909, 0.00859256648, 0.0167827494, -0.0067650741, -0.0136558935, -0.0141001921, -0.0179060698, 0.000343178719, -0.000647062145, -0.00212404062, 0.0826898292, 0.00526032737, 0.0157767907, -0.0302123018, 0.0159612168, -0.033800222, -0.0102440156, 0.0601563491, 0.019264115, 0.00683213817, 0.00569205126, 0.0121301888, 0.0163049195, -0.00263016368, -0.020119179, -0.00788420346, -0.0294410661, 0.00981648359, 0.0129098073, -0.00190713059, -0.00466094352, -0.00476992223, 0.0114763156, -0.0148043633, 0.0146786179, -0.00384150585, -0.0150139378, -0.021963438, -0.00929673761, 0.00964882318, 0.00946439803, -0.00966559, -0.00305350474, -0.00891950354, -0.00263645081, 0.00810216181, 0.00917937607, 0.013505, 0.0209407136, -0.00618664781, 0.006626755, 0.00820694864, 0.0114930812, 0.0154833859, 0.0136475107, -0.0119876778, 0.00488309283, -0.020638926, 0.00699979812, -0.000794288469, 0.00997576, -0.0122224018, 0.00422083633, -0.0219802037, 0.011786486, 0.0118451668, -0.00840814, -0.0034034946, 0.0359462686, 0.0022173014, 0.0144606605, 0.00616149884, 0.00386665482, 0.00366965448, 0.0108727403, -0.0118703162, -0.0141504901, 0.00355858, 0.0161204934, -0.00598964747, 0.00596869, -0.00445556, 0.0164390467, -0.0139409155, 0.0240927171, 0.00845843833, -0.0196497329, 0.0166821536, -0.00537349749, -0.00488309283, 0.00117571454, 0.00385198463, -0.0122307846, 0.000183377939, 0.027362084, 0.0122978492, 0.00440107053, -0.00703333, -0.0121050403, 0.00228226953, 0.0010106744, 0.0207562875, -0.01723543, 0.0199347548, 0.0200521164, 0.0154666193, -0.00410347432, 0.00651358441, 0.0166737698, 0.010696697, 0.00141148618, 0.0175204519, 0.0204880312, -0.00511781638, -0.00859256648, 0.0342361368, -0.0032232604, -0.00518907188, 0.00916260947, -0.00228646095, 0.0211251397, -0.00989193, 0.00174471014, 0.0216616504, -0.00177614635, -0.00262178062, 0.0098081, -0.0144271282, 0.0109314211, -0.00512619922, 0.00991707947, 0.0135301482, -0.0154247042, -0.0114176348, -0.000212063489, 0.00544475298, -0.00647166977, 0.000112646449, 0.0105961012, -0.0214604586, -0.00086240028, 0.0191802848, 0.0249980818, -0.0105625698, 0.0239921212, 0.0164893437, -0.0245956983, -0.0083368849, -0.0179899, 0.0218460765, 0.0338169895, -0.0127002327, 0.00627047755, 0.011643975, -0.00816084258, 0.001479598, 0.00311847287, 0.000921081228, -0.0135636805, -0.01874437, 3.74614938e-05, 0.0126080196, 0.0106883142, -0.0100679733, 0.0169587918, 0.00650101, 0.000904839137, -0.0112583581, 0.0115852943, -0.0141924052, 0.00412652781, 0.00654292479, 0.000144082675, -0.0173024945, -0.0104200589, 0.000961948303, -0.00342235644, -0.00132765633, 0.000314886129, 0.00934703555, 0.0278482977, 0.0059980303, 0.00540702976, 0.00807701237, -0.0168414302, -0.00299272803, 0.00309541961, 0.00939733349, -0.0173192602, 0.00390228257, -0.00315200491, -0.00468609249, 0.00507171, 0.0502308868, -0.00525194407, -0.00497949682, -0.0210245438, 0.00323793059, 0.0174030904, 0.0127924448, 0.00859256648, 0.0276135746, -0.00792611856, -0.0110906977, 0.00462741125, -0.000250441866, 0.0156845767, 0.00169126852, -0.0137564894, -0.015902536, -4.68596118e-05, -0.0104368245, -0.0126499347, 0.00602737116, -0.00536511466, 0.0139492983, -0.00406784657, 0.0174366217, 0.000817341672, -0.00822371524, -0.0154247042]
22 May, 2024
Design Issues in Network Layer 22 May, 2024 The Network layer is majorly focused on getting packets from the source to the destination, routing error handling, and congestion control. Before learning about design issues in the network layer, let’s learn about its various functions. Addressing: Maintains the address at the frame header of both source and destination and performs addressing to detect various devices in the network. Packeting: This is performed by Internet Protocol. The network layer converts the packets from its upper layer. Routing: It is the most important functionality. The network layer chooses the most relevant and best path for the data transmission from source to destination. Inter-networking: It works to deliver a logical connection across multiple devices. Network Layer Design Issues The network layer comes with some design issues that are described as follows: 1. Store and Forward packet switching The host sends the packet to the nearest router. This packet is stored there until it has fully arrived once the link is fully processed by verifying the checksum then it is forwarded to the next router till it reaches the destination. This mechanism is called “Store and Forward packet switching.” 2. Services provided to the Transport Layer Through the network/transport layer interface, the network layer transfers its patterns services to the transport layer. These services are described below. But before providing these services to the transfer layer, the following goals must be kept in mind:- Offering services must not depend on router technology. The transport layer needs to be protected from the type, number, and topology of the available router. The network addresses for the transport layer should use uniform numbering patterns, also at LAN and WAN connections. Based on the connections there are 2 types of services provided : Connectionless – The routing and insertion of packets into the subnet are done individually. No added setup is required. Connection-Oriented – Subnet must offer reliable service and all the packets must be transmitted over a single route. 3. Implementation of Connectionless Service Packets are termed as “datagrams” and corresponding subnets as “datagram subnets”. When the message size that has to be transmitted is 4 times the size of the packet, then the network layer divides into 4 packets and transmits each packet to the router via. a few protocols. Each data packet has a destination address and is routed independently irrespective of the packets. 4. Implementation of Connection-Oriented service: To use a connection-oriented service, first, we establish a connection, use it, and then release it. In connection-oriented services, the data packets are delivered to the receiver in the same order in which they have been sent by the sender. It can be done in either two ways : Circuit Switched Connection – A dedicated physical path or a circuit is established between the communicating nodes and then the data stream is transferred. Virtual Circuit Switched Connection – The data stream is transferred over a packet switched network, in such a way that it seems to the user that there is a dedicated path from the sender to the receiver. A virtual path is established here. While, other connections may also be using the same path. Connection-less vs Connection-Oriented Both Connection-less and Connection-Oriented are used for the connection establishment between two or more devices. These types of services are provided by the Network Layer. Connection-oriented service: In connection-Oriented service we have to establish a connection between sender and receiver before communication. Handshske method is used to establish a connection between sender and receiver. Connection-Oriented service include both connection establishment as well as connection termination phase. Real life example of this service is telephone service, for conversation we have to first establish a connection. Connection-Oriented Service Connection-less service: In Connection-Less service no need of connection establishment and connection termination. This Service does not give a guarantee of reliability. In this service, Packets may follow the different path to reach their destination. Real life examples of this service is postal system, Online gaming, real-time video and audio streaming etc. Frequently Asked Question on Design Issues in Network Layer – FAQs What is a design issue? A design issue typically represents a significant problem that arises from the operational requirements and capabilities of a robotic system. It is a critical element of the design process, often leading to specific design solutions. What are the design issues in the transport layer? Design issues of a transport layer are : Receive data from the Session layer, divide it into segments, and forward it to the Network layer. Guarantee the efficient and accurate delivery of data. Shield upper layers from technological changes. Manage error control and flow control. What are the four key design issues of a computer network layer? Four key design issues of a computer network layer : Addressing. Packeting. Routing. Inter-Networking. How many types of network design are there? Computer networks are often categorized by their purpose and size. To better understand network classification, explore various types of networks, such as LAN, WAN, WLAN, MAN, and SAN. Additionally, learn about the specific purposes of PAN, EPN, and VPN networks. 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!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer
https://www.geeksforgeeks.org/design-issues-in-network-layer?ref=asr10
PHP
Design Issues in Network Layer
jQWidgets jqxSortable disabled Property, Node.js Stream transform.destroy() Method, jQWidgets jqxSwitchButton enable() Method, Convert string into date using JavaScript, jQWidgets jqxSplitter height Property, How to Declare Optional Properties in TypeScript ?, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxTree checkAll() Method, jQWidgets jqxScrollBar rtl Property, jQWidgets jqxScrollBar step Property, jQWidgets jqxTabs position Property, jQWidgets jqxTooltip height Property, How to Make a Single Property Optional in TypeScript ?, jQWidgets jqxTreeMap width Property, Optional Property Class in TypeScript, jQWidgets jqxTree collapseItem() Method, Difference between Flow and TypeScript, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTabs keyboardNavigation Property, jQWidgets jqxTree destroy() Method, jQWidgets jqxTree collapseAll() Method, jQWidgets jqxSortable opacity Property, jQWidgets jqxScrollView buttonsOffset Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, jQWidgets jqxTabs disabled Property, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Node.js date-and-time Date.transform() Method, jQWidgets jqxListBox enableHover Property, jQWidgets jqxSlider height Property, TypeScript Optional Parameters, jQWidgets jqxSwitchButton onLabel Property, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, jQWidgets jqxToolBar theme Property, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxSplitter orientation Property, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxSlider buttonsPosition Property, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, jQWidgets jqxSwitchButton orientation Property, jQWidgets jqxToolBar tools Property, jQWidgets jqxSlider rtl Property, How to use Optional Chaining with Arrays and Functions in TypeScript ?, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTooltip opacity Property, jQWidgets jqxTree width Property, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, jQWidgets jqxScrollView showButtons Property, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, jQWidgets jqxTree clear() Method, Introduction to TypeScript, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView disabled Property, jQWidgets jqxScrollView animationDuration Property, jQWidgets jqxToolBar height Property, PHP, How to Sort an Array Having Optional Properties in TypeScript ?, jQWidgets jqxSplitter destroy() Method, jQWidgets jqxTreeMap destroy Method
GeeksforGeeks
[-0.0207908433, 0.0203150809, -0.0119733689, 0.0170640331, 0.0128138838, 0.0204419512, 0.00102982868, 0.016508976, -0.0195062831, 0.0126235783, 0.0302426685, -0.022091262, 0.0322408713, -0.0133372229, -0.0162393767, 0.00953904819, 0.0037684394, 0.00242242659, 0.00718005653, -0.000145950209, 0.0464027524, -0.00116661051, -0.0310197473, -0.00474177115, -0.0436433256, 0.0206163973, 0.0202199277, 0.0108791143, -0.0418037102, 0.0332716927, 0.030750148, 0.0221864153, 0.02662687, -0.0157239679, -0.0204736684, -0.0106888087, -0.00492018228, 0.0148120886, -0.0443093926, 0.0447217226, 0.00621663639, 0.0092932377, -0.00493604131, -0.00757652568, -0.00965006, 0.0173653495, -0.01825344, 0.0191415306, 0.0255008973, -0.0259766597, -0.0177618191, -0.0450706147, 0.0156922489, 0.0316858143, -0.000758247275, 0.026944045, 0.03214572, 0.0266903043, 0.00742983213, -0.0278955717, 0.0428186692, -0.0154226506, -0.0179679822, -0.0210287254, -0.00173554383, 0.0353016146, -0.065782167, 0.0207115486, -0.00553867407, -0.0430089757, -0.0503040068, 0.00284664868, -0.02918013, -0.0152719924, -0.00444045477, -0.00211714534, 0.0306867138, 0.0551250726, 0.027118491, 0.0145107713, -0.0186499096, 0.0216630753, 0.0236771386, -0.0108791143, -0.0036494988, 0.00133213645, 0.000266873307, -0.0563303381, 0.0440556556, 0.0131389881, -0.0148596643, 0.0422160365, 0.00706508057, -0.0552836619, -0.00450785458, -0.00390522135, 0.0372998193, -0.000478240923, -0.00515013468, 0.0264682826, 0.0386636741, 0.0193952713, -0.00907121506, 0.0303219613, 0.0427235179, 0.00365544576, -0.0014917152, 0.033462, 0.0270074792, 0.0537612177, 0.0264841411, -0.0161600839, 0.00550299184, 0.0356505066, -0.0476080179, -0.0314162187, 0.0063157538, -0.0584871322, -0.0164614, 0.0439922176, 0.0184596051, 0.00938046072, -0.0223925784, 0.0216155, -0.0700323135, 0.056298621, -0.0339377597, -0.017381208, -0.00677565811, 0.0177459605, -0.00707301, 0.0378073, 0.00644658878, -0.00301911263, 0.00329664117, -0.00261867885, 0.0215203464, 0.0112200771, 0.00264841411, -0.0203626566, 0.0341915, -0.00658931769, -0.0168737285, -0.0246921, 0.0102764806, 0.0174129251, 0.0152957803, 0.0457684025, -0.028862955, 0.0313527808, -0.0440239348, -0.000881152751, -0.0269757621, 0.0129804006, 0.0313527808, -0.0247396771, -0.00299928919, 0.0210604426, 0.0116244759, -0.0317492522, 0.00953904819, -0.0422794707, -0.015549521, -0.0132579291, 0.00903156772, 0.0437701978, 0.0464661866, 0.00112894597, -0.0490987413, 0.0317809694, 0.00520167546, 0.0531903021, 0.0234709755, 0.0462758802, -0.00831792317, -0.0245335121, 0.00446424307, 0.049035307, -0.0105857272, 0.0318761207, -0.0107998205, -0.0202357862, -0.0257863551, 0.0310038887, 0.0199979041, 0.027435666, 0.0461172946, -0.00577655574, -0.00253542024, -0.0147565827, 0.00471005356, 0.0323201679, 0.0320505686, 0.00963420048, -0.00646244735, -0.0404398553, -0.014502842, 0.00860338099, -0.00251956168, -0.00203586929, -0.0209177136, -0.0148755228, -0.00482106488, 0.0235344097, 0.00326888822, -0.0462124459, -0.00105460803, 0.000517887878, 0.0358090959, -0.0117354877, -0.0530951507, 0.00435719639, 0.0303219613, -0.00645848271, 0.0173970666, -0.0189353675, -0.0276101138, -0.00150063576, -0.00858752243, -0.00774700753, -0.00695803389, 0.0220595449, 0.0234709755, 0.00585981412, -0.0523973666, -0.0287360847, 0.0135671748, -0.0415816866, -0.0451023318, -0.0142728901, -0.0144790541, 0.0394566134, -0.0242480543, -0.0294021536, -0.0318761207, 0.00775890145, -0.0105540091, 0.0178252533, -0.0373315364, 0.00632368308, -0.0106015857, 0.0173336323, -0.049035307, 0.0039527975, -0.0331448242, 0.00525718136, 0.0282127466, 0.051096946, -0.00654174108, 0.00787784252, -0.0085478751, 0.0297986232, 0.041676838, 0.0199503284, -0.0106650209, -0.0229476355, -0.00773511361, 0.00741397357, 0.00469815964, 0.00657742331, 0.0178252533, -0.00114777824, -0.0281810295, 0.00783819519, -0.0338743255, -0.0349210054, 0.0128376717, 0.0047933124, 0.0284823459, -0.0329228, 0.00433737272, -0.0693979636, 0.0113865947, 0.0106808795, -0.0103637045, -0.0223608613, 0.00220635091, 0.0371095128, 0.0485595427, 0.0173653495, -0.0240260325, -0.0476080179, -0.000379123638, -0.0204578098, -0.0454512239, -0.0101020345, -0.0154622979, 0.0102447635, -0.0604853369, -0.0216313582, -0.0182217229, 0.00864302833, -0.017587373, -0.0175715145, 0.0358408131, 0.0116641233, -0.00493604131, 0.0061413073, 0.0175715145, 0.00192783133, -0.000587765535, 0.00294774817, 0.0200613402, 0.00348496391, -0.0400909632, -0.0269123279, -0.031273488, 0.0323994607, 0.0166992806, -0.00383583922, 0.00945975445, -0.029211849, -0.0246128067, -0.0607390776, 0.0183961689, 0.0181424301, 0.0308928769, -0.00124590436, -0.0163821056, -0.0101099638, 0.043104127, 0.0150420405, -0.0111962892, 0.0652112514, -0.00208542775, -0.0426283665, 0.0298303403, 0.0405350067, -0.0433895849, -0.0328276455, -0.0487181321, 0.017555654, -0.00762410229, -0.0173494909, 0.0148993116, -0.0302268099, -0.0277845599, 0.0386636741, 0.0274039488, 0.0374901257, -0.00292792474, 0.0111804307, -0.00232529175, 0.00444441941, -0.0371729508, -0.00458318368, -0.0290691201, 0.020838419, 0.0313052051, 0.0107918913, 0.00157497381, 0.0181265697, 0.00972142443, 0.0306232795, 0.0286726505, -0.0174763612, 0.00987208262, -0.0135592455, 0.0338426083, -0.0186181925, 0.0515727103, -0.0254374612, -0.0327007771, 0.0414548181, -0.0702226162, 0.00495982915, 0.00819105282, -0.0180948526, -0.000159950534, 0.0164296832, -0.0293545779, 0.0170640331, -0.00618888391, -0.00489242934, -0.00358011667, 0.00550695695, 0.0154067921, -0.00456336, -0.0269916207, 0.00830206461, 0.00105163443, 0.00786991324, 0.0081593357, 0.00400433876, -0.0550933555, 0.0121557452, 0.0132420706, -0.0112280073, -0.0329862349, 0.0294814482, -0.0407570302, -0.0014243155, -0.0101575404, 0.0256436262, -0.000948552508, -0.0157239679, -0.00799281802, -0.0271502081, 0.0312893465, -0.0263572708, -0.0233758222, 0.00566158, -0.00145305949, 0.0440873727, -0.0165565517, 0.00212111, 0.000318909879, -0.0302902441, -0.0134482346, -0.0173336323, 0.0254216027, -0.0269123279, 0.0331448242, -0.0112676537, 0.0124491323, 0.0297034699, -0.0221388377, 0.0571867116, -0.00777079584, 0.00392702734, 0.0263096932, 0.0126949428, 0.0269757621, -0.00263850228, 0.0211714543, 0.030750148, 0.00234907982, -0.00834964, 0.0181107111, -0.0113786655, 0.0202357862, -0.0264048465, -0.00862716883, 0.00842893496, -0.0125125675, -0.0596923977, 0.00548713328, 0.0196807291, -0.0392663069, -0.004127244, 0.0128376717, 0.00413913792, 0.0243749246, -0.0131707061, -0.0669874325, 0.0142253134, -0.0580748022, -0.0423429087, 0.00131429534, -0.0300047863, -0.0192049667, 0.0277052652, -0.0181741472, -0.0209652893, 0.0374584086, -0.0260083769, 0.00704525737, -0.0532854572, 0.0379658863, 0.022614602, 0.0177301019, 0.0100941053, -0.00180889061, -0.025374027, 0.0257704966, 0.0150737576, -0.0290691201, -0.0357139446, 0.000877683633, 0.0122429682, 0.0307660084, -0.0253898855, 0.0250885691, 0.0269123279, 0.0235344097, -0.0254850388, 0.00254929671, -0.0236295629, -0.0208225604, -0.046561338, 0.0161838718, 0.0716816261, -0.0137099037, -0.0320981443, -0.0150658283, 4.1567313e-05, 0.0134799518, 0.0426600836, 0.0121953916, -0.0500502698, 0.0374901257, 0.0170481745, -0.0116482638, -0.0285457801, -0.0363800116, -0.0124887787, 0.0037089691, -0.01877678, -0.019649012, 0.0133372229, -0.02662687, 0.0166675635, -0.0126790842, 0.068573311, 0.0070254337, -0.0251995809, 0.0204895269, 0.0496379398, 0.00445234869, -0.00830999389, -0.00649812957, 0.00935667194, -0.00125185144, 0.0372681022, 0.00368914567, -0.00868267473, -0.0198551752, 0.0110614896, 0.00315589458, -0.00827034656, 0.00315589458, 0.0115213944, 0.0101416809, 0.00540387491, -0.0358725302, 0.00347307, 0.0159301311, -0.00621267175, -0.0163186714, -0.0309721716, -0.033017952, -0.000634350698, 0.00938046072, -0.0104588568, -0.0137336925, 0.00203190441, 0.0030230775, 0.0240260325, -0.00754084345, 0.00136583624, -0.00566554442, 0.0487815663, -0.0488132834, -0.00600650813, -0.00727124466, 0.0442142412, -0.0128138838, -0.000609571347, 0.0227097534, -0.0204578098, -0.000977296499, -0.00267814915, 0.00606994284, 0.00706111593, -0.0346672647, 0.00701750442, 0.0272770785, 0.0169054456, -0.00277330191, -0.00336404098, -0.0230745059, 0.0481472164, 0.0105857272, 0.0124332728, 0.00216670404, -0.00685495185, 0.00875403918, 0.0104826447, -0.0192525424, 0.0139239971, -0.0134482346, -0.00636333, 0.00247595, -0.0013281717, 0.054649312, 0.0268647503, 0.0272453614, -0.0315272287, 0.00451181922, 0.0101813283, 0.0164614, -0.00676772883, 0.030258527, -0.00274158432, 0.00454750145, 0.00347901694, 0.00885712169, -0.00334025268, 0.0274832435, -0.00582016725, -0.0132182818, 0.00957869552, -0.01930012, -0.0170005988, 0.0381561927, 0.028688509, -0.00769546675, -0.012147815, 0.00341161713, -0.0244859364, 0.00309642428, 0.043833632, 0.0148438057, -0.0284664854, 0.0150499698, -0.0109108314, 0.0176032316, 0.00516599324, -0.0284030512, 0.00161957659, -0.00466644205, -0.00792938378, 0.0398055054, 0.0116720526, -0.00597082591, 0.00283673685, -9.74446884e-05, -0.010958408, -0.0121240271, 0.00362769281, 0.0239467379, -0.00209137495, 0.0121240271, 0.0265158582, -0.00735450303, 0.00755670248, 0.00548316864, -0.0386002399, -0.0304805506, -0.0232013762, -0.0297351871, -0.0170640331, -0.0142649608, -0.00865095761, -0.0224242955, -0.0294021536, -0.0032669059, -0.0206163973, -0.00469023036, -0.0107363854, -0.0228683408, 0.0132579291, -0.00521753449, 0.113421902, -0.00972935371, 0.0505894646, -0.0119337216, 0.0228207652, 0.0124808494, 0.00917429663, 0.00214489829, 0.0282920394, -0.0166199878, 0.0314637944, -0.0091346493, -0.0365068801, -0.000760229654, -0.0223925784, -0.00433340808, 0.012179533, -0.0170481745, -0.0145583479, 0.012877319, 0.0224560145, -0.00725142099, -0.00192783133, 0.00617698953, -0.00154722098, -0.00917429663, 0.0450388975, -0.02918013, -0.027641831, 0.0204895269, 0.00916636735, -0.0345721133, -0.0312100537, -0.0147486534, 0.0251520034, 0.0120764505, -0.0373315364, -0.0303378217, -0.0136226807, 0.00853201654, 0.00249577337, -0.02673788, 0.0048845, -0.0367289037, 0.00793731306, -0.0116720526, 0.00117255759, 0.0135433869, 0.0114103826, -0.0207591262, 0.000902462925, 0.0108236084, -0.00261273189, 0.00829413533, 0.00952319, 0.0115055349, -0.0230903644, 0.0291959904, -0.000235527463, 0.00104370504, -0.0313369222, -0.0150975464, 0.03162238, 0.00562589755, -0.0190780964, -0.0271660667, -0.00463472446, 0.00561003853, -0.00146792713, -0.010347845, 0.0316699557, 0.0242956299, 0.00934081338, -0.0130834822, -0.00555849774, -0.0189036503, -0.00842100475, -0.015549521, -0.0128535302, 0.0229634941, -0.0421526022, -0.0113865947, 0.00329267653, -0.00338386442, -0.00612544874, -0.0229634941, -0.00288629555, 0.00527700456, 0.0162869543, -0.00393693894, 0.00425807899, 0.00423032604, 0.00876989774, 0.0126235783, -0.00175239379, 0.0167627167, -0.0151292635, 0.0350161567, -0.0366020352, 0.00310435356, -0.00213498645, 0.00954697747, -0.0124253435, 0.0112200771, 0.0142411729, -0.0125601431, -0.0334937163, -0.00861131, -0.000894533587, -0.000108843175, -0.0162076596, -0.0399958082, 0.0138526326, 0.0428821072, 0.00693028094, 0.0167468581, 0.0172384791, 0.0019417078, 0.0398055054, 0.00296162465, 0.00576862646, -0.00965798926, -0.0296400357, -0.0331131034, 0.00162750599, -0.0118385693, 0.0103795631, 0.0224877317, 0.0525876693, 0.000615022785, -0.000408611028, -0.00578844966, 0.00348298158, -0.00715230359, -0.00797695946, -0.00884919148, 0.00117751339, -0.0206639729, 0.0186340511, 0.0251202863, 0.0031420181, -0.0115055349, -0.0305281263, 0.0370143615, -0.00463076, -0.00109821965, 0.00683116401, 0.0349527225, 0.049352482, -0.00529682823, 0.0141935963, 0.00285061332, -0.00187133451, -0.0148041584, 0.00307461852, -0.0320664272, -0.00806814805, 0.0308770183, -0.0146772889, 0.00272176089, 0.00487657078, -0.0141698085, -0.0336523019, -0.0214727707, -0.0774542168, -0.0479886271, -0.00196252228, 0.0160966478, -0.00848444, -0.0135195991, 0.0169688798, 0.00470212428, 0.0030825478, 0.0103637045, 0.00575673254, -0.00503119361, 0.011045631, -0.0184278861, 0.0271502081, -0.000375654548, -0.0183327347, -0.0443093926, 0.000776088389, 0.0320505686, 0.000894037948, 0.0394883305, 0.0281651691, -0.0134085873, -0.0289581083, 0.0165882707, 0.000165154182, -0.0250727106, -0.00938046072, 0.0151926987, 0.0235502683, -0.00838928763, -0.00645848271, 0.00245414418, -0.00454353681, 0.0100148115, -0.000136286282, -0.0217265096, 0.0160966478, -0.00583602628, -0.00832585245, 0.0321774371, -0.00641883584, -0.0178411119, 0.0331448242, -0.0212031715, 0.0096262712, -0.00298541295, 0.0411376394, 0.0111962892, 0.0179997012, -0.00951526, -0.00776286656, 0.0050866995, 0.0214569122, -0.0193794128, 0.0359994024, -0.0190463793, -0.0170798916, -0.0178252533, -0.0228049066, 0.00339575834, -0.00806418248, -0.00898399111, -0.0353650488, 0.00168102933, 0.0129486835, 0.0194111299, -0.0238515846, 0.0265792925, 0.00189908734, 0.00995137636, -0.000349140668, 0.0143997604, 0.0146059245, -0.0300523639, 0.00669636438, 0.0133610107, -0.00241846195, 0.0139636444, -0.014098444, -0.00367130456, -0.0328593664, -0.00888883881, 0.0146535, -0.0346672647, -0.0176349487, -0.0318919793, 0.00818312354, -0.00209533959, -0.0142015256, -0.0117275584, 0.0274198074, 0.0091346493, 0.0188719332, -0.0118940752, -0.0280858763, 0.00539594563, -0.00980071817, 5.87579707e-05, 0.0131389881, -0.00953904819, -0.0162155889, -0.0071007628, 0.00761617254, -0.0306549966, -0.046624776, 0.0219485331, 0.040027529, 0.00522942841, -0.0383147821, 0.00951526, 0.0145821357, -0.00210723374, 0.0116720526, -0.0107125966, 0.0109029021, 0.000985225895, 0.0075923847, -0.0145266308, 0.00266823755, -0.00585981412, 0.0258973669, -0.0132579291, 0.0186657682, -0.0171116088, -0.00872232206, -0.0104905739, 0.0230745059, -0.0188719332, 0.00488053542, -0.0569646917, -0.0196014363, -0.0270867739, 0.0389808491, 0.0326690599, 0.0137574803, -0.0115610408, 0.00251757912, 0.0146852182, 0.00837342907, 0.00502722897, -0.000220907663, 0.00255326135, 0.00248784409, -0.00113191945, -0.00714040967, 0.0242639128, -0.0392028727, -0.0195697173, -0.0425649285, -0.00250964984, 0.0194269884, 0.0176508073, -0.0164772589, -0.00180096121, 0.00266030803, -0.00149369764, 0.00899192, 0.000262413028, -0.0263096932, -0.0206322558, 0.00396270957, -0.00167706457, -0.0229159184, 0.012441203, -0.00942010712, 0.00766374916, 0.00511841709, -0.00815140642, -0.0294497292, 0.00735846767, 0.00593514368, 0.0047140182, -0.00614527194, -0.000505993783, -0.00390522135, 0.000961933343, -0.0239625964, -0.0131627768, -0.0267695989, -0.0101020345, -0.00574087352, -0.000412823516, -0.00511048781, 0.00118742511, 0.0164455418, -0.0197600238, 0.0116244759, 0.0287678037, 0.00984036457, -0.0301633738, -0.0137891974, -0.0465296209, -0.0143521838, 0.004912253, 0.0259766597, 0.0185864754, 0.0134165166, 0.0382513441, -0.00738225598, 0.01825344, 0.00156307966, -0.0124094849, -0.0209177136, -0.0187450629, 0.00504705263, 0.00907914434, 0.00480124168, -0.0286726505, 0.0216789339, -0.0134323752, -0.0409790538, 0.00340170553, 0.0329862349, -0.0359042473, 0.00335016451, 0.0232172348, 0.0349527225, 0.00566554442, 0.000168375496, 0.00504705263, 0.0057289796, -0.0131786354, -0.00560607389, -0.0126394369, -0.00777079584, -0.00747344363, 0.0103161279, -0.0195062831, -0.0507163368, -0.0122826146, 0.0133610107, 0.0230427887, 0.0090950029, 0.0202357862, 0.0177142434, -0.0290849786, -0.00637522433, -0.00439287862, 0.0275308192, -0.00325897662, -0.00737829134, -0.00323915319, -0.0270391982, 0.00415499695, 0.0100544579, -0.0212348886, 0.031939555, 0.000706706312, 0.00697785756, 0.0385050848, -0.00689856336, -0.00530872215, 0.0109742666, 0.0298461989, -0.0208859965, -0.0159301311, 0.0114262411, 0.015985636, 0.000807310338, -0.0157160386, 0.0109663373, 0.0164614, -0.00192188425, -0.00672411732, -0.0265634339, -0.000164534707, 0.00953111891, -0.0248031113, -0.00597479055, -0.0390125662, -0.00142332434, -0.00195360184, -0.0115610408, 0.0177618191, 0.00120031042, 0.0137574803, -0.0163028128, 0.026420705, -0.0268013161, -0.00804435927, -0.0315906629, -0.00861924, 0.0235344097, 0.0156050269, -0.00521356938, 0.00529682823, 0.00844479352, 0.00630782451, 0.0867157355, -0.002630573, -0.00870646257, -0.0322091542, 0.021044584, 0.00382196275, -0.0169847384, 0.0387271084, 0.0319554135, 0.0149786053, 0.0266110115, 0.0212507471, 0.0119020045, 0.00752102025, -0.00396667421, -0.0102844099, -0.00676772883, -0.0072752093, 0.00690252846, 0.0366654694, -0.00888090953, 0.0150896162, 0.0095866248, -0.0190305207, 0.013836774, 0.00790956, 0.0189036503, -0.0246603824, -0.00979278889, -0.00239467388, 0.0115451822, -0.00735450303, 0.0134640932, -0.00121716037, 0.00937253144, 0.0237088557, 0.0010783961, -0.0101971868, -0.00465454813, 0.0340011977, -0.028514063, -0.00480917096, -0.00615716632, 0.00698578684, -0.00233322103, -0.00244423235, 0.00328672933, 0.0123460498, -0.019157391, -0.00745362043, -0.00163047947, -0.0114976056, 0.00622456614, -0.0132103525, 0.00184259051, 0.00277528423, 0.0181107111, -0.0137654096, 0.0300523639, 0.00337791722, 0.0143680423, 0.000962428923, 0.00549506256, -0.00592324929, -0.00773114897, -0.0110773481, -0.0226621777, -6.9506e-05, -0.0163821056, 0.0161521547, -0.014621783, 0.0124094849, -0.00540387491, 0.0103874924, -0.00839721691, -0.000458417489, -0.0137971267, 0.00425014971, 0.0051858169, 0.000924764317, -0.00145107717, -0.00289422483, 0.00173752615, 0.0138605619, -0.000305529044, -0.0213300418, -0.0330496691, 0.0217265096, 0.0287519433, 0.00517788716, -0.00585584948, -0.0226621777, -0.0287043676, 0.00709283352, 0.00139259791, -0.0107125966, 0.0341915, 0.00354245212, -0.0154385092, 0.00659724697, -0.0133610107, 0.0147010768, 0.00896020327, 0.0190780964, -0.0246286653, -0.0105143627, 0.0281493105, -0.00659328233, -0.0163979642, 0.000940127531, 0.0112993717, -0.00725142099, -0.000639802136, -0.0109901251, -0.000662599108, -0.00861924, 0.0143363252, -0.0196965877, 0.0018871933, -0.000569428841, -0.0258022137, 0.0316540971, 0.0173019152, -0.0149468873, 0.0102923401, -0.0109742666, 0.0150341112, 0.00219445676, -0.0197600238, -0.00800074823, -0.0303536803, 0.0167468581, -0.0187926386, 0.0187609214, -0.0303536803, 0.00440873718, 0.00426997291, 0.00841307547, 0.0286092144, -0.00108037854, 0.00804039463, 0.0129090361, -0.00919015519, -0.00789766572, -0.0269599035, 0.00851615798, -0.0278321356, -0.0200771987, 0.0155257331, -0.0178886894, -0.0315430872, -0.0314162187, 0.0156446733, -0.0258180723, 0.0120685212, 0.00277924887, 0.00722366804, -0.0151847694, 0.015287851, -0.02662687, 0.0209970064, 0.00730692688, 0.00841307547, 0.0104509275, -0.00199027522, -0.0220278278, 0.0155178029, -0.0131865647, -0.00622456614, -0.00960248336, 0.00211714534, 0.00028347547, -0.017698383, -0.0111249248, 0.0123381205, 0.0137574803, 0.0101654697, -0.00646244735, -0.00886505097, 0.0146693597, -0.0181900058, -0.00742190285, 0.0252947323, 0.0307342894, -0.0196648706, 0.00433737272, -0.0150975464, 0.00470212428, -0.00115769, 0.00911879074, -0.0116958404, 0.0129407533, 0.0131707061, -0.0129011068, 0.00984036457, 0.0218216628, 0.010958408, -0.00231141527, -0.0010397404, 0.00448010163, -0.0328593664, 0.00419860845, -0.000127117921, 0.012147815, -0.00585584948, -0.0214093346, 0.00705318665, -0.0155653795, 0.0132182818, 0.00987208262, 0.00860338099, 0.00995137636, -0.0152482046, -0.0208225604, -0.00787387788, -0.0154067921, 0.0190780964, -0.0235344097, 0.00671618758, -0.0231696591, -0.0037248279, -0.00298144808, 0.0141618792, -0.00920601375, -0.0109187607, -0.0108394669, 0.0354602039, -0.00343540544, 0.0245969482, 0.0156763904, -0.00252749096, 0.0248348285, 0.0259449426, 0.00979278889, 0.0154702272, -0.0361262709, 0.0186657682, 0.00338386442, -0.026071813, -0.0106412321, 0.0251361448, 0.0130279772, 0.0149627468, -0.000168623301, -0.0316858143, -2.99984677e-05, -0.0200296231, -0.00326492358, -0.0147248646, 0.00119337218, -0.00430565514, -0.0145821357, 0.0134561639, -0.0111725014, -0.00508273486, -0.0122191794, -0.00797695946, 0.0170481745, 0.00188818446, -0.0351430289, 0.0088412622, -0.00501533505, -0.00097035832, -0.00152045931, 0.0106333029, 0.0220278278, -0.0207908433, -0.0114896763, 0.00621267175, 0.0144869834, -0.0160014965, 0.0253264513, -0.00213895109, 0.0332716927, 0.0171591863, -0.00453164242, 0.00538405124, 0.000855382241, -0.025056852, -0.00306668901, 0.0225353073, 0.0166517049, 0.00434133736, -0.0266427286, -0.0270550568, 0.000306520233, -0.0095866248, -0.0117513463, -0.00797299482, 0.0207749847, -0.00790163, 0.0274198074, 0.029005684, -0.0121874623, 0.016889587, 0.0309404545, 0.0185547564, -0.00659328233, 0.00268806098, -0.0037188807, 0.0190305207, -0.00409949105, -0.00344531704, 0.0263889879, -0.00302704214, -0.00578844966, 0.00197045179, -0.0148358764, 0.0199027527, -0.0012736572, 0.0216313582, -0.0188719332, 0.00392306224, 0.0109663373, 0.0130438358, -0.0327324942, 0.0230903644, 0.0141143026, 0.0170640331, 0.028196888, -0.00805625319, -0.015549521, 0.00259092613, -0.0100703165, -0.0139636444, -0.00111705193, 0.0136861159, -0.0107046673, -0.000793929503, -0.00892055593, -0.000721078308, -0.0149310287, -0.0206798315, -0.0200137645, -0.0126711549, -0.0115848295, -0.00722763315, -0.0100148115, -3.21202e-05, -0.00626024837, -0.027641831, -0.00268607866, -0.00614923704, 0.0112280073, 0.00868267473, -0.0266585872, 0.0179521237, 0.0204419512, 0.000796407461, 0.0401543975, -0.0321774371, 0.00199820451, -0.0088016158, -0.00581223797, -0.012583931, -0.00322527671, -0.0170640331, 0.0281651691, -0.010783961, 0.00588360243, -0.00582413189, 0.0234075394, 0.0115372529, -0.0113310888, -0.00812761765, 0.00716023333, 0.0117989229, -0.0235502683, 0.0216472168, 0.0341915, -0.00745362043, 0.00737829134, -0.00672808196, -0.0109187607, 0.00966591854, 0.000676971104, 0.0063395421, 0.0320505686, 0.0164455418, 0.0151689108, -0.0211238768, -0.0170481745, 0.0199027527, -0.00457128976, -0.0230269302, 0.0171433277, 0.00141539495, 0.0265951511, 0.0285299215, -0.00394685054, 0.00427393755, -0.00179204065, 0.0131152, 0.0156684611, -0.00543559249, -0.00405984418, 0.000301812164, -0.0193476956, 0.0022876272, 0.0100227408, 0.00243035611, -0.00476159481, -0.03755356, 0.00600650813, 0.0248665456, 0.0230427887, 0.00324906479, -0.0411376394, 0.028307898, -0.033747457, 0.000460895419, -0.0141222319, -0.000320148858, -0.0374901257, -0.0127504487, 0.00360786938, 0.012932824, 0.00762410229, 0.00169887044, 0.00102883752, -0.0131707061, 0.0128138838, -0.00430565514, -0.00444838405, -0.0311941952, -0.0178728309, 0.000299334235, 0.0167785753, -0.0103161279, -0.0356822237, -0.0048131356, 0.0166517049, -0.00574483816, 0.0119971568, -0.0181265697, 0.00543559249, 0.0252788737, 0.00900778, 0.00560607389, 0.00447217235, -0.00361579889, -0.0011438136, -0.0274673849, -0.00155217678, -0.023486834, -0.00887298, 0.0218850989, 0.00844479352, -0.00191395497, -0.0126790842, 0.0304329731, -0.0195855778, -0.00947561301, -0.0216789339, -0.0262779761, -0.0131072709, 0.0107998205, -0.00853994582, 0.00444045477, -0.00261074957, -0.00477745337, 0.0150658283, -0.00687874, 0.00649416493, 0.0235819854, -0.00743379677, 0.0221546963, -0.0055545331, -0.0154543687, 0.00827827584, -0.00477745337, 0.0131627768, 0.0102526927, -0.0129407533, 0.00601047277, -0.00801264215, -0.00466247741, 0.0051858169, 0.0348892882, -0.00231141527, 0.0101099638, 0.0238357261, -0.00143918314, 0.0316382386, 0.0107046673, 0.0591214821, -0.00591532, 0.0179521237, 0.0112042185, 0.0138684912, 0.0137654096, 0.0028149311, -0.0124570616, 0.00686288113, -0.0123222619, 0.0141380904, -0.00456336, -0.0262304, 0.0099751642, -0.00260678469, -0.00767564308, 0.00253938511, 0.00150460051, 0.0223608613, 0.0162235182, 0.00916636735, -0.0237564333, 0.0133055057, 0.0232965276, -0.00105262559, -0.00657742331, -0.0171274673, -0.00995930564, 0.0277369823, 0.0125760017, 0.000644758, 0.0217582285, -0.00627610693, 0.0114421006, 0.0141222319, 0.0167627167, 0.00497965282, 0.00451181922, -0.00648227101, 0.00881747436, 0.00658535305, -0.0224242955, 0.0185071807, 0.000383088336, 0.0239943136, 0.0113390181, 0.00981657673, -0.009769, -0.0101971868, 0.00405984418, 0.000957968645, -0.00200216938, 0.0013826862, -0.00987208262, 0.012060592, 0.00156407093, -0.0142411729, -0.00478141801, -0.0141618792, 0.00479727704, 0.00654967083, -0.000137401352, 0.0108870436, -0.00256912014, -0.000854886661, 0.00376249244, -7.76212328e-05, 0.0128297424, -0.0205688197, 0.00889676809, -0.00463076, -0.0115134651, 0.00418671453, -0.00365742808, 0.00458714832, 0.00383782154, -0.00222022738, 0.0156684611, -0.0265634339, -0.00538405124, 0.00572501495, 0.00748930266, -0.024850687, 0.00644658878, -0.00966591854, -0.00811572373, 0.0169054456, 0.0134244459, 0.016508976, 0.0156129561, 0.0136464685, -0.0121874623, 0.00134403049, 0.0176825244, 0.00366337504, -0.0151847694, -0.017206762, -0.0197758824, -0.0365068801, 0.0166992806, 0.00884919148, 0.0158032607, 0.010696738, -0.0109821958, 0.0202040691, 0.0194587074, 0.00323518831, -0.020172352, 0.0292594247, 0.00519771082, -0.0217899457, 0.00827827584, 0.0180948526, 0.00536819268, -0.0136781866, 0.00157695613, -0.0269281864, 0.00518185226, -0.0286567919, -0.0195697173, 0.00110714021, -0.00561796827, 0.00732675, -0.00897606183, 0.0144473361, 0.0119416518, 0.00243828539, -0.00739415, -0.0160252843, -0.00348298158, -0.00224203314, 0.0104112802, -0.00229159184, 0.00323320599, -0.00472591259, 0.00150955631, -0.00227375072, -0.00644658878, 0.010435069, 0.00403803866, 0.0125522139, 0.0177142434, -0.025548473, 0.0213617589, 0.0123539791, 0.019474566, -0.00841307547, 0.00686684623, -0.00512634637, -0.0253105909, -0.00547523936, -0.021916816, -0.000753787, 9.44092244e-05, 0.00448010163, 0.0212507471, 0.00765978452, 0.03203471, -0.0159618482, -0.0232648104, -0.00538405124, 0.0114341704, -0.0200771987, -0.0100465287, 0.00824655872, 0.0291642714, -0.0118544279, 0.0111249248, -0.00220436859, -0.00132222474, -0.020838419, 0.00101000525, 0.0223450027, 0.0367289037, -0.0108553255, 0.00289620738, -0.00226582121, 0.00320941792, 0.0171750449, 0.0117513463, -0.00850029942, 0.0295131654, 0.00785801932, -0.0104509275, -0.00534043973, -0.0215203464, -0.0125046372, 0.00811968837, -0.000750317879, -0.0204102322, 0.00725142099, 0.0175715145, -0.0248189699, -0.0342232175, 0.00212507485, 0.0164614, -0.00879368652, 0.00773114897, -0.0122429682, 0.0104271388, 0.00205172785, -0.00615320168, -0.00181979348, 0.0085082287, 0.00944389589, 0.00292990706, 0.00865095761, -0.0218850989, 0.0175715145, -0.0150261819, -0.0512872525, -0.0045197485, 0.00509462878, 0.0162869543, -0.00646641199, 0.0189353675, 0.00645055342, -0.00224599778, 0.00194864592, 0.000581322936, 0.000267864496, -0.00364751625, -0.00367923384, -0.00305281254, 0.00981657673, -0.00253938511, -0.00235899165, -0.00269797281, 0.0137019744, -0.00972142443, -0.0135433869, -0.0109346192, -0.0050866995, 0.0100782467, 0.016889587, -0.0057488028, 0.0154702272, 0.00762013765, 0.0190939549, 0.00396270957, -0.00314994762, -0.0276259724, -0.024850687, 0.00400632108, -0.0049519, -0.0123301912, 0.0307184309, 0.00798885338, -0.0344769582, -1.5146361e-05, -0.0138050569, 0.0323994607, 0.0151530514, -0.0273880903, 0.015549521, -0.000615518366, 0.00819105282, -0.004018215, 0.00379619235, -0.0109425494, 0.00328276469, 0.0265475754, 0.00154722098, -0.0215837825, 0.0174605027, -0.00280105462, -0.0138843507, 0.00287043676, -0.0014917152, 0.000366238382, -0.000982252415, 0.00783423055, 0.0191891082, -0.0068271989, 0.00364355161, 0.00694614, -0.000183490891, -0.0166041292, 5.91916069e-05, -0.00203983393, -0.0197758824, -0.0169530213, 0.0228842013, 0.00892055593, 0.00759634934, 0.00574087352, -0.00739811454, 0.0108949728, 0.0264365636, -0.00711662136, -0.0099355178, 0.000932198134, -0.000292396, 0.0010892991, 0.0180472769, 0.000876196893, -0.0203943737, -0.00551488623, 0.012496708, -0.00969763566, -0.00926944893, -0.0204578098, 0.0112597244, -0.0108394669, 0.0081593357, -0.0220754035, -0.00752102025, 0.00326095894, -0.00640297728, -0.00356425787, -0.000547127449, -0.00920601375, -0.000273068144, -0.00738225598, -0.00317175337, 0.0109980544, 0.0124491323, -0.0154226506, -0.016889587, -0.0126473662, -0.0114341704, 0.00587963779, 0.00896020327, -0.000855382241, -0.014066726, -0.00952319, -0.0053800866, -0.0125760017, -0.00748533802, -0.00700561, 0.0153354276, -0.00976107083, 0.0099038, 0.00207353383, -0.0269123279, 0.00634747138, -0.0236454215, 0.00809193589, 0.0129248947, -0.00694217533, -0.0235026926, -0.0112121478, -0.000437602837, 0.00438098423, 0.0120050861, 0.0102923401, -0.0243273489, -0.0206163973, -0.0076677138, -0.0126077197, -0.000815735315, 0.0082148416, -0.00544352178, 0.000821186753, 0.0279114302, -0.0135988928, 0.00618491927, -0.0103557743, -0.00800471287, 0.0243114904, 0.0131389881, 0.00539594563, 0.00975314155, -0.00693821069, -0.00601443741, 0.0154464385, 0.00359399291, 0.00256119086, 0.01453456, 0.0130121177, -0.00130240119, -0.0217265096, -0.0157160386, -0.0107522439, 0.00269599026, 0.0134958103, -0.00335809379, -0.00103379332, -0.0040519149, -0.0072989976, -0.0231855176, -0.00841307547, -0.00341359945, -0.0175239369, 0.0290374011, -0.0098800119, -0.0113469474, 0.00829413533, 0.0136385392, 0.00616906025, -0.00654967083, -0.0127742365, -0.00220040395, -0.0225194488, 0.00318562984, 0.0107205268, 0.0072950325, 0.0174129251, 0.0115531115, -0.0118782166, -0.00691838702, 0.0262621175, 0.0221071206, -0.00490432372, -0.00710472744, 0.00701354, 0.00423825532, 0.00385169801, -0.014098444, 0.00921394303, -0.00205965736, -0.00175041135, 1.48056452e-05, -0.0233758222, 0.0307025723, 0.00938046072, -0.00781837199, 0.0127583779, -0.0127266599, -0.00251163216, 0.00220238627, 0.0125918612, 0.0173494909, 0.00982450601, -0.00586774386, 0.0232330933, 0.00560210925, -0.00758049032, 0.00211714534, -0.00532854581, 0.0133451521, -0.0129724713, -0.0064386595, 0.0102447635, 0.0177301019, 0.0141063733, 0.0242321957, 0.017698383, 0.0136147514, 0.0122112501, -0.0192208253, 0.00687874, 0.00747740874, -0.00189809618, -0.000263652, -0.00130141, -0.0146772889, -0.00325501198, -0.00724745635, -0.00932495482, -0.000608084607, 0.00327681773, 0.00814347714, 0.00915050879, -0.00104370504, -0.00486467686, -0.0113786655, 0.022789048, 0.00435323128, 0.00222617434, -0.00426204363, -0.00878575724, -0.0218375213, -0.00878575724, 0.00197639875, 0.00406777347, -0.0179521237, 0.00657742331, 0.00820691139, -0.018285159, -0.00478538265, 0.0176825244, 0.00461490126, -0.00775097217, -0.0127583779, -0.0261352472, -0.00355831068, -0.008254488, 0.00541180419, 0.0235819854, 0.00880954508, -0.0119575104, -0.00378826284, 0.0039428859, 0.0193952713, -0.0277211238, -0.00710869208, -0.00504705263, -0.0119971568, -0.00605011964, -0.0232648104, 0.0189036503, 0.0112835122, -0.00826241728, -0.0243907832, -0.0173653495, 0.0230427887, -0.012615649, 0.0113865947, 0.00743776141, -0.00161462068, -0.000936162833, -0.0329228, -0.010435069, 0.0066329292, 0.0180631354, -0.0142015256, 0.00433737272, 0.006625, -0.00668050535, -0.0233282465, 0.00654570619, -0.00613734266, 0.0139160678, -0.0013152865, 0.00203586929, -0.0151451221, 0.00219842163, -0.0117989229, 0.00775097217, -0.0164614, -0.0202357862, 0.0204419512, -0.0103954216, -0.0372681022, -0.00326492358, 0.00377240404, -0.00281889574, -0.0149944639, 0.0186181925, -0.0151292635, -0.00150757399, 0.00148081232, 0.0158904847, 0.00776286656, -0.00865888689, 0.0278479941, 0.00735053839, -0.0116958404, -0.00765978452, -0.00544748642, 0.00451181922, 0.0058717085, 0.00681926962, 0.0162552353, -0.00779458368, -0.00305479486, -0.00767960772, -0.00249180873, -0.00745362043, 0.000809292716, 0.0120526627, 0.0180948526, -0.0111883599, 0.0242321957, -0.00320941792, 0.0268647503, -0.00820691139, 0.00736639695, -0.011711699, 0.0144314775, 0.00100950967, 0.0221388377, 0.00508273486, -0.012877319, 0.00332835875, 0.00474177115, 0.00372681022, -0.0165248346, -0.0176508073, 0.0150816869, -0.0173019152, -0.00191494613, -7.7435383e-05, 0.0172384791, -0.00375258061, -0.00695010461, -0.00964213, 0.010871185, 0.0101971868, -0.0189195089, -0.00542369811, 0.00618888391, -0.0219643917, 0.0150578991, 0.0127345901, -0.0046386891, -0.00827827584, 0.00451578386, 0.000565959723, 0.00791352428, 0.0182692986, 0.00814347714, 0.00799678359, 0.00538801588, 0.0145583479, -0.0099751642, 0.0150023932, -0.00907121506, -0.00554263918, -0.0119971568, 0.0266903043, -0.00743379677, 0.00926944893, -0.00180988177, 0.00472591259, 0.00896813255, 0.0167468581, -0.0108949728, -0.0088412622, -0.00110119313, 0.00994344708, 0.00961834192, 0.00807211269, -0.0130914124, -0.00586377922, -0.0031420181, -0.00559021533, -0.00947561301, 0.0313527808, -0.0106650209, 0.0177459605, 0.008254488, -0.0109504787, -0.00166219694, 0.0151689108, 0.0135751041, 0.00112101657, -0.00362571049, -0.0348258503, -0.0021230923, 0.00681926962, -0.00225987425, 0.00798885338, -0.0100782467, -0.0176349487, -0.0126315076, 0.0235978458, -0.012702872, 0.00232727407, 0.0169213042, -0.00865888689, -0.0196172949, -0.0128693888, 0.0279590059, -0.00399442669, 0.00629989523, -0.00796506554, 0.0165882707, -0.0128852483, 5.14480707e-05, 0.00674394052, -0.0138209155, -0.0118385693, -0.00346315815, -0.00629593059, -0.0106253736, -0.0136385392, 0.0143997604, 0.0271026324, -0.0243114904, 0.020172352, 0.000748335558, 0.0137257623, 0.0144711249, -0.00167409109, -5.84172558e-05, -0.0143680423, -0.000784017786, -0.0250727106, -0.00379421, -0.00207551615, -0.00563779147, 0.0171433277, 0.0135988928, -0.0241053253, -0.00224798, 0.00123896613, 0.0151371928, -0.0294180121, 0.00462283054, 0.00490035908, 0.012964542, -0.0352698974, -1.80889056e-05, -0.018602334, 0.0049519, 0.0153037095, 0.00469023036, 0.00192485785, 0.00129843655, -0.00143918314, -0.00368319848, -0.0127742365, -0.0125363553, -0.0294180121, 0.00820691139, 0.00365742808, -0.00781044271, 0.0133213643, -0.0214569122, 0.0234233979, -0.000393247843, -0.00180096121, -0.015113405, -0.0238833036, 0.00503515825, -0.0247872528, 0.00358011667, -0.0142966779, -0.0247555356, 0.00266823755, -0.00467437133, -0.00769546675, -0.00700957514, 0.0201882105, -0.00170283508, 0.00438891351, -0.00410345569, 0.0167944338, 0.00278717815, -0.0275466777, 0.00828620605, 0.000960942125, -0.0308294427, 0.00296955416, -0.0198076, -0.00698975148, 0.00843686424, 0.0147565827, -0.00319355913, -0.00663689384, 0.0122033209, -0.00772321923, -0.00954697747, 0.0224560145, 0.0186816268, 0.000188942344, 0.0096817771, -0.00474177115, -0.00294973073, -0.00613734266, -0.0168578699, -0.00783819519, 0.00907121506, -0.0148913823, 0.00417085551, 0.000205296688, -0.0192208253, 0.00931702554, -0.000692829897, 0.00697389292, 0.0090950029, 0.00696199853, -0.00899192, -0.0216155, 0.00808797125, 0.0166992806, -0.0128059546, 0.0129962591, -0.00413517328, -0.00636729505, -0.00809193589, -0.00672808196, -0.0106650209, 0.00253343792, -0.0135751041, -0.00161065604, 0.00965006, 0.0167627167, 0.0191256721, 0.0165724121, 0.0119892275, 0.00320545328, -0.0232013762, -0.0218375213, 0.014098444, -0.00210921606, 0.0105540091, -0.0166358463, -0.00532061607, 0.0171909034, 0.00928530749, 0.00342747592, -0.022582883, -0.00431358442, -0.0053800866, -0.0241053253, 0.0107125966, 0.0185864754, 0.00707301, -0.00745758507, -0.000518383458, 0.00336205866, -0.00133312761, -0.00520167546, 0.0260400958, 0.00123004557, -0.0262779761, -0.00567743834, 0.0101892576, -0.00407570321, -0.0163186714, -0.00361579889, 0.00998309348, 0.0150658283, -0.00169589685, -8.44974929e-05, 0.0205529612, 0.00407966785, -0.00418275, 0.0243907832, -0.000955490686, 0.00170679973, -0.00474177115, -0.0251837224, 0.00818312354, 0.00371293374, 0.00910293218, -0.00711662136, -0.0126394369, 0.0159777068, -0.00416292623, -0.0111090662, -0.0234392565, -0.0129169654, 0.0216155, -0.0134085873, -0.0149072409, -0.0162393767, -0.00129348063, 0.00140647439, 0.0195221417, 0.00964213, -0.00224996265, 0.00179005833, 0.00608580187, -0.0101575404, -0.0170164574, 0.00603822526, 0.000416540424, -0.0235344097, -0.0213934761, -0.0318919793, -0.0364434458, 0.0143283959, -0.0060659782, 0.0102844099, -0.0206481144, 0.0140350088, 0.0101337517, -0.0212348886, -0.000398451521, -0.0275466777, 0.0157715436, 0.0122112501, -0.0162393767, 0.00448406627, 0.00489639444, -0.0224877317, 0.0121240271, 0.0142808193, 0.00232330943, -9.60818288e-05, 0.0266110115, -0.00257308502, -0.0164296832, -0.00172959676, -0.00378628052, -0.0158666968, 0.00693821069, 0.00717609189, 0.00268211402, 0.0016998616, -0.0136861159, 0.00479727704, 0.00688270479, 0.000798389781, -0.004127244, -0.0123856971, 0.00225590961, -0.0370777957, 0.00227771536, 0.020346798, -0.00498361746, 0.0377121456, 0.0229159184, 0.00544352178, -0.00105758151, -0.000190924678, -0.0174763612, 0.00672808196, 0.00214489829, 0.00875403918, 0.000662103528, -0.0190939549, 0.00301118335, 0.00116760167, -0.0107522439, 0.0064386595, 0.0270550568, 0.00628800085, 0.0115213944, 0.00175834075, -0.0296241771, 0.00242440891, -0.0481472164, 0.00956283603, 0.0362531394, 0.0192366838, 0.00042992126, -0.0103637045, 0.00775890145, 0.00918222591, -0.0168102924, 0.012702872, -0.00427790219, 0.01325, -0.00600254303, 0.0250727106, -0.0120685212, -0.00685098721, 0.00435719639, -0.0144869834, -0.00758842, 0.00399442669, 0.010173399, -0.0258180723, 0.0107046673, 0.000240235531, -4.51603155e-05, -0.00587567315, 0.00293783657, -0.0107522439, 0.0119257923, 0.000923773157, -0.00239269133, 0.00230150344, -0.00684702257, -0.00805625319, -0.00853994582, -0.00466247741, 0.00699768076, -0.0142094549, -0.000850426382, 0.00735846767, -0.00436512567, 0.0149310287, -0.0160887185, -0.00634350674, -0.0044008079, -0.0102685513, 0.00557039166, 0.0222022738, -0.0152640631, 0.0258815065, 0.00198730174, 0.0176508073, -0.019966187, -0.00152343279, -0.000268360076, 0.00730296224, 0.0234392565, -0.0307342894, 0.0189670846, -0.0133847995, -0.00917429663, 0.00954697747, -0.0216630753, -0.00196846947, 0.00562589755, 0.00427790219, 0.0115610408, 0.000436363887, -0.00406380882, 0.0235344097, -0.00765582, -0.0143918311, -0.00586377922, 0.000918321719, -0.0122826146, 0.0216947924, 0.0105302213, -0.00590739073, 0.0109901251, 0.00200117822, 0.0172384791, -0.0149230994, 0.000656156451, -0.00431754906, -0.0201564934, 0.0151054757, -0.0131469173, -0.00742190285, -0.00795713626, -0.00300721871, 0.0231696591, 0.00830999389, 0.0153354276, 0.0193794128, -0.012147815, 0.0266585872, -0.0160887185, 0.0123064034, -0.00346315815, -0.00101595221, -0.00634350674, 0.0123064034, 0.00190999021, -0.0146059245, 0.0266427286, -0.0372998193, 0.00154325622, 0.014153949, -0.00361381657, 0.00677565811, 0.0293228589, -0.0159618482, 0.00566158, -0.00565761514, 0.0185230393, 0.0139002092, 0.00687874, 0.0205688197, 0.0190939549, -0.015636744, 0.0125363553, -0.0288312379, 0.00876989774, 0.000392256683, 0.00683116401, -0.0256594848, -0.0104509275, -0.0110377017, -0.0158270486, -0.00802057143, 0.031828545, 0.00233322103, -0.00574483816, -0.00892055593, -0.0129804006, 0.00440873718, -0.0146059245, 0.00806418248, 0.0079809241, 0.0008197, 0.0103399158, 0.00725935027, 0.00830999389, -0.016128365, 0.000927242276, -0.000848444, -0.0306074191, 0.00513824029, -0.00890469737, -0.0161759425, 0.00256317318, 0.00202001049, 0.00204776321, -0.0060223667, -0.0265634339, 0.0112676537, -0.000790955964, 0.0101020345, 0.018602334, 0.00437305495, 0.000842001406, -0.00676772883, 0.0025552439, -0.0136068221, 0.000759238435, 0.0115451822, 0.00675583445, -0.0085082287, -0.0161362961, -0.00375456293, 0.0260242354, 0.00658138841, 0.00397460349, 0.0326373428, -0.016715141, 0.00140052731, -0.0031915768, -0.0135275284, 0.00987208262, 0.0280383, 0.0121636745, 0.0251202863, -0.000336255413, 0.0163662471, 0.00675979955, -0.0284347683, 0.0304329731, 0.0154067921, 0.00260083773, 0.0207432676, -0.0142015256, 0.0195221417, 0.00537612196, 0.00103775808, -0.00632764772, -0.000619483064, -0.00446424307, -0.0058717085, 0.00356425787, -0.00471005356, -0.00221824506, 0.0169530213, 0.0098800119, 0.0127504487, 0.00818312354, -0.0120685212, 0.00498361746, -0.00689063407, -0.00623249542, -0.0235661268, 0.000634350698, 0.00584395556, -0.00859545171, 0.0060659782, -0.00720780948, 0.00322131207, -0.0261193886, -0.0102844099, 0.00599857839, 0.0200454816, 0.00905535556, -0.00504308799, -0.00211516302, -0.00762806693, 0.0140508674, 0.013836774, 0.0128535302, 0.0221229792, 0.0272612199, 0.00294774817, 0.00296162465, 0.0102447635, 0.0209811479, -0.00559418, 7.35945869e-05, -0.0146059245, -0.00265039643, 0.0197441652, -0.00180690829, 0.017587373, 0.00511445245, -0.000406380888, -0.0109901251, -0.0108949728, -0.00883333292, 0.0186974853, 0.0137574803, 0.00253542024, -0.0291008372, -0.0270233378, 0.0118861459, 0.00390522135, 0.00750516122, 9.17609304e-06, 0.0245969482, 0.0137019744, 0.00814347714, -0.00944389589, 0.00741397357, 0.0484961085, 0.00424222, 0.00463472446, 0.00128257775, 0.0211714543, 0.0181265697, -0.00576466182, 0.00866681617, -0.00519374618, -0.0213459, -0.0078659486, 0.00177816418, -0.0117513463, 0.0064148712, -0.036475163, -0.00242837355, 0.0129407533, -0.00688270479, 0.00556642702, 0.0166199878, -0.0228049066, -0.0206798315, -0.00219445676, -0.0122984741, -0.00361579889, -0.0199820455, -0.0225035902, -0.0182058644, 0.00300127151, 0.00491621764, 0.0130914124, 0.0227573309, 0.000847948424, 0.00254929671, 0.0108473962, -0.0083655, -0.011394524, 0.0257863551, -0.00886505097, -0.0032669059, -0.0166041292, 0.00915843807, -0.00779854879, 0.000181756332, -0.0164931174, 0.00365346344, 0.00260282, -0.0101178931, -0.033017952, 0.0109742666, -0.00249973801, -0.00478538265, 0.000126436498, -5.49171746e-05, 0.0142887486, 0.00156704441, 0.00097283622, -0.000166021462, 0.013487881, 0.000663590268, -0.0126235783, 0.00499947602, 0.0131389881, 0.0119495811, 0.0193794128, 0.00200216938, 0.00882540364, 0.029386295, -0.0044008079, 0.00279312534, 0.0196965877, -0.0207749847, -0.0221229792, 0.00399640901, -0.0141698085, -0.0125125675, 0.013662328, -0.00722763315, 0.000123215184, 0.00885712169, 0.00143125374, -0.0165724121, 0.0179362651, 0.0143283959, -0.00428979658, 0.0169847384, -0.0197917409, -0.00298144808, -0.0105540091, 0.0247079581, -0.00299928919, -0.0103795631, 0.00355831068, -0.0100465287, 0.0169213042, -0.0216630753, -0.00034195467, -0.00167508225, 0.0176666658, 0.019649012, 0.00636729505, 0.00477348873, -0.00863509811, -0.0212348886, -0.0142491022, 0.00344729936, 0.0205371026, 0.000776088389, -0.00329465885, -0.00490035908, -0.0167785753, 0.0171750449, -0.00677565811, 0.0141222319, 0.0765026882, 0.00192188425, 0.0279431473, -0.0228366237, -0.00593910832, -0.0284823459, 0.00864302833, 0.0515727103, 0.0041074208, 0.00995930564, 0.000642775616, 0.00385368033, 0.00779061904, -0.0144394068, -0.00873818062, -0.0238991622, -0.0108870436, -0.00192584901, 0.014066726, -0.00799678359, -0.0198076, -0.00762410229, 0.00180591701, -0.0167785753, 0.0102051161, -0.00022896094, -0.0106015857, -0.000618987484, -0.000721573888, -0.0048845, -0.00665275287, -4.9403774e-05, -0.00991172902, -0.0149786053, -0.0197758824, -0.00642280048, 0.0127345901, 0.0202833619, 0.0070016454, 0.0102526927, 0.00476555945, 0.00398055045, 0.0130834822, -0.0135513162, 0.00949147157, 0.00763996085, -0.00529286359, -0.0245493706, -0.0156763904, -0.00405984418, 0.0015620885, -0.0320664272, 0.0208542775, -0.0272295028, -0.00405984418, -0.00302704214, -0.0137971267, -0.00349685806, 0.0212983247, 0.000665077, 0.0115848295, -0.00128456007, -0.0130279772, -0.000597181672, 0.0122588268, -0.0188560728, -0.0260083769, 0.00585981412, -0.0149944639, 0.000844479306, 0.00856373366, -0.00559814461, 0.0102051161, -7.13025e-05, -0.00174049963, 0.00389134488, -0.0198551752, 0.0183168761, -0.012528426, -0.00452371314, -0.00570915593, 0.00270590209, -0.000261917448, -0.0176349487, 0.0112676537, -0.00195657532, -0.0119575104, -0.0146931475, -0.00155019446, 0.0024561265, 0.00232132687, 0.00907914434, -0.0107601732, 0.00214886293, -0.00425807899, 0.00834964, -0.00699768076, 0.0112121478, 0.027816277, -0.00252550864, -0.00238277973, -0.00228960952, 0.00274356664, -0.00968970638, 0.00758842, 0.0232172348, 0.00221824506, 0.00754084345, 0.00745758507, -0.0236454215, 0.0297193285, -0.000288183539, 0.00815140642, 0.0228524823, 0.00354839908, -0.00593514368, 0.0137574803, 0.00381601579, 0.0157715436, 0.00910293218, 0.00219842163, 0.0285457801, -0.00677565811, -0.001260772, 0.00513031101, 0.00187430799, -0.00179501413, -0.00818312354, 0.0162869543, -0.0139715737, 0.0052809692, 0.0148913823, 0.00713248039, -0.0150737576, 0.00282682525, 0.0194904245, -0.0219802503, -0.00411931472, -0.000933684874, -0.00280898414, 0.0431992821, -0.0072197034, -0.00170878216, 0.00405786186, 0.00585981412, 0.00448406627, -0.00581620261, -0.00896813255, -0.0151847694, -0.0250092745, 0.00516995788, 0.00249180873, 0.00902363844, -0.0185388979, -0.00922187325, -0.00876989774, -0.00635540066, -0.00324311783, 0.00316580641, -0.00612544874, 0.00861924, 0.0045752544, 0.0243432075, 3.30494222e-05, -0.00065863441, 0.00668050535, 0.00143620954, -0.000854886661, 0.00582016725, 0.00324708247, 0.0099038, -0.0031420181, -0.00238476205, 0.00274753128, -0.017555654, 0.00792145357, 0.00306272437, -0.00166417938, 0.00406777347, -0.00699371612, -0.00745362043, 0.00422239676, 0.00446027797, 0.0497965291, -0.0103240572, -0.0260083769, -0.0322725922, 0.00435323128, 0.0254057441, 0.0260876715, -0.00334619987, 0.0130834822, 0.00145504181, -0.00802057143, 0.00436512567, 0.00691045774, 0.0117037697, 0.00932495482, -0.00747344363, -0.00991172902, -0.00207551615, 0.00131627766, 0.0149944639, 0.00560607389, 0.00735053839, 0.00639108289, -0.00461093662, 0.00940424856, -0.0005743847, 0.00620870711, -0.0134323752]
20 Aug, 2024
Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS) 20 Aug, 2024 SSL stands for Secure Socket Layer while TLS stands for Transport Layer Security. Both Secure Socket Layer and Transport Layer Security are the protocols used to provide security between web browsers and web servers. The main difference between Secure Socket Layer and Transport Layer Security is that, in SSL (Secure Socket Layer), the Message digest is used to create a master secret and It provides the basic security services which are Authentication and confidentiality. while In TLS (Transport Layer Security), a Pseudo-random function is used to create a master secret. What is Secure Socket Layer (SSL)? The Secure Socket Layer (SSL) is a cryptographic protocol designed to provide secure communication over a computer network. It was developed by Netscape in the 1990s to establish an encrypted link between the web server and a web browser. SSL operates by using encryption to secure the transmission of data ensuring that sensitive information such as credit card details and personal data remains confidential. Key Features of SSL Encryption: The SSL uses encryption algorithms to protect data during transmission. Authentication: The SSL verifies the identity of the server to ensure that data is sent to the correct destination. Data Integrity: The SSL ensures that data has not been altered during the transmission. What is Transport Layer Security (TLS)? The Transport Layer Security (TLS) is the successor to SSL and is designed to provide improved security and efficiency. TLS was developed as an enhancement of SSL to the address various vulnerabilities and to the incorporate modern cryptographic techniques. The first version, TLS 1.0 was based on SSL 3.0 but included significant improvements. TLS continues to evolve with the newer versions offering enhanced the security features. Key Features of TLS Enhanced Encryption: The TLS uses stronger encryption algorithms compared to SSL. Forward Secrecy: The TLS supports forward secrecy which ensures that session keys are not compromised even if the server’s private key is exposed. Improved Performance: The TLS provides better performance and efficiency with the optimized algorithms and protocols. Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS) SSL TLS SSL stands for Secure Socket Layer. TLS stands for Transport Layer Security. SSL (Secure Socket Layer) supports the Fortezza algorithm. TLS (Transport Layer Security) does not support the Fortezza algorithm. SSL (Secure Socket Layer) is the 3.0 version. TLS (Transport Layer Security) is the 1.0 version. In SSL( Secure Socket Layer), the Message digest is used to create a master secret. In TLS(Transport Layer Security), a Pseudo-random function is used to create a master secret. In SSL( Secure Socket Layer), the Message Authentication Code protocol is used. In TLS(Transport Layer Security), Hashed Message Authentication Code protocol is used. SSL (Secure Socket Layer) is more complex than TLS(Transport Layer Security). TLS (Transport Layer Security) is simple. SSL (Secure Socket Layer) is less secured as compared to TLS(Transport Layer Security). TLS (Transport Layer Security) provides high security. SSL is less reliable and slower. TLS is highly reliable and upgraded. It provides less latency. SSL has been depreciated. TLS is still widely used. SSL uses port to set up explicit connection. TLS uses protocol to set up implicit connection. Conclusion While Secure Socket Layer (SSL) and Transport Layer Security (TLS) both aim to the secure communications over networks TLS is the more modern and secure protocol. The TLS has replaced SSL due to its enhanced the security features and performance improvements. Although SSL is still commonly referenced it is advisable to use TLS for the secure communications to benefit from the latest advancements in the cryptographic technology. Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS) – FAQs Why is TLS preferred over SSL? The TLS is preferred over SSL because it provides the stronger encryption algorithms, better performance and improved security features. The TLS has addressed several vulnerabilities found in the SSL and offers forward secrecy to protect data. Are SSL and TLS compatible with each other? No, SSL and TLS are not directly compatible. TLS is designed to be backward-compatible with the SSL meaning that systems using the SSL can often be upgraded to TLS. However, they operate using the different protocols and encryption standards. What versions of TLS are available? As of now, the latest versions of the TLS are TLS 1.2 and TLS 1.3. TLS 1.3 is the most recent version and offers the significant security and performance improvements over its predecessors. 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!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)
https://www.geeksforgeeks.org/difference-between-secure-socket-layer-ssl-and-transport-layer-security-tls?ref=asr10
PHP
Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)
jQWidgets jqxSortable disabled Property, Node.js Stream transform.destroy() Method, jQWidgets jqxSwitchButton enable() Method, Convert string into date using JavaScript, jQWidgets jqxSplitter height Property, How to Declare Optional Properties in TypeScript ?, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxTree checkAll() Method, jQWidgets jqxScrollBar rtl Property, jQWidgets jqxScrollBar step Property, jQWidgets jqxTabs position Property, jQWidgets jqxTooltip height Property, How to Make a Single Property Optional in TypeScript ?, jQWidgets jqxTreeMap width Property, Optional Property Class in TypeScript, jQWidgets jqxTree collapseItem() Method, Difference between Flow and TypeScript, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTabs keyboardNavigation Property, jQWidgets jqxTree destroy() Method, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), jQWidgets jqxTree collapseAll() Method, jQWidgets jqxSortable opacity Property, jQWidgets jqxScrollView buttonsOffset Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, jQWidgets jqxTabs disabled Property, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Node.js date-and-time Date.transform() Method, jQWidgets jqxListBox enableHover Property, jQWidgets jqxSlider height Property, TypeScript Optional Parameters, jQWidgets jqxSwitchButton onLabel Property, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, jQWidgets jqxToolBar theme Property, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxSplitter orientation Property, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxSlider buttonsPosition Property, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, jQWidgets jqxSwitchButton orientation Property, jQWidgets jqxToolBar tools Property, jQWidgets jqxSlider rtl Property, How to use Optional Chaining with Arrays and Functions in TypeScript ?, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTooltip opacity Property, jQWidgets jqxTree width Property, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, jQWidgets jqxScrollView showButtons Property, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, jQWidgets jqxTree clear() Method, Introduction to TypeScript, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView disabled Property, jQWidgets jqxScrollView animationDuration Property, jQWidgets jqxToolBar height Property, PHP, How to Sort an Array Having Optional Properties in TypeScript ?, jQWidgets jqxSplitter destroy() Method, jQWidgets jqxTreeMap destroy Method
GeeksforGeeks
[-0.0149582205, -0.0157640018, -0.0100502837, 0.0208916962, 0.0314400978, -0.00417540921, 0.0190017745, 0.00971332099, -0.020408228, 0.00145040534, 0.0425159223, 0.00873173308, 0.00111710513, -0.013060973, -0.0270888843, 0.000360083272, -0.00803583115, 0.00709087076, -0.0199980121, -0.00710552093, 0.0293450691, -0.00407285523, -0.0528006144, -0.036685, -0.010123536, -0.000482552772, 0.00875370856, 0.0136103695, -0.0637006313, 0.00964006782, 0.0376519375, -0.00687477458, 0.00301984651, -0.044567, 0.00370476, -0.0264149588, -0.0210528541, 0.0144674266, -0.0490793735, 0.0414317809, 0.0146212578, -0.00817501172, 0.0160716623, 0.00481637148, -0.0278067607, -0.0012581168, -0.0157493502, -0.0269277282, 0.0434242561, -0.0156614482, -0.0648140758, -0.0146505591, 0.00742417062, 0.0654000938, 0.044449795, 0.0019173919, 0.0408457592, 0.0125555294, 0.0130170221, -0.0211114548, 0.0278214123, -0.00717144879, -0.00868778117, -0.00422668643, 0.00106582814, 0.00655978778, -0.00896614231, -0.0242173746, 0.0419592, -0.0332567692, -0.0505444296, 0.0411680713, 0.0349562354, -0.0296673812, 0.0174341649, 0.0046808538, 0.0212140102, 0.0317331105, 0.0224007051, 0.022737667, -0.00322312303, 0.0430140421, -0.00130756234, -0.00219941512, -0.00288616, 0.0146066071, -0.0423694178, -0.0410801657, 0.0410801657, -0.00925182831, 0.00600306643, -0.00810908433, -0.00408384344, -0.0016234651, 0.00146414025, 0.00401059072, 0.012775287, -0.0245250352, -0.0194412917, 0.0129437689, 0.0491965786, 0.00732527953, -0.0172290578, 0.00119585183, 0.03272935, -0.0130389975, -0.0260486938, 0.0266347155, 0.014980197, 0.0443911925, -0.00139363448, -0.0270302817, 0.00325791794, 0.00451603485, -0.0145260291, -0.0439809784, -0.00913462322, -0.0517750755, -0.0109732691, 0.0222541988, -0.0292278659, 0.00627410179, -0.026532162, -0.00338611053, -0.0576353, 0.0567855649, -0.0175367184, -0.0220051389, -0.00276346179, -0.00687843747, -0.0211114548, 0.0199394114, -0.00595178967, 0.00197233143, -0.00719708716, 0.0218146816, 0.00348500162, 0.0140425609, -0.000780600123, -0.0050727562, -0.0163353737, 0.00349232694, -0.0204814821, 0.00709087076, 0.0306489691, -0.0204668306, -0.0230746306, 0.0315866061, -0.0662205294, 0.0345753208, 0.0181520432, -0.033227466, -0.019631749, -0.009552164, 0.0286711436, -0.0547344871, 0.00454899855, 0.046647381, -0.0136762969, 0.00360403745, 0.000715588219, -0.0409922637, -0.00258032978, -0.0172583591, 0.0205107834, 0.0355715565, 0.0599500872, 0.00780142285, -0.0160277113, 0.0478194244, -0.0280704703, 0.0195145439, 0.0203203261, 0.007918627, 0.0116178934, -0.0343116075, -0.00103286444, -0.0155881951, 0.00494822627, 0.00811641, -0.0310884863, -0.0354836546, -0.00112717738, -0.022327451, 0.0106363054, -0.0232064854, 0.02465689, 0.0232797377, -0.0208330955, -0.0109366421, -0.0187820159, 0.038208656, 0.0724909678, 0.0277042072, 0.00062356441, 0.0251550097, -0.00839477, 0.0274111964, 0.0368022025, -0.0104751494, 0.0265028607, -0.0165404808, -0.0311763901, 0.015060775, 0.0217560809, -0.0102920178, -0.0254333708, 0.012079386, 0.0241587721, 0.0210968051, -0.0500463098, 0.00536210462, 0.00546465861, 0.0103872465, 0.00236606528, -0.00705058174, -0.0159105062, -0.0225179084, -0.0364798903, 0.0381793566, -0.005061768, 0.0286418423, 0.00939100794, -0.0101381866, -0.0528592169, -0.0285978913, 0.0168481432, -0.0276016537, 0.00236423407, -0.0113981348, 0.0240708683, 0.0217853803, -0.00992575381, 0.00273599196, -0.0616495535, -0.0135297915, 0.0342237055, -0.00929577928, -0.0109879188, 0.0101674879, -0.00254370342, -0.00340076094, -0.0238218084, -0.0354543515, -0.0711431131, -0.0111124488, 0.027880013, 0.0458269492, -0.00882696174, 0.0106729325, -0.00600306643, -0.014980197, -0.0138960555, 0.0189285222, -0.0409922637, 0.0285246391, 0.03771054, -0.0143575482, 0.0128924921, -0.0500170067, 0.0251110587, -0.0101308618, 0.00587853696, 0.0128778415, -0.0268837754, 0.0389118865, 0.00812373497, 0.00697366614, 0.00868778117, -0.0156028457, 0.00190640404, -0.0289055537, -0.00343372487, 0.0132221291, -0.0236899536, -0.0110758226, 0.00357473642, 0.02465689, 0.0678613856, 0.00531815272, 0.00922252703, -0.0260047428, 0.0162621196, 0.0148483412, 0.00565877836, -0.00193570508, 0.00417174678, 0.0293890219, -0.0270888843, 0.00642427, -0.031059185, 0.0457097441, 0.023426244, -0.0377984419, 0.0302973557, -0.00803583115, 0.000477058813, 0.00487863598, -0.0338134915, -0.00920055062, -0.00369377225, 0.0350441374, 0.00834349357, -0.00592981372, -0.027836062, 0.00637299335, 0.0110684969, -0.0100356331, 0.00308760535, -0.00219025859, -0.0162474699, -0.0354836546, -0.00401059072, 0.000177981405, 0.0179908872, -0.000792045845, 0.00623015035, 0.00588952471, -0.00812373497, -0.00385675975, 0.0373003222, 0.0655173, 0.0102700414, 0.0193240866, 0.0196610503, -0.0248326976, 0.0282169767, -0.00141561031, -0.0178004298, -0.00784537476, -0.000988912769, -0.00354177272, -0.0359524712, 0.00797723, 0.017756477, -0.0287150964, -0.00446842052, 0.00348683307, -0.0239243619, 0.0101674879, 0.0115959179, -0.00633270433, -0.00329820719, 0.00118394825, -0.00504711736, 0.00185238, -0.00147146557, -0.00112443045, 0.00423401175, 0.0131415511, 0.0014348391, 0.00735091791, 0.0318503156, -0.0177418273, 0.0260193925, -0.0323484354, 0.0433656536, -0.00520094857, 0.0123723969, -0.0158226043, 0.00579795893, 0.000507733435, -0.0126873842, 0.0200126637, -0.0313228965, -0.0230160281, -0.00273049786, 0.0237485562, 0.00985982642, -0.00859255251, -0.0207012407, 0.00536576705, 0.0150461243, 0.0120647354, -0.0111344252, 0.0063180537, 0.0307954755, -0.00588219939, 0.0140352352, 0.0240269173, -0.00814571, -0.00619718665, -0.00534012867, 0.0448600128, -0.0197050013, -0.0187527146, 0.0275723524, -0.0472920053, 0.000933515315, 0.0461785607, -0.0177271757, 0.00363700138, 0.024041567, -0.0165404808, 0.0082482649, -0.0116691701, -0.0185476076, 0.012409023, 0.0120647354, -0.0230160281, -0.0194559433, 0.0210675038, -0.0431312472, 0.000142842953, 0.00610928331, 0.0209649503, 0.00237155915, -0.0186208598, 0.00580162136, -0.0128119141, 0.00862918, -0.0336083807, -0.0221369937, 0.00169854914, 0.0118523026, 0.0173462611, -0.00533280335, 0.0353957489, 0.000181186217, 0.00382745848, -0.00180201873, 0.0100502837, -0.00517897261, -0.00332201435, 0.0493723825, 0.0399667248, -0.0142476689, 0.0270742327, 0.0226790644, -0.0152805327, 0.042808935, 0.00558552565, 0.0123723969, 0.0115080141, 0.0133320084, -0.0370073132, 0.00690773875, -0.0165551323, -0.0336083807, -0.0151486779, -0.0130536482, 0.0408164561, 0.0379449464, -0.0175074171, -0.0541484654, 0.0321726277, -0.0332567692, 0.0111564007, -0.00120226154, -0.00304365368, 0.000640046317, 0.0376226343, -0.0153098339, 0.020203121, 0.0277042072, -0.0121086873, 0.024407832, -0.0226644147, 0.0197050013, 0.0274844486, 0.0444204956, 0.0516578704, 0.0195584968, -0.0123430956, 0.00976459775, 0.0193094369, -0.0139033804, -0.00936903246, -0.0133027071, 0.0219904892, 0.0154416887, -0.0296527315, 0.0247301441, 0.0525662042, 0.00895149168, 0.0116032427, 0.0154123884, 0.0110245459, -0.0263124034, -0.0270302817, 0.0224007051, 0.0555842221, 0.0142476689, -0.000594721118, 0.009427635, 0.0486105531, 0.0215216707, 0.016364675, 0.0294915754, -0.01755137, -0.00973529648, -0.0121599641, -0.0229134746, -0.0340478979, -0.00540971896, -0.0200859159, -0.00470649218, -0.00295941299, -0.0371831171, 0.0148922931, -0.0383258611, 0.0472041, 0.00796990376, 0.033022359, -0.0293890219, 0.0139839584, -0.0175367184, 0.0384723693, 0.000927563524, 0.00732161663, 0.0102260904, 0.00615689764, -0.0395565107, 0.0337548889, -0.00358572439, 0.0272500403, -0.0205986854, -0.00655612536, 0.00286418432, 0.00583092263, 0.00517531, 0.0234848466, -0.017185105, -0.0101894634, 0.011837652, -0.00637665577, 0.0305903666, 0.000288432871, -0.0106802573, -0.0375640318, -0.0178443808, -0.000699564174, 0.0292864665, 0.0151340272, -0.00678687124, 0.0344288126, -0.00443545682, -0.00821896363, -0.0222541988, 0.0255066231, 0.00788200088, -0.00862918, -0.0252722148, -0.000624022272, -0.00473945588, -0.0124969268, 0.00271401601, -0.0117057962, 0.0348976329, -0.0134565383, 0.0270302817, 0.0380914547, 0.00179103087, -0.0216242243, -0.0354543515, 0.0218293332, -0.0157640018, -0.00183498254, 0.0110025695, -0.0190017745, -0.0078527, 0.0466766804, 0.0353957489, 0.0313521959, 0.0146212578, -0.00687111216, 0.0271621365, -0.00349232694, -0.0039922772, 0.00263893185, -0.013712923, -0.016408626, 0.00781607348, 0.00242833025, -0.00926647894, 0.0423694178, 0.0315573029, 0.00876103435, 0.00616422249, 0.0110318707, -0.00992575381, -0.00944228563, 0.0289934557, 0.00329820719, -0.0279972181, -0.012936444, -0.0322898328, -0.00337878522, 0.0162181687, -0.00534745399, 0.0208623968, -9.25388813e-05, -0.00109329796, -0.0078527, -0.000116117124, 0.0220490918, 0.0294183232, 0.000551227306, -0.0114420867, 0.014855667, -0.00216462, 0.0322312303, 0.0409922637, 0.0583385266, 0.0047431183, -0.00109970756, -0.0103432946, 0.0247301441, 0.0181520432, 0.0184304025, -0.00565511594, 0.02383646, -0.00308211125, 0.0109732691, 0.00751573686, -0.0118083507, 0.0300629474, 0.0292718168, -0.00724836392, -0.0360989757, 0.016979998, -0.0135371163, -0.00848267321, 0.00427796319, 0.0193533879, -0.00523024937, 0.0200273134, -0.0254919734, 0.00387507281, -0.0343995132, -0.0235287976, 0.0136103695, -0.0019631749, 0.0114787128, -0.00887091365, -0.0264149588, 0.000690407585, -0.00358755561, -0.00301435241, 0.00297589484, 0.0152512323, -0.000421432487, 0.00372490473, 0.0989791751, -0.00895881653, 0.0358059667, -0.0263417047, 0.0484640487, 0.0133759603, 0.0170386, -0.00488962419, 0.0139839584, 0.0121379886, 0.0256824307, -0.0327586494, -0.00718976185, 0.0239390135, -0.0263710059, 0.00541338138, 0.0103652701, -0.00507641863, -0.00598109048, 0.0174195152, 0.0338427909, -0.0213751663, -0.0178150795, 0.00525588822, 0.0113615086, -0.0140572116, -0.0117497481, -0.00829221681, -0.0358645692, 0.00588219939, 0.0278507117, 0.00302167772, -0.0349269323, -0.0058126091, 0.0363333859, 0.00182582589, 0.000209228296, -0.0450651199, -0.0119035793, 0.00144124869, 0.0282755792, 0.0270742327, -0.000471107051, -0.0462078638, -0.00405454217, -0.0311470889, -0.0272207391, 0.0284367353, 0.00112626178, -0.00179194647, -0.0052815266, 0.0141377896, 0.00839477, -0.018327849, -0.00923717767, -0.0346339196, 0.000379083212, 0.0351027399, -0.00265358249, -0.00898079295, 0.0129730701, -0.0212872624, 0.038853284, 0.0212872624, -0.0379449464, 0.000399914483, -0.0137861762, -0.0172144063, -0.00276895566, 0.016364675, 0.00205657212, 0.00336230337, -0.00126086373, 0.00930310506, 0.00981587451, -0.0250671059, 0.0294769239, 0.00407285523, 0.000997153693, 0.00580894668, -0.0266493671, -0.0336376838, 0.0253601167, -0.0106363054, 0.0455046371, -0.0256824307, -0.00186886196, 0.0315866061, -0.0113615086, 0.0370659158, -0.00220490922, -0.000787009718, 0.00480904616, 0.0207891427, 0.0121672889, 0.014980197, -0.016979998, 0.00256567914, 0.0162914209, -0.0161888674, 0.0088782385, 0.000904672, -0.0296966825, 0.0246275906, 0.0161595661, -0.0291106608, 0.0181813445, 0.0110684969, -0.0187380649, 0.00964739267, -0.0505151264, -0.00222322228, 0.0148922931, 0.00460760063, -0.00123064697, -0.00383844646, 0.0263563562, 0.015104726, 0.0390290879, -0.00962541718, -0.00933240633, -0.0222541988, -0.00757433893, -0.0380328521, 0.0166869871, 0.000287059403, -0.0175953209, 0.0487863608, 0.0326414444, 0.0456511416, -0.0397616178, 0.00812373497, 0.0252429135, 0.00402890379, -0.039146293, -0.0361575782, 0.0191922318, -0.0199247599, 0.0204521809, -0.0197343025, 0.0192508344, 0.00828489102, -0.0206719395, 0.0580455139, -0.00137898384, 0.000480263639, 0.015427039, 0.0400253274, 0.0262245014, 0.0109366421, 0.0306489691, -0.0255212747, 0.000476143177, -0.0537675507, 0.0284953378, -0.0486691557, -0.0231478829, 0.0013304539, -0.00152365817, 0.0101821385, -0.00606166897, -0.00420471048, -0.0384723693, -0.0249645524, -0.0406699516, -0.031879615, -0.00869510695, 2.70978107e-05, 8.3267827e-05, -0.0203935783, 0.0335790813, -0.00612027105, 0.0315280035, 0.016408626, -0.00911264773, 0.0165844336, 0.0035344474, 0.000556721236, 0.0164672285, -0.00221040309, -0.0184011012, -0.0304438621, 0.0100576086, 0.00683082314, 0.00327989389, 0.00590417534, 0.0174488164, -0.010328644, -0.0306196678, 0.00718976185, -0.00216645142, -0.0294915754, 0.00708720786, 0.00993307866, -0.00437319186, 0.0110831475, 0.0048529976, -0.00302534038, -0.00846069772, 0.00557453791, -0.0095375143, 0.0211554077, 0.0113395322, -0.00590051245, -0.00252722134, 0.0512476563, -0.0381500572, 0.0186062101, 0.0275723524, -0.000335360441, 0.0249499027, -0.0233822931, 0.0141451145, 0.00253454666, -0.00890021492, -0.000498119, -0.0331981666, 0.0271914378, 0.0272939913, -0.0182252955, 0.0191629305, -0.00357290497, 8.71593802e-05, 0.011998808, 0.0120647354, 0.000357107376, -0.0236753039, 0.00443545682, -0.0410508662, -0.00136524893, 0.0281583741, 0.0133613097, 0.00336962845, -0.00386042218, 0.0120574096, 0.00726301456, -0.0144234756, 0.00418273453, -0.00154105562, -0.0297699366, -0.00380914542, 0.000732985791, 0.0078527, -0.0218879357, -0.0347218253, 0.0284660365, 0.00345020671, -0.0252722148, 0.00439883024, -0.018122742, 0.0346339196, -0.0163207222, 0.0072447015, -0.0235141478, -0.00611294573, -0.0155881951, -0.0110831475, -0.00141652592, 0.0207305402, 0.00769154355, -0.00936170761, 0.0223128013, -0.0342237055, -0.00906869583, -0.00531449029, -0.0121526383, -0.00679053413, 0.00110794848, -0.00761096552, -0.0330809616, -0.00783804897, -0.0007760218, 0.0453581288, -0.0235874, -0.0231918357, -0.0254187193, 0.0353957489, 0.009552164, 0.0270742327, -0.00939833373, 0.0290374085, 0.00568075432, -0.0205547344, -0.0241734218, -0.00921520125, -0.0141084883, 0.0048566605, -0.0156174963, -0.00322678569, -0.0195731465, -0.0242173746, -0.0143648731, -0.0134931644, -0.021345865, 0.0244517829, -0.0753038749, -0.0222395491, -0.0171118528, -0.00195768103, 0.0525955074, -0.0215363223, -0.0241734218, -0.00717511121, 0.0092078764, -0.000447070954, -0.0026938715, 0.0042120358, -0.0145406798, -0.0215949249, -0.00557087502, -0.0279679168, 0.0238657612, -0.0544414781, -0.0213165637, -0.0339306928, -0.0292278659, 0.0147531126, 0.0318210125, 0.0153244846, 0.012328445, 0.00312240049, -0.0108047873, 0.00571738044, -0.0113615086, -0.0254480205, -0.00925915316, 0.0065671131, 0.0132294549, -0.033022359, 0.0241001695, 0.00324143609, 0.00911264773, -0.0411094688, -0.0210528541, -0.0408457592, -0.00621183682, -0.00147604384, 0.00317184604, -0.000293926831, -0.0307075717, -0.0184011012, 0.00181117537, -0.0418126956, -0.00286784698, 0.00055946823, -0.0243638791, 0.00282206386, 0.0121746147, 0.010570378, -0.0123943733, -0.00857057702, -0.0152951833, -0.00525222532, -0.00673559448, 0.0237485562, -0.0301801506, -0.0300922487, -0.013551767, -0.0199394114, -0.00684547378, 0.016452577, 0.0388825834, 0.01755137, 0.0221076943, -0.0334325768, -0.0135810683, -0.0167455897, -0.0189431719, -0.0369194075, -0.0167016368, -0.0353371501, -0.00895149168, -0.00011869242, -0.00539506832, -0.0186648127, -0.0198075566, 0.00476143183, -0.00640595704, -0.0149215944, 0.00500682835, 0.0221809465, 0.0218146816, 0.00571738044, 0.03272935, -0.000972430862, -0.035425052, 0.0256091766, 0.0112809306, -0.0233676415, 0.00775014563, 0.0130023714, 0.00990377832, -0.00150351366, -0.0162767712, -0.0413731784, -0.00505078025, 0.0170679018, -0.00674292, -0.00523024937, -0.000976093521, 0.0180348381, 0.00562947709, 0.0150168231, -0.0118230013, 0.0250671059, 0.00183223549, -0.0140279103, 0.0150314737, -0.0100649344, -0.0173462611, 0.00898079295, -0.0282609276, 0.0158812068, 0.00509106927, -0.00548663456, 0.00674658222, 0.0261365976, -0.0324070379, -0.0293304194, -0.0110538471, -0.00475410651, -0.0228402223, 0.0370073132, 0.0106729325, 0.0104018971, -0.0162328202, 0.00476509426, 0.0111124488, -0.0184157528, 0.017141154, -0.00901009422, 0.00234408933, 0.0205986854, -0.000271722092, -0.00594812678, -0.0208623968, -0.000373360352, -0.00576499477, 0.00155662186, 0.024041567, 0.00703959353, -0.0035014837, -0.00720807491, -0.0107315341, -0.0327879526, -0.0168627929, -0.0307368729, -0.00944961049, 0.00190823525, 0.0164818782, 0.00250524562, -0.00594080146, 0.0287297461, 0.0229281243, 0.0979829356, -0.00801385567, -0.00807978306, -0.0290813595, -0.00436952943, 0.0056075016, 0.00470649218, 0.0267812219, 0.0268398244, -0.00365165179, 0.0130682988, 0.00498851528, -0.0333153717, 0.0237339064, -0.0102480659, 0.0197343025, 0.00262428145, 0.0145187043, -0.00211517443, 0.0304145608, -0.0125482036, -6.4611253e-05, 0.00334765273, 0.0143428976, -0.00178187422, 0.00712383445, -0.00560383871, -0.015427039, -0.00318283401, -0.00766224228, 0.0106582819, -0.00707255723, 0.0139107062, -0.00116929773, -0.0133686354, 0.0572250821, 0.0225179084, 0.00131305633, -0.00677222107, -0.00135426107, -0.0173316114, -0.00991842803, -0.00228182459, 0.0178150795, 0.0176539235, -0.0270449314, -0.00377251883, 0.00386042218, -0.0360403769, 0.0234115925, 0.0052778637, -0.00416075857, 0.0173902139, -0.00744614657, -0.00884161238, 0.00608364446, 0.0292718168, -0.00848999899, 0.0339892954, -0.0113029061, 0.00333117088, -0.0043841796, 0.00176539237, 0.00492625032, -0.017756477, 0.0185036566, -0.00527420128, -0.00841674581, -0.00726301456, -0.00358206173, 0.0346632227, 0.0255359244, 0.0131269, 0.0155149419, -0.00659275148, 0.0155442432, -0.0269863289, 0.0135810683, 0.0155881951, -0.0122918189, -0.00368644693, -0.00736923097, -0.00441348087, -0.00610195799, 0.010123536, 0.00080257596, -0.0166576859, 0.0104385233, 0.0292425156, 0.022854872, -0.00888556428, -0.0452702269, -0.0123577463, 0.0021975839, 0.00518629793, -0.0143721979, 0.00546465861, 0.0263563562, 6.42678788e-05, 0.0124016982, -0.00423034886, 0.00461492594, -0.00580528378, 0.00737289386, -0.00570639269, -0.0172437076, 0.019426642, 0.00894416589, -0.0335204788, 0.0135883931, 0.0148336906, -0.0131928287, 0.000669347413, 0.00271401601, 0.0142183676, -0.00874638371, 0.0313521959, 0.0118596274, 0.000811732549, -0.0202910248, -0.0402890369, 0.0116105676, 0.016936047, -0.0304731634, -0.0346046202, -0.0132807316, -0.000317276164, -0.00308211125, -0.00540239364, 0.0136030437, -0.0192068834, 0.0194852427, -0.0193094369, 0.00662937807, 0.00794792827, 0.0157054, -0.0083141923, -0.00470282929, 0.0331102647, 0.0111783762, 0.0156028457, 0.0341944061, -0.0146505591, 0.00452336, -0.0020730542, 0.0044610952, 0.00653048651, 0.0121160122, 0.0119035793, -0.0104898, -0.0399374254, -0.0345460176, 0.0113834841, -0.013427237, 0.0490500703, -0.00255469116, 0.0143941743, -0.0147018358, 0.014284295, -0.018489005, 0.00686744973, -0.0121819396, 0.012694709, -0.0025363781, -0.0241441205, -0.00858522765, 0.00165093492, -0.00925915316, -0.00729964115, 0.0118449768, -0.00343372487, 0.00502514187, 0.010694908, -0.0176246222, -0.0102920178, 0.0204375293, 0.0112150032, -0.049225878, 0.0315280035, -0.00531815272, 0.00295941299, -0.011632544, 0.036362689, 0.00193936774, -0.0129730701, -0.0292864665, -0.0153391352, -0.00342823076, 0.0139400065, 0.0115739414, -0.0210382026, 0.0129877208, 0.00950821303, -0.0180787891, -0.000403348211, 0.0314987, 0.0312935933, -0.019587798, 0.00103835831, -0.00709453318, -0.00726667745, 0.0131928287, 0.0175953209, 0.000525130949, 0.00908334646, 0.0177271757, -0.0200859159, 0.016364675, 0.0299603939, -0.0141451145, -0.00477241958, -0.00504711736, -0.00248876377, 0.0169946477, -0.0223567523, -0.00207671663, 0.0245396867, 0.011962181, 0.00427796319, -0.0112443045, -0.0288469512, -0.00757433893, 0.0129730701, 0.00966936909, 0.0032286169, 0.000592889788, 0.0390290879, 0.0187087636, 0.0132807316, 0.0147970645, -0.0294476245, 0.0396151133, 0.024407832, -0.00922252703, 0.0102773672, -0.0320261233, 0.0118010249, -0.0232064854, -0.0215363223, 0.0115299895, 0.0149508957, 0.0456218421, -0.0142330183, -0.0042120358, 0.0100063318, 2.37642362e-05, -0.00996970572, -0.0215363223, -0.0133027071, 0.0045270226, 0.017668575, 0.00387873547, 0.0071787741, -0.0284367353, 0.0192068834, 0.00592981372, -0.00233859546, 7.58280876e-05, 0.0277188569, -0.0496653952, 0.0175660197, 0.0170972031, -0.0146578839, -0.00464056479, 0.0125408787, 0.00537309237, -0.0250524562, 0.00976459775, 0.00402890379, 0.0209209975, 0.00188259687, 0.0129730701, -0.0171558037, 0.00792595278, -0.00810908433, -0.00102645473, 0.0147457877, 0.0195145439, -0.0269570276, -0.0121965902, -0.00494822627, 0.0106289806, 0.00265907636, -0.0450944193, 0.0132148042, 0.012899817, -0.00866580568, -0.00928845443, -0.0152512323, -0.0114347609, 0.0059224884, 0.0127899377, -0.00460027531, 0.00532181561, -0.0221369937, 0.0260340441, 0.00967669394, -0.0156467967, 0.0153098339, 0.0110391965, -0.0104311984, -0.0238071587, -0.021917237, 0.00544634508, 0.00136616465, 0.00928845443, -0.000787925383, -0.00467352849, 0.0256531294, -0.00816036109, -0.00482735923, -0.0358938687, 0.00382013316, 0.0375054292, 0.00149801967, 0.00331835169, 0.0167455897, 0.0107901366, 0.0098818019, -0.00289165415, 0.00140279101, 0.0058126091, -0.0026938715, 0.0116178934, -0.0217121281, -0.027103534, 0.00490061194, 0.00529617723, 0.0239390135, -0.0200419649, -0.00431825221, -0.0416954905, 0.00077007, -0.0113248825, -0.013712923, -0.00321946037, 0.0115373153, 0.00600672932, 0.00233310158, -0.00442080619, -0.0135078151, -0.0136762969, -0.0215363223, 0.0194119904, -0.00924450252, -0.00700296741, -0.0106143299, 0.00933973119, -0.00802118145, 0.0352785476, -0.018489005, 0.00976459775, -0.0013304539, -0.00840942096, -0.00071787741, 0.004776082, -0.0133979358, 0.00061807048, -0.00660373969, -0.0265028607, -0.0221955962, -0.00466254028, 0.0286564939, -0.0226058122, -0.0124969268, -0.00487863598, 0.0218879357, -0.0119914822, 0.0211407561, 0.0443911925, -0.0105996793, -0.0141817415, -0.0125262281, 0.0119255548, 0.0255359244, 0.0131415511, 0.0106216548, 0.0221516453, 0.00986715127, -0.0257117301, -0.0113395322, -0.0201445185, 0.0261805486, -0.0194412917, -0.00376519375, -0.000586938, 0.0116032427, 0.0119328806, 0.00231845095, 0.0131488768, 0.0104165478, -0.0013496828, 0.0101455124, 0.0422815122, -0.0490500703, -0.00551593537, -0.048083134, 0.000308348477, -0.010570378, 0.00676123286, 0.0193387382, 0.00756701361, -0.00905404519, 0.00554157374, 0.00780142285, 0.012328445, 0.00539506832, -0.042808935, 0.0104458481, -0.000945876702, 0.00390803674, 0.0176392738, -0.0307368729, 0.0164672285, -0.00105117762, 0.0241441205, 0.0169506967, 0.0115446402, 0.00472114282, 0.0298285373, -0.032817252, 0.0255212747, -0.0239829645, -0.0166430343, -0.00969867, -0.00321762892, -0.0111344252, -0.0213605147, 0.0135297915, -0.0314108, 0.00829221681, -0.00865848, 0.00126086373, -0.0162328202, -0.012328445, -0.0147824138, 0.0108707147, 0.0121013615, -0.0135664176, -0.00469916686, 0.00199980126, -0.0288469512, -0.0180348381, -0.0265907645, -0.0174195152, -0.0106582819, 0.00380914542, 0.0196024477, -0.00675390754, -0.00263893185, 0.000725660473, -0.000654696836, -0.0165111795, -0.0137861762, -0.0180201884, -0.00859255251, 0.000337420701, -0.00157951342, 0.00153556175, -0.00210235524, -0.00309676188, -0.00473945588, -0.00439516781, 0.00228915, 0.0136176944, 0.00616422249, 0.00409483118, 0.0151340272, -0.00534012867, 0.0120134586, 0.00850465, 0.000997153693, 0.0245982893, 0.00349049573, 0.00746812252, -0.00658542616, 0.0081383856, 0.000434709567, -0.00423034886, -0.00167199504, 0.00611660816, 0.0156028457, 0.00988912769, 0.0191189796, 0.012247867, 0.0572543852, -0.00733993, -0.00403989153, 0.00733626727, 0.0206426382, 0.0223421026, 0.00727034, -0.00836546905, 0.000118349046, 0.0129730701, 0.011061172, -0.00373772392, 0.00440615555, -0.00277628098, 0.0167162884, -0.00644990848, 0.00911997259, 0.00790397637, 0.0348976329, 0.00767689291, -0.0151193766, 0.00529251434, -0.0118669532, 0.0075596883, -0.0087683592, 0.00718976185, -0.00179194647, 0.00419738516, 0.00605068076, 0.00656345, -0.00244298065, 0.00872440822, -0.0103652701, 0.00509106927, 0.0163939763, 0.022122344, -0.0118449768, 0.0107681612, -0.0274697989, 0.0120720603, 0.00627043936, 0.00591882598, 0.0125042517, -0.00303815957, 0.00515699666, -0.000734359259, 0.0042120358, -0.0123870475, -0.0157640018, -0.0116984714, -0.012694709, 0.00972064584, -0.000718793075, -0.00456364919, -0.000386866333, 0.00952286366, 0.00807245821, -0.0263563562, -9.20238235e-05, -0.00268471497, 0.00053108274, 0.0175953209, 0.0198954586, -0.000801202434, 0.00288616, -0.016979998, -0.0210821535, 0.00436586654, 0.00594080146, 0.00279276283, 0.0198222063, -0.0218439829, 0.00100905728, 0.00178645249, -0.00270485948, -0.00914194901, -0.0221516453, -0.016452577, -0.0185183063, -0.00209136726, -0.00639130641, -0.0011409123, -0.00636200514, -0.00178187422, -0.0150461243, 0.0193533879, 0.0183571503, -0.0168627929, -0.00176813931, 0.0038164705, 0.00251073949, -0.000987997, 0.0110977981, -0.0117863743, -0.00291179866, 0.0054207067, -0.0127240103, 0.0058126091, -0.0234555453, 0.0120647354, -0.0111197745, 0.0245543364, 0.0141817415, -0.0237925071, 0.0264003072, 0.0155442432, 0.00205290946, -0.00149161008, 0.000852021563, -0.000884069654, -0.0206719395, -0.00268105231, 0.0221955962, 0.0128558651, -0.000997153693, 0.00399594, -0.00760364, 0.0184011012, 0.00187893421, -0.0176539235, -0.00403989153, -0.0145113785, 0.00248693232, -0.0127166854, 0.00398128945, -0.0053914059, 0.0163500234, -0.00733993, -0.0106802573, -0.0219758376, -0.0156174963, 0.0108487392, 0.0102260904, 3.23056265e-05, 0.0131195756, -0.00840942096, 0.00173425989, 0.00453801081, 0.0245543364, 0.00595178967, 0.0131635275, 0.0266493671, -0.0342237055, -0.0112809306, 0.00823361427, 0.00418273453, -0.000323456887, 0.0093177557, -0.00847534835, -0.0225911625, -0.0129071428, -0.00691140117, -0.0050288043, -0.0270009805, 0.0145919565, 0.0107242092, 0.00904672, 0.00672826916, -0.0209942516, -0.00371757941, 0.00899544358, 0.00873173308, -0.010284692, 0.0208916962, 0.00605434366, 0.0166576859, 0.0107608354, -0.000771901337, 0.010694908, 0.00411314424, -0.0100356331, 0.00587853696, 0.0278653633, 0.0206865892, -0.00170312752, 0.0121746147, 0.0135297915, 0.0138887297, 0.00758898957, 0.00336596603, -0.00203642761, -0.00725935213, 0.0098818019, -0.00553424843, -0.00417540921, -0.00509473169, 0.000633178861, -0.00443545682, 0.00423401175, 0.000314758101, 0.0324070379, 0.0255212747, -0.0260340441, -0.00743149593, 0.00985982642, 0.0144820772, -0.022488609, -0.00256201648, -0.0288176499, 0.00234775199, -0.0179469343, -0.00229281257, -0.00213715038, -0.00391169917, 0.000903298554, -0.00639130641, -0.0128045883, -0.00129382755, 0.0307368729, 0.0201298688, -0.0338427909, -0.00345936324, 0.0201884694, -0.0190896783, -0.0210675038, 0.0207451917, 0.00608730735, -0.00117570732, -0.000835081853, -0.00931043, -0.00236057141, -0.00522658695, 0.0286418423, -0.00396297639, 0.00355092925, -0.00568441674, 0.00741318287, -0.0148703177, -0.00435487879, -0.0048529976, -0.0113102319, -0.0190164261, 0.0109879188, 0.0199833624, 0.0209649503, 0.0146652097, 0.0281730257, -0.00125994813, -0.0106436312, -0.0113761593, -0.000581444066, -0.00788932573, -0.0182106439, -0.00542436959, -0.0114787128, -0.0105191013, 0.0372710228, -0.00630706549, -0.00145681493, -1.43214938e-05, -0.00977924839, 0.0191336293, -0.0160570126, 0.00325242407, -0.00978657324, 0.0263124034, 0.0345167182, 0.00960344169, 0.0169067457, -0.0102700414, -0.00547930924, 0.0112150032, -0.00525222532, -0.0144527769, 0.00666966708, -0.0012398035, -0.000339709833, 0.0231039319, -0.0157347, 0.0067099561, 0.00317001459, 0.0065341494, 0.0187234152, 0.00399594, -0.0208037943, 0.0131122507, 0.00642427, -0.00956681464, 0.0260047428, 0.013632345, -0.00540239364, -0.0143209212, 0.0209796, 0.0178150795, 0.0330809616, 0.0262098499, 0.00501781655, 0.0231332332, 0.00369010959, -0.0159544591, 0.00885626301, 0.0029282805, -0.0149508957, 0.00867313053, 0.00662571518, -0.00560017629, -0.0149508957, -0.0154856406, 0.0288176499, 0.01114175, -0.0147824138, -0.00280191936, -0.00547564635, 0.0288176499, -0.0135371163, -0.0160423629, 0.00360220624, 0.0121819396, -0.00914927386, 0.00901009422, 0.0032670747, -0.00851197448, -0.00550494762, -0.0179469343, -0.013185503, 0.0102260904, 0.00687111216, -0.0187380649, 0.00399594, 0.00263343798, -0.00950821303, -0.00389704877, -0.00931043, 0.00843139645, -0.0159691088, -0.00480904616, 0.00600306643, -0.00805780757, -0.0166283846, -0.00735091791, -0.00710918382, 0.00611294573, -0.00139088742, 0.000252722151, -0.0288176499, 0.0131562017, -0.0230892804, 0.00817501172, -0.00190091, 0.000602504238, -0.0061752107, 7.53702552e-05, -0.00103744271, -0.0105850287, 0.00484933518, -0.0190457273, -0.01547099, -0.0237339064, -0.000998985, -0.0186062101, -0.00694802776, 0.00648287218, -0.00268288353, 0.0091566, 0.0156028457, -0.0185329579, -0.0014806221, 0.0105630532, -0.0195438452, 0.012775287, 0.0174927674, 0.0223714039, 0.00973529648, 0.00350514613, 0.00754503766, 0.0155588938, 0.00894416589, -0.00486398581, 0.0020345964, 0.00833616778, -0.0109512927, -0.00743149593, -0.0016500192, -0.00928113, 0.0139693078, 0.0103652701, -0.0298285373, -0.00383844646, -0.000121096025, -0.00800653081, -0.0117424233, 0.00576499477, 0.01126628, -0.0218879357, -0.0110172201, -1.45575621e-06, -0.0209796, -0.0160863139, -0.00482369633, 0.0160277113, 0.0112882555, 0.00398861477, 0.0144381262, -0.0164232757, -0.00197599409, 0.00169397087, 0.000306059344, 0.00442446861, 0.0193826891, -0.00271584745, -0.0174488164, -0.000214149972, 0.0173902139, 0.0204228796, -0.0251989607, -0.000578697072, 0.0142989457, 0.00561116403, -0.0139766335, 0.00199980126, -0.0102920178, -0.00376519375, -0.00563680241, -0.0123943733, 0.0211993586, -0.00961076654, 0.00197050022, 0.0292278659, -0.00536943, -0.00782339834, 0.00394466287, -0.00217927061, 0.00700296741, -0.00761096552, 0.0114127854, 0.00752306217, 0.00532181561, 0.00702860579, -0.0155881951, -0.0106656067, -0.00526321353, -0.00355642312, -0.000944961037, 0.00934705697, -0.0116691701, -0.0159691088, -0.000625853543, 0.0130976, 0.0053914059, 0.00418639742, -0.0174781177, 0.00389338611, 0.00594812678, 0.0433070511, 0.0147311371, 0.0193533879, -0.00472114282, 0.0284953378, -0.0158812068, 0.00378350681, 0.00117662305, -0.00552326068, -0.000503613, 0.00760364, 0.0191629305, -0.0222102478, -0.0103432946, 0.00555988727, -0.0170386, 0.0211993586, -0.00111435819, 0.00637299335, -0.0148410164, -0.0135883931, 0.00547930924, 0.00479805795, -0.026693318, 0.0204814821, 0.00284037716, -0.00338611053, 0.0059224884, 0.0155588938, -0.00621549971, -0.00558918808, 0.0118816029, 0.0028367145, -0.00733993, 0.00303632836, -0.00704325642, 0.0191336293, -0.0265175123, -0.0220490918, -9.82617566e-05, -0.0322312303, -0.00799920503, -0.0115299895, 0.00824093912, -0.000517347886, -0.0150314737, -0.00492625032, -0.00451603485, -0.0020016327, 0.0141524402, -0.00923717767, -0.0227816198, 0.0173902139, 0.00682716072, -0.0139107062, -0.00859987829, 0.0130682988, -0.00701029226, 0.000428986677, -0.0252868645, 0.0176978745, -0.00230013765, 0.0195438452, 0.00451237196, 0.0179908872, 0.0066440287, -0.00227449927, -0.0022488609, -0.00289897947, -0.0016234651, 0.0168481432, -0.014694511, 0.00518996036, 0.00672826916, 0.00310591841, -0.0168481432, 0.00701761758, -0.0231185816, -0.0113175567, -0.00175348879, 0.00374138658, -0.028041169, -0.0065671131, -0.00645357138, -0.0267226193, 0.00972797163, 0.0166576859, -0.00510205701, -0.0052778637, 0.0158079527, 0.0270156302, 0.0103799207, -0.00891486555, 0.0278653633, -0.0150754256, -0.00757433893, 0.00827756617, 0.00192837988, -0.0064901975, 0.0115666166, 0.0130902743, 0.0210089013, -0.000250890822, -0.00650851103, 0.00790397637, 0.00577232, 0.0118303262, -0.00657810085, 0.0116105676, 0.0221076943, -0.00261695613, 0.0239536632, 0.0209209975, 0.0192508344, -0.03094198, -0.00578697072, -0.00267922087, 0.0178297311, -0.00583092263, 0.00670629321, 0.0245396867, -0.00270669069, 1.9286088e-05, 0.0282316264, 0.000681251, -0.00573569397, -0.009552164, 0.00795525312, -0.0130682988, 0.00538408058, 0.0154856406, 0.0136176944, 0.00688942522, -0.00924450252, -0.00712017156, -0.00588219939, -0.00182216323, -0.0226204637, -0.028451385, 0.00153739308, -0.00892219, 0.00579429604, 0.010079585, 0.0147164864, -0.00879033562, -0.0109000159, 0.00219575246, 0.0329930596, -0.0136250202, 0.00293377438, 0.016613733, -0.0106363054, 0.0149875218, -0.00741318287, 0.019470593, -0.00322678569, -0.00470649218, 0.00649752282, 0.0319382176, -0.0263710059, -0.00323594222, 0.0129071428, 0.00195584958, 0.00469916686, 0.014980197, -0.0186208598, -0.00834349357, -0.0174195152, 0.0150168231, -0.00464788964, 0.0228255708, -0.0291546118, -0.000803491566, -0.00862185378, 0.0188699197, 0.0315280035, -0.00716412347, 0.00417174678, 0.00625212584, 0.0052778637, -0.00789665151, -0.0060323677, 0.0197782554, 0.0281437244, 0.0111930268, -0.0147897396, -0.0292571671, -0.0091566, 0.00937635731, 0.0133100329, -0.00293377438, 0.000711009954, -0.00292644906, -0.0205400828, 0.0394100025, -0.0107901366, 0.0178004298, 0.0168481432, 0.0126287816, -0.0174341649, -0.0127240103, 0.0168188419, 0.0204521809, 0.0423987173, 0.0216535255, 0.00028820397, -0.00813106, -0.0285099875, -0.0124456501, -0.0183718018, -0.0353371501, -0.000490793725, -0.0161156151, -0.00137806823, 0.0117350975, 0.000699106371, 0.015104726, 0.00259131752, 0.00359121826, 0.00222505373, 0.0248326976, 0.0143355718, -0.0050288043, 0.00158226036, -0.0206719395, -0.00782339834, -0.0286271926, -0.0119475313, 0.00221040309, 0.0129510937, 0.0130829494, 0.0171558037, 0.00223787292, 0.01547099, 0.027630955, 0.000561757362, -0.0149728712, -0.00864383, -0.00378350681, 0.0041461084, -0.0204521809, -1.78267546e-05, 0.00166100718, 0.0123723969, 0.0123577463, 0.0156907495, 0.00230380031, 0.0016042362, -0.00879033562, -0.0100942347, -0.0138154775, 0.00977924839, 0.00527420128, -0.00408384344, -0.00298871403, 0.00258948631, -0.00445743278, 0.00197782554, 0.0197782554, 0.00933240633, -0.0108487392, -0.00881963689, -0.00733260484, 0.00322129158, -0.0359817743, 0.018327849, 0.00444644457, -0.0080944337, -0.00247045048, -0.0255505741, -0.0228109211, -0.0167016368, 0.0204521809, -0.0233969428, -0.0135590928, -0.00796990376, 0.0358352661, 0.0135664176, -0.0060323677, -0.00830686651, -0.00148886302, 0.00510938233, -0.00168939261, -0.00838744547, -0.00914194901, 0.0130096963, 0.0154416887, -0.00453801081, -0.016452577, -0.00576133234, 0.0133759603, -0.0104604987, -0.00613858411, 0.016936047, 0.0121233379, -0.00938368309, -0.00359304948, -0.0123870475, -0.0325535424, -0.00640229415, 0.00192288589, -0.00317734, -0.0126068061, -0.00780142285, 0.0103213191, -0.0258582365, 0.0166283846, 0.0146652097, -0.00108963531, 0.0110977981, 0.0237339064, 0.0123137953, -0.0251550097, 0.0151926298, -0.0028696782, 0.00464422721, 0.0135371163, 0.000479805807, 0.00665867887, 0.00240269164, -0.0100722592, -0.00106124987, -0.0214044675, 0.00211517443, 0.0173902139, -0.00549395941, 0.000667058281, -0.000966021209, -0.00431825221, 0.0182106439, 0.00836546905, 0.00812373497, 0.00181850069, 0.0103872465, 0.0191629305, -0.0153977377, 0.0210382026, 0.00387141015, 0.0113248825, -0.0145113785, 0.00159050128, -0.035219945, -0.000880864856, -0.0117937, -0.0272353888, 0.0145260291, 0.0209942516, 0.00570639269, 0.0139400065, 0.00229281257, -0.00514234602, 0.00230746297, 0.0136250202, 0.0224300064, -0.00883428752, -0.0159544591, -0.0104238726, 0.02015917, 0.0032744, -0.0178590305, 0.00589685, -0.0142183676, 0.000481179304, -0.00665501645, -0.00348500162, 0.00794060342, 0.00954483915, -0.0166283846, 0.025389418, 0.00505810557, 0.0221076943, -0.00718243653, -0.0149435699, 0.0202910248, 0.011632544, 0.00444278214, -0.00427796319, 0.00281290733, 0.0108047873, -0.0155002913, -0.0130096963, -0.017185105, -0.00206023478, 0.0168188419, 0.00537675526, -0.00427063787, -0.0255505741, -0.00865848, -0.00318100257, 0.00462225126, 0.00520461099, 0.000950455, -0.0155295925, -0.0197050013, -0.00859255251, -0.00274697971, 0.0116398688, 0.0092078764, -0.00931043, 0.00156852545, -0.023426244, -0.0192654859, 0.0073838816, -0.00642427, 0.0184157528, 0.00395565107, 0.00531449029, -0.000195035565, 0.0152805327, -0.00235324609, -0.0203349758, -0.00127643, -0.0110538471, -0.000771443476, 0.00708354544, 0.0132367797, 0.0134199122, -0.00928845443, 0.0128558651, 0.00493357563, 0.0063143908, 0.0153537858, -0.0103579452, -0.00632904144, -0.0205986854, 0.00419372274, 0.000854310696, -0.00150076661, -0.00597376563, -0.0119695067, 0.00821163785, -0.0202617235, -0.00709087076, 0.016408626, -0.0078527, -0.0101821385, 0.00445377, 0.000464010664, 0.0252282619, 0.0118010249, 0.0115812672, 0.0153244846, 0.00625212584, 0.0140865128, -0.00851197448, 0.0134785138, 0.00219941512, -0.0167748909, 0.00796990376, 0.00857057702, 0.0158226043, 0.00101638248, -0.0117790494, -0.0134492135, -0.000755419431, -0.00279093138, 0.00575400703, -0.00180568139, 0.00375054311, 0.0239536632, 0.00701395515, -0.0147384619, 0.00796990376, -0.0592761599, -0.00202360842, 0.00285136513, 0.0179615859, -0.00174158521, -0.00149618834, -0.0330809616, -0.0112955812, 0.00161888672, 0.012980395, 0.0168627929, 0.0426331274, -0.00636200514, 0.00769154355, -0.00717144879, -0.0128485402, -0.0104238726, -0.0146359084, -0.0254626721, -0.0126873842, -0.0155588938, 0.00212799362, 0.0190896783, 0.00887091365, -0.00857057702, -0.0012590324, 0.000200987357, 0.0120940367, -0.00198331941, -0.00219575246, 0.00391536206, -0.020818444, -0.0192361847, 0.00234592077, 0.00874638371, -0.014123139, -0.00255835382, -0.0199101102, 0.0012590324, 0.00905404519, 0.0127093596, -0.00662937807, -0.0239390135, -0.00979389902, 0.0185915586, -0.00587121164, 0.0154416887, 0.00612393348, 0.00891486555, 0.00578697072, -0.0237632059, 0.011551966, 0.0112516293, 0.0193533879, -0.00405820506, 0.016613733, -0.00523391226, -0.0180787891, 0.00288066617, -0.00401791558, -0.0185622592, -0.0112150032, -0.0328465514, -0.0019173919, -0.00135792373, 0.00747911027, -0.0154416887, 0.0125775049, 0.0153098339, 0.0331102647, 0.00337146, -0.0189871248, 0.0139253559, -0.0121526383, -0.0211554077, 0.0172583591, 0.0108853653, 0.021389816, -0.00635101739, -0.00966936909, 0.0219025854, -0.00266823312, 0.0109000159, -0.00744614657, -0.010775486, 0.00688942522, 0.0187234152, -0.00838744547, 0.00946426112, 0.00476509426, 0.0162474699, 0.00627410179, 0.00697732856, 0.0148483412, 0.00146597158, 0.00709819561, -0.0128778415, 0.00251989625, 0.00900276843, -0.00298138871, -0.0124603007, -0.00591150066, 0.00379815744, -0.010409222, 0.0238657612, -0.0156174963, -0.00983052514, 0.00371391675, -0.00170129619, 0.012328445, -0.00245763129, 0.00460027531, 0.00969134457, -0.0036003748, 0.028451385, -0.0112736048, 0.00677222107, 0.02383646, -0.00289165415, -0.0156174963, 0.00319931586, -0.0256531294, 0.0264149588, 0.00764759164, -0.0105484026, 0.00486032292, -0.0169067457, 0.00343921874, -0.0320554227, -0.0120281093, -0.00223237881, 0.00917857513, -0.00471015461, -0.0138667542, -0.00264259451, -0.00953018852, 0.0159984101, 0.0231918357, -0.0178590305, 0.00766224228, -0.0114054605, 0.0130756237, -0.00591516308, -0.00418273453, -0.037915647, -0.00683448557, -0.00187344023, 0.0198661573, 0.00321762892, -0.00350880879, 0.00639130641, -0.00557453791, -0.00200346392, -0.00807245821, -0.0205840357, 0.0115812672, -0.00275796768, 0.00851197448, -0.00572104333, 0.00267738965, -0.0215949249, 0.00906869583, -0.000172144064, -0.00360403745, 0.00944961049, 0.0132514304, -0.00564779062, -0.00463323947, 0.00333117088, -0.0134199122, 0.0145919565, -0.00029209553, -0.0227962695, 0.0312349927, -0.0122771682, 0.00590783777, -0.0160863139, -0.00304731634, 0.00228731846, 0.0152805327, 0.0156174963, 0.00893684104, -0.00104751496, -0.00276346179, -0.0117937, -0.0243638791, 0.0235874, 0.0142989457, 0.00473213056, 0.00830686651, 0.0256531294, 0.00571005559, 0.00959611591, -0.0118596274, -0.0263124034, -0.0122991446, -0.0198661573, 0.00159599527, 0.0151926298, 0.00210235524, 0.00628875243, 0.00703959353, -0.016364675, 0.0109439678, -0.00213348772, -0.0138008269, -0.0162767712, 0.00338977319, -0.0201005675, 0.00433290284, -0.0226058122, 0.0155588938, -0.000208083715, 0.0029612442, -0.00526687596, 0.0145113785, -0.0144527769, 0.00326890592, -0.0245396867, 0.00940565858, 0.00902474392, -0.0170825515, 0.00668798, -0.0141158132, -0.00153922441, -4.47814928e-05, 0.0193387382, 0.0132587561, 0.0124163488, 0.0125848306, 0.00294659357, 0.00669896789, 0.0130023714, -0.00402157847, -0.00213531894, 0.00145773066, -0.000986165716, 0.0127606373, -0.0118816029, 0.0107608354, 0.00156944117, -0.00559651339, -0.00848267321, 0.000679419667, -0.0161595661, -0.00106582814, -0.0139546571, 0.00421936112, -0.00525222532, -0.00367362774, 0.0199980121, 0.00733626727, -0.00486398581, -0.0188259687, 0.0181666929, -0.00445743278, 0.0183425, 0.0199833624, 0.0104458481, 0.0401132293, -0.00581993442, -0.00921520125, 0.0170386, 0.00245030597, -0.000822720467, -0.0199833624, 0.0108926902, 0.00377251883, -0.00278177485, -0.0180494878, 0.00306196674, 0.00363150728, -0.00625212584, -0.0250671059, 0.00300336466, -0.00610928331, -0.00325974938, 0.0153537858, -0.000707805157, -0.0243931804, -0.00769154355, -0.00829954166, -0.00618253602, 0.00950088724, -0.00339343562, -0.009427635, -0.016979998, -0.0107901366, -0.00643159542, 0.0217853803, -0.00385309709, 0.00081951567, 0.0171558037, 0.0074937609, -0.00717511121, -0.0124749513, 0.0152951833, -0.0204814821, -0.0153977377, -0.0153537858, 0.0265907645, -0.00839477, 0.00760364, -0.00761829084, -0.0123943733, -0.0289055537, -0.0203349758, -0.0355422571, -0.00601039175, -0.00894416589, -0.0175367184, -0.000417312025, -0.00275613647, 0.0169067457, 0.0185476076, 0.00470282929, -0.00279093138, 0.0015520436, 0.022122344, -0.00965471845, 0.0116691701, -0.0152365817, 0.0135590928, 0.00564412773, -0.000729781, 0.0233236905, 0.023309039, 0.0162621196, 0.00370109756, 0.0187234152, -0.00222505373, 0.00220307778, -0.00944228563, -0.00266273902, 0.005387743, 0.000134945381, 0.00887091365, 0.00348133896, 0.00490793725, 0.0178883318, -0.014408825, 0.00804315694, 0.0340772, -0.0171558037, 0.0158812068, -0.0272353888, -0.0264589097, 0.00709087076, 0.0243785307, 0.00119951449, -0.00914194901, 0.0168627929, 0.0226351134, 0.00694802776, 0.00321762892, 0.00265907636, 0.0103139933, -0.00110520155, 0.0255798753, 0.0074168453, 0.0011610568, -0.00320664118, 0.00245579984, -0.0114860386, -0.011427436, 0.000267830532, 0.0202324223, 0.00662205275, -0.0148849683, -0.00327806268, 0.00548663456, 0.00947158597, -0.016408626, 0.0743662342, 0.0248913, 0.0107681612, -0.000500408176, -0.00487131067, -0.0178883318, -0.00775014563, 0.0418126956, 0.0115885921, 0.00786735, -0.0319382176, 0.00722638844, -0.00129932142, 0.0112296538, 0.00228365581, -0.0100356331, -0.0186941139, 0.00744980946, 0.0253747683, -0.0123430956, 0.016613733, -0.0077135195, -0.00601771707, -0.00163994695, -0.0113175567, -0.00746079721, -0.0165404808, -0.0164232757, -0.00843139645, -0.00199430739, -0.013712923, 0.00906137098, -0.00707255723, -0.00085705769, -0.00774282031, -0.00559651339, 0.00955949, 0.00775747094, 0.0159837604, 0.0105777038, 0.00673193205, -0.00308211125, -0.0157786515, 0.00753038749, 0.00247045048, 0.0247447938, 0.0255652256, -0.0389997885, -0.000989828375, -0.0137202488, -0.012614131, -0.0139766335, 0.00616788538, -0.0217267796, 0.0146212578, 0.00760364, 0.0231625345, 0.0146432333, -0.0119548561, 0.00499217818, 0.0085339509, 0.0174048636, 0.0111344252, -0.0254040696, 0.0235434491, -0.0114933634, -0.010079585, -0.00854860153, -0.00287700351, -0.000966936874, -0.0211261064, -0.000705058163, -0.0133246835, -0.00618986133, 0.0213019121, 0.0212140102, -0.0335204788, 0.00244847476, -0.0357766636, -0.006142247, -0.00713848509, -0.00255469116, -0.00258765509, -0.0209942516, 0.00884893723, -0.0114860386, -0.00917125, -0.0163500234, -0.0100942347, 0.0107608354, 0.00974994712, 0.000750383304, -0.00723005086, 0.0108633898, 0.00270852214, 0.0140279103, 0.00172785029, -0.0193240866, 0.0144820772, 0.0135224657, -0.000385035, 0.0019173919, 0.00950088724, 0.00555622438, -0.0161595661, 0.0260926448, 0.00886358786, 0.00342639955, 0.0247447938, -0.00764026633, 0.0178883318, -0.0145553304, 0.0114494115, 0.0178297311, -0.00270485948, 0.00800653081, 0.00102370779, -0.00779409753, 0.0208770465, -0.0122551927, 0.00642427, 0.0149582205, 0.000700022036, -0.0233236905, -0.0242759772, 0.0259754416, -0.00219025859, -0.00343006221, 0.00591882598, -0.00579063362, -2.31061058e-05, 0.0109366421, 0.027059583, -0.00610562041, 0.00733993, 0.0105630532, -0.00157310383, -0.00519362325, -0.00614590943, 0.0214484185, 0.0161595661, -0.0257263817, -0.0166723356, -0.00890754, 0.000727949664, 0.0117204469, -0.0123430956, -0.0156467967, -0.00451603485, -0.0159398075, 0.0278067607, -0.002388041, 0.00729964115, -0.00709453318, -0.0245396867, 0.0111344252, -0.0174634662, -0.0382965617, -0.0143575482, -0.00709087076, 0.00784537476, 0.00916392449, 0.00879033562, -0.00933973119, -0.00602138, 0.0265761148, -0.00123522524, 0.0102627166, 0.0016042362, -0.00428895094, 0.0159398075, -8.81894957e-05, 0.002908136, 0.0197929051, 0.00933973119, 0.0147897396, -0.0092078764, -0.00572104333, 0.00173609122, -0.00956681464, 0.00422668643, -0.00675757043, -0.0120207835, 0.0540605634, -0.00345570059, -0.00409116875, -0.00103194872, 0.0139546571, 0.00416442147, 0.0174488164, -0.0115959179, 0.0220637415, 0.00514967134, -0.00298322015, -0.00343189342, -0.00146688719, 0.00376153109, -0.0126214568, -0.027836062, -0.0146578839, -0.00265175127, 0.000813563878, -0.00530716497, 0.00451237196, 0.010328644, 0.00994040444, 0.0211407561, -0.00268471497, 0.0034428814, -0.017712526, 0.0186062101]
03 Nov, 2023
SSL vs HTTPS – Which One is More Secure? 03 Nov, 2023 In this article, we will learn about the difference between HTTPS and SSL and then finally discuss which one of them is more reliable and secure. HTTPS HTTPS stands for Hypertext Transfer Protocol Secure. It is the basic Internet protocol used by websites on web browsers. HTTPS is the secure version of the HTTP protocol. It is encrypted so it keeps all data transferred with the protocol completely safe. The HTTPS protocol is highly useful in places like logging in to a personal account or using banking credentials for a financial platform. HTTPS enables the information transferred between the web browser and the server to be confidential, and it can only be viewed by authorized users only. In the normal HTTP protocol, the information between the browser and the server is divided in the form of data packets and then transferred, so it becomes easy for attackers to sniff these data packets and then read out the sensitive information. But this cannot take place in HTTPS protocol. SSL The SSL stands for secure socket layers. SSL is basically a part of HTTPS protocol which is responsible for the encryption of the Internet security protocol. It is responsible for the integrity of data, the confidentiality of data, and its availability to authorized users only. SSL is the main protocol that performs the encryption task in HTTPS protocol to convert it into a random string of alphabets and numbers. SSL has a popular handshake authentication procedure where it authenticates and only allows authorized devices to perform the communication over the Internet. SSL also performs digital signatures on each of the conversations that take place over the Internet. SSL or Https Which Is More Secure? Both HTTPS and SSL perform the same thing of making the online transactions and conversations to be more secure and encrypted over the Internet. HTTPS and SSL are similar things but not the same. HTTPS basically a standard Internet protocol that makes the online data to be encrypted and is a more advanced and secure version of the HTTP protocol. SSL is a part of the HTTPS protocol that performs the encryption of the data. HTTPS uses a combination of technologies like HTTP and SLL/TLS together to perform the encryption whereas the SSL protocol is a cryptographic protocol that will encrypt online communication. HTTPS and SSL are fundamentally and structurally similar things and they perform operations but they are quite different in their approach. SSL is a secure protocol that provides safer conversations between two or more parties across the internet. It works on top of the HTTP to provide security. In terms of security, SSL is more secure than HTTPS. Summary SSL and HTTPS are inextricably linked. The communication protocols HTTP and HTTPS are used, and SSL/TLS is used to secure those channels. The majority of users of contemporary SSL certificates will gain from TSL as well, provided that their servers are set up properly to support this new protocol. HTTPS SSL It stands for Hypertext Transfer Protocol Secure. It stands for Secure Sockets Layer. It is the more secure version of the HTTP protocol and has more encrypted features. It is the only cryptographic protocol. HTTPS is made when we combine HTTP protocol along with SSL. SSL can also be used alone for encryption. HTTPS is mainly used in websites for banking credentials and personal accounts login. SSL cannot be used all alone for a particular website. It is combined with HTTP protocol then used for encryption. HTTPS is more secure and it is the latest version of the HTTP protocol which has been available to date. SSL is discontinued and now TLS (transport layer security) is used in its place. 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!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?
https://www.geeksforgeeks.org/ssl-vs-https-which-one-is-more-secure?ref=asr10
PHP
SSL vs HTTPS – Which One is More Secure?
jQWidgets jqxSortable disabled Property, Node.js Stream transform.destroy() Method, jQWidgets jqxSwitchButton enable() Method, Convert string into date using JavaScript, jQWidgets jqxSplitter height Property, How to Declare Optional Properties in TypeScript ?, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxTree checkAll() Method, jQWidgets jqxScrollBar rtl Property, jQWidgets jqxScrollBar step Property, jQWidgets jqxTabs position Property, jQWidgets jqxTooltip height Property, How to Make a Single Property Optional in TypeScript ?, jQWidgets jqxTreeMap width Property, Optional Property Class in TypeScript, jQWidgets jqxTree collapseItem() Method, Difference between Flow and TypeScript, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTabs keyboardNavigation Property, jQWidgets jqxTree destroy() Method, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), jQWidgets jqxTree collapseAll() Method, jQWidgets jqxSortable opacity Property, jQWidgets jqxScrollView buttonsOffset Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, jQWidgets jqxTabs disabled Property, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Node.js date-and-time Date.transform() Method, jQWidgets jqxListBox enableHover Property, jQWidgets jqxSlider height Property, TypeScript Optional Parameters, jQWidgets jqxSwitchButton onLabel Property, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, jQWidgets jqxToolBar theme Property, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxSplitter orientation Property, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxSlider buttonsPosition Property, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, jQWidgets jqxToolBar tools Property, jQWidgets jqxSlider rtl Property, How to use Optional Chaining with Arrays and Functions in TypeScript ?, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTooltip opacity Property, jQWidgets jqxTree width Property, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, jQWidgets jqxScrollView showButtons Property, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, jQWidgets jqxTree clear() Method, Introduction to TypeScript, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView disabled Property, jQWidgets jqxScrollView animationDuration Property, jQWidgets jqxToolBar height Property, PHP, How to Sort an Array Having Optional Properties in TypeScript ?, jQWidgets jqxSplitter destroy() Method, jQWidgets jqxTreeMap destroy Method
GeeksforGeeks
[-0.0208836012, 0.00336757046, -0.0152141703, 0.0284189209, 0.0356815346, -0.00479389913, 0.0147118159, 0.00749943778, -0.0381789543, 0.00775779132, 0.0570100807, -0.0090423841, -0.0115613341, -0.0351074152, -0.0204099528, 0.00247230264, 0.00444942713, -0.0255339704, -0.0135563994, -0.00461089844, 0.00960215088, -0.0130038094, -0.0314043425, -0.0338156447, -0.00382148381, 0.00280780392, -0.0119345114, 0.0284763332, -0.0628661, 0.0343897641, 0.0421403795, -0.0103700357, -0.0106714489, -0.0353083573, 0.00458578067, -0.0251464397, -0.0209123082, -0.0240269061, -0.061143741, 0.0149988756, 0.00821708702, -0.0120062763, 0.0321507, 0.00170262356, -0.0485418141, 0.00703296531, -0.0226777252, -0.0517281778, 0.0363704786, -0.0118412171, -0.0423413217, 0.0150419343, 0.028863864, 0.0425135568, 0.0293375123, -0.00207580137, 0.029036101, -0.00822426379, -0.0017080059, -0.00768602639, 0.0300551634, 0.015156758, -0.0234527867, -0.00303565757, -0.00721955439, 0.00876967702, -0.0241991431, -0.0228069015, 0.0413079076, -0.0111450972, -0.0506947637, 0.0522448868, 0.0271702111, -0.0259071477, 0.000498766429, -4.89179074e-05, 0.00581654953, 0.0191755965, 0.00935097318, 0.0326099955, -0.0168647636, 0.024514908, 0.00355954166, -0.00594213838, 0.0386956632, 0.0038860722, -0.0123722777, -0.044092387, 0.0487427562, 0.00897061918, 0.00809508655, -0.0187019464, 0.0273855068, -0.00343215885, 0.00187485944, 0.0102623887, 0.00720161293, -0.0173097067, -0.0367723629, 0.0265817381, 0.0222327821, 0.0202377178, -0.00715137785, 0.0111809801, 0.0161040556, -0.0246727914, -0.000548553362, 0.0315478742, 0.0183431227, 0.0352796502, 0.0116474517, -0.020610895, 0.00339089404, 0.021787839, -0.000793451269, -0.0108723901, -0.0232661981, -0.0660811663, 0.0274285655, 0.0186445341, -0.0388679, 0.0204673652, 0.00408701412, 0.01242969, -0.0444081537, 0.0471926332, -0.0302848108, -0.0286342166, 0.0111953327, -0.0211563092, -0.00935097318, 0.0273568, -0.0116187464, 0.00876250118, -0.00274500949, -0.00761426147, -0.00302668684, 0.00684637669, 0.000188607271, -0.0366575383, -0.0273280945, -0.0296819843, -0.0286342166, 0.0259071477, 0.0293662194, 0.0115828635, -0.020955367, 0.0309450477, -0.0749800205, 0.023165727, 0.0256057363, -0.00685714139, -0.0153002879, 0.00181655039, 0.0149271106, -0.0477380455, 0.0245723203, 0.0270266812, -0.0322942287, -0.0105781546, -0.00393271958, -0.0407337882, 1.31685883e-05, -0.0151854642, 0.0190033596, 0.0367436558, 0.0649329275, -0.00417313213, -0.0245005544, 0.049890995, -0.03680107, 0.00551513676, 0.00906391349, 0.00178784446, 0.0115398047, -0.0117622763, 0.0111738034, -0.0116689811, -0.00560843106, 0.0063942573, -0.0228930209, -0.042743206, 0.00142722554, -0.0492594652, 0.0118340412, 0.0213141907, 0.0136425178, 0.0175824128, -0.0154868774, -0.0341888256, -0.0257779714, 0.00564072514, 0.0683202371, 0.0242852606, 0.00130073982, 0.0301699862, 0.00987485796, 0.0103341537, 0.0341314115, -0.0103198, 0.00945862103, -0.00962368, -0.056895256, 0.0221036058, 0.0169365294, 0.00236824341, -0.00561919576, 0.0131688686, 0.0159031134, 0.0279596262, -0.0486853458, -0.00191253598, 0.0211706609, -0.00579502, 0.00734155485, -0.00631531607, -0.00811661594, -0.00321506988, -0.0386382528, 0.0503502898, -0.0186301824, 0.0282466859, 0.00987485796, 0.0155442888, -0.0674016476, -0.0363130681, 0.0304570459, -0.0343036465, 0.0166925285, -0.00161381438, 0.0267109163, 0.00236644945, -0.0121928658, 0.0173958242, -0.071190834, -0.0131042805, 0.0275433883, -0.00420183782, -0.00216371333, 0.0156160537, 0.0205965415, 0.0147261685, -0.00623278599, -0.0417097919, -0.0672868192, 0.00836061686, 0.0311459899, 0.050579939, 0.0105781546, 0.024443144, -0.0281318612, -0.0368871875, -0.0267970338, 0.0244862027, -0.0147118159, 0.0208548959, 0.034906473, -0.0190607719, 0.0332989395, -0.0352796502, 0.0295958668, 0.00683202362, 0.00885579549, 0.0496039353, -0.0270840935, 0.0235963166, 0.0106570954, 0.0222184304, 0.0186875947, -0.00401166081, 0.0357676521, -0.0210127793, -0.0161471143, 0.0100183878, -0.029796809, 0.00656290492, 0.0123005128, 0.00210091891, 0.0521874726, 0.00196994795, 0.00690378854, -0.038466014, 0.0108365081, 0.0202090107, 0.0152141703, -0.0158744082, -0.0170082934, 0.0281318612, -0.038466014, 0.0139798131, -0.013707106, 0.00157075538, 0.016778646, -0.0253617354, 0.0379493088, 0.00656649331, -0.0102623887, 0.016017938, -0.040532846, -0.00588472607, -0.000477236928, 0.00107916549, 0.00172325596, 0.0098820338, -0.0508382916, -0.0103198, -0.00878403056, -0.0183718279, 0.0103628589, -0.015673466, 0.0154725239, -0.0196923036, -0.00954473857, 0.0186588876, 0.0086979121, 0.00977438688, -0.00171966769, -0.000864767702, -0.00246333214, -0.0256918538, 0.035423182, 0.051096648, -0.0137142828, 0.0119632175, 0.0107862726, -0.00798026286, 0.0115110986, -0.0267396215, -0.00601031492, -0.0211276021, -0.0047328989, -0.0217591338, -0.0286772754, -0.0172666479, 0.0536227748, -0.0311172847, 0.00183269754, 0.0316627, 0.00915003195, 0.00100650347, -0.00860461779, -0.0184148867, 0.0101188589, -0.00165597629, 0.019921951, 0.0122933369, 0.0086979121, -0.00157882902, 0.00439201528, 0.00945862103, 0.00137071067, 0.00586678507, 0.034906473, -0.0133985169, 0.0160609968, -0.0358537696, 0.0129105151, -0.00355954166, -0.00154384354, -0.0333276428, 0.0346481204, 0.00215294864, -0.0169939417, -0.00163893215, -0.0166638214, -0.0212711319, -0.0219744295, -0.0037891895, 0.0397864915, -0.00674590562, -0.0223189015, -0.00361157139, 0.00405113166, 0.0152141703, -0.0311746951, 0.00822426379, -0.0172379427, -0.0076573207, -0.0147979334, 0.0191755965, 0.0140731074, 0.0180847682, -0.0124871023, 0.0484556966, -0.00915003195, -0.0239120834, 0.0463601612, -0.0355667099, -0.00268939161, 0.0295958668, -0.0293662194, 0.0230221972, 0.0356528275, 0.00269836234, 0.0131760454, -0.00222291937, -0.00660237577, 0.00407624943, 0.00479748705, -0.0236680824, 0.00450325105, 0.0218739584, -0.0251177344, 0.00815249886, -0.00728773093, 0.0233666692, 0.0212280732, -0.0485418141, 0.0106499195, -0.0118627464, 0.012601926, -0.0127167497, -0.0221897233, 0.00948015, 0.00752814347, 0.0409634337, 0.000189616461, 0.0301125739, 0.017123118, 0.00311998138, -0.00640143408, 0.0185153577, 0.0104848593, -0.000440681673, 0.0323516428, 0.0405041389, -0.00945144426, 0.0311172847, 0.0421403795, -0.0169795882, 0.0404180214, -0.00927920826, 0.0216443092, -0.00148553459, -0.0192904193, -0.0416523777, -0.00293698069, -0.00383224851, -0.0164772328, -0.00722314278, -0.00586319668, 0.0261224434, 0.0404467285, -0.01746759, -0.0451832153, 0.00843238179, -0.0423413217, -0.00457142759, -0.00675667031, -0.013879342, -0.00774343871, 0.0264956206, -0.023481492, 0.0213428978, 0.025031615, -0.0261511486, 0.00710114231, -0.00542543037, 0.0342749432, 0.0259215012, 0.0463314541, 0.0518142954, -0.00207400718, -0.0144247552, 0.0268257391, 0.01574523, -0.00812379271, 0.000604619738, -0.00599596184, 0.0136066349, 0.00783673301, -0.0134774586, 0.0340452939, 0.0136496946, 0.00626508053, 0.0120923948, 0.013671224, 0.0277730376, -0.00960215088, -0.0294236317, 0.00107378315, 0.0642439872, 0.0380928367, -0.0136209885, 0.0118340412, 0.0431163833, 0.0192043018, -0.00524601806, 0.0148266396, -0.0164628811, -0.034762945, -0.0332989395, -0.0141951079, -0.0232661981, 0.006300963, -0.00197712448, -0.0170513522, -0.0204386581, -0.0376048349, 0.0186588876, -0.0099609755, 0.0246440843, -0.0203812476, 0.0241273772, -0.0223763119, 0.0365140066, -0.0149988756, 0.0186732411, -0.019921951, 0.0145611092, -0.00707602454, 0.031318225, -0.0416523777, 0.00650908146, 0.00231441972, 0.036944598, -0.0151280519, -0.000740973162, 9.50325e-05, 0.0156878196, 3.51536146e-05, 0.033385057, -0.0100255636, -0.0284189209, 0.0150993466, 0.00244897907, 0.0177977085, -0.0200941879, -0.0242852606, -0.0248737335, -0.0186588876, -0.0069324947, 0.00734155485, 0.00953038596, -0.00299798092, 0.0203094818, -0.0328970551, -0.000370710826, -0.0145036969, 0.0324664637, -0.0208548959, 0.0162475854, -0.0183718279, 0.0222327821, 0.00506660575, 0.00362592423, 0.00949450303, -0.00172415306, 0.0165920574, -0.0141448723, 0.026997976, 0.0315191671, -0.000858039712, -0.023481492, -0.0266822092, -0.000370710826, -0.00718367193, -0.0181134734, 0.00453195674, -0.0258497372, -0.0157595836, 0.0176828839, 0.0246010255, 0.0200798344, 0.00372460112, -0.0211706609, 0.0424274392, 0.019577479, 0.00105315074, -0.00160484377, -0.0189028885, 0.00739179039, 0.00711190701, 0.0113532152, -0.0222040769, 0.0323229358, 0.0227781963, 0.0231083147, 0.0123363957, 0.0191755965, 0.0013886519, -0.00845391117, 0.033385057, -0.00285624526, 0.0137358122, 0.00562278414, -0.00268042111, -0.0188024174, -0.00806638, -0.00410495512, 0.0193047728, -0.00976721, -0.0205104239, 0.00418030843, -0.00238977303, 0.0178264137, 0.000929356145, 0.00654137554, -0.00644808123, 0.00800896902, -0.017883826, 0.0257779714, 0.0330979973, 0.0298255142, 0.0124081606, 0.016950883, -0.0178551208, 0.00279165665, -0.000268445787, 0.00767167332, -0.0144462856, 0.0144391088, 0.0174532365, 0.0155873476, 0.0122287478, -0.0169365294, 0.0198071264, 0.0119847469, -0.00455707451, -0.0261798557, 0.0295384545, -0.00293518649, -0.00479031075, 0.0122933369, 0.0253617354, -0.0187880658, 0.00230903737, 0.00520654721, 0.0043884269, -0.00899214856, -0.0397864915, -0.00386454281, 0.00954473857, -0.00787261501, -0.00137699, -0.0359111838, -0.000511325314, 0.00816685148, -0.00648396369, 0.00770037947, -0.00501278182, 0.021716075, -0.0113890981, 0.105580598, -0.00595649099, 0.0419681445, -0.0164628811, 0.0456712171, 0.00289212773, 0.0148553457, 0.00775061501, -0.00872661825, 0.0245866738, 0.0114680398, -0.0230509024, -0.00419466151, 0.00426283805, -0.0470491052, 0.00197533029, 0.0218021926, -0.00227136072, -0.0268544462, 0.010391565, 0.0186014753, -0.0266822092, -0.0120421592, 0.0103700357, 0.0264956206, -0.0135851055, 0.0127239265, -0.00546490122, -0.0398151949, 0.00217627222, 0.0466759242, 0.0157595836, -0.0392697826, 0.00943709165, 0.0243426729, 0.00835344102, 0.0150849931, -0.0398726091, 0.00709037762, 0.00478672236, 0.0167212337, 0.018127827, -0.00371024804, -0.0352222398, -0.000723480422, -0.0201085396, -0.0290935114, 0.0264525618, -0.000776855624, 0.0113532152, -0.00447095651, 0.00859744102, 0.00121462182, -0.00743484916, -0.0412504971, -0.0272706822, 0.000710024498, 0.0137788709, 0.00355954166, 0.00597802084, 0.00664543454, -0.00319533446, 0.0239982, 0.0181421805, -0.0167212337, -0.00855438225, -0.0288925711, -0.00386454281, 0.00685714139, -0.00297645153, 0.00734873116, 0.00667414069, 0.0244574957, 0.0213285442, -0.0088342661, -0.00286162761, 0.0246153791, 0.0235389043, -0.0106212134, -0.015673466, -0.0211276021, -0.0270984471, 0.0190464184, 0.00283292145, 0.0556896031, -0.0275720954, 0.0056766076, 0.0371455401, -0.0133482814, 0.0340165868, -0.0155873476, -0.0132119283, -0.0043884269, 0.0215868987, 0.0110302735, 0.00777932117, -0.00276115653, 0.0245436151, -0.0121569829, -0.0114823924, 0.0171661768, 0.0157308783, -0.0354805924, 0.0239120834, -0.00163893215, -0.032696113, 0.00586678507, 0.0188741833, -0.000615384488, 0.0146831097, -0.0503789969, -0.0157165248, -0.00762861455, -0.000671899354, -0.00182821217, -0.0165920574, 0.0138219297, 0.00982462242, 0.0661385804, -0.0053823716, -0.00649831677, -0.0402744934, -0.00579143176, -0.044092387, -0.000544965093, 0.00317380507, -0.0182282981, 0.0303996336, 0.0339591764, 0.050551232, -0.0393846072, -0.0129607506, 0.019233007, 0.00149001984, -0.0370594226, -0.0348777659, 0.0143745206, -2.73183396e-05, 0.00436689751, -0.0400735512, 0.0138865188, 0.00155371125, -0.0307154, 0.0503215864, -0.0251751449, 0.0209123082, 0.00237542, 0.0281175096, 0.0425422639, 0.0104776835, 0.0481399298, -0.0154438177, -0.0153720528, -0.0567804314, 0.0199650098, -0.0380641297, -0.0334998816, 0.0146902855, 0.00504507637, 0.0254191458, -0.0135635762, -0.00561560784, -0.0208118372, -0.0238833763, -0.0171661768, -0.012810044, -0.00172594714, 0.011740746, -0.00892756, -0.0193908904, 0.049058523, -0.0049410169, 0.017783355, 0.00602466799, 0.00952320918, 0.0131975748, -0.00406189635, -0.0104202712, 0.0177690033, -0.019161243, -0.0301986933, -0.0241560843, 0.0293375123, 0.00484772259, -0.00489078136, 0.016706882, 0.0246727914, 0.00606413838, -0.0131832222, -0.00421619089, 0.00412648497, -0.0425422639, 0.00583449053, 0.0101978, -0.00726620154, 0.0146113448, -0.00356851239, 0.00103431242, 0.00324736419, 0.00170441763, -0.00286701, -0.0052173119, 0.0174532365, -0.0136281643, 0.00195021264, 0.0504938215, -0.0201946571, 0.0117335701, 0.0122000417, -0.000766539422, 0.0385234281, -0.0141448723, 0.0429154411, 0.00879838318, -0.00787979178, 0.000404126389, -0.029796809, 0.0309163425, 0.0127023971, -0.00380713074, 0.03777707, 0.017367119, -0.00997532811, 0.0125086317, -0.00210809545, -0.00353263, -0.0399300195, -0.00177259441, -0.0311746951, -0.0216873698, 0.0355380066, 0.00371383643, -0.0163767617, 0.0124799255, 0.0186732411, 0.0145826386, -0.0124153374, 0.00953756273, -0.00674590562, -0.0168647636, 0.00408701412, 0.00343933539, 0.0219313707, -0.0287490413, -0.0389253125, 0.0262229145, 0.00947297364, -0.0400735512, 0.000401210942, -0.0187163, 0.0155729949, 0.00374254235, 0.0128531028, -0.0183861814, 0.0108436849, 0.00289033353, -0.0125229843, -0.00195021264, 0.0220461935, 0.00495895837, -0.00327248196, 0.0148409922, -0.0233379621, -0.0138578126, -0.016089702, -0.00381789543, -0.0177690033, -0.0212711319, -0.00845391117, -0.0404467285, 0.0244718492, 0.00103341532, 0.0394707248, -0.0105781546, -0.00503072329, -0.0163767617, 0.0144606382, 0.0209123082, 0.0272993892, -0.00306615769, 0.0245866738, -0.00203812472, -0.0131688686, -0.017438883, -0.00650190469, -0.0192760658, 0.0205965415, 0.0060318443, -0.000586229959, -0.0167499408, -0.0259502064, -0.00734873116, -0.00662390515, -0.029452337, 0.0243570246, -0.0713056549, -0.00894191302, 0.00855438225, 0.0186014753, 0.0408199057, -0.0100183878, -0.0398151949, -0.000501457602, 0.011704864, -0.0083965, 0.0165059399, -0.0227064304, -0.0262229145, -0.0380067192, 0.0105709778, -0.0114249811, 0.018888535, -0.0525606535, -0.0287633929, -0.0318923444, -0.0463314541, 0.0140587548, 0.0337582342, -0.0124871023, 0.00631890399, 0.00100022403, -0.0160322897, 0.00919309072, -0.0108149787, -0.0120421592, -0.000765642326, 0.00229647849, 0.0188311245, -0.0383511931, 0.0244862027, 0.0269549172, 0.0114680398, -0.0178120621, -0.00239515537, -0.0324951708, 0.0147979334, 0.0112455683, 0.003202511, -0.00775779132, -0.0336721167, -0.00482260482, 0.00850414671, -0.034762945, 0.0211993679, -0.00965238642, -0.0247158501, -0.00230544922, -0.00147118152, 0.0295671616, -0.00560484268, 0.00308589311, -0.0110446261, 0.0162045266, 0.00121372472, 0.0054684896, -0.0385808386, -0.0359111838, -0.0041193082, -0.0400448442, -0.0154581713, 0.0117981583, 0.0433173254, 0.0235245526, 0.0153433466, -0.00571607845, -0.000479479582, 0.00454272144, -0.0185871236, -0.0434608571, -0.0192760658, -0.0290073939, -0.0103700357, -0.00244539068, -0.00388248404, -0.043575678, -0.00282574515, -0.001463108, -0.00143171079, -0.00935815, 0.030313516, 0.0112383915, 0.0140013425, 0.00733437808, 0.0279309191, -0.00480825175, -0.0350212976, 0.0353370644, -0.00423772074, -0.021027131, 0.0051599, -0.00510248821, -0.000111067478, -0.0105350949, -0.0266965628, -0.0353657678, -0.00755684962, 0.00252433214, -0.0121498071, -0.0125301611, -0.00416954374, 0.0187019464, 0.0085185, -0.00727696624, -0.0138721652, -0.00217088987, -0.0121569829, -0.028519392, 0.0210558381, -0.0199650098, -0.000298048835, 0.0223763119, -0.0222614892, 0.00815967564, -0.0082816761, -0.00309845177, -0.000373850547, 0.0247876141, -0.0287921, -0.0242565535, -0.0172092356, -0.0143745206, -0.0443220362, 0.0259358548, -0.0003202511, 0.0132836932, -0.00993944611, -0.00613590376, 0.021787839, -0.00384660158, 0.0226633716, -0.00433460297, -0.00343215885, 0.00623637438, 0.00751379086, -0.00463601621, 0.000573222584, -0.0118053351, -0.00678537646, 0.00547925429, 0.0310885776, 0.0245292615, 0.00426283805, 0.00479031075, 0.0134702818, -0.0290217474, 0.003374747, -0.0232949033, -0.010391565, -0.00678537646, 0.0121498071, 0.00899214856, -0.0178694744, 0.0289499816, 0.0254191458, 0.0810082778, -0.0223476067, -0.0020076246, -0.0323229358, -0.00105045945, 0.00271092122, 0.0084897941, 0.0220031347, 0.0359973, -0.0220031347, 0.0131832222, 0.00989638735, -0.0160466433, 0.0212137196, 0.00123973959, 0.0305718705, -0.00251536164, 0.000592509401, 0.0122287478, 0.0329257622, -0.00810226332, -0.00165238802, 0.00909262, 0.00498766406, -0.000123458143, -0.00103879767, -0.0155873476, -0.0286198631, -0.00445301551, -0.0186732411, 0.00493025221, 0.0110805091, -0.000376990269, 0.00371024804, -0.0244862027, 0.0480825193, 0.000760708528, -0.0042915442, -0.0187163, -0.0110876849, -0.0222327821, -0.0149127571, 0.00126396026, 0.0174532365, 0.00889167748, -0.0203094818, -0.0182282981, 0.0123292189, -0.0328970551, 0.029796809, 0.0128172208, -0.00665261131, 0.0271845646, -0.0104705067, -0.00523525337, 0.00706526, 0.0314043425, -0.0144175794, 0.0330979973, -0.00782238, 0.00290827476, -0.0183861814, 0.00981744565, 0.00346804131, -0.000281453191, 0.00322942296, 0.00867638271, -0.0247876141, -0.0117263934, 0.00386095443, 0.0288495105, -0.00169993239, 0.00866203, 0.0164485276, 0.0074779084, 0.0259071477, -0.00952320918, 0.00362592423, 0.023409728, -0.0125086317, -0.00733437808, 0.00709396554, -0.00708320085, -0.00188203587, 0.00452119205, -0.0031504815, -0.0154868774, 0.0152428765, 0.0273280945, 0.00405830797, 0.0131401634, -0.0336434096, -0.00932226703, -0.00609643292, 0.00412289659, 0.00892756, 0.00383583666, 0.0268831514, 0.0112814503, -0.0033406585, 0.016606411, 0.00359004177, -0.0175537076, -0.0100973286, 0.000702848, -0.0214864276, 0.0161758214, 0.00978156272, -0.0241273772, 0.0021888311, 0.0166494697, -0.00762861455, 0.00963085704, -0.00176631496, -0.00365463016, -0.00534648914, 0.0330692902, 0.0118555706, 0.00518860621, -0.0273280945, -0.0218739584, 0.0114393337, 0.0112527451, -0.0174532365, -0.0141520491, -0.0184435938, -0.017711591, -0.0158026423, -0.0106786247, 0.0184292402, -0.0102336826, 0.0205104239, -0.012221572, 0.00474007521, 0.0109585086, 0.0270123277, -0.00754967332, -0.00215653679, 0.025892796, 0.0199075975, 0.015917467, 0.0170944128, -0.0157165248, -0.00293159834, 0.00465036882, -0.0140372254, 0.0109154498, 0.0235532578, 0.00664184662, -0.0172810014, -0.0373464823, -0.0316339917, 0.00497331144, 0.014984522, 0.0508095883, -0.00418030843, 0.0269549172, -0.0339304693, 0.0117909815, -0.0121641597, 0.0132621638, 0.016089702, 0.0136999292, -0.0131688686, -0.0286342166, -0.00604978576, 0.00759273209, 0.0171374716, -0.00632966869, 0.000359273312, -0.00892756, -0.00351648265, 0.0115972161, -0.00214038976, -0.0363130681, 0.0120995715, -0.00677102339, -0.0441498, 0.0225054901, -0.000335501158, -0.00112940092, -0.0165777039, 0.00326709962, 0.00812379271, -0.0113532152, -0.0299116336, -0.00878403056, -0.0189459473, 0.0183144156, 0.0103772124, -0.0173958242, 0.017367119, 0.0214146618, -0.000169320439, -0.00553307775, 0.0407337882, 0.0376622491, -0.0254335, -0.0129679274, 0.0141089903, -0.012810044, 0.00291365711, 0.00682125892, -0.0192043018, 0.0188024174, 0.0261080898, -0.0107216844, 0.0150275817, 0.0225772541, -0.0234671403, -0.0145611092, -0.00663825823, -0.00240412587, 0.0254478529, -0.0206683073, -0.000557075429, 0.0142453434, 0.00175016781, 0.00549360737, 0.00164162333, -0.0320932865, -0.01384346, 0.00534648914, 0.0211993679, 0.00431307359, -0.0147835808, 0.0210988969, 0.0168647636, 0.0103341537, 0.021027131, -0.0192760658, 0.0507808812, 0.0277873892, 0.000478582544, 0.00793002732, -0.0168073513, 0.0182713568, -0.0324090533, -0.0114034507, 0.0138721652, -0.00710473023, 0.0405041389, -0.014984522, -0.0160466433, 0.0256487951, -3.43126194e-05, 0.00697555346, -0.0254622065, -0.0189890061, 0.0192186553, 0.00451401575, -0.00894191302, 0.0293375123, -0.0191899482, 0.0203956, -0.000874186866, -0.0219313707, -0.00824579317, 0.0119632175, -0.0405902565, 0.0172235891, 0.00124871021, -0.0116043929, -0.0155299362, -0.00327248196, 0.0266391505, -0.0247876141, 0.0124942781, 0.000793451269, 0.0207400713, -0.00412289659, -0.00680331746, -0.0259358548, -0.00475442829, 0.0108149787, 0.0214290153, 0.00880556, 0.0232374929, -0.0202807765, -0.012049336, -0.000675936171, 0.0397577845, 0.0011634893, -0.0157308783, 0.0124942781, 0.00682484731, -0.00281856861, -0.0231944323, -0.00662749354, -0.00607490353, 0.00126216607, 0.0141018135, 0.0071226717, 0.00199327152, -0.0251751449, 0.0337869413, -0.00359004177, 0.00104507711, 0.0233810227, 0.0168934707, 0.0016649469, -0.00953038596, -0.00940120872, 0.00596366776, 0.00655572861, -0.0146400509, 0.00104059186, 0.00394348428, 0.0108795669, 0.00647678692, 0.00198609498, -0.0254909117, -0.0084108524, 0.0210414845, 0.0165489987, 0.00824579317, 0.0131473392, 0.0116546284, 0.0194339491, 0.00163624098, 0.00355954166, 0.00518501783, 0.00239874353, 0.00551872514, -0.00207400718, -0.021027131, 0.00664543454, -0.00799461547, 0.0214720741, -0.00619331561, -0.0151998168, -0.0339591764, -0.00871226564, -0.0111092152, -0.00489078136, -0.00575196091, -0.00673155254, 0.00854003, -0.000933841453, 0.00336039392, -0.0210414845, -0.0232949033, -0.0218739584, 0.0233666692, 0.00313612842, -0.0231944323, -0.00768602639, 0.00108185667, -0.0121498071, 0.0337582342, -0.00614666846, 0.0160753503, 0.0207400713, -0.0177402962, -0.0103485063, 0.00881991256, -0.0116905114, 0.000905135472, -0.00669567, -0.0104776835, -0.0143314609, -0.0018264181, 0.0249885563, -0.01408746, -0.0261511486, -0.016793, 0.0216012504, -0.0130612217, 0.0132191041, 0.0222327821, 0.00466113351, -0.0350787081, -0.0156017011, 0.00662749354, 0.0115039218, 0.0125732198, 0.00255662645, 0.0359973, 0.0127239265, -0.0202377178, -0.0144534614, -0.00704014208, 0.0273711532, -0.0169939417, -0.0133339288, -0.00907109, 0.00810226332, -0.00246333214, 0.00275756838, 0.00790849794, 0.00390401343, 0.00456783921, 0.0128459269, 0.0132836932, -0.0529912412, 0.0113388626, -0.0345045887, -0.0021888311, -0.020955367, 0.0176685322, 0.0343610607, 0.0162906442, -0.0203812476, 0.0126593374, -0.0111092152, -0.0133913402, 0.00364386546, -0.0366575383, 0.00610360922, -0.00335501158, 0.00935815, 0.0224337243, -0.0277443305, -0.0039291312, 0.00524242967, -0.00234133168, 0.00684637669, 0.00445301551, -0.00137968129, 0.0229504313, -0.0225198418, 0.0215438399, -0.018472299, -0.0153720528, -0.000851760269, -0.0127311032, 0.0129535738, -0.0241991431, 0.00749943778, -0.0133913402, 0.00728055462, -0.0116330991, 0.0102839181, -0.0246297326, -0.00859744102, 0.00135276932, 0.0149558168, 0.0122789834, -0.00409060251, -0.00811661594, 0.00814532209, -0.0168934707, -0.0237398464, -0.0283040982, 0.00837497, -0.0115254512, -0.00312356954, -0.00180847687, 0.00697555346, 0.0024758908, 0.00334783504, -0.00218344876, -0.019921951, -0.00743484916, -0.00933662057, -0.00107288605, -0.00604619738, -0.0038430132, 0.010736037, -0.00425566174, -0.0219170172, 0.000752186403, 0.0128243975, 0.00653061084, 0.0227064304, 0.00127562205, 0.00613231538, 0.0173097067, 0.000568737276, 0.0107432138, 0.00746355532, -0.00913567841, 0.0177402962, 0.00680690585, 0.0123579251, -0.0055546076, 0.00413007289, 0.00468983967, -0.00551513676, -0.00475801621, 0.0130612217, 0.020266423, 0.00582731422, 0.0264525618, 0.0150562869, 0.0645884573, -0.00283112749, -0.00397219, 0.0176254734, 0.0173384119, 0.0216012504, 0.0164198205, -0.00803767517, 0.0101906238, 0.0213428978, 0.0024238613, -0.00813096948, -0.012257454, -0.00972415134, 0.0199650098, -0.0143386377, 0.0122143952, 0.0129679274, 0.0324377604, 0.0122789834, 0.00041444262, 0.00291365711, 0.00465754559, 0.0140802842, -0.0144032259, 0.0084897941, 0.00902085472, 0.00154653471, -0.00985332858, -0.00467548659, -0.00485131098, -0.00419825, -0.0122718075, 0.0214577205, 0.00461448636, 0.0279309191, -0.0111666266, 0.00715137785, -0.0341314115, 0.0201515984, 0.00354160042, 0.00097869453, 0.0137142828, -0.0149988756, -0.0189172421, 0.0186445341, 0.0173097067, -0.0130325155, -0.0133123985, -0.00919309072, 0.000358824764, 0.0105135655, 0.0130181629, -0.00760708516, -0.00643013977, -0.000331240124, 0.00376407173, -0.022060547, 0.00370666, 0.000302085595, -0.00406189635, 0.0123866312, 0.0146974623, -0.00028548995, -0.00904956087, -0.0120206298, -0.00977438688, 0.0124153374, -0.00603543269, 0.0259071477, 0.0311172847, -0.0110518029, -0.00888450164, 0.00201121275, 0.00675308192, 0.000999326934, -0.00532854768, -0.017711591, -0.0177546497, -0.0157882906, -0.00596366776, -0.00634761, -0.00408701412, -0.0152428765, -0.00253330288, 0.0109872147, 0.00289930403, -0.0102623887, -0.00359183596, 0.00507737044, 0.0128315734, 0.00267145038, -0.000623458, -0.00165866746, -0.00188562414, 0.0198932458, -0.0159605257, 0.000577259343, -0.0140372254, -0.00257097953, -0.0115039218, 0.0404467285, 0.00249562622, -0.0245005544, 0.0210127793, 0.0128674563, 0.0127239265, 0.00699349493, -0.00292980415, 0.00755684962, -0.00178425619, -0.0186732411, 0.0312321074, 0.0230078436, 0.0133339288, -0.0124009838, -0.00127113669, 0.0072087897, 0.0115756867, -0.0049230759, -0.0172235891, 0.00493025221, -0.000932047318, -0.0149271106, -0.000466023659, -0.000351424, 0.00688584708, -0.00433460297, -0.0134631051, -0.00077506149, -0.0110661555, 0.0164198205, 0.00681767054, -0.00407266105, 0.0223332532, -0.0117120408, 0.00581654953, -0.00542184245, 0.0122789834, -0.00553307775, 0.0141592249, 0.0328970551, -0.0367149487, -0.0119560417, -0.00451760367, -0.00118860707, 0.000232563296, 0.0197210088, -0.00788696855, -0.02264902, -0.0037999542, -0.0108939195, -0.0234958455, -0.0366862454, 0.0135276942, 0.00599596184, -0.000355012249, -0.00457142759, -0.0103413295, -0.00225880183, 0.00453195674, -0.00461089844, -0.000448306702, 0.00391477812, -0.000385063817, 0.0232087858, 0.0172810014, 0.00204171287, 0.0187737122, 0.00461448636, -0.0154581713, 0.00618613884, 0.0219744295, 0.0230939612, 0.0150849931, 0.0105853304, 0.00826014578, 0.0228356086, 0.00532854768, 0.0159318205, -0.00438125059, -0.0116833346, -0.0121856891, -0.00560484268, -0.0121211009, -0.0130540449, 0.00998968165, -0.0133769875, -0.00744202547, -0.00441354467, 0.0328683481, 0.0216156039, -0.0130899278, -0.0226633716, 0.0234958455, 0.0142381666, -0.014604168, -0.000705539191, -0.0264669154, 0.00425566174, -0.0246584378, 0.00525319483, -0.00669925846, -0.0036958952, -0.00942991488, -0.0134631051, -0.00320071704, -0.015328994, 0.0371742472, 0.0152141703, -0.0286055114, -0.0105135655, 0.0153146414, -0.0143601671, -0.0164054688, 0.0276151542, 0.00896344241, 0.000406817591, -0.0137860477, -0.00801614486, 0.00715137785, 0.0093294438, 0.025620088, -0.000266203133, 0.00471495744, -0.00910697225, 0.0021906253, -0.013879342, -0.00385377812, -0.00375330704, -0.0247302037, -0.0125803966, 0.0142525202, 0.00968826842, 0.0116474517, 0.0105709778, 0.0216586627, -0.00610360922, -0.00899214856, 0.0012280778, -0.0016667411, 0.0155155826, -0.0154581713, -6.68311113e-05, -0.0112958038, -0.0149701694, 0.0355380066, -0.00728055462, 0.00876967702, -1.19141032e-05, -0.0114393337, 0.0130540449, -0.0234671403, 0.0116689811, -0.0109226257, 0.0263233855, 0.0341027044, 0.00481901644, 0.000111403875, -0.00841802917, -0.00105494482, 0.00129984273, -0.00213859556, -0.00540748937, 0.0203812476, 0.00821708702, 0.0136066349, 0.0229360797, -0.0163767617, -0.00575196091, 0.00488001667, 0.0095806215, 0.0227064304, 0.00491948752, -0.0157021713, -0.00211706618, 0.0206970125, -0.00669208216, 0.0237111412, 0.0165920574, -0.00109441555, -0.00999685843, 0.00871944148, -0.0036528362, 0.0156447608, 0.02485938, 0.0109656854, 0.0175824128, 0.0106786247, -0.000626597728, 0.0288495105, -0.00107109197, -0.0254047941, 0.0128315734, -0.00178066792, -0.00250280276, -0.0127526326, -0.0171661768, 0.0253904406, 0.0206539538, -0.0272850357, 0.00569096068, 0.00177080021, 0.0206252486, 0.0115900403, -0.0199363045, -0.00256739114, 0.0236537289, -0.00596007938, 0.00523884175, 0.0139152249, 0.00969544519, 0.00250818511, -0.0218452513, 0.00155191717, -0.000813635183, -0.00465395721, 0.00127921032, -0.00606055046, -0.00342498231, -0.00726620154, -0.00773626193, -0.0158169959, 0.00314151077, -0.00324736419, -0.00900650211, 0.0101403883, -0.0101547409, -0.0103987418, 0.00231621391, -0.00348957093, 0.00620766869, 0.00608208, -0.00154474063, -0.0140013425, 0.0103485063, -0.00754249655, -0.0020596541, -0.000660686113, 0.00597802084, -0.0244144369, 0.00385736628, 0.00710114231, -0.0127239265, 0.00226059603, -0.0260793846, -0.0116043929, -0.0232374929, -0.011496746, -0.016678175, 0.00231621391, 0.0152141703, -0.0110589797, 0.0132549871, 0.00558331329, -0.00640861038, -0.000163489531, 0.0127526326, -0.0183718279, 0.00361515954, 0.022993492, 0.0150849931, 0.0184292402, -0.00743484916, 0.0129751032, 0.014051578, 0.0186732411, -0.00465395721, 0.0137501648, 0.00750661409, -0.00560484268, 0.00434536813, -0.00902085472, -0.00690737693, 0.00922179688, 0.0166638214, -0.0215151329, 0.000882708933, -0.00318815815, -0.0168934707, -0.0162045266, 0.0118053351, -0.00067683321, -0.0187593587, -0.0180417094, -0.00671361154, -0.0131760454, 0.00547566591, -0.00710114231, 0.0275720954, 0.0142453434, 0.00206324249, 0.0204673652, -0.0163480565, 0.00287059811, 0.00304821646, -0.00206144829, -0.000301188527, 0.00799461547, 0.00115900405, -0.0193621852, 0.000736487855, 0.0255052652, 0.0129679274, -0.0248306748, -0.0092935618, 0.0153720528, 0.0151136992, -0.0211419556, -0.00294774538, -0.00523884175, -0.00859026518, 0.0173384119, -0.00907109, 0.00242565549, 0.00137429882, 0.010736037, 0.0322368182, -0.00500560552, -0.0209123082, -0.0194195956, -0.00558331329, 0.00864767656, -0.000185355413, 0.00363130658, -0.0125086317, 0.00648396369, 0.013154516, -0.00396860205, -0.0209697187, -0.0165777039, 0.00121013657, 0.00886297133, -0.00207041902, -0.0180991217, -0.0118340412, -0.011740746, 0.0127813378, 0.00894191302, -0.00591702061, -0.00514195906, 0.00459654536, 0.00328145246, 0.0212567784, 0.0146544036, 0.0112814503, 0.00519578252, 0.00030948635, -0.00236286107, 0.010944155, 0.0120278066, -0.0120278066, -0.00865485333, 0.00754249655, 0.0239120834, -0.0330405831, -0.00981026888, 0.00391119, -0.0120636886, 0.0192186553, 0.00728773093, 0.00592419691, -0.00258892076, -0.0127454558, -0.00382148381, 0.017438883, -0.025620088, 0.0174245313, -0.0023790081, 0.00356671819, -0.00620766869, 0.0102049764, -0.0123722777, -0.00381430727, 0.0131258098, -0.00423054397, 0.00576990237, 0.00486925198, -0.0030105398, 0.0218883101, -0.0262229145, -0.0215725452, 0.0108365081, -0.0198214799, -0.00374971889, 0.00245615561, 0.0139224008, 0.00700425962, -0.0242852606, 0.00719084824, -0.00569454907, 0.00794438, -0.00142722554, 0.0154007589, -0.0160035845, 0.000492038438, 0.00259968545, -0.00166046165, -0.00601031492, 0.0263520908, -0.00558690168, 0.00320071704, -0.0174962953, 0.0219313707, -0.00849697087, 0.0106642721, 0.0142094605, 0.0129320445, 0.0117335701, -0.00574837299, -0.0121354535, 0.00326709962, -0.00772190886, 0.0131760454, -0.0120708654, -0.00783673301, 0.00998968165, -0.00899214856, -0.01384346, 0.0104705067, -0.0171087645, -0.01550123, 0.00171069708, -0.00237542, -0.0283902157, 0.00096344453, -0.0044924859, -0.0242852606, 0.0136138117, 0.010563801, -0.0167355873, 0.00513837067, 0.00739179039, 0.0244000833, -0.00649831677, -0.00537160691, 0.0108508607, -0.00971697457, 0.0021457721, 0.00222830172, -0.00219241926, 0.00720520131, 0.0117335701, 0.00856873579, -0.00663825823, 0.00706884777, -0.0117192166, -0.00510248821, 0.021716075, 0.00786543917, 0.000868804462, 0.0128746331, 0.00145503448, 0.00567301968, 0.021716075, 0.00974568073, 0.00574119622, -0.0173527654, 0.00529266521, -0.0128459269, 0.0283328034, 0.00684637669, -0.0100399172, 0.0191468894, 0.0138865188, 0.0046467809, 0.0260506775, 0.000408163178, -0.00137429882, 0.00019903561, 0.0122431014, -0.0111594507, 0.00628302153, 0.00660955207, 0.000522538554, 0.010183447, 0.00282395096, -0.0156878196, 0.000313298864, -0.0054003126, -0.015156758, -0.037116833, -0.00143260788, -0.00876250118, 0.00510248821, 0.017194882, 0.00838932302, -0.00875532441, -0.0103054475, 0.00389683689, 0.025892796, -0.00920026749, 0.000809598365, 0.0165777039, -0.00236465526, 0.0185727701, 0.00762861455, 0.01746759, -0.00369230681, 0.00306974584, -0.00993944611, 0.022060547, -0.0323803462, 0.0184579454, 0.0272276234, -0.00175644725, 0.0168647636, 0.0181708857, -0.0357963592, 0.00327068777, -0.0158026423, 0.0138075771, 0.00354698277, 0.0123507483, -0.0324377604, 0.00146669627, -0.00644808123, 0.0162475854, 0.0212711319, 0.00124512194, 0.00788696855, 0.00752096716, 0.00120834238, -0.0042736032, -0.00485848729, 0.0178694744, 0.0187593587, -0.00225341949, -0.00518860621, -0.0336721167, -0.00304104, 0.00269656815, 0.00951603241, -0.0163767617, 0.00743484916, 0.00427719112, -0.0176111199, 0.0236680824, -0.0169939417, 0.00700067123, 0.00185691821, 0.0199937169, -0.00249024387, -0.000558869564, 0.0127598085, 0.00867638271, 0.0332702324, 0.0113890981, -0.00318636396, -0.0103198, -0.0160466433, -0.0103628589, -0.0196779501, -0.0240843184, -0.00354877696, -0.00704373, 0.00351827685, 0.010700155, -0.00243821437, 0.0229791384, 0.00767885, -0.00176721194, 0.00920744333, 0.0225341953, -0.00750661409, -0.00689302385, 0.00778649747, -0.0155299362, -0.0116330991, -0.022304548, -0.0189603, -0.00302668684, 0.000250056, 0.0120995715, 0.0123938071, 0.0154294651, 0.0155729949, 0.0288208053, 0.0134056937, -0.0219744295, -0.00955909211, -0.00795873348, 0.00052747241, -0.0106786247, -1.95671637e-05, 0.00184435933, 0.0115828635, 0.00540748937, 0.0171661768, 0.015156758, -0.00142184319, 0.00651625777, 0.00912850164, -0.0221610181, 0.0108149787, 0.00747073162, -0.00728055462, -0.00324198185, 0.00398654304, 0.000331912917, 0.00690737693, 0.0118627464, 0.00622560969, 0.00202197768, -0.00467907498, 0.0150706405, 0.0153720528, -0.0337582342, 0.0237254929, -0.00323121715, -0.0102265058, 0.00674231723, -0.017711591, -0.0189459473, -0.0274285655, 0.0292370412, -0.0123363957, -0.0233810227, -0.00340345292, 0.0341601186, 0.00888450164, -0.00390401343, -0.0170657057, -0.00481184, -0.01242969, -0.00543978345, -0.0145395799, -0.00603902107, 0.0303422231, 0.0218452513, 0.00986768119, -0.0206970125, -0.0131616928, 0.0147405211, -0.00515272375, -0.0227207839, 0.00546131283, 0.0235676114, -0.00518501783, -0.00250280276, -0.00679255277, -0.0125373378, -0.00495895837, 0.00665619923, 0.0146256974, -0.00301771634, -0.0112455683, 0.0137860477, -0.0230365507, 0.0162906442, 0.0248880852, -0.00309306942, 0.00548284268, 0.0108006252, -0.00304462807, -0.0165202916, 0.0213428978, -0.0161901731, -0.00340704108, 0.0124583961, 0.00938685611, -0.00446019182, 0.00639066892, -0.0115039218, -0.023854671, -0.0126665141, -0.00477236928, 0.0228643138, -0.00772908563, -0.00782238, 0.00643013977, 0.00278089195, 0.0126521615, 0.00961650349, 0.00644090446, 0.00584525568, -0.00112581276, 0.00775779132, -0.0206539538, 0.0145467557, 0.0012065483, 0.00452836836, -0.00649831677, 0.00226777256, -0.0181134734, -0.0121856891, -0.0112312157, 0.00180847687, 0.00964521, 0.0262516197, 0.0101690935, 0.0218021926, 0.0119632175, -0.00476160459, 0.00855438225, 0.00734873116, 0.0191468894, -0.000433280919, -0.0140085192, -0.0123938071, 0.0173097067, 0.00840367563, -0.0114249811, 0.00885579549, -0.00627584523, 0.00247768499, 0.00271092122, 0.00328683481, -5.33471502e-05, 0.00277012726, -0.0188741833, 0.0201659519, -0.00655931653, 0.0166925285, -0.00391477812, -0.0244718492, 0.021716075, 0.0227064304, -0.0057555493, -0.0158600546, 0.00339268823, 0.0111953327, -0.0151711116, -0.00889885426, -0.00477236928, -0.00671002315, 0.0183861814, 0.000724826, -0.00711190701, -0.0342462361, -0.0141233429, -0.0038430132, 0.00667414069, 0.00131778396, -0.0200367756, 0.00505942944, -0.0144606382, -0.0105135655, -0.00193765375, 0.0274859779, 0.0074779084, 0.0126091028, 0.00443866244, -0.023581963, -0.00599596184, 0.00199865387, 0.00065844343, 0.0260650311, -0.00356313, 0.00778649747, -9.13881813e-05, 0.0230078436, -0.0108006252, 0.00292980415, 0.0127311032, -0.0123435725, 0.00990356319, 0.00202736, 0.00917156134, -0.0034196, -0.00033101585, 0.00770755624, -0.00443866244, 0.00547925429, 0.0120780421, -0.00570531376, -0.0181852393, -0.00775061501, 0.00978156272, -0.00907826703, 0.00821708702, -0.00611437391, 0.0013240634, 0.0148409922, -0.0216443092, -0.006681317, 0.0162762906, -0.0051060766, -0.0212854855, 0.00431307359, -0.00548284268, 0.0162475854, 0.00948732719, 0.00767167332, 0.0249167923, 0.00321686408, 0.00446378, -0.00436330913, 0.0214720741, 0.00936532672, -0.0180847682, 0.00330657023, -0.012221572, 0.00492666429, -0.00100022403, -0.00251536164, -0.00652343407, 0.00324915838, -0.00918591395, -0.00335680577, 0.00587754976, 0.0102623887, 0.0104776835, 0.00103162124, -0.022132311, 0.000797936576, -0.0467907488, -0.00513478229, 0.0164915863, -0.00186768291, -0.00180757977, -0.000815877807, -0.0261367969, -0.000144651232, -0.0109872147, 0.0100614466, 0.0146759329, 0.0278591551, -0.0104346238, 0.002926216, -0.0134559292, -0.0109298024, 0.006300963, -0.00290827476, -0.0415088497, -0.014051578, -0.00181206514, 0.00222291937, 0.01077192, -0.00596366776, -0.00356671819, -0.00902803149, -0.00897061918, 0.0161758214, -0.00906391349, -0.00508454675, -0.00455707451, -0.00399013143, -0.00229468429, -0.000180757983, -0.00587396137, -0.00549360737, -0.00143709325, -0.0208261888, -0.00168288813, 0.0152428765, 0.0219744295, -0.010355683, -0.00791567471, -0.00241668476, 0.0150419343, -0.00247050845, 0.0192904193, 0.0137429889, 0.0106212134, -0.00722314278, -0.0151711116, 0.0138291065, -0.00582013791, 0.0174245313, 0.00520295929, 0.00709755393, -0.0135994591, -0.0142668728, 0.00177977083, 6.216359e-06, -0.0205678362, -0.00668490538, -0.00361157139, -0.0121713364, 0.0120349824, 0.0279452726, -0.00407266105, 0.0227207839, -0.00469342805, 0.00899214856, 0.0228643138, -0.0150275817, -0.00163265271, -0.00397577835, -0.01298228, 0.00826014578, 0.00176721194, 0.0105566243, 0.00668849377, -0.0061179623, 0.0276151542, -0.00576631399, 0.00784391, -0.000749046681, 1.18159878e-05, 0.0135563994, 0.00605696207, -0.00520654721, 0.00980309304, -0.00385736628, 0.0201803055, -0.0203525405, 0.00290468661, 0.0202951282, 0.00728055462, 0.000185019016, -0.00402601389, 0.00296568661, 0.00673155254, -0.000605068286, -0.00383224851, -0.0107934494, 0.00991074, -0.0189315956, 0.0168504119, -0.0123938071, -0.0125660431, 0.00915003195, -0.0199506562, -0.00273783295, -0.000317335653, 0.0106714489, 0.0189746544, -0.0126091028, 0.0119632175, -0.0146902855, 0.0131258098, 0.0121856891, -0.0179986507, -0.00917873718, 0.018127827, -0.0298255142, 0.016434174, -0.000167302045, -0.000342453393, 0.003417806, -0.0182426516, -8.52208832e-05, -0.0413079076, -0.0149558168, -0.0136138117, 0.0116115697, 0.000283471571, -0.0235676114, -0.0103054475, 0.00250639091, 0.0295958668, 0.00421260297, -0.021716075, 0.0134272231, 0.000300291489, 2.41646048e-05, -0.00147835806, -0.00259071472, -0.0265673865, -0.00682843523, 0.00263197976, 0.0213285442, 0.00335142342, -0.00767885, -0.0057447846, -0.006387081, 0.0116833346, 0.00512042921, -0.0178694744, 0.00139493134, -0.0109585086, -0.00227853726, 0.0116187464, -0.000967032742, -0.00425207336, -0.00905673672, -0.000420946308, -0.0122789834, 0.00253689103, -0.00942273811, -0.0169365294, -0.0125660431, -0.000537340064, -0.00789414532, 0.0117838057, -0.0109656854, -0.0181565341, 0.0257349126, -0.0127885146, 0.0102839181, -0.0131473392, -0.0110876849, -0.00221215468, 0.0123435725, 0.0155586423, 0.0126593374, -0.000411751418, -0.0107934494, -0.0108580375, -0.02817492, 0.0175537076, 0.0212424267, 0.00513119437, 0.00115810696, 0.0274716243, 0.00475084, 0.00744202547, 0.0111953327, -0.0259932671, -0.0037030715, -0.0191468894, 0.00289571588, 0.00472931052, 0.00559766637, 0.0126306321, 0.00501637, -0.00950885657, 0.01046333, -0.00280062738, -0.01384346, -0.0205821879, 0.000921282568, -0.00829602871, 0.00399013143, -0.0056766076, 0.0131258098, -0.0146974623, 0.00812379271, 0.0112814503, 0.0135563994, -0.00697196508, 0.0249024387, -0.024931144, 0.00679972954, 0.00614308, -0.00535366544, 0.0073989667, -6.69432484e-05, -0.00238439068, 0.00319712865, 0.0157308783, 0.0247732624, 0.00594931468, 4.11246838e-05, 0.00165328512, 0.000233236104, 0.00873379502, -0.0237398464, 0.0124081606, -0.00308409892, -0.00556178391, 0.0231083147, -0.00347342365, 0.00899932534, 0.00463960413, -0.00430230889, -0.0165633522, -0.00440636836, -0.0263807978, -0.0121354535, -0.0132047515, 0.00664184662, 0.00865485333, -0.00025274721, 0.02264902, 0.00151782879, -0.0118842768, -0.0115182754, 0.0192904193, 0.00456425082, 0.0273137409, 0.0323229358, 0.0167355873, 0.0323803462, -0.0168073513, -0.010011211, 0.0150562869, 0.00349674746, 0.00222291937, 0.000969723915, -0.00794438, 0.0249167923, 0.00710473023, -0.01550123, -0.000262390618, -0.00334424688, -0.0133985169, -0.0163193513, 0.00854720641, 0.0042736032, -0.0131616928, 0.00608566822, -0.00785108563, -0.0184292402, -0.00245794957, -0.00965956319, -0.0163767617, 0.00195380091, -1.22995598e-05, -0.0165202916, -0.0131401634, -0.015156758, -0.0123005128, 0.0185153577, -0.00914285518, 0.00769320317, 0.0209410135, 0.0127167497, -0.00754967332, 0.00116618047, 0.00701143593, -0.0134487525, -0.0172379427, -0.0180991217, 0.0306866933, -0.0282179806, 0.00751379086, -0.00720161293, -0.0150132282, -0.031863641, -0.0146328742, -0.044637803, -0.0156304073, -0.0247732624, -0.0217591338, -0.0098820338, -0.0156160537, 0.00985332858, 0.0144534614, 0.0111809801, -0.00334962923, 0.000673693488, 0.0316914022, -0.00747073162, 0.00818838086, 0.00355954166, 0.00377483666, -0.0021027131, 0.0108365081, 0.0265817381, 0.0131258098, 0.0161327608, -0.0113316858, 0.0225485489, -0.00639784569, 0.0011643864, -0.0116474517, -0.00942991488, 0.00654496392, -0.00131957803, 0.0124009838, 0.00949450303, -4.3984066e-05, 0.0127311032, 0.000642296334, -0.00762861455, 0.0366575383, -0.0275720954, 0.0240412597, -0.0361695364, -0.0275577419, 0.00608566822, 0.0193334781, -0.0101978, -0.0133698108, 0.00301412796, 0.0128531028, 0.015156758, -0.00262300903, -0.0056766076, 0.00724826055, -0.0082027344, 0.0264095031, 0.00293159834, -0.0129894568, -0.0198645387, 0.010082976, -0.01046333, -0.002969275, 0.000244225113, 0.0117694521, 0.00568019599, -0.015917467, 0.00774343871, -0.0127023971, 0.00235568453, -0.00759990839, 0.0678035319, 0.0146687562, 0.0120134531, -0.000736039307, 0.0117622763, -0.0204673652, -0.0216873698, 0.0427145, 0.00550796, 0.00709396554, -0.0283902157, 0.0106212134, -0.00571966683, 0.014051578, -0.00798026286, -0.021299839, -0.00633325707, -0.00582013791, 0.0162332319, -0.022749491, 0.018888535, -0.0157739371, 0.00627943361, 0.00232159626, -0.00150168163, -0.0149127571, -0.00411572028, 0.000226171731, -0.00525678275, 0.0113029806, -0.00597443245, 0.00744202547, 0.00303386338, 0.00254765595, -0.0182857104, 0.0024651261, 0.0280026849, 0.00482619321, 0.00840367563, -0.00140121067, 0.00864767656, 0.00259968545, -0.00601749122, 0.00158510846, 0.00887732487, 0.0288208053, 0.0247589089, -0.0370881297, 0.0132549871, -0.0146113448, -0.00815249886, -0.0110805091, -0.0071406127, -0.0168360583, 0.019505715, 0.0117909815, 0.00312536373, 0.0185584165, -0.00313074607, -0.00380354258, 0.0130468681, 0.0148409922, 0.0108580375, -0.0116618052, 0.0204530116, -0.0127598085, -0.0054684896, -0.00652343407, -0.00069477444, -0.000894370722, -0.0312034022, -0.00300695165, -0.00475084, -0.0106499195, 0.01439605, 0.00476160459, -0.0308015179, 0.000351648283, -0.0322368182, -0.00653419923, -0.00528548891, -0.00758555578, -0.0109010963, -0.0186301824, -0.010700155, -0.00826732256, -0.0177259427, -0.00866920594, -0.00905673672, 0.018127827, 0.00307154, 0.00560484268, -0.0269405637, 0.021027131, 0.0165202916, 0.00889167748, 0.0041874852, -0.0130899278, 0.0159031134, 0.0119775711, 0.0245723203, 0.0100255636, 0.00854003, 0.00634761, -0.0141951079, 0.029796809, 0.0233953744, -0.00662749354, 0.0291939825, -0.00449966267, 0.0140156951, -0.0158744082, 0.023510199, 0.0252899695, -0.0149271106, 0.0123722777, -0.00999685843, -0.017367119, 0.0185153577, -0.0183431227, 0.00977438688, 0.000461538351, -0.0104130944, -0.0202377178, -0.0122789834, 0.0117479227, -0.0138291065, 0.00491231121, 0.0084108524, 0.0037389542, 0.00434177974, 0.00705449516, 0.0403606109, 0.00377483666, 0.0141089903, -0.00215474283, 0.00469342805, -0.000499663467, 0.00221394887, 0.0224624313, 0.00655214, -0.0218883101, -0.00282036257, -0.0122502772, -0.00514195906, 0.0164772328, 0.0074779084, -0.00496613467, -0.00728773093, -0.0177402962, 0.0265243277, -0.00376048358, 0.0131401634, -0.0097528575, -0.0260076188, 0.00104866538, -0.00810944, -0.033586, -0.00749943778, -0.000611796218, -0.00769320317, 0.0109656854, 0.00812379271, -0.00314509915, -0.0011850188, 0.0327822305, 0.00452478044, -0.00657008169, 0.00396860205, -0.0104130944, 0.00168288813, 0.013671224, -0.00234312564, 0.0110733323, 0.0161184091, 0.0291078649, 0.00582372583, -0.0084108524, 0.00859026518, -0.0121498071, 0.00184256514, -0.0164772328, -0.0151854642, 0.048369579, 0.00212603668, -0.0151998168, -0.00355057116, 0.0108939195, 0.00557613699, 0.0109369792, -0.0258353837, 0.0178120621, -0.00372101273, 0.00367436558, -0.00864767656, 0.0028813628, -0.00579860806, -0.00609643292, -0.024270907, -0.0152859353, 0.00925767887, 0.0058488436, -0.00894909, 0.0126162786, 0.00100740057, 0.0233092569, 0.0149701694, -0.000793899817, 0.00885579549, -0.0122502772, 0.023510199]
12 Aug, 2024
What is SSL/TLS Handshake? 12 Aug, 2024 The network is important for office, home, and business networks. The problem is at the utmost places wireless communication is used or we can say the wireless network is used which is effortlessly hackable and the router can be freely exploited if not secured rightly. So there’s a need for security in the network. To fulfill this need we can use security protocols or cryptographic protocols to deliver authentication and data security. What is Secure Socket Layer(SSL)? It provides protection to the data that are aligned between the web browser and server. SSL encrypts the link between a web server and a browser which ensures that all data passed between them stay private and separate from attack. Secure Socket Layer Protocols: SSL record protocol Handshake protocol Change-cipher spec protocol Alert protocol Transport Layer Securities (TLS) Transport Layer Securities (TLS) are aimed to give security at the transport layer. TLS was concluded from a security protocol called Secure Socket Layer (SSL). TLS ensures that no third affair may overhear or tampers with any communication. When Does a TLS Handshake Occur? In the startup of a protected relationship between a customer (such as an internet browser) and an expert organization (like a website), there is a TLS handshake. A secret exchange of greetings is like a handshake between two people, but in this case, it is where they agree on what information they want to keep safe before sharing anything. This process involves agreeing on ECMs through which they will communicate safely through the division of pairs while confirming identity integrity Through the use of encryption keys. The action of ensuring privacy besides safety measures for information being conveyed is also very significant. What Happens During a TLS Handshake? A secure connection is established by the client and server during TLS handshake. Here are the main steps : ​C​lientHello : ​This is where the client begins its handshake with a “hello” message sent to a server which includes supported encryption methods as well as other parameters. ​ServerHello : In response, the server also sends its own hello message selecting an encryption method before sending over its digital certificate for authentication. Key Exchange : In this step, both client and server agree on a shared symmetric key that will be used for client data encryption/decryption during their session. It may involve Diffie-Hellman key exchange or other ways. ​Authentication : To prove its identity, the server presents a digital certificate. Then, it is up to the client to verify if such certificate is from a trusted source. Sessio​n Key Generation : Both sides are able to use these exchanged keys in order to generate session keys that will be used for encryption/decryption of data while they are in session. ​Finished : To confirm that the handshake went through successfully and that encryption is properly established both parties send ‘finished’ message. After finishing these steps, they create secure connection which allows safe transfer of information between client and server at all times. What is the difference between SSL and TLS protocols? There are always security issues between client and host so Secure Socket Layer and Transport Layer Security are the cryptographic protocols used to provide authentication and data security between the web browser and web server and it encrypts the communication between a client and server, mainly between web browsers and web applications. There are many differences between SSL and TLS protocols. Secure Socket Protocol supports Fortezza Algorithms where Transport layer Protocol do not, also the versions of both protocols are very different SSL is version 3.0 and TLS is version 1.0 protocol. The difference between SSL and TLS is that. In SSL the Message digest is used to create a master secret and provides the security services in communication. which are Authentication and confidentiality. While in TLS a randomly generated Pseudo function is used to create a master secret which provides higher security as compared to SSL. What is SSL/TLS Handshake? The SSL and TLS handshake establishes a system for SSL/TLS clients and servers to start communication between them in other words it is a negotiation between two parties on a network. Handshake Protocol is used to establish sessions. This protocol allows the client and server to verify each other by transferring a series of messages to each distance. Handshake protocol uses four phases to finalize its circle. Steps enable the SSL or TLS client and server to communicate with each other: Phase-1: Deciding which version of the Protocol to use. The system decides which protocol to use. Client and Server exchange hello-packets with each other to confirm. In this IP session, cipher suite, and Agree on which version of the protocol to use. Phase-2: Server sends his certificate and Server-key-exchange. The server end phase-2 by exchanging the hello packet. Phase-3: Verification, in this phase, the Client replies to the server by sending his certificate and Client-exchange-key. Phase-4: In this phase, the Change Cipher suite is passed and all the verifications and security checks are done after this Handshake Protocol ends. What is Cipher Suite? A Cipher suite is a set of encryption rules that decides how the TLS handshake works. TLS/SSL protocols use some algorithms from a cipher suite to generate keys and encrypt information so that the communication is end-to-end encrypted. A cipher Suite specifies one algorithm for each of the following tasks Key Exchange Algorithms: This algorithm protects the information required to create shared keys. Bulk Encryption Algorithms: Bulk encryption algorithms are those algorithms that encrypt the messages exchanged between clients and servers. Message Authentication Algorithms: Message authentication algorithms generate messages and signatures that ensure the Combination of a message. Conclusion SSL/TLS handshake lets client and server follow a process to form a secure connection. Firstly, it involves the client sending its “client hello” message to the server after which the server replies with its own “server hello” message that selects encryption algorithms. Then, the server sends its digital certificate to the client for verification purposes. The client generates a pre-master secret that is encrypted using the public key of the server before sending it back. With this secret both parties come up with session keys they use during secure communication. Lastly, in order to approve if this handshake has been finalized or not, clients and servers exchange their “finished” messages. This way they can be sure that they are communicating securely through encryption. Frequently Asked Questions on SSL/TLS Handshake – FAQs What is an SSL/TLS Handshake? The SSL/TLS Handshake is a process wherein a client and server set up a secure connection prior to exchanging data. What if the SSL/TLS Handshake fails? In that case, it will simply not have a secure connection set up. Data may travel between devices in an unencrypted manner in such a case, and there will be chances of data interception and other security problems. What is the importance of an SSL/TLS handshake? This is essential because it establishes a secure way of communicating using encryption, identification, and key exchange. In what way does the SSL/TLS handshake guarantee security? This is done through agreeing on encryption methods, exchanging keys and verifying identities thereby ensuring that data transmitted over them is done securely. Can one bypass the SSL/TLS Handshake? Bypassing the SSL/TLS handshake simply means bypassing the setup for a secure connection; thus, it compromises the security for the communication. 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!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?
https://www.geeksforgeeks.org/what-is-ssl-tls-handshake?ref=asr10
PHP
TLS Handshake?
What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, jQWidgets jqxTreeMap width Property, Difference between Flow and TypeScript, jQWidgets jqxTree destroy() Method, jQWidgets jqxTree collapseAll() Method, jQWidgets jqxScrollView buttonsOffset Property, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, jQWidgets jqxListBox enableHover Property, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxSlider buttonsPosition Property, jQWidgets jqxSlider rtl Property, jQWidgets jqxTooltip opacity Property, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, jQWidgets jqxToolBar height Property, PHP, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, Node.js date-and-time Date.transform() Method, TypeScript Optional Parameters, jQWidgets jqxToolBar theme Property, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, How to use Optional Chaining with Arrays and Functions in TypeScript ?, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, jQWidgets jqxScrollView showButtons Property, jQWidgets jqxScrollView disabled Property, jQWidgets jqxSplitter destroy() Method, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, jQWidgets jqxTree collapseItem() Method, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), jQWidgets jqxSortable opacity Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, jQWidgets jqxSlider height Property, jQWidgets jqxSwitchButton onLabel Property, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, jQWidgets jqxToolBar tools Property, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTree width Property, jQWidgets jqxTree clear() Method, TLS Handshake?, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, jQWidgets jqxTabs position Property, jQWidgets jqxTabs keyboardNavigation Property, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, How to Sort an Array Having Optional Properties in TypeScript ?
GeeksforGeeks
[-0.0163262263, -0.0162203182, -0.0103057269, -0.0151286433, 0.0137762716, 0.00894520804, 0.0175319556, 0.0312837884, -0.0129127093, 0.0096051, 0.00815089326, -0.0174016058, 0.0163425207, -0.0114788683, -0.0135726016, 0.0116988327, -0.00498178, -0.00576794799, -0.0161225554, 0.00737287151, 0.0156581867, -0.0170431454, -0.0604168139, -0.0266401, -0.0297195967, 0.00485550426, 0.0149982944, 0.00352960941, -0.0664128736, 0.0105419848, 0.0341840535, 0.00879041851, -2.80524273e-05, -0.0432759039, -0.0199271198, -0.0386810973, -0.0380293541, -0.0103546074, -0.051064264, 0.00719771488, -0.00239516492, -0.00851342641, 0.0241634659, -0.0135644544, -0.0430152081, -0.0041528414, -0.0108271232, -0.0257113613, 0.0176785979, -0.00776391895, -0.0267215669, -0.0058738566, 0.0234302524, 0.0506080426, 0.0335974842, 0.0141428784, 0.0322125256, -0.0219638254, 0.025124792, -0.00456221867, 0.0339233577, 0.0053891209, -0.00507954182, -0.0233324915, 0.0277806539, 0.0107212141, -0.0370843224, 0.00072557613, 0.0273733139, -0.00855416059, -0.047479663, 0.0213772543, 0.0386810973, -0.0240168236, -0.00485143112, 0.00487587135, 0.0465020463, 0.0331738479, 0.0397238918, 0.0182651691, -0.037442781, 0.0231206734, -0.000530561607, -0.00845639873, 0.0166521, -0.00834234338, -0.028090233, -0.0669342652, 0.0328153893, -0.0065093087, 0.0106397457, -0.00953992549, -0.0236257762, -0.00833012257, -0.00832605, -0.0101102032, 0.0185747482, -0.0200574696, -0.0431781448, 0.0341840535, 0.0333693735, 0.0213283729, -0.0128556807, 0.00570684718, -0.0208558571, 0.00565389264, -0.0149412667, 0.0152752865, 0.0217357147, 0.0541600548, -0.0196012482, -0.0186888035, 0.0307298023, 0.0220941752, -0.0198619459, -0.0234465469, -0.0208069775, -0.0470560305, -0.0239353552, 0.0185747482, -0.0124239, 0.0163425207, -0.00736879837, 0.0121957883, -0.0615247786, 0.0560175292, -0.0385507494, -0.0238701813, -0.00117925217, -0.0193242561, 0.0109004444, -0.00862748176, -0.0394957811, 0.0191450249, 0.0151042035, 0.0171572026, -0.00254588109, 0.0167172737, 0.00843195803, -0.0368562117, -0.020513691, 0.0139636481, -0.0252714343, 0.0147864772, 0.0237724185, 0.0027067808, -0.0479033, 0.0208069775, -0.079773657, 0.0404082239, -0.0263468139, -0.0077761393, -0.0346728638, 0.0138332993, 0.0169942658, -0.0599605925, 0.0027067808, 0.0256787743, -0.00710402662, -0.0196990091, 0.0102242585, -0.0518463589, -0.000464623299, -0.0133770779, 0.0151612312, 0.0218008887, 0.0316585414, -0.0217031278, -0.0103301667, 0.0507383905, -0.0256950688, 0.00761727616, 0.0228762683, 0.00608974742, -0.00783724058, -0.0259557664, -0.018053351, 0.00294914865, -0.00862748176, -0.00052801572, -0.0411577299, -0.0231532604, 0.0070144115, -0.00968656875, 0.0408318602, -0.0138170058, 0.0192916691, -0.013482986, -0.0259557664, -0.0389743857, 0.00409581326, 0.0187865663, 0.0655656, 0.0364651643, -0.00318133296, 0.00735657802, -0.0145339258, 0.012733479, 0.0374753699, -0.0211817306, 0.018672511, -0.0223222859, -0.0355527215, 0.00647672126, 0.0087822713, -0.00514471624, -0.0292470809, -0.0116662458, 0.0105745718, 0.0197804775, -0.0778835937, -0.00329742511, 0.00258254167, 0.00800832361, -0.00465183379, -0.00868450943, -0.031267494, -0.0105501311, -0.0309905019, 0.0218823571, -0.0036232979, -0.000477607304, 0.00861933455, 0.00918146595, -0.0395283662, -0.0307135098, 0.0108922971, -0.0301106442, 0.0262001716, -0.00933625549, 0.00381882163, 0.0382574648, -0.00858674757, 0.00943401735, -0.0398542397, -0.00618343614, 0.0213120803, 0.000506121141, 5.91280877e-05, -0.0118210353, -0.0103709009, 0.00755617488, -0.0350639112, -0.0304528102, -0.0784049928, 0.00238701818, 0.0281065274, 0.0728651509, -0.022664452, 0.00790648814, -0.0133037558, -0.000635961071, 0.00649301521, 0.0221430548, -0.0319192372, 0.0369539745, 0.000731686247, -0.0186888035, 0.0286605116, -0.033760421, 0.0179230031, -0.0015153084, -0.00861118827, 0.00852972, -0.0259557664, 0.0204322226, 0.0125135146, -0.00133913348, 0.00998800062, -0.0155685721, 0.0454592519, -0.0329131521, 0.0175156612, -0.0052628452, -0.0214261357, -0.0175319556, 0.0171734951, 0.0156907737, 0.055300612, 0.00337278331, 0.00903482269, -0.0318214782, 0.0293122567, 0.0142080532, 0.000482953648, -0.0353246108, -0.025499545, 0.0125379553, -0.0426893346, 0.0184281059, -0.0264608692, 0.0288886223, 0.0198619459, -0.00366810546, 0.029084146, 0.0330597945, -0.00298580923, 0.0115603367, -0.0425915718, -0.018020764, 0.00196949369, 0.0124157527, -0.0149982944, 0.018672511, -0.0368236229, 0.00709588, 0.0153404614, -0.0175645426, 0.000385446387, 0.00601235265, 0.0157722421, -0.0493045524, -0.0129452962, 0.0122935502, 0.00803683698, 0.0048840181, 0.0213609599, 0.00511212926, 0.000214745072, -0.0317400098, 0.0334019586, 0.0452963151, -0.00687591545, 0.0268030353, 0.0161958765, -0.0211491436, 0.0202692859, 0.022664452, -0.0274710748, -0.0138984742, 0.0146398349, -0.00113342621, -0.0378990024, -0.00188598875, 0.0176623054, -0.0343795791, 0.0141510256, 0.0239353552, -0.0222245231, 0.0303550493, 0.000572314078, -0.0223385785, -0.0066559515, -0.017988177, 0.00483921077, 0.00815496594, 0.0117884474, -0.0112181706, 0.0216542464, 0.0106315995, 0.00168639165, 0.0136133349, 0.0319355316, 0.000553474529, 0.0131245265, -0.0290352646, 0.0178741217, 0.00776799256, -0.0126683041, -0.00353775639, 0.0224852208, -0.0178415347, 0.0138088586, 0.0189820901, -0.00763356965, -0.035161674, -0.0316259526, 0.00330557209, -0.00178924517, 0.00206318195, -0.0287745669, 0.00144911546, 0.0128475344, 0.00496141287, -0.0105338376, 0.00216501718, 0.0132141411, -0.0267378613, 0.000865599548, 0.0211817306, -0.00269048708, -0.00710402662, -0.0138088586, 0.0363022275, -0.0175482482, -0.022599278, 0.0269170906, -0.0275688376, -0.0284975749, 0.0355201326, -0.0243589897, 0.017580837, 0.00554798404, 0.00312023191, 0.0144117232, -0.0197967719, -0.0285138674, 0.0178415347, 0.0145583665, -0.0250433236, -0.00134931703, 0.0178741217, -0.0380293541, 0.0189169142, 0.0198945329, 0.00487179821, -0.00128923415, -0.0203507543, 0.00214465032, -0.0275851302, 0.0324243419, -0.0268356241, -0.0149738537, 0.00642376719, 0.0159025919, 0.0343795791, -0.00983321108, 0.036041528, 0.0259883534, -0.0186073352, 0.00082181039, 0.0120654395, 0.000778021233, -0.000189922721, 0.0282694642, 0.0319681205, 0.00729955034, 0.026558632, 0.0219312385, -0.0225829836, 0.0167987421, 0.0046559074, 0.00696145743, 0.00274344138, 0.024505632, -0.0579075925, 0.0138414465, -0.022029, -0.0350964963, 0.0027067808, -0.0194871929, 0.0243101083, 0.0256624818, -0.0404082239, -0.0429174453, 0.015258993, -0.0498259477, -0.0118210353, 0.0308601521, 0.0146398349, -0.0292633753, 0.0244567525, -0.0355527215, 0.0138821807, 0.00318133296, -0.041092556, 0.00529135903, -0.0239516497, 0.0214587227, 0.0248478, 0.0212469045, 0.0437647142, 0.0343144052, -0.0122609632, 0.0381922908, 0.0216216594, -0.0121306144, -0.0211654361, -0.0014440238, 0.0371169075, 0.0238213, -0.039560955, 0.0285464544, 0.0252551399, 0.0379315913, 0.00270270742, -0.0190961454, 0.0383552276, -0.0292144939, -0.0450356193, 0.0129697369, 0.0969145671, 0.0229903236, 0.02812282, 0.00355404988, 0.0384855755, 0.0160003528, -0.000237658, 0.0167498607, -0.01385774, -0.019079851, -0.021980118, -0.0315119, -0.00671705278, -0.0225341022, -0.0285138674, -0.0198456515, 0.0113240788, -0.0327502154, 0.0354875438, -0.0332553163, 0.0308438577, 0.00931996107, 0.0230880864, -0.0241797604, 0.0225829836, 0.00723030232, 0.0442535244, 0.0125461016, -0.0078209471, 0.00153873058, 0.00432188762, -0.0287419781, 0.0356178954, 0.00472922856, 0.0220127068, -0.0369865596, -0.0100857625, 0.00375364698, 0.0251736715, 0.0120409988, 0.0141265849, -0.0155359851, -0.0116418051, -0.0157640949, 0.0103546074, 0.0221919362, 0.00857045408, -0.041092556, -0.0460458249, -0.0193405487, 0.00529950624, 0.00670075882, 0.024098292, 0.00127294054, 0.013686657, -0.023006618, 0.0123424316, -0.025597306, 0.0262001716, -0.00711217336, 0.0211165566, -0.0299802963, -0.000784131349, -0.00311615854, 0.00470071472, 0.00471293507, -0.0182488747, 0.0311371442, -0.0191776138, 0.0311208498, 0.0276177172, -0.0140451165, -0.000818755361, -0.0401475243, 0.0189657956, -0.00323021389, -0.0114625748, 0.0174830742, -0.0257439502, -0.0213772543, 0.0211817306, 0.0199922957, 0.0208884459, 0.0193405487, 0.00612233486, 0.011535896, 0.0289700907, 0.00721808197, 0.0234954264, -0.00728325639, -0.0166765396, -0.0167335663, 0.0115929237, 0.00618750928, 0.0409622081, 0.00758061558, -0.00217520073, 0.00260087219, 0.0181348193, 0.00760912942, -0.00910814386, 0.0236094836, -0.0259557664, -0.0131489662, -0.00912443735, -0.0188191533, -0.00685962196, 0.018053351, -0.00325465435, 0.0114625748, 0.0070103379, -0.0105338376, 0.00650116196, 0.0110063534, 0.0185584538, 0.0363022275, 0.0155767184, -0.000757145055, 0.0160655286, -0.00643598754, 0.0284161065, 0.032668747, 0.0552354343, 0.0218986515, -0.00764579, -0.0248966794, 0.0250922032, -0.00417931844, 0.0139066204, -0.000366097694, 0.0149901481, 0.00736065116, 0.00424041972, 0.00621602312, -0.020138938, 0.0323591679, 0.00949919131, 0.00253773434, -0.0307786837, 0.0257113613, -0.00622009672, 0.00360700442, -0.00077700289, 0.0275036618, 0.00333204912, -0.00792278163, -0.0137355374, 0.000564676418, -0.0256950688, -0.00746248662, 0.00857045408, -0.0228436813, 0.0118128881, -0.00479847658, -0.0154708102, -0.0230880864, -0.000298631843, -0.0169616789, 0.0152834337, 0.00163751072, 0.0262164641, -0.00234221062, 0.122919209, -0.0108922971, 0.0303387549, -0.0110552339, 0.038094528, 0.0183955189, 0.0208721515, -0.00937698875, -0.0007215027, 0.0299477074, 0.0228436813, -0.0272918455, -0.0215564836, 0.0219638254, -0.020546278, -0.00650116196, 0.00719771488, -0.0154219288, -0.0233813711, 0.0336300693, 0.0207092147, -0.00695738383, -0.0245219264, -0.00153669377, 0.014713156, -0.00720586162, 0.0164158419, -0.0123668723, -0.0261187032, 0.0108760037, 0.0259394739, -0.00820792094, -0.0378012434, -0.0157559495, 0.0349661484, 0.0143058151, -0.0192264933, -0.0250596162, 0.00195625494, -0.00194607151, 0.0223385785, 0.0173527263, 0.00398583151, -0.0329783261, 0.0156744812, -0.0307298023, -0.0331412628, 0.0203670487, 0.0204322226, 0.00503880763, -0.029181907, 0.0101427902, 0.00670890603, -0.001011224, -0.0228925627, -0.0148027707, -0.0147946244, 0.0142813744, -0.000796860782, -0.0246196892, 0.0111041153, -0.00271085417, 0.0436995402, 0.0137355374, -0.0249455608, -0.0208721515, -0.025564719, -0.00736065116, 0.0118291816, -0.0095480727, 0.0118291816, -0.0151775246, 0.0277480669, 0.0100368811, -0.000740342191, -0.0176948924, 0.0343144052, -0.0221104678, -0.00801239721, 0.0103383139, -0.0333693735, -0.0274059, 0.0340537056, -0.0164565761, 0.0364651643, -0.0262816399, -0.00704699894, 0.0300454702, -0.0290678516, 0.0353571959, 3.9620274e-05, -0.00733213732, -0.0266401, 0.0224363413, 0.00300821313, 0.0113566667, -0.0060042059, 0.000167391685, 0.0018951539, -0.0100042941, 0.00235035736, 0.00957251247, -0.0448726825, 0.0231695548, 0.0214913096, -0.01795559, 0.0047821831, 0.0123342844, -0.00342166424, 0.0298173595, -0.037507955, -0.00687184231, 0.00451333774, 0.00267215678, -0.00900223572, -0.00644413428, 0.0297195967, 0.0340537056, 0.0715616643, -0.0187865663, 0.00338296685, -0.00647264812, 0.00923034642, -0.0200411752, 0.0246033948, -0.000470733416, -0.0284975749, 0.0233487841, 0.0211002622, 0.0297684781, -0.0393002555, -0.0185747482, -0.00910814386, 0.0195849538, -0.0295077804, -0.0199760012, -0.0015326204, -0.0158618577, 0.0164973103, -0.0110226469, 0.0213609599, 0.000499501883, -0.0135237202, 0.0464042835, -0.00593088474, 0.016179584, 0.0321473479, 0.0297195967, 0.0341514684, -0.000997476163, 0.0160492342, 0.00386566576, -0.00689220941, -0.0292307884, 0.0328153893, -0.0504776947, -0.0138007123, 0.0234628394, -0.021980118, 0.0232184362, -0.00862748176, -0.00785353407, -0.0254669581, -0.0302735809, -0.046664983, -0.0319192372, -0.00937698875, -0.00408155657, -0.0107130678, -0.0244078711, 0.0317563, 0.00346036162, 0.0206929222, 0.00917331874, -0.00261105574, 0.00962954, 0.00659485, -0.00410803361, 0.014916826, -0.00890447386, -0.0338255949, -0.01529158, 0.0211491436, 0.0131978476, 0.00446853042, 0.00792685524, 0.0165461898, -0.00680259429, -0.0279272962, 0.00345628825, 0.0182488747, -0.0358460061, -0.000241476824, -0.00686369557, -0.007389165, 0.00901852921, -0.0045296317, -0.00523840496, -0.0162773449, 0.00285546016, -0.0016049234, -0.00879856478, 0.0226481576, -0.00405304274, -0.00518545043, 0.0381271131, -0.00823236071, 0.0204322226, 0.0463716947, -0.00630563824, 0.020106351, -0.0133852242, 0.00604086649, 0.00664780475, 0.00219353102, 0.00570684718, -0.0261675846, 0.0220615864, 0.00430966727, -0.0231695548, 0.0302572865, -6.15466779e-05, -0.0249292683, 0.00706329243, 0.00984950457, -0.0130512044, -0.029084146, 0.0101102032, -0.0414184295, 0.00583312288, 0.00719771488, 0.0188843273, 0.0133363437, -0.00537690101, 0.0183303431, -0.0267052744, -0.00543392869, 0.0145013388, -0.00485957786, -0.0219312385, -0.00482291728, 0.00330964546, -0.0165787768, -0.0130430581, -0.0271452032, 0.0302572865, -0.00925478712, -0.0388440341, -0.00287582725, -0.0182814635, 0.0142895216, -0.00553576369, 0.000621704152, -0.0404082239, -0.00767837744, -0.00913258456, -0.000491864223, -0.00883115269, 0.0133607835, 0.0019481082, -0.00866821595, 0.0385833383, -0.0367258638, 0.00545836892, 0.00743397279, -0.0102242585, -0.0128149474, -0.0223059915, 0.0152671393, -0.0389743857, -0.00927922688, -0.0151123498, 0.0238375943, -0.0212631989, -0.0138332993, -0.015120497, 0.023071792, 0.00584941637, 0.0294263121, -0.00464368705, 0.0288560353, -0.0132385818, -0.0261187032, -0.0378012434, -0.00476996275, -0.0200085882, -0.00210187933, 0.00715290755, 0.00744619314, -0.0119513841, -0.00290026772, -0.0273244325, -0.00397361116, -0.0168802105, 0.00438706204, -0.0805557519, -0.0135888951, -0.00554798404, 0.00853786711, 0.0321473479, -0.0055235438, -0.0153567549, -0.00271289097, 0.00417931844, 0.00396546442, -0.0194871929, -0.0195523668, -0.0464042835, -0.015633747, 0.0194057245, -0.00217316416, 0.00834234338, -0.0621439405, -0.0300454702, -0.0247011557, -0.0383226387, 0.0125705423, 0.03385818, 0.00468034763, 0.000208634956, -0.00120572932, -0.0146887153, 0.0144524574, 0.00229536649, -0.0289212093, 0.00176582311, -0.00168231816, 0.0101183495, -0.0178578291, 0.0241471734, -0.00409174, 0.0121957883, -0.0358134173, -0.0256624818, -0.0514879, -0.0218008887, 0.0185258668, -0.00894520804, -0.00808571838, -0.020546278, -0.0185747482, 0.00624453695, -0.0528891534, -0.0047577424, -0.00520174438, -0.0243589897, -0.00152040017, 0.00287175388, 0.00529950624, -0.0165054556, -0.00453777844, -0.0124320462, 0.00196643849, 0.000701644807, 0.0269496795, -0.026249053, -0.0346728638, -0.0141510256, -0.0383878127, -0.00433410797, 0.0368562117, 0.0403104611, 0.0168150347, -0.00151734508, -0.0377034806, 0.0047373753, -0.023071792, -0.0112018771, -0.046143584, -0.0193405487, -0.0218171831, -0.00917331874, -0.0150471758, -0.0165136028, -0.00902667549, -0.00433410797, 0.0182977561, -0.0156826265, -0.00391862029, 0.00472108182, 0.00905926339, 0.0166439526, 0.0120247053, 0.0285464544, 0.00429744739, -0.0340537056, 0.0210025012, 0.00507954182, -0.0196664222, 0.00381882163, -0.0104360757, 0.00820384733, -0.00204485166, -0.0174830742, -0.0462413467, -0.00988209154, 0.0172712579, 0.0177437719, -0.0107130678, -0.0148760919, 0.0209536199, -0.0104768099, -0.000997985364, -0.00709180627, 0.0289049149, 0.0119839711, -0.0232347287, 0.0209536199, -0.0139799425, -0.00559686497, 0.0263142269, -0.0269333851, 0.0158862974, -0.0221756417, -0.0160981156, 0.0114870155, 0.00994726643, -0.0398868285, -0.0398868285, -0.0122365225, -0.0195034854, -0.0245871, 0.034509927, 0.0215564836, -0.0122609632, -0.0158129763, 0.00550317671, -0.00991467945, -0.0242123473, 0.0281554088, -0.0107619483, 0.0152264051, 0.0144198705, -0.00329538854, -0.00704699894, -0.0161714368, 0.00217723753, 0.00864377525, -0.0233324915, 0.0202855803, 0.0117558604, -0.00959695317, -0.00469664158, -0.000796351582, -0.0300780572, -0.00951548479, -0.0179230031, -0.00687184231, -0.00374346343, 0.00342981098, 0.0190309696, 0.000462586584, 0.0369865596, 0.0332227312, 0.111578837, -0.0107375076, -0.014542073, -0.0311860256, 0.00165380433, 0.00373939, 0.0119350906, 0.0167824477, 0.0283835195, -0.00833419617, 0.0403104611, 0.00845639873, -0.0394306071, 0.00909185, 0.00285138679, 0.0186399221, 0.00213243, -0.000853379315, 0.0102161113, 0.0202529933, -0.0124483397, 0.00422819937, 0.0107782418, -0.000257515872, -0.00885559246, 0.0129045621, 0.00669261208, -0.0262653455, -0.0241145864, -0.00706736604, 0.00768245058, 0.00698589766, 0.0130349109, 0.012937149, -0.00181164895, 0.0409296192, 0.00944216363, 0.0056213052, -0.00620787637, 0.00561315846, -0.0101264967, -0.044677157, -0.00666409824, 0.000352859119, 0.00677000685, -0.00961324666, 0.000595736143, -7.51034895e-05, -0.0434062555, 0.0139880888, 0.0153486077, -0.0147375967, 0.0246033948, -0.0257602427, -0.00372309657, 0.00901852921, 0.0219149441, -0.0170431454, 0.0400497653, -0.00782909337, 0.00350313238, 0.0077965064, 0.00297155231, 0.00153465709, -0.000541254296, 0.00738509186, -0.010273139, -0.00434632832, -0.0137762716, 0.00282287295, 0.0195197798, 0.0233813711, 0.00284935, 0.0204322226, -0.0153811947, 0.00107028836, -0.0142895216, 0.0100939097, 0.000201506482, -0.0163017865, -0.0103871943, 0.00221593492, 0.00367421564, 0.00883115269, 0.0166683923, -0.00350720575, -0.0171083212, 0.00295322202, 0.0233813711, 0.0125461016, 0.0151449377, -0.0168476235, -0.0179718845, -0.00213650335, 0.00891262, -0.0116418051, 0.00285138679, 0.0240005292, -0.00337685668, 0.00300006615, 0.00654596929, 0.0015163268, -0.00514879, 0.00496548647, -0.00247663306, -0.000733722933, 0.0180859398, 0.0087578306, -0.0297033042, 0.025906885, 0.0223222859, 0.00417931844, 0.0149005326, 0.00450111786, 0.00407748297, -0.00631378498, 0.0248640925, 0.0262001716, 0.00564167229, -0.00989838596, -0.0484898686, 0.021980118, -0.00537690101, -0.0199271198, -0.0193405487, -0.0249944422, 0.00829346199, -0.00373939, -0.00500214705, 0.0152671393, 0.0112507576, 0.0355853066, -0.0212794915, 0.00351331593, 0.00114360976, 0.0169942658, 0.00320577342, 0.0111529958, 0.0145502193, 0.00121693115, 0.0194708984, 0.0218171831, -0.0157966837, -0.00833827, 0.00518545043, -0.00108963705, 0.00512842275, 0.0050143674, -0.000289212097, -0.00433410797, -0.0163425207, -0.0184118114, 0.00733621093, 0.000677204342, 0.0349661484, 0.012937149, -0.00232184352, -0.0131245265, 0.000980164157, -0.0242286418, 0.0147620365, -0.000612539, 0.0106967743, -0.0130837923, -0.0257439502, -0.00515693659, 0.0172223765, 0.00159983162, -0.00711217336, 0.00265178969, -0.0166195109, -0.00158862979, 0.00126988546, -0.00534838717, -0.00905926339, 0.0110633811, 0.0383226387, -0.0289537963, 0.020106351, -0.0105745718, 0.00630971184, -0.00996356, 0.0193568431, 0.00223019184, -0.00715698069, -0.0234628394, -0.0222571101, 0.00870895, 0.0105745718, 0.0123505779, -0.0142650809, 0.00454999879, 0.0109982062, -0.0145828072, 0.029084146, 0.0303224623, 0.0211654361, 0.000678222743, 0.00120267423, 0.0125216618, -0.0221593492, -0.0146235405, 0.00527506554, 0.00902667549, 0.0206929222, 0.0125461016, -0.0178089477, -0.00626083091, 0.0164402816, -0.0101183495, -0.00132894993, -0.00942587, 0.000782603864, 0.00376179395, -0.0066559515, 0.0103953416, 0.0191287324, 0.00366810546, 0.00469664158, 0.00596347172, -0.0135481609, -0.0218660627, 0.0175156612, 0.0208558571, 0.00403674925, -0.00462332, 0.0452311411, 0.0148435049, 0.010786389, 0.0193079617, -0.0197153036, 0.0282531697, 0.019079851, -0.00161510694, 0.0031915165, -0.0284975749, 0.02955666, -0.026965972, -0.0232999027, 0.00597161846, -0.000409632252, 0.0408644453, -0.0237724185, 0.00146948255, 0.00410803361, 1.50127426e-05, 0.00142060162, -0.0243426971, -0.0199108273, 0.0321636423, 0.00426893355, -0.000961324666, 0.0167498607, -0.0302735809, 0.0207418017, 0.029524073, 0.00665187789, 0.00159677665, 0.0106723337, -0.0461761728, 0.0134259583, 0.0152426995, -0.0187702719, -0.00161816203, -0.0105990125, 0.00851342641, -0.000258788816, -0.00213854015, 0.00568648, 0.0132141411, -0.0122772567, 0.00918146595, -0.0201878194, -0.000760200084, -0.0129941767, 0.00491660554, 0.0112344641, 0.021980118, -0.0144280177, -0.00482699042, 0.00641562045, 0.0261187032, 0.000907352, -0.0312186126, 0.00716105429, 0.00262123905, -0.0156500395, -0.0108434167, 0.00788612105, -0.0117395669, -0.00727510964, 0.022974031, 0.000223146475, 0.00213446678, -0.0408644453, 0.0396913029, 0.0100124413, -0.0083016092, 0.00256624818, 0.0295892488, 0.000643598731, -0.0117069799, -0.0233487841, 0.0108352695, -0.00022123706, -0.00353979296, -0.00862748176, -0.0232999027, 0.0214587227, -0.00802054349, 0.00464368705, -0.0305994544, 0.000532089151, 0.0380619392, 0.0101916716, -0.00764579, 0.00545022218, 0.00834234338, 0.0135481609, 0.00773540512, -0.0011527749, -0.00668446533, -0.00492882589, -0.0023788712, -0.00137273909, -0.0163588133, 0.00754802814, 0.00905926339, 0.0278295353, -0.0269333851, 0.00329742511, -0.0412229076, -0.00359071069, -0.00504695484, -0.023006618, -0.00697367731, -0.00649708835, -0.00234424719, 0.0100450283, 0.0128312409, -0.0348358, -0.0166195109, -0.021605365, 0.0113240788, -0.00368439918, -0.016179584, -0.0027617719, 0.0163017865, -0.0166521, 0.0155848656, -0.0240005292, 0.0124401934, 0.0256624818, -0.00677000685, 0.000754599168, -0.00711217336, -0.00118128886, 0.0100368811, -0.020481104, -0.0217520073, -0.0276340116, -0.00224648556, 0.0141265849, -0.0204648096, -0.0253854897, -0.0121387606, 0.00692072324, -0.000175538502, 0.0153974891, 0.0305668674, -0.00814682, -0.0217357147, -0.00377401407, 0.0206114538, 0.024065705, 0.0150390286, 0.00121082109, 0.0102568455, 0.0190635566, -0.021198025, -0.0191287324, -0.0299965888, 0.0102975797, -0.00685962196, -0.0141102914, 0.00158761139, 0.00415895134, 0.0227133334, 0.013825153, 0.0224200469, 0.000736777962, -0.00325058098, 0.0189983826, 0.0253040213, -0.0437321253, -0.00206623715, -0.0417768918, 0.00198171381, -0.0125786895, 0.0103709009, 0.0284812804, -0.00652560219, -0.0257602427, 0.010069469, 0.00718142139, 0.0056498195, 0.0160899684, -0.041092556, 0.0187213905, -0.0068881358, 0.0136133349, 0.00504695484, -0.0134015176, -0.00385140884, -0.00406118948, 0.0134585453, 0.0113729602, 0.0160492342, -0.00687591545, 0.0268845037, -0.0182814635, 0.0151367905, -0.0148679456, -0.01508791, -0.0015855747, -0.00683110813, 0.00571092032, -0.0131571135, -0.00823643431, -0.0312023181, 0.00998800062, -0.00278824894, 0.0055235438, -0.00317725958, 0.00721808197, -0.004505191, 0.0125379553, -0.0188517403, -0.00204688846, -0.00435854821, -0.00164158409, -0.0279435907, -0.027682893, -0.0235117208, -0.00584534276, -0.0105501311, 0.00700219115, 0.0222571101, 0.0115440432, -0.0149005326, 0.00208965922, -0.00552761694, -0.00297766249, -0.0130267646, -0.00209169579, -0.00687998906, -0.00892891455, -0.0044848239, -0.000190050021, -0.0227785073, 0.00494104577, -0.0146398349, -0.00705107208, 0.0133689307, 0.0336300693, 0.00791463535, -0.00521396426, 0.00247866986, -0.00980877, 0.00903482269, 0.0128638279, -0.0164402816, 0.0113240788, 0.0104931034, 0.0114544285, -0.00569462683, 0.00936884247, -0.000763764314, -0.00747063337, 0.00329131517, 0.00226888922, 0.00829753559, 0.00813867245, 0.0216216594, 0.0274873693, 0.0524003431, -0.0208395645, 0.00692072324, 0.0167172737, 0.0169616789, 0.030925326, 0.00656633638, -0.0037719775, 0.00956436619, 0.00551132346, 0.0103627546, 0.00279843248, -0.00938513596, -0.0104034888, -0.0106071588, -0.00454592519, 0.00971100852, 0.0271614958, 0.0211654361, 0.0056457459, 0.000603883, 0.0118699158, -0.00616714219, 0.00710809976, -0.0133200502, 0.0143058151, -0.0115929237, -0.00234221062, 8.75146652e-05, 0.011299639, -0.00859489478, 0.0082527278, -0.00394306052, 0.0158211235, 0.011503309, 0.029116733, -0.0220127068, -0.00422819937, -0.0225178096, 0.0174667817, 0.0173690189, 0.0134911332, 0.0303876363, -0.0153974891, -0.00336056296, 0.012220229, 0.0179392956, -0.0149005326, -0.0177600663, -0.0106886271, -0.00915702526, 0.00771911163, 0.00774762547, 0.00324243424, -0.00250311033, 0.00328316819, 0.00545429578, -0.0209699124, -0.0197478905, -0.00804091059, -0.00884744618, 0.0154056353, 0.00865192246, 0.00953992549, -0.00345425145, -0.0122854039, -0.0111122616, 0.0163669605, -0.00708773313, 0.0101509374, 0.0160818212, -0.0267867427, -0.0103709009, 0.0053891209, 0.00238294457, -0.001190454, -0.0273407269, -0.0117477132, -0.00705921883, 0.00111305923, -0.00656633638, 0.00543800183, 9.08561287e-06, 0.00718142139, -0.00811830536, 0.00547466287, 0.00801239721, -0.0127905067, 0.00527506554, 0.0038249318, 0.00407748297, 0.00280046929, -0.000636979472, -0.0127090383, -0.00234628399, 0.0223059915, -0.0199922957, 0.00721808197, -0.029116733, 0.0182814635, -0.0105582783, 0.0321962312, 0.0121794948, -0.0306646284, 0.0208721515, 0.0173853133, 0.00239516492, -0.00125766522, 0.00356219686, 0.0103220204, -0.0234954264, -0.021637952, 0.0143221086, 0.00718549453, 0.00841566455, -0.000318998907, -0.0105501311, 0.0149005326, 0.00789834186, -0.01406141, -0.00107232516, -0.0096051, 2.90230437e-05, -0.0138088586, -0.00197458547, -0.0183466375, 0.0149086798, -0.00209169579, -0.0043829889, -0.0227948, -0.00102904509, 0.0138658863, 0.0139392084, -0.00327705801, 0.0101835243, -0.00722215557, -0.00165685941, 0.000472770102, 0.0131489662, 0.00180655718, 0.0137029504, 0.0207418017, -0.0384855755, -0.000684842, -0.000264517032, 0.0142080532, 0.0051406431, 0.0191776138, -0.0165624842, -0.0296218358, 0.000139005104, 0.00103821035, 0.000223146475, -0.0197641831, 0.0149005326, 0.0211817306, 0.00177498825, 6.56200864e-05, -0.0134748397, 6.02737346e-05, 0.0115766302, -0.00363551825, 0.00377808744, 0.0222082306, -0.00284120324, 0.021540191, 0.0060001323, 0.00230147643, 0.00753173465, 0.00685147522, -0.012594983, 0.00983321108, 0.0155278379, 0.0144443111, 0.00521803787, 0.0190961454, 0.0130349109, 0.0140451165, 0.0134748397, 0.00811015908, -0.004403356, -0.00210391614, 0.0102649927, -0.00475366926, -0.00768245058, 0.00204281509, 0.00698589766, -0.00348072872, 0.00740953209, -0.0057760952, 0.0334997214, 0.016179584, -0.0131000858, -0.00976803619, 0.00879041851, 0.0110796746, -0.0115847774, 0.0051406431, -0.029116733, -0.000539726811, -0.0138495928, 0.000547873613, -0.00559686497, -0.0105501311, -0.000504339056, -0.00141347316, -0.0078128, -0.0148435049, 0.0172875505, 0.0129615897, -0.0340862907, -0.000731686247, 0.0163995475, -0.00241960539, -0.00787390117, 0.022664452, 0.0120409988, -0.00254180771, -0.0150553221, 0.0148679456, 0.00575980125, 0.00221186155, 0.0247989185, 0.00489623845, 0.00700626476, -0.00783724058, 0.0127742132, -0.011878063, -0.0175971296, 0.00499807391, -0.0290189702, -0.00438706204, 0.0214424282, 0.00900223572, 0.0197804775, -0.000615594035, 0.0197153036, -0.00378012424, -0.00837493, -0.0193242561, -0.00177295157, -0.0143058151, -0.0197153036, -0.00917331874, -0.01795559, -0.0182488747, 0.0347706266, -0.0194708984, 0.000227601762, -1.59913161e-05, -0.0113240788, 0.0134911332, -0.0117232734, 0.00580868218, -0.00490031205, 0.0400171764, 0.0423308723, 0.00784538686, 0.0166765396, -0.0092629334, -0.00741360569, 0.0234139599, -0.00840751734, -0.0243752841, 0.0177600663, -0.00547466287, 0.012016559, 0.0223548729, -0.00717734778, 0.00937698875, 0.00907555688, -0.0017495295, 0.019422017, 0.00619972963, -0.0116336579, -0.00616306905, 0.0136296293, -0.00855416059, 0.0222571101, 0.00973544922, -0.0178415347, -0.0226807445, 0.00933625549, 0.0188191533, 0.0166846868, 0.0243264027, 0.00671705278, 0.024505632, -0.001369684, -0.00268845051, 0.0163588133, -0.00435447507, -0.0239027683, 0.000949104491, 0.0121713486, -0.0161877293, -0.0234628394, -0.0107945362, 0.0279110037, 0.00102344423, -0.0177111849, 0.000841668283, 0.00617528893, 0.0268519167, -0.016586924, -0.00709995301, 0.00449704425, 0.0134585453, -0.00605308684, 0.00750322081, -5.24451498e-05, -0.0114788683, 0.00167315302, -0.0148027707, -0.00306931417, 0.00813459884, 0.00472515542, -0.0180859398, -0.00733213732, 0.0131245265, -0.0199760012, -0.00680666743, 0.0020020809, 0.0096051, -0.0233813711, -0.00935254898, -0.00132793153, -0.000222000832, 0.000351331575, 0.00876597781, -0.00106825167, 0.0164647214, 0.00573128741, -0.000744415622, -0.0208069775, 0.0155359851, -0.0168639161, 0.0125379553, 0.00601235265, 0.00975989, -0.00542170834, 0.00740953209, -0.0174179, -0.00909999758, 0.00190635573, -0.00381271145, -0.0110307932, -0.012049146, -0.0147946244, -0.000826393, -0.0135074267, 0.0162040237, 0.00704699894, 0.00383104174, 0.0146887153, -0.0104279285, -0.00608567428, 0.00496956, -0.00984950457, 0.0035153525, 0.00721400883, 0.0115766302, -0.00258254167, 0.00295525882, -0.0117965946, 0.0152752865, 0.0048880917, -0.00376586732, 0.00241756858, 0.0104197823, -0.013654069, -0.00712439371, -0.0116010709, -0.00894520804, 0.020138938, 0.0150064416, -0.0157885365, 0.00255199126, -0.00841566455, -0.0043789153, -0.00449704425, 0.00401027175, 0.00725881616, -0.0211491436, -0.0236420706, -0.00293489173, -0.0320984684, 0.000447311293, 0.00150614325, 0.0182162877, 0.0145665128, -0.0136459228, 0.0139310611, -0.0188680347, -0.00217316416, -0.0024542294, 0.00770281767, 0.00101988, 0.0159840602, -0.0146479812, -0.0313000791, 0.000133531459, 0.0141510256, 0.00430152053, -0.00102395331, -0.00851342641, 0.0236909501, 0.003822895, -0.0113077853, -0.0046110996, -0.007543955, 0.00229943986, -0.00337685668, -0.00747470697, 0.0023279537, 0.0187539775, 0.00679444754, 0.0253691953, -0.0129778832, -0.0206114538, -0.00597569207, -0.00616306905, 0.00361718773, -0.00874153711, 0.00595532497, 0.0176623054, 0.00633415207, -0.000858471089, -0.0073932386, -0.0185258668, -0.00909185, -0.00391658349, 0.00940142944, 0.0120572932, -0.0128230937, -0.00525877206, 0.0021996412, 0.00480662333, -0.00512027601, 0.00719771488, -0.0164158419, -0.00198273221, 0.00546244252, 0.0320007056, 0.0195849538, 0.0130267646, -0.00868450943, 0.0208721515, -0.0101264967, -0.000129649, -0.00785353407, -0.0104605164, -0.0104849562, 0.0147946244, 0.00564167229, -0.00898594223, 0.00472515542, 0.0198456515, -0.016383253, 0.0203670487, 0.00761320256, 0.0132304346, -0.0209373254, -0.0215890724, 0.00223222864, 0.0149331205, -0.0285953358, 0.0232347287, -0.00189413549, -0.00188293366, -0.00943401735, 0.0168802105, -0.00988209154, -0.00609789416, 0.00820792094, 0.00818755385, -0.0145991007, -0.00318540633, 0.00290026772, 0.0139310611, -0.0279272962, -0.0107130678, -0.00620787637, -0.0310556758, 0.0032628011, -0.00595532497, 0.00422005262, 0.0168313291, -0.0241960529, -0.0101346429, -0.0151938181, 0.00408359338, 0.00404489599, 0.00859489478, -0.0108760037, 0.00895335432, 3.43057472e-05, -0.00790648814, -0.00967842154, 0.0140695572, 0.0038982532, 0.00041650614, -0.0164076947, 0.0242449343, -0.0110389404, 0.0258905925, -0.0023055498, 0.0196664222, 0.00603679335, -0.00378012424, -0.00323428726, -0.00319966325, -0.004761816, 0.0115684839, -0.00231369678, 0.00406729942, -0.0074176793, -0.00217723753, -0.0208721515, 0.0174993686, -0.0245871, -0.017580837, 9.15880737e-05, -0.00665187789, -0.0388440341, 0.0129452962, -0.00237072445, -0.0164076947, 0.00455407193, 0.0145991007, -0.0118291816, -0.00242571556, 0.0123505779, 0.0219149441, -0.000962852209, -0.000466405414, 0.00918146595, 0.00316096586, -0.00440742914, 0.012187642, -0.0035683068, -0.00105297647, 0.0161144082, 0.016179584, 0.00722622871, -0.00167722651, -0.0160085, 0.00852157269, 0.0107619483, 0.00573128741, -0.0145013388, 0.0132304346, 0.0191287324, -0.00764171686, 0.0224037543, 0.0110552339, 0.0122120827, -0.0177763607, -0.000874764752, 0.00387381273, 0.0126438634, 0.00517730368, 0.0182814635, 0.00494511938, 0.00623639, 0.00656226324, 0.0225015152, 0.00652560219, -0.00866006874, 0.00131265633, 0.000324599823, -0.0157315079, -0.00437076855, 0.00953992549, 0.00911629107, 0.00998800062, -0.0181348193, -0.0186562166, 0.00161307026, -0.0139310611, -0.0189332087, -0.0178578291, 0.00174036436, -0.0272755511, 0.0144931916, 0.0256624818, 0.0146642746, -0.0117558604, -0.013686657, -0.00173527258, 0.0253203139, -0.00257439492, -0.00215890724, 0.011878063, -0.0177600663, 0.00938513596, -0.00273122126, 0.0188028589, -0.00201837462, 0.000683823659, -0.000776493747, 0.0133526372, -0.0227622129, 0.0158211235, 0.00280250586, 0.00497770682, 0.0167987421, 0.0184769873, -0.0186073352, -0.0116662458, -0.0102894325, 0.0110063534, 0.0065337494, 0.0107619483, -0.0268845037, -0.00147151924, -0.0061304816, 0.0232999027, 0.0138170058, -0.00376383052, -0.0085052792, -0.00277602882, -0.000409886852, -0.00891262, 0.00603679335, 0.0108352695, 0.0267052744, 0.00319558987, -0.0129860304, -0.0281879958, -0.00646042777, 0.0129941767, 0.0169453844, -0.00431781448, -0.00247459649, -0.00180452049, -0.021198025, 0.0177111849, -0.0107212141, 0.00941772293, 0.0122935502, 0.00993097294, -0.0159677658, 0.00275362493, 0.0191939063, 0.0189657956, 0.0358134173, 0.0230229124, -0.0121550541, -0.00244404585, -0.0124890739, -0.0148842391, -0.00730362348, -0.0240494106, -0.0181511138, -0.0134015176, -0.00989023875, -0.00662743766, -0.00714476081, 0.0342492275, 0.000799406669, -0.00620380277, -0.00226481585, 0.0186399221, 0.0101346429, -0.00619158288, 0.00120369252, -0.0213935487, -0.0180044714, -0.0201552305, -0.0105827181, -0.00722215557, 0.00540948799, 0.0163751077, -0.00054329104, -0.00459887972, 0.0190961454, 0.0350964963, 0.00953177828, -0.0105093969, -0.00272103772, 0.0117069799, -0.00239312812, -0.0129290028, -1.85849312e-05, 0.0121957883, 0.0178252403, 0.0162366107, 0.0249781478, -0.0109085916, 0.00714883395, 0.0130919386, 0.00811423175, -0.00969471503, 0.0128149474, -0.0040000882, -0.00254180771, -0.00309375464, 0.00119452737, -0.0104768099, 0.00922219921, 0.0192753747, 0.00520989113, -0.00822014082, 6.57473793e-05, 0.00294507528, 0.0177437719, -0.019079851, 0.0245708078, -0.00241960539, -0.00309782801, -0.0036986561, -0.0147864772, -0.0195686594, -0.018705098, 0.0169779714, -0.0203344617, -0.0101753771, -0.00422005262, 0.0271940827, -3.69152767e-05, -0.0141184377, 0.0078128, 0.00391047355, -0.0117558604, -0.00512842275, -0.00789834186, -0.00605716044, 0.0143465493, 0.020546278, -0.00737694511, -0.0170920268, -0.0245219264, 0.00706736604, 0.000507139484, -0.00368236238, 0.0274547823, 0.0104849562, -0.0173364319, -0.00644006068, -0.0244078711, -0.0107375076, -0.00518952403, 0.010102056, 0.0171246137, -0.00350109558, -0.00734435767, -0.0082527278, -0.0285464544, 0.0115847774, 0.0168476235, 0.00472108182, 0.0196501277, 0.0144443111, 0.00231980672, -0.0304202233, 0.0203344617, -0.00572721427, 0.00490438519, 0.0198945329, 0.00066600251, 0.0127497725, 0.000940957631, -0.00213854015, 0.000593699457, -0.0205625724, 0.0125868358, 0.0165706314, -0.0131245265, 0.00585756311, 0.00750729395, -0.00644006068, 0.00114462816, 0.00447260402, -0.0069125765, -0.00651745545, -0.00142263831, 0.0312186126, -0.0166195109, 0.0304691046, 0.00241756858, 0.00189108041, -0.00896150153, -0.00712439371, -0.0411903188, -0.0117069799, -0.0153649012, -0.011364813, 0.000513504201, 0.0394631922, 0.0107782418, 0.0167009793, 0.00508768857, -0.0040224921, 0.010818976, 0.0161144082, 0.0188680347, 0.00951548479, -0.015633747, -0.0173853133, 0.014607247, 0.0106886271, -0.0116255116, 0.0237072445, 0.00120267423, 0.000497465138, 0.00813052617, 0.00597161846, 0.0207255092, 0.00517323054, -0.018705098, 0.0252551399, -0.00633415207, 0.0133689307, 0.00162834558, -0.0210025012, 0.0135563072, -0.00358663732, 0.00270067062, -0.00832197629, -0.00578424195, 0.0169779714, -0.0135726016, -0.015430076, -0.0225829836, 0.00790241454, 0.0118536223, 0.00918146595, 0.0020010625, -0.0254832506, -0.00560093857, 0.00664780475, 0.0119758248, 0.00813459884, -0.0160003528, -0.0187539775, -0.00197051186, 0.00268030353, -0.00864377525, 0.0267378613, 0.0109085916, -0.00339518697, 0.00817126, -0.0153649012, -0.0145339258, 0.00884744618, -0.00362737128, 0.0167987421, -0.013996236, 0.0077965064, -0.00784538686, 0.0067822272, 0.00108861877, -0.00670483243, 0.00870080292, -0.0160981156, 0.00401230855, -0.0053931945, 0.0163343735, 0.00395528087, -0.0144198705, 0.00947475061, 0.0119187972, 0.0193731375, 0.0148027707, -0.00770689128, -0.00600827951, -0.0123342844, -0.001011224, -0.00450111786, 0.00806127768, 0.0112589048, 0.0021263198, 0.0111692892, -0.0110389404, -0.00885559246, 0.0149412667, -0.00256624818, -0.00518137729, 0.00181674073, -0.00749100046, 0.0140695572, -0.00508768857, 0.0143058151, 0.00896150153, 0.0153486077, 0.00520174438, -0.0136459228, 0.00555205764, -0.00156520773, -0.0102324048, 0.0149005326, 0.0101672309, 0.00261309231, -0.00149188633, -0.00589422369, 0.00308153452, -0.00822828803, -0.00639525335, 0.0111122616, 0.00705107208, 0.0148353586, 0.0115277497, 0.00913258456, -0.0196338352, -0.00689628255, -0.0626653358, -0.00492067914, 0.00504695484, 0.0192102, 0.00635859277, 0.00375975715, -0.0187213905, -0.00183608942, -0.00325261755, 0.0139229149, 0.0213120803, 0.0225015152, -0.0114544285, -0.00896150153, 0.000572314078, -0.000921099796, 0.0056987, -0.00520174438, -0.0154871037, -0.00879041851, 0.0104279285, -0.00456221867, -0.00225666887, 0.0145013388, -0.00117517868, -0.00505917473, -0.00708773313, 0.00317725958, -0.012049146, -0.00626897765, -0.00261309231, -0.00888818, -0.0141836125, -0.00923034642, -0.00383104174, -0.0144117232, -0.00252755079, -0.0100939097, 0.00269456045, 0.00533616683, 0.00919775944, -0.010411635, -0.0233976655, -0.00925478712, 0.00308968127, 0.00790648814, 0.0184769873, 0.0244893394, 0.000477861875, -0.00388603285, -0.0189495012, 0.00675371336, -0.00619972963, 0.00443187, 0.0127823595, 0.0108026825, -0.00366199529, -0.0231858473, 0.0128230937, 0.0045092646, -0.0175319556, -0.00521803787, -0.0165787768, 0.00163751072, -0.00113342621, 0.00440742914, 0.00076223677, 0.00824458152, 0.00503473449, 0.0253040213, 0.0185910426, -0.0181022324, 0.00900223572, -0.0101102032, -0.0172549635, 0.0209210329, 0.00346850837, 0.0134096649, -0.00366403209, -0.00247052289, 0.0256624818, -0.00866006874, 0.00742175244, -0.0141836125, -0.00937698875, 0.0142732272, -0.00060235546, -0.00999614783, 0.00719771488, 0.00644413428, 0.0149657074, -0.00532394648, 0.00337278331, 0.0197641831, 0.0111448485, 0.0038758493, -0.0219149441, -0.000702154, -0.0061508487, 0.00684740162, -0.00401230855, -0.00104992138, -0.00687184231, -0.00569462683, 0.00354590314, -0.0248315055, 0.00882300548, -0.000764273515, 0.00717734778, 0.0163669605, 0.0137110967, -0.0078209471, 0.024098292, -0.00987394527, 0.04321073, -0.00873339083, 0.0143872835, 0.0233161971, 0.0032017, -0.0225178096, 0.0155604249, -0.0339885317, 0.020578865, 0.000691461319, 0.0119513841, -0.00571499392, -0.0198293589, 0.0133526372, -0.0320332944, -0.0042526396, 0.0070103379, 0.0138821807, -0.00430152053, -0.0213446673, -0.0165380426, -0.00709180627, 0.00983321108, 0.0174993686, -0.0154219288, 0.00857860129, -0.00823643431, 0.0148923863, 0.000398175791, -0.0068840622, -0.0262327585, -0.0167335663, 0.000672112626, 0.0123831658, 0.00739731221, -0.0115196025, 0.00530765299, -0.0116255116, -0.0098006241, -0.000958269637, -0.0152834337, 0.00602049939, -0.0112018771, 0.0136622163, -0.00152040017, -0.00202346616, -0.0111367023, -0.00816718675, -0.00612233486, -0.0160247944, 0.0105501311, 0.01334449, -0.00459073298, -0.0324406363, -0.00251736725, -0.0177926533, 0.00470071472, -3.73528496e-06, -0.0153974891, 0.0271452032, -0.0151123498, 0.00544207543, -0.0199760012, -0.0107049206, 0.0114218406, 0.0135970414, 0.0146235405, 0.0196990091, -0.00732806418, 0.00802054349, -0.00883929897, -0.0455244258, 0.0236909501, 0.0239353552, 0.00595125137, 0.00613862835, 0.0143872835, 0.0112181706, 0.011299639, 0.00031976265, -0.0265423376, -0.0164321344, -0.0106315995, 0.0048880917, 0.00743397279, 0.00146235409, 0.00496548647, -0.000263753289, -0.00958066, 0.0145665128, -0.0060286466, -0.0152997272, -0.0145094851, 0.0171083212, -0.00724252267, 0.000934847514, -0.028432399, 0.0103220204, -0.0133689307, -0.00698589766, -0.000315689249, 0.00441964949, -0.00898594223, 0.00312023191, -0.0249618553, 0.0143058151, 0.021540191, -0.0116580985, 0.00474552251, -0.0139066204, 0.00356219686, 0.00229536649, 0.00268845051, 0.0172712579, 0.0115440432, 0.0130512044, 0.000527506578, 0.0130349109, -0.00368847256, 0.00689220941, 0.00684740162, 0.0107700955, -0.00628527114, 0.0197478905, -0.0154708102, -0.00316300266, 0.00848083943, -0.00846454501, -0.00141754653, -0.00839937106, -0.0032444708, 0.00155298749, -0.00622009672, 0.00932810828, -0.00316911284, -0.0162610523, 0.0173853133, -0.00065480062, -0.0111855827, -0.00655004289, 0.025906885, 0.00316911284, 0.00291452464, 0.016896503, 0.00936884247, 0.0301595256, -0.0100287348, -0.00816311315, 0.0152182588, 0.00811423175, -0.00714476081, -0.0106886271, 0.00434225472, -0.000271136349, -0.0191939063, -0.0185584538, -0.00177702494, 0.000480407762, -0.0121306144, -0.0152182588, 0.00773133151, 0.00324243424, -0.00753988139, 0.0142650809, -0.00496141287, -0.0181999952, -0.0157885365, -0.00219353102, -0.0199760012, 0.0106886271, -0.00840751734, -0.00322817732, -0.00812237896, -0.00545836892, 0.00659077708, 0.00971915573, 0.00520174438, 0.00680259429, 0.0095480727, 0.0037719775, -0.00918146595, -0.00516915694, 0.0134178121, -0.0140125295, -0.0131571135, -0.0173527263, 0.0265749246, -0.022599278, 0.0123424316, -0.00450111786, -0.0080246171, -0.0289375018, -0.0180044714, -0.0302572865, -0.00383307855, -0.0155359851, -0.00685554836, -0.00981691759, 0.00499400031, 0.0184606928, 0.00473330216, 0.00829346199, -0.00482699042, 0.00146439078, 0.0186562166, -0.00208253064, -0.00567425974, -0.0106315995, 0.00824050792, 0.000720484357, 0.0155115444, 0.0247826241, 0.0160166472, 0.00246441294, -0.00953177828, 0.010102056, -0.0136296293, -0.00573943416, -0.0233976655, -0.00891262, -0.00140125293, -0.0125868358, 0.00937698875, 0.00159168488, 0.00254995446, 0.00296340557, 0.0058738566, 0.00217520073, 0.0299477074, -0.01692909, 0.0156826265, -0.0228762683, -0.00931996107, -0.014713156, 0.016489163, -0.00843195803, 0.00167620811, 0.0145991007, 0.0172875505, 0.0164647214, -0.00243589911, 0.0070103379, 0.00761320256, -0.00223833858, 0.00622824347, 0.010990059, -0.00181368564, -0.0105256904, 0.00113953638, 0.000989838503, 0.00273122126, 0.00031237962, 0.00487179821, 0.00524655171, -0.0149657074, 0.00465183379, -0.00213446678, -0.00121285778, -0.0123179909, 0.086291112, 0.0281554088, 0.00674149301, -0.00302247, 0.00238294457, -0.0179067086, -0.0162447579, 0.0544207543, -0.00417931844, 0.0127416253, -0.0227296259, 0.0114462813, 0.0067822272, 0.00718549453, 0.00858674757, -0.0207743887, 0.00302858022, 0.00839937106, 0.0264119878, -0.00778021244, 0.00665187789, -0.0163588133, 0.00487587135, -0.0087578306, -0.00551132346, -0.0130430581, -0.00584126962, -0.0139310611, 0.00163038226, 0.00519767078, -0.00496548647, 0.00253366074, -0.006024573, 0.00291045127, -0.0179718845, -0.00172305235, 0.0301595256, 0.0161877293, 0.0188354459, -0.0106315995, -0.0041487678, -0.00391454669, 0.00455814553, 0.00385955581, 0.00594717823, 0.0148272114, 0.00316503923, -0.0310067944, -0.00194199814, -0.0234791338, -0.00439113565, -0.0130104702, -0.0052628452, -0.0286116302, 0.0112507576, 0.00922219921, -0.00658263033, 0.0124401934, -0.00978433, -0.00670483243, 0.00109880231, 0.00408766652, -0.0015682627, -0.0247826241, 0.0178904161, -0.0111774364, -0.0139717953, -0.00459480612, -0.00997985341, 0.00345832482, -0.0226970389, -0.00386362919, -0.0102975797, -0.00746248662, 0.0138088586, 0.00387381273, -0.0174504872, -0.000835048966, -0.0252225529, 0.00133404171, -0.00826494861, -0.00329538854, -0.011161143, -0.0159840602, -0.00240534847, -0.00349498563, -0.0140532637, -0.0114625748, -0.00390843675, 0.000973035756, 0.00350109558, 0.0197804775, -0.0211654361, 0.0264282823, 0.009523632, 0.0222082306, -0.00571499392, -0.00967027433, 0.0216705389, 0.00644413428, 0.00856230687, 0.00955621898, 0.000288702926, 0.0167009793, -0.0141102914, 0.0272429641, 0.00628934475, -0.0139066204, 0.0189983826, -0.00109269214, 0.0133200502, -0.01385774, 0.0261024088, 0.0328968577, -0.0135400137, -0.00155196909, 0.0157233607, -0.0100776153, 0.019112438, -0.00699811801, 0.0109656192, 0.0407992713, -0.0181185268, -0.00247663306, -0.0155522786, 0.0141265849, 0.012081733, -0.00257643173, 0.0168313291, -0.0208232701, 0.0144606046, 0.0288397409, 0.0198456515, -0.00456629228, 0.00698182406, 0.00539726811, 0.00672519952, -0.0154789565, 0.00493289903, 0.0127823595, 0.0138332993, -0.0245219264, -0.0166846868, -0.00282287295, 0.00361107779, 0.00981691759, 0.00677815359, -0.0131815542, 0.0126845976, -0.0152182588, 0.000926191511, 0.012562396, 0.0133200502, -0.0153323142, -0.000772420317, 0.00383307855, -0.00617121579, -0.0216705389, -0.0219312385, -0.0182162877, 0.00140838139, 0.0146561284, 0.0129697369, 0.00255606463, -0.00229332969, 0.021572778, 4.99629168e-05, 0.0194057245, 4.72897409e-05, -0.00709180627, 0.0213772543, -0.00274955155, 0.00130145438, 0.016586924, 0.00282287295, 0.00947475061, 0.00644820742, -0.0146805691, -0.002560138, -0.00940957665, 0.0125461016, 0.00026400786, -0.0186562166, 0.0475774258, -0.0110063534, -0.00382900517, -0.0113892537, 0.0131652607, 0.012016559, 0.0169779714, -0.0159351788, 0.0203833431, -0.00279639568, -0.00363755482, -0.0174504872, -0.00492067914, -0.00820384733, -0.00345425145, -0.021540191, -0.00889632665, -0.00397361116, 0.00487587135, 0.00786982756, 0.00246033957, -0.0191450249, 0.0176948924, 0.00681074103, 0.0018758052, 0.00389417959, -0.00836678315, 0.00510805566]
04 Mar, 2022
Impact of Three-way Handshake and Slow Start Algorithm 04 Mar, 2022 Internet became something without which our lives are incomplete. Every day each internet user makes 100s of queries on the internet, be it a simple google search or visiting any website and no one likes the delay in the response. In this article, we will discuss time delay that affects internet speed. A three-way handshake was introduced in the initial time of the internet when TCP was just introduced. Over the period of time, the 3-way handshake is avoided completely using TCP FastOpen. But still, one very infamous congestion control algorithm is there which always invokes when TCP flow starts, this is a slow-start restart algorithm. This takes huge time before it starts sending buffer size worth of packets into the network, even if the bandwidth is totally available. Slow Start:The purpose of the slow start restart process is to ‘estimate’ cwnd and quickly arrive at a ‘decent estimate’. This algorithm by default gets invoked when a new TCP flow starts or when the link is idle for 1 RTO time. The cwnd value slowly increases from 10 to 20, 40, 80 and so on per RTT. The cwnd is increased by 1 when one new ACK arrives at the sender. The sender sends 2 new packets into the link on receiving one ACK. 1 packet is sent to compensate for the delivered packet, another is sent in accordance with the increased value of congestion window size. Impact of Slow Start algorithmEvery TCP connection must go through the slow start phase. It means we cannot utilize the ‘available capacity on the link ‘immediately’ after the connection is established. The data transfer begins with ‘initcwnd’ and doubles in (approximately) every RTT. Assume that sender is limited by the receiver’s advertised window which is 64KB. The sender cannot start directly sending 64KB; it starts with Slow Start and increases sending rate. The time needed by the sender to grow its congestion window (cwnd) such that it can transmit 64KB at a time, can be calculated using the given formula. where, RTT stands for the Round Trip Time;init_cwnd is the local variable that stores the initial congestion window size, which is set by default in every OS.N is the desired congestion window size, say 64 KB.Example: RTT = 56 ms (London to New York) Initial congestion window (initcwnd) = 10 segments 1 segment size = 1460 bytes For the TCP Sender to transmit 64KB simultaneously, it must have a congestion window value of approximately 45 segments. N = (64KB ÷ segment size = 65536 bytes ÷ 1460 bytes = 44.88 segments) Time = RTT x ceil(log2(1 + 45/10)) = RTT x ceil(log2(5.5)) = 56 ms x ceil(2.459) = 56 ms x 3 = 168 ms Thus, the sender would be able to transmit 64 KB simultaneously after 168 ms.Three-Way Handshake:The three-way handshake is the initial connection establishment process. The client first sends the connection request to the server (SYN packet). If memory space and other resources are available at the server-side, then the server accepts the incoming connection request and ACKs this to the client by sending the SYN+ACK packet. When the client receives this packet, it starts the actual communication to the server and sends the GET request from the next packet onwards. In the reply, the server sends the actual data asked by the client. Impact of Three-way handshake:If the RTT measurement is 56 ms. This much time just goes waste into connection establishment. The client sends the SYN packet to the receiver for requesting the connection. The server responds to the client by sending an SYN+ACK packet. This two-way round consumes the whole RTT’s worth of time. From the next packet onwards, real communication happens, in which the client first asks for some data from the server, by sending the GET request in a new packet. Therefore, one RTT is the cost that the client pays for 3 way handshake. If somehow this handshake can be avoided, then 56 ms, in this case, can be saved every time the client connects to the server. Impact of TCP Handshake and Slow Start algorithmAssume the variables: Round Trip Time = 56 ms, standard RTT time between London and New York Available Bandwidth to both server and client is= 5 MBPS Receiver window size (rwnd) of both client and server= 65,535 bytes = 64KB = 45 segments Initial congestion window (init_cwnd)= 10 segments Server processing time to process the given GET query and generate the corresponding response is = 40 ms Assume the network is clean, with no packet loss and 1 ACK per packet, only GET requests are sent.Impact of TCP Handshake and Slow Start algorithmStep 1: Sender sends the SYN packet at time=0. Step 2: Receiver gets the SYN packet at time=28 ms, which is one-way time. The receiver accepts the connection request and sends back the SYN+ACK packet at time=28 ms, just after it receives the SYN packet from the sender. Step 3: The ACK arrives at sender at time=56 ms, another 28 ms was taken by a packet to reach from receiver to sender side, this makes a total of one RTT time, the two-way journey of the packet. Now the connection is established between sender and receiver using 3-way handshakes. Step 4: Now sender sends the GET request to the receiver at time=56 ms. It takes 28 ms to reach and the receiver gets the GET request. Step 5: At time=84 ms server receives the GET request. Step 6: The server takes 40 ms to process the request and generate the data to send in reply packets. After 40 ms elapsed, the server sends the 10 segments of data simultaneously at time=124 ms without waiting for a single ACK to come. Step 7: The sender or client will start receiving the reply packets one after the other, and it will send the ACK for each packet to the server. The client will get all 10 segments by time=152 ms. On receiving the ACK packets, the server will increase its congestion window size by 1 per ACK packet. Initially, cwnd was 10, therefore it send 10 segments simultaneously. When the server increases its cwnd by 1, it sends 2 new packets into the link. Step 8: In one RTT time, the server will get the ACK of all 10 packets and thus its cwnd would become 10*2 = 20 at time=180 ms. Also, by this time server has sent 20 new segments into the link, other than the initial 10 segments whose delivery has already been ACK. Step 9: Now, 20 segments are in the pipe between sender and receiver at time=180 ms. Step 10: By time=208 ms, the client will receive all these packets. Step 11: By time=236 server sends 15 new segments. At this time server will get ACK of all these 20 segments. In the intrim, the server will increase its cwnd by 1 per ACK but can’t send 2 new packets for each ACK cause only 15 segments are left to send (total 45 segments). cwnd=40 now. Step 12: Thus at time=264 ms, 15 segments are reached to the client. Thus 264 ms are required to send 64 KB of data to the client. Step 13: At time=292 ms, 15 ACK will come to the server, and cwnd will become 40+15 = 55, but the server has no data to send. So, it takes 264 ms to send 45 packets to the client. The bandwidth available between server and client is 5 MBPS, but still, the file of 64 KB is taking 264 ms. This time will not decrease even if we increase the bandwidth to 50 MBPS or 5 GBPS. If the client is visiting Gmail or google servers then the page load time will be 264 ms, and this time can’t be decreased by increasing the bandwidth. Requesting the Same File Again in the Same ConnectionAssume that the connection is idle for a few seconds less than RTO, the slow start is not restarted and the client sends another GET request to the server. Step 1: Sender sends GET request at time=0 ms. Step 2: GET request reaches the server at time=28 ms. Step 3: The server takes 40 ms time for request processing. Generates the reply at time=68 ms and sends it to the client. Step 4: Note that the cwnd of the server is already 55 in the previous transfer. So, the server will send 45 segments simultaneously at time=68 ms. Step 5: At time=96 ms, the client receives all 45 segments. Thus, slow start has wasted 264 – 96 = 168 ms. Conclusion:264 ms taken by the server to successfully(with ACK) send 45 segments to the client. By formula time taken by Slow Start to grow the cwnd to 64 KB= 168 ms. Server processing time = 40 ms Time elapsed in 3-way Handshakes = 56 ms Total time = 3-way-handshake + server_processing + Slow_start 264 = 56(3-way-handshake) + 40(server response time) + 168(Slow_start) ms Thus, slow start and 3-way Handshakes have wasted = 168 ms + 56 ms = 224 ms.If there was no slow start and 3-way handshake, then 96 ms would be required. 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!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm
https://www.geeksforgeeks.org/impact-of-three-way-handshake-and-slow-start-algorithm?ref=asr10
PHP
Impact of Three-way Handshake and Slow Start Algorithm
What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, jQWidgets jqxTreeMap width Property, Difference between Flow and TypeScript, jQWidgets jqxTree destroy() Method, jQWidgets jqxTree collapseAll() Method, jQWidgets jqxScrollView buttonsOffset Property, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, jQWidgets jqxListBox enableHover Property, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxSlider buttonsPosition Property, jQWidgets jqxSlider rtl Property, jQWidgets jqxTooltip opacity Property, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, jQWidgets jqxToolBar height Property, PHP, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, Node.js date-and-time Date.transform() Method, TypeScript Optional Parameters, jQWidgets jqxToolBar theme Property, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, How to use Optional Chaining with Arrays and Functions in TypeScript ?, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, jQWidgets jqxScrollView showButtons Property, jQWidgets jqxScrollView disabled Property, jQWidgets jqxSplitter destroy() Method, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, jQWidgets jqxTree collapseItem() Method, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), jQWidgets jqxSortable opacity Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, jQWidgets jqxSlider height Property, jQWidgets jqxSwitchButton onLabel Property, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, jQWidgets jqxToolBar tools Property, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTree width Property, jQWidgets jqxTree clear() Method, TLS Handshake?, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, jQWidgets jqxTabs position Property, jQWidgets jqxTabs keyboardNavigation Property, Impact of Three-way Handshake and Slow Start Algorithm, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, How to Sort an Array Having Optional Properties in TypeScript ?
GeeksforGeeks
[-0.0253034513, -0.0178484377, -0.01436943, 0.00284249661, -0.0192871243, 0.00974819344, 0.00912040286, 0.0326276757, -0.0430385359, 0.0170113835, 0.0282331407, -0.00832258537, 0.0692313612, -0.0427943952, -0.0102887908, 0.0292794574, 0.0107247569, -0.0230015516, 0.0025155223, 0.00131116691, -0.00821795408, -0.0149013083, -0.0577916168, -0.00050163304, -0.0521415025, 0.0300293192, 0.000604357512, 0.0246931, -0.0310581978, 0.0143083949, 0.0287737381, 0.025547592, 0.0282854568, -0.0319650061, 0.00605556415, -0.00908552576, -0.0128261121, -0.0385742486, -0.0208042841, -0.026367208, -0.0176217351, 0.0367606319, -0.013968342, -0.00490897428, -0.0168893132, 0.0103411069, -0.0268729273, -0.0049133338, 0.0220947433, -0.0425502546, 0.00433131959, -0.0234026406, 0.00734602241, 0.023978116, 0.0312500224, 0.0178745948, 0.0258091707, 0.00540597504, 0.00626046769, -0.0131051298, 0.0597098656, -0.00388881424, -0.0352085941, -0.00377982296, 0.00958252698, 0.00112043193, -0.0699986592, 0.0304478463, -0.024326887, -0.0189557895, -0.0582450218, -0.00266811019, 0.0193743166, -0.0152588, 0.0157470815, -0.00626482768, 0.0634068549, 0.0367257521, 0.00399780553, 0.0140555352, -0.0383649841, 0.0182582438, -0.025547592, -0.0175955761, 0.0147182029, -0.0172904, -0.0162702408, -0.0529785566, 0.0460379794, 0.0118146716, 0.0216936544, 0.0225481465, -0.0108817043, -0.0040741, -0.0210658647, -0.00797817297, 0.0238211676, 0.000330789, -0.0425502546, 0.0453753136, 0.0028926325, -0.00551932631, -0.0219901111, 0.0090942448, 0.0148315541, -0.00936454348, -0.0254603978, -0.00653512636, 0.0405622497, 0.0737305209, 0.016383592, 0.00981794856, 0.00752912834, 0.0180315431, -0.0271693841, 0.00166102941, -0.0164533462, -0.0331159569, 0.000743321551, 0.0218331628, -0.0187814031, 0.0313895307, -0.0325404815, 0.0273960866, -0.0445033833, 0.0393066704, -0.028355211, -0.00808280427, -0.00398472697, -0.0362374708, 0.000213078252, 0.00185067451, -0.0347726271, -0.00226920168, 0.0300467573, -0.00427028444, 0.0209437944, 0.0202288106, 0.0386091247, -0.0266636647, -0.00307355844, -0.0198277216, -0.00519671151, 0.0127389189, -0.00359671726, 0.0208217241, -0.0370745249, 0.0260358732, -0.0629185736, 0.0418527089, -0.0460031033, -0.0331682712, -0.0326102376, 0.0404227413, -0.00611223932, -0.036342103, 0.0178397167, 0.0226527788, -0.0192696843, -0.0212576892, 6.99503607e-06, -0.0373186655, -0.0309884436, -0.00930350833, 0.00800869055, 0.0186418947, 0.0308489352, -0.0137503594, -0.04387559, 0.0460031033, -0.00529698376, -0.00596401095, -0.0121983215, 0.0371791571, -0.021972673, 0.0085318489, -0.00973947439, 0.0106898798, -0.0258614868, 0.0266113486, -0.0237862896, -0.0225307085, -0.0236119032, -0.0141688865, 0.0309884436, -0.0201067403, 0.0111345649, 0.00545393117, -0.026349768, -0.033499606, -0.00715855742, 0.00145285577, 0.033133395, 0.0412249193, -0.0140904123, -0.00100708078, -0.0298026167, -0.00313677336, -0.00941686, -0.00644793315, -0.0290004406, -0.00649152976, -0.0078648217, -0.0156424511, 0.0203160029, -0.0128609892, -0.00393241085, -8.20160494e-05, 0.00469099125, 0.00732858386, -0.0534668379, -0.0116141271, -0.00866263919, 0.000698635064, 0.0112827932, 0.00561959809, -0.0176740512, 0.0410505347, -0.0607561842, -0.00459507899, -0.0124250231, 0.0189557895, -0.00889806077, 0.00450352579, -0.0516532212, -0.040736638, 0.021153057, -0.0312849022, 0.0385393687, -0.0182931218, 0.0180489812, 0.0324881673, -0.0225830246, -0.00326974294, -0.0427595191, -0.013166165, 0.00530134328, 0.0316859894, -0.0198102836, -0.00730678579, 0.010393423, 0.00525774667, -0.0613142215, -0.0256871, -0.0628837, 0.00213514222, 0.0432129242, 0.0621163957, 0.00186920306, -0.0115269339, -0.019583581, 0.00372968684, 0.013567253, 0.00343323, -0.0302211437, 0.0106462827, 0.0205950215, -0.0299072489, 0.00918143801, -0.00547136972, 0.0144130271, 0.00313023385, -0.0386788808, 0.0407017618, -0.00625174865, 0.00518799201, 0.0105939675, 0.0343541, -0.00062234106, 0.00214604125, 0.0310407598, -0.0349818915, 0.00277492194, -0.0290876329, 0.00946045667, -0.0383649841, -0.00826591067, 0.025931241, 0.0408063903, 0.00350516452, 0.00476510543, -0.00748989126, 0.039481055, 0.0181187354, 0.00320870779, -0.0300816353, -0.00491769332, 0.0113612665, -0.0727539584, -0.0038343186, -0.030744303, 0.0137416394, 0.0113699865, 0.0339878872, 0.0301165134, 0.0251988191, 0.00216021016, 0.0128522692, -0.0388532653, -0.0202113707, -0.0149623435, 0.00143214746, 0.00854492839, -0.00380380102, -0.0482352488, 0.00398908649, 0.0145874135, -0.0144566232, -0.00459507899, 0.00144195661, 0.0389578976, -0.0261753816, 0.0158168375, -0.0255127139, 0.0149449054, 0.0189557895, 0.0236119032, 0.00899833255, -0.0585589148, -0.0407017618, 0.0162266437, 0.0138113946, -0.00136566267, 0.0645926818, 0.0074637332, -0.00351824332, 0.0112043191, 0.0484793894, -0.0249023624, -0.0157906786, 0.00231279829, -0.00390843255, -0.0290527567, -0.00946045667, 0.00973947439, -0.0409807786, -0.0124947773, 0.0300293192, -0.00312369433, 0.0466657728, -0.0309535675, -0.00881522708, -0.00716291694, 0.000902994, 0.0174037516, 0.0164184701, 0.0093471054, 0.0122593567, 0.0241176244, 0.00178854936, 0.00177765021, 0.0327323079, 0.0573730916, 0.0466657728, 0.0288958084, 0.0050746412, -0.00367737096, 0.0178309977, -0.00994873792, -0.00587681821, 0.0446777679, -0.00963484216, -0.00463431561, 0.0393066704, -0.00857108645, -0.0169067513, -0.000462123659, -0.036272347, -0.010384704, -0.0102713527, -0.0162615217, 0.00288173347, -0.00217546895, 0.0011035382, -0.0414341837, 0.013567253, -0.00279672025, -0.00239781151, -0.0101928785, 0.0147094838, -0.0184326302, 0.0298026167, 0.0149710635, 0.0239083599, -0.00473894738, -0.0152500812, 0.00912040286, 0.0120152151, -0.00516619394, 0.030325776, -0.0452358052, 0.0109514594, -0.015999943, 0.00603812514, -0.0067051528, -0.0230364297, -0.0155465379, 0.000236511405, 0.0208042841, -0.0208217241, -0.00876727048, 0.02314106, 8.12667349e-05, 0.0255999081, -0.0021929075, 0.0380859673, -0.0156511702, -0.0522112548, 0.00309753651, -0.0175171029, 0.00160217402, -0.0161394514, -0.0126953218, -0.0158168375, 0.00829642825, 0.0439104699, -0.01475308, 0.0149361854, 0.0197579674, -0.016784681, 0.00430516154, 0.0105329324, -0.0216413382, 0.0197928436, 0.00374494563, 0.000493186235, 0.0176566113, 0.00671387231, 0.023960676, 0.00805228669, 0.00844465662, 0.00466047367, 0.00624738866, 0.00165666977, 0.0213274434, -0.0525251515, 0.01437815, 0.0175171029, -0.039481055, -0.00475202641, -0.0156424511, 0.0102539137, 0.0355922431, -0.0420968495, -0.0545480326, -0.00123705273, -0.0481306165, -0.0414341837, 0.0249372404, 0.0149274664, -0.0580008812, 0.0282505788, -0.0157558, 0.00544957165, 0.033953011, -0.0368652605, -0.0234026406, -0.0461077355, 0.0232631322, 0.0125296554, 0.0254255217, 0.00801741, 0.0174037516, -0.00667463522, 0.0395508111, 0.0120936893, -0.0194615107, -0.0308489352, 0.00301906257, 0.00539289601, -0.00678798649, -0.0286516678, 0.0060642832, 0.0360282063, 0.0464565083, 0.008174357, -0.030779181, 0.00562831759, -0.0150408177, -0.054687541, 0.0241699405, 0.0725446939, 0.0277448595, -0.027971562, -0.00979179051, 0.0220947433, -0.0113438284, -0.0048697372, 0.0280587543, -0.00562831759, -0.0278843679, 0.0165231, -0.0487584062, 0.0305873547, -0.0328195, -0.0473284386, -0.0264892783, -0.00721523259, -0.00671387231, 0.0226527788, -0.010001054, 0.00589425676, 0.0158691518, 0.0175519809, -0.027134506, 0.00727190822, 0.0338135026, 0.0326276757, -0.0150059406, -0.0384696163, 0.0125558134, 0.0081482, -0.0138811488, 0.0236642193, 0.00672695134, 0.0358189456, -0.0684640557, 0.01475308, 0.0208914783, 0.0305873547, 0.0147007648, 0.00748553174, -0.0157034863, 0.00891549885, -0.0260009952, 0.00626482768, 0.0181187354, 0.00537981698, 0.00721523259, -0.0304304082, -0.0321917087, 0.00919015799, -0.0016762882, 0.00867571775, -0.0146658868, -0.00957380701, 0.0132969543, 0.0361677185, -0.027936684, 0.00830078777, -0.00246102642, 0.0207170919, -0.0236119032, -0.00951277185, -0.0124947773, 0.0173252784, -0.00263759261, -0.00523158861, 0.0158691518, -0.0109601784, 0.0117710745, 0.0126081286, -0.00970459729, 0.00376674393, -0.0244140811, -0.000934056588, 0.0215192679, -0.0382254757, -0.00675310893, -0.0118408296, -0.00923375413, 0.0185895786, -0.0152326422, 0.00233023684, 0.0017787402, -0.0182756837, 0.00273132534, 0.0135062179, 0.00352914259, 0.0120326541, 0.0136108501, -0.00769479526, -0.0157296434, -0.0212228112, 0.0234026406, 0.0340750813, 0.0110560907, -0.030709425, 0.0187116489, 0.0268903654, -0.00601632707, -0.0287039839, 0.0236642193, 0.00398472697, 0.00485229865, 0.0121896015, 0.00772531284, -0.0236293431, -0.0242745709, 0.000292369514, 0.0107073179, 0.00735910144, -0.0120849703, -0.00103541859, 0.00117928733, -0.00995745696, 0.00438799523, 0.0279192459, -0.000198636888, -0.0124599, 0.0122680757, 0.0273263324, 0.0187116489, -0.00464739464, 0.00391061278, 0.00848389324, -0.0262974519, 0.0397600755, 0.00556728244, 0.00227138144, 0.00566755468, 0.00425284589, 0.0248326082, 0.00798253249, 4.28472558e-05, -0.00987898372, 0.031494163, -0.00737654, -0.0119105838, 0.00063433015, 0.0310756378, -0.00767299673, -0.00941686, 0.0117536364, 0.00812204182, 0.0262625758, -0.0297677405, -0.00616019592, -0.00728062773, -0.0386091247, -0.0254255217, -0.0131400069, -0.00660924055, 0.0164795052, -0.0202462487, -0.00625174865, -0.0224783923, -0.0111258458, -0.0288958084, -0.0147094838, -0.00962612312, 0.0397251956, -0.0422712378, 0.0965402499, -0.00466919318, 0.0212576892, -0.0135323759, 0.0297677405, 0.0212925654, 0.0417132, 0.00966972, 0.0304304082, 0.0186070167, 0.0242571328, 0.00627354672, -0.0296805464, 0.0399344601, 0.000571660057, -0.00378200272, 0.0242222566, -0.00371224829, -0.00921631511, 0.0322091468, 0.00301906257, 0.0137503594, -0.039167162, 0.0241176244, 0.0145699745, -0.021118179, 0.0518973619, -0.020368319, -0.0233328864, 0.022722533, 0.0281808246, -0.0161568895, -0.0314418487, -0.0266811028, 0.0525949039, 0.00104304799, -0.036342103, -0.014770519, 0.0222342517, -0.0027335051, 0.0142560797, 0.0111345649, -0.000610896968, -0.0269949976, 0.0180315431, -0.0103149489, 0.00332641858, 0.012363988, 0.00176021166, 0.0358538218, -0.0168980323, 0.0251988191, 0.0255127139, -0.0225655865, 0.00285339565, 0.00187683245, -0.00748117175, 0.0149361854, -0.00130789715, 0.00534494, 0.00600324804, -0.00712804, 0.0305176, -0.0014801037, -0.0109514594, -0.0257742945, -0.0228620432, 0.00824847165, 0.00745937368, -0.0374232978, 0.0176130161, 0.0110648097, -0.00672259135, 0.0159389079, -0.00171770493, -0.0153111164, -0.00581578305, -0.0183454379, 0.00306701893, 0.0315987952, -0.0690569729, -0.00946917571, 0.0307268649, -0.00192369882, 0.0352434702, -0.0497000925, -0.00276402268, 0.0240478702, -0.0089896135, 0.0110822488, -0.00854928792, -0.00648717023, -0.0164010301, 0.00881522708, 0.0183977541, 0.0293666515, 0.00274222437, 0.00185394427, -0.00360543653, 0.0143083949, 0.0101492824, -0.0365164876, -0.0337960646, 0.0318778157, 0.0457240865, 0.00771223381, -0.0165056624, -0.00397818722, -0.0120152151, 0.014386869, -0.0198800378, -0.0274832789, -0.0172729623, 0.0204729512, 0.00447300822, 0.0128173921, 0.0135410959, 0.0250593107, 0.0668945834, 0.00516183442, -0.00576346694, 0.0170636978, -0.0166538917, -0.031563919, 0.0168718733, 0.00348772574, -0.01754326, 0.0168021191, 0.01157053, 0.0204729512, -0.0238734838, -0.00175149227, -0.000332151394, 0.0295236, 0.00632586284, 0.00806972571, -0.00155857753, 0.00242396956, 0.0145961326, -0.0505371466, 0.0330985188, 0.0100533701, 0.00891113933, 0.0138462717, 0.000627790636, 0.0152762393, 0.023960676, -0.00674439, 0.0522810109, 0.00614711689, 0.0087367529, 0.00769043528, -0.0136631662, -0.00788662, -0.00254168012, -0.026750857, -0.00481742108, 0.00777326897, -0.0187116489, -0.00134168449, 0.00267029018, -0.0118669868, -0.0632673502, -0.0344412923, -0.0504673943, -0.0388881415, -0.00101198547, -9.77516902e-05, 0.0164184701, -0.0318778157, 0.00953893, 0.00728498725, 0.0180141032, 0.0198625978, 0.015930187, -0.027989, 0.0149623435, -0.00468227174, 0.0143345529, 0.00708008325, -0.0359933302, -0.00381688, 0.0262800138, 0.0221644975, 0.00141143904, 0.0422712378, 0.0170462597, 0.00479126349, -0.0308140572, -0.0258266106, 0.0069013373, -0.0133928675, 0.0127301989, -0.00221252604, 0.00817871746, -0.00551932631, -0.00369916926, 0.00227574119, -0.0132097611, 0.00213841186, 0.0151105719, -0.00860160403, 0.0109514594, 0.00564139662, 0.00082506513, 0.030360654, -0.012782515, 0.0161045734, 0.0402483568, 0.00276620244, 0.00125122163, -0.0105765285, 0.0258440487, 0.00926863123, 0.0173863135, 0.000367028639, -0.00235639466, -0.00234985538, 0.0101492824, -0.0248849243, 0.01436943, -0.0125819705, 0.000279835513, -0.0194440708, -0.0319475681, -0.0170985758, -0.0389578976, 0.0114920568, -0.018763965, 0.0165579785, 1.36324443e-05, 0.011605408, -0.0124163041, 0.00913784187, 0.00903321, 0.00133187533, -0.0273612086, 0.0380859673, 0.0108381081, -0.044259239, 0.0163225569, -0.006591802, -0.0191301759, -0.0351737142, -0.0216587782, 0.0196533352, -0.0178745948, -0.0136544462, -0.000188282705, -0.03508652, -0.0354701728, -0.0100969663, 0.0120239351, -0.0510951839, -0.0117536364, 0.022356322, -0.0146048516, -0.00975691341, 0.0110473717, -0.00354440138, -0.00624302914, 0.0288260542, -0.0250244327, -0.011152003, 0.0062691872, 0.00414167438, -0.0286167897, -0.0130179366, 0.0156075731, -0.0277797356, -0.00428118324, -0.000698635064, 0.0490723029, -0.0172642432, -0.0253557675, 0.0152152041, 0.0125819705, -0.00413949462, 0.0013776517, -0.00247846521, 0.0158691518, -0.0265067164, -0.0114048636, -0.0172555242, -0.0145438164, -0.020751968, 0.00147901371, 0.00981794856, 0.0217808485, 0.0087847095, -0.0187465269, -0.028390089, 0.0141776055, -0.0152239231, 0.0211704951, -0.0696498826, 0.009164, -0.0289306864, 0.0152413622, 0.0190953, 0.00971331634, 0.0177961215, -0.014770519, 0.0437012054, 0.0268729273, -0.0108293891, 0.00500052702, -0.0181361735, -0.00992258, 0.0148315541, -0.028320333, -0.0142386407, -0.0649414584, -0.0343715362, -0.0207345299, -0.0111607229, 0.000442505203, 0.0332554653, 0.0144915013, 0.00190626015, -0.00827463, -0.0158342756, 0.0249721166, -0.00626046769, -0.0289830025, -0.0155378189, 0.00799997151, 0.00116511842, -0.021554146, 0.0176304542, -0.013584692, -0.013985781, -0.0176304542, -0.011169442, -0.0330113247, 0.0276751053, 0.00918143801, 0.00252206181, -0.0181536134, -0.0110996878, -0.0182233676, 0.019949792, -0.0345808, 0.0055106068, -0.0192871243, -0.0226353407, 0.0139334649, -0.00701468857, -0.00211879355, -0.00542341359, -0.0177263673, -0.0305873547, 0.00504412362, -0.00135803327, 0.0182408057, -0.0376325622, -0.0268380512, -0.0162876789, -0.0229841135, -0.0148141151, 0.0502581298, 0.0290004406, 0.016758522, 0.0138549907, 0.000221388851, -0.00687081972, 0.0100882472, -0.021571584, -0.0244315192, 0.0163138378, 0.00200217264, -0.00246538618, -0.00125013175, -0.0258789249, -0.0159389079, -0.0217285324, 0.00942557864, 0.00665283715, -0.0126168486, 0.0124511812, -0.0101841595, 0.0329241306, 0.0200369842, -0.0081525594, 0.00522286957, -0.0279541221, 0.0272914544, 0.0112827932, -0.011152003, -0.00130571739, -0.0241525, 0.00760760205, -0.00638253847, -0.0149623435, -0.0243443269, 0.00282723783, -0.00138637098, 0.0310581978, -0.00436401693, -0.0153895905, 0.0405622497, 0.000936236407, -0.0274658408, -0.0170898568, 0.0308140572, 0.0112827932, -0.0182059295, 0.0234898329, -0.00476074591, -0.0054757297, 0.0225830246, 0.0027771017, 0.0156337302, -0.0216239, -0.00904193, 0.0323312171, 0.00486537768, -0.0222342517, -0.03193013, 0.0133405514, -0.0288434923, -0.00631278381, 0.0235944651, 0.0222691298, -0.0121460054, -0.00836182293, 0.0146833258, -0.00235203514, -0.0179094728, 0.0128173921, 0.00217110943, -0.0105939675, 0.000153405446, -0.0157296434, -0.0187814031, -0.0156250112, -0.00709316228, -0.00679670554, -0.0121460054, 0.0262102596, 0.0100969663, -0.00643921364, 0.010759634, 0.00449044723, -0.00407845946, -0.0124773392, -0.0248151701, -0.0148402732, 0.00103596353, 0.00129481824, 0.00428554323, 0.0140816933, 0.00527518522, 0.00867571775, 0.104910791, -0.0166102946, 0.00369480951, -0.041922465, -0.0035705592, 0.00130135776, 0.0101056853, 0.0251290649, 0.0172468051, 0.00967843924, 0.0445382595, 0.00959996507, -0.00356402, 0.00282723783, 0.00349862501, 0.00105503702, 0.0016174328, -0.000803811825, 0.0185198244, 0.0246582218, -0.00277492194, 0.00823539216, -0.00203051046, -0.00838362053, 0.0223912, 0.00155094813, -0.00033760097, -0.0199149139, -0.0222516917, -0.00696237246, 0.0337088704, -0.0029166108, 0.00527954474, 0.0194615107, 0.000740596792, 0.0398995839, -0.00772095285, -0.0104283, -0.0179966651, 0.0102364756, -0.00166320929, -0.0340750813, -0.00434657838, -0.00674439, -0.00130680727, 0.0110386526, -0.00575910741, 0.00195530639, -0.0282854568, 0.0313372165, 0.00278364122, -0.00679234602, 0.0158691518, -0.0262276977, 0.00306701893, 0.0265415944, 0.0339878872, 0.00376238418, 0.0442941189, -0.0166102946, 0.0197754055, -0.0113699865, -0.0167323649, 0.0136544462, 0.00319998851, -0.000958579651, -0.0158778727, 0.00150517165, -0.00697981147, 0.00387791521, 0.0137677975, 0.0267334189, 0.00712368, 0.00513131684, -0.0201764945, -0.011587969, -0.00600324804, -0.0153634325, 0.0127040418, -0.00275312364, -0.0149623435, 0.012390146, -0.0146571677, 0.0106114056, 0.000234467821, -0.0169765055, -0.00761196157, 0.00891985837, 0.0254952759, 0.00234767538, 0.0170898568, -0.00569371227, -0.0165841356, -0.00676618796, 0.00639125751, -0.0202462487, 0.0192348082, 0.00604684465, -0.00401524454, 0.00409807777, -0.00950405281, 0.00493949186, 0.00395420939, -0.00857980549, 0.0205252673, 0.00701468857, 0.00919015799, 0.0142473597, -0.022373762, 0.0173165593, 0.0137765175, -0.000244277035, 0.00953021087, 0.00149645237, 0.0158691518, -0.0185198244, 0.0278320517, 0.00601196755, -0.00613839738, 0.0165056624, -0.023978116, 0.022757411, 0.00217655883, -0.0334298536, -0.00399344601, -0.0187814031, -0.012372707, -0.0105678095, -0.00249372399, 0.0217285324, -0.00569371227, 0.044747524, -0.018380316, 0.00309317675, -0.0158865917, 0.00910296477, -0.000325611909, 0.00513567636, -0.00472150883, 0.000469208113, 0.0121285664, 0.0247977301, -0.00702340808, -0.00764247915, 0.00956508797, -0.0107509149, -0.0316511132, -0.00652640685, -0.00104086823, -0.00234985538, -0.0280064382, -0.0202636868, 0.00804792717, 0.00396074867, 0.0206473377, -0.017979227, -0.00640869606, -0.0114571797, -0.0141601665, -0.00317383045, 0.0224260762, 0.0213971976, 0.019182492, -0.0256522242, -0.00506156217, -0.0234026406, 0.0204903893, -0.0048784567, -0.0355573632, -0.0168631542, 0.000521796464, 0.00127084006, 0.0142560797, -0.015563977, 0.00539289601, 0.00308663747, 0.0238909218, -0.0113438284, 0.025146503, -0.00961740408, 0.00252206181, -0.000296184211, 0.000192914842, -0.00623866962, -0.0122680757, 0.0228271652, -0.0311279539, 0.00690569729, 0.0221121814, 0.00423976686, -0.0136108501, 0.00252206181, 0.0142909568, -0.0124337422, 0.0372489132, 0.00684902165, 0.0173775945, 0.010367265, -5.14303338e-06, 0.012773796, -0.0118582677, -0.0286865458, -0.0125994096, 0.00922503509, 0.00866699871, -0.0250069946, -0.0135410959, -0.00760760205, -0.00109808869, 0.00765555818, -0.00330462027, 0.0114135826, -0.00301906257, 0.010349826, -0.0135498149, -0.0120936893, -0.00644793315, -0.0178397167, -0.0029754662, -0.004582, -0.00625174865, -0.0328718163, 0.0018147073, 0.0034550284, -0.00784738269, -0.0197230894, 0.0440499783, 0.00421578856, 0.0196010191, 0.00590733578, -0.0176740512, 0.0298374947, 0.00953021087, 0.00490025477, 0.0133056743, -0.0292794574, 0.0304129701, -0.0162702408, -0.0238386057, 0.00214604125, -0.00708880275, 0.0132795162, -0.01157053, 0.00726318918, -0.0116577232, -3.38214049e-05, 0.00589861628, -0.00763811963, -0.019182492, 0.0172293652, -0.00804792717, -0.00500488654, 0.0176653322, -0.0275879111, 0.0108119501, 0.00253514061, 0.00238909223, 0.0171421729, -0.0109863365, -0.0464913845, 0.0266462248, 0.00302342232, -0.0238560438, 0.0145263784, 0.00211770344, 0.0109165814, -0.00576346694, 0.0132533582, 0.00831386633, 0.0022975395, -0.0113612665, 0.0137590785, -0.00259835576, 0.00112806133, -0.0110560907, -0.00777762849, 0.00636945944, -0.0113525474, -0.0397600755, -0.00954765, 0.00178092, 0.0257045384, 0.0138201136, -0.0236642193, -0.00987898372, 0.00535801891, -0.0104631772, -0.0141776055, -0.0177699625, -9.23702391e-05, 0.0137852365, 0.00729370676, 0.0145089393, 0.0118669868, -0.0191999301, 0.0324358493, 0.00752476836, -0.00686210068, -0.0146746067, 0.0186244566, -0.00941686, -0.000901359133, -0.0262974519, 0.0152849583, 0.00215258077, -9.71386107e-05, -0.00289045274, -0.00890678, 0.0165928565, 0.00218854798, 0.0220249891, -0.0297154244, -0.00308881723, 0.019548703, -0.00017602116, -0.00957380701, 0.0166277327, 0.0128261121, 0.00509207975, 0.00520107104, 0.00242832908, -0.00854928792, -0.00997489598, 0.0209263545, 0.0174822249, 0.000604357512, -0.0112479161, 0.00285339565, 0.0135498149, -0.0163312759, -0.00137438194, -0.0472586863, -0.00398690673, -0.017569419, -0.0295933541, -0.00340925204, -0.021571584, -0.00865828, 0.00066212297, 0.0134713408, -0.0372140333, -0.00350516452, -0.0159127489, -0.00739833852, 0.00796073396, -0.0390625298, 0.00318037, 0.0194963869, -0.0127301989, 0.0271868221, -0.024361765, 0.0193743166, 0.0125558134, 0.00203922973, 0.00984410569, 0.00017574869, 0.0193743166, 0.01996723, -0.0242920108, -0.0281633865, -0.0174299106, 0.00205339864, -0.000929696893, -0.0175258219, -0.0224086381, 9.51972e-06, -0.00621251157, -0.00144413649, 0.0276227891, 0.040352989, -0.0169416275, -0.0209263545, -0.00507028122, 0.0216239, -0.0126517257, 0.0131400069, -0.0115269339, 0.0156337302, 0.0142473597, -0.0166713297, -0.00719343452, -0.0029514879, 0.00164250087, -0.00564139662, -0.0173252784, 0.0178571567, -0.0049482109, 0.0238734838, 0.0312849022, -0.00397164794, -0.00558908051, 0.00627790671, 0.0109950555, 0.00540597504, -0.0362374708, 0.0107247569, -0.028320333, -0.0187814031, -0.00733730337, -0.0125732515, -0.00696673244, -0.00464303512, -0.0180664193, 0.0108381081, 0.028320333, 0.00221143616, 0.00208173646, -0.0394113027, 0.0241699405, -0.0392369144, 0.00376238418, 0.00380380102, -0.0161132924, -0.0253034513, 0.000625065877, 0.0423409902, 0.000767299673, 0.0241525, -0.0220947433, 0.0182408057, 0.00260925479, -0.0093122283, -0.0229143593, -0.0181710515, -0.00280325953, -0.00619943254, 0.0192173701, -0.00769479526, -0.0147182029, -0.0129656205, -0.00691441633, -0.011561811, 0.0290701948, 0.000479562295, 0.00553240487, 5.6130586e-05, 0.00998361502, -0.0320870765, -0.00835310295, 0.00175803178, -0.003893174, -0.0264195222, -0.0355922431, -0.0126691638, -0.00390189327, -0.0294364057, 0.00395856891, 0.0129569015, 0.0117536364, -0.0124337422, 0.00319126924, 0.00636945944, -0.0104195811, -0.00561959809, -0.00150626164, 0.00414821412, -0.00757708447, -0.00834874343, -0.00722831162, -0.00141470879, -0.00911168382, -0.0170113835, -0.0286167897, 0.0178745948, 0.0250941869, 0.00596401095, -0.0121198473, -0.00705392566, 0.00438145548, 0.00154113886, 0.00870623533, -0.0119018648, 0.00114223023, 0.00866263919, 0.0158778727, -0.00691441633, -0.00101471029, -0.00973075535, 0.0106026866, -0.00915528, 0.0106462827, 0.00408499874, 0.00975691341, 0.0190604217, 0.0165405404, 0.0612095892, -0.00930350833, 0.0175519809, 0.0180664193, 0.0055934405, 0.020333441, -0.00787354074, -0.0346505567, 0.00592477433, -0.00228228047, 0.0158604328, 0.00558472099, -0.021118179, -0.00440761354, 0.00329372101, -0.0145612555, -0.00350080477, 0.0234723948, 0.0030321416, 0.00866699871, 0.0253383275, -0.0153111164, 0.00493949186, -0.0114223016, -0.0116402851, 0.0106201256, -0.00418527098, -0.00295584765, 0.0057067913, 0.0138724297, 0.00179290911, -0.00283813686, 0.00387137569, 0.0212228112, -0.0145350974, 0.0239083599, -0.0087367529, -0.011186881, -0.0208740383, 0.00322832633, 0.0112653542, 0.00296674669, 0.0237862896, 0.00800869055, -0.000667572545, 0.020751968, 0.0142735178, -0.0173863135, -0.00108119496, -0.0132272, -0.00911168382, -0.00806100667, 0.00021689295, 0.0163574349, -0.0108381081, -0.0016185228, -0.00357709872, -0.025966119, -0.0251290649, -0.013602131, -0.00944301765, 0.0181361735, 0.005994529, -3.94072158e-05, 0.000383104896, -0.00152152043, -0.0180141032, 0.00212969258, -0.0138898678, 0.0269949976, 0.00317383045, -0.0136370081, -0.00473894738, -0.00824411213, 0.00556728244, 0.000856672646, -0.0295584761, -0.024396643, -0.0264020842, 0.00449044723, 0.00440543378, 0.00524902716, -0.00166756893, 0.0133579895, -0.00878035, -8.69887881e-05, 0.0283028949, 0.00476946495, 0.00268772873, 0.0137939556, 0.00880214851, -0.0108555462, -3.06879e-05, 0.00512259733, -0.000922067498, 0.0238560438, -0.00149209274, -0.00505720265, -0.021554146, 0.00110789796, -0.00623431, 0.0304304082, 0.0169677865, -0.0129307434, 0.0114135826, 0.00871059485, 0.00773403188, 0.00308227772, 0.0170636978, 0.00281851832, -0.00380162126, -0.0126778837, -0.0051443954, 0.0121024083, -0.00112806133, -0.0245710276, -0.0145350974, 0.0122942338, -0.00252860133, -0.00486101769, -0.0230713058, 0.00883266609, 0.00607736222, -0.0154244676, -0.00904193, -0.0109863365, 0.00105885172, -0.009164, -0.00753348786, -0.0112827932, -0.00609044125, 0.02873886, 0.0113176703, -0.00267900946, 0.00829642825, -0.00578090549, 0.0209961087, 0.00464303512, -0.00131225679, 0.00205121865, -0.00219072774, 0.00113569072, -0.0250767488, -4.16551629e-05, -0.0136544462, 0.0135410959, 0.0143258339, 0.000559126, -0.00144631625, -0.0126342867, 0.012363988, -0.0240304302, -0.00679670554, -0.012799954, -0.00970459729, 0.0111956, -0.00033760097, -0.0138724297, 0.0110735297, -0.0159040298, 0.000457219052, -0.0229841135, -0.00857544597, 0.0146658868, -0.0130876908, 0.018328, 0.0186244566, 0.0168021191, 0.0155901341, -0.00313895335, -0.0261230674, -0.00086648186, 0.00221361592, 0.00139400037, -0.0128784273, 0.0110560907, 0.0199846681, 0.018798843, 0.0288609304, -0.00482178107, -0.016383592, 0.0367955081, 0.00812204182, -0.0012392326, -0.0174211897, 0.00706700468, -0.00595965143, -0.00849261228, -0.00449480675, -0.018763965, 0.0172468051, 0.0112217581, -0.0133318324, -0.00133405509, 0.00239345175, -0.00376020442, -0.0118844258, 0.0103149489, -0.0178745948, -0.000316075166, -0.00787354074, -0.00044550249, -0.0140380962, 0.00813512, 0.00385829667, 0.00218854798, -0.0146920448, -0.0093819825, 0.0196882114, 0.0102539137, -0.0274658408, -0.00532314135, 0.0198102836, 0.00668771425, -0.00148991286, 0.0309361275, 0.00151062128, 0.00531442231, -0.00325448415, 0.0174037516, -0.00784302317, 0.00160435389, 0.00528390473, 0.0144653432, 0.0153198354, -0.00779506704, 0.00972203538, 0.00565011567, -0.00799997151, -0.0036512129, -0.0157732405, -0.000834329403, 0.0226004627, 0.00861904211, 0.0163574349, -0.0147879571, 0.022792289, 0.0159127489, -0.00893729739, 0.00259181624, -0.00129372824, -0.0284424033, -0.01996723, -0.0118582677, -0.00933838636, -0.0117013203, 0.0287737381, -0.00254386, -0.0284249652, -2.01974744e-05, 0.0124424621, 0.00342887035, 0.0120936893, -0.0127650769, 0.0140991313, 0.0156947654, 0.025181381, 0.0034920855, 0.0148315541, -0.029959565, -0.00971331634, 0.0310930759, -0.0025721977, -0.00418527098, 0.0322614647, 0.0119280219, 0.00291225105, 0.00972203538, -0.0146658868, -0.0022517629, 0.00703212712, 0.00395420939, 0.0180315431, 0.00477818446, -0.00337219494, 0.0044446704, -0.0037536649, 0.00328718149, 0.0110037746, -0.016348714, -0.0253906436, -0.00890678, -0.00442723185, 0.0190604217, 0.00988770276, 0.009164, -0.00534494, 0.0212576892, 0.0078299446, -0.0145176584, 0.0130528137, -0.0157470815, -0.034319222, -0.00942557864, 0.00222669495, -0.00741141755, -0.0165231, 0.0109514594, 0.0126342867, 0.00860160403, -0.011997777, -0.00277492194, 0.0132707972, 0.0190778598, 0.00418745074, 0.00811332185, 0.000730787579, 0.00106266642, -0.00413949462, 0.00689261826, -0.0071411184, -0.00983538665, 0.00411769608, -0.00872367434, -0.00703212712, 5.96728096e-05, -0.00321088755, -0.021554146, -0.0153547125, 0.0135323759, -0.0136282891, 0.0061907135, -0.0178135596, 0.00827027, -0.00168609747, -0.0133579895, -0.00462559657, -0.0152326422, 0.00155857753, -0.00803920813, 0.00433131959, 0.0175868571, 0.00575910741, 0.0025503994, -0.0220598653, 0.013558534, -0.0153198354, 0.0167323649, -0.00887626223, -0.00469099125, -0.00539289601, 0.00187792233, -0.0169154704, -0.0162179247, -0.00485229865, 0.00650460878, -0.0168021191, -0.0202636868, -0.00598580949, 0.0106462827, -0.00294930814, 0.0117013203, 0.0147879571, 0.0021613, -0.00106920593, 0.00422886759, 0.00828770828, -0.00406756, -0.00949533377, 0.00436401693, 0.0093819825, 0.00238037296, -0.0118844258, -0.000682286336, -0.00309317675, 0.0121460054, 0.00768607575, 0.00865828, -0.00925119314, 0.00777762849, -0.0166102946, -0.00271824631, 0.000627245696, -0.0204555113, 0.0248674843, 0.00784302317, -0.00217328919, 0.00925119314, -0.0134277446, -0.00253950036, 0.0123116719, -0.00578962499, -0.00551496632, -0.0265067164, -0.00170026638, -0.00140162976, -0.0200369842, 0.0177786816, -0.00152805983, 0.01716833, -0.0108991433, -0.0158778727, -0.00233895611, -0.0255824681, 0.00786918122, 0.00185176439, 0.0122942338, 0.0187465269, 0.000868661737, -0.00291225105, -0.0160173811, -0.00473458786, 0.0138811488, -0.0102975108, 0.0125034973, -0.00426156493, 0.00526646618, -0.00787354074, -0.00378200272, 0.00390189327, -4.01905891e-05, -0.00696237246, 0.00411769608, -0.00633022236, 0.013575973, 0.0194091946, -0.00187465257, 0.00799561106, -0.0205427054, -0.0348075032, -0.0152762393, -0.0048784567, 0.0143432729, 0.00127846946, -0.00694929389, 0.00555420341, 0.0116315661, -0.0170288216, -0.00177329057, -0.0305699166, 0.013183604, -0.00779942703, -0.0068315831, 0.0268206112, -0.0153372744, 0.000876291131, 0.000432151021, -0.00122833345, -0.000190053805, 0.00611659931, -0.0125906905, 0.0100359311, -0.000435693248, 0.00962612312, 0.0137765175, 0.0059029758, -0.00320870779, 0.0165056624, -0.0144827813, -0.000376837881, 0.00464739464, -0.00928607, -0.0105590895, 0.0140555352, -0.0174647868, -0.000168119281, -0.0108817043, 0.0166713297, 0.0115530919, 0.031999886, -0.00449916627, 0.00575038791, -0.0107334759, -0.00914656091, 0.00436619669, 0.037144281, -0.0111956, 0.0178745948, -0.00684902165, -0.00966972, -0.00571551081, 0.0313372165, -0.00925991219, -0.00376674393, -0.00919015799, -0.0150669757, 0.0182408057, -0.0140119381, 0.00804356765, 0.00397164794, -0.00601632707, -0.00419617025, 0.0113438284, -0.0165405404, 0.00757272448, 0.00369916926, -0.00130244764, -0.00257655745, -0.017578138, 0.00414167438, -0.013558534, -0.00109972351, 0.00823103264, 0.0187814031, -0.0102364756, -0.00846645422, 0.00742013659, -0.00317601045, -0.0110996878, 0.0142299216, 0.00071716361, -0.00582450209, -0.0145263784, 0.0222516917, -0.00562395807, 0.0263846461, 0.00173405372, -0.00247846521, 0.0167323649, -0.0076686372, -0.0150233787, 0.00424630614, -0.0145002203, 0.00301252329, 0.00709752226, 0.0104195811, -0.0120588122, -0.000882285647, -0.00834002439, 0.0164271891, -0.0126866028, -0.0181361735, -0.00418527098, -0.00872367434, -0.0200718623, 0.00678798649, 0.00423976686, -0.0104980543, 0.00447300822, 0.0155378189, -0.0208566, 0.00456456095, 0.0136631662, 0.0381906, 0.00130898715, 0.00522722909, 0.0107334759, 0.0170375407, 0.0152762393, 0.0269775596, -0.0166887678, 0.0205775816, 0.0102015976, 0.00144195661, -0.0130789718, 0.0152326422, -0.00949533377, 0.000279290543, 0.0016544899, -0.00145939528, -0.00847081374, 0.00799125154, 0.0038147, -0.00155639765, 0.0197754055, 0.016366154, -0.0107160378, -0.00151171116, 0.0189732276, -0.0114048636, 0.0149797825, 0.00872367434, 0.0141427284, 0.00438363524, -0.00665719667, -0.00413731486, 0.0151105719, 0.009164, -0.0308140572, -0.0174735058, -0.00154876825, -0.0149449054, -0.00221797568, -2.4982879e-05, 0.0151018528, 0.000835964282, -0.0212751273, -0.0104544582, -0.00157492619, -0.0021362321, -0.0219901111, -0.0268729273, -0.00773403188, -0.0315116, 0.00263323309, 0.0219552349, 0.0166713297, -0.0186767727, -0.00980922859, 0.00344848889, 0.015162888, 0.00428554323, 0.00452968385, 0.00573730888, -0.0119193029, 0.0182756837, -0.00955636892, 0.0128261121, -0.0309535675, -0.0157558, -0.00413731486, 0.0131574459, -0.00599016901, 0.0388881415, -0.00321742706, -0.00820923503, 0.0167149268, 0.0123203918, -0.0154506257, -0.0206298977, 0.0136195691, 0.010393423, 0.00389753352, 0.00899833255, -0.0172816813, -0.00480870204, -0.00797817297, -0.00494385138, 0.0105067743, -0.00108882436, -0.011169442, 0.0168718733, 0.00773403188, -0.000497818342, 0.00813512, -0.00687953923, 0.0114223016, -0.0060642832, 0.00808716472, -0.00761632109, -0.00875855144, 0.00289699226, -0.0138549907, -0.00328936148, 0.00434875814, -0.0168980323, -0.0322963409, 0.00697981147, 0.0105590895, 0.0141514475, 0.0204729512, -0.0170724187, 0.00246756594, -0.00452968385, 0.0108729852, 0.00185176439, 0.0100969663, 0.00882830564, 0.0159127489, -0.00165666977, 0.00262669357, 0.00427900348, -0.00864956, -0.0127214799, -0.02314106, -0.0109514594, -0.0249721166, -0.0075901635, 0.0109340204, 0.0213274434, -0.0186418947, 0.0175258219, 0.0134626217, 0.0104021421, -0.0078648217, 0.00973075535, 0.00728498725, -0.000229154481, -0.000830514706, -0.00762068108, -0.013985781, -0.0116228461, -0.000814166, 0.0257917326, -0.00695365341, -0.00919887703, -0.00592913385, 0.0309710056, 0.0093122283, -0.0126953218, -0.00475638593, 0.0248151701, -0.000959669531, -0.0135062179, -1.934598e-05, 0.00355966017, 0.00636509946, 0.0128261121, 0.0102713527, 0.00605992367, 0.0116490042, 0.00726318918, 0.00528390473, -0.0165579785, -0.00619943254, -0.0072675487, 0.00560651906, -0.00152261031, -0.00860596355, 0.00288827298, -0.0110648097, 0.0213274434, 0.00143541722, -0.00737654, -0.000629970455, -0.00301688281, -0.0122593567, 0.00211552368, 0.0181710515, -0.0114135826, -0.0113961445, 0.00159563462, 0.00779942703, -0.0119280219, -0.0168980323, 0.0105852475, -0.027989, 0.00213078246, -0.0008125311, 0.020333441, 0.0138985878, -0.0168544352, 0.00368173048, -0.0106114056, -0.0164533462, -0.0271170679, -0.00100054138, -0.00642613461, 0.0354876108, 0.0234375168, -0.00439453451, 0.00843157712, -0.00946917571, -0.00386047643, -0.0127127608, 0.00234113587, 0.0225481465, 0.0021068044, -0.00629534526, -0.00128173921, -0.0268206112, 0.0112479161, -0.00408935873, -0.0081176823, 0.00937326346, -0.0113351094, 0.00179072923, -0.0133579895, -0.0234200787, -0.0124250231, 0.0209263545, 0.00469099125, 0.0233503245, 0.00788226072, -0.0164707843, -0.000600542815, 0.0104021421, -0.000456674112, -0.00259835576, 0.0184151921, -0.00288173347, 0.00786046218, -0.0148664312, -0.00500488654, -0.0225655865, -0.00235857465, -0.00125885103, 0.000988552347, -0.016366154, 0.0222691298, 0.00973947439, 0.00688389875, -0.00150517165, 0.00676182844, -0.0146048516, -0.0194440708, 0.00484357914, 0.0299770031, -0.00250680302, 0.028390089, -0.00716727646, 0.00883266609, -0.00478254398, -0.00479562301, -0.0254429597, 0.00374712539, -0.0221296195, -0.00147138431, -0.00917271897, 0.044747524, 0.00612095883, -0.0101667205, 0.0120675312, -0.0021144338, 0.00885010418, -0.0133579895, 0.0231236219, 0.00768171623, -0.0222865678, 0.011997777, 0.00545393117, 0.00963484216, -0.00537109794, 0.0122855138, -0.000774384127, 0.0189732276, 0.0222691298, 0.0107160378, 0.0161568895, 0.000281197892, -0.0404576212, 0.025931241, 0.00204903889, 0.00577218644, 0.0021656598, -0.0152413622, -0.00759452302, 0.00491769332, 0.00523158861, -0.0212402511, -0.0055018873, 0.0154157486, -0.00289045274, -0.0318254977, -0.00718035549, 0.0221993756, 0.0069013373, -0.0132359192, 0.00680542504, -0.0222168136, -0.00521850958, 0.00350516452, -0.00545829069, 0.00460379804, -0.0120064961, -0.0155465379, 0.0154767837, -0.00770787429, -0.00826155, 0.0211007409, 0.0162092056, -0.00435529742, -0.0212228112, -0.0124337422, -0.0205078274, 0.0126517257, 0.0220075492, 0.0114397407, -0.00699725, 0.0129220244, -0.0124947773, 0.00592913385, -0.00414167438, -0.0036294146, 0.00311497506, 0.00118037721, 0.00302778208, -0.00649588928, 0.00576782646, -0.0274135247, -0.00115203939, 0.00967843924, -0.00644793315, 0.0170026626, 0.0167062059, -0.000568935298, -0.00187792233, 0.00516619394, -0.00651332783, -0.0156337302, 0.0174299106, 0.00878906902, -0.00615147641, 0.00844029617, -0.0109950555, 0.00966972, 0.0176130161, -0.00845773518, 0.0142822368, -0.0168021191, -0.0108119501, -0.022722533, 0.00591605483, 0.0173950326, -0.0137852365, 0.019583581, 0.00208936585, -0.000917707861, 0.000130721601, 0.00327628246, -0.00148337334, 0.00953893, 0.00500924606, -0.0149187474, 0.00556292292, -0.00577654596, 0.0176827703, -0.00576346694, -0.00605992367, 0.00677926699, 0.0145438164, 0.0160435382, 0.0105503704, 0.0108555462, -0.0308489352, -0.022356322, -0.0658482611, 0.0155116608, 0.00424194662, 0.0191999301, 0.00708444323, 0.00338091422, -0.00398254674, -0.00285121589, -0.00211225403, 0.0107160378, 0.0180489812, -0.0112130381, -0.0242571328, 0.00483921962, 0.0045122453, 0.00943429861, 0.00780378655, 0.0142909568, -0.00126539054, -0.0156075731, 0.018729087, -0.0112217581, 0.0141078513, 0.0134364637, 0.000710624154, -0.0133492704, -0.011186881, -0.00624738866, -0.0215367079, -0.0143345529, 0.00257655745, 0.000920977618, -0.000898089376, -0.00769043528, 0.00260925479, 0.00133078534, -0.00832694583, -0.0121808825, 0.0231061839, -0.000493458705, 0.0220075492, 0.000570570119, -0.00476946495, -0.00373840611, 0.0297328625, 0.00513567636, 0.000895909558, 0.0105678095, -0.00219399761, 0.00192587858, -0.00562395807, 0.00546265068, -0.011971619, -0.0102015976, 0.0126255676, 0.0051095183, 0.00421796832, -0.0228969194, 0.0133405514, 0.00161634292, -0.00271824631, -0.011186881, -0.00865828, -0.00466047367, -0.00234767538, 0.00819615554, 0.00689697778, 0.00919887703, -0.0088893408, 0.0205775816, 0.0315813571, -0.00237383344, -0.00236075441, 0.0108729852, 0.00961740408, 0.0217285324, 0.00923375413, -0.00340271252, 0.00368827, -0.0076599177, 0.0130004976, -0.0102975108, 0.0177612435, -0.00870187581, 0.00495257089, 0.0166800488, -0.0117361974, 0.00168282771, 0.00876727048, -0.00527954474, 0.0202985648, -0.00690569729, 0.00142015831, 0.020769408, 0.00983538665, -0.0120152151, -0.00821359456, -0.00176893093, -0.0126691638, 0.015189046, 0.00463867513, -0.00713675888, 0.00403050333, 0.00389099424, 0.01436943, -0.0239258, -0.0126691638, -0.00157710607, 0.0205775816, -6.09330236e-05, 0.00264849188, -0.00827463, 0.00651768781, -0.0129569015, 0.021972673, -0.00636945944, 0.000298364059, 0.00331333955, -0.00539289601, -0.0290701948, 0.00316075142, -0.0390625298, 0.0114397407, -0.0125034973, -0.00276838243, -0.019147614, 0.00644357363, 0.00446864869, -0.00935582444, -0.0118582677, 0.0237514134, 0.0266636647, 0.00861904211, -0.0228097271, -0.00511387782, 0.00356837944, 0.00520107104, 0.0130615337, -0.00349862501, 0.00775147043, 0.00280979904, -0.000240734822, 0.00887626223, 0.0141776055, -0.0149361854, -0.0182408057, -0.0257917326, 0.0154942218, -0.0105416514, -0.00417001219, 0.00802612863, 0.00583758112, 0.0117013203, 0.00657436298, -0.0104980543, -0.00136239291, -0.0264369622, -0.000103814338, 0.00987026375, -0.0181012973, -0.00963484216, -0.00266157067, -0.00314985239, -0.0143083949, 0.00775583042, 0.0187116489, 0.000656128395, -0.0172816813, -0.00492205285, -0.018729087, 0.0150844138, 0.0172468051, -0.00995745696, 0.0121372854, -0.0167934, -0.00299072498, -0.0114310216, -0.00672695134, 0.0029296896, 0.0290876329, -0.0152239231, 0.0242745709, 0.0197579674, 0.0129133053, 0.00189645088, -0.0180838592, 0.0203857571, 0.0204903893, -0.00503104459, 0.0041460339, 0.00122724357, 0.00748117175, 0.0162528027, -0.00253950036, -0.0234200787, -0.00294276862, -0.00706700468, 0.0236119032, -0.00391061278, 0.00238473248, 0.0035138838, 0.0283726491, -0.0163574349, 0.00139073073, -0.0162964, -0.00382559933, -0.00738961902, 0.00838362053, 0.00155203801, -0.0103323879, -0.0105067743, -0.000244004565, -0.00957380701, -0.00270952703, 0.0119105838, 0.0164707843, -0.0229841135, -0.00031117053, -0.0051095183, 0.0193045624, 0.0130266557, 0.00476074591, 0.00279454025, -0.00623431, 0.0142299216, -0.00131443667, 0.000111716217, 0.00997489598, 0.00103868835, 0.0189557895, 0.0145699745, 0.0158778727, -0.00935582444, -0.000313077879, 0.00794329587, 0.00616455544, -0.00193241809, 0.0158168375, -0.00375802466, 0.00941686, 0.0141688865, 0.000153405446, -0.0176304542, 0.00736346096, -0.0120239351, -0.00156075729, 0.00364903314, 0.0206647757, 0.00354222162, -0.01157925, 0.00775147043, -0.0165928565, -0.0142996758, -0.00362723484, 0.0187814031, 0.0101492824, 0.00703212712, 0.0153459935, -0.00196729531, 0.0248500463, -0.0216064621, -0.0110735297, 0.0226527788, 0.00921631511, -0.0134800607, -0.00358363823, 0.00526646618, -0.00562831759, -0.0194615107, -0.0113089513, -0.00318690948, -0.0120675312, -0.0196358971, -0.0135323759, 0.00511387782, -0.00320652802, 0.000292641984, -0.00396728795, -0.0113961445, -0.0311279539, 0.0105329324, -0.0182059295, -0.00185721403, 0.00429426227, -0.00123487297, -0.00959996507, -0.0148402732, -0.010349826, -0.00375148514, -0.00816127844, 0.00383213884, 0.00856672693, 0.00688389875, -0.0143519919, -0.0242920108, -0.00936454348, 0.00694929389, -0.00832694583, -0.0110996878, 0.000505175267, 0.00819615554, -0.0217634086, 0.0209089164, 0.00785174314, -0.010803231, -0.0289830025, -0.0208566, -0.0286516678, -0.00200653216, -0.0133231124, -0.0269601215, -0.00501360605, 0.0099312989, 0.00974819344, -0.00464739464, 0.000170026629, -0.01157925, 0.0161917675, 0.0132707972, -0.00644357363, -0.00820051506, -0.00126212079, -0.0130964108, -0.00301034329, -0.0161830485, 0.0108904243, 0.0266462248, -0.000130925953, 0.000204358934, 0.00204903889, -0.0145176584, 0.00125231151, -0.0224260762, -0.0055106068, -0.000328336697, -0.00250026351, -0.00534494, 0.00667899475, -0.00821795408, -0.00190735, -0.00375584466, 0.000352587289, 0.0105590895, -0.0110735297, 0.0049482109, -0.0143432729, -0.0220424272, -0.0128086731, 0.0278146137, -0.00598145, -0.0113002313, 0.00719343452, -0.0032501244, 0.0130528137, -0.0102626337, -0.00617327495, -0.00344194937, -0.00514875539, -0.0119018648, 0.00836182293, -0.00364903314, -0.00912040286, -0.007786348, -0.0072239521, 0.00780378655, 0.00537109794, 0.0108991433, 0.0041896305, -0.011561811, -0.00207192707, 0.00780814607, -0.0233328864, 0.0045471224, 0.0864956, 0.00249372399, 0.0194266327, -0.0185372625, 0.0017351436, -0.0124686202, -0.000173160137, 0.0665109307, -0.0209961087, -4.57423412e-05, -0.0161743294, 0.0048305, 0.0131400069, 0.00360325677, -0.00267900946, -0.0254603978, -0.0213274434, 0.00155639765, 0.0011378706, -0.00324576488, 0.00587245822, -0.0130964108, 0.00808280427, -0.0120762503, -0.00668771425, -0.0126342867, 0.0090593677, -0.00939070154, -0.0102015976, 0.00742013659, -0.00156184717, 0.0100795273, -0.00761196157, -0.00105776184, -0.030325776, -0.00295366789, 0.00868443772, 0.00882830564, 0.0185023863, -0.0182059295, 0.0104980543, -0.0116664432, 0.0374232978, 0.000865392, 0.029541038, -0.00828770828, 0.00108065, -0.00733294338, 0.00116075878, -0.0186244566, 0.00981794856, 0.0027771017, 0.00843593664, -0.0174909458, 0.0184500702, 0.000578199571, -0.00792585686, 0.0125034973, 0.0066266791, 0.00289699226, -0.000963484286, 0.0200544242, 0.000861577282, 0.00138092146, 0.00013930467, -0.00556292292, -0.0246059056, 6.62463572e-05, -0.00998361502, 0.00264631188, -0.00573294936, -0.0170985758, 0.00425066566, 0.00255257939, 0.0138898678, 0.00719343452, -0.00451660482, -0.00746809272, 0.00328936148, 0.0142822368, -0.0141165704, 0.00211552368, -0.00309535675, -0.0140555352, 0.010367265, 0.00222015544, -0.00200326252, -0.0140032191, -0.00693621486, -0.000789098, 0.00131770642, 0.0417480767, -0.0282680187, 0.0336914323, 0.0233328864, 0.0094866138, -0.00665283715, 0.0177002084, 0.0255301539, -0.00122942333, 0.0162179247, 0.0189034734, 0.00632586284, 0.0160435382, -0.013148726, 0.0249546785, -0.0137939556, -0.00347900647, 0.0114223016, 0.00316729094, 0.00372314733, -0.0114048636, 0.0204903893, 0.0148664312, -0.0110386526, -0.00159563462, 0.0351562761, -0.000562940724, 0.0111432839, -0.00867571775, 0.0113089513, 0.0232980084, -0.0202811249, -0.00257437769, -0.00601196755, 0.00250026351, 0.00137111219, 0.00609916076, 0.013183604, -0.0288086161, 0.0130789718, 0.0236119032, 0.0277448595, -0.00472150883, 0.00139073073, 0.00805228669, 0.000632150332, -0.00599016901, -0.00539289601, 0.0228446033, 0.0216762163, -0.0082920678, 0.00234549562, 0.0181187354, -0.0023324166, 0.000905718829, 0.0065438454, -0.00656128442, -0.00459507899, -0.020769408, -0.0186942108, 0.023960676, 0.00756400544, -0.00151934056, 0.0149536245, 0.00972203538, -0.000747136248, 0.00587681821, -0.0100620892, -0.00352042331, 0.00781250559, 0.00319780852, 0.00395420939, -0.0185198244, 0.00109645375, 0.0103149489, 0.0145612555, -0.00281197904, 0.0149623435, 0.0012904586, 0.0164010301, 0.00620815204, -0.00706700468, 0.0114920568, -0.00395856891, -0.00683594262, 0.00757272448, 0.000989642227, 0.0076599177, -0.00599016901, 0.00410025753, 0.000861577282, -0.0151367299, 0.0517229736, 0.00066212297, -0.0245187134, -0.0266636647, -0.00932094734, 0.0117623555, 0.0166277327, -0.00547136972, -0.00227138144, -0.0120500932, -0.0146310097, -0.013148726, -0.00926863123, -0.00836618245, -0.0064653717, -0.0186593328, -0.00586373918, 0.0131225688, 0.012407585, -0.00682722311, 0.010803231, -0.0132010421, 0.0205078274, -0.00014904578, 0.0173339974, 0.00708444323, 0.00497436896, -0.00491769332]
09 Jul, 2024
Steps to Diagnose and Resolve a Slow Network 09 Jul, 2024 With the rapid advancement of technology in today’s world, a sluggish network is equivalent to stopping production, streaming, or communication. Just imagine trying to upload an important document, joining a video chat, or even streaming your favorite program only to realize that it cannot keep up with you. The ability to diagnose and resolve these issues promptly is vital for smooth linkages. The article will take you through the basic steps needed to identify why your network’s speed is low and give suggestions on how you can rectify this so that your internet becomes faster again.What is a Network? A network functions like a digital nervous system, linking devices together for seamless communication and sharing of resources. It serves as a digital infrastructure that enables information flow like a busy highway connecting various endpoints for data interchange and collaboration Essentially, networks are digital fabrics that knit devices into unified entities thereby fostering connections hence making a connected modern world thrive.What is a Slow Network?A slow network is when a network’s performance has been largely reduced which causes delays in the transmission of data leading to ineffective communication and resource sharing. Slow loading times for web pages, buffering during video streaming, slow file downloads and uploads, as well as lag in online gaming or video conferencing, are some examples of slow network symptoms. This can result from several factors like high latency, low bandwidth, network congestion, faulty hardware or software problems. Identifying the root causes through diagnosis followed by resolving it will restore good network performance.Key Terms Associated with NetworkNetwork Latency: Similarly "jitter" is another name given to fluctuations in network delays while it is possible to understand what is being said. For instance, in the case of real-time applications such as online gaming or video conferencing, continuous low latency plays a key role in maintaining a smooth operation.Bandwidth: Envisage "burstable bandwidth" which can handle temporary surges of traffic more than the allocated bandwidth. This allows for accommodating sudden increases in activities taking place on the internet while at the same time maintaining smooth running.Packet Loss: In addition to packet loss, consider the "retransmission rate" as well indicating how many times a lost packet has been retransmitted. High retransmission rates may imply network congestion or defective hardware that requires troubleshooting.Throughput: Besides measuring total throughput, think about "goodput", a measurement of successfully transferred usable data over a network. It excludes retransmitted data and protocol overheads thus giving a clearer picture of efficient data exchange.Ping: To go beyond standard ping tests look into "multi-path ping" where pings from multiple sources are sent via different internet routes at the same time thereby showing diversity of path and possible routing problems.Traceroute: Alongside standard traceroute, consider "reverse traceroute" which starts from the destination and traces the path back to the source. This can reveal asymmetrical routing or unexpected network hops that may affect performance.Steps Used for Diagnosing And Fixing A Slow NetworkStep 1: Recognizing Symptoms of a slow networkTypical signs include slow web browsing, lengthy download times, buffering when streaming. Collect user feedback on symptoms i.e., what they were facing as well as how long it lasted.Step 2: Check HardwareCables and Connections: Ensure all physical connections are secure. Replace any damaged cables.Network Devices: Restart routers, switches, and modems. Firmware updates for these devices can also improve performance.Step 3: Test Your SpeedsFast.com will help you to perform quick internet speed tests matching your ISP’s claims as well as DSLReports.net. For example, if Fast.com shows 100 Mbps but DSLReports.net displays 20 Mbps, you should dig deeper.Step 4: Ping and TraceroutePingPlotter is the best for continuous monitoring with MTR analyzing real-time route performance; a particular network hop has fluctuating response times that facilitate troubleshooting by using MTR.Step 5: Analyze Network TrafficAmong the applications useful in this case include SolarWinds NetFlow Traffic Analyzer which gives detailed information on heavy bandwidth-consuming applications that can be helpful in traffic management. This includes situations where DPI exposes a cloud backup service hogging bandwidth during peak hours.Step 6: Check for InterferenceWi-Spy from MetaGeek helps discover Wi-Fi interference while NetSpot provides access point placement based on signal strength testing. Suppose, you detect a neighbor's Wi-Fi using Wi-Spy on the same channel, what will be your next action - Change Wi-Fi channels to less congested ones via administrator settings on your router.Step 7: Applications that are heavy on bandwidth should be limited.Find and restrict large bandwidth-consuming applications, such as massive file downloads or video streaming.For example: Apply Quality of Service (QoS) controls on your router to prioritize necessary traffic.Step 8: Update Software and FirmwareEnsure that all network-related software like drivers, firmware is up to date. This can solve compatibility problems and increase performance.Step 9: Scan for MalwareTo make sure no malware affects network performance, run a complete system scan using trustworthy antivirus software.Step 10: Speak to Your ISPWhen all else fails, consult your internet service provider about any possible difficulties in their network. They’ll offer line tests and solutions.ConclusionA slow network can be rectified by a systematic approach which involves checking hardware, running diagnostics, analyzing traffic, and possibly working with your ISP. These steps help users comprehend the problem and find ways to improve network performance accordingly if followed precisely.Frequently asked questions(FAQs) related to slow networkWhat could cause my network to be slow even after resetting the router ?Although resetting may resolve short-term issues, it may not address more fundamental ones such as limited bandwidth, interference or technical defects.How can I tell if a problem is due to the local network or the ISP ?At first ping and traceroute are some local tests that we need to perform. For instance, if you continue experiencing issues at the very beginning (local router), it might be local. But if problems are on the way ahead, then maybe it’s an ISP issue.What is significant about high latency and how can it be reduced ?This means that there are delays in data transmission. In this case, routing optimization should be done, wired connections used instead of wireless ones, while avoiding congestion within networks.In what ways does QoS improve network performance ?QoS prioritizes essential network traffic (VoIP, gaming) over less valued traffic thus ensuring smooth running of critical services.Does one have to be technical in order to diagnose network issues ?With little technical skills one can trouble shoot some basic problems but more complex issues may call for professional help. 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!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network
https://www.geeksforgeeks.org/steps-to-diagnose-and-resolve-a-slow-network?ref=asr10
PHP
Steps to Diagnose and Resolve a Slow Network
What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, jQWidgets jqxTreeMap width Property, Difference between Flow and TypeScript, jQWidgets jqxTree destroy() Method, jQWidgets jqxTree collapseAll() Method, jQWidgets jqxScrollView buttonsOffset Property, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, jQWidgets jqxListBox enableHover Property, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxSlider buttonsPosition Property, jQWidgets jqxSlider rtl Property, jQWidgets jqxTooltip opacity Property, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, jQWidgets jqxToolBar height Property, PHP, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, Node.js date-and-time Date.transform() Method, TypeScript Optional Parameters, jQWidgets jqxToolBar theme Property, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, Steps to Diagnose and Resolve a Slow Network, How to use Optional Chaining with Arrays and Functions in TypeScript ?, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, jQWidgets jqxScrollView showButtons Property, jQWidgets jqxScrollView disabled Property, jQWidgets jqxSplitter destroy() Method, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, jQWidgets jqxTree collapseItem() Method, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), jQWidgets jqxSortable opacity Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, jQWidgets jqxSlider height Property, jQWidgets jqxSwitchButton onLabel Property, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, jQWidgets jqxToolBar tools Property, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTree width Property, jQWidgets jqxTree clear() Method, TLS Handshake?, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, jQWidgets jqxTabs position Property, jQWidgets jqxTabs keyboardNavigation Property, Impact of Three-way Handshake and Slow Start Algorithm, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, How to Sort an Array Having Optional Properties in TypeScript ?
GeeksforGeeks
[-0.0301796608, -0.00179699447, -0.00986295566, 0.0111101847, 0.00380117679, 0.0296545122, -0.00261753984, 0.0123574138, 0.0227947515, 0.0297529772, 0.00768440776, -0.0259948801, 0.0448017791, -0.022565, -0.0117420051, 0.00326577085, 0.0114958417, -0.0128579466, 0.0143349282, 0.000955422584, 0.0118076485, -0.0171165783, -0.015992431, -0.0035221912, -0.0366947912, 0.0257158931, 0.0114548141, 0.0267661922, -0.0438171253, 0.0182653405, 0.0329531059, 0.0144333942, -0.00404939149, -0.0338392928, 0.0234183669, -0.0244686641, -0.0330187492, -0.0225157663, -0.017920712, 0.0361368209, -0.00578894792, 0.00307294261, 0.0211700723, -0.00156724174, -0.00923934113, 0.0353162736, -0.0158365276, -0.00141441519, 0.0460818298, -0.0482152514, 0.00706079323, -0.037679445, -0.0110609522, 0.0133420685, 0.0220398512, 0.00429555541, 0.04604901, -0.00577253709, -0.00229547592, -0.0425698981, 0.0431935117, 0.0239106938, -0.022647053, -0.0157708824, 0.0202018283, 0.00188315171, -0.0619347692, 0.0245507192, 0.00183186773, -0.0225321781, -0.075030677, 0.0200705417, -0.0167309213, -0.0127348648, 0.0202182401, -0.0294083487, 0.0183145739, 0.0349224135, 0.00790185295, -0.00142980041, -0.00846802909, 0.0166816879, 0.00152621453, -0.0166160446, 0.00881265756, -0.0237137638, -0.0183309857, -0.067612946, 0.0675473, 0.0334618427, 0.0144251883, 6.79514196e-05, 0.0227783415, -0.0105522145, -0.00295191212, -0.00158878113, 0.0156149799, 0.00971525814, -0.0257979482, 0.0418478176, 0.00877163094, -0.0232050251, -0.00708541, -0.00573151, 0.0025231773, -0.0119225252, -0.0221054945, 0.00390374498, 0.0291950069, 0.0701730475, 0.0316074118, -0.0418149941, 0.0148108453, -0.00294165546, 0.00928036869, -0.00196315488, 0.000727721257, -0.0651841313, -0.036530681, 0.0377450883, -0.0044022263, 0.0124066472, -0.0336751863, 0.0491670817, -0.0539590679, 0.0593090244, 0.00124620332, 0.0117830327, 0.00103645143, -0.0514317863, 0.0136538763, 0.0135472054, -0.0200048983, -0.00922293, 0.00810288638, -0.0224173013, 0.0210223738, 0.0280462429, 0.0322966687, -0.0564863458, 0.00265241321, -0.0245178975, -0.0158857591, -0.0128825633, -0.0182653405, 0.041421134, -0.0106260637, 0.0289324317, -0.0451628193, 0.0443750955, -0.0572412498, -0.0211864822, 0.00354680768, 0.0324936, 0.000866701128, -0.0291950069, 0.0103716943, 0.00864854921, -0.0388938524, 0.0185607374, -0.0166078396, -0.0370886549, 0.00339500676, -0.0376466252, 0.0326905288, -0.00348321535, 0.00823007058, -0.0116517451, -0.0561909527, 0.0424714312, -0.00885368511, 0.0216952208, -0.0289160218, 0.0421432145, -0.0185115058, -0.00966602564, -0.00676539727, 0.0307048094, 0.00240009534, -2.22364611e-06, -0.0368589, -0.0323459022, -0.0363337509, -0.00494788913, 0.0509394594, 0.0098055182, 0.0161073077, 0.0113317324, -0.0266020838, -0.00894394517, -0.0305571128, 0.00033206449, 0.0463115834, 0.0324279554, -0.00155801058, -0.019660268, -0.0225157663, 0.0193812829, 0.000181289259, -0.0375481583, -0.0312463697, 0.030639166, -0.00738901179, 0.011175829, 0.0589479841, -0.0184458606, 0.0230737384, -0.0016544247, 0.0110199256, 0.0151882963, -0.0549765453, 0.0183473956, 0.021974206, 0.00389143662, -0.00157237018, -0.00849264488, -0.021974206, 0.00263189944, -0.0357101373, 0.000575407466, -0.000704130565, 0.0015918581, 0.0144744217, 0.0168047696, -0.0361696444, -0.0634117499, 0.0637727901, -0.0382045954, 0.00860752165, 0.00933780707, -0.0261918101, 0.0131615484, 0.00964140892, -0.0144744217, -0.0448346026, -0.00288626854, -0.0192171745, 0.0423729643, -0.0514646098, -0.0109050488, 0.00713054, -0.00422580913, -0.0463444069, -0.0301468391, 0.00326166814, -0.04604901, 0.00462377351, 0.0592105575, 0.00844341237, 0.0145072434, -0.0164765529, -0.0181996971, 0.0473618805, 0.00869778171, -0.0233527236, -0.00894394517, -0.0251251012, -0.0287519116, 0.00823007058, 0.011758416, 0.0130959051, -0.0164683461, -0.0280298311, 0.0139410673, -0.00250881771, 0.00640025456, 0.00861572661, 0.0355460271, 0.0303930026, -0.00903420523, 0.0369245447, -0.0237465855, -0.00572330458, -0.0181340538, -0.00328423316, -0.0495609455, -0.0184458606, -0.0100270649, 0.0335438959, 0.01146302, 0.0130876992, -0.04604901, -0.00459505431, 0.0383358821, -0.0179371238, -0.0286862683, -0.00462787645, -0.00790185295, -0.0325100087, 0.0219577961, -0.0292934719, 0.0174940284, 0.0171001665, 0.00279395725, 0.0349224135, 0.0271272324, -0.0176745486, 0.0157134458, -0.0151554737, -0.000236163236, 0.0156313907, 0.016082691, 0.00917369779, -0.00903420523, -0.0457864366, 0.00625665905, -0.0145400651, 0.0191515312, 0.000979013275, -0.00652333628, 0.0437514819, -0.0265200287, -0.0273898058, -0.0677442327, 0.00525969639, 0.013776958, 0.0238450505, -0.0192828178, -0.0118897036, -0.0368260778, 0.0309837963, 0.0023508626, -0.0304586459, 0.0634445697, 0.016090896, -0.0201690067, 0.00229752716, 0.0742429495, -0.0252563879, 0.00334577402, -0.00771723, 0.0184130389, -0.0284401048, 0.0163534712, 0.0194797479, -0.0370230116, -0.022647053, 0.0493968353, 0.0117091835, 0.0616721958, -0.00664231507, -0.0270451773, 0.0147205852, -0.0107491454, -0.0128333308, 0.0209239088, -0.0322802588, 0.0175104402, 0.0159103759, -0.0284893382, 0.00170365744, -0.00171494, 0.0262246318, 0.0459177233, 0.0257979482, -0.015024187, -0.0204479918, 0.0157298557, -0.00505045708, 0.0256994832, 0.0482808948, -0.0577335767, -0.0334946662, 0.0191679411, -0.0296545122, 0.00417042198, -0.00712233456, -0.0500860922, -0.0094773, 0.0111348014, -0.00634281617, 0.0317551084, 0.0122589488, 0.0292770602, -0.0620660558, -0.00486993697, 0.0343644433, -0.00886189099, -0.0215311125, 0.00592023507, -0.012423058, 0.00594485179, 0.0428324714, 0.0388938524, -0.000799518952, 0.00243291724, -0.00388733391, -0.00302165863, 0.00341346906, 0.0290801302, -0.0386969224, 0.0269467123, -0.00254163938, 0.0028370358, 0.00782800373, 0.00830802228, -0.0151554737, -0.0113153215, 0.031213548, -0.0202018283, -0.0105193928, 0.0143677508, -0.00387297454, -0.0127102491, -0.0350208804, 0.0381389521, 0.00815211888, -0.0460161865, -0.0116271283, -0.0281611197, 0.000203854259, -0.0205792803, 0.00567407161, 0.000609767798, 0.0133420685, 0.0651184842, -0.0125789614, 0.0128825633, 0.0248953477, -0.0245835409, 0.00178160926, 0.011274294, 0.0184622724, -0.00186776649, -0.00566586619, 0.0236481186, 0.00132312952, -0.00221547275, 0.0473290607, 0.0128169199, -0.00861572661, -0.0375481583, 0.0197915565, -0.00110671064, 0.0206285119, -0.0528103039, 0.050676886, 0.0155657465, -0.0255846065, 0.0141544091, -0.0181832872, -0.0457864366, 0.0122425379, -0.0283744615, -0.0348239467, -0.0163944978, -0.0506440625, -0.0271108206, -0.00374989258, -0.0330023356, -0.0390579626, 0.0361039974, -0.0129564125, 0.0195782147, 0.0114384033, -0.0277180243, -0.0285221599, -0.0324279554, 0.029966319, 0.0140149156, 0.0277836677, 0.0299991407, -0.00238983869, -0.0157298557, 0.00549765443, 0.00391400186, -0.015606774, -0.0283908714, 0.000150647014, 0.0164683461, 0.0214490574, -0.0448674224, 0.0573068932, 0.0329859257, 0.0359398909, -0.0103634885, -0.00929677952, -0.0274226274, -0.00142774906, -0.0742429495, 0.0132600144, 0.0817919672, -0.0148928994, -0.0277344361, -0.0202510618, 0.0268482473, 0.000425145088, -0.00464838976, -0.00709361536, -0.0258635916, -0.0114794308, 0.015319583, -0.0337408297, -0.0113645541, -0.0171986315, -0.022351658, -0.0153442, 0.0133584794, -0.0270451773, 0.00770492153, -0.0234347768, 0.00454582181, -0.0104865702, 0.0486747548, -0.018971011, 0.00527610723, -0.00594895426, 0.0598998182, 7.49388782e-05, -0.0417821743, 0.000423350168, -0.000325910398, 0.000957986806, 0.0325428322, 0.00625665905, 0.0281775296, -0.0271272324, 0.0261753984, 0.0186592024, 0.0224993564, 0.000215393171, 0.0120784286, -0.0123738255, -0.000684129773, -0.0147534069, -0.00442274, -0.00748337433, 0.0176253151, -0.0285057481, -0.00327807898, -0.0170837566, -3.496934e-05, 0.00706899911, -0.0117009776, -0.0583571903, -0.0272421092, -0.00347911264, 0.0340690464, -0.0340690464, -0.0299991407, -0.0137195196, 0.00139903, -0.0306884, 0.00747927139, -0.000491301587, 0.0287683234, -0.00210469915, -0.00398579938, 0.0287519116, -0.0217936859, 0.0152047072, 0.0150488028, 0.0141297923, 0.0108476104, -0.0158775542, -0.00135902839, 0.0229752716, -0.0099121891, -0.00753260683, 0.00304422365, -0.0283088181, 0.0342988, 0.00470582815, 0.00295601483, -0.0164109077, -0.00621973444, -0.0164847579, 0.0107655562, -0.0155821573, 0.0217116326, -0.0059817764, -0.0134979719, -0.012619989, -0.0150734195, 0.00976449065, -0.00507507334, 0.0321653821, -0.0285057481, 0.0081234, 0.00881265756, 0.0100762974, -0.0109460764, -0.00132620661, 0.022253193, 0.000313602213, -0.00141031248, 0.0197751448, -0.00207905704, 0.00348526682, 0.00576433167, 0.00188725453, 0.0175432619, 0.00367399212, 0.0135472054, 0.00717156706, 0.000617973274, 0.0129892342, -0.000781569513, -0.00825879, -0.00658487715, 0.017822247, 0.0259784684, 0.0126364, -0.0147205852, 0.00858290493, 0.00675719185, -0.0108476104, 0.015705239, -0.0182817522, 0.0064658979, 0.00266677258, 0.000801570306, 0.0404693, -0.00167288701, 0.0187084358, -0.0250266362, 0.000465915946, -0.0190530643, -0.0107819671, 0.0082834065, 0.03449573, -0.00127902522, -0.0022729109, -0.000499507, 0.0051530255, 0.0266677272, 0.000466428784, -0.0200541299, -0.00631409697, -0.0437514819, -0.00841879658, -0.00866496, -0.0198900215, -0.0190038327, -0.0249281693, -0.00865675416, -0.0335438959, -0.00566586619, -0.0110855689, -0.00520636095, -0.027176464, 0.0249609929, -0.015319583, 0.137457773, -0.00507507334, 0.0359070674, -0.00384630682, 0.0321325585, 0.0254040863, 0.0160744842, -0.00284524122, 0.0382045954, 0.00169442629, 0.0297857989, -0.00599408429, -0.0146877635, 0.0120127853, -0.0152457338, 0.00622383691, 0.0389594957, 0.000901061459, -0.00158878113, 0.0233855452, 0.0190694761, -0.00541970273, -0.0165011678, 0.0116107175, 0.00899317767, -0.00434068544, 0.0395174697, -0.0139985047, -0.00063643558, 0.00366783817, 0.043456085, -0.00891932845, -0.0242389124, -0.00114671222, 0.0309509728, 0.00855828915, -0.0272421092, -0.0281118862, -0.0156478, 0.00855008326, 0.0249281693, -0.000284370268, 0.00688847899, -0.0354147404, -0.013005645, 0.00456223264, -0.0118897036, -0.0215967558, 0.00473454734, 0.0116107175, -0.0148600778, 0.0272421092, -0.00274472451, 0.00589561881, -0.0223352462, -0.0073602926, -0.0203659385, -0.0101911742, 0.00917369779, 0.0243209675, 0.0113645541, -0.0160416625, 0.0375481583, 0.00460736267, -0.00371501944, -0.0239435155, -0.0196766797, 0.00436530169, -0.00756953144, -0.0255846065, 0.0241568573, 0.0350208804, 0.0163698811, -0.00306063448, -0.0113399383, -0.00785672292, -0.0135718212, -0.00834905, -0.00343603408, 0.00473454734, -0.0335931294, -0.00973166898, 0.00795518793, 0.0153524047, 0.0388610326, -0.0425698981, -0.013202576, 0.0250594579, -0.0199228432, 0.016090896, -0.00384015264, 0.00863213837, 0.00319602457, 0.0222367812, 0.00908343773, 0.00474685524, 0.0138261905, 0.00956756, -0.0152949672, -0.00582997547, 0.0180355888, 0.0072823409, -0.0196766797, 0.011758416, 0.0192007627, 0.00666693179, -0.0156724174, -0.0178386569, -0.00684334897, 0.00177237811, -0.0275867376, -0.0249445811, 0.00257241, 0.00791416, 0.00798801, 0.00134774589, 0.0100845033, 0.00641666539, 0.0407646969, 0.00771723, -0.00305242906, 0.0205792803, -0.0194797479, -0.0470993072, 0.0110937739, 0.0161647443, -0.0162960328, -0.00732336799, 0.0214162357, 0.00919010863, -0.0203823484, -0.00491506699, -0.00798801, 0.0278329011, 0.00548534608, 0.00523507968, 0.000863624038, -0.0103306668, 0.0197915565, -0.00831622817, 0.0309673846, 0.00475506065, -0.0113317324, 0.0205628686, 8.41700094e-05, 0.000844136113, 0.0332320891, -7.85928642e-05, 0.0417821743, 0.0195782147, 0.0130876992, 0.0136128487, -0.000706694729, -0.0201854184, -0.00931319, -0.022253193, 0.00151493202, 0.0104537485, -0.0255846065, -0.00561253075, 0.000615409052, -0.0303109474, -0.0441781655, -0.0202674717, -0.0597685277, -0.0456879698, -0.00480019068, 0.0160088409, 0.0167063046, -0.0259948801, 0.0188069, 0.00345039344, 0.0111594182, 0.0128907692, -0.0111183906, -0.0204808135, 0.0189546, -0.022253193, -0.00603511184, 0.0110937739, -0.0377450883, -0.0143267233, 0.0115532801, 0.0176745486, 0.00832853653, 0.0364322178, 0.0363665745, -0.0153113781, -0.00210675038, -0.0286534466, 0.0317715183, -0.0215967558, 0.00027488271, -0.00329859252, 0.0076721, -0.00438991794, 0.00276728952, 0.0167473331, -0.00190571672, 0.00794288, 0.0212028939, -0.0166406613, 0.00940345, -0.0119389361, -0.0130384667, 0.0240419805, 0.00849264488, -0.00796339381, -0.00715105329, -0.0108968429, -0.00074413215, 0.0127512757, 0.014745201, -0.00616639899, 0.0386641026, 0.00829571392, -0.0186756141, -0.00876342505, 0.00172314537, -0.0286042131, -0.0123081813, 0.00209136517, -0.0190366544, -0.00103388727, -0.0116763618, -0.00279395725, -0.0306227561, -0.0154098431, -0.0385656357, 0.0119717577, 0.0161647443, -0.0123492088, -0.00403092941, 0.0169032365, 0.00907523278, 0.0233527236, -0.0192007627, 0.0379420221, 0.019463338, -0.0287519116, 0.0143021066, -0.00626896694, -0.027750846, -0.0187904909, -0.00978090148, 0.00734798424, -0.0350865237, 0.00731105963, -0.0101665575, -0.0426027179, -0.00864034332, -0.0257487148, 0.0198572, -0.0274718609, 0.00329654128, 0.0155985691, -0.00487404, -0.0047304444, -0.0131369326, -0.0224337112, -0.0188561343, 0.0443750955, -0.0167965647, 0.00285960082, -0.00525969639, -0.0138179846, -0.0127594816, -0.0266184937, 0.00416016532, -0.00437350711, -0.00354475621, 0.0238122288, 0.0314104781, -0.000143723664, -0.00556329824, 0.0137933688, 0.000845674658, -0.021383414, -0.00939524546, -0.00430376083, 0.0120538129, -0.022253193, 0.00491917, -0.00997783244, -0.0108312, -0.00228521903, 0.0122835655, 0.000162185926, 0.0104127219, 0.0131123159, -0.00777466781, -0.0192335844, 0.0115368692, -0.0145810926, 0.021974206, -0.035841424, -0.0110035138, 0.00273036491, 0.0163862929, -0.00323705166, 0.00811929721, -0.00769261364, 0.00212521269, 0.0172150433, 0.0188233126, -0.0199556649, -0.000996962655, -0.00421350077, -0.00909984857, 0.0198079664, -0.0195946246, 0.0146959685, -0.0451956429, -0.0327397622, -0.0331500359, -0.010601447, 0.00759004522, 0.0289652534, 0.00521456636, -0.00510789547, -0.00338064716, -0.0221383162, 0.02870268, -0.0247476511, -0.0291950069, -0.0159103759, 0.00238983869, 0.00506686792, -0.0027549814, 0.00983013399, 0.0182817522, -0.00468531437, -0.00210675038, 0.0114548141, -0.035841424, 0.0236317087, 0.00332936319, 0.00780749, -0.00544021605, -0.0110117197, 0.00230368134, 0.0296052787, -0.057339713, -0.00873060338, -0.0237465855, -0.00417862739, 0.00656436337, -0.00657256879, 0.0166816879, -0.00459095184, 0.0111265965, -0.0193812829, 0.025239978, 0.01734633, 0.00726182712, -0.0114301983, -0.0245999526, -0.026487207, -0.00544021605, -0.00506276544, 0.0487404, 0.0311479047, 0.0329202823, 0.00896856189, -0.0242717341, 0.004480178, -0.0047591636, -0.0317879282, -0.03488959, -0.0203987602, 0.00626896694, 0.00347911264, 0.00299499091, -0.0214162357, 0.00315704849, -0.0139574781, -0.031689465, -0.0135554103, -0.022253193, -0.000504891854, -0.0256666616, 0.0304914676, 0.0175432619, -0.0304914676, 0.00647000084, -0.00437761, 0.0129235908, -0.00334782526, 0.0133995069, -0.00260933442, -0.0203659385, -0.0105358036, -0.0134241236, 0.0121768946, -0.0747024566, -0.00753260683, 0.00113542972, 0.0226962864, -0.0263559185, 0.0145810926, 0.037285585, -0.0186427925, -0.0347583033, -0.0275046825, 0.00875522, -0.0135554103, -0.00369245443, -0.00375194405, -0.0205136351, 0.00274267304, 0.00581766712, 0.00160211499, 0.0149667487, 0.00589972176, -0.0112250615, 0.04027237, -0.00364117045, -0.0145975035, -0.0267497804, 0.00201751618, -0.00340936636, -0.016566813, 0.0190530643, 0.0147780236, -0.0128415357, -0.0075038881, -0.00246984186, -0.000271805678, -0.00046617238, 0.0113153215, -0.03488959, -0.00694591692, 0.00827930309, -0.0159678143, -0.0302453041, -0.0143185174, 0.00118363684, -0.00745055266, -0.0142528741, 0.0283908714, -0.00445145881, 0.00726182712, -0.0141133815, 0.0148190502, -0.0100352708, 0.0017313509, -0.0340690464, -0.0148682836, 0.00608434435, 0.00157442153, -0.00994501077, 0.00315499725, -0.00114876358, 0.00859931577, 0.0942642614, -0.0200541299, 0.00727823796, -0.0213013589, -0.00797570124, -0.00759414816, -0.0108476104, 0.0196766797, 0.0198243782, -0.000850290176, 0.00874701422, 0.00764748361, -0.0112496782, -0.000220393369, -0.013104111, -0.0104291327, -0.0269303, 0.00788133871, 0.0165586062, 0.0216295775, -0.0120702237, 0.00469762273, 0.0134733561, -0.00576022873, 0.0153442, -6.47141133e-05, 0.017723782, -0.0119061144, -0.0296873339, -0.0059653651, 0.037679445, 0.00789775, 0.0036657867, 0.0257323049, 0.0200048983, 0.043259155, -0.0114384033, 0.00785672292, 0.00692130066, 0.0217116326, -0.00216624, -0.0328218155, -0.0017313509, 0.00674488349, -0.00152108609, -0.0215147, -0.0136620812, -0.00313448347, -0.0174612068, 0.0222696029, -0.00229957863, 0.000725669845, -0.00331090088, -0.00948550552, -0.0116681559, 0.0221711379, 0.0361039974, -0.00332115754, 0.0368917212, -0.0203002933, 0.0199884865, -0.0109214596, -0.00791826379, 0.00808237214, 0.00494378619, 0.00733567635, -0.0215311125, 0.00404528901, -0.0180684105, -0.00461146515, -0.0101747634, 0.0128743574, -0.0113645541, 0.0151718855, -0.0203167051, 0.00472223898, -0.00408016238, -0.0101829693, -0.00342577719, -0.0123492088, -0.0217116326, 0.0283908714, -0.0139000397, 0.00760235358, -0.0022544486, -0.0237629954, 0.00359809166, -0.0054812436, 0.00376630342, 0.00359809166, 0.00832033064, -0.0179535337, -0.0160991009, 0.00261959131, 4.90404091e-05, -0.0422088578, 0.0116107175, 0.00344629074, 0.00561253075, -0.00566586619, -0.00499712164, 0.00259497482, -0.00562073616, -0.00998603832, -0.00544842146, 0.00644948706, -0.00104311842, 0.0100516817, -0.00837366655, -0.00730285421, 0.011266089, 0.0154754864, 0.00637974078, 0.0138918338, 0.00252728, -0.0133830961, 0.0096167922, -0.0087223975, 0.00119184225, 0.0176745486, -0.0198572, 0.0212521274, -0.00129748741, -0.0176417269, 0.00220111315, -0.0166160446, -0.00736439507, 0.0091162594, 0.00882906839, 0.0109214596, -0.0168047696, 0.0427668281, -0.0200705417, 0.00157544727, -0.0234019551, 0.000482583273, -0.0165339913, 0.027455451, -0.00338064716, 0.000408734195, -8.61572698e-05, 0.00707720453, -0.00658897962, -0.00697053364, -0.014064149, 0.00614178274, -0.00965782, -0.0059653651, 0.00829981733, 0.0115368692, -0.00964961387, -0.0248953477, 0.0132764252, -0.00937062874, 0.0158529375, 0.0137605472, 0.00360424584, 0.00295191212, -0.00270574866, 0.0192007627, 0.0218100976, 0.0210880172, 0.0188561343, -0.014736996, 0.0150980363, -0.0323294885, 0.0159678143, -0.00612947438, 0.000750799081, -0.00798801, -0.0321489684, 0.00598998182, -0.00120415038, -0.000194366701, 0.010502982, 0.00188417744, 0.0329859257, 0.0107163237, 0.0175104402, -0.00115799473, -0.0146631468, -0.000461813237, 0.0113809649, 0.0203002933, 0.00488634827, 0.0202510618, -0.0249774028, -0.00832443312, 0.011274294, 0.0236809403, -0.012045607, 0.0120291961, 0.0216952208, -0.0279970095, 0.0345613733, 0.0185771491, -0.00200623367, 0.016287826, -0.000822596776, 0.00592023507, 0.00249856082, -0.00564535242, -0.0129892342, 0.0116107175, 0.00848444, -0.00995321572, -0.0139656831, -0.00923113618, 0.00813570805, -0.00503814872, 0.00698694447, 0.0147780236, -0.0166898947, 0.00249650958, -0.0157134458, -0.00224214047, -0.00243496848, -0.0271928757, -0.00882086344, -0.00122158707, -0.000867726805, -0.00187289494, -0.00212726393, -0.00594074884, -0.000901574269, -0.0120374011, 0.0194141045, 0.0185771491, 0.012045607, 0.00300935027, 0.00121543289, 0.0408303402, 0.00401862105, 0.00755312061, 0.0115532801, -0.0161401294, 0.0242060907, -0.0225321781, -0.0239927489, 0.00282267621, 0.0183802173, 0.0191843528, -0.00664641801, 0.0197095014, -0.00909164362, 0.000136415678, -0.0100106541, -0.00820135139, -0.0194305163, 0.0270123556, -0.00919831451, -0.00689668441, 0.0102814343, 0.00413349783, -0.00172929955, -0.0186263807, -0.00291088503, 0.0134651503, -0.0117912376, -0.021284949, 0.0260605235, 0.00772953779, -0.0203167051, 0.00221137, -0.0102239959, 0.016090896, -0.00813981052, 0.0112825, 0.0152785564, 0.0094116563, -0.00495609455, 0.0148272561, 0.00509969, 0.0174612068, 0.00080362166, -0.00587100256, -0.000811314269, -0.00464838976, -0.0383687057, -0.00617460441, 0.00661769882, 0.0070320745, 0.00683924602, -0.00809878297, -0.0136210546, -0.00028693449, -0.0144087775, -0.016181156, -0.00370271131, -0.00537457271, 0.00723310793, -0.0105522145, 0.0365635045, -0.00454171887, 0.00155801058, 0.0225814097, 0.030343771, -0.00500532705, -0.00391195, 0.00110260793, -0.00288421731, 0.0244686641, -0.00196110364, 0.00342372572, -0.00268728635, -0.0201197732, -0.00149749545, 0.0189381894, 0.00574381789, 0.00459505431, 0.0210551955, -0.0258471817, -0.00713464245, -0.00192007632, -0.00781159243, 0.0132271927, 0.0323951319, 0.0101255309, 0.0202674717, 0.00240214681, -0.00694181444, -0.00754491519, 0.0188069, 0.00988757238, -0.00948550552, 0.000587715651, -0.0223352462, -0.0332977325, -0.00808237214, 0.00821366, 0.000853367266, -0.0100927092, -0.0258307699, -0.0116599509, -0.00922293, -0.00499712164, 0.00475506065, 0.00567407161, 0.00229752716, 0.0133256577, -0.0377450883, -0.00581766712, 0.00383810117, 0.00414375449, 0.00385040953, -0.0268318355, 0.021974206, 0.00680642435, 0.000749773404, 0.020907497, -0.0129810283, 0.0113153215, -0.00249856082, -0.00541149732, 0.010601447, 0.0213013589, 0.0128907692, 0.0155739523, -0.0102650234, -0.0210387856, -0.00214162352, 0.0205136351, 0.00378886843, -0.0275703259, -0.0127102491, -0.00201649033, 0.0209239088, -0.00999424327, 0.0352834538, 0.0342988, -0.00312832952, -0.0244522542, 0.00459915726, -0.0236152969, -0.0115286633, 0.0180684105, 0.0262574535, 0.0267661922, 0.00404118607, -0.00602280349, -0.00987936743, -0.0364322178, 0.0136620812, -0.0161073077, -0.0262574535, 0.021383414, -0.00350783183, 0.0154508706, 0.0392220728, -0.0262738653, -0.00861572661, -0.00773364073, 0.0235660654, 0.0257323049, -0.0128333308, 0.0150570087, -0.00981372315, -0.00727823796, -0.00445556175, 0.00363911898, -0.00144313427, 0.032378722, -0.0239271056, 0.00849264488, 0.0104291327, -0.0234019551, -0.00403092941, -0.0408303402, 0.020333115, -0.0118076485, 0.00362065667, -0.00983834, -0.0194797479, -0.0427996479, 0.0110445414, 0.0413226672, 0.0224008895, 0.0221875478, -0.000491814397, 0.00639204914, 0.00258882088, -0.0106506795, -0.000442325283, -0.0111265965, -0.00457043806, -0.0119963745, 0.0193484612, -0.00520636095, -0.00637974078, -0.0315745883, -0.0153113781, -0.00615819357, 0.0234019551, -0.0100516817, -0.0125133181, 0.000869265292, 0.013104111, -0.00965782, 0.0164027028, -0.00238778722, 0.0113153215, 0.000497199246, -0.0382702388, -0.00402887817, -0.0142200524, -0.018298164, 0.0221219044, 0.0350865237, -0.00557150366, -0.00622383691, 0.0190366544, 0.0106588854, 0.00163391104, -0.0153442, -0.0191843528, -0.00671206182, 0.00383194722, -0.00923934113, 0.00235906802, 0.00850905571, -0.0296709221, -0.00272421073, -0.0267990138, 0.022351658, 0.0198736098, -0.0284893382, -0.00109645387, -0.0143923666, 0.00131287274, 0.011947141, 0.000324884721, -0.00326782209, 0.0042299116, 0.0118979085, 0.00674078055, -0.0122261271, -0.00815211888, -0.00639615161, 0.0223188363, 0.00532533973, 0.000532841717, 0.0258635916, 0.0038237418, 0.0178550687, 0.0249445811, 0.0636086836, -0.00171494, 0.0110937739, 0.013678492, 0.0213670023, 0.0290308967, -0.0089111235, -0.0200869516, 0.00636743242, -0.00639615161, 0.0183145739, -0.00803724211, 0.000530277495, 0.000541047135, -0.00805365387, -0.00509558711, 0.0099614216, 0.0142692849, 0.0102732284, 0.008332639, 0.00804955047, -0.0161565393, 0.00441863714, 0.00990398321, -0.00683924602, -0.0196438581, -0.0042586308, 0.00887009595, 0.0144908326, 0.00971525814, -0.00484121824, 0.00679821894, 0.00551816821, 0.0165339913, 0.0009395245, 0.014745201, -0.0103963111, -0.0222203694, -0.0156888291, -0.00544021605, 0.0109624872, -0.00801262632, 0.0316566415, 0.019660268, 0.00873060338, 0.0166406613, 0.0107655562, -0.01146302, -0.0098055182, -0.00496840244, -0.00442684256, -0.00599408429, 0.00837366655, 0.0107327346, 0.0188561343, -0.00269754301, -0.0110527473, -0.0169196464, -0.0177073702, -0.0152129121, 0.00132312952, -0.00454582181, 0.00733567635, -0.00869778171, 0.00416221656, 0.00449248636, -0.0123245921, 0.0184130389, -0.0139410673, 0.017444795, 0.00951832719, -0.00741362805, -0.000587715651, -0.0153606106, 0.0112250615, 0.0189874209, -0.0154672815, -0.000242830167, -0.00414170325, 0.0012308181, 0.00637153536, -0.00247394457, -0.0100024492, 0.00915728696, -0.0130220558, -0.00478788279, 0.0203002933, 0.015516514, 0.00939524546, 0.018971011, 0.0273405742, 0.00569868786, -0.00350372889, 0.0128579466, 0.00192828174, -0.00520636095, -0.00648230873, -0.0184458606, -0.0169688798, 0.0115696909, -0.0190202426, 0.0232870802, 0.0153359938, 0.000893368851, 0.00451299967, 0.0138426013, 0.0128661525, -0.0109296655, 0.00658077421, -0.00172622246, -0.0164601412, -0.0182489306, 0.00601459807, 0.0324115455, 0.0144826267, -0.00998603832, -0.030540701, 0.0103634885, -0.0120127853, -0.00769261364, -0.0333633758, 0.0188069, 0.000660026213, -0.00075490179, -0.00200931053, 0.000111542897, 0.0159103759, -0.001650322, -0.00259702629, -0.0120209903, -0.00745465513, 0.0156560075, 0.0154754864, 0.021284949, 0.00244932808, -0.00531303184, -0.0111512123, -0.0043242746, -0.0116189234, 0.00085593143, -0.00274677575, 0.00476326607, -0.0168047696, 0.014548271, -0.00138364476, 0.00667513721, -6.37445191e-06, 0.0112004448, -0.0130138509, -0.000986705883, -0.000467710895, -0.0212521274, -0.014449805, 0.00690078689, 0.00475506065, 0.0150159812, 0.0043078633, 0.00681873271, -0.00179699447, -0.0074095251, -0.00333141442, 2.02892679e-05, -0.00770081906, -0.00939524546, -0.00653564418, 0.0249281693, -0.0041663195, 0.0194305163, 0.00499301916, -0.0054525244, -0.00611306354, -0.00763107231, 0.00084516179, 0.0107819671, 0.0025826667, 0.0107081179, 0.015606774, 0.0114958417, 0.0304914676, 0.0129400017, -0.00855008326, 0.0352506302, 0.02601129, -0.0173955634, -0.00551816821, -0.00332320901, -0.0114466092, -0.0211208388, 0.00987116154, -0.0241076257, 0.026487207, 0.00800852384, -0.0134241236, -0.00882906839, 0.00934601203, -0.00658487715, -0.0118979085, -0.00408426486, -0.0190366544, 0.00451299967, -0.0192828178, -0.0072536217, -0.00990398321, 0.0117009776, -0.0104701594, 0.000646179542, -0.0132353976, 0.00347501, 0.0119061144, 0.0146713527, -0.0394518226, -0.00869778171, 0.0173299201, 0.00368424901, -0.0195289813, 0.0395502895, 0.00942806713, 0.0136949029, -0.00742183346, 0.00624024821, -0.00103952852, -0.0241404474, 0.0111676231, 0.0265036169, 0.0197587349, -0.00167801545, -0.00346065033, 0.00820135139, 0.00784031115, -0.00281447079, -0.0256174281, -0.00586689962, 0.0109460764, 0.0144744217, 0.0172150433, -0.00616229605, 0.0274718609, 0.01290718, 0.00557970908, -0.00488224532, -0.0115122525, -0.0049643, -0.0125215231, 0.0214654692, -0.0207433887, -0.0269467123, 0.0266841371, 0.00880445261, -0.0224665347, -2.44400744e-05, -0.00845161825, 0.00498481328, 0.00574792083, -0.00909984857, 0.0154508706, -0.00821366, 0.00864854921, 0.0144662159, 0.0131369326, -0.00679001352, 0.011077363, 0.0345613733, 0.0067038564, -0.0096167922, 0.0164355244, -0.00654795254, -0.00523507968, 0.0176253151, 0.00718387542, 0.00838187151, -0.0129810283, -0.00279806, 0.0280790646, 0.000233983665, 0.00471403357, -0.0128661525, -0.00451299967, -0.0185771491, 0.00222367817, -0.0129482066, -0.0240748022, -0.0116189234, -0.00666693179, 0.0172150433, 0.0167555381, 0.00288011436, 0.010601447, 0.0114712249, 0.00457043806, 0.00132415514, -0.00443504797, -0.00393656688, -0.00323910313, -0.017444795, 0.0136128487, -0.010699912, -0.0150898304, -0.000306935282, 0.00261138589, 0.00983834, -0.0282595847, -0.0152129121, 0.017050935, 0.0143431341, -0.00679821894, 0.00672436971, -0.00414170325, 0.00673257513, 0.00773364073, 0.00609665271, 0.00629358366, -0.00679821894, 0.00836546067, -0.0122015104, -0.00565355783, -0.0186263807, -0.00700335531, -0.018019177, 0.00303396676, 0.00215393165, -0.0182817522, 0.017723782, 0.00300729903, 0.00976449065, -0.00267908094, -0.0109953089, -0.000777979614, -0.00503814872, 0.00356732123, -0.0298842639, 0.0147780236, 0.0249938145, 0.00735618966, 0.000589254196, -0.0392548926, 0.0211536605, -0.0230080932, 0.00945268292, -0.00708130701, -0.0135718212, -0.011561485, -0.0149913654, -0.0113645541, -0.0122753596, -0.00426273374, -0.00901779439, -0.0133666852, -0.0285385698, -0.0128169199, 0.0180027671, -0.000915933866, -0.000771312683, -0.00606793351, 0.0194305163, 0.0276195593, 0.00221752399, 0.00875522, -0.0121276611, -0.00325961667, 0.0102486126, 0.0190366544, 0.0143185174, 0.00762697, -0.00456223264, -0.00791416, 0.0265856721, 0.0010718375, 0.00499301916, -0.00149749545, 0.00587920798, -0.0116763618, -0.00892753433, -0.0319192186, -0.00647410331, 0.0137031088, 0.00916549284, 0.00850085076, 0.0158119109, -0.00587100256, -0.00909984857, -0.0147616128, 0.0199720766, -0.00634281617, -0.0146959685, 0.0188561343, -0.020333115, -0.00831622817, 0.0113973757, 0.0106342686, 0.0267661922, 0.00807006471, -0.0286206249, -0.0119061144, -0.0108147888, 0.014359545, 0.0103798993, 0.0138426013, 0.0230737384, -0.00589561881, -0.00345654762, 0.000429247826, 0.0189546, 0.0188397225, 0.00898497272, 0.0094773, 0.000349244656, 0.000284113863, -0.0160334576, -0.00254984503, -0.00848444, -0.00720028626, 0.000802083174, 0.0139082447, -0.0194797479, 0.0291621853, 0.0262574535, -0.0154344598, -0.00024847142, -0.0244358424, -0.023697352, -0.00884548, 0.0029908882, 0.0144087775, 0.00251086894, -0.00330269546, -0.00414170325, 0.00251292042, -0.00779107865, 0.00363911898, -0.0211208388, 0.00172519672, -0.00946909469, -0.00771312695, 0.0027078, -0.0138918338, 0.0265364386, 0.0210223738, -0.00328628439, 0.00573971542, 0.013104111, -0.0158529375, 0.00231188675, 0.00593254343, 0.00214572623, 0.0220234394, -0.000326166803, -0.00141441519, -0.0121686887, -0.0131615484, 0.00101080944, -0.00793057121, -0.00193238445, -0.00608024187, 0.0122999763, -0.0176417269, 0.00053232885, -0.010502982, 0.00923113618, 0.0145975035, 0.0151472688, 0.010978898, 0.00413965154, -0.0145318592, -0.00219906168, 0.00196520635, 0.000669257366, 0.00240009534, 0.022253193, -0.00109132542, -0.0152949672, -0.00426683621, 0.00707720453, -0.0101829693, -0.000503353367, -0.00754491519, -0.0294575803, -0.0024575335, -0.0085664941, 0.0151554737, 0.0020041822, -0.0100845033, 0.0178714804, -0.000467710895, -0.0231557917, 0.00742183346, -0.0141544091, 0.00740542263, 0.00404734025, -0.0195946246, -0.00362475938, -0.0138426013, 0.00953473803, 0.00509969, 0.0014256977, -0.0149093103, 0.0047304444, 0.00352834538, -0.00855828915, -0.00598998182, 0.00136005401, 0.00663410965, -0.00287601165, -0.0235332437, 0.00280216266, 0.00504635461, 0.031689465, -0.0042299116, -0.00165750179, 0.0119061144, -0.0263723303, -0.0252235662, -0.00386066618, -0.00768030528, 0.0156313907, 0.0154754864, 0.0286534466, -0.0137605472, 0.00100157829, -0.00748747727, 0.0250266362, -0.0178058352, -0.0231886134, 0.00220316439, -0.0222860146, -0.00749157974, -0.00702797156, 0.0146959685, 0.00713054, -0.00887830183, 0.00271395408, 0.00114773796, -0.00919831451, 0.00289037125, 0.0395502895, -0.00122056133, -0.00428324705, 0.00553868152, 0.0253712647, 0.0238614604, 0.00598587887, -0.00582997547, 0.0152621446, 0.000303601817, 0.00531303184, 0.000512840867, -0.00509969, -0.0100762974, 0.0122917704, -0.00710182078, -0.0154918982, -0.0141215865, 0.0173299201, 0.0246327743, -0.0105193928, 0.0182161089, -0.00858290493, 0.0187904909, 0.0133502744, 0.00284524122, -0.0226306431, 0.00560022239, -0.00987936743, 0.0135636162, 0.00978910737, 0.0102075851, 0.000212444342, 0.0102732284, 0.00299704215, -0.0117748268, -0.0310986713, 0.0214818791, -0.0166898947, -0.000811827136, -0.00657667173, 0.0102239959, -0.000941575854, -0.0169524681, -0.0205628686, -0.00234881137, 0.00593664637, -0.017920712, -0.0136866979, 0.00580125628, -0.0266349055, 0.014064149, 0.0158939641, 0.0221547261, -0.0171494, 0.0152457338, 0.0148682836, 0.0226142313, 0.0144908326, 0.00845982321, 0.00805775635, 0.00489455368, 0.00232009217, 0.00226265402, 0.00590792717, -0.0291293636, -0.0216788109, -0.00332320901, 0.0147205852, 0.00263805361, 0.0228275731, 0.00616639899, 0.00589561881, 0.0307540428, 0.0238942821, -0.0181996971, 0.00436119875, 0.00405144319, 0.0117091835, -0.00512020336, -0.00306884, -0.0099121891, 0.00755722355, 0.00150672661, -0.0118897036, 0.00396528561, -0.00884548, -0.00512840878, 0.0137113137, 0.00287601165, 0.0106178578, 0.00905882195, -0.0019416156, 0.0189217776, -0.0011344041, 0.00408426486, -0.0200869516, 0.00366373546, 0.00676539727, -0.0151636796, 0.00311807264, -0.00625665905, -0.0104865702, -0.0139000397, 0.00187084358, -0.0152621446, 0.000598998158, 0.0144251883, -0.0182161089, -0.0122179212, -0.0187412575, 0.0195289813, -0.00532944268, 0.000189751125, -0.00378066301, 0.00413349783, -0.00613357732, -0.00462787645, 0.000678488519, -0.0116107175, -0.0228932183, -0.00946909469, -0.0066382126, -0.024288144, 0.00179699447, 0.0077541545, 0.025436908, -0.00174981309, 0.0108147888, 0.00501353247, -0.00851726159, 0.00539508602, 0.0038832312, 0.00205956912, 0.00209957059, -0.00717977248, -0.0145646818, -0.00897676684, -0.00270574866, -0.00544021605, 0.0337736495, 0.0114712249, -0.00672847265, -0.017444795, 0.0235332437, 0.0161565393, -0.0249445811, -0.0118814977, 0.010306051, -0.00383399846, -0.00778697617, -1.58419753e-05, -0.00525149098, 0.00151390629, 0.00341962301, 0.0146795576, 0.00363091356, -0.00612126896, -0.00982192904, 0.0062156315, -0.00595715968, -0.0210223738, -0.0133584794, -0.0057027908, -0.00722490251, -0.00667923968, -0.00342782843, -0.0130712884, 0.00874701422, -0.00116517453, 0.00348321535, -0.000222957577, -0.0196110364, -0.0144169834, -0.00500532705, -0.00105542655, 0.00775005156, -0.0117912376, -0.00355911581, 0.00495199161, -0.0162632111, -0.00755312061, 0.0085747, 0.00309140491, 0.00955935474, 0.00220111315, 0.012332798, 0.0103388727, -0.021284949, 0.0168868247, -0.00805365387, -0.0185279157, 0.00168519514, -0.000649256574, -0.0170345232, 0.0278493129, 0.0123410029, -0.0125051122, 0.00778697617, -0.00852546748, -0.00565355783, -0.0192171745, 0.0219577961, 0.0221547261, 0.0134651503, 0.010306051, -0.0233527236, -0.0119061144, 0.0175760835, -0.00462787645, -0.0161073077, 0.00390989892, -0.0154262539, -0.0195782147, -0.00518994965, -0.014064149, -0.0010020911, 0.0122589488, 0.00146877638, 0.00293344981, -0.00965782, -0.020136185, 0.0125051122, 0.00410067569, 0.0127923032, 0.00200315658, 0.021284949, -0.00801262632, 0.00438171253, -0.00668334262, 0.000273857033, -0.00496840244, 0.00374784134, -0.00033565436, -0.00172006839, -0.00234470866, 0.0159185808, 0.0019713603, 0.0132682193, 0.0137605472, -0.0100352708, -0.0340690464, -0.0336423628, -0.00342167448, 0.0175268501, 0.000697976444, -0.0109132547, -0.0154344598, -0.00325141125, 0.0134077128, 0.0199392531, -0.0309345629, -0.0143103125, -0.0268810689, -0.00742593594, -0.00207187724, 0.0525805503, 0.0190694761, 6.01626489e-05, 0.00482480694, 0.00299704215, 0.00771723, -0.0204479918, 0.0216131676, 0.00772133237, -0.0166078396, -0.00332320901, -0.00248420122, 0.00995321572, -0.0140477382, -0.000943114399, -0.0045581297, 0.0139246564, 0.00335808215, 0.00488634827, 0.00821366, -0.01734633, -0.0233527236, 0.0238122288, 0.0107409395, -0.00353039661, 0.00201033638, -0.0175924934, -0.00512020336, -0.000809775782, 0.0136210546, -0.00805775635, 0.00445966423, 0.00509969, -0.0139328614, -0.0216459893, -0.000943627267, 0.00795108546, 0.0190694761, -0.00171391421, -0.00835315231, -0.0291129518, -0.008332639, 0.00914087612, -0.00642076787, 0.0124722905, -0.0133748902, 0.0105440086, 0.0110035138, -0.0101419417, 0.00966602564, 0.0160416625, 0.0014185179, -0.00505045708, -0.0132600144, -0.00455402723, -0.0303930026, 0.011758416, 0.00683104061, -0.00550175691, -0.0112989107, 0.0080167288, -0.0106506795, -0.0111430073, -0.0014000556, -0.0193156395, 0.0210223738, -0.000299755513, 0.00133646338, 0.00132825796, 0.00670795888, -0.022565, 0.0157955, 0.0131861651, 0.00462787645, 0.0164765529, 0.0234511886, -0.0113973757, -0.00320423, 0.0143103125, 0.00406580279, -0.0161647443, -0.00128620502, 0.00597767346, 0.00746286055, 0.0134569453, -0.00824237894, 0.022565, 0.00923934113, -0.00596946804, 0.00759825064, 0.00552637363, 0.000491814397, -0.00327807898, -0.00560022239, 0.0234840102, 0.00680232141, 0.031591, 0.0015990379, 0.00845982321, 0.00508738169, 0.00118466245, -0.0140887648, 0.0127676865, 0.0171001665, 0.00297447713, 0.0133748902, 0.00866496, 0.0127512757, -0.0145975035, -0.016082691, 0.00522277178, 0.00662590424, 0.0192828178, -0.0146221193, 0.0077664624, -0.0347911268, -0.0176417269, -0.0469680205, 0.00644538458, 0.0149995703, 0.0193484612, -0.00203495263, 0.00706899911, -0.000444120204, -0.00246368768, -0.012431263, -0.00555509236, 0.0184622724, 0.00436530169, -0.0182489306, 0.0144087775, -0.00724131335, -0.00466890354, 0.0148026394, 0.00424632244, -0.0197751448, -0.0111019798, 0.0069377115, -0.0232542567, 0.0139574781, 0.0124722905, 0.00374373863, -0.0130384667, -0.00275908411, -0.00238778722, -0.0130794942, 0.0049807108, -0.00816442724, 0.00482070446, 0.00794288, -0.0144990375, 0.00434068544, -0.0163452644, -0.000816955522, -0.0226798765, 0.0118404701, 0.00187289494, 0.0120538129, -0.0015436511, -0.00301550445, -0.00927216373, 0.0233527236, -0.00605562516, -0.00116927724, 0.00777877076, -0.00481660152, 0.00901779439, -0.00621973444, 0.0141708199, -0.00885368511, 0.0039796452, 0.0205956902, 0.000577458821, -0.000544637034, -0.0194961596, 0.0215967558, -0.00178571197, -0.0126528107, -0.012332798, -0.0112250615, 0.00273446762, 0.0132271927, -0.00165339909, 0.016082691, 0.0062033236, -0.00539508602, 0.0216788109, 0.00530482642, 0.00355706434, 0.0166816879, 0.0139000397, 0.0148600778, 0.0191187095, 0.00655615795, -0.0112250615, 0.00714695081, 0.00555509236, 0.0180355888, -0.00740542263, 0.0383030623, -0.00486583449, -0.00461146515, 0.0225814097, -0.0133256577, 0.0120291961, 0.0054032919, -0.00326166814, 0.0175924934, -0.0120948395, 0.00345039344, 0.0150898304, -0.00172006839, -0.0137113137, -0.0186592024, -0.00160211499, 0.00280831684, 0.0126117831, -0.00897676684, -0.0098055182, 0.00312832952, 0.000493609346, 0.0314597115, -0.0221219044, 0.00516533339, 0.0176581368, -0.00140415842, -0.00648641167, 0.00580125628, 0.00887830183, 0.00827930309, -0.0109706922, 0.025912825, 0.00230983528, -0.0181340538, 0.00971525814, 0.0117748268, -0.0133256577, 0.00447607553, -0.0239599273, 0.00271600531, -0.00101491215, 0.000309499475, -0.0325592421, 0.00321448664, 0.0168375932, -0.012332798, -0.00257035857, 0.0108476104, 0.0207269769, 0.00403092941, 0.000205392775, -0.0193156395, -0.0072659296, 0.00881265756, 0.00223803776, 0.00476736901, 0.000261292444, 0.00687206816, -0.0131451376, 0.0341018699, 0.00358988624, -0.022351658, -0.0201525949, -0.0344300866, -0.00414580572, -0.0162303895, -0.0082834065, 0.00352014, -0.00223188358, 0.00613768, 0.0116271283, -0.0134733561, 0.0073315734, 0.00586279714, -0.00347090722, 0.0100680925, -0.00593254343, -0.0173955634, 0.00987116154, -0.0120620178, 0.00333961984, 0.00951012131, -0.00226265402, 0.00247189309, -0.0100024492, -0.00223188358, -0.00224214047, 0.0204972252, 0.0191515312, 0.0017241711, 0.0139738889, -0.0114958417, 0.0105604194, -0.0109214596, -0.00120517612, 0.0115778958, 0.0268974788, -0.00643307623, 0.0199556649, 0.0059530572, 0.0241568573, -0.00459915726, -0.0121112503, 0.0138015738, 0.0208418537, -0.00611306354, -0.00434889086, -0.00604331726, 0.00176622404, 0.0139410673, -0.00937062874, -0.000202572148, -0.00632640533, -0.00319807581, 0.0235168319, 0.0129646175, 0.00454992428, 0.00335603091, 0.0300155524, -0.017247865, 0.0163042378, 0.00174981309, -0.0213013589, 0.000604639412, -0.00592023507, -0.0131779592, -0.0033047467, -0.00411093282, 0.0047304444, -0.0114384033, -0.00491917, 0.00948550552, -0.00210469915, -0.0325100087, -0.00234265719, -0.00388528267, 0.0305899344, 0.00526790181, -0.0191515312, 0.00935421791, -0.00285344664, 0.0310822614, -0.00845161825, -0.00207290286, 0.018396629, 0.0163452644, 0.00674078055, 0.0181340538, 0.0168047696, -0.00973166898, 0.000141159457, -0.00115081493, -0.0133092469, -0.00104311842, 0.0209731404, -0.00880445261, 0.0194961596, 0.0140149156, -0.00405349443, -0.02312297, -0.0145810926, 0.0113563491, 0.00787313376, 0.0126774274, 5.4361135e-05, 0.0065602609, -0.015516514, 0.0182325188, -0.00625255611, 0.00268113217, -0.000101991231, 0.00568227703, 0.00780749, 0.00535816187, 0.0121768946, 0.00576843461, 0.0303601809, -0.0139820939, -0.0147041744, 0.0152867613, 0.00476326607, 0.00921472535, 0.0136456704, -0.00470993062, 0.0109706922, -0.0203167051, -0.00591613259, 0.00482070446, -0.00813570805, -0.0059530572, -0.023598887, 0.00539098354, -0.00489045074, -0.00884548, -0.00244522537, -0.00014526218, -0.018396629, -0.0156806223, -0.00182468793, -0.00579715334, 0.00202572159, -0.00361655396, -0.0151390629, -0.0196110364, -0.00295601483, -0.00518174423, 0.00498481328, 0.0189546, 0.00608844729, -0.00155493361, -0.0047304444, -0.0181668755, -0.0143267233, 0.00612126896, -0.00414170325, 0.00673667807, -0.0146221193, 0.00951832719, -0.00791416, -0.0122917704, -0.00380117679, -0.0199556649, -0.016771948, -0.033051569, -0.0240255706, -0.00758184, -0.0144169834, -0.0082834065, -0.00470582815, 0.00468531437, -0.00175904424, 0.00949371047, 0.0119307302, -0.0129646175, 0.0221711379, 0.00823827647, -0.0250266362, -0.00431196624, 0.00601049513, -0.00683514355, -0.00532533973, -0.00130261586, 0.00401041564, 0.0422416776, 0.000241676273, -0.00739721721, 0.00801262632, -0.00497660786, -0.00188315171, -0.0122835655, -0.00593664637, -0.019660268, 0.0055304761, 0.00219290773, -0.000126479383, -0.00937883463, -0.0112168556, -0.00291293627, 0.00676129432, 0.0105358036, -0.0168375932, 0.0137605472, -0.0328054056, -0.0128825633, 0.0104783652, 0.024567131, 0.00371501944, -0.00369860861, -0.000104683648, -0.0170345232, 0.00502173789, -0.0128743574, 0.00343808532, -0.00727823796, 0.00778287323, 0.0123656197, -0.00277139223, 0.00832033064, -0.0258800033, -0.0183802173, -0.0038196391, 0.000567202049, 0.00831622817, 0.00959217642, 0.000460787531, -0.0188069, 0.00282883039, 6.30794311e-05, -0.019085886, 0.020333115, 0.0848772228, 0.000458223338, 0.0221547261, -0.0139246564, -0.00147287908, -0.0310658496, -0.0116681559, 0.0589808039, 0.00619511819, 0.00443915091, -0.00232624635, 0.0169852898, 0.00735618966, 0.00592023507, -0.00766799692, -0.0116025126, 0.00136005401, -0.00695822528, 0.0105932411, 0.000847213145, -0.0155739523, -0.0111101847, 0.00434068544, -0.0114219924, -0.0108147888, -0.00213957229, -0.00323294895, -0.0138179846, -0.00359193771, 0.0188561343, -0.004022724, 0.0025683071, 0.00205136347, 0.00157339592, -0.0299827307, 0.00215188041, -0.0162385944, 0.018298164, 0.0171165783, -0.00333961984, -0.0076597915, 0.00883727428, 0.0199392531, 0.00674078055, 0.0218265094, -0.0219906177, -0.00728644338, -0.00647000084, 0.0147698177, -0.0130302617, 0.00582587253, -0.0139574781, 0.0150734195, -0.00516123092, 0.0148682836, 0.0110199256, -0.0121276611, -0.00215393165, 0.0172314532, -0.0179043021, 0.0123163871, 0.0114548141, -0.00225034589, 0.00764338067, 0.00516123092, -0.00744234724, -0.027652381, 0.0141297923, -0.00138467038, 0.00951012131, 0.00168109243, -0.0189381894, 0.00128312793, -0.00737670343, -0.00470993062, 0.00552637363, 0.000614383374, 0.00516943634, 7.42337215e-05, -0.0098055182, 6.62846869e-05, 0.0010164507, -0.0101993801, -0.012431263, 0.0127348648, 0.00649872, -0.0168375932, -0.0180027671, -0.0141051756, -0.0129482066, -0.00438171253, 0.0123492088, -0.00808237214, 0.0223188363, 0.00471403357, 0.00761876442, -0.0132353976, 0.00592433801, 0.0261753984, 0.00507507334, 0.0320833251, -0.000315653568, 0.00596126262, 0.000706694729, -0.00486993697, 0.0205136351, -0.0085747, 0.0172642767, -0.00776236, 0.00437350711, -0.00689258147, 0.00230573257, 0.00301140174, 0.0211700723, -0.0116353342, -0.0022257294, 0.0279641878, -0.000449248619, 0.0200541299, 0.00183391909, 0.0248461161, 0.0170181114, -0.0147534069, 0.00232624635, 0.00553457905, -0.00455402723, 0.0026934403, 0.00620742608, 0.0230080932, -0.0105604194, 0.000821571099, 0.0221383162, 0.0318535753, -0.00714695081, -0.00265651592, 0.022565, -0.00676539727, 0.000913369644, -0.00250061229, 0.0248461161, 0.0310494397, -0.00557970908, 0.0194305163, 0.0100516817, -0.0141133815, -0.00838187151, -0.0078239, -0.00824648142, -0.0334782526, -0.0227947515, -0.000266420859, 0.0101419417, 0.0023795818, 0.00418683328, 0.00274267304, -0.00290473085, 0.0144169834, 0.00877983589, -0.0115368692, -0.00207290286, -0.00170160609, 0.00516943634, 0.00777877076, -0.00539918896, -0.00366988941, -0.00345449615, 0.00948550552, 0.00742593594, 0.0283416398, 0.00637563784, 0.0210551955, -0.0142774908, -0.0119143194, 0.00571920164, 0.00348731806, 0.000835930638, 0.00827930309, -0.00608024187, -0.00941986125, -0.00498481328, -0.00106670905, -0.000701566343, 0.00259907776, 0.0571756065, -0.00690078689, -0.000821571099, 2.20762e-06, -0.0163534712, 0.0155329248, 0.0125543447, -0.00371296797, 0.00224419171, -0.00273857033, -0.0245343093, -0.00029231931, 0.00233855448, -0.0040883678, 0.00519405259, -0.008143913, 0.00221752399, 0.0149421319, 0.0116763618, -0.0231393818, 0.0156560075, 0.00126671698, 0.020333115, 0.0144087775, 0.01734633, -0.00708541, 0.00720849168, -0.0155329248]
20 Mar, 2023
Differences between Wireless Adhoc Network and Wireless Sensor Network 20 Mar, 2023 1. Wireless Adhoc Network: A wireless ad-hoc network is a wireless network deployed without any framework or infrastructure. This incorporates wireless mesh networks, mobile ad-hoc networks, and vehicular ad-hoc networks. Its history could be traced back to the Defense Advanced Research Project Agency (DARPA) and Packet Radio Networks (PRNET) which evolved into the Survival Adaptive Radio Networks (SARNET) program. Wireless ad-hoc networks, in particular mobile ad-hoc networks (MANET), are growing very fast as they make communication simpler and progressively accessible. In any case, their conventions or protocols will in general be hard to structure due to topology dependent behavior of wireless communication, and their distribution and adaptive operations to topology dynamism. They are allowed to move self-assertively at any time. So, the network topology of MANET may change randomly and rapidly at unpredictable times. This makes routing difficult because the topology is continually changing and nodes cannot be expected to have steady data storage. Applications: Data Mining Military battlefield Commercial Sector Personal area network or Bluetooth 2. Wireless Sensor Network: A wireless sensor network can be characterized as a system of devices, indicated as nodes that can detect the environment and impart the data accumulated from the monitored field (e.g., a zone or volume) through remote or wireless connections. It can be depicted as a system of nodes that agreeably sense and may control the environment enabling association between people or computers and the surrounding environment. The information is sent, possibly through different jumps, to a sink (indicated as a controller or monitor) that can utilize it locally or is associated with different systems (e.g., The Internet) through a portal. The nodes can be fixed or moved. Applications: Environmental Monitoring Health Care Positioning and Monitoring Differences between Wireless Adhoc Networks and Wireless Sensor Networks are as follows: Wireless Adhoc Network Wireless Sensor Network The medium used in wireless ad-hoc networks is radio waves. The medium used in wireless sensor networks is radio waves, infrared, and optical media. Application independent network is used. The application-dependent network is used. Hop-to-Hop routing takes place. Query-based (data-centric routing) or location-based routing takes place. It is heterogeneous in type. It is homogeneous in type. The traffic pattern is point-to-point. The traffic pattern is any-to-any, many-to-one, many-to-few, and one-to-many. Wireless router is used as an inter-connecting device. Application level gateway is used as an interconnecting device. The data rate is high. The data rate is low. Supports common services. Supports specific applications. Traffic triggering depends on application needs. Triggered by sensing events. IP address is used for addressing. Local unique MAC address or spatial IP is used for addressing. Network Type Peer-to-Peer Network type Hierarchical or Mesh Nodes Can be any wireless device Nodes Limited to sensor nodes Communication Range Variable depends on node placement Communication Range Limited by the sensor node’s transmission power Communication Range Standard network protocols (TCP/IP) Communication Range Customized protocols for efficient data transfer and low energy consumption Data Type General data (voice, video, files, etc.) Data Type Sensor data (temperature, humidity, light, etc.) Power Consumption Can be high due to constant communication Power Consumption Designed to minimize energy consumption to extend network lifetime Security Security protocols can be implemented Security Security protocols are critical as sensor data can be sensitive Applications General wireless communication Applications  Environmental monitoring, industrial automation, home automation, etc. Deployment Can be deployed in any environment Deployment Typically deployed in remote or hard-to-reach locations, such as forests, oceans, or industrial sites. 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!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network
https://www.geeksforgeeks.org/differences-between-wireless-adhoc-network-and-wireless-sensor-network?ref=asr10
PHP
Differences between Wireless Adhoc Network and Wireless Sensor Network
What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, jQWidgets jqxTreeMap width Property, Difference between Flow and TypeScript, jQWidgets jqxTree destroy() Method, jQWidgets jqxTree collapseAll() Method, jQWidgets jqxScrollView buttonsOffset Property, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, jQWidgets jqxListBox enableHover Property, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxSlider buttonsPosition Property, jQWidgets jqxSlider rtl Property, jQWidgets jqxTooltip opacity Property, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, jQWidgets jqxToolBar height Property, PHP, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, Node.js date-and-time Date.transform() Method, TypeScript Optional Parameters, jQWidgets jqxToolBar theme Property, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, Steps to Diagnose and Resolve a Slow Network, How to use Optional Chaining with Arrays and Functions in TypeScript ?, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, jQWidgets jqxScrollView showButtons Property, jQWidgets jqxScrollView disabled Property, jQWidgets jqxSplitter destroy() Method, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, jQWidgets jqxTree collapseItem() Method, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), jQWidgets jqxSortable opacity Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, jQWidgets jqxSlider height Property, jQWidgets jqxSwitchButton onLabel Property, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, jQWidgets jqxToolBar tools Property, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTree width Property, jQWidgets jqxTree clear() Method, TLS Handshake?, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, jQWidgets jqxTabs position Property, Differences between Wireless Adhoc Network and Wireless Sensor Network, jQWidgets jqxTabs keyboardNavigation Property, Impact of Three-way Handshake and Slow Start Algorithm, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, How to Sort an Array Having Optional Properties in TypeScript ?
GeeksforGeeks
[-0.0322254784, 0.000888202223, -0.017363729, 0.00273966603, 0.0538425706, 0.028997926, 0.0150994379, -0.00621741544, -0.00880070776, -0.0306992717, 0.0179516934, -0.0272215214, 0.0197280981, -0.00633625966, -0.0201909635, 0.000862400571, 0.00684291031, 0.00123613351, 0.000383897277, -0.0183395, 0.0453858823, 0.0063675344, -0.0336265862, -0.0356782079, 0.0126662645, 0.00414702855, -0.00120173139, 0.00825027283, -0.0496892855, 0.0387306213, 0.00961385109, -0.0138234291, 0.0287477281, -0.0302739348, -0.000955442898, -0.035603147, -0.01723863, 0.0210416354, 0.0048851124, 0.0184645988, 0.011384, 0.0266710874, -0.00254889019, -0.00120094954, -0.0183395, -0.0130603258, -0.0395062342, -0.0282223132, 0.0121596139, -0.0370042548, -0.0377548486, -0.00859429501, -0.0183770303, 0.0501396433, -0.00496955402, 0.0364037827, 0.0453608632, 0.00826278236, 0.00953253638, 0.014323825, 0.0171260405, 0.00561381364, -0.0144364135, -0.0284725111, -0.0154622244, 0.0148742599, -0.00868186448, 0.0104957987, 0.0468620509, -0.0238188319, -0.0479379, 0.0359284058, -0.0321254, -0.0225428231, -0.00653641764, -0.0238188319, -0.00622367067, 0.040482007, 0.0332763083, 0.000629403861, -0.0294232629, 0.0326007754, -0.00828780234, -0.0476877019, -0.00579833426, 0.000175724868, -0.0275718, -0.0503898412, 0.0742587075, 0.00150587806, -0.0137733892, 0.0372544527, 0.00727450149, -0.0267461464, -0.0111400578, -0.00698051881, 0.017063491, -0.00473812129, -0.00904465094, -0.0157874823, 0.0126099698, -0.0154747348, 0.00721820677, 0.0222676061, 0.005182222, -0.0379049703, 0.00649888813, 0.0297235, -0.0195654687, 0.0585462898, 0.017588906, -0.0269713234, -0.00515094725, 0.0541928448, -0.0375546925, -0.00983277429, 0.0133355437, -0.0577456541, -0.0178766344, 0.0258954745, 0.00515720248, 0.0273716412, -0.0327508934, 0.00850047078, -0.0363037027, 0.0234935749, 0.00978898909, -0.000669670058, -0.0184520893, -0.0188148748, 0.0051540751, 0.0224177241, 0.00383740896, -0.00595470797, 0.0297235, -0.0351277739, 0.0323005393, 0.0564446263, 0.0174512975, -0.0513405912, 0.0130102858, 0.00849421602, -0.0271464624, -0.0153871654, 0.0336265862, 0.0275968183, 0.0155873233, 0.0311496276, -0.0496642664, 0.0233809855, -0.0197280981, -0.019603, 0.0305741727, 0.0198782161, -0.00527604623, -0.00184051762, 0.0155372843, -0.00267711654, -0.0229306296, 0.00996412802, 0.00639880914, -0.0541928448, -0.00318220351, 0.00339018041, -0.0075809937, 0.02047869, -0.00331199355, -0.0029148045, -0.0274467, 0.00906967092, -0.0429089256, 0.00244724727, 0.0142112356, 0.035177812, 0.0159376, 0.0116717275, -0.00119469455, 0.0593969598, -0.000883511035, 0.0121345939, -0.0389307812, -0.0279721152, 0.0113527253, -0.00664275186, 0.0221925452, 0.00803135, 0.0425336286, -0.0176264364, -0.0116404528, 0.017663965, -0.003612231, -0.00389057607, 0.0445852503, 0.0398565121, -0.0160251707, -0.0525415391, -0.00436595175, 0.00544805732, 0.041332677, -0.0325006954, -0.0424835868, -0.0150118684, 0.0162878782, 0.0596972, 0.00949500687, -0.00605165958, 0.0193528011, -0.0191151127, 0.0245694257, 0.0263458304, -0.065351665, 0.00288665737, 0.0498394035, -0.0109398989, 0.0261206515, -0.00131901156, -0.00863807928, -0.040231809, -0.000512514554, 0.0148992799, 0.0403068662, 0.0159751307, 0.00604227697, 0.00247539463, -0.0707559437, 0.00433154963, 0.0343021192, -0.0371043347, -0.040081691, -0.0022768, -0.00619552331, -0.00866935402, 0.00261456706, 0.00340894517, -0.0686542764, 0.0151619874, 0.034652397, 0.00530732097, -0.00359346601, 0.0342520811, -0.0503398, -0.00445039338, -0.0396813713, -0.040507026, -0.0147741809, 0.00100157317, 0.00147694896, 0.0566948242, 0.00548245944, -0.00272402866, -0.0159876402, -0.0070430683, 0.00245975726, 0.02864765, -0.0334014073, -0.0442599915, 0.00368729024, -0.0131979343, 0.00654892763, -0.0287977681, 0.00756848371, 0.000788514037, -0.0212543048, 0.0170009416, -0.00995161757, 0.0191526432, 0.0297985598, -0.00261925836, 0.0455610231, -0.0132604837, -0.0233309455, -0.0534922928, -0.00262394967, 0.0245944448, -0.00563883316, -0.00995787326, 0.0225303136, -0.00776864216, 0.034752477, 0.00410949904, 0.0163003877, -0.0794628263, 0.0134106027, -0.0442599915, 0.00165756047, 0.00549184205, -0.0264208894, 0.0208414774, -0.0231057685, -0.0339268222, -0.0202785321, 0.0104707787, 0.0376047306, 0.00429402, 0.0547933206, 0.0129852667, -0.00540427258, -0.00461302232, 0.0097326953, -0.0153621454, 0.00867560878, 0.000867091818, 0.0204661805, -0.0121283391, -0.0209665764, -0.00606416957, -0.00232058461, -0.0120908096, 0.0316750444, -0.0256702956, 0.00606729696, -0.0227805115, -0.0321504176, -0.025582727, 0.020128414, 0.0114528053, -0.0144364135, -0.0129477372, -0.020228494, -0.0217171703, -0.00605791435, 0.0236186739, -0.028997926, 0.0346023589, 0.00445352122, -0.0479629189, 0.00784995593, 0.00440660911, -0.0124410866, -0.0261957105, -0.0500395633, -0.0210666563, -0.0102205807, -0.0224052146, 0.0492139086, -0.0409824029, -0.0253450386, 0.0223176442, 0.00988906808, 0.0294983219, 0.00994536281, 0.00422521541, -0.0375546925, -0.000334444107, -0.0223551746, 0.0109649189, -0.0333763883, 0.0168383121, -0.0112964315, -0.0114653148, 0.000788514037, -0.00181706157, 0.0251573902, -0.028572591, -0.0340018831, 0.00567323528, -0.023168318, -0.0377798714, -0.017113531, 0.00979524478, 0.0186022073, -0.00742462, 0.00119547639, 0.0146615915, -0.0481380597, -0.0351527929, 0.00270839129, -0.0079813106, -0.007224462, 0.0205662604, -0.0160752088, 0.0044566486, -0.0151119474, -0.00786872115, -0.0264709294, 0.0139610376, 0.0240189899, 0.000735347, 0.0146866115, 0.0155998338, -0.00594532536, 0.0207038689, 0.00306023192, 0.0220424272, -0.00841290131, 0.00591092324, 0.0468870699, -0.03447726, -0.0189775042, 0.0659521446, -0.0093699079, 0.0169634111, -0.0226929411, 0.00673032133, 0.0174262784, -0.00962010585, 0.0158375222, -0.0478628427, -0.0027005726, -0.0170885101, -0.0175013375, 0.0249822512, -0.00212668139, 0.0174512975, 0.00724322675, 0.0254326072, -0.0173762385, -0.0384303853, -0.0372794755, 0.0417329967, 0.000791641534, -0.0236687139, -0.0103581892, 0.0222926252, 0.000270330929, 0.0372794755, -0.0226554126, 0.0690545961, 0.0255577061, -0.0030195748, -0.00240971777, 5.88355797e-05, 0.0409573801, -0.00899461098, -0.00783744641, 0.0737583116, -0.045811221, -0.0114653148, 0.0323505774, 0.0308243707, 0.0199657846, -0.0261206515, 0.0333013274, -0.0222550947, -0.0360284857, -0.0443850905, 0.0171010196, 0.0384804234, -0.0252824891, 0.000132526649, -0.0210166164, 0.0171635691, -0.00246913964, -0.0229431391, -0.0602976717, 0.00337141543, -0.0221425071, -0.00638629915, -0.0254576281, -0.040907342, -0.0246444847, 0.00234560459, -0.00616737595, 0.0133355437, 0.0229306296, -0.00572327478, 0.0649513528, -0.017363729, 0.0251198597, 0.00646135863, 0.0329760723, 0.020203473, 0.0157249328, -0.00143472804, 0.0113151958, 0.017989222, -0.0161752887, -0.011809337, -0.000172108732, 0.0263458304, 0.0381551646, -0.0512405112, 0.0256953146, 0.0374295935, -0.0311746467, 0.00204380346, -0.0182144, -0.0381801873, 0.0130603258, -0.00254263519, -0.00971393, 0.0513405912, 0.00420019589, 0.0137483701, -0.0140611166, -0.0141737061, -0.00773111219, 0.0275968183, -0.0194904096, -0.0236562025, 0.0023377859, 0.0120094949, 0.00840039179, -0.0128351478, -0.0104957987, -0.0138734691, 0.000721664343, 0.00279283314, -0.0103331693, 0.0358283259, -0.0364788398, 0.0154497148, 0.0109711736, 0.0198657066, -0.0165756047, -0.0107084662, 0.0225678422, 0.0393310972, 0.0224427432, -0.00700553879, -0.00382177159, 0.0187523253, -0.00843166653, -0.000133992653, 0.0221925452, 0.0361786038, -0.0206788499, -0.00885074772, -0.0109023694, 0.0363537408, 0.020853987, 0.0294983219, 0.0392560363, -0.0127475783, -0.00135497749, -0.00498206401, 0.014498963, -0.00491325976, -0.0152745768, -0.0430590436, -0.0221550167, -0.00362161337, 0.0100579523, -0.0562444665, -0.046912089, 0.0248446427, -0.00301801111, 0.0643508807, 0.00805011485, 0.0294983219, -0.0139860576, 0.0201159045, -0.00571076525, 0.0027553034, 0.0121783782, 0.00160439347, -0.00870062876, -0.0221925452, -0.0172761586, 0.00912596565, -0.00294138794, -0.0026020573, -0.00976397, -0.000579755229, 0.0064050639, 0.0360284857, 0.0236186739, -0.017588906, 0.00368103525, -0.0120970644, 0.017438788, 0.0308493897, 0.0578457341, 0.00243630121, 0.034777496, 0.00389370346, -0.0118468665, 0.0118656317, 0.0257703755, 0.010214326, -0.0151619874, 0.00783119164, -0.023718752, 0.0106709367, 0.0160251707, 0.0179516934, 0.0214544628, 0.00358721125, 0.00821899809, -0.0190525632, 0.0183019694, -0.00394687057, 0.0209790859, 0.00555751892, 0.0185396578, 0.0157374423, 0.0326257944, -0.00690546, -0.00710561778, -0.0160251707, 0.0287977681, 0.00932612363, -0.0135732312, 0.0139485281, -0.00526979147, -0.017588906, -0.0296734609, 0.00991408806, 0.00800633, -0.00729326624, -0.0108773503, 0.00805637, -0.000333662232, 0.0278219972, -0.00843166653, -0.0197781362, 0.00899461098, 0.00336203305, -0.00487573, -0.00233934959, 0.0147741809, -0.0108210556, 0.0138484491, 0.0036497605, -0.0074809147, 0.0127100488, 0.0117467875, 0.00906967092, -0.00668028137, 0.0237938128, 0.00942620263, 0.00570451, -0.0066364971, 0.0281722732, -0.00750593422, -0.0130603258, -0.00870688353, -0.0284224711, -0.0101705408, -0.010114247, -0.0213794038, 0.00249885069, -0.00516345724, 0.0196655486, -0.00587026635, -0.0346774161, -0.00255827256, -0.00700553879, -0.0327508934, 0.0128851878, -0.0133605627, -0.005082143, 0.0142862955, 0.0595470779, -0.00638004439, 0.0597472377, 0.0135857416, 0.00554188155, 0.0230807476, -0.0147866905, -0.00103597529, 0.0040782243, -0.00953253638, 0.00766230794, 0.00648637814, -0.0162503477, 0.0065864576, -0.0121471034, -0.0223426651, 0.0203535929, -0.00432529487, -0.0476126447, 0.0119469455, 0.0277219173, -0.0248321332, 0.00336203305, -0.00720569678, 0.0130728353, 0.00579207949, -0.000140149874, -0.0331261903, -0.0243817773, 0.00787497591, 0.0268962644, 0.0125974603, -0.00437846174, -0.0294733029, -0.00206100452, -0.0226554126, -0.0361285657, -0.0177265145, -0.0186897758, -0.0131854247, 0.0221299957, -0.000275804, 0.00232840329, -0.0266710874, -0.001802988, 0.00110947096, -0.0161377583, -0.00519473199, -0.0254075881, -0.00817521382, 0.00844417606, 0.00261143968, -0.0119406907, 0.0247320533, 0.014523983, -0.00983902905, -0.0145114735, 0.0162253287, 0.0113089411, -0.0111775873, -0.0171260405, -0.0199657846, 0.029098006, -0.00920102466, 0.0070430683, -0.0151244579, 0.0243442468, 0.00459425757, -0.000945278618, -0.0141361766, 0.00104066648, 0.0372794755, 0.0023377859, -0.00385617372, -0.0221425071, -0.0145114735, 0.0167382341, 3.83604056e-05, 0.0146866115, 0.0338517651, 0.00610482646, 0.000170349522, -0.0103769545, 0.00214388245, 0.00773111219, -0.0408573039, -0.00670530135, 0.00321191433, -0.0066740266, -0.0300237369, -0.00568261789, -0.0268712454, 0.0212167744, -0.00388119346, 0.00993910804, 0.0160251707, 0.00334014068, 0.000325648085, -0.0330261104, 0.0147866905, 0.0212668143, 0.0245944448, -0.0216796398, 0.0116654728, -0.0217046607, -0.033826746, -0.0325006954, 1.86793186e-05, -0.0141111566, -0.00280377921, -0.0680538043, 0.000753720931, -0.00778115215, 0.0244818553, 0.000172401924, 0.0077999169, 0.0301238168, -0.00841915607, 0.0549934804, 0.0159626212, -4.13901471e-05, -0.00539176306, -0.0180392619, -0.0621491373, -0.0267211255, 0.0296984799, 0.0578957722, 0.0405820869, 0.051540751, 0.0435094, -0.0124911256, 0.00631436752, 0.0223801937, 0.00489449454, -0.0129602468, -0.0155998338, 0.0183645189, -0.0152745768, 0.00499770138, 0.00195310672, 0.0141862156, -0.0104832882, -0.0200283341, 0.0120470244, -0.0154372053, 0.00278345076, 0.000133015317, 0.0572452582, 0.0104645239, 0.0268712454, 0.0106396619, 0.0140611166, -0.0059766, 0.0018061155, 0.0149117894, -0.0377298295, -0.00778740691, -0.000138488394, 0.00220486824, 0.00128226378, 0.0247320533, -0.00872564875, -0.0424835868, -0.0426337086, -0.0145865325, -0.0308493897, -0.017313689, -0.00219548587, 0.00739960046, -0.0119469455, 0.0397063941, -0.0218672883, 0.0268462244, -0.00309932535, 0.00312747271, 0.00113058137, -0.0190400537, 0.00746840471, -0.00925731938, 0.0102518555, 0.0105208177, -0.0252449587, 0.00285538263, 0.0432091616, 0.0148617504, 0.0365038626, 0.0138984881, -0.0168383121, -0.0112401368, -0.0161502697, -0.0231808275, -0.0503648184, 0.00297891768, -0.00203754846, 0.00381238922, 0.017313689, 0.0104332492, 0.00206569559, 0.0449605472, 0.00608293433, -0.0178766344, -0.0163254067, 0.00405320479, -0.0118030822, -0.00296015292, 0.0152120274, 0.00389057607, 0.014624062, -0.000889766, -0.00581397163, 0.0157374423, -0.00121658691, 0.0399315692, -0.00724322675, -0.0452357642, 0.0200408455, -0.0350777321, 0.028997926, 0.014724141, -0.0129727563, 0.0261706915, -0.0242942069, 0.0123535171, -0.00988281332, -0.00872564875, 0.0196405277, -0.00203285716, 0.0245068762, -0.0110087041, -0.0252199396, 0.017338708, 0.0310995877, -0.0237062424, 0.0079750549, -0.00714314776, 0.0207163785, -0.00490075, 0.0142487651, 0.0213794038, -0.0141236661, 0.00613297382, 0.0448604673, 0.0181393418, 0.00345898466, -0.0438096374, 0.001423, -0.000357313751, -0.0153621454, 0.0114528053, -0.0111525673, 0.0276968982, 0.0251198597, -0.00390308583, -0.00519785937, -0.0055606463, 0.0137608796, 0.0310745686, 0.00145896594, -0.00426274538, -0.0266210474, -0.000899930252, 0.0245569162, -0.0146365725, 0.00404382218, -0.00256140018, -0.0318752, -0.00399378268, -0.0211542249, 0.00682414556, 0.00403443957, 0.0257953946, 0.0212042648, 0.0278219972, -0.0157749727, -0.0155623043, -0.00426274538, 8.80579e-05, 0.0225928631, 0.00718067726, -0.0615486614, 0.00823776331, 0.0129352268, 0.0338017233, -0.00114700058, -0.0201659445, 0.0152245369, -0.0246569943, 0.00710561778, 0.0165756047, 0.00851298, -0.00814393908, 0.0054230378, 0.028997926, 0.0164880361, 0.00512280036, -0.0370542966, 0.014298805, -0.0379800275, 0.0208915174, 0.0132604837, 0.0224802736, 0.00100000936, 0.0184771083, 0.0108836051, 0.0172011, -0.00617363118, 0.00895708147, -0.0272465423, -5.09191632e-05, 0.00514469249, -0.0121220844, 0.00674283085, -0.0574954562, -0.0177014954, -0.0324256383, -0.0126412446, 0.0149117894, 0.0195654687, 0.0151870074, 0.00176076707, 0.0103581892, 0.0157874823, 0.0263708495, 0.0308493897, -0.0122033982, -0.0132604837, 0.0128351478, 0.010364444, -0.00718693202, 0.0123284971, 0.0200783741, -0.0163754467, -0.0256202556, 0.0127976183, -0.00925106369, -0.000850672543, -0.0069429893, -0.00730577623, 0.00820023287, 0.0179516934, -0.0214294419, 0.0181268323, -0.0196530391, -0.0150744179, -0.0278970562, -0.0213043429, 0.00464429706, -0.0090509057, 0.004434756, -0.00185146381, 0.0390809, -0.0364538208, 0.0165380761, 0.00761226844, 0.000226741773, -0.0240189899, -0.0261206515, -0.014323825, -0.0383052863, -0.0229056105, 0.0262707695, 0.00311339903, 0.0105270734, 0.0344022, -0.00179829681, -0.0146115525, 0.0156874023, -0.0110149588, -0.0387056023, -0.017739024, -0.0269212853, 0.00789999589, 0.0169759225, -0.0342771, 0.0144113936, -0.00468495395, -0.00923855416, -0.020728888, 0.0155122643, -0.00967014581, 0.00501959352, 0.0185771883, 0.0211417153, 0.0351527929, 0.0131103657, -0.00476314081, -0.00199532765, 0.0219423473, 0.00349964201, -0.00719318725, -0.00698051881, 0.00333388592, 0.0162753686, -0.0385554843, -0.0510403551, 0.0237562824, -0.00534485094, -0.0239689499, -0.011384, 0.00028577281, 0.0150243789, -0.0108773503, -0.005182222, -0.01718859, -0.00988906808, -0.0161502697, 0.00850047078, -0.00329948356, -0.0123660266, 0.00215795613, -0.029248124, -0.0100204227, 0.000220095884, 0.0274467, -0.00898835622, -0.0185021274, 0.017588906, -0.00962636061, 0.00687418506, 0.0106459167, -0.0110712536, -0.00308368797, 0.00826903805, 0.00628934754, 0.0188899357, -0.00892580673, -0.00119000336, -0.00910094567, -0.0122659476, -0.0082940571, 0.000860055, -0.00135966879, 0.000716582173, -0.00876943301, -0.0258204136, -0.0316750444, 0.00378736947, -0.0211917553, -0.00394374318, 0.00341832754, 0.00679287082, 0.00605791435, 0.00564821577, 0.011258902, -0.0256702956, -0.0264709294, -0.0424585678, -0.0143613545, 0.00447854074, 0.0198907256, 0.0130102858, 0.00405945955, -0.00271308259, -0.0132479742, 0.0527417, -0.0211292058, 0.0151619874, -0.0157624613, 0.040932361, -0.0065051429, 0.00826903805, 0.0285225511, 0.0140986471, 0.0191651527, 0.00484132767, 0.0308744106, -0.0340519212, 0.0122409277, 0.00738709047, 0.0214794818, -0.0151369674, 0.0130353058, -0.000196542111, 0.0187147968, -0.0058796485, 0.0111275474, 0.0112463916, 0.010264365, 0.0189274643, 0.0077999169, -0.00432842225, -0.00103284779, -0.00973895, -0.0157999918, 0.00732454099, -0.00699928403, 0.00952628162, -0.00204849453, 0.0103081502, -0.000709936314, 0.00147147593, 0.00537612569, 0.000878819788, 0.0127538331, -0.0188649148, -0.0091509847, 0.0237312634, 0.0124285761, -0.0240565203, -0.00373732974, -0.0132229542, -0.0082940571, -0.0113965105, 0.0354029909, 0.00959508587, -0.0195154287, 0.0153746558, 0.00872564875, -0.0124723613, -0.00225647143, 0.0126162246, 0.0039906553, 0.00491951453, -0.00951377209, 0.00741211, 0.0197781362, 0.00468182657, -0.0141737061, 0.0128101278, 0.00340269017, 0.0122471834, -0.0112714116, -0.00690546, 0.00376860448, -0.0149368094, 0.0161502697, -0.00292887818, 0.0113527253, -0.00309776166, 0.0221675262, -0.00627996493, 0.000550044235, 0.0151744969, -0.0216296017, -0.0113965105, 0.0123597719, -0.000354577205, -0.00550747942, 0.00998914801, -0.00262082205, -0.00736207049, -0.00478190556, 0.0183770303, 0.00371231, -0.0225428231, -0.00292887818, -0.0219173282, -0.00134012208, 0.00724322675, -0.0200408455, 0.0131854247, 0.0264459085, 0.0229806695, 0.0256202556, 0.0249071922, -0.00570763741, 0.0123159876, 0.00449105073, 0.0114215305, -0.0339018032, 0.0166381542, -0.0113277063, -0.0270964224, 0.00555439154, 0.00548871467, -0.00756848371, 0.00664900709, -0.0120782992, -0.00339643541, -0.0188273862, 0.0310745686, -0.0252199396, -0.0108273104, -0.03447726, 0.00515094725, 0.0252824891, 0.0196280181, -0.0225052927, -0.017363729, -0.00654267287, 0.00558879366, -0.0155873233, -0.040632125, 0.0167382341, -0.00802509487, -0.000451528875, -0.0256953146, 0.00361848576, -0.0177515354, -0.0014550566, -0.0104707787, 0.0174012575, 0.0124973804, -0.00167319784, -0.00654267287, -0.00450356072, -0.00516658463, -0.0119907297, 0.0123034772, 0.00579207949, -0.0163128972, -0.000452701672, -0.0223051347, -0.0253450386, -0.0059015411, -0.0259955525, -0.00893206149, -0.0424585678, 0.0357532687, -0.0069429893, -0.0193778202, 0.0125474203, -0.017113531, -0.00627683755, 0.0253575481, -0.0118343569, 0.0242316574, -0.00283974526, 0.00351840677, -0.00714940252, -0.00382802659, 0.0148367304, 0.00189993961, 0.00948875211, 0.000340308121, -0.0257453546, 0.00756848371, 0.0241315793, -0.00619865069, -0.0131353848, -0.00545744, -0.00466931658, -0.0337266661, -0.0043096575, -0.0104832882, 0.000197421716, 0.00921978895, 0.00352153415, -0.00482881768, 0.00911345519, 0.00259267492, -0.00515094725, 0.00539801782, 0.0164755266, 0.000421426928, 0.00601100223, 0.0215420313, -0.0314748846, 0.0158750508, 0.04010671, -0.00926982891, 0.03437718, 0.0127350688, 0.0349776559, -0.0223927051, -0.00359659363, 0.00646135863, -0.00774362218, -0.0136608006, -0.00407509692, -0.0144614335, -0.0212543048, 0.0134231122, 0.0178015735, -0.00573891215, 0.0136858206, -0.00549809681, -0.0278470162, 0.00102659292, -0.00788123067, 0.0256702956, -0.00512592774, 0.00108679675, -0.0234060045, 0.0102205807, -0.011609179, 0.00597972795, 0.0172511395, -0.0116216885, -0.00564196054, 0.0167507436, -0.00020914973, 0.0328759924, 0.00335577806, -0.0103707, 0.0365288816, 0.0232308675, 0.01482422, 0.00386242871, -0.00881321821, -0.00412513642, -0.00772485742, -0.00174043851, 0.0162128191, 0.00277875946, 0.00364663312, 0.0320503414, -0.0134106027, -0.00946998689, -3.60636695e-05, 0.000553562655, -0.0161127392, 0.00710561778, -0.0111400578, 0.0118718864, -0.000930423092, 0.0254075881, -0.0321754403, 0.00786246639, -0.0270463843, 0.0103707, -0.00523226196, -3.44266336e-05, -0.0183770303, 0.0223801937, 0.00659896713, -0.00724322675, -0.0165130552, 0.0140110776, 0.00693047931, -0.0349526331, -0.0237312634, -0.00574829476, 0.0192527212, -0.017076, 0.00643008389, 0.00523226196, 0.000187941565, -0.00122987863, -0.0106146419, 0.000202699317, 0.000371387374, -0.0408573039, 0.00173418364, 0.00337454304, 0.0191276222, -0.0153621454, -0.0333263502, -0.0324756764, -0.0277219173, -0.00659271237, 0.000598129118, -0.0221925452, 0.00341520016, -0.00960134063, 0.0308744106, 0.0327508934, -0.00723697152, -0.0166631751, 0.020253513, -0.00849421602, 0.00160048413, 0.0159876402, 0.00413764641, 0.0330261104, 0.00580146164, 0.0106146419, 0.0151870074, -0.00683665508, -0.0108961146, 0.0101955608, 0.0143863745, 0.0113026863, -0.00553249894, 0.00394999795, -0.0186522473, 0.0211041849, 0.0145114735, 0.0148117105, -0.0207038689, 0.000506650598, 0.0113527253, 0.0236937329, 0.0341269821, -0.0295984019, -0.0372294337, 0.0271714833, 0.0127725983, -0.00706808828, 0.014498963, -0.0216421112, 0.00995787326, 0.00346211228, 0.00164817809, 0.00934488792, -0.011784317, -0.0184395779, -0.0176014155, 0.0105958777, -0.00144723803, 0.00712438254, 0.00608293433, -0.00171385496, -0.0167382341, -0.00489449454, 0.0125661856, -0.0166131351, -0.00325257145, -0.00995787326, -0.0407071859, 0.00369667262, -0.000408917054, -0.00427212752, 0.0106646819, -0.00427525491, 0.00678661559, 0.00532921357, -0.0171510596, 0.00753720896, -0.00941994786, -0.0412576199, 0.00023045564, -0.0075809937, -0.00371231, -0.011709258, -0.0258954745, 0.00276624947, -0.00195779791, -0.0015653, -0.00236124196, 0.000859273132, -0.0274967402, 0.00942620263, 0.0265960284, -0.0108961146, -0.0117030023, -0.00820648856, -0.00497580878, -0.0178516135, 0.0200658645, 0.0107272314, 0.0502397195, -0.0272965822, -0.0168508235, -0.00709936302, -0.00614548381, 0.00172323745, -0.00842541177, 0.00597972795, 0.00114309124, -0.028572591, 0.0148367304, 0.0244443268, -0.0196405277, 0.00496642664, 0.00235342328, -0.00359972101, 0.0300987978, -0.0191901717, 0.0243817773, -0.0464367159, -0.0144614335, -0.0340018831, 0.0436345, 0.0103206597, 0.0250197817, -0.014624062, 0.00510090776, 0.00907592569, -0.0165756047, -0.00487260241, -0.0295984019, -0.0157874823, -0.014398884, -0.0256077461, 0.0151119474, -0.0102581102, -0.0225553326, -0.0138734691, 0.0130478162, 0.014549003, 0.0254075881, 0.0194904096, 0.0263958685, -0.0301488359, 0.0189149547, 2.33460942e-05, -0.0348275341, -0.0134731522, -0.00712438254, -0.00742462, -0.0175263565, 0.0184645988, -0.0419081338, -0.00771234743, -0.00698051881, -0.00106568635, -0.0258704536, -0.0335265063, 0.00668028137, 0.00292418688, 0.00952628162, -0.0088757677, -0.0166506637, 0.00941994786, -0.00660522236, -0.00676159607, 0.0260455925, 0.00461302232, -0.00241910014, 0.0203911215, 0.0205162205, -0.0107459957, 0.0148742599, 0.00356219127, 0.0105270734, -0.0326257944, -0.00734330574, -0.00570451, 0.0165505856, -0.000317829399, -0.0204912014, 0.00420019589, -0.0132354647, -0.00693047931, 0.0154121853, -0.0106021324, -0.00359659363, 0.0144614335, -0.0187648367, 0.00967014581, -0.0052041146, -0.00574516738, 0.0066364971, -0.0122722024, -0.00517284, 0.000136533723, 0.0130853457, -0.0333763883, -0.0155873233, -0.0021735935, 0.00250197807, 0.0193402916, -0.000521897, 0.00234091328, 0.00631123967, -0.00682414556, 0.0187648367, -0.00453483546, 0.0611483455, -0.00992659852, 0.00790625066, 0.00893206149, 0.00170916377, 0.0181518514, 0.00711812777, 0.00643008389, 0.0001589147, 0.00335265067, -0.00702430354, -0.011258902, 0.00393748796, 0.0111588221, 0.00757473893, -0.0163879562, 0.00861931499, -0.00547620468, 0.023518594, 0.0258454345, -0.000969516521, -0.00908218, -0.00666777184, -0.00267398916, -0.0256702956, -0.0257703755, 0.000658333, -0.00813768432, 0.00161064847, -0.0184395779, 0.000298282714, 0.0116904927, 0.00375922211, -0.00298986398, 0.0329760723, 0.0270463843, -0.00866309926, -0.0138109196, 0.000860836823, 0.0187273063, 0.00751218945, -0.0015582632, 0.0129477372, 0.0121283391, 0.0396813713, 0.00633625966, 0.00967640057, -0.00880070776, -0.0120157497, 0.00843166653, 0.0136357807, 0.0144113936, 0.00596096274, 0.0102205807, 0.0221550167, 0.00125333469, 0.0105958777, -0.0226053726, 0.000523851661, -0.0116404528, 0.003605976, -0.00309150666, 0.0158125013, 0.00436907914, -0.00602038484, 0.00716816727, 0.000436673377, 0.000267789845, 0.00894457195, 0.00419081328, 0.0190650728, -0.00981400907, 0.0116654728, -0.011509099, 0.00698677404, -0.00189524842, -9.27979781e-05, -0.000361614017, -0.0170885101, -0.0116654728, -0.00168883521, -0.00952628162, 0.0142487651, 0.0011970402, 0.0142737851, -0.0168633331, 0.0114778243, -0.0047037187, -0.00233622198, 0.0242691878, -0.0120532792, -0.000245897536, -0.00227367273, 0.00396250794, 0.0136232711, -0.00534485094, -0.00795003586, -0.0217171703, -0.0139235081, 0.00678661559, -0.00210948032, 0.0285976101, -0.00314311, 0.00143707369, 0.0354029909, 0.000403834914, 0.0164880361, 0.0157874823, 0.00314311, 0.0109461546, -0.010489543, -0.00824401807, 0.00186866487, 0.00957632158, 0.0197155885, 0.00232996722, -0.0125536751, 0.000497268164, 0.000500786584, -0.0191776622, -0.00526979147, -0.0105208177, -0.01143404, 0.00735581573, 0.00427212752, -0.00564196054, 0.0165881142, 0.00859429501, -0.0178766344, 0.0224427432, -0.0149117894, 0.0265209675, -0.0100454418, -0.0245944448, -0.0335265063, -0.0123597719, -0.00159344729, -0.0175763965, 0.0322004594, -0.00676785083, 0.0264709294, 0.0300487578, -0.0190775823, -0.0229806695, 0.00827529281, 0.00596409058, -0.00120251323, 0.00642382866, 0.0258704536, 0.00626432756, -0.0114965895, -0.0196530391, -0.0170009416, -0.0106083872, -0.0016966539, 0.0156498738, 0.014223746, 0.0284975301, -0.0279971361, -0.0319752805, -0.0130353058, 0.00104535779, -0.00321504194, -0.00345585728, -0.00431903964, 0.00289916713, -0.00987030379, 0.00756848371, -0.00222676061, -0.0224552546, -0.0257953946, -0.0104770334, 0.00140970829, 0.0217046607, -0.0261706915, -0.0106521714, 0.0198657066, 0.0137108397, 0.0123973014, -0.00600787485, -0.00925731938, 0.00404382218, -0.00424398063, -0.0137108397, 0.0164254867, -0.0105833672, -0.0191276222, 0.00278814184, -0.000502350274, -0.0177014954, -0.000713454676, -0.0123410067, 0.00828780234, -0.0131854247, -0.0211792439, 0.0152120274, -0.0111150378, 0.00229712878, -0.014498963, 0.0304240547, -0.00942620263, 0.00459738495, 0.0181893818, -0.00390621345, 0.0337016471, -0.0174888279, 0.00891955197, -0.0063174949, 0.0323005393, -0.000182566218, -0.0533922128, -0.00970142055, 0.00788748637, -0.0116967475, -0.0101330113, 0.0169759225, -0.00616737595, 0.00351215177, 0.000747075, 0.000359463884, 0.0126850288, -0.0113714905, 0.0324256383, -0.0109711736, 0.0134981722, 0.010214326, -0.00548245944, -0.0322755165, 0.00466306182, -0.0156123433, -0.0139985681, 0.00714314776, -0.0126162246, 0.0129727563, 0.0220674463, -0.01145906, 0.0213668924, -0.00443162862, 0.0182394199, 0.00109774293, -0.00898210146, 0.00811266433, -0.0103769545, 0.0095513016, -0.00684291031, -0.0235561244, 0.0479629189, -0.00552937156, -0.00774362218, -2.42379137e-05, 0.00541365519, 0.0143863745, 0.0181518514, -0.016913373, 0.0372044146, -0.0120220045, 0.00679912558, 0.00250510569, -0.00113996374, -0.00676159607, 0.0091072, 0.014373864, 0.0119969854, -0.0107397409, -0.00394687057, -0.017063491, -0.017513847, 0.0210666563, -0.0428338647, -0.00651139813, -0.00808764435, 0.0163379163, 0.0121220844, 0.00122831494, -0.00608606171, -0.00534485094, -0.00111885334, -0.0120782992, -0.00860055, 0.00262864074, -0.00153246161, 0.0113652358, 0.00788748637, -0.0148867695, 0.00119234889, 0.00298517267, -0.00157311873, 0.000141713608, 0.0131604047, 0.022993179, -0.000949969806, 0.0198782161, -0.00262707705, 0.0168883521, -0.00838162657, -0.00298517267, -0.0346023589, -0.00580458948, 0.00147538527, -0.00132448471, -0.00502584875, -0.00200783741, 0.0148867695, 0.00266460679, 0.0270213634, 0.00423147064, -0.0283724312, 0.0283223931, 0.00707434304, -0.0131478952, 0.0239564404, -0.00194685173, -0.00919477, 0.0124035561, 0.00510090776, 0.0151995169, 0.00523226196, 0.0226429012, -0.000392693299, 0.0136107607, 0.00033503052, -0.00506025087, -0.0120032402, -0.00393123319, 0.0106021324, -0.00351527915, 0.000427681895, 0.0141361766, 0.00703055831, 0.0244318172, -0.0039687627, -0.00605165958, -0.002123554, -0.00668028137, -0.0100829722, 0.00585775636, -0.00846294127, 0.0147992009, 0.00898210146, -0.0044191191, -0.0258454345, 0.0176014155, 0.0102018155, -0.0141862156, -0.00390934059, 0.00500395615, -0.00971393, -0.00816270337, -0.0277469382, -0.00110634346, 0.00874441396, 0.00209697033, -0.0162378382, -0.0226679221, -0.00236124196, -0.000717364, 0.0185271483, -0.0218797978, 0.00960134063, -0.0048256903, 0.0139360186, 0.0209790859, 0.00481318031, 0.017463807, -0.00516971247, 0.0328759924, 0.016913373, -0.0257703755, 0.00643633865, 0.0107710157, 0.0186522473, -0.0144364135, -0.0237312634, -0.017263649, -0.0162503477, -0.00438471651, -0.00601100223, -0.0230181981, -0.000500786584, -0.014398884, -0.0339768641, 0.0266460665, -0.00671781134, 0.00077561324, 0.000621194253, -0.00199845503, 0.00335890567, 0.0247946028, -0.000556299172, 0.029248124, -0.00480692554, -0.0188524053, -0.00138156104, -0.00867560878, 0.00987655856, 0.00785621163, -0.0159000717, 0.0215170123, 0.00600162, 0.000758021197, -0.0054511847, 0.00697426405, 0.0365789197, -0.0102456007, -0.000379792473, 0.00511654513, -0.0293982439, 0.00352466176, -0.000615721161, 0.00082643464, -0.0150368884, 0.0169383921, 0.0118531212, -0.0258704536, -0.0126850288, -0.00656143762, 0.00699928403, 0.00918225944, -0.00603602221, -0.0132980142, 0.0139985681, -0.0090509057, 0.0166256446, -0.00939492788, -0.00354029913, -0.0174262784, 0.00489136716, 0.00282879896, 0.0128726773, 0.000220877759, 0.0039844, -0.0131478952, -0.00598911, 0.00727450149, -0.00497580878, 0.00810015388, 0.00750593422, 0.0229056105, 0.00225490774, 0.0122659476, -0.0108898599, 0.012803873, -0.00752469944, -0.00498519139, 0.0143863745, -0.00305084954, 0.0147616705, 0.0149743389, -0.014674102, 0.0153246159, -0.00856927503, -0.00745589472, 0.02052873, 0.00851923507, 0.00799382, -0.0134731522, -0.0136232711, 0.0177265145, -0.00872564875, 0.00997663755, -0.0154121853, -0.000124414772, -0.00930110365, -0.0142862955, 0.00313841878, 0.000412826397, -0.0115153547, 0.00505086826, -0.00790625066, 0.00124160666, -0.016988432, 0.0113527253, -0.017989222, 0.0022768, -0.00140579895, -0.00962010585, 0.00440973649, 0.0105083082, 0.0267711654, 0.0168883521, -0.0276468582, -0.0109211346, 0.00208602427, -0.00598911, -0.00702430354, -0.00231745723, -0.00305084954, -0.00888827723, -0.0124035561, -0.000272676523, 0.00199689134, 0.0192402117, 0.00283349026, -0.00220643193, -0.011659218, -0.0187648367, -0.00554813631, 0.0090133762, 0.00673657609, 0.0119094159, -0.028997926, 0.000329361967, -0.020403631, 0.00766856316, -0.011984475, 0.00118687586, -0.00933237839, -0.00841915607, 0.0122847129, -0.000356336415, -0.0210916754, 0.00295546162, -0.0190900937, 0.0161127392, 0.00840664655, 0.0201159045, 0.00513843773, 0.00376860448, 0.00068882585, -0.00841290131, 0.00372794736, -0.0229806695, 0.0140861366, -0.0154497148, -0.0215545408, -0.00718067726, -0.00446915859, -0.000990627, -0.00121502311, -0.00173418364, -0.014624062, -0.00526666408, 0.0155623043, -0.00261925836, 0.00749967946, -0.0112213716, 0.0216045808, -0.0105583481, 0.00539489044, 0.0038092616, -0.0155247739, -0.0193027612, 0.0155372843, 0.00106490438, 0.00646135863, -0.020203473, 0.00162315834, 0.00093198684, -0.0155998338, 0.000611420895, 0.000492576917, 0.0220674463, 0.029448282, 0.00224552536, 0.034927614, -0.00673032133, 0.0103519345, 0.0109899389, 0.00661147712, -0.0257453546, -0.0145615125, -0.0145364925, -0.00886951201, 0.0214544628, -0.00517284, 0.00321504194, 0.00066497887, 0.0141486861, -0.0117030023, -0.0140986471, 0.00335265067, -0.0111900968, -0.00112198084, 0.00238313409, 0.0296734609, -0.00101251923, 0.00318220351, -0.00752469944, 0.0139985681, -0.0106396619, -0.0274967402, -0.0105083082, -0.00411575381, -0.0277219173, 0.0181018114, -0.0082940571, 0.00837537181, -0.000283427216, -0.0030743056, 0.00588590372, 0.0008741286, 0.0216045808, 0.0103456797, -0.0119031612, -0.00048475826, 0.0127851078, -0.00444101123, 0.00293513318, -0.0086130593, -0.00488198502, -0.00418455852, 0.0257453546, -0.00408135168, 0.014423904, 0.0115278643, 0.0083378423, 0.0121033192, 0.0259204935, -0.0317000635, 0.0176514555, -0.00567949051, 0.00910094567, 0.00983902905, 0.0127225583, 0.0210916754, 0.00742462, 0.017463807, -0.00431903964, -0.007312031, 0.00592656061, -0.00644259388, -0.000357313751, 0.0121408487, 0.00194685173, 0.0488636345, 0.0173261985, 0.0199657846, 0.00367478048, -0.00830031279, -0.0213794038, -0.0140611166, 0.00706808828, 0.0137859, 0.00687418506, 0.0234060045, 0.00481318031, -0.00749967946, -0.004347187, -0.017338708, -0.0180767924, -0.00573891215, -0.00576705951, -0.0128601678, -0.0140235871, 0.0208790079, 0.00358095625, 0.0154372053, -0.0114090201, 0.00470684655, -0.00878194347, -0.00699928403, -0.0380801074, -0.0262957904, -0.00998914801, -0.00768107269, -0.00485383766, -0.00260674837, 0.0156999119, -0.00353091653, 0.028572591, -0.0123284971, 0.00478816079, -0.0100329323, 0.0315499455, 0.0243817773, 0.00410324428, 0.0159376, 0.00370605499, -0.0088757677, -0.00732454099, -0.02052873, -0.00423147064, -0.0127600888, 0.00158171926, -0.0102268355, -0.0269963443, 0.00885074772, 0.0182269104, 0.0222175661, 0.00189055724, 0.000462865952, -0.00384053634, -0.014423904, 0.0111713326, -1.07201458e-05, 0.00200158241, 0.0134481322, 0.000398166361, 0.00482256291, 0.00964512583, -0.00454421761, 0.00330886617, -0.0142612755, -0.00930735841, 0.00107428688, 0.007312031, 0.0158875603, -0.00743713, 0.00283192657, 0.0186272264, -0.0205912795, -0.0117655518, -0.00060712063, 0.000935114338, -0.0161252487, 0.00478190556, 0.00363412313, -0.0100579523, 0.0115466295, 0.0223801937, -0.0163379163, -0.00341832754, 0.000519942318, -0.0243942868, -0.0245068762, 0.0146615915, 0.00715565728, -0.0114528053, -0.0115528842, 0.0209290478, -0.0218422692, -0.00691171456, -0.0107022114, -0.00668028137, -0.0121533591, 0.0122471834, 0.00309307035, -0.000227523633, 0.0166631751, 0.0192277022, 0.00105161266, -0.0150869284, 0.0240815394, 0.00499770138, -0.00182175287, -0.00453483546, 0.0136482911, 0.0170134511, -0.0169258825, -0.0122659476, -0.0132729942, -0.0215420313, -0.0160001498, -0.0204286519, 0.00212668139, 0.0324006155, -0.000752548105, -0.0156498738, 0.000809233577, 0.023118278, 0.00448166812, -0.0220048968, 0.0140611166, -0.00409386167, -0.00299924635, -0.00229712878, 0.00268806284, 0.0012212781, -0.0147992009, 5.57081075e-05, 0.0240565203, -0.0164129771, -0.0143113146, -0.00328697381, -0.00945122261, -0.0168633331, -0.000357900164, -0.00108836044, -0.00592030585, -0.0112964315, 0.00212199031, 0.00664900709, 0.0269463044, 0.00352778914, -0.00297891768, -0.0150118684, 0.00392185058, -0.00884449296, -0.0112901758, 0.0019046308, -0.00369667262, 0.0209540669, 0.0106646819, -0.010264365, -0.00512905512, -0.00775613217, 0.0121658687, -0.0025473265, 0.0340769403, 0.0360034667, 0.0028053429, -0.00779366167, -0.00181549788, 0.00136514183, 0.0107835261, 0.0159376, 0.0111463126, 0.00212511769, -0.0175013375, -0.000993754482, 0.00608606171, 0.020303553, -0.0175513774, 0.0104457587, -0.000764667057, 0.0193528011, 0.0123159876, 0.0105771124, -0.00747465948, -0.00357470126, -0.0298986379, -0.0148992799, 0.00916975, -0.00769358268, 0.0209165365, -0.017313689, 0.0116467085, 0.0221925452, -0.00420332327, -0.0202410035, -0.00957006589, 0.0133855827, 0.00566698052, 0.00463491445, 0.0051321825, -0.0111963525, 0.00735581573, -0.00559192104, 0.0118781412, -0.0164505057, -0.00570451, 0.0125098908, 0.00263333204, 0.0138359386, 0.00571702, 0.00953879114, 0.00551373418, -0.0137108397, 0.00680538034, 0.00218610349, 0.00458800234, -0.0221925452, -0.00860680453, 0.0154121853, -0.0111775873, -0.00577018689, -0.00698677404, -0.00875066873, -0.0188649148, 0.0186522473, 0.0010586495, 0.00474124867, 0.00732454099, -0.0199157465, 0.00410011644, 0.00316812983, 0.0120720444, 0.0150744179, 0.0258704536, -0.0313247666, -0.0243942868, 0.00754971895, 0.00163566822, 0.000651687093, 0.0090133762, 0.0160501897, -0.00384366396, 0.00980775431, -0.00868186448, 0.00915724, -0.0122284181, -0.0038749387, -0.0027506121, 0.0117280222, -0.00250979676, 0.0113089411, -0.00840039179, -0.0151244579, 0.0207163785, 0.00666777184, 0.00366227049, -0.00655518286, -0.000713845657, -0.000118941694, -0.0192151926, -0.00145349291, -0.0127225583, 0.00193590554, -0.00100157317, 0.00536048831, -0.0245193858, 0.0091072, -0.00199063634, 0.00373107498, -0.00316031114, 0.00145271106, 0.00511654513, -0.00447228597, -0.0161002297, 0.00721820677, 0.00566072529, 0.00146365725, 0.0147116315, 0.00311496272, -0.0260455925, -0.0071744225, -0.0134606427, 0.000727137376, 0.00809389912, 0.0163379163, -0.0260455925, -0.000871783, -0.0190025233, -0.00823776331, -0.0336265862, 0.00409073429, 0.0184270684, 0.000961697835, -0.00359033863, 0.0106334072, -0.0163879562, -0.0217922293, -0.0053135762, -0.010389464, -0.0262457505, -0.00998914801, -0.0175638869, -0.0088757677, 0.0406071059, 0.0160251707, 0.0427337848, 0.00933237839, -0.00865059, -0.0153746558, -0.00517596724, -0.0025410715, -0.0158125013, 0.00439097174, -0.0047256113, -0.00643633865, -0.00302739348, -0.00254263519, -0.00886325724, 0.00409073429, 0.0108398199, 0.0363537408, -0.0144364135, 0.0129102068, 0.0127225583, -0.00248164963, -0.0209540669, -0.0223551746, 0.0193903297, 0.0190900937, -0.0146991219, 0.0149993589, -0.0279220752, 0.00240971777, -0.00870688353, 0.0145114735, 0.0107209766, 0.00550435204, -0.0116529632, -0.00350902439, 0.0243192278, -0.00384053634, -0.0156123433, 0.00163879571, 0.00336203305, -0.00101173739, 0.00529481098, -0.014523983, -0.0056325784, -0.00339018041, 0.00250041438, 0.0306242127, 0.0169008616, 0.000803760486, -0.00435344176, 0.00623618066, -0.0301738568, 0.0136983301, 0.00794378, 0.00642382866, 0.00776238693, -0.0209665764, -0.00620490592, -0.0154372053, -0.00351527915, 0.0125536751, -0.00420645066, 0.00931361318, 0.00059695635, -0.0196155086, 0.0104582682, -0.0105458377, 0.00823150761, -0.00211729901, 0.00536987046, 0.0190275442, -0.000279713335, -0.00181706157, -0.0389808193, 0.0109336441, 0.00845043082, 0.0104707787, 0.0023330946, 0.000740038231, -0.0032338067, -0.00854425505, 0.0250823312, -0.00702430354, -0.0020578769, 0.00381238922, 0.00763728842, -0.0248946827, 0.017588906, 0.0133480532, 0.00246757595, -0.0013745242, 0.00916349515, 0.0119281812, -0.0171385501, 0.00862557, -0.00570763741, -0.0255952366, 0.00546682207, -0.0180267524, -0.00546369469, 0.00131432037, -0.00724948151, -0.00388432108, 0.00968265533, 0.0172761586, -0.0137984091, 0.0169258825, 0.00823150761, 0.00596096274, 0.0108398199, -0.00152151543, -0.020103395, 0.0022345793, 0.00276624947, 0.00697426405, 0.00409698905, 0.00201252871, 0.00636440702, -0.0300987978, 0.00903214142, -0.0217171703, -0.0344272181, -0.0172886681, -0.0122972224, 0.0210166164, 0.00339330779, 0.00224865275, -0.0136482911, -0.0318001434, 0.00257547363, -0.0143113146, -0.0287477281, -0.00660522236, 0.0125786951, -0.00632687705, 0.00760601368, -0.00531670358, -0.0181643609, -0.0115403738, -0.0233309455, -0.0139860576, 0.00686793, -0.00626745541, 0.0159125812, -0.014749161, 0.00405007694, -0.00367478048, 0.00783744641, -0.0250072721, -0.0220549367, 0.0270463843, -0.0289478861, 0.0064175739, 0.010414484, -0.00386242871, 0.00647386862, 0.046111457, -0.00295702531, 0.0262957904, 0.0180392619, 0.00583586376, -0.0128726773, -0.0200158246, 0.0174512975, 0.00800633, 0.0118155917, 0.00632374967, 0.00220174086, 0.0294232629, -0.00352466176, 0.0126162246, 0.0184145588, 0.0184645988, -0.0216045808, 0.00120407692, 0.0114215305, -0.00215326482, -0.0168758426, 0.00627683755, 0.00027209011, 0.00941994786, 0.00638004439, -0.000878037943, -0.0155497938, -0.0110212136, -0.0133105237, 0.00706808828, -0.000415953866, -0.00184833631, -0.0085567655, -0.00582335424, -0.0140736271, -0.00513531, -0.0340769403, 0.00194841542, 0.00897584669, 0.00984528381, -0.00300393743, 0.00308681559, 0.00782493688, 0.00140970829, -0.022717962, 0.00251448806, 0.00406884216, 0.00707434304, 0.0109148799, -0.0103394249, 0.00740585523, 0.00610795431, 0.0110462336, -0.022843061, 0.0141611965, -5.32159029e-05, -0.00766230794, -0.000917131372, 0.0121783782, 0.0139485281, -0.0101580312, 0.00132057536, 0.000417908537, -0.000340894534, 0.011333961, -0.00398752745, -0.000579755229, 0.0135231921, -0.00739334524, -0.0061486112, -0.0135857416, -0.000158719238, 0.00189055724, -0.0124285761, -0.000540270878, 0.029323183, 0.0213668924, -0.023393495, 0.00553249894, 0.0303239748, -0.00296171661, 0.000981244491, 0.0072619915, -0.000920258812, 0.0150994379, 0.0134231122, -0.00121111376, -0.00214701, -0.00718693202, -0.000758021197, 0.00496017141, 0.00768732792, 0.0194153506, -0.0179642029, 0.00532295834, 0.000117671159, 0.00227054511, -0.00399378268, -0.0135231921, -0.0134981722, -0.0112776663, 0.00940118264, -0.00683665508, -0.00967014581, 0.0048851124, -0.0176889859, -0.0045536, 0.0135607217, -0.0310995877, -0.0176014155, 0.00312590902, -0.00365914311, 0.00527604623, -8.64941685e-05, -0.0254826471, -0.0115403738, 0.0124160666, 0.0181518514, 0.0266210474, -0.0186397377, -0.00317907589, 0.00985153858, -0.0152245369, -0.0315249227, 0.010039187, -0.0127976183, -0.0269212853, -0.0212543048, -0.00569825526, -0.0065051429, -0.023443535, -0.0121721234, 0.00101173739, 0.00416892115, 0.00759975845, -0.00580146164, 0.000984372, -0.00587026635, 0.004434756, -0.00460989447, 0.0206913594, 0.0132354647, 0.00743713, 0.00821274333, -0.00355593651, 0.0164755266, 0.0156999119, 0.00346211228, -0.0156748928, -0.00143081869, -0.0090133762, 0.00226741773, 0.000714236579, -0.0212292839, 0.00234247698, 0.0178516135, 0.00963261537, 0.00287258369, 0.0185646769, 0.00393436057, -0.00217202981, 0.00331199355, -0.00759350369, 0.020303553, 0.016913373, -0.0231558084, -0.00222050562, 0.029298164, 0.0138359386, 0.00354029913, 0.00203285716, 0.00862557, 0.0194528792, 0.00334639568, -0.000825652794, 0.0134356227, 0.000663415121, 0.0154372053, 0.0102268355, -0.0107835261, -0.00995787326, 0.00878819823, -0.0152245369, 0.00172949233, 0.000736910733, 0.00457236497, 0.0157249328, -0.0171510596, -0.00628934754, 0.00654267287, 0.0213543829, 0.0126975393, 0.00165443309, 0.0118343569, -0.0190400537, 0.00908843521, -0.00895082671, 0.000482021715, -0.0264959484, -0.0143113146, 0.0327759124, 0.0111400578, 0.0317000635, -0.0175513774, -0.008794453, 0.00661147712, -0.00251448806, 0.000328971044, -0.0257953946, 0.010264365, -0.00944496784, 0.0111150378, 0.0121783782, -0.0100266775, 0.0031837672, -0.00735581573, -0.00873815827, 0.0111775873, 0.00275686709, 0.0161877982, -0.0256702956, -0.0133855827, 0.0221800357, -0.0114090201, 0.00459112972, -0.00678036083, -0.000258993823, -0.0186272264, -0.00372169237, 0.0212668143, 0.0003588775, 0.0113714905, 0.00899461098, -0.0133105237, 0.00952002686, -0.0162753686, 0.0271965023, 0.0135482112, 0.0133855827, 0.0113026863, -0.0168132931, 0.00982026383, -0.0172011, -0.0237437729, -0.020203473, 0.000769358303, -0.00964512583, 0.00574829476, 0.0311746467, 0.0108585851, -0.00327133643, 0.00298517267, -0.0113402158, 0.0146365725, 0.00134324946, -0.0250072721, 0.00810641, 0.0252574701, -0.0320253186, 0.000636831624, 0.0156123433, 0.00460051233, 0.00385617372, -0.0242816973, 0.000494140666, -0.0105395829, -0.0236937329, 0.0182269104, -0.0131979343, 0.0155372843, 0.0292731449, -0.0234935749, 0.014373864, -0.020178454, -0.0165756047, -0.00930735841, -0.0139235081, -0.00182018906, -0.00870062876, -0.0059390706, 0.00362786837, -0.00619865069, -0.0176264364, 0.00050000468, 0.00646135863, 0.00110008847, 0.00621741544, -0.00738083525, -0.0130227963, 0.0141486861, -0.00151056924, 0.00421583327, -0.0119344359, 0.00585150113, 0.00145583856, 0.0239689499, 0.0251448806, -0.00714314776, 0.00919477, -0.01482422, 0.0110712536, 0.0191526432, -0.0167757627, 0.0150619084, -0.00732454099, -0.00954504684, 0.0274467, -0.0190150347, -0.000916349469, 0.0135231921, -0.0139610376, 0.0161877982, 0.0129102068, -0.0155873233, 0.0102330903, 0.0166631751, -0.00789999589, -0.00682414556, 0.00528542884, -0.0169634111, 0.00647386862, 0.0131103657, -0.000264271453, 0.014198726, 0.0194278602, 0.0216546208, -0.00522600673, 0.00891955197, 0.00547620468, -0.0412326, 0.0159751307, -0.00554188155, 0.0166381542, -0.00378736947, -0.00253325282, 0.0100204227, -0.0176264364, -0.0208164584, -0.00895708147, -0.00240815384, -0.00386868371, 0.0216296017, -0.0205412395, 0.00154653518, 0.0123472624, 0.000776786, -0.0249697417, -0.00801258534, -0.00617050333, 0.00396563532, -0.0122033982, -0.00551998941, -0.00303833978, -0.00543242, 0.00214231876, -0.0081564486, -0.034777496, 0.0100704618, -0.00216264743, -0.00532295834, -0.0137859, 0.0160627, 0.0221049767, 0.0110087041, 0.00806887913, 0.011559139, -0.014373864, 0.0160251707, 0.010389464, -0.000807669829, -0.00964512583, 0.00607980695, -0.0167757627, -0.00168883521, -0.00282254396, 0.0097326953, 0.00630811229, -0.00345273, -0.0167757627, -0.0195154287, -0.000456220063, 0.00704932353, 0.0169509016, 0.00458174758, 0.0300737768, -0.0185146388, 0.00821899809, -0.00197499897, 0.0238063224, 0.0116216885, 0.00573578477, -0.0142737851, -0.00460676709, -0.0156123433, -0.00434093224, 0.00473812129, 0.00823150761, 0.00764354318, -0.00222206931, 0.0106771914, 0.000982808298, 0.0136357807, -0.0228680801, 0.00931986887]
15 May, 2023
Adhoc TCP 15 May, 2023 Pre-requisites: TCP Adhoc Transmission Control Protocol or ATCP is based on the feedback mechanism. Another point about ATCP is that the sender can change its state due to any of the following: Persist Congestion Control Retransmit Adhoc TCP is a variation of the standard TCP (Transmission Control Convention) intended to work on its exhibition in portable impromptu organizations (MANETs). In MANETs, hubs speak with one another without the requirement for any concentrated framework, for example, switches or passageways. Accordingly, the organization’s geography can change regularly, making it trying for standard TCP to give solid and proficient information move. pecially appointed TCP tends to this test by altering the TCP clog control calculation and different boundaries to further develop execution in these unique conditions. Impromptu TCP utilizes different methods, for example, adjusting the blockage window size and retransmission break, to guarantee that information is sent dependably and proficiently. The following illustrates the above conditions. There are three nodes A,B and C as shown in the diagram below. A is the source node, B is the intermediate node and C is the destination node. If node B detects that the network is partitioned, it sends the message to node A. Node A will in turn change its state to persist and avoids any retransmission. Different States In ATCP With State Transition Diagram ATCP State transition can be divided into the following states: Normal State Loss State Congestion State Disconnection State To understand the above states, we need to see some examples below. Consider the central node in the below diagram as the normal node which is in normal state in the ATCP protocol. When an adjacent node to a normal node receives three duplicate acknowledgments, the state of the node changes to loss state from a normal state. Upon the conversion to a loss state, the node will retransmit the segments in the TCP buffer. And whenever the node from the loss state sends an acknowledgment to its adjacent node, it gets turned back to the normal state. If a node receives ECN(Explicit Congestion Notification) message from the node in loss state or normal state, the receiving node converts its state from normal to congested state. upon going into the congestion state, the node starts transmitting the packets it has in store and converts into the normal state again. The details are depicted in the picture below. Upon receiving DUR(Destination Unreachable) message from the node of loss state or congested state or normal state, the state of the node turns to a disconnection state from the normal state. And on being converted to a disconnection state, the node replies back by sending the duplicate acknowledgment or the new packet. The following diagram explains the formation of the connection state and its reply. Advantages of Adhoc TCP It maintains end-to-end symmetries of TCP. It is compatible with traditional TCP which is the biggest advantage. It will also improve the throughput of TCP in a wireless network. Disadvantages of Adhoc TCP The dependency on the network layer protocol to detect the root changes in the partition. Addition of thin ATCP layer in the TCP/IP protocol stack requires changes in the interface function. Different states and state transitions in Adhoc TCP State name Description Trigger for state transition Normal state The node is in a stable state and is transmitting and receiving data normally. N/A Loss state The node has lost one or more segments, and retransmission is necessary. Receiving three duplicate acknowledgments from an adjacent node. Congestion state The node has detected congestion in the network, and it is limiting the amount of data sent to prevent further congestion. Receiving an explicit congestion notification (ECN) message from an adjacent node in normal or loss state. Disconnection state The node has lost contact with one or more adjacent nodes, and it is attempting to re-establish communication. Receiving a destination unreachable (DUR) message from an adjacent node in normal, loss, or congestion state. Persist state The node has sent a packet to an adjacent node, but it has not received an acknowledgment. It persists in sending the packet. If a node detects that the network is partitioned, it changes its state to persist and avoids any retransmission. Note: The state transition diagram includes four states – Normal, Loss, Congestion, and Disconnection state. However, Persist state is not included in the diagram as it is not a state transition but an additional state that the node can enter to avoid retransmission when the network is partitioned. 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!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP
https://www.geeksforgeeks.org/adhoc-tcp?ref=asr10
PHP
Adhoc TCP
What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, jQWidgets jqxTreeMap width Property, Difference between Flow and TypeScript, jQWidgets jqxTree destroy() Method, jQWidgets jqxTree collapseAll() Method, jQWidgets jqxScrollView buttonsOffset Property, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, jQWidgets jqxListBox enableHover Property, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxSlider buttonsPosition Property, jQWidgets jqxSlider rtl Property, jQWidgets jqxTooltip opacity Property, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, jQWidgets jqxToolBar height Property, PHP, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, Node.js date-and-time Date.transform() Method, TypeScript Optional Parameters, jQWidgets jqxToolBar theme Property, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, Steps to Diagnose and Resolve a Slow Network, How to use Optional Chaining with Arrays and Functions in TypeScript ?, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, jQWidgets jqxScrollView showButtons Property, jQWidgets jqxScrollView disabled Property, jQWidgets jqxSplitter destroy() Method, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, jQWidgets jqxTree collapseItem() Method, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), jQWidgets jqxSortable opacity Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, jQWidgets jqxSlider height Property, jQWidgets jqxSwitchButton onLabel Property, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, jQWidgets jqxToolBar tools Property, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTree width Property, jQWidgets jqxTree clear() Method, TLS Handshake?, Adhoc TCP, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, jQWidgets jqxTabs position Property, Differences between Wireless Adhoc Network and Wireless Sensor Network, jQWidgets jqxTabs keyboardNavigation Property, Impact of Three-way Handshake and Slow Start Algorithm, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, How to Sort an Array Having Optional Properties in TypeScript ?
GeeksforGeeks
[-0.0382570699, -0.00308469171, -0.0175775737, -0.00144217955, -0.020748429, 0.0403939523, -0.0122353695, 0.0229714755, -0.0429444239, 0.0168624073, 0.028985763, -0.0204727035, 0.0642098412, -0.0328631699, -0.0261078663, -0.0230576396, 0.00448486628, 0.0090300478, 0.00170928973, -0.0176292714, 0.0296750795, -0.0229370091, -0.0505269058, 0.00915067736, 0.00244276575, 0.0046054963, 0.0112272445, 0.0119165611, -0.0198867843, 0.0224889535, 0.0232989, 0.0189389735, 0.0372230969, -0.0201280452, 0.00332595268, -0.0214377455, -0.0104345297, -0.00470889406, -0.0147169093, -0.0101329535, -0.0111324629, 0.0206450317, -0.0346209258, -0.00725074904, -0.0232989, 0.0254013166, -0.0201969761, -0.0133124264, 0.00896111596, -0.00727659836, -0.0177499019, -0.0387051255, 0.0151132662, 0.0274692662, 0.00595397223, 0.0462876111, 0.0286583379, 0.0332595259, 0.00423929701, -0.00674668606, 0.0369473696, 0.0185598489, -0.0113564907, -0.00741877, 0.0393255129, -0.0251255892, -0.0441162623, 0.00856045075, -0.0163109545, -0.0173793938, -0.0615559705, 0.00135816913, -0.0271073747, -0.0068242345, 0.0276243631, -0.0113478741, 0.032449577, 0.0645200312, 0.0236952584, 0.00326779159, -0.0280896518, 0.0362235866, 0.0150874173, 0.00753078377, -0.00871123839, 0.0123473834, 0.00162527931, -0.0575924031, 0.0643821731, 0.0356721357, -0.0222649258, 0.0263835918, 0.0024363033, -0.0119682597, -0.0184219852, 0.0371886306, 0.0231093392, -0.0117356153, -0.0452191681, 0.00131831795, 0.00511817588, 0.00116753, -0.0208862927, 0.0186287817, 0.0358099975, -0.0457706228, -0.0239709839, 0.0483900234, 0.0181634929, 0.09140338, -0.0167676266, 0.0252289865, 0.0206622649, 0.0155010065, -0.0439094678, -0.0649336204, -0.00526034739, -0.0213171151, -0.00435346505, -0.00276588276, -0.0228163786, 0.0443230569, -0.0345864594, 0.00529050501, -0.0228336118, 0.00270772167, -0.00545421755, 0.0157336518, -0.00934024, 0.00626416458, -0.0119941086, -0.00886633433, -0.0131487139, -0.0210586227, 0.0115977516, -0.000648926944, 0.0342073366, 0.0121922875, 0.00500185369, -0.0223683231, 0.00748770172, 0.0308813844, 0.0235573947, 0.000915498589, 0.00237598806, 0.0167331602, 0.010736106, -2.7767881e-05, -0.039394442, 0.0554899871, -5.91708304e-05, -0.0165177491, 0.0221787617, -0.00090634363, -0.0104689961, -0.00397864915, -0.0208690595, 0.0538011603, -0.0105120782, -0.0127351237, -0.0146479774, -0.0231093392, -0.0117011489, -0.00757386629, 0.0141913053, 0.0065485076, 0.012356, -0.0152166635, -0.0327597708, 0.0293993521, -0.00973659661, 0.0285721738, 0.0071818172, 0.0226957481, -0.028503241, 0.00924545899, -0.00495877117, 0.0288651325, -0.022213228, 0.0273314025, -0.0270039774, -0.0192319322, -0.00541975163, -0.012071657, 0.0443575233, 0.0152425133, 0.0305194929, 0.0155527061, -0.0159318298, -0.025435783, 0.0008207176, 0.00263448176, 0.0507681668, 0.0341211706, -0.00338411378, -0.0149667868, -0.0378779471, -0.00122246, 0.0192491654, -0.0158628989, -0.0292614903, -0.028744502, -8.02744216e-06, 0.0106757907, 0.025349617, -0.00312992814, 0.0158542823, -0.000126083, 0.0359823257, -0.015096033, -0.0918169692, -0.032380648, 0.0165522154, -0.00493723, 0.0181634929, 0.0177326687, 0.0152683631, -0.0153976092, -0.0153286774, 0.014613512, 0.034241803, 0.0474249832, -0.012511096, 0.0337765142, -0.0595224872, -0.0118476292, 0.00482090795, -0.0431167521, -0.0190768372, 0.0048726066, 0.00866384804, 0.0309847817, 0.0085863, -0.0319498256, -0.0350172818, 0.00583765, 0.020110812, 0.0231438056, 0.013364125, 0.00185469247, -0.0366027094, 0.0304505602, -0.0477696396, -0.0320359878, -0.0257976744, 0.0341039374, 0.00447624968, 0.096090734, 0.00129354571, -0.00712581025, -0.0149495536, 0.00599274598, 0.0225234199, 0.0199557152, -0.0243501086, -0.00452794833, -0.00310623297, -0.0419104472, 0.0193697959, -0.0222649258, 0.0284860078, 0.00935747288, -0.0326046757, 0.0460118838, -0.0172156822, -0.00624693185, 0.050147783, 0.0317947268, 0.00765572255, -0.00391833391, 0.0159835294, -0.0272624716, -0.0188528094, -0.000896650075, 0.0219202675, -0.0162161738, -0.0251600556, 0.0367061086, 0.0200591125, 0.00853890926, -0.0113392584, -0.0350517482, 0.0179911628, -0.0121405888, -0.0271418411, -0.0150184855, -0.0324668102, 0.00954703521, -0.0580749214, -0.0282102823, -0.0427376293, -0.00113414123, 0.0166039132, -0.00651835, 0.0286583379, 0.00447194139, -0.0317774937, 0.0119079445, -0.00920237694, -0.0186115485, -0.00615645899, 0.00202271342, -0.013364125, -0.00940055493, -0.0409798734, -0.00518710725, 1.64419507e-05, -0.00554899871, -0.00331087387, -0.0250566583, 0.0394978411, -0.0370507687, -0.020352073, -0.00532066263, 0.0129246861, -0.00519572385, 0.00351336063, -0.0219547339, -0.032690838, -0.029554449, 0.0240571499, 0.0324151143, -0.0158542823, 0.0663811862, 0.0379813462, -0.0274175685, 0.022850845, 0.0338626765, -0.0112789432, -0.0077031129, -0.05280165, 0.00452794833, -0.052008938, 0.000177310532, 0.012071657, -0.0333973877, -0.0140534425, 0.0310537126, 0.0153286774, 0.0385672636, -0.0142171551, -0.0085087521, 0.00791852456, 0.0129160695, 0.0101157213, 0.0148633895, 0.0224027894, -0.00529050501, -0.0140189761, 0.0118562458, 0.00176421972, 0.00432115328, 0.0431512184, 0.0102708172, 0.0394633748, 0.0279690214, -0.00873708818, -0.0279517882, 0.00163389579, -0.022850845, 0.0550763942, -0.0100726392, -0.010822271, 0.0613491759, -0.0167245436, -0.0207656622, -0.00273357122, -0.0236263257, -0.0086983135, 0.034551993, -0.01743971, 0.040704146, 0.00680700131, 0.0195076596, -0.0331044309, 0.0186115485, -0.0191113017, -0.0253840834, 0.0028886674, 0.0148375398, -0.00210564677, -0.0160352271, 0.0188183431, 0.0293821208, -0.0136226192, 0.0147513747, 0.0306228902, -0.012881604, -0.042806562, 0.0430822857, -0.00608321885, 0.0065528159, -0.0418759845, 0.0275898967, 0.0055102245, -0.0380502753, 0.00948672, 0.0092196092, 0.0169054903, -0.0592467599, 0.0190768372, 0.00331518194, -0.0209552236, 0.0478730388, -0.000108513508, 0.0336558819, -0.0461497456, -0.00980552845, -0.0145962788, 0.0217479393, 0.00335826422, -0.0396701694, -0.0121319722, -0.015423459, -0.00297052367, 0.0194904264, -0.00934885629, 0.0252979193, -0.0137949483, -0.000166270707, 0.0309330821, 0.0301231351, -0.0181117933, -0.00865092315, 0.0250049587, 0.0304160956, 0.0157939661, -0.0215239115, -0.0114081893, -0.00754370866, 0.0582127869, -0.0150529509, -0.00475197611, -0.0100209396, -0.0198695511, -0.0797539279, -0.00875001214, -0.00394633738, -0.00995200872, -0.0110549144, -0.0309330821, 0.018008396, 0.0156302545, -0.0381192081, -0.0429444239, -0.011830396, -0.0235918611, -0.02116202, 0.0222993921, -0.0031967056, -0.04197938, 0.041014336, 0.0194042623, -0.00122569106, 0.0103225159, -0.0171036683, 0.0046054963, -0.02979571, 0.0472526513, -0.0055016079, 0.0434269458, 0.0101071047, 0.0220753644, -0.0237469561, 0.0486657508, 0.00598843815, -0.0102191186, -0.000503255, -0.00114060356, 0.00567393703, 0.0496652611, -0.0415313244, 0.0317602605, 0.0502167158, 0.0103742145, -0.017680971, -0.0229025446, -0.0146307452, -0.0275898967, -0.0180428624, 0.0092196092, 0.0477007069, 0.0312949717, -0.0153631438, -0.00270125945, -0.0252979193, -0.0140362093, 0.0204382371, -0.00521726487, -0.0218168702, 0.0101415701, 0.0119510265, -0.0131831802, 0.00391402561, -0.024712, -0.0402905568, -0.0141999219, 0.0106671741, -0.000278150022, 0.0203693062, -0.0227129813, 0.0102880504, 0.00878447853, 0.0298301764, -0.0267799497, -0.0392221138, 0.0177843682, 0.0328804031, -0.000988738495, -0.00808223709, -0.0127695901, 0.0269178133, -0.000483598677, 0.0227646809, -0.00224889535, 0.039394442, -0.0211964846, 0.00495446287, 0.000631694042, 0.0275726635, 0.0186804794, 0.00122892228, -0.00334533956, -0.00781943556, -0.00957288407, -0.00735845463, 0.0253668502, 0.0101157213, 0.00458395528, -0.0579370596, 0.000925192144, 0.00841827877, 0.00802623, -0.0062986305, -0.0169227216, 0.0078754425, 0.0254702475, 0.0252634529, -0.0288995989, 0.0234022979, 0.00321824686, 0.0186632462, -0.0203348398, 0.0142602371, 0.000996816438, 0.0156130213, -0.00336472667, -0.00804777164, -0.0114426557, -0.00125692575, -0.00809085369, -0.00620815763, -0.0267454833, 0.01675901, 0.000114235379, -0.0195593592, -0.00445470866, -0.0143377855, -0.00120091881, -0.00595828053, -0.00517418282, 0.0223855563, 0.0237124916, -0.00463565392, -0.00543267652, 0.000836873427, 0.0190251376, 0.0256942753, 0.0231093392, 0.0335524864, 0.0158025827, -0.016147241, -0.0234195311, 0.0121664377, 0.0539734885, 0.017680971, -0.000294844416, -0.00542836823, -0.0163368024, -0.0188528094, -0.0176982041, -0.0285204742, 0.0148806218, 0.00231136475, 0.0170175042, 0.00915929396, 0.00506647676, -0.0372575633, -0.0206967313, -0.0381881408, 0.023902053, 0.0017997626, 0.0124163153, 0.00904728, 0.00112983293, -0.0406007469, -0.00936608948, 0.0231093392, 0.0221098289, -0.0315879323, 0.0176034234, 0.0278656241, 0.00319455168, 0.00570409466, 0.00428022537, 0.0107533392, 0.00404758099, -0.00433838647, -0.0182841234, 0.00467873644, 0.00275942055, -0.00903866347, 0.0233506, 0.0522157326, -0.000639233447, 0.0137432497, 0.0210758541, 0.0104517629, -0.0233506, -0.0143291689, 0.0486657508, -0.0139500443, 0.00419406081, 0.00669067912, 0.00875432, 0.00448486628, -0.0202314425, -0.0305711906, -0.0248326305, -0.0157164186, -0.0101846531, 0.00551453279, -0.00650542555, 0.0208862927, -0.0109859835, 0.00217027031, -0.0145101147, -0.032053221, -0.018732179, 0.013321043, 0.0225406531, 0.0222993921, -0.0280379523, 0.0798917934, -0.0110118324, 0.0256598108, 0.0248670969, 0.00858199131, 0.0291236266, 0.00821148418, -0.0168710239, 0.013889729, -0.0107964212, 0.0231093392, -0.00634171255, -0.0349138863, 0.0104000643, 0.00613922579, -0.00460118847, 0.00599274598, -0.0133296596, -0.0534565, 0.0361891203, 0.00231998111, -0.0108998185, -0.0387395918, 0.0120027252, 0.00765572255, -0.00709996093, 0.0152683631, -0.050389044, -0.017637888, 0.0121578211, 0.0384638645, -0.0106671741, -0.00609614374, -0.00599274598, 0.0203003734, 0.00167374685, -0.0467356667, -0.0149754034, 0.0103052827, -0.0240743812, 0.0236952584, 0.0051483335, -0.0062900139, -0.0292097908, 0.0103311324, -0.0249187946, -0.000678007491, -0.00144648785, 0.0181290265, 0.0189389735, 0.00412728311, -0.0163195711, 0.0217824038, -0.00805208, -0.0191457681, 0.0185426157, -0.0183530543, 0.0316224, 0.0065614325, -0.00226182, -0.00790990796, -0.0115029709, 0.0265042223, 0.00612630136, -0.0161213912, -0.0475283787, -0.00610476, 0.0149754034, 0.0106413253, 0.00863799825, -0.00835796352, 0.0110893808, 0.0091334451, 0.000685546896, 0.00216057664, -0.0266765524, 0.0147513747, -0.0245569032, 0.0227646809, 0.0275898967, -0.0210241564, -0.036499314, 0.0153114451, -0.017396627, 0.0283826105, -0.0227474477, 0.00306315068, 0.0160007607, -0.00585488277, -0.00587211596, -0.00433838647, 0.00623831525, 0.000464480923, -0.0144067165, 0.0101501867, 0.0236090943, -0.00780220237, 0.0404628851, -0.00599274598, -0.00712150196, 0.0118131628, -0.0209552236, -0.0139845107, 0.0266248528, 0.0120888902, -0.00456672255, -0.0297267791, -0.0254530162, -0.0349311195, 0.0247292332, -0.0326391421, -0.0234195311, 0.0105206948, 0.0180256292, 0.0012472322, -0.00156065589, 0.00367061095, -0.0129677681, 0.0311743431, 0.0031514694, 0.00569547853, -0.020834595, -0.0204382371, -0.0232989, 0.00108728919, 0.0135967694, -0.00254185498, 0.00683285063, 0.041738119, 0.0281241164, -0.000947271765, 0.00177714438, 0.00694055669, 0.041738119, -0.0239365194, 0.00217565545, 0.00491568912, 0.024953261, 0.013648469, -0.0313466713, -0.00249231025, 0.0132176457, -0.0230404064, 0.03891192, -0.0185253844, -0.00551453279, 0.0201280452, 0.0141913053, 0.0287100356, 0.0239882171, 0.0114512723, 0.0080779288, -0.0245224386, 0.00830195658, 0.0190079045, -0.0317774937, -0.00762556493, 0.0177499019, 0.000726475089, -0.0175344907, -0.00774188712, -0.00352628529, -0.0463910066, -0.0476317778, -0.0468735285, -0.0335180201, -0.00799607206, -0.00748339342, -0.0160524603, 0.000928423309, 0.0270901415, -0.00991754234, -0.0177671351, 0.0215756092, 0.00621677423, -0.0255564135, 0.00203886931, -0.0117356153, 0.0116494503, 0.00162743335, -0.0208862927, -0.00977968, 0.0154320756, 0.0358444639, -0.00182130374, 0.0210069232, 0.00726798177, -0.00830626488, -0.0329148658, -0.00664328877, -0.0165952966, -0.0309503153, 0.000184446049, 0.000517526, -0.0124680139, -0.00792714115, 0.00909036305, -0.00652696658, 0.00646234304, -0.00224458706, 0.00509232655, -0.0188183431, 0.0105293114, -0.00508801825, -0.0177154373, 0.00203779223, -0.00968489796, 0.0181634929, 0.0177671351, 0.0140103595, -0.00911621191, -0.0235918611, 0.0102708172, -0.0219547339, 0.00624693185, 0.0341039374, -0.0179566965, -0.00267325598, 0.034396898, -0.0215928424, 0.0222476926, 0.0150615675, 0.0331905931, 0.00161773991, -0.0261423327, -0.0170175042, 0.00734553, -0.00505355233, -0.0194904264, -0.00875862874, -0.0086078411, 0.0196282901, 0.017155366, -0.00767726358, 0.00479936693, 0.00504062744, -0.0105896266, 0.0270729102, 0.00168667152, -0.0256942753, 0.0280724186, 0.0278139245, -0.0212654173, -0.00908174645, -0.0126834251, 0.00731537258, -0.00792714115, -0.00728952279, 0.0248843282, -0.0217651706, -0.00851306, -0.00876293704, 0.0162506383, -0.0287100356, -0.00437285192, -0.0146910604, 0.00357582979, -0.0153803769, 0.00685439212, -0.0214205123, -0.00325702084, 0.0377400853, -0.0526637882, -0.00946087, -0.00946948677, 0.00700517977, -0.041186668, -0.0013473985, 0.0291580912, -0.0109084351, -0.0325012766, 0.00466581155, 0.00625123968, -0.0505269058, -0.0163195711, -0.000905805093, -0.0120888902, 0.00216165371, 0.0142860869, -0.00439439341, 0.0128988372, -0.00642787712, -0.0135536874, 0.00666913809, -0.0106499419, 0.0181290265, -0.000448863575, -0.00345304538, 0.00873278, -0.0111841615, -0.0166556127, -0.0193697959, 0.00986584369, -0.024384575, -0.00405404344, -0.0448400453, -0.00220258185, -0.0318808928, 0.0106327087, 0.0148806218, 0.0075480165, -0.000144325662, -0.00277234521, 0.00555330701, 0.0323978812, 0.0224200226, 0.0131314816, -0.0250221919, -0.00819855928, 0.0123387668, -0.0317774937, -0.00660882285, -0.0488036163, -0.0471147895, -0.0325012766, -0.00297698611, 0.018249657, 0.0278483909, 0.0280724186, 0.00437931437, 0.00442024274, -0.0108481199, 0.0273486357, -0.00888356753, -0.0355687365, -0.022609584, 0.00634171255, 0.00613491749, -0.0228336118, 0.0119251767, 0.00833642296, -0.00412082067, -0.0182841234, -0.0168365575, -0.0240571499, 0.00647095963, 0.00844412856, 0.0252634529, -0.0200763457, 0.00820286758, -0.0129160695, 0.000322040083, -0.00326779159, -0.0038537106, 0.0114081893, -0.0392910466, -0.00495446287, 0.012795439, -0.00234798458, -0.00970213115, 0.0056653209, -0.0227991473, 0.00938332174, 0.0291408598, -0.00943502132, -0.00235660118, -0.0161386244, -0.00848290231, -0.00442024274, 0.00895249937, 0.0496652611, 0.00483814068, 0.0245913696, 0.0350517482, 0.0140534425, -0.0326219089, -0.0281758159, -0.032535743, -0.0217651706, -0.0161386244, -0.0152855953, -0.00886633433, 0.00810377859, -0.000795406755, 0.00751785934, -0.0139069622, 0.011020449, -0.00246215262, -0.00312346593, 0.000947810302, -0.000355159602, 0.0168710239, 0.0238503534, 0.00111152302, 0.00915067736, -0.00831919, 0.0138552636, 0.00799607206, 0.000541490503, 0.00106951781, -0.011106614, -0.0133296596, -0.00596689666, -0.0126144933, -0.0417036526, 0.0137260165, 0.00668206252, 0.0194214955, -0.00456241425, -0.0286928024, 0.0233678333, -0.0100812549, -0.0116925323, -0.0357410647, 0.0220925976, -0.00679407688, 0.00767295528, 0.0231610369, -0.0031428528, 0.00909897871, 0.00215734565, -0.0157853495, 0.0241088476, -0.00274434173, -0.00672083674, 0.0120888902, 0.00671652844, -0.0258493721, -0.040704146, -0.00383216934, -0.048045367, -0.0333801545, 0.0224717204, 0.0135881538, -0.0048855315, 0.00563085498, 0.0187149458, 0.0119596431, -0.0283998437, -0.0113134086, -0.00111798535, 0.00416390318, 0.0449434407, -0.0224717204, -0.0275381971, -0.0237297229, 0.00393125881, -0.0259700026, 0.0023630634, 0.01590598, 0.0140448259, -0.0283136796, 0.00401957752, 0.0132951941, -0.0158887468, -0.0351723805, -0.0208862927, -0.00778927747, 0.000577841187, 0.00478644203, 0.0114254225, -0.00298129418, 0.0132607277, -0.00958150066, 0.103121765, -0.000970967056, 0.00343150413, -0.0373954251, -0.00800899696, 0.000958042336, 0.0225578863, 0.0175861903, 0.0315879323, 0.0138552636, 0.0420483127, 0.00736276293, -0.0216273088, 0.0108136544, -0.0109687503, 0.00868538953, -0.00983137824, 0.0181290265, 0.00678546028, 0.01675901, -0.0109946, 0.0225406531, -0.0107878046, 0.00209487625, 0.00955565087, -0.00379124121, 0.0218685698, -0.0291925576, -0.0333801545, -0.0115202032, 0.0221098289, -0.00762987323, 0.0145273469, 0.00882325228, 0.0080650039, 0.0306228902, 0.00110129092, 0.0134330569, -0.0091420617, 0.0219547339, 0.00720335823, -0.0160179939, -0.00885771867, -0.002431995, -0.00013395898, -0.011830396, 0.0147686079, -0.0109515171, -0.0191630013, 0.0373954251, -0.00301576, -0.011985492, 0.00485106558, -0.0278656241, -0.013648469, -0.00430822885, -0.000459903415, 0.00795299, 0.0214894451, -0.0132521112, 0.00631155493, 0.0170692019, -0.0201797429, 0.0122267529, 0.0167503934, -0.00507078506, -0.0085001355, 0.0156733356, -0.00764710596, 0.0104086809, -0.00653127488, 0.0120199583, -0.00756955799, 0.00262801955, -0.0331044309, 0.016388502, 0.00501047, -0.0093230065, 0.00605306122, -0.00928854104, 0.00591519801, 0.0096676657, 0.0015757347, 0.0116753, -0.0127265081, -0.0201797429, -0.00539390231, 0.0156388711, 0.0165435988, 0.0180428624, -0.000177041278, 0.0045107156, -0.027296938, -0.000193735657, -0.00611768477, -0.0212654173, 0.0242467113, -0.00734983804, 0.00049625407, 0.00229844, -0.00669498742, -0.00809516199, 0.02453967, 0.00956426747, 0.0153889926, -0.0163109545, -0.00390540925, 0.00737568736, 0.00767726358, 0.0156130213, 0.0174310934, -0.00900419801, 0.00643218542, -0.0374643579, -0.000713550369, -0.0284170769, 0.0290029962, -0.00476490101, -0.00592381461, -0.010055406, -0.0219892, 0.00743169477, 0.0239192862, -0.0183013547, -0.00516125793, -0.022282159, -0.000370238413, -0.0230059419, -0.0453225672, 0.00788836647, 0.023660792, 0.0468045957, -0.027055677, -0.0183185879, -0.0035370558, 0.00381062832, 0.0132951941, 0.0347587876, 0.0172587652, 0.00890080072, 0.0101243379, 0.0139758941, -0.0102018854, 0.0119510265, -0.000259570777, -0.000904189481, -0.036258053, 0.0142774703, -0.00905589666, -0.0137001676, -0.0255391803, -0.0235229284, 0.011589135, -0.00329794898, 0.0295199826, -0.00444178376, -0.00560931396, 0.0025181598, 0.0113392584, 0.000419244519, 0.0218858011, 0.00312992814, 0.0332078263, -0.0295372158, -0.0181634929, -0.0139931273, 0.00647095963, 0.00746616, 0.0023092106, -0.011830396, 0.00476059271, -0.00517418282, 0.0103225159, 0.00185684662, 0.00863799825, -0.00833211467, 0.0221959949, -0.00795729831, 0.0303471629, -0.0151994312, 0.00751355104, -0.0077031129, -0.0086940052, -0.0055059162, 0.0198178515, -0.00390756363, -0.0345002972, 0.0158456657, 0.00149280124, 0.0221787617, -0.0112444768, -0.00878878683, 0.0140189761, 0.00792714115, 0.0135709206, 0.0149064716, -0.00152834412, -0.00232213526, -0.00170175033, 0.0141568398, -0.0194731932, -0.0155182397, -0.00831488147, 0.0116666835, 0.0223338585, -0.0241605472, 0.00503201131, -0.00815978553, 0.0299508069, -0.0232127365, 0.00229628594, 0.00998647418, -0.0108567365, -0.0167417768, -0.00163281872, 0.00740153715, 0.010537927, -0.00116537581, 0.00882325228, -0.00708703604, -0.0106413253, -0.038360469, 0.00679838471, 0.0147341425, -0.0182324238, -0.0194904264, 0.0526982546, 0.0122956848, 0.0144497994, 0.0103311324, -0.0186804794, 0.04197938, 0.03891192, 0.0140620582, 0.0154148424, -0.0181117933, 0.020593334, -0.0142085385, 0.0126231099, 0.000957503857, -0.00384294, 0.00594104733, -0.00161450868, -0.00345735345, -0.0104259131, -5.88679068e-05, 0.00105390046, 0.0192663986, -0.0161558576, 0.00734983804, -0.00225966587, 0.00109159749, 0.0280379523, -0.012881604, 0.0151994312, -0.0126317265, 0.0165349822, 0.00810808688, -0.0220581312, -0.0315879323, 0.0198523179, -0.00421344768, -0.0145359635, 0.0087026218, -0.00464427052, -0.00277019106, -0.00856906734, -0.022850845, 0.00160050695, 0.00986584369, -0.0210930873, 0.0157767329, 0.0296923127, 0.014940937, -0.00952118542, -0.0112358602, 0.0052431142, -0.00787113421, -0.0451502353, 0.00233290577, 0.00564808771, 0.0449434407, 0.00468735304, -0.0166900773, -0.018490918, -0.000232509716, -0.0106327087, 0.0221098289, -0.0189906731, -0.0103311324, -0.0136570847, 0.0106844073, 0.0152855953, 0.000634925207, -0.00833642296, 0.0265214555, -0.000348697271, 0.0181807261, -0.0200246479, 0.0147772245, 0.0207139645, -0.00263017369, -0.0181462597, 0.0333629251, -0.00788836647, -0.00947810337, 0.00352843944, -0.0377056189, 0.0186977126, 0.010779188, 0.019938482, -0.0134502901, -0.000762556505, 0.0124335485, 0.0134589067, -0.00964181591, 0.00848290231, 0.0220753644, 0.0163023379, -0.00508371, -0.0141568398, -0.0253840834, 0.0051483335, 0.00916791055, -0.00943502132, -0.0149754034, 0.000897188613, 0.0176982041, 0.0166556127, -0.00231998111, 0.0183702875, -0.0199729484, 0.0027529581, -0.00985722709, -0.0259872358, 0.00894388277, -0.00795729831, 0.00553176552, -0.00999509078, -0.0144067165, -0.0057730265, 0.00485968217, -0.0169485714, 0.00679407688, -0.0109515171, -0.0198523179, 0.00695778942, 0.0160955433, -0.00680700131, 0.0470113903, -0.0283998437, 0.012312918, 0.0209379923, 0.0101674199, 0.00413805386, -0.00034035006, -0.0171036683, -0.00836227182, -0.00496307947, -0.00658297352, -0.000232375081, 0.00648388406, 1.73843764e-05, -0.00887495093, -0.0260906331, 0.026159564, -0.00831057318, -0.0101846531, 0.0277105272, 0.0360857248, -0.00883186888, 0.0109773669, -0.0147082927, -0.00529912114, 0.00209918455, 0.0150357187, 0.00910759531, 0.0270039774, 0.0203348398, -0.0161730908, -0.0183702875, -0.00551453279, -0.000565993541, -0.0097452132, -0.0175775737, 0.0117614642, -0.0165694468, 0.0286755711, 0.034793254, -0.022454489, 0.0148892384, -0.00310192467, -0.00616938341, 0.0273314025, -0.0075480165, -0.0116408337, -0.00848290231, -0.0128212888, -0.032449577, 0.00254831719, -0.0204037707, 0.0105982423, -0.0268144161, 0.012269835, 0.00699656364, -0.00942640472, -0.000400126737, -0.0301231351, 0.00792283285, -0.00122999935, -0.00721628312, -0.00455810595, -0.0184047539, -0.0310709458, 0.0102880504, 0.0276243631, 0.00800468866, 0.0252117552, 0.0102191186, 0.0360512584, -0.00938332174, -0.0117097655, -0.00468304474, -0.026642086, -0.0173535459, -0.00607029442, 0.0252289865, -0.00159296754, 0.00943502132, -0.0234195311, -0.00140017434, -0.0126058776, 0.00935747288, 0.0048769149, -0.0346726254, -0.00181699544, -0.000927884772, -0.0209379923, -0.00379124121, -0.00849582721, -0.0139241954, -0.0183185879, 0.00490707252, -0.0234539974, 0.000493561442, -0.0184047539, 0.00617369171, 0.0224200226, 0.00788836647, -0.00110398361, 0.0175344907, -0.00270556775, -0.027693294, -0.013364125, -0.0179566965, 0.0172846131, -0.000121438199, -0.0128902206, -0.00889218412, -0.0257115085, 0.00751355104, -0.00369861443, -0.00543698482, 0.0131056318, 0.0171812158, 0.000255801075, 0.00535943639, -0.0134244403, -0.00618230831, 0.00672083674, -0.00133339677, -0.0156130213, 0.0193525627, 0.0054068272, -0.0131917959, 0.00459257187, -0.00508801825, 0.00318378094, 0.0107964212, 0.0152597465, 0.00555761484, -0.00050056231, -0.00570409466, 0.00571271125, 0.0139586609, 0.053284172, -0.0158887468, 0.00909036305, -0.00637617847, 0.0178877655, 0.00840535387, -0.000941886508, -0.010055406, 0.0232989, 0.000679623103, 0.0179394651, -0.0147686079, -0.022850845, 0.0170950517, 0.0141482232, -0.00191823882, -0.00663898047, 0.0156561024, 0.00671222, 0.034483064, -0.0054068272, -0.00789698306, -0.0128471376, 0.00606167782, -0.0188011099, 0.0169054903, 0.00109321298, 0.00569547853, 0.0217651706, 0.0183530543, -0.0042436053, 0.00541975163, 0.0136915511, 0.0192663986, 0.00224027899, 0.0137087842, -0.00689747417, -0.00543267652, -0.0154665411, 0.0287962016, 0.0126231099, 0.0004652887, 0.0220925976, 0.023902053, 0.0180773269, -0.0261078663, 0.0195076596, -0.00856906734, -0.0134933721, -0.0102708172, 0.00367922732, -0.00462703779, 0.00417682761, -0.0104689961, 0.031088179, 0.0079831481, 0.00643218542, -0.0349138863, -0.0179739296, -0.00197532284, -0.00351766869, 0.017637888, -0.000663467217, 0.00991754234, -0.00457533868, 0.0162334051, -0.00387956, 0.0192319322, -0.00195916696, 0.0315879323, 0.00551884109, -0.00196778355, 0.000823948765, -0.000114100745, 0.00742307818, -0.00104366837, -0.00774619542, -0.00125369453, -0.0158456657, 0.0122956848, 0.00506216893, 0.00282835215, -0.00685008382, 0.0116925323, -0.012881604, -0.00846566912, 0.0111927781, 0.0187838767, 0.00983137824, 0.019300865, -0.00173513917, -0.0144497994, -0.00904728, -0.0153286774, 0.00447624968, 0.00907313, 0.00299206492, -0.00787113421, -0.0250049587, -0.000134968723, -0.0116839167, 0.0232816674, -0.00278526987, -0.0143377855, 0.0190940704, -0.000842797221, 0.0110290656, -0.00110613776, 0.0199901816, -0.00393125881, -0.0104431463, -0.000341157865, 0.0154320756, 0.00131185562, 0.0130280834, -0.0108395033, 0.0101329535, 0.00903866347, -0.00849582721, -0.0174224768, -0.0242984109, 0.000579456741, 0.000127563966, -0.0287962016, -0.00303945527, 0.0139845107, -0.00364045333, 0.00757817412, -0.0113909571, -0.00871123839, -0.0135536874, 0.0117269987, -0.00796160661, -0.0246430691, -0.00579025922, -0.00431899913, 0.0243501086, 0.00215949956, -0.00799607206, -0.00648388406, 0.011985492, 0.00849582721, -0.0147599913, -0.0091420617, -0.0149495536, 0.0149237039, 0.00876293704, 0.0104345297, 0.0199040174, -0.031656865, 0.00412728311, -0.0291753244, 0.00250954321, -0.0134933721, -0.0159145966, 0.0234712306, -0.00901281461, 0.0316741, -0.00491568912, -0.00944363698, -0.000792714069, 0.00471751066, -0.0101501867, -0.00641064439, 0.010055406, 0.0120458072, -0.0117786974, 0.0127092749, 0.0143550178, 0.00345519953, -0.0265903883, -0.0149840191, 0.000379393401, 0.00415528659, -0.0175861903, 0.0198178515, 0.00689316588, 0.0105982423, 0.0241777804, 0.00693624839, -0.0167848598, 0.0182668902, 0.00465288712, -0.0178360678, -0.00172544562, 0.00135601498, -0.0111324629, -0.00367491902, -0.00155742466, -0.0285204742, -0.00212287973, 0.00937470607, -0.0164488181, -0.028985763, -0.0167503934, 5.94400917e-05, -0.00915929396, 0.00234152237, 0.000359737111, 0.011106614, -0.00779358577, 0.00784528442, 0.0129763847, 0.00130000804, 0.0150357187, -0.00406050542, -0.0033367232, -0.0272797048, 0.018490918, -0.0151046496, -0.0325012766, -0.0106068589, 0.011063531, 0.00190208293, -0.00458826357, 0.0200246479, -0.00223597069, -0.00844843686, 0.00952118542, -0.00417898176, -0.000228336125, -0.000347081688, -0.00898696482, -0.0111927781, 0.0155871715, 0.0166469961, 0.00678115198, -0.0211275537, -0.00153265242, -0.00321609271, -0.00760402391, 0.00553607382, 0.0032828704, 0.0139931273, 0.0218513366, -0.0156388711, 0.0147082927, 0.00434054062, -0.0054111355, 0.00510094268, 0.00187946483, -0.0223166253, -0.0149495536, 0.00160804635, -0.00442455104, -0.0139500443, 0.0404628851, -0.0054025189, -0.0144756483, -1.76872982e-05, -0.00764710596, 0.00687162485, 0.017000271, -0.0169227216, 0.0268488806, 0.0173621625, 0.0334490873, -0.00150895712, -1.43214947e-05, -0.00878017, 0.00362752867, 0.00590658141, 0.000898804225, -0.0060272119, 0.0265903883, -0.0019268553, -0.00448055798, 0.0109859835, -0.0189734399, -0.00332164438, -0.0118820947, 0.0211447868, 0.015664719, -0.000277611485, -0.0085906079, 0.00926269218, -0.00781943556, -0.0182324238, 0.00689316588, 0.00117506937, -0.0206277985, -0.00670791231, 0.00457533868, 0.0110118324, 0.0146996761, 0.0109342849, -0.0283136796, 0.0334318541, -0.0160783101, -0.0109256683, 0.0172329154, 0.00563516328, -0.0298991073, -0.00760833174, -0.00036216047, -0.0148892384, -0.0188355763, 0.0155699383, 0.024953261, -0.0101329535, -0.00291020842, -0.00465719542, 0.0133124264, -0.00177175901, -0.00218104082, 0.00401742337, -0.000918191276, 0.00970213115, -0.00146479777, -0.00928854104, -0.00711719366, 0.000458557101, 0.00340350065, -0.00546714244, 0.00916791055, 0.00557484804, 0.0191113017, -0.00826318283, -0.00687593315, 0.000493292173, 0.0090300478, 0.00994339213, -0.0186632462, 0.000263071212, 0.00679838471, 0.0104345297, 0.00990030915, 0.00262801955, 0.00275080395, 0.0115632862, 0.0021465749, 0.0175344907, 0.00489845593, 0.0048726066, -0.0136657013, 0.0124680139, -0.0238503534, 0.0125800278, -0.0225923508, -0.00419406081, -0.0133038107, -0.012114739, -0.000609075825, -0.0117356153, 0.00486399, 0.0292442571, -0.0170519687, -0.013165947, -0.00983137824, -0.00323117152, -0.00775481155, 0.00683285063, 0.0129419193, 0.0046098046, 0.0204210039, -0.0145962788, 0.0160352271, -0.0109084351, -0.00700948806, -0.0119337933, 0.0270212106, -0.00531635433, -0.00378477899, -0.00200978876, 0.00409066305, 0.0338282101, 8.2866085e-05, 0.00290374621, -0.0085044438, 0.00209379918, -0.025590878, -0.00749200955, -0.0247292332, -0.0234195311, 0.0138638802, 0.0138724968, -0.0117614642, -0.000642464613, -0.0164919, 0.000680700119, -0.010339749, 0.00441162614, -0.00523018977, -0.0124938637, 0.00903866347, 0.00409066305, 0.00158865936, 0.0231438056, 0.00657866523, 0.0275381971, -0.0123301502, -0.0165091325, -0.0176465046, -0.0275209658, 0.00294252019, 0.0085992245, -0.00236737169, 0.0204037707, 0.0183530543, -0.00909036305, 0.0150874173, 0.00700087147, 0.0184219852, -0.00107490306, 0.00286066392, 0.013605386, -0.00325702084, -0.00866384804, -0.0115805184, 0.0257976744, -0.0170950517, -0.00317301042, -0.000997893512, -0.0239882171, 0.0275726635, 0.00986584369, 0.00710857753, 0.000619846396, -0.0055016079, -0.0223510899, -0.00137540197, -0.0190768372, 0.0165952966, 0.00713442685, 0.00681130961, 0.00367707317, 0.00952118542, -0.0113995736, -0.0151735814, -0.00219719671, 0.0142602371, -8.61645749e-05, 0.0129936179, 0.0122181363, 0.00812962744, 0.0117614642, 0.0116753, 0.00128277508, 0.000950503, 0.0192663986, 0.00169313385, 0.00999509078, -0.00671222, 0.00952980202, 0.00248369388, -0.0136312358, 0.010296667, 0.000853567792, -0.0245052055, -0.00480367523, 0.00471320236, -0.0113564907, 0.00789267477, 0.0112100113, -0.0102191186, -0.00466581155, -0.00377185433, 0.0175431073, 0.000843874295, -0.00762987323, -0.0127178915, -0.00257847481, 0.000678007491, -0.00476059271, -0.000679623103, 0.0125627946, -0.0244707391, -0.000481175288, -0.00791421626, -0.0178016014, -0.00865954, 0.0141654564, -0.0163971186, -0.0028843591, 0.00119661051, -0.0104086809, 0.0086078411, 0.000570301781, -0.0100812549, 0.0102191186, -0.0154493079, -0.0201969761, 0.0196799897, -0.0276588276, 0.00805208, -0.00962458272, 0.00369430613, -0.0197316874, -0.00684146723, -0.00466150325, 0.00335611, -0.00129031448, 0.00198178529, 0.0016371269, -0.0178877655, -0.0169313382, 0.0102191186, -0.0204382371, 0.00288220495, 0.0105206948, -0.01945596, -0.000912267424, -0.0277105272, 0.0148030743, -0.0126058776, 0.00100058608, -0.00940055493, 0.0126834251, 0.0183702875, -0.00708703604, -0.00767295528, 0.0252289865, -0.0266593192, 0.0105120782, -0.000995200826, 0.0138380304, -0.0103655979, 0.00174483261, -0.00837950502, 0.0151132662, -0.000801330549, 0.00769880461, 0.0120544238, -0.00545421755, -0.0198523179, 0.00294036604, -0.0134158246, -0.0152425133, 0.0170864351, 0.00915067736, -0.0145187303, 0.00665190537, 0.00618661661, 0.0302437656, 0.0116580669, -0.00837950502, 0.0219719671, 0.00439870171, 0.00679407688, -0.00567824533, -0.0157767329, 0.0127523569, 0.0107964212, 0.0100209396, 0.000549837714, -0.00570409466, -0.00622108206, 0.0184736848, -0.00334318541, -0.00334533956, 0.00275080395, 0.00390540925, 0.0149840191, -0.00999509078, 0.0206622649, -0.0192663986, -0.00865954, -0.0236090943, 0.00230059423, -0.0130022345, -0.0034681242, 0.00591088971, -0.00621677423, 0.0037761624, 0.0284343101, 0.000915498589, 0.00571271125, -0.010210502, -0.0433924794, 0.0104345297, -0.0170347355, -0.00459257187, 0.0147858411, 0.000915498589, 0.00207118085, 0.00862507429, -0.0165435988, -0.0114857377, 0.0150443343, 0.0206794981, -0.0156130213, -0.01481169, 0.00356936757, -0.0270212106, 0.00999509078, 0.0164143518, 0.00909897871, -0.0253151525, -0.00582041685, 0.0105034616, 0.0168796405, 0.0194387287, 0.0163971186, 0.00896111596, 0.00256985845, 0.0174914077, -0.00167805504, 0.0179394651, -0.0246086027, -0.0158198159, -0.00581610855, 0.00729813939, 0.00434054062, 0.0200591125, 0.00493292185, -0.00113414123, 0.00722489972, 0.0369129032, 0.00646665134, -0.0138983456, -0.00267325598, 0.0043060747, -0.00832349807, 0.0126575762, -0.013846647, -0.00588504039, 0.00077925087, -5.7555244e-05, 0.00670791231, -0.000458287832, -0.0281241164, 0.0149926357, 0.00555330701, 0.00522588147, 0.0144239496, -0.00429530395, 0.00357798394, 0.00901281461, -0.00627708947, -0.0106068589, 0.00229844, 0.00528188841, 0.0184564516, 0.0150271021, 0.00703102909, 0.00360814156, -0.0206967313, -0.00168990274, 0.015139116, -0.0105982423, 0.0239882171, -0.0189906731, -0.00904728, 0.00192254712, 0.00546714244, 0.0179049987, -0.00358875445, 0.00445470866, 0.0119079445, -0.00591519801, 0.00827610772, -0.00544129265, -0.0101329535, -0.00332379853, -0.0171381347, -0.00464857882, -0.00625123968, -0.0232299697, -0.0060358285, 0.0311743431, -0.0243673418, 0.0119337933, -0.0119941086, 0.0264697578, 0.0125455623, -0.00900419801, 0.0192319322, 0.00955565087, -0.0188183431, -0.0135536874, 0.0266937856, -0.0247981641, -0.0198350847, 0.0215066783, -0.0164402016, -0.0266765524, -0.00996062439, 0.0171467494, -0.0130711664, -0.00185684662, 0.00588073209, 0.00419621496, -0.0118820947, -0.0140017429, -2.15074851e-05, -0.0109687503, 0.00017892613, 0.000124602055, 0.0232127365, 0.00669929571, -2.41159833e-05, 0.00669067912, -0.0169054903, 0.00946087, -0.000288382056, 0.00294036604, -0.0013861726, -0.00483383285, -0.0409109406, 0.0155010065, -0.0187149458, 0.0123732332, 0.00674668606, 0.00855183415, -0.0175431073, -0.00561362226, 0.00357798394, -0.0213171151, 0.0180428624, -0.00113952649, 0.000503524207, -0.00363183673, -0.0126834251, 0.00208625966, -0.010494845, 0.00609614374, -0.00962458272, -0.00505786063, -0.00650542555, 0.0340867043, 0.00194839644, -0.0179049987, -0.0121578211, -0.000343850494, -0.0164143518, 0.0176292714, -0.000215546068, 0.000647849869, 0.0208690595, 0.0148633895, 0.00164466631, -0.0143291689, 0.00316224, -0.0200935788, -0.0115288198, -0.0113134086, 0.000927346235, 0.0102363518, 0.00219396548, -0.0214377455, -0.00797884, -0.0152425133, -0.0280034859, -0.0080736205, -0.00369430613, 0.00286066392, 0.00338411378, -0.00464857882, -0.0217479393, 0.00492861355, 0.0249877274, -0.0103052827, 0.0227129813, 0.00187515654, -0.0118476292, 0.00361460401, -0.00799176469, 0.0121578211, -0.00620384933, -0.0012159975, 0.02098969, 0.00275080395, -0.0245569032, -0.00334318541, -0.00938332174, -0.00608752714, 0.0102018854, -0.00235013873, 0.00398942, 0.0298129432, -0.0129936179, 0.0173449293, 0.00614353409, 0.00421560183, -0.0194904264, -0.00952980202, 0.00507509336, 0.00142279256, 0.01058101, 0.0240743812, -0.00476490101, 0.00521726487, 0.00220796722, 0.00283696852, -0.0278656241, -0.00663036387, 0.0092109926, -0.0133382762, 0.0133555094, 0.0368095078, 0.00172329147, -0.0152425133, 0.00694055669, -0.00163281872, 0.0114685046, -0.022850845, 0.026486991, 0.00607891055, -0.0159576796, 0.00275942055, -0.00300929765, 0.0141999219, -0.00600997917, 0.00351766869, -0.0105551602, 0.00863369, 0.0206794981, -0.00594104733, 0.0251255892, 0.00507509336, -0.00538959401, 0.02098969, 0.0070827282, 0.00990030915, 0.0077203461, -0.0144497994, 0.00151218823, 0.00694486452, 0.00447624968, -0.00722059142, -0.0173363127, 0.00839243, 0.000896111596, -0.00951256882, -0.00511386758, 0.00498031219, 0.00735845463, -0.00273572514, 0.0120802736, -0.0147255259, -0.00207118085, 0.00448917411, -0.0012515405, 0.00829334, -0.0191974677, -0.000318270409, -0.0204727035, -0.00926269218, -0.0151046496, 0.0163712688, 0.0204727035, -0.0269522797, -0.0280207191, -0.0118820947, -0.0299508069, 0.00679407688, -0.0204727035, 0.00231998111, -0.0200591125, 0.0173880104, 0.0169485714, 0.00300714374, 0.00747046852, -0.0077160378, -0.000279765605, 0.00992615893, 0.00561793, 0.00661743945, 0.00429315, -0.0170605853, -0.0256425776, 0.0290546939, 0.00569117, 0.00271418411, 0.0115115875, -0.00218534912, -0.00711288583, 0.000874031917, 0.0121233556, -0.000741015363, 0.0209379923, 0.0146307452, 0.0120458072, 0.0032247093, -0.0277277604, -0.00356936757, 0.00522588147, -0.0128643708, 0.0156388711, -0.0259183049, -0.0160524603, -0.0152166635, -0.00815116894, 0.00399157405, -0.00836227182, 0.021230951, 0.00597551325, 0.00401096093, -0.00857337471, 0.00113306416, -0.0120544238, -0.0131831802, 0.0274175685, -0.00234152237, -0.0129591525, -0.00730244769, 0.00857768301, -0.0169658046, -0.0244362727, 0.0195076596, 0.000576225575, 0.00786251761, 0.00587211596, 0.0136829345, -0.0282792132, -0.00454518152, -0.059832681, 0.00277665351, -0.00147449132, 0.0232299697, -0.00594535563, 0.00145725836, -0.0102018854, 0.00245999871, -0.0277449936, -0.0040389644, 0.0229025446, -0.00919376, -0.0243673418, 0.0132348789, -0.025194522, 0.0023092106, -0.0132865775, 0.00173729321, 0.0077160378, -0.0219202675, 0.00619954104, -0.00511817588, 0.0154062258, 0.000862722809, 0.0100640226, 0.00762987323, -0.0133813582, -0.00802192185, -0.015182198, -0.006178, -0.000582687906, -0.00129246863, -0.0109859835, -0.00755663309, 0.00276588276, -0.0127609735, -0.00463565392, -0.00389033044, 0.0236435588, 0.0183702875, 0.00271418411, 0.0032699455, 0.0179222319, -0.00885771867, 0.0022510495, 0.00315793161, -0.00971936435, 0.020593334, -0.00990892574, 0.0134589067, -0.00183745951, 0.0164229684, 0.00237168, 0.00089772715, 0.00794006512, 0.00992615893, 0.0148461564, -0.0288134329, 0.0111496961, -0.00259786192, -0.0172846131, 0.00468735304, -0.0183185879, 0.000461249729, -0.0234539974, 0.00586780766, -8.02407594e-05, 0.00141848426, -0.0191802345, 0.0169227216, 0.0163712688, -0.00537666958, -0.00124400109, 0.022609584, -0.018249657, 0.0092109926, -0.000100502897, -0.0110032158, 0.00143140904, -0.00231998111, 0.0183358211, -0.0303988624, 0.000101310688, -0.00657435693, 0.00239106687, 0.0054025189, -0.00412082067, -0.0240054503, 0.0114512723, -0.00952980202, 0.00759109901, 5.56030755e-05, 0.0115719028, 0.0182841234, -0.0206277985, 0.00905589666, -0.0305539574, 0.00314931525, 0.00557915634, 0.0142257717, -0.00265817717, -0.0175000243, -0.00336257252, 0.00420267694, 0.0256253444, -0.0171467494, -0.00794868171, 0.0038494023, 0.018887274, -0.000354621065, 0.00277880742, 0.00172436854, 0.0269350465, -0.0263663605, 0.0181634929, 0.00623400696, -0.0235918611, 0.0139500443, 0.0201280452, -0.00541544333, 0.0101415701, -0.0304160956, 0.0136398524, -0.0180428624, 0.00434269477, -0.0194731932, 0.00439008512, -0.00306745875, -0.0259183049, -0.0133124264, 0.0152511299, 0.0205588676, 0.0142688537, -0.0133468928, -0.0170864351, -0.0185426157, 0.001035052, 0.0200074147, -0.00594966393, 0.0248843282, 0.00721628312, -0.00254616328, 0.00612630136, -0.0153889926, -0.0350172818, -0.0250221919, -0.0195076596, 0.0168882571, 0.000542567577, -0.0059281229, -0.00907313, -0.00106844073, 0.00600567088, -0.00661313115, -0.036258053, -0.00207979744, 0.00774188712, -0.00588934869, 0.0156474859, -0.00709134433, 0.00716027617, -0.0027034136, -0.00647957623, -0.011830396, 0.00151111127, 0.011106614, 0.0131831802, 0.0019764, 0.0035370558, -0.00892665, -0.00212718803, 0.014613512, -0.0129505359, -0.00117183826, -0.018887274, 0.00302653061, -0.0218341034, 0.00216488494, 0.0120113418, 0.021230951, 0.00534220366, 0.0262974277, 0.00265386887, 0.0228336118, -0.00379770366, 0.00162527931, 0.016190324, 0.0155785549, -0.00612630136, 0.0164229684, -0.00707411161, 0.0161989406, 0.00491138082, 0.00406481372, -0.00792714115, 0.0162678715, -0.0163109545, 0.00749631785, -0.00207441207, -0.00674668606, 0.0114943543, 0.0173363127, -0.00578164309, 0.00350689818, -0.0153200617, -0.0100037074, -0.0119079445, 0.00631586323, 0.00683715893, 0.0110376822, -0.0357410647, 0.0123473834, -0.00637187, 0.00957288407, 0.00597551325, 0.00145510421, -0.0046054963, -0.01058101, -0.00484675728, 0.00593673903, 0.00851306, 0.0137777152, 0.0160696935, 0.00831488147, 0.000144864185, -0.00762556493, 0.0178360678, 0.0236090943, 0.0309330821, 0.0080736205, 0.00924545899, 0.00927992444, 0.012114739, -0.00458826357, 0.0167073105, 4.69866209e-05, -0.0239192862, 0.0071775089, 0.0103914477, 0.020834595, -0.00108782772, 0.00437285192, 0.0065614325, -0.000225239579, -0.00959011726, 0.00475197611, -0.0031471611, 0.00474766828, -0.00123646169, -0.0110721476, -0.0132004125, -0.000527758035, 0.00800468866, -0.0114254225, 0.00307607534, 0.0356376693, 0.02979571, 0.00716027617, 0.00592381461, 0.00380416587, -0.0178360678, -0.000826102856, 0.00458395528, 0.0109687503, -0.00586780766, 0.0235918611, 0.00706980331, 0.00396357058, -0.0258149058, -0.00218750304, 0.00104582252, -0.00825025793, -0.00625985628, -0.0217651706, 0.0035909086, 0.00824164134, -0.00150680298, -0.00368999783, -0.0117011489, -0.0284515433, -0.0117442319, -0.0010232043, -0.00295113679, 0.0152855953, 0.00110936887, -0.00868108124, -0.0323289484, 0.017000271, -0.00168344041, -0.00392048806, -0.00534220366, 0.0112272445, 0.00093488564, -0.0186115485, -0.00697502214, -0.0103569822, 0.00488984, 0.00759971561, -0.0145273469, -0.0117700808, 0.010779188, -0.0195076596, -0.00599705428, 0.00385155645, -0.0140017429, -0.0281241164, -0.0188528094, -0.0349828154, -0.00163281872, -0.00477782544, -0.0282447468, 0.00606167782, 0.00510525098, 0.0220236648, -0.00321393856, 0.00241260813, -0.0180945601, -0.00643218542, 0.0117097655, -0.00776773645, -0.0106240921, 0.000309923198, -0.0119251767, 0.000858953106, -0.0196799897, 0.0215756092, 0.0225234199, -0.00498462049, -0.0273658689, 0.00104043726, -0.00298129418, 0.00206256448, -0.0114857377, -0.0106930239, 0.000103464808, 0.00343150413, 0.00538528571, 0.0121750543, -0.00960735, -0.0068587, -0.0132004125, -0.00445901696, 0.0109773669, -0.00448486628, 0.00387956, -0.0174310934, -0.0153286774, 0.00153049827, 0.0380158089, -0.0037804707, -0.0106930239, 0.00935747288, 0.00673376163, -0.000928961847, -0.0112013947, -0.00290805427, -0.00809947, -0.000148903157, -0.0185426157, 0.0108739696, -0.0133899748, -0.00501047, 0.00312131178, 0.00432761572, 0.000541759771, -0.0127092749, -0.00854752585, -0.0306401234, 0.00184607599, -0.0181634929, 0.00551453279, 0.001413099, 0.0105551602, 0.077685982, -0.00111367716, 0.0137087842, -0.0214205123, 0.00367707317, -0.000127563966, -0.00989169348, 0.0592122972, -0.0144670317, -0.0117356153, -0.00871123839, 0.0074403109, -0.0107274894, -0.000361891201, -0.00304591772, -0.0126144933, -0.00756524969, -0.00584195834, 0.0143894842, -0.00355213461, 0.0128040556, -0.0270212106, 0.00697933044, 0.000687162508, 0.00229844, -0.000209083722, 0.00470027747, -0.0189045072, -0.00716458447, 0.00247292337, -0.0112444768, 0.0190251376, 0.00102643552, 0.0147341425, -0.0193180982, 0.0101588033, 0.0166814625, -0.0109859835, 0.0330527313, 0.00712150196, 0.00936608948, -0.00220150477, 0.00317085627, -0.00928854104, 0.0194731932, -0.00533789536, 0.00381062832, -0.0190940704, -0.00441593444, -0.00380201195, 0.00521726487, -0.0146652106, -0.00125800283, -0.0322600156, 0.00118691707, 0.0234022979, 0.00117506937, -0.00232428941, 0.0139155788, -0.00876724534, -0.000192120075, 0.0181979574, -0.00289728376, -0.0207656622, 0.0237986557, 0.00616938341, -0.0310537126, 0.0150098689, 0.00959873386, -0.00684577553, -0.00192039297, -0.0112703266, 0.00575579377, -0.0139155788, 0.0154062258, 0.000129044915, -0.00725505734, -0.000192793232, -0.01481169, 0.00418759836, -0.00712150196, -0.00776773645, -0.0017997626, 0.00579025922, -0.0124766305, 0.00511817588, -0.011589135, -0.0114081893, 0.00154880818, -0.0114943543, -0.00171144388, 0.019783387, -0.0152683631, 0.00998647418, 0.0195938237, 0.00123538461, 0.00442885933, 0.0222476926, 0.0174310934, -0.00788405817, 0.0135450708, 0.0257459749, 0.0163626522, 0.00920237694, 0.0016026611, 0.0296406131, -0.0185081512, -0.0077031129, 0.0295889154, -0.00853460096, 0.00243414915, -0.00259139948, -0.0148720052, 0.0296750795, -0.020265907, -0.0133813582, 0.0102794338, 0.00383863179, 0.0162764881, -0.00022375863, 0.00546714244, 0.00247292337, -0.00700948806, -0.000523719063, -0.00298344833, -0.00342719606, -0.00300714374, 0.0212137178, 0.022454489, -0.00495446287, 0.00891803391, 0.0209552236, 0.00219935086, -0.0126231099, 0.0232816674, 0.0118734781, -0.00758679071, 0.010494845, -0.0168279409, 0.0121492054, 0.015423459, -0.00797884, 0.00326132914, -0.0150012523, -0.0130539332, 0.00447194139, 0.0115805184, 0.00227474468, -0.0524225272, -0.00350258988, -0.0114340391, 0.0157767329, 0.00335180201, -0.0104086809, 0.0207311958, -0.0186632462, -0.0171209015, -0.0206450317, 0.00170928973, -0.00647095963, 0.0051397169, 0.00772896223, 0.00117291522, -0.0280551855, -0.00275942055, -0.00365122384, 0.00328071625, 0.00645372644, 0.0108825853, 0.0116494503, 0.0118045472, 0.00110613776, 0.0161989406, -0.000402280857, -0.00890941732, -0.00632448, 0.00722920801, -0.00630724663, 0.0106327087, -0.00645803474, -0.00354998047, -0.0039808033, -0.0116925323, 0.0518710725, 0.00155096233, -0.0217651706, -0.0265903883, 0.000804561714, 0.00507509336, 0.0017028274, 0.00149280124, 0.0113306418, -0.0137087842, 0.0009305774, -0.00774188712, 0.00258924556, 0.0115202032, -0.00662174774, -0.00309546245, -0.0156905688, 0.00239106687, -0.00383001543, 0.0189734399, 0.0299335737, -0.00412943726, 0.00728521496, 0.00618230831, 0.00902143121, -0.00642356882, -0.0155699383, 0.00208949088]
30 Jan, 2025
Calculation of TCP Checksum 30 Jan, 2025 In network communication ensuring data integrity is very important. So to detect errors that may occur during transmission the Transmission Control Protocol which is an important part of the Internet protocol employs a checksum mechanism. This checksum, calculated by the sender and verified by the receiver, acts as a protection against data corruption. By calculating a checksum value based on the TCP header and data, including a pseudo-header with essential IP information, the sender ensures data integrity. The receiver recalculates the checksum upon receiving the packet. A match confirms data accuracy, while a mismatch triggers retransmission, securing reliable data delivery across the network. In this article, we will learn a good concept of how the TCP/UDP checksum is calculated. Understanding the TCP Checksum The TCP checksum is a method used to detect errors in data transmitted over a network. When data is sent in a TCP segment, the sender calculates a checksum value that represents the data. This value is then included in the segment, and the receiver recalculates the checksum when the data arrives and compares it to the value sent by the sender. If they match then the data is assumed to be error-free, if they don’t then it indicates that there was a transmission error, and the data is discarded or retransmitted. The TCP checksum helps ensure that data remains accurate during transmission. The Checksum of the TCP is calculated by taking into account the TCP Header, TCP body, and Pseudo IP header. Now, the main ambiguity that arises is how can checksum be calculated on the IP header as IP comes into the picture in the layer below the Transport Layer. In simple terms, it means that we are in the Transport Layer and the IP data packet is created in Network Layer. When we receive data from the application it is broken into smaller data parts as the whole data from the application cannot be sent through the network to the receiver host. The protocol we use in OSI in the Transport layer is TCP. So, after breaking the data from the application layer into smaller parts. This broken part forms the body of the TCP. The TCP header usually varies from 20 Bytes (with no bits of option fields being used) to 60 Bytes (with all bits of option fields being used). It has fields like Source and Destination Port addresses, urgent pointers, Checksum, etc. Pseudo IP Header The pseudo-header is not an IP header rather it is a part of the IP header. We directly don’t use the IP header because in IP header there are many which would be continuously changing when then packets move along the network. Important concept to note here is that we use a part of the IP header which don’t change as the IP packet moves in the network and to overcome all these errors and increase error checking capability we use a Pseudo IP header. We can estimate the size of the IP header from the Transport because the guess/estimation would be definitely wrong and thus there would be no point in calculating the checksum on a field which is wrong at the beginning itself. The error-checking capability of TCP/UDP in the Transport Layer takes help from the network layer for proper error detection. The Fields of the Pseudo IP header are: IP of the Source IP of the Destination TCP/UDP segment Length Protocol (stating the type of the protocol used) Fixed of 8-bits So, the total size of the pseudo header (12 Bytes) = IP of the Source (32 bits) + IP of the Destination (32 bits) +TCP/UDP segment Length(16 bit) + Protocol (8 bits) + Fixed 8 bits An important concept should be noted that this Pseudo header is created in the Transport layer for calculation and after the calculation is done the Pseudo header is discarded. And the checksum is calculated by using the usual checksum method. So, this Pseudo Header is not transported across the network, rather the actual IP header which is formed in Network Layer is transported. The TCP checksum includes the following: 1. Pseudo IP header 2. TCP header3. TCP body Step-by-Step Guide to Calculate the TCP Checksum To calculate the TCP checksum, follow these basic steps: Prepare the Data: Combine the TCP header and the data to be transmitted. Make sure to include any necessary padding for alignment. Divide the Data: Split the data into 16-bit words (2-byte parts). If the last part is incomplete, pad it with zeros. Sum the Words: Add up all the 16-bit words. If the sum exceeds 16 bits, wrap the overflow back around to the lower 16 bits. Invert the Sum: After adding all the words, take the one’s complement (invert all the bits) of the sum. This inverted value is the checksum. Attach the Checksum: The calculated checksum is then included in the TCP header for transmission. As it is already stated that the Pseudo header is discarded and is not transported to the destination host then how does the Destination host check if the data is received correctly or not. Thus the pseudo-header is once again created in the Transport layer of the Destination host and then again the checksum is calculated in the Transport Layer of Destination Host and finally, the checksum is calculated by the usual method of checksum and is confirmed if the data received is correct or not. Common Mistakes in TCP Checksum Calculation and Ways to Avoid Them Some common mistakes in calculating the TCP checksum include: Not Including the Pseudo Header: The TCP checksum calculation involves not just the TCP segment but also a pseudo header that contains information like the source and destination IP addresses. Forgetting to include this pseudo header can lead to an incorrect checksum. Incorrect Padding: Sometimes, padding is needed to align the data to a multiple of 16 bits. Missing or incorrectly applying padding can cause the checksum to be wrong. Overflow Handling Issues: When adding 16-bit words, if the sum exceeds 16 bits, you need to wrap the overflow around. Failing to handle this correctly will result in an incorrect checksum. Misaligned Data: Ensuring the data is split correctly into 16-bit parts is important. Any misalignment can lead to checksum errors. Calculating TCP Checksums in Real-World Scenarios Here’s a practical examples of calculating a TCP checksum: 1. Data Preparation: Let’s say we need to calculate the checksum for the following 16-bit words of TCP data: 0x1234, 0x5678, 0x9abc, 0xdef0 2. Sum the Words: Add them up: 0x1234 + 0x5678 + 0x9abc + 0xdef0 = 0x2468c 3. Handle Overflow: Since the sum is larger than 16 bits, we take the overflow (the extra bits beyond 16 bits) and add it back to the lower 16 bits: 0x2468c → 0x468 + 0x2 = 0x46a 4. Invert the Sum: Invert all the bits of the sum (one’s complement of 0x46a): 1's complement of 0x46a = 0xb95 5. Final Checksum: The checksum is 0xb95, which is added to the TCP header for transmission. Comparative Analysis: TCP Checksum vs. UDP Checksum While both TCP and UDP use checksums to detect errors in transmitted data, there are key differences: TCP Checksum: TCP’s checksum covers the entire segment, including the header, data, and the pseudo header (which includes source and destination IP addresses). This helps ensure the integrity of the entire communication, including error handling and reliable delivery. UDP Checksum: UDP also uses a checksum but it is simpler. It checks the data and UDP header but does not cover the pseudo header. This means that UDP’s error-checking is less thorough compared to TCP’s, as UDP does not ensure reliable delivery like TCP does. Frequently Asked Questions on Calculation of TCP Checksum -FAQ’s Why IP header error checking two times is needed ? The IP header is checked two times the first time in the Transport layer and second time in Network Layer. The IP header is checked two times because double checking ensures that any error in the IP header can be detected with proper accuracy. Why is the pseudo header included in the TCP checksum calculation? The pseudo header is included because it contains critical information such as the source and destination IP addresses, protocol type, and TCP length. This ensures that the checksum is validated for the entire communication, including the transport layer and the network layer, preventing errors in the overall communication process. Can the TCP checksum detect all types of errors? While the TCP checksum is effective in detecting most errors, it is not foolproof. It can detect errors like bit flips, but it cannot guarantee detection of all possible transmission errors (such as some patterns of corruption). However, its use significantly reduces the chances of undetected errors. What happens if the TCP checksum is incorrect? If the checksum does not match upon receipt, the data is considered corrupted. The receiver typically discards the packet and may request a retransmission from the sender if the protocol ensures reliable delivery, like in TCP. 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!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum
https://www.geeksforgeeks.org/calculation-of-tcp-checksum?ref=asr10
PHP
Calculation of TCP Checksum
What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, jQWidgets jqxTreeMap width Property, Difference between Flow and TypeScript, jQWidgets jqxTree destroy() Method, jQWidgets jqxTree collapseAll() Method, jQWidgets jqxScrollView buttonsOffset Property, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, jQWidgets jqxListBox enableHover Property, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxSlider buttonsPosition Property, jQWidgets jqxSlider rtl Property, jQWidgets jqxTooltip opacity Property, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, jQWidgets jqxToolBar height Property, PHP, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, Node.js date-and-time Date.transform() Method, TypeScript Optional Parameters, jQWidgets jqxToolBar theme Property, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, Steps to Diagnose and Resolve a Slow Network, How to use Optional Chaining with Arrays and Functions in TypeScript ?, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, jQWidgets jqxScrollView showButtons Property, jQWidgets jqxScrollView disabled Property, jQWidgets jqxSplitter destroy() Method, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, jQWidgets jqxTree collapseItem() Method, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), jQWidgets jqxSortable opacity Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, jQWidgets jqxSlider height Property, jQWidgets jqxSwitchButton onLabel Property, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, jQWidgets jqxToolBar tools Property, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTree width Property, jQWidgets jqxTree clear() Method, TLS Handshake?, Adhoc TCP, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, jQWidgets jqxTabs position Property, Differences between Wireless Adhoc Network and Wireless Sensor Network, jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, Impact of Three-way Handshake and Slow Start Algorithm, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, How to Sort an Array Having Optional Properties in TypeScript ?
GeeksforGeeks
[-0.0249702632, -0.00762855029, -0.00887931697, 0.0336542651, 0.0183896516, 0.0236030575, -0.0273140427, 0.0302137174, -0.020372849, 0.0112606566, 0.0108850515, -0.0034405475, 0.0450726748, -0.0595860779, 0.00954789482, -0.0153998313, -0.0208686497, -0.0130184917, -0.0352768824, -0.00441336632, 0.0251205042, -0.00272501889, -0.024579633, -0.00566037698, -0.0262773708, 0.00917980168, 0.0139575051, 0.0121621108, 0.00664070761, 0.000530543, 0.0346458629, 0.0203127526, 0.00983335543, -0.0420678295, 0.00854878407, -0.0179689731, -0.0177285857, -0.00719660381, -0.0279600844, -0.0243542697, -0.00846615061, 0.0364187211, 0.0147763258, 0.00795532763, -0.0410762317, 0.0248951409, 0.00316823344, -0.0288615376, 0.0153171979, -0.0311602429, -0.0415870547, -0.0280201808, 0.0208536256, 0.0473563597, 0.0250153355, 0.0368694477, 0.0286962707, 0.00917980168, 0.0157003161, -0.0376206599, 0.0472962633, -0.00091835577, -0.0301235728, 0.00549886655, 0.0185999908, -0.0132213179, -0.0765033588, 9.01453532e-05, 0.0282455441, -0.0122522553, -0.0433599129, 0.0121621108, -0.00691489968, -0.0242340751, 0.0142504778, -0.00140852109, 0.0377108045, 0.041466862, 0.0214395691, 0.0225663874, -0.0177285857, 0.0401146822, -0.00883424468, 0.0174431261, 0.0109601729, 0.0132588791, -0.0198920742, -0.0420678295, 0.0468755849, 0.02823052, 0.0362684801, 0.00752713671, 0.00365464273, -0.00631393073, 0.00537867285, 0.0207935274, 0.0218602475, 0.000907557143, -0.0422781706, 0.0231222827, 0.0253909416, 0.00388376229, -0.00175877335, -0.0153472461, 0.0405353606, -0.0272389203, -0.0301085468, 0.0093450686, 0.0481676683, 0.0651450381, -0.00495799445, -0.0179839972, 0.0147162285, -0.00388000626, -0.0222058054, -0.0492794588, 0.00172121287, -0.0309198555, 0.00798537582, 0.0114409477, -0.0148965195, 0.0359379463, -0.0175032225, 0.0682099834, -0.0448623374, 0.0466051474, -0.00807552133, -0.0120794773, -0.0182844829, -0.0274192113, 0.00238321768, -0.0111780241, -0.0236631557, 0.0176684894, -0.00935258064, -0.0143481353, 0.000689236331, 0.0155350491, 0.011155487, -0.0205381159, 0.0155801214, 0.0300334264, 0.0186150149, 0.0093450686, -0.00995354913, 0.00979579519, -0.00848868769, 0.040956039, -0.044952482, 0.039213229, -0.0169623513, -0.0126879588, -0.00531106349, -0.0134241451, 0.00500682322, -0.00714777503, -0.00697875256, 0.0415870547, -0.000624444394, -0.0338345543, 0.00401146803, -0.0310100019, -4.98851223e-05, -0.0125978133, 0.00617120042, 0.0245045107, 0.0100587187, -0.0119367475, -0.0117038712, 0.0370196924, -0.00212405, 0.0346759111, 0.00106953701, 0.0178638045, -0.0250003114, 0.00123198645, 0.00186206494, 0.0323621817, -0.0155951455, 0.00718533574, -0.0373201743, -0.0297028944, -0.000921172847, -0.0095704319, 0.0191258397, 0.00704636192, 0.0166017693, -0.00845863856, -0.0165266488, -0.0351266377, -0.0235429611, -0.0041804905, 0.0467253402, 0.0248650927, -0.00420678314, -0.0128532248, -0.0514429472, 0.0111029027, -0.00830088463, -0.0229720399, -0.00798537582, -0.0276445746, -0.00829337258, -0.0113357781, 0.0442012697, -0.00238697371, -0.00608856743, 0.00416922243, 0.0235880334, -0.0120344041, -0.0860587656, -0.0168872289, -0.0110202692, 0.00845863856, -0.000860606437, 0.00420678314, -0.0254810862, 0.0108700274, -0.0515931882, 0.0226114597, 0.0187802818, 0.0224011205, -0.0372300297, 0.0375605635, -0.04284909, -0.0362985283, 0.0371098369, -0.0445919, -0.0262923948, -0.000204118187, -0.000154115682, 0.0170074236, -0.00403024862, -0.0163463578, -0.0425185561, -0.00923238695, 0.00129583944, 0.0149340797, -0.02997333, -0.00236255955, -0.0262623467, 0.0244594384, -0.0302437656, -0.0474465042, -0.0604875311, 0.0173079073, 0.0149115436, 0.0688710511, 0.00984837953, 0.000235105646, -0.0269083884, 0.00689987559, 0.0302437656, 0.0186150149, 0.00398517586, 0.0150392493, 0.0101413522, -0.013596924, 0.0205982123, -0.00920985, 0.00178788276, -0.00519087, -0.0373802744, -0.0170374718, -0.00824829936, -0.0120118679, 0.0182243846, -0.00410536956, 0.0178337563, -0.0107348086, 0.0548985191, -0.0150167132, -0.0273140427, -0.019681735, -0.00841356628, -0.0170524959, -0.000157284856, 0.0148289101, 0.0216649324, 0.0132588791, -0.0234678406, -0.0436303504, 0.0190056451, 0.00459365686, -0.0295977239, -0.0426387526, -0.016030848, 0.0198319778, -0.0715153143, -0.0251054801, -0.0148965195, -0.011320754, 0.0099009648, 0.0309799518, -0.00706138602, -0.0112531446, -0.0322720371, 0.020222608, -0.0452830158, -0.016376406, -0.0412264727, -0.0126954708, -0.00461243698, 0.00471009454, -0.0302587897, -0.0202977285, -0.00182732136, 0.00143011846, 0.00665197568, 0.00751962466, 0.00836098101, -0.0304390807, -0.044291418, -0.0197718814, 0.0166318174, 0.0131912697, 0.026833266, -0.00320391613, -0.0396940038, 0.000365745975, 0.0277948175, 0.0296728443, 0.00854127202, 0.0666474625, 0.00854878407, -0.0352768824, -0.00370910554, 0.0575127341, -0.0213644486, -0.0175482947, -0.036959596, 0.0191558879, -0.030153621, 0.00713275094, 0.0245195366, -0.0331133939, -0.0259318128, 0.0402649231, -0.0121395737, 0.0411062799, 0.0106596882, -0.00604349468, -0.00856380817, -0.0185098462, 0.00603598263, 0.0232575014, 0.0242040269, -0.0135593638, -0.0353970751, 0.0199671946, 0.00167520111, 0.0219053198, 0.0357276089, 0.047927279, 0.0463647582, 0.0182844829, -0.0111855362, -0.00167614012, -0.0103967637, -0.01881033, 0.0308597591, 0.00227617, -0.00673085311, 0.0522242077, -0.0158956312, -0.0167970844, 0.00035518207, -0.0493395552, -0.0026668, -0.00866146572, -0.00669329241, 0.0187051613, -0.00329593942, 0.00185173575, -0.0180591196, -0.00996857323, 0.000263393449, -0.00581061933, -0.00750835659, 0.0232274532, -0.0148213981, -0.0216649324, 0.0356675126, -0.00295413821, -0.0307696145, -0.0153547581, 0.00231560878, 0.000295789447, 0.00137002161, 0.0265177581, -0.0274192113, 0.0257364977, -0.00662192749, 0.0100737428, -0.0230321381, -0.0190056451, -0.000346026703, 0.0443214662, 0.012883273, -0.0248500686, 0.0318814069, 0.0369295478, -0.0292371418, 0.0121771349, -0.0127781034, 0.0354872197, -0.00415795436, -0.0398442447, -0.00835346896, 0.00675714528, 0.0292070936, 0.00821825117, 0.0109151, -0.0271037035, 0.0190056451, -0.000965306477, -0.00951784663, 0.0320616961, -0.011854114, 0.00739567494, 0.0396038592, 0.0234077424, -0.0159256794, 0.00149866648, 0.0272990167, 0.0287864152, 0.0422781706, 0.0252256747, -0.00257665454, -0.0152871497, 0.00975823402, -0.0114860199, 0.00891687814, 0.034315329, 0.00714401901, -0.0606077239, 0.0244594384, -0.0197418313, -0.0281553976, -0.00828586053, 0.0225363374, 0.0535162911, -0.0231222827, -0.0699527934, -0.0686306581, -0.00893941429, -0.0475066, -0.0323321335, 0.0185549185, -0.0197117832, -0.0360280909, 0.0341951363, 0.00219729287, 0.00653553801, 0.0211090371, -0.00924741104, 0.00717782369, -0.0182844829, 0.0469957776, 0.00729801739, 0.0112306084, 0.0142279416, -0.00252219173, 0.0298531353, 0.051052317, 0.00818820298, 0.0172928832, -0.0171125922, -0.0122447433, -0.00891687814, 0.0145509625, -0.0347961076, 0.0396940038, 0.0156402178, 0.0231974032, -0.0161360186, -0.0106146149, 0.033443924, -0.0242491, -0.0577230752, 0.0160608962, 0.0661065951, 0.00375230028, -0.0330532975, -0.0190657414, 0.0280051567, 0.0114334356, 0.0125903012, 0.0016470307, -0.0278699379, -0.0448923856, 0.000431946479, -0.0250303596, -0.00723040849, -0.0171276163, -0.0249402151, -0.0406255051, -0.00360205793, -0.023708228, 0.0151894921, -0.0201625098, 0.0128532248, -0.0174881984, 0.0494898, -0.0383117758, -0.027193848, 0.0236331057, 0.048287861, 0.0123348888, -0.037470419, 0.00496926252, 0.022656532, -0.0181342401, 0.0491893142, -0.00142824044, 0.0362985283, -0.0324523263, -0.019862026, 0.0138373114, 0.0114785079, 0.0154899759, 0.0250754319, 0.0129358582, 0.00241702236, 0.0006319565, -0.0177285857, 0.0136870695, 0.0047251191, -0.010975197, -0.0255261585, -0.00781259686, 0.0137922391, -0.00495423842, 0.000627261412, -0.0182243846, -0.00853376, 0.0115310932, -0.00785015803, -0.0241890028, 0.00282267644, -0.00797786377, 0.010629639, -0.0372901261, 0.00303301541, -0.0213944968, 0.0313104875, -0.00398517586, 0.0029259678, 0.0123198647, -0.00239073, 0.0265778545, -0.00620500511, -0.0108625153, 0.013243855, -0.0095554078, -0.00593081303, -0.0178938527, -0.0101864245, 0.0118240658, -0.00205080677, -0.0105695426, 0.0209738184, 0.00343303545, 0.022656532, 0.0260369834, -0.00468380237, -0.00763606234, 0.0261722, -0.00217100047, 0.0105770547, -0.014122772, -0.0210339148, 0.00227053603, -0.00400395598, 0.0375305153, 0.028576076, 0.00961550418, 0.00774498796, 0.00294662616, 0.0204479713, -0.016556697, -0.00917229, 0.0108174421, 0.0241589546, -0.0188403782, -0.0188554022, 0.00833093282, 0.0051608216, -0.00487536099, -0.00960048, 0.00600969, 0.00824829936, -0.00367342308, 0.0157453883, 0.0167069379, -0.00920233782, -0.000906618079, 0.0194713958, 0.00160853111, -0.0305142011, 0.00964555237, 0.0345857665, 0.0241589546, 0.0126203494, 0.0370196924, 0.0142129175, -0.0170074236, 0.0212142058, -0.00265553175, 0.0255411826, 0.00337106059, -0.00374291022, 0.0251054801, 0.0220255144, -0.0222659018, -0.0220705867, 0.0160008, -0.0192760807, -0.0230020899, -0.0184948221, 0.0254059657, -0.0245345607, -0.0153171979, 0.00944272522, 0.00742947962, -0.00332974386, -0.042548608, -0.0331133939, -0.0187051613, -0.0426688, -0.023167355, 0.00337669463, -0.0207033828, 0.0154599277, -0.0115536293, 0.017247811, -0.0256914254, -0.0225964356, -0.0155650973, -0.00406029681, -0.000114911847, 0.0221607331, -0.0235129129, 0.108174421, -0.0099009648, 0.0353670269, -0.0102615459, 0.0399944894, 0.00511199282, 0.0254059657, 0.00762479426, 0.00652427, 0.0160008, 0.0247449, -0.0263074189, -0.0286361743, 0.0407456979, 0.00684353476, -0.0161810908, 0.00601720205, -0.0118841622, -0.0270285811, 0.0441411734, 0.00138504582, -0.00336730457, -0.0204479713, 0.0188854504, 0.00560028, -0.012199671, 0.0255411826, -0.00464624166, -0.0362384319, 0.0174130779, 0.0491893142, -0.0124776196, -0.0183145311, -0.0262172725, 0.036959596, 0.0231072586, -0.0341350399, -0.0112681687, 0.0273290668, -0.00150336151, 0.020042317, -0.0326626673, 0.00581437536, -0.0595860779, 0.0315508731, -0.0166318174, 0.00224048761, 0.00424058782, 0.0175332706, 0.0315809213, 0.0218302, -0.00648670923, 0.0341951363, -0.012898297, -0.00327528105, 0.00471385056, -0.00939014088, 0.0108700274, 0.00863893, 0.00827834848, 0.00993101299, -0.0186901372, 0.0312503874, 0.00895443838, -0.0227466766, -0.0130936122, -0.00221419521, 0.00426688, 0.00269121444, -0.0152946617, -0.01201938, 0.00982584339, -0.00911970437, -0.0105244694, 0.000703321537, -0.0274492595, 0.0148965195, -0.0260520075, 0.00551764667, 0.0114409477, -0.0384019203, -0.0371398851, 0.0174130779, -0.00532608805, 0.0222058054, -0.0245495848, -0.00108268321, 0.0265628304, 0.00519838184, 0.00244707079, -0.0104869092, -0.0107573457, -0.00135969243, -0.0146786682, -0.00657685474, 0.00972067378, -0.00256726448, 0.0356074125, 0.00537116081, -0.0112005603, 0.00720787235, -0.017428102, -0.0312203411, -0.00381803117, 0.0365389176, 0.00837600604, -0.00668953639, 0.0018310775, -0.0143255992, 0.0372300297, -0.0190056451, -0.025090456, 0.00979579519, 0.00268370216, -0.01080993, 0.013596924, -0.00750835659, 0.000516457774, 0.0298681594, 0.00550262257, 0.00134654623, -0.0245045107, -0.00889434107, -0.0727172494, 0.0345557183, 0.0198770501, -0.00141039921, 0.0146110589, 0.0262322966, 0.0128757609, -0.00827834848, 0.00115404837, -0.0212142058, 0.0408658944, -0.0230321381, 0.013409121, 0.00867649, 0.00331096374, 0.00729801739, -0.0353069305, 0.0254059657, -0.0116587989, -0.0123273768, 0.0220555626, 0.00307996618, 0.00493170181, 0.0158956312, -0.0165867452, 0.032602571, 0.0125226919, 0.0241289064, -0.0189605728, 0.00142166729, -0.00311377062, 0.00991598889, -0.0106521761, -0.0171877146, 0.0294174328, 0.00694119232, -0.00731304148, -0.00981833134, -0.0183445793, -0.0281854477, -0.0274642836, -0.042188026, -0.0267731696, -0.0111629991, 0.00183389452, -0.00420302711, -0.0119367475, -0.00190807658, 0.00696372846, 0.00831590872, 0.0137321418, -4.19915377e-05, -0.0108249541, -0.00200197799, -0.0231523309, 0.0349463485, -0.0110653425, -0.027704671, -0.0169473253, 0.0135518517, 0.017082544, -0.0123198647, 0.0186600871, -0.00278511574, -0.0129659064, -0.0104193008, -0.000275600643, -0.00267243409, -0.0128607368, 0.00866897777, 0.00141039921, -0.0170224477, 0.0110728545, -0.0154449036, -0.0158205088, -0.00535989227, 0.0144007197, -0.00747455191, -0.0225363374, 0.0201925598, -0.00415044231, -0.0127630793, 0.0327528119, -0.0375906117, 0.0137321418, 0.0173680037, -0.00227992609, -0.00219165883, -0.0253158193, 0.0104268128, 0.00848868769, -0.0208235756, 0.0328730047, -0.0124926437, -0.00682475418, 0.0187953059, -0.0116437748, -0.000437580573, 0.0190957896, 0.0288164634, 0.0144382808, -0.0115686534, -0.023888519, -0.0195915904, 0.00365276472, -0.0310100019, 0.0378910974, -0.00245833886, 0.00644163648, 0.0204780195, -0.0119592836, 0.00300860102, -0.00557774352, 0.00301047927, 0.0212893281, 0.00729426136, -0.0263975635, 0.0286361743, 0.0235429611, -0.0120644532, -0.017953949, -0.0288915858, 0.00920233782, -0.0257965941, -0.0189755969, -0.00854127202, -0.0362083837, -0.0106972484, -0.0036865694, 0.00261984929, -0.0158205088, 0.00833844487, -0.0200122688, -0.0148664713, -0.00540496502, 0.0198470019, -0.0284408592, 0.00911970437, 0.0277497452, -0.0608781613, -0.00725670066, -0.00630266266, -0.00625383388, -0.0205080677, 0.0176534653, 0.0153096858, -0.0125076678, -0.00620124908, -0.0211541094, 0.0268783383, -0.0163012855, -0.00176816352, -0.000286868803, 0.0218302, -0.0135819, 0.0115386052, 0.0165717211, 0.02229595, -0.00991598889, -0.0415269583, -0.0268482901, 0.0144983772, -0.0173529796, 0.0283206645, -0.00397015177, 0.00465750974, -0.00944272522, -0.0146861803, -0.036088191, 0.0161660668, -0.0339547507, 0.0246547535, -0.0532158054, -0.0510222688, 0.0156552438, 0.0288164634, 0.0251054801, 0.0193061288, -0.0140401386, 0.010111304, 0.051052317, -0.000305649097, 0.00593832508, -0.0037391542, -0.00367154507, -0.0165717211, 0.0183445793, -0.00730928546, -0.0237683244, -0.0390629843, -0.0272990167, -0.0155050009, -0.0102314977, 0.0139575051, 0.0417373, 0.0137020936, 0.0100436946, -0.0110503174, -0.010622127, 0.0156702679, -0.00401146803, -0.0335040241, -0.0108625153, -0.00686231488, 0.0196967591, -0.0178487804, 0.0346158147, -0.00695997244, -0.0127555672, -0.0256012809, -0.00264050765, -0.0405654088, -0.00343303545, 0.0149791529, 0.00472887512, -0.0175182465, -0.00513828499, 0.0161209945, 0.0200122688, -0.00710270274, -0.00476643536, 0.0167970844, -0.0193812512, -0.0080004, -0.029447481, -0.0103516914, -0.0121395737, -0.00641534431, -0.0181642883, 0.0118165528, 0.0197718814, 0.0108550033, -0.0207634792, -0.0307996627, -0.00797035173, -0.00574676599, 0.00359642389, 0.0301986933, 0.0338345543, 0.0321818925, 0.0149491038, -0.00659939088, -0.0137471659, -0.0048453128, -0.0185849667, -0.0469657294, 0.0143556474, -0.0141377961, -0.0125076678, 0.00465375371, -0.0501508638, 0.00158505572, -0.00256538647, 0.0127856154, -0.0286962707, 0.00538242888, -0.0166017693, 0.0120869894, 0.0252857711, 0.0186300389, -0.00914224144, -0.00137565564, -0.0063928077, 0.0113958754, 0.0147462776, -0.00591203291, -0.00343303545, 0.0125302039, 0.00896195, 0.00990847684, -0.00701631326, -0.0534862429, 0.0192310084, 0.0129659064, 0.0110277813, -0.025451038, -0.0303639602, 0.0112456325, -0.00128832727, -0.0223410223, -0.00768489111, -0.00338984095, 0.00567164505, -0.00884175673, 0.0208686497, -0.0133415125, -0.0118315779, 0.0285009556, -0.0163012855, 0.0201625098, -0.000444153673, 0.022836823, 0.0307696145, -0.013416633, -0.032602571, -0.0344655737, -0.00183201651, -0.0296427961, -0.0239936877, 0.0212893281, 0.0258266442, -0.00617120042, 0.00023088009, 0.0176234171, 0.0112306084, -0.0250754319, 0.00839854218, -0.0119968439, 0.00381990941, 0.0150392493, -0.0178638045, -0.0101338401, -0.0223410223, -0.0130560519, -0.00239073, -0.00734309, 0.0115310932, 0.0502410084, -0.0300484505, 0.00480399607, 0.0308898073, -0.00903707184, -0.0129133221, -0.0121621108, -0.00809805747, -0.0222659018, -0.00794030353, 0.00259919092, 0.0184046756, 0.00949531049, 0.00272501889, 0.106672004, -0.0171125922, -0.00392132299, -0.0376507081, 0.00358891184, -0.0109676849, 0.00415419834, 0.015332222, 0.0382817276, 0.00267806812, 0.0384920649, -0.00150993466, 0.011147975, 0.0249251891, 0.0041804905, 0.00996106118, -0.00238133967, 0.00203390443, 0.0132739032, -0.00364900869, 0.011501045, 0.00634773541, -0.00973569788, -0.0322720371, 0.0139650172, -0.00468004635, 0.00614115223, -0.0228969194, -0.0206132364, 0.00709143421, 0.0310700983, -0.010637152, 0.000689705834, 0.00803796, 0.0230772104, 0.0400245376, 0.021244254, 0.0141002359, -0.0164365023, 0.0260520075, -0.00629139459, -0.0102314977, -0.0255712308, 0.000595334917, 0.0135218026, -0.000454952329, 0.00457112072, -0.000635712524, -0.0157303642, 0.0133865848, -0.0104793971, -0.0124926437, 0.0192460325, -0.00418424699, -0.00618246896, 0.0126128374, 0.00935258064, -0.0109601729, 0.014813886, -0.0265327822, 0.0123649379, 0.00812059361, -0.00260294694, 0.00801542401, -0.0020301484, 0.00116437743, -0.0234978888, 0.0012902054, -0.0141453082, 9.44882922e-05, -0.00184234569, 0.0172027387, -0.0125151798, 0.0110428054, -0.0330232456, 0.00986340363, 0.0118766502, -0.0228668712, 0.00145359384, -0.00582939945, -0.00889434107, -0.00159162888, 0.0107197845, -0.000539463595, -2.98136965e-05, -0.0055965241, -0.0135668758, -0.00208648923, 0.021274304, 0.00695621641, 0.00966057647, -0.0208386015, -0.0230020899, -0.0190356933, -0.00597964181, -0.0186300389, 0.00954038277, 0.00036175517, -0.0143932076, 0.00968311355, -0.0168421566, 0.0125527401, 0.012379962, 0.00448473124, 0.00724543259, -0.00310438056, 0.013416633, 0.00999111, -0.0239936877, 0.028576076, 0.0179990213, 0.0107648578, -0.00703133736, -0.0138673596, 0.0204479713, -0.00106390298, 0.0301085468, 0.006881095, -0.0115536293, 0.0122222072, -0.0147312526, 0.0181342401, 0.0120043559, -0.0435101576, -0.0222659018, -0.0128382007, 0.00514955306, -0.00946526229, -0.0215146914, 0.00532984408, 0.0118240658, 0.0321518406, -0.00723792054, 0.00454107206, -0.0201775339, 0.024910165, -0.00213156198, 0.022836823, -0.0254810862, -0.0138598476, 0.0104042757, -0.00432697684, -0.0105169574, -0.00613739621, -0.00918731373, -0.000581719214, -0.00940516498, 0.00406029681, -0.000407062616, -0.00317198969, -0.028921634, -0.0108625153, -0.00123574259, 0.00080050953, 0.033443924, 0.00244519277, -0.016902253, -0.011673823, -0.0057693026, -0.00464999769, 0.00269872649, 0.020042317, 0.0274041872, -0.0269684847, -0.0242641233, -0.0132138059, -0.0058894963, -0.0101338401, -0.0228518471, 0.00142448442, 0.00194188114, -0.00726421317, -0.0169473253, -0.00369595946, 0.0136495084, 0.0157453883, 0.0439608842, -0.00592330098, 0.0401146822, -0.00794030353, 0.0148739833, 0.00257665454, 0.0196967591, -0.000868118543, -0.0114184115, 0.00205831882, -0.0288765617, 0.0201024134, 0.00883424468, -0.00412039366, -0.0147087164, 0.0276145265, -0.00429317262, 0.00254472811, 0.0210038666, 0.0160008, 0.0100512067, 0.0149340797, -0.00146955706, 0.000266445248, -0.0295827, -0.0374103226, -0.00630266266, 0.000182168733, 0.012890785, -0.00228368235, -0.000456830341, -0.00269684847, 0.0178938527, -0.00369783747, 0.00853376, 0.0251054801, -0.00279074977, 0.00672709709, -0.0118691381, -0.00489414157, -0.0124175223, 0.00693368, -0.00575052248, -0.0051082368, -0.0188403782, -0.0301986933, 0.0133715607, 0.0138974087, -0.016736988, -0.0199371465, 0.0570620075, 0.0339547507, 0.00697875256, 0.00520213787, -0.00703133736, 0.026668001, 0.0429692864, 0.012898297, 0.00630641868, -0.0265778545, 0.0318814069, -0.0142579898, -0.0124701075, -0.0108850515, -0.0185549185, 0.023527937, -0.025451038, -0.0202526562, -0.0117414324, 0.000188624457, 0.00827083644, -0.000450257241, -0.0227016043, 0.0171276163, -0.00757972151, -0.0139124328, -0.00314006303, -0.010103792, 0.0155500732, 0.0139650172, -0.0155801214, 0.00738440687, 0.00581437536, -0.0350064449, 0.00587822823, -0.0010141352, -0.0196066145, 0.0101413522, -0.00529979542, 0.00458990084, -0.0422781706, -0.00389878638, -0.00530355144, 0.0119592836, -0.0128231766, 0.0385521613, -0.0057167178, 0.00522467447, -0.00863141753, -0.015850557, 0.00734684616, 0.0115761654, -0.0148814954, -0.00331471977, -0.000788302335, 0.0293122642, 0.0142730139, -0.0318513587, -0.00791025441, -0.00325274491, -0.0267881937, 0.0151143707, -0.0222659018, -0.0166768897, 0.0175783429, 0.0124776196, 0.0206432864, -0.00564535288, -0.0138147753, 0.031701114, 0.0123949861, -0.00674587721, -0.0325124227, 0.0233326219, 0.00407156488, 0.000348139467, -0.0199371465, 0.0160008, -0.00461619347, 0.00966808945, -0.00264050765, -0.0277797934, 0.0309198555, 3.40686056e-05, 0.00791025441, -0.0381615311, -0.0145584745, 0.00380864111, -0.0105470065, -0.00452604797, 0.0438406914, 0.0225213133, -0.00501057925, -0.000251890538, -0.0163163096, -0.00582939945, 0.00926994719, 0.00071036414, 0.00971316174, -0.00865395367, 0.00545755, -0.00518711377, 0.028050229, 0.0123874741, 0.0172177628, -0.0242791474, -0.0102164736, -0.00966057647, -0.0243242215, -0.0128382007, -0.0138373114, 0.0015287149, -0.00268933643, 0.0145509625, -0.0275844783, 0.0276295505, -0.0200272929, 0.0206733346, 0.00991598889, -0.00693743629, 0.00122259639, 0.00763606234, -0.012192159, 0.0442313179, -0.0296578202, 0.0204629954, 0.0164064541, 0.0130785881, -0.00201136828, 0.0110953907, 0.00269684847, 0.0274492595, -0.0139199449, -0.0112381205, -0.029627772, 0.0175633188, 0.0104718851, -0.0250754319, -0.00833093282, 0.0140701868, -4.09351451e-05, -0.0105620306, 0.0382817276, 0.027359115, -0.0138147753, 0.0135218026, -0.00618998101, -0.00261797127, 0.00487536099, 0.0217250306, 0.0187201854, 0.0159707516, 0.0144157447, -0.00495423842, -0.0119517716, -0.0230772104, -0.00437580561, 0.00487911701, -0.0118991863, 0.000224424366, -0.0109000755, 0.0457036942, 0.01464862, -0.0216649324, 0.0030949905, 0.00923238695, 0.0105019333, 0.0239936877, -0.0123499129, 0.00225739, -0.0157453883, -0.00881922059, -0.0157003161, 0.0054913545, 0.0058894963, 0.0107498337, -0.00883424468, 0.012379962, 0.00224236562, 0.0107423216, 0.00908965617, -0.0123424008, 0.0204329472, -0.0117489444, 0.00985589158, -0.0105770547, 0.00549511053, -0.017608393, -0.00602847058, 0.00111648778, 0.00348749827, 0.00802293606, -0.000120017736, 0.0142429657, -0.0119743077, 0.000508006604, -0.017608393, -0.0285310037, -0.0157904606, -0.00514955306, 0.0204930436, 0.0184197, 0.00704260543, -0.0217550788, 0.0143105751, -0.0148664713, 0.00579935079, 0.00609607948, 0.00669329241, 0.015174468, 0.0290568527, -0.0170074236, -0.00745201577, 0.00487536099, -0.0142354537, -0.00600217795, -0.00290530967, -0.0221306849, -0.0128457127, -0.0235129129, 0.00973569788, 0.00129490043, -0.0142579898, -0.0240537841, 0.010802418, -0.00847366266, -0.00457487674, 0.000633365, -0.00960799213, 0.00823327526, -0.00425561192, 0.00680597406, 0.0140852109, -0.00918731373, 0.0052659912, -0.0063402229, -0.0166017693, 0.00196817354, 0.0243242215, 0.00732806604, -0.00147237408, -0.00475141127, -0.0177285857, 0.00640783226, 0.00273816497, -0.0161510427, 0.0174130779, 0.0130485399, 0.0112456325, -0.00451102387, 0.0063928077, -0.00190432055, 0.0010413666, 0.012379962, 0.00827834848, 0.0142279416, 0.0134767303, 0.0114559717, 0.00946526229, 0.0521340631, -0.0138974087, 0.0238734949, 0.00739567494, 0.0104718851, 0.0200723652, -0.00301986933, -0.0275995024, 0.00218790281, 0.00157003151, 0.0106972484, 0.00290530967, -0.0183295552, -0.00852624793, 0.00346120587, 0.0018827233, -0.00118221878, 0.00809805747, 0.0230772104, 0.0211541094, -0.000971879577, 0.00664821966, 0.00182450435, 0.0016986765, -0.0101263281, 0.00452229194, -0.00294850417, -0.00140664307, 0.0133264875, 0.0215597637, -0.00538242888, -0.00863893, 0.00194375915, 0.0279300343, 0.0112681687, 0.0121320616, -0.0116888471, 0.011320754, -0.0193211529, 0.0210789889, 0.00738440687, 0.00385747, 0.013071076, 0.00666700024, 0.00581061933, 0.0030574298, 0.0105770547, -0.0135819, -0.0231373068, 0.00130898564, -0.00848868769, -0.0126203494, -0.00494297035, 0.0074783084, 0.0063777836, 0.00303301541, 0.000532890495, -0.0419476368, -0.0371999815, -0.0160458721, -0.000805674063, 0.0187802818, 0.0116212387, 0.00425185589, 0.00897697452, 0.00502935937, 0.00905209593, 0.0176985376, 0.0102314977, 0.0178638045, 0.0111930482, -0.0123048406, -0.00970565, 0.00333725614, 0.00491292169, -0.0001318141, -0.0103366673, 0.00261233724, -0.0104944212, 0.0221907813, 0.00856380817, -0.000723979843, -0.00923238695, 0.0168571807, -0.0291469973, -5.44334725e-05, 0.0208986979, 0.00899199862, 0.0211541094, 0.0126278615, 0.0122522553, -0.0134541942, -0.00236631557, -0.00723792054, 0.00195314921, 0.0178938527, 0.00647544116, 0.00240199803, -0.0355473161, 0.00163576251, 0.000828210439, 0.028050229, 0.0096756015, -0.0366891585, 0.016376406, 0.02229595, 0.00379925105, -0.011854114, 0.0274342354, -0.0104493489, -0.0090145357, -0.00807552133, 0.0141678443, 0.0175332706, -0.00779757276, -0.0115987016, 0.0027531893, 0.0111104148, -0.0254810862, -0.0189155, -0.0207033828, 0.00851122383, 0.00887180492, -0.0341650881, 0.00641910033, -0.00980330724, 0.00391756697, -0.0103366673, -0.0218001511, -0.00458614482, -0.00591203291, 0.0141002359, 0.012890785, -0.0155500732, 0.000573268102, -0.00126297399, 0.0321818925, 0.00299169892, -0.00985589158, 0.00255787442, -0.00347998622, 0.021424545, -0.0213043522, 0.00261797127, -0.00422180723, 0.00679846201, 0.0114484597, 0.0133189755, 0.00068407174, -0.0282906163, -0.000924459368, -0.0258266442, -0.00646041706, 0.00954038277, 0.00599091, 0.0140551627, -0.00961550418, -0.00480775209, -0.00256350846, -0.00291657774, -0.00426688, -0.00807552133, 0.0104869092, 0.00613364, -0.00284521258, 0.0221607331, 0.0120794773, -0.00951784663, 0.00341237709, -0.000717876246, -0.0329631492, -0.000145781931, 0.00902956, 0.00461619347, -0.00891687814, 0.0252106506, 0.011508557, 0.00680597406, 0.0121771349, 0.00406780886, -0.0137096057, 0.0221006349, 0.00716279959, -0.0176384412, -0.0113733383, -0.00705011794, -0.0024752412, -0.0201925598, -0.00182826037, -0.0254059657, 0.0192610566, 0.0175182465, -0.00168365228, -0.0199972447, -0.0136570213, 0.00107235403, -0.012898297, 0.00847366266, 0.00451478, 0.0116287507, -0.00666324375, -0.0147913499, 0.00390629843, -0.00443590246, 0.0276746228, -0.00604349468, -0.00751586864, -0.0024489488, -0.0104493489, -0.00562281627, -0.0383117758, -0.0058894963, 0.0164815746, -0.002003856, 0.00311189261, 0.0197268073, -0.000233697137, -0.0125076678, -0.0130034667, 0.00888682902, -0.0187802818, 0.00165266474, -0.000737595547, 0.00829337258, 0.0114634838, 0.0128231766, 0.0119217224, -0.00382554345, 0.00806800928, 0.0153096858, -0.00815815479, 0.000919764279, 0.00805298518, 0.0250003114, 0.0162411872, -0.0209738184, 0.0142054055, 0.00728674931, -0.00303301541, 0.00581813138, -0.0252557229, -0.0204179231, -0.0133415125, -0.00245270482, 0.00138504582, -0.0119442595, 0.0335941687, 0.00469882647, -0.0104869092, -1.264001e-05, 0.00699753314, 0.00484906882, 0.00375605631, -0.00205268478, 0.00918731373, 0.0222809259, 0.0136720454, 0.000196840832, 0.000107751868, -0.0117038712, 0.00928497128, 0.0317612141, 0.0191859361, 0.00233626715, 0.0442313179, 0.0160608962, 0.0023343889, 0.00603598263, -0.00347998622, -0.0106897363, 0.000999111, 0.00314757531, 0.0260670315, -0.00142730144, -0.00488287304, 0.000773278123, 0.00835346896, -0.0253007952, -0.000516927277, 0.00256726448, -0.0161360186, -0.0136269722, 0.00136908249, 0.0132288309, 0.0261722, -0.00289404136, -0.0181943364, 0.0288615376, -0.0171576645, -0.0225213133, 0.0223710723, -0.000937605568, -0.0155500732, -0.00432697684, 0.00914975349, -0.00317950174, -0.0240537841, -0.00419175904, 0.0290117785, 0.000601438514, -0.0219053198, -0.00487911701, 0.00939765293, 0.00544628175, 0.00872907508, 0.00451853592, 0.0164064541, 0.00833844487, 0.00209024525, 0.0158205088, -0.00402273657, -0.021785127, -0.00127518107, -0.00185830891, 0.0180891678, -0.00568666914, 0.0147613017, -0.0194864199, -0.00315884338, 0.00213907403, -0.00520965038, 0.00433448888, -0.00246209488, 0.0139124328, -0.0124776196, -0.00690363161, -0.00607729936, -0.0145659866, -0.00653178198, 6.56136108e-05, 0.00902956, 0.00569042517, 0.00676090131, -0.00883424468, -0.0107423216, 0.0298381113, -0.0347360075, 0.0110503174, -0.00266304403, -0.0105094453, -0.0191108156, 0.00675338926, -0.0228518471, -0.0150542734, -0.00197944161, 0.024219051, -0.00813561771, -0.0233025737, -0.0111930482, -0.00945775, -0.000327715912, 0.000334054261, -0.00570920575, 0.022145709, 0.024759924, -0.0242040269, 0.00677592587, -0.00756845344, -0.00711021479, -0.00284896884, 0.01201938, -0.00397390779, -0.000662474427, 0.00873658713, -0.00219353684, 0.023888519, -0.00413541822, 0.00463872962, 0.0192159843, -0.00496175047, -0.0117414324, -0.0332335867, -0.0285460278, -0.0115911895, 0.0279300343, 0.00398893189, -0.00870653894, 0.00469507044, 0.00221795123, 0.00691489968, -0.00394761516, -0.000519274792, -0.00661065895, -0.0204479713, 0.00617495645, -0.00158693385, -0.0229570158, 0.000227476165, -0.00226302398, 0.0327227637, 0.000381004967, -0.015850557, -0.011501045, -0.0339247026, -0.00140570407, 0.00925492309, -0.00231560878, -0.0090145357, 0.013251367, -0.0135142906, -0.0106521761, -0.000658718403, 0.0258266442, -0.00624256581, -0.00847366266, -0.0124400584, 0.0108550033, -0.018119216, -0.0137847271, 0.0135218026, -0.011846602, 0.0202676803, 0.00477019139, -0.0192009602, 0.0239486154, 0.0197418313, -0.0135067785, 0.0184647739, -0.0198169537, -0.0120494291, -0.00308184419, -0.0126879588, 0.00700504519, 0.0111705111, -0.00211653765, 0.00815064274, 0.01411526, -0.00261609326, -0.0101638883, -0.0140626747, 0.0148213981, -0.00626885798, 0.00646792911, 0.0172177628, -0.00351003464, 0.00347998622, 0.0119517716, -0.0148890074, -0.0116587989, 0.0139875542, -0.00850371178, 0.000883142755, -0.013071076, 0.00285648089, 0.00560028, -0.0181492642, 0.00195314921, -0.00516457763, -0.0109977331, 0.0107498337, -0.0122747924, 0.00644163648, 0.00392883504, 0.0115987016, -0.00724167656, -0.00912721734, 0.00430819672, 0.00259731291, -0.00929248333, -0.0184497479, -0.00531106349, 0.00541247707, -0.0195765663, 0.00242453441, 0.010622127, 0.00812810566, -0.0193812512, 0.00991598889, 0.00226678, -0.0258116201, -0.0210489389, 0.00887180492, -0.0201174375, 0.0118691381, -0.00681348611, 0.000700035, -0.00190338155, 0.00103009841, -0.00614490826, 0.00692616776, -0.0163613819, -0.00441712234, 0.000742290635, -0.0176835135, 0.0135067785, -0.00404902874, 0.00836098101, -0.00315696537, -0.0197418313, -0.0237983726, -0.00870653894, -0.0181943364, 0.0178638045, 0.00485658087, -0.00959296804, -0.016721962, -0.00699002109, -0.020222608, -0.00776001252, 0.00216348842, -0.0126804458, -0.000578902196, -0.0164214782, 0.0119893318, -0.0145284263, 0.0265628304, -0.00704260543, -0.00157472666, -0.00788020622, -0.0230922345, -0.00289028534, 0.00628388207, -0.010982709, 0.00115217024, 0.00216161041, 0.00918731373, -0.00127612019, -0.00870653894, -0.0128532248, 0.00728674931, -0.0135368267, -0.0160008, 0.0121545987, -0.00119536498, 0.00418800302, 0.0104268128, 0.0164815746, -0.000985025777, 0.00840605423, 0.0125978133, -0.0100286705, -0.00685855886, 0.00183765055, 0.0377108045, 0.0145509625, -0.00354008307, 0.0176684894, 0.0094502382, 0.000407062616, 0.0125602521, -0.0281553976, 0.00907463208, -0.00543125765, 0.00586696, 0.0151218828, 0.00506692, -0.00184046756, 0.0107197845, 0.0100061344, -0.00754967332, -0.00652802596, 0.0120794773, 0.0101939365, 0.00366403302, 0.0138297994, 0.00276633562, 0.00856380817, -0.0222358536, -0.0066031469, -0.00898448657, 0.00129396142, 0.00355886342, 0.00205831882, -0.0027531893, -0.000485000783, -0.0100361826, 0.0112306084, 0.00496550649, -0.0262923948, 0.00418800302, 0.00755342934, -0.0010939514, 0.00758347753, 0.00116437743, 0.00869902689, 0.00367905712, -0.00393634709, -0.0136645334, -0.00978828315, 0.0131161483, -0.011846602, -0.017953949, -0.00636651553, -0.0376807563, 0.0217550788, 0.0112756807, -0.00384995784, -0.029101925, 0.00233063288, 0.00448473124, 0.0205831882, -0.00658812281, -0.00212405, 0.0143481353, -0.000950751768, 0.018119216, -0.00799288787, 0.0171576645, -0.0296427961, -0.0224161446, 0.0129358582, 0.0128231766, 0.00889434107, 0.0101864245, 0.002527826, -0.00411288161, 0.00674587721, 0.00993852504, -0.013071076, -0.012545228, 6.08011615e-05, 0.0115761654, 0.00331659778, 0.0245946571, -0.0319114551, -0.00225739, 0.00680973, 0.0115987016, 0.0122372312, 0.019862026, -0.0194113, 0.0205381159, 0.00916477758, -0.00453731604, 0.00795532763, -0.0109676849, 0.0074257236, -0.000633834512, 0.00168083527, -0.00929999538, -0.0151669551, 0.00436829356, -0.00265177572, -0.00173248095, -0.00375605631, -0.00984837953, -0.0209287461, 0.0259919092, -0.00691489968, 0.0100061344, 0.0200122688, 0.00146955706, -0.00718533574, -0.00721538439, 0.0110653425, 0.0282455441, 0.0121470867, 0.011666311, 0.0108700274, -0.0127781034, -0.00860888138, 0.0187201854, -0.00183295552, -0.0150692984, -0.0163012855, 0.00102258637, -0.0104117878, -0.0196216386, -0.0106897363, 0.0236331057, -0.0208085515, -0.00772996387, 0.00597588578, 0.0275093559, -0.0157604124, -0.013769703, 0.0117940167, -0.02055314, -0.0321217924, -0.0246547535, 0.0124851316, -0.0126654217, 0.00395888323, 0.0236481316, 0.00760977, -0.0139650172, -0.00977325905, 0.0247749481, -0.00261045923, -0.00297291856, 0.0110052451, 0.0208986979, -0.00469882647, -0.0226865802, -1.69609411e-05, -0.000426312385, 0.00681348611, 0.0153096858, 0.0337444097, 0.0156101706, 0.00905209593, 0.00909716822, -0.0167069379, -0.0137020936, 0.0144758411, 0.000532421, -0.00498053059, -0.0056265723, -0.0175182465, 0.0113883624, -0.00301235728, 0.0378910974, 0.0122447433, -0.0177886821, -0.00948779844, -0.00860136934, 0.00671582855, -0.0134466821, 0.0166618656, -0.0143105751, -0.0136795575, 0.0058744722, -0.0178938527, 0.0119142104, -0.0103441793, 0.00623505376, -0.0173680037, -0.00101037917, 0.00374291022, 0.0136870695, 0.00427439203, -0.0116587989, 0.0030574298, 0.0125752762, -0.00225739, -0.0042481, -0.0221006349, -0.0143706715, 0.0277647693, 0.022115659, 0.00044532743, -0.00946526229, -0.0163463578, -0.00755342934, 0.00655807415, -0.00611861562, -8.7504377e-05, 0.00573925395, 0.000546975702, -0.0107723698, -0.0107348086, -0.0110052451, -0.00821073912, -0.0110878786, 0.0245646089, -0.016721962, 0.00709519, -0.011666311, -0.021965418, -0.0011193048, 0.0297780149, -0.00853376, 0.0382216312, 0.00207522116, -0.017773658, -0.00996857323, 0.000875161146, -0.00673085311, -0.00797035173, 0.0135142906, 0.00502935937, 0.00896946248, -0.0214846432, -0.0045673647, -0.0124024982, 0.00308560021, 0.0145509625, 0.0010798662, -0.00162355532, 0.0203428, 0.00348562025, 0.0142054055, 0.00478146, 0.0107949059, -0.0145960348, -0.0164515264, 0.0030161133, 0.00388751831, 0.010284082, -0.00228556036, -0.0133340005, 0.0153096858, 0.0117789926, -0.0029372361, -0.0353069305, -0.00209024525, -0.0180440955, -0.00293911411, -0.000580310705, 0.0330833457, -0.00563784037, -0.00286774896, -0.0140701868, -0.000991598819, 0.00458990084, -0.0126428856, 0.0170074236, -0.0046199495, -0.0163463578, 0.0156101706, -0.025270747, 0.0179990213, -0.0150918346, 0.01027657, -0.00607729936, -0.00291845575, 0.00178037072, 0.0156402178, 0.00522467447, 0.00381990941, -0.0109301237, 0.0182844829, -0.00718157971, 0.00848868769, -0.00548384245, -0.0227767248, 0.00117001159, 0.0127104949, -0.00142072828, -0.0155050009, -0.0164965987, 0.00688485149, 0.000138152449, -0.0281103253, -0.0200723652, 0.0254961103, 0.0148213981, -0.00482653221, 0.0037128618, -0.0144307688, -0.00381239713, -0.00369783747, -0.00775250047, 0.00622378523, -0.0242941733, -0.00299921096, -0.0110277813, -0.00926243514, 0.00487160496, 0.0138598476, 0.0246998258, -0.00167050608, -0.0135593638, -0.0104493489, -0.0284258351, 0.0123574249, -0.00689611956, 0.0202075839, -0.0122973286, -0.00194000313, 0.00580686331, -0.000547445205, -0.00324711064, 0.000380300713, -0.00103479356, -0.00124794967, 0.00274004322, 0.000325603149, -0.00119536498, -0.0170374718, 0.00379549502, 0.0127781034, 0.000947934692, 0.0192159843, -0.000237101063, -7.24801503e-05, -0.00325650093, -0.00838351808, 0.0159407035, -0.00290155364, 0.00881922059, 0.00033546277, 0.00596461771, -0.00404902874, -0.0179239, 0.0064303684, 0.0178788286, -0.00380112906, 0.0074257236, -0.0246998258, -0.00338608469, -0.0120118679, -0.00426688, 0.0183596034, 0.0160759203, 0.0335040241, 0.00242453441, -0.00805298518, 0.00757972151, -0.00505189598, -0.00959296804, 0.004792728, 0.000896758458, -0.0159707516, -0.00103009841, -0.0111404629, -0.00772245182, -0.0205681641, -0.0030424057, 0.000199070986, 0.0133790728, -0.000123362974, 0.00983335543, 0.00480024, -0.0256613772, -0.00549886655, -0.0624406822, -0.00360581418, 0.00807552133, 0.016721962, 0.0171276163, -0.00587071618, -0.0126503976, 0.00723792054, -0.0110878786, 0.0108399782, 0.00767362304, -0.00488662953, -0.00435326947, 0.00992350094, -0.0133415125, -0.00371661782, -0.00541998912, 0.00366591103, 0.00127048604, -0.0226114597, 0.0213644486, 0.00336542656, 0.00772996387, 0.00978828315, -0.00725670066, 0.00299733295, 0.00302550336, -0.00246397289, -0.00790274236, 0.0058519356, -0.00442463439, -0.00117940165, -0.00230246247, -0.0214846432, 0.00648670923, -0.0179689731, 0.00472136261, 0.00176065136, 0.00579935079, 0.00597964181, 0.0194263235, -0.00163012848, -0.00459365686, -0.00605100673, 0.0106822243, 0.0245495848, -0.0023343889, 0.00910468, -0.0138974087, 0.000272314093, -0.00919482578, 0.0154148554, -0.00549886655, 0.0113432901, 0.0163463578, -0.0123949861, 0.014122772, -0.0104869092, 0.0112982178, -0.0120569412, -0.0172628351, 0.00530730747, -0.0149491038, -0.000305649097, -0.00818820298, 0.000539463595, 0.0052284305, -0.0012507668, 0.0114709958, 0.00540496502, 0.00652802596, -0.00783513393, 0.00040002, -0.0149641288, -0.00652427, 0.0128757609, 0.00198507588, -0.0150242252, -0.0025954349, 0.00407907739, 0.0194263235, -0.0264276117, 0.00556647545, -0.0142429657, 0.0120869894, 0.0190356933, -0.00805298518, -0.00294662616, 0.00972818583, -0.00962301623, 0.00804547314, -0.0150993466, 0.00454107206, 0.00429317262, -0.0160008, 0.0150167132, -0.0228969194, 0.0110878786, -0.00670456048, 0.0168421566, 0.00094605668, -0.00575803453, 0.0127781034, -0.0106747122, 0.000735248032, -0.00842859, -0.00374478824, -0.00954038277, 0.00216161041, 0.0126804458, 0.00890936609, -0.000106812855, 0.01290581, -0.00851873588, 0.0175332706, 0.0112606566, -0.00446595112, 0.0150542734, 0.00764357485, 0.00358327781, 0.00922487397, -0.0480474718, 0.014986665, -0.00354947336, 0.00324898865, -0.00737689482, -0.00292408979, -0.00569418119, -0.026668001, -0.00948779844, 0.00783513393, 0.0177886821, 0.0066031469, -0.037470419, -0.0200573411, -0.0201174375, -0.000244378403, 0.0187051613, -0.0011455972, 0.0125602521, -0.00516833365, -0.00250716764, 0.0130410278, -0.0108925635, -0.0308297109, -0.00802293606, -0.0207184069, 0.0238434449, 0.0134016089, -0.019170912, -0.002527826, 0.00523969857, 0.0229269676, -0.00183577253, -0.0378009528, 0.0063251988, -0.00636651553, 0.0138373114, 0.00597588578, -0.012537716, -0.00369032542, -0.0171125922, 0.00464999769, -0.00711772684, -5.24087227e-05, 0.000291798613, -0.0220104903, -0.0103141312, 0.00157472666, -0.00194563717, 0.00458990084, 0.0188554022, -0.0194713958, 0.0132288309, -0.0227617, 0.0126654217, -0.00565286493, -0.00600969, 0.00443965849, 0.0203428, -0.0048453128, 0.0133114634, -0.00904458389, 0.0172628351, -0.0103291553, -0.0133189755, 0.0164515264, 0.0266980492, 0.00304991775, -0.00267619, 0.00929248333, 0.00538242888, 0.0126428856, 0.00187615014, -0.0285310037, 0.0022386096, -0.00249589933, 0.00270999456, -0.00447346317, 0.00699002109, 0.00809054542, 0.00604349468, 0.00890936609, 0.00291282171, -0.012725519, -0.0102615459, -0.00249214331, 0.00423307531, 0.00866146572, -0.0107197845, -0.0129508823, 0.00552140269, 0.00213344, 0.00180854113, 0.0010272814, -0.0109000755, -0.0210489389, -0.00841356628, -0.00803044811, 0.0118991863, 0.0115911895, 0.0213794727, 0.0112531446, -0.00843610242, 0.00326401298, -0.0106972484, 0.0116362628, 0.0216649324, 0.0116437748, 0.0118015287, -0.00060003, 0.0028320665, -0.000472324085, -0.00835346896, -0.00427814806, -0.00626885798, -0.00294287014, 0.0176985376, 0.0020395387, 0.0165266488, 0.00391381094, 0.00799288787, -0.00355135137, 0.00694119232, -0.015685292, 0.00830088463, -0.0147988619, 0.000337810314, -0.010464373, 0.00108268321, -0.00691865571, 0.000268792792, 0.00112775597, -0.00722665247, 0.0185699426, 0.00233063288, 0.0112155844, 0.0113883624, 0.000565756, 0.00643412443, -0.00438707368, 0.00736938277, 0.0231222827, 0.0200122688, -0.005055652, 0.00757596549, 0.00551764667, -0.000584066787, -0.0243091974, -0.00443214644, 0.00299169892, -0.00174844428, -0.0429993346, -0.021094013, -0.00321894023, 0.0183746275, 0.00326589099, 0.0197117832, -0.00218226877, -0.00302174734, -0.0169172771, -0.00333725614, -0.0211841576, 0.0117714806, -0.0214395691, -0.000441101874, -0.0106822243, 0.00426312396, 0.017938925, 0.0175332706, 0.0166017693, 0.00252031372, 0.00668202434, -0.00920233782, -0.0225663874, -0.00995354913, 0.0226264838, -0.00851122383, -0.0228067748, -0.00532608805, 0.00716655562, -0.0101714, 0.00804547314, -0.00602095854, 8.87955175e-05, -0.0105995908, -0.0147162285, -0.0381314829, -0.00204517273, -0.00175877335, 0.00320016, 0.0124100102, -0.00243768049, -0.00116719445, 0.00302174734, 0.0096756015, -0.0154449036, 0.00486784894, 0.00917229, -0.0173079073, -0.0080004, -0.00324335461, -0.00168459129, -0.000668578, -0.00939765293, 0.0299583059, 0.0165116228, -0.0117188962, 0.000506128592, 0.0154449036, -0.0115386052, -0.0210789889, -0.0100136464, -0.00664070761, 0.00174844428, -0.0113357781, -0.00330532948, 0.00770742772, 0.006272614, -0.017773658, -0.000466924743, 0.000950751768, 0.00127330306, -0.015850557, 0.0107047604, -0.0249852873, -0.0130335158, -0.0191859361, 0.0305592753, -0.0010150742, -0.0127931284, 0.0107423216, 0.0124400584, 0.000152237655, -0.0146861803, -0.00195314921, -0.0162261631, 0.0016986765, -0.0164214782, 0.0164815746, -0.00774498796, -0.0170975681, -0.00233063288, -0.0158205088, 0.0125677641, -0.00249402132, 0.00862390548, -0.0132138059, -0.0149415918, -0.0175482947, -0.000883142755, -0.00981081929, -0.0182694588, 0.0846164376, 0.0119292354, 0.028576076, -0.0149791529, 0.00346871815, -0.0169623513, -0.00897697452, 0.0509020761, -0.0234377924, -0.00109113439, -0.0110052451, 0.0126579097, 0.00360957021, -0.0105169574, 0.00454107206, 0.0122297192, -0.0112907058, -0.00435702549, 0.0170675199, -0.0205230918, 0.0107648578, -0.0290568527, 0.00490165362, 0.0154749518, -0.00283018849, -0.0106672, -0.0112531446, -0.0220255144, 0.00304616173, 0.0233927183, -0.00846615061, 0.0153096858, -0.0126579097, 0.0112681687, -0.0275694542, 0.0107272966, 0.00608856743, 0.014468329, 0.016030848, -0.0196216386, -0.00135124126, -0.00247148518, 0.00996857323, -0.0122146951, 0.0192760807, -0.00103573257, 0.00449224329, -0.0173680037, -0.0197568573, -0.0193361789, 0.00962301623, -0.00212405, -0.00382742146, -0.00845863856, 0.0205831882, 0.0147988619, -0.000352365023, -0.00472887512, 0.017428102, 0.00311752688, 0.0026480197, 0.00561530422, -0.00877414737, -0.00532608805, 0.0220856108, -0.00985589158, -0.0271487758, 0.00584817957, -0.00130147347, -0.000695809431, -0.00149397145, -0.00584442355, -0.0024226564, -0.00668202434, 0.00915726554, -0.00380864111, -0.00233814516, 0.00561906025, -0.0124926437, -0.000940892089, -0.0155801214, -0.00818069093, -0.00869902689, -0.0156101706, -0.0127856154, 0.00760601414, -0.0266229268, -0.0291169491, -0.0161510427, -0.00673460914, -0.0018169923, 0.0319715515, -0.0311301947, 0.0197418313, 0.00877414737, 0.0254961103, -0.000288512092, 0.0131987818, 0.0239035431, -0.00451478, 0.00952535868, 0.00574676599, 0.0157754365, 0.007320554, -0.00678343792, 0.0191558879, -0.0152045162, 0.00258980086, 0.0306794681, 0.013596924, 0.0177586339, 0.00956292, 0.0168121085, 0.0293272883, -0.00662568351, -0.0157604124, 0.0215898119, 0.00190807658, 0.0139124328, -0.00345744984, 0.00535613624, 0.0220555626, -0.0143105751, -0.00326589099, -0.00189493038, 0.00290718768, 0.00333350012, -0.000530543, 0.0216949806, 0.000512701692, 0.0121545987, 0.0221907813, 0.0206432864, -0.0196516868, 0.00591203291, 0.0324222781, -0.0125151798, -0.00779757276, -0.00421053916, -0.00221607322, 0.0232274532, -0.0232424773, 0.000148481602, -0.00631768676, -0.0199521706, 0.00500682322, -0.0170975681, -0.000726327416, -0.0192009602, -0.0116888471, -0.00667075627, 0.0115160691, 0.000926337379, -0.013769703, 0.0126954708, -0.0141753564, 0.00487160496, 0.00709894672, 0.00576179055, -0.0205831882, -0.00273065292, -0.000601438514, 0.0148814954, -0.00486033689, 0.00516833365, -0.0231373068, 0.0218902957, 0.00241138809, 0.00933004357, -0.00210151356, 0.0201625098, 0.00522091845, 0.00171651773, 0.00797786377, -0.00204705074, -0.00629139459, 0.00227992609, -0.0155801214, 0.00335228024, -0.0179088768, 0.0117489444, 0.00290343165, -0.00241702236, 0.0408057943, -0.00291657774, 0.00145453284, -0.0196216386, 0.000265741, 0.010284082, 0.0322419889, 0.000841356639, 6.56723e-05, 0.00221043918, -0.0104869092, -0.0119066983, 0.00164890871, 0.00596086122, 0.00273816497, -0.0238584708, -0.0154298795, -0.00132776587, -0.0101939365, 0.0221607331, 0.0140100904, -0.00807552133, 0.00739567494, 0.00518711377, 0.00395137118, 0.00154937326, -0.00374291022, 0.00675338926]
09 Aug, 2019
Algorithm for Dynamic Time out timer Calculation 09 Aug, 2019 Prerequisite – Computer Network | TCP Timers Calculating Time out timer (TOT) at transport layer is tricky as propagation delay is not constant i.e. path may change continuously and traffic is dynamic. So, static TOT cannot be used at TCP. And unnecessarily retransmitting the same data packet multiple times may cause congestion. Solution for this is we need dynamic TOT which can adjust to changes in round trip time (RTT). Algorithm for Dynamic TOT calculation: Basic algorithm Jacobson’s algorithm Karn’s modification 1. Basic algorithm – We assume initial round trip time i.e PRTT. On sending out each packet TOT = 2 * PRTT. The next round trip time is calculated using PRTTn+1 = α PRTTn + (1 - α)ARTTn where PRTT = predicted round trip time ARTT = actual round trip time α = smoothing factor such that 0<= α <=1 Example – Let PRTT1 = 10ms and α = 0.5 TOT = 2 * PRTT1 = 20ms Let ARTT1 = 15ms Then, PRTT2 = (0.5 * 10) + (0.5 * 15) = 12.5ms TOT = 2 * 12.5 = 25ms Let ARTT2 = 20ms PRTT3 = (0.5 * 12.5) + (0.5 * 20) = 16.25ms TOT = 2 * 16.25 = 32.5ms And so on TOT is calculated. Advantages – better than static TOT. TOT is flexible to dynamic round trip time. It takes into consideration all packets to derive new PRTT. Disadvantages – TOT = 2 * PRTT is used to allow a grace time for returning acknowledgement. It is wasteful. 2. Jacobson’s algorithm – Calculates TOT value more intuitively than basic algorithm. We assume initial round trip time i.e. PRTT. PRTTn+1 = α PRTTn + (1 - α)ARTTn PDn+1 = α PDn + (1 - α)ADn where ADn = |PRTTn - ARTTn| AD = Actual deviation PD = predicted deviation On sending out each packet, TOT = (4 * PD) + PRTT. Example – Iteration 1 Given α = 0.5, PRTT1 = 10ms, PD1 = 5ms and ARTT1 = 20ms TOT = (4 * 5) + 10 = 30ms AD1 = |10 - 20| = 10ms Iteration 2 PRTT2 = α PRTT1 + (1 - α)ARTT1 = (0.5 * 10) + (0.5 * 20) = 15ms PD2 = α PD1 + (1 - α)AD1 = (0.5 * 5) + (0.5 * 10) = 7.5ms TOT = (4 * 7.5) + 15 = 45ms Given ARTT2 = 30ms AD2 = |15 - 30| = 15ms Iteration 3 PRTT3 = α PRTT2 + (1 - α)ARTT2 = (0.5 * 15) + (0.5 * 30) = 22.5ms PD3 = α PD2 + (1 - α)AD2 = (0.5 * 7.5) + (0.5 * 15) = 11.25ms TOT = (4 * 11.25) + 22.5 = 67.5ms Given ARTT3 = 10ms AD2 = |22.5 - 10| = 12.5ms And so on TOT is calculated. Problem with Basic and Jacobson’s Algorithm In both, PRTTn+1 = α PRTTn + (1 – α)ARTTn i.e both depend on previous segment ARTT. But if initial time out timer times out then what next TOT will be chosen since the acknowledgement is delayed i.e its coming after time out so ARTT is not available. 3. Karn’s Modification – Whenever the timer times out do not apply either of Basic or Jacobson algorithm as ARTT is not available instead double the time out timer(TOT) whenever the timer times out and a retransmission is made. GATE | Gate IT 2007 | Question 13 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!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum/Algorithm for Dynamic Time out timer Calculation
https://www.geeksforgeeks.org/algorithm-for-dynamic-time-out-timer-calculation?ref=asr10
PHP
Algorithm for Dynamic Time out timer Calculation
What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, jQWidgets jqxTreeMap width Property, Difference between Flow and TypeScript, jQWidgets jqxTree destroy() Method, jQWidgets jqxTree collapseAll() Method, jQWidgets jqxScrollView buttonsOffset Property, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, jQWidgets jqxListBox enableHover Property, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxSlider buttonsPosition Property, jQWidgets jqxSlider rtl Property, jQWidgets jqxTooltip opacity Property, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, jQWidgets jqxToolBar height Property, PHP, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, Node.js date-and-time Date.transform() Method, TypeScript Optional Parameters, jQWidgets jqxToolBar theme Property, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, Steps to Diagnose and Resolve a Slow Network, How to use Optional Chaining with Arrays and Functions in TypeScript ?, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, jQWidgets jqxScrollView showButtons Property, jQWidgets jqxScrollView disabled Property, jQWidgets jqxSplitter destroy() Method, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, jQWidgets jqxTree collapseItem() Method, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), jQWidgets jqxSortable opacity Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, jQWidgets jqxSlider height Property, jQWidgets jqxSwitchButton onLabel Property, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, jQWidgets jqxToolBar tools Property, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTree width Property, jQWidgets jqxTree clear() Method, TLS Handshake?, Algorithm for Dynamic Time out timer Calculation, Adhoc TCP, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, jQWidgets jqxTabs position Property, Differences between Wireless Adhoc Network and Wireless Sensor Network, jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, Impact of Three-way Handshake and Slow Start Algorithm, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, How to Sort an Array Having Optional Properties in TypeScript ?
GeeksforGeeks
[-0.0203323569, -0.0446669161, -0.017425647, 0.013379626, 0.0041081, 0.0207559466, -0.00872012693, 0.0416871756, -0.0604128055, 0.0232974924, 0.0478219353, -0.0069527314, 0.0242031, -0.0604128055, 0.015906563, 0.0030765105, -0.000786929391, -0.00862518419, -0.00961112883, -0.0196312405, -0.00755160069, -0.0127004199, -0.021719981, 0.0671318322, -0.00996898953, 0.0320468321, 0.03333221, 0.0107358349, -0.0114150411, -0.0154683664, 0.032689523, 0.0269491374, 0.0334490649, -0.0224210974, -0.0110571794, 0.0105459495, 0.00539347902, 0.00156107801, 0.00161859149, -0.0289210249, -0.0317254886, 0.0157312844, -0.0258098226, -0.0306738131, -0.0349389352, 0.00713166175, -0.034091752, -0.0029377481, -0.0119846975, -0.0168852042, 0.0114734666, -0.0505387597, 0.0176447462, 0.041541107, 0.0132846832, 0.0280592367, -0.00230418774, 0.0430017672, 0.000315410784, -0.0324558169, 0.0674239621, 0.0274749734, -0.0490196757, 0.00930439, 0.0153807271, -0.0270367768, -0.0184042882, 0.00891001243, -0.0254154466, 0.000635842618, -0.0195289943, 0.0122695258, -0.0441410802, -0.013131314, 0.027007563, -0.0252255611, 0.0250502806, 0.0251525268, 0.0126566, 0.0472084619, -0.0227862615, 0.0454556718, -0.0293884352, -0.010984147, -0.011677959, -0.00550302817, -0.0106335888, -0.0371883474, 0.0263502672, -0.0132262567, -0.00178565423, 0.0187548455, -0.000180642295, 0.00888810307, -0.00030742283, 0.0161986947, 0.0392916948, -0.025254773, -0.0469163284, 0.0238817558, -0.000723938516, -0.0238379352, 0.00527297473, 0.000974989089, 0.0356692635, -0.0321928971, -0.0345007367, 0.00880776625, 0.0207559466, 0.0972798094, -0.0254738722, 0.03710071, -0.0120139103, 0.0120942462, -0.0544533245, 0.00496623665, 0.00325544109, -0.0844844505, -0.0127661489, 0.000895565841, -0.0508016795, 0.024232313, -0.00761002721, 0.0423298627, -0.0109111136, 0.0122403121, 0.0164031871, 0.0228300821, -0.0115172872, -0.000622148917, -0.00359686976, -0.0145554552, -0.0220267195, -0.0184042882, -0.00102885079, -0.0130801909, 0.0318423398, -0.0186087806, 0.043819733, 0.0059083607, 0.0200548321, 0.0321052596, 0.00947236549, 0.00482382253, -0.00337411952, -0.00574768847, -0.00503196614, 0.0495455116, -0.0457478, 0.0586308055, -0.00301625836, -0.0443747826, -0.0126492968, -0.00414096471, -0.0346760154, -0.0127807558, -0.0274457596, 0.021077292, -0.00584993465, -0.000513512525, -0.0273289084, -0.0298996661, 0.00739458, 0.026773857, 0.0047325315, -0.00358226337, -0.00527662644, -0.00706228055, 0.0122330096, 0.0174840745, -0.0192952901, -0.0162717272, -0.000833944301, 0.0485230535, -0.00051899, 0.0111813359, -0.00165784662, 0.0257367902, 0.00493337167, 0.0152492672, -0.0235458035, 0.00655105, -0.0130728874, 0.000515338324, 0.0306446012, -0.0451051146, 0.0267154314, -0.0101807853, 0.000706136751, -0.00961843133, -0.0125762634, 0.0338872597, 0.0166514982, -0.00457185879, -0.00943584926, -0.0111594256, -0.0243199524, -0.0159795973, -0.0076611503, -0.0342378207, -0.0329816528, -0.0397591069, -0.0257806107, 0.0100347195, 0.0126054771, -0.0350557864, -0.000164095778, -0.0138470363, 0.0690014735, -0.0194559619, -0.0389119238, -0.0179806985, -0.0310243722, -0.0155560058, 0.00594852911, -0.0101223588, 0.00517803198, 0.0271974485, -0.0224357042, -0.00144513836, 0.0461567864, 0.0149863493, 0.00706593227, 0.0230637863, -0.0475298055, -0.040781565, 0.0309075192, -0.0339749, -0.0172357615, -0.0215008836, 0.0180829428, 0.0425635688, -0.0152492672, -0.0281322692, -0.0256637577, 0.00362608302, 0.035085, 0.00657296, 0.021457063, -0.0153223006, -0.0301187634, 0.00812856108, -0.0435276031, -0.0301771909, -0.0328063741, -0.00205222424, -0.00591566414, 0.0334782787, -0.0013428923, 0.0110060563, 0.00571117224, 0.0113127949, 0.0022202, 0.0145043321, -0.00667885784, 0.0103414571, 0.00512325717, 0.0075223879, -0.0118167214, 0.0324850306, 0.0425927825, 0.00770497, -0.00420669466, 0.0110717863, -0.0185941737, -0.00203214027, 0.0237502959, -0.00213803793, 0.00194084912, 0.0105970725, 0.000364708, -0.0239547882, 0.0143071432, -0.0257367902, 0.0184042882, 0.00658391509, -0.0234581642, 0.0149133159, 0.0276210383, 0.0174840745, 0.00378675526, -0.0179368779, 0.0332153589, -0.0421253704, -0.0179953035, -0.0355524123, -0.0151616279, -0.0105897691, -0.0486983322, -0.0172211546, -0.026131168, 0.0345591642, 0.00256893202, 0.00743474811, 0.0444916375, -0.0154099399, -0.00885158591, -0.0261457749, -0.013825126, -0.0307906661, -0.04823092, -0.0131678302, 0.0042979857, -0.0119554838, -0.0134380516, -0.010042022, -0.00751508446, -0.0129268216, -0.00823080633, -0.0303816833, -0.00563083589, -0.04443321, 0.0198941585, -0.0170020573, 0.0350265726, -0.0240862481, 0.0164616127, -0.0019371974, -0.0100931451, -0.0238817558, 0.0288041718, 0.0280154161, 0.011232459, 0.0498084314, 0.0259266756, 0.00125068822, 0.0181267634, 0.0514151566, -0.0384737253, 0.017045876, -0.0332153589, -0.00389630464, -0.0248311833, -0.00872012693, -0.0150009561, -0.0203031432, -0.0031897116, 0.0135841174, -0.0175571069, 0.00468871137, 0.00141318643, 0.00652183732, 0.00561622949, 0.00262005487, -0.0171627291, -0.00564544229, 0.042300649, 0.0162571222, 0.00801901147, 0.0252109542, 0.00107906095, 0.017425647, 0.0584263131, 0.0199087653, 0.0353771336, -0.000564179092, 0.0014122735, 0.0112251556, 0.00747491652, 0.00643419754, 0.060471233, 0.0185065344, -0.0216907691, 0.0494578741, -0.0500129238, -0.0271536279, -0.0136060277, -0.0119627872, -0.00993977673, -0.00100420229, -0.0268322844, 0.0157897118, 0.0282345153, 0.00869091414, -0.00915832445, -0.00625526719, 0.0146065783, -0.0137082739, -0.0381815955, 0.0373928398, -0.0212233588, -0.0261019543, 0.038269233, 0.0425927825, -0.000915649871, 0.00182399643, 0.0111448187, -0.0252985936, 0.0217930153, 0.0588937216, -0.0123936813, 0.0330108665, -0.024495231, 0.0191492233, 0.00570021709, -0.0188278798, -0.0228300821, -0.0022859294, -0.00550668, -0.0494286604, -0.00625526719, 0.0253570192, -0.0180391241, 0.00985213649, -0.0184042882, 0.0210188664, -0.0159503836, -0.0585139506, 0.0164762195, 0.00178108958, -0.00446230965, 0.022479523, 0.00628082873, -0.0356984772, 0.0156290382, 0.000790124584, 0.0035110563, 0.0233851317, 0.00270952028, 0.00448787119, 0.0230637863, 0.00808474142, -0.0115391966, 0.0136060277, 0.00907068513, 0.0147307338, 0.0216031298, 0.0206390955, 0.0139054628, -0.00597409066, 0.0182874352, 0.00669346424, -0.0144751193, 0.0245974772, 0.00280446303, -0.0512983, -0.0139711918, 0.0117509924, -0.026014315, -0.0164031871, -0.00886619277, 0.0385321528, -0.0113931308, -0.0143874791, -0.0477927253, -0.0126566, -0.0293007959, -0.0408107787, -0.0163739733, -0.00448421948, -0.0282491222, 0.0099616861, 0.046332065, -0.00381231681, 0.0639183894, -0.00109549332, 0.0177762061, -0.0323681757, 0.0349389352, -0.0111813359, 0.00744205154, 0.0221435726, 0.00540078245, -0.00663503818, 0.0350265726, 0.0080263149, 0.00837687217, 0.0114953769, 0.00381962024, -0.0148037672, 0.0157166775, -0.0444039963, -0.0024685117, 0.0448421948, 0.0429433398, 0.0128756985, -0.0286581069, -0.0131532233, -0.0265839715, -0.0331861451, -0.0107723512, 0.0147088245, 0.0361366756, 0.0187548455, -0.0187110268, 0.0299726985, -0.00201388192, 0.00498084305, -0.0044367481, 0.0159357768, 0.00386709161, -0.0005765034, -0.0193391088, 0.00530949095, -0.015775105, -0.00832574908, -0.03888271, -0.0278985649, 0.00295600621, -0.0111009991, -0.0155998254, -0.00165328209, -0.00785833877, 0.0577836223, -0.00709514553, -0.0227862615, 0.0345007367, 0.0298558455, -0.0375681184, -0.027007563, -0.0265693665, 0.0128903054, -0.00798979867, 0.0333906375, 0.0112397615, 0.0697610155, -0.0401973, 0.00726312073, 0.009085292, 0.0212963913, 0.00782912597, 0.00995438267, -0.00573308207, -0.00579516, -0.0478219353, 0.00750047807, 0.0222896375, 0.00991786644, 0.0292277634, -0.0330692939, -0.00828192942, 0.0296951737, 0.00687969849, -0.00184499344, -0.0152784809, -0.0105751622, 0.0254884791, 0.00852293801, -0.0335367024, -0.0114588607, 0.00270769442, 0.00310937525, -0.0127150258, -0.023604231, -0.013562208, 0.00397664076, 0.00217455439, -0.0131678302, -0.0230345745, 0.000140017743, -0.0239109676, -0.00445865793, -0.0215300955, 0.0323389657, -0.0230345745, -0.0036808576, 0.0041227066, -0.0278693512, 0.012751543, -0.0126785096, 0.0113858273, 0.00731424382, -0.00904147141, -0.00404967368, 0.0230783932, 0.00969876815, 0.0177031718, 0.0239693951, 0.0122695258, 0.0139492825, -0.00754429772, -0.0229615401, -0.0279131699, -0.00266935211, 0.02044921, -0.000337548903, -0.00492606824, -0.00855215173, -0.0160672367, -0.00458646566, -0.00572577864, -0.0227132291, 0.0194997825, 0.0191638302, -0.0209312271, -0.00410079677, -0.0111229094, -0.00977910403, -0.0102757281, -0.023239065, 0.0230783932, 0.00457185879, -0.00409349333, 0.00380136189, -0.000995073118, -0.00155377469, 0.013759397, 0.0404602215, 0.00579881156, -0.0298996661, -0.000835313695, 0.0314917825, -0.00402411213, 0.0151032014, 0.0236334428, 0.0148548903, 0.0180099104, 0.0120066069, -0.0423882902, 0.0052182, -0.00954539888, -0.0358153284, 0.0418332405, 0.0226840153, -0.0358153284, 0.00994707923, 0.0156290382, 0.0203177501, -0.0222604256, -0.00994707923, 0.0392040573, -0.0271390229, 0.0194705687, 0.0138616422, 0.00229323283, 0.0245244447, -0.0151762348, -0.0140661346, -0.0161256623, -0.0532555841, -0.0162133016, -0.0139857987, -0.00616762741, 0.0361951, 0.011166729, 0.0283951871, -0.0305861738, -0.0178200249, -0.0154245468, 0.0255030859, 0.000160558251, 9.87655731e-05, -0.0130436746, 0.0623408742, -0.0111959418, 0.0172357615, 0.018944731, 0.0354647711, 0.0340041146, 0.021719981, -0.00483112549, 0.0201132577, 0.00725216605, 0.0262188073, -0.0195728149, -0.0337411948, 0.0219244733, -0.00915832445, 0.000493884902, 0.0452219658, -0.000357176468, -0.0123644685, 0.0264817253, -0.00161402684, 0.0100493254, -0.00833305251, 0.0335951298, -0.00874203723, -0.0217491947, 0.00173361821, -0.0468579, -0.00879316, 0.00331204152, 0.0267884638, -0.00417017797, 0.0130290678, -0.0259558894, 0.0397591069, 0.0100785391, -0.0334490649, -0.00765384687, 0.020200897, -0.0381815955, 0.0275187939, 0.00909989793, 0.00606903341, -0.0367793627, 0.00578055345, -0.0190907978, 0.0255322978, -0.00408253865, 0.0383860879, 0.01476725, -0.0165930726, -0.00643784925, 0.0169436298, -0.0296075344, 0.0196458474, 0.00305094896, -0.00216725096, 0.00810665078, 0.00670441939, -0.0304401089, 0.00564544229, -0.0346760154, 0.0346760154, -0.00312398188, -0.00146796112, -0.0354647711, -0.0406062864, -0.00344350073, 0.00875664316, -0.0225233436, -0.0190907978, -0.00453899428, -0.0229177214, 0.0126712061, -0.0099616861, -0.0368085764, -0.00888810307, -0.032309752, 0.0069527314, 0.0215447024, -0.0192806832, 0.00536061404, 0.0271390229, 0.0165054332, 0.0276210383, -0.0113420077, 0.001767396, 0.0113200983, 0.00390360807, 0.00229505869, 0.000670076755, -4.38767929e-05, -0.0109549332, -0.00521089695, 0.0157897118, 0.0254738722, -0.0015464715, 0.0418040268, 0.00225671637, 0.0131021, 0.0274019409, -0.034471523, -0.0264817253, 0.0201424714, 0.0154975792, -0.00438562501, -0.0316962749, -0.0172795821, 0.0143436594, 0.00365894777, -0.00203031441, -0.00791676529, -0.0161840878, -0.0246705096, -0.0159795973, 0.0322513245, -0.00176100561, 0.00265109399, 0.0574914925, -0.00968416128, -0.0282491222, -0.00135841174, -0.0102465143, -0.0411321223, 0.0269345306, 0.0126419934, 0.00726312073, 0.0156290382, 0.0159357768, -0.00146978698, -0.0227278359, 0.0174548607, 0.00853754487, 0.029286189, 0.0154975792, 0.0167537443, -0.0213986374, -0.0160526298, -0.00822350383, -0.00437101861, 0.0697610155, 0.00665694801, 0.00705862883, 0.00918753725, 0.0157166775, 0.0104290964, 0.0080044046, -0.0256053321, 0.023093, 0.0298412386, 0.0490196757, -0.01205773, -0.0165200401, -0.00569656538, 0.0291985497, -0.00280446303, -0.0226548035, 0.0223918837, 0.0260435287, -0.016914418, 0.00987404678, -0.028409794, -0.000328648021, -0.0212817844, -0.0406647138, -0.0178784523, -0.0260727424, -0.0138689457, -0.00168979855, -0.0163155477, -0.0165784657, -0.00576229487, 0.00702211261, 0.00395473093, 0.0135183884, -0.0287749581, 0.0115245897, -0.00900495518, 0.00280081131, -0.00398394419, -0.0130509771, 0.00933360308, -0.00675919419, 0.0336827673, -0.0122914352, 0.0312288646, 0.0140223149, -0.00303999404, 0.0117582958, 0.00945776, -0.00327917677, -0.015147021, 0.00707688695, -0.0308783054, -0.0138105191, 0.0133065926, 0.00381962024, -0.0145262415, -0.00472522806, 0.0285558607, -0.00698924763, -0.00846451242, -0.00037657583, 0.0101807853, -0.0307322405, 0.0176447462, -0.0148694962, 0.0292423703, 0.0117582958, 0.0359321833, -0.00526567129, 0.025371626, 0.0241300669, -0.0107942615, 0.00764654344, 0.0562645383, -0.0284974333, -0.0115318932, 0.0177469924, -0.0210480783, -0.0134891747, 0.0238087215, 0.0180391241, 0.00774148619, -0.0408692062, -0.0100055058, -0.0373344123, 0.00431624381, 0.000410581793, 0.00182673521, -0.00622970564, -0.00109275465, 0.00741283828, -0.0156436451, -0.00403871899, 0.0177031718, -0.028526647, 0.0390579887, 0.0159357768, -0.0736171529, 0.00524376146, -0.00197553961, -0.00433085, -0.0321928971, 0.00323353126, -0.000317464845, -0.0359321833, -0.0175278932, 0.0175425, -0.0342670307, -0.00458281394, 0.00300165173, 0.0211795382, -0.0256199371, -0.0194267482, 0.0119408779, 0.00298156776, -0.0229177214, 0.0108599905, 0.0174840745, 4.54173278e-05, 0.0354063436, -0.0465365574, 0.000267482974, -0.00111831608, 0.0150155621, -0.0332153589, 0.0225379504, 0.0240424275, 0.0254592653, -0.0176593531, 0.00274055917, 0.0392916948, -0.0354647711, -0.0406939276, -0.00275881751, 0.0343838856, 0.0166807119, 0.0150447758, -0.00728868227, 0.0260873493, 0.0262772348, -0.022596376, -0.0432646833, -0.0147964638, 0.0125616575, 0.0179076642, -0.000172083746, -0.00183951599, -0.0133065926, -0.0125032309, -0.0366332978, 0.0338872597, 0.00399124762, 0.02689071, -0.0281030554, -0.0224210974, 0.00381231681, 0.015526793, 0.028030023, 0.0320176184, 0.0311996508, 0.00883698, 0.02966596, 0.00876394659, 0.0108892042, 0.0020193595, 0.00676284544, -0.0102465143, 0.0311704371, -0.0265693665, -0.0233705249, -0.0168559905, -0.0212525707, 0.00598504534, -0.00629178341, 0.0344423093, 0.0211795382, 0.00830384, 0.00983753055, -0.00175826682, -0.016154876, 0.0144020859, 0.0120650334, -0.00566735212, -0.0231952462, -0.0129049113, -0.011166729, -0.0131678302, 0.00339237787, 0.00499910116, -0.0296513531, 0.00781451911, -0.00544460211, -0.0318423398, 0.0162425153, 0.013379626, 0.0238379352, -0.00133832777, -0.00342524261, -0.0278547443, 0.00537887216, 0.00378310378, -0.0236334428, 0.00109549332, 0.0301771909, -0.0340333283, -0.00398029247, 0.0112689752, 0.0180829428, -0.016286334, -0.0401096642, 0.00250137644, -0.0285850726, -0.00215081871, -0.0248165764, -0.0263648741, -0.0271390229, 0.0188424867, -0.00671537407, 0.0335659161, 0.00318788574, -0.0223334581, 0.0497207902, -0.0215154886, 0.00439292844, 0.00108910294, -0.0171043035, -0.0211649314, 0.0167975649, -0.0384153, -0.02134021, 0.0217638016, -0.0142560201, 0.032952439, -0.0139273722, 0.0252401661, 0.00624796376, -0.0134307481, -0.0243783779, -0.0159649905, 0.0192222577, 0.0306446012, -0.0147088245, 0.00119226193, -0.020084044, 0.0147234304, 0.0103998836, -0.0217345878, -0.00700385403, 0.0132335601, 0.00143874798, -0.00855215173, -0.00716452673, -0.0343254581, 0.0114661641, 0.0154099399, 0.0155121861, 0.00445500622, -0.0116925659, 0.0349097215, -0.0187986661, -0.0199379791, 0.00980831683, 0.0244806241, 0.00464854343, 0.00789485592, 0.00703306729, -0.0247727558, 0.00806283113, 0.00229140697, -0.00233887834, -0.00259631919, 0.0040022023, 0.0105021298, 0.0240278207, -0.00770497, -0.0236918703, -0.0110717863, -0.00232974929, -0.000385933177, -0.0184481088, 0.0039328211, 0.0148256766, 0.0127223292, -0.00656200526, 0.0206683073, 0.0153223006, -0.00287567, -0.000529944897, -0.0083841756, -0.00138214743, 0.0301479772, -0.0256491508, -0.0167099256, -0.0296221413, 0.000660491176, 0.00844990555, -0.0170896966, 0.0200402252, 0.00716452673, -0.0399343856, -0.0218806546, -0.0114807701, 0.00774148619, -0.0055797128, -0.0249334294, -0.0144312987, 0.00301991, 0.00730694085, -0.00869821757, -0.00683222711, 0.000233248793, 0.00676284544, 0.0771811604, -0.0200110115, -0.000465356454, -8.38737105e-05, 0.00498814648, -0.00263648736, 0.00714992, 0.0065473984, 0.00636481633, -0.00276064337, 0.0462444276, -0.00538617559, 0.00963303819, -0.00626987359, -0.0176885668, -0.00475078961, -0.00693082111, 0.0164908264, 0.0101880878, 0.00704037072, 0.0197919142, 0.0178492386, -0.0125689609, -0.0123352548, -0.00539347902, -0.019324502, 0.0103487605, -0.0226401966, -0.0155121861, -0.0118605411, 0.0218514409, -0.0240570344, 0.0118678445, 0.00621509878, -0.000112231013, -7.21770339e-05, 0.0271974485, -0.00492972, -0.00154555857, 0.0171335153, -0.00897574238, 0.0043527605, -0.00888810307, -0.0185065344, -0.0108965077, -0.00570386881, -0.00595948379, 0.00160307193, -0.0140150115, 0.0147234304, -0.00297061284, -0.0212525707, 0.00746030966, -0.0126492968, -0.0183312558, -0.0215593092, 0.0264379065, 0.0140077081, 0.032952439, 0.000949427602, 0.0037429356, -0.00879316, -0.0256053321, 0.0219829, -0.0212963913, 0.00520724524, -0.0205076355, 0.00178200251, 0.0267884638, 0.000989595661, -0.00992517, 0.00701846089, 0.000488407444, -0.0135037815, -0.0310243722, -0.0048165191, -0.0159503836, 0.0113200983, 0.0268761031, -0.00118587154, 0.00139949273, -0.0090925945, -0.00847911835, 0.0108015649, -0.0138470363, -0.0059083607, -0.000848550873, 0.0158627443, 0.0338580497, -0.0102611212, -0.00915102102, 0.0145627586, -0.0321052596, -0.0298850592, 0.000776430941, -0.0209312271, 0.0254446585, -0.0189009123, -0.0247289371, 0.000118564334, -0.008705521, -0.000256756262, 0.0146650048, 0.00716452673, 0.010786958, -0.00437101861, 0.0104729161, 0.0114369504, -0.0153223006, 0.0137009704, 0.00801901147, -0.000784647127, -0.0233851317, -0.0302064028, 0.0248019695, -0.0261603817, 0.0509477444, 0.00478365412, 0.0108307777, 0.0166076794, 0.000849007338, 0.00600695517, 0.00571847521, -0.00980831683, -0.00758811738, -0.0339749, -3.43197535e-05, -0.00731789554, -0.0238671489, -0.00304364576, -0.0163593683, 0.0359029695, 0.00399124762, -0.0179953035, -0.0191346165, 0.0148548903, 0.0174840745, 0.00464124, -0.00599600049, 0.00256345444, 0.0140661346, 0.000386389642, 0.00763924047, -0.00217638025, -0.00186325167, -0.0152346613, -0.0388534963, -0.0149863493, -0.00974989124, 0.0465365574, 0.0150009561, -0.00911450479, 0.00077916967, -0.000366533815, -0.00589375431, -0.0375681184, 0.00778530631, -0.00413001, 0.00498084305, 0.0272996947, 0.0336243436, -0.0216031298, 0.044550065, -0.0282491222, 0.0210042596, -0.0166222863, 0.00648166891, -0.0162571222, -0.025751397, -0.00954539888, 0.0124740181, 0.0127077233, -0.00227497448, 0.0197773073, 0.0144751193, 0.0134307481, 0.0172357615, -0.0101223588, 0.025371626, -0.00172175036, 0.00460107205, 0.00446961308, -0.00225854223, -0.0062735253, -0.00272960425, -0.00127990136, -0.0304985344, 0.00422130106, 0.0246412978, 0.0162279084, 0.00830384, 0.0113566145, 0.0234581642, -0.0119773941, 0.0128683951, 0.0111594256, 0.00153095194, 0.014073438, -0.0184042882, 0.0250794943, -0.00657661166, -0.0199525859, -0.0254154466, 0.0146503979, -0.00570021709, -0.00523280678, -0.0023407042, -0.0160672367, -0.000618953723, 0.0129414285, 0.00685778819, 0.0142195038, 0.00505387597, -0.0126931164, -0.0284244, 0.00289210235, 0.000805644086, 0.00725216605, -0.00238634972, 0.00216177362, -0.00534600765, -0.0253424123, 0.00337594538, 0.0146430945, -0.00372285163, -0.0183458626, 0.0230783932, 0.0436444543, 0.00815047, -0.0150885954, -0.00792406872, 0.0313165039, 0.0458354428, 0.00877125, 0.0283367615, -0.022099752, 0.0158481374, -0.0154391527, -0.00586819276, 0.0214278493, -0.00499910116, 0.0106554991, -0.0178930573, 0.0019371974, -0.0153076937, -0.00012027604, 0.0128830019, 0.0125251403, -0.0138397329, -0.00379405869, 0.0111594256, 0.00538252387, -0.0176447462, 0.00709514553, 0.0048712939, -0.0152492672, 0.00987404678, -0.00484573236, -0.0197334867, -0.0119993035, 0.0270805955, -0.002762469, -0.0105167367, 0.00725946948, 0.0147161279, 0.00923866, -0.0271244161, -0.00514881872, -0.00827462692, -0.00170805678, -0.00459742034, 0.00173087954, 0.0361366756, 0.0048165191, 0.0019846689, -0.0219536871, 0.0167975649, 0.00281906966, -0.046711836, -0.00335220969, -0.000849920267, 0.000672815484, 0.0347928703, -0.00252146064, -0.0211649314, 0.0177177787, -0.00336864218, -0.0123279523, -0.0516488589, -0.011429647, -0.00782182254, -0.000711614208, 0.0297097806, 0.00209421804, -0.00772688, 0.0418332405, 0.0129268216, 0.0405186489, -0.0130509771, -0.00297426456, -0.00781451911, -0.00858866796, -0.0305277482, 0.0105094332, -0.0032390086, 0.0224357042, 0.0114369504, -0.0333029963, 0.0132700764, 0.021719981, 0.0397006795, -0.0234873779, -0.0088808, 0.0133431088, 0.00583532779, -0.00323353126, 0.0355232, -0.00364434114, 0.0205368493, 0.0083549628, -0.0145481518, -0.00774148619, -0.00763193704, -0.00534235593, -0.0322221108, -0.0021234313, -0.0176885668, 0.018185189, 0.0136279371, -0.00376849715, -0.00628082873, -0.011232459, -0.00498449476, -0.00516342558, -0.0018194319, 0.0192660764, -0.022085147, 0.0132773798, -0.00268943608, 0.0149717424, -0.00799710117, 0.00307833636, -0.0148548903, -0.0119846975, -0.00872012693, -0.0464781299, 0.00966955442, 0.0257221833, -0.00484573236, 0.0236626565, -0.034471523, 0.0011101, 0.00902686547, -1.47064275e-05, 0.0136060277, 0.0213548169, 0.0119481813, 0.00154829724, 0.00659121852, 0.00855945516, -0.0243783779, 0.000492515566, 0.00283002458, -0.00942124333, -0.00728503102, 0.0020613533, -0.0115026804, -0.0167099256, -0.00728137931, 0.0224503111, -0.0166953187, -0.00861057732, 0.00317875645, -0.0160380229, 0.00148439349, 0.0181997959, 0.02322446, 0.0170166641, -0.00336864218, 0.00217455439, -0.00522550335, 0.0195436012, -0.00589010259, -0.00341793918, -0.0292277634, 0.011992001, -0.0189739447, 0.0217491947, 0.0294906814, 0.00504292129, -0.0105313426, 0.0134964781, -0.00397298904, 0.0146211851, -0.02411546, -0.00940663647, -0.00529853627, -0.0162425153, 0.00591201242, -0.003646167, -0.0243783779, 0.00135293428, -0.00518898666, 0.0128537891, 0.0154537596, 0.0181267634, -0.00638307445, -0.0300311241, 0.0141756842, -0.0384445153, 0.000179387032, 0.00336499047, 0.0127150258, 0.00368816103, -0.0154829724, 0.000940298487, 0.00847181492, 0.0238379352, -0.0136863636, 0.0269345306, -0.0254592653, -0.00101880881, -0.0120650334, -0.0137374867, -0.0186672062, -0.0204053894, -0.00104619621, 0.00779260928, -0.00476174429, -0.0118313283, 0.00124977529, 0.00729598571, 0.0043527605, 0.00517438026, -0.0147526441, -0.00742744515, 0.0124959275, -0.0130290678, -0.035990607, 0.00270586857, -0.0142560201, -0.0154537596, -0.00397664076, -0.0232098531, -0.00874203723, -0.0363119543, -0.00971337408, 0.013445355, 0.0060142586, -0.00147800311, 0.0134964781, 0.004542646, -0.0173672214, -0.0137301832, -0.0281614829, 0.00214534113, -0.00973528437, -0.018302042, -0.0143144466, -0.0252401661, -0.0207997672, -0.0163593683, 0.0231514256, 0.00556875812, 0.0290816966, -0.0020613533, 0.00205405, -0.00633195182, 0.00912911166, 0.0139200687, 0.0141683808, -0.00806283113, 0.0132408626, -0.015147021, 0.0085448483, 0.00541173713, 0.00918753725, -0.0042979857, -0.0154391527, 0.00153460365, 0.00448787119, -0.00790946186, 0.0115903197, -0.00189155189, 0.0169582367, 0.0699363, -0.00819429, -0.00622240221, -0.00407888694, 0.0119043607, 0.0123863779, 0.0113712214, -0.0176009275, 0.0277963188, 0.0142268073, 0.0057695983, -0.00396568608, -0.0266423989, 0.0270805955, -0.013197043, -0.00195362978, 0.017790813, 0.0140953483, 0.00814316701, 0.026773857, 0.00622240221, -0.013562208, -0.000406930136, -0.00118952326, -0.00486399047, 0.00458646566, 0.0163447615, 0.00689065317, 0.0271244161, 0.0097425878, 0.00336864218, 0.00381962024, 0.0198357329, 0.00460472377, 0.00353844347, 0.00427607587, 0.000749043596, -0.00442579295, -0.00283550192, 0.0184773207, -0.00847181492, -0.00927517749, 0.0150447758, 0.0080044046, 0.0107066222, 0.00516342558, 0.0256637577, -0.00833305251, -0.0162279084, -0.00349462382, -0.00721564936, -0.0245682634, 0.00823811, 0.00446230965, 0.00702211261, 0.00824541319, 0.000133855589, -0.0320176184, -0.0170020573, 0.0158627443, 0.00387439481, 0.0202301107, -0.00267665554, -0.00903416891, 0.0105678588, 0.0120796403, -0.0249042157, -0.00203944347, -0.00661312835, 0.0251817405, -0.00280263717, 0.00203396589, 0.00281176623, 0.00362973474, -0.00168705976, 0.0103998836, 0.00470697, 0.0100055058, -0.0105824657, -0.00394377625, 0.0281322692, -0.00192806835, -0.00738362502, 0.0142341107, -0.0250794943, -0.0184919275, 0.0175863206, 0.0178784523, 0.00273143, 0.0393209085, 0.0265839715, 0.000109948734, 0.00479095755, -0.00507943751, 0.0182436164, 0.0105167367, -0.0118313283, 0.000909259485, -0.0417748131, -0.00607268466, -5.9225109e-05, 0.00226584543, -0.00579516, -0.00966955442, -0.00622605393, -0.00083485723, -0.020200897, -0.00290123164, 0.0180537309, 0.00275699166, 0.00817238074, 0.00524741318, 0.0144897252, 0.023735689, -0.00209239242, -0.00567830727, -0.017790813, 0.0395838283, -0.0125762634, -0.0085740611, -0.0236626565, 0.0189739447, -0.00850102864, -0.0170750897, 0.00831844658, 0.0328355879, -0.00649992703, 0.00685048522, -0.00807743799, -0.00121143309, -0.0078656422, -0.00287384423, 0.0311704371, 0.00301625836, -0.00020266627, -0.00521089695, 0.0311120115, -0.00789485592, -0.000504839874, 0.00933360308, 0.000196732348, 0.027387334, -0.0163009409, 0.00343984924, 0.00103341544, -0.00804822426, 0.0183750745, 0.00676649716, 0.0055797128, -0.022596376, -0.00952348858, -0.00972798094, 0.0141245611, -0.00686874334, -0.0117144752, 0.0123206489, -0.000149945656, -0.03155021, -0.0223480649, 0.00376484543, -0.00582802482, 0.000151885586, -0.0136863636, -0.00475078961, -0.0051305606, 0.0121526727, -0.00671537407, 0.0162133016, 0.00699289935, 0.0138105191, -0.0135037815, -0.0125397472, 0.0156728588, 0.00668250956, -0.0298266318, 0.0126127806, 0.00863248762, 0.00706958398, 0.0206537023, 0.0289794505, -0.0190761909, 0.00523645803, 0.00276064337, -0.0115465, -0.0111886384, -0.00809204392, -0.0168267787, -0.0136717567, 0.00619684067, -0.0311120115, 0.022859294, 0.0159649905, -0.0139346756, -0.0127442395, -0.0292131566, 0.0138689457, -0.00556145469, 0.000116681455, -0.0085740611, 0.0114442538, -0.00327004772, 0.00560527435, 0.0018714678, 0.00368268345, 0.023998607, -0.0102611212, -0.00597043894, -0.0169728436, 0.000329332688, 0.0056856107, -0.0315209962, 0.00381596852, 0.00650723046, -0.0115245897, 0.00301260664, 0.0344423093, -0.00364251551, -0.0188424867, 0.0078364294, 0.00552493799, -0.0166807119, -0.00736901863, -0.00585358636, -0.00224758731, 0.0311412252, 0.00312580774, 0.0264671203, -0.00320614385, 0.00313858851, -0.0145627586, 0.0127807558, -0.0197919142, 0.00140314444, 0.0219975058, 0.018944731, -0.0221727863, 0.0169290248, -0.0099324733, -0.013825126, -1.84151286e-05, -0.0192660764, -0.0278693512, -0.00828923285, -0.0263648741, -0.000598869694, 0.000892827113, 0.0318131261, -0.0158043168, -0.00872743, -2.47484495e-05, 0.0210480783, -0.00335220969, 0.0273581203, 0.00777800288, 0.00801901147, 0.00795328151, 0.0101296622, -0.0151908416, 0.0242907386, -0.01767396, -0.0110790897, 0.0233705249, 0.0105532529, -0.00359504414, 0.0273435134, -0.00170896959, 0.0108745974, 0.0101807853, -0.00261457753, -0.00405697711, -0.00799710117, 0.000275927392, 0.0186526, 0.00522915507, 0.00856675766, 0.0149717424, -0.0108088674, -0.0188863054, 0.00120778137, 0.00181121565, -0.0244221985, -0.00467775669, 0.013825126, 0.0326310955, -0.000726677245, 0.0254154466, -0.00189702935, 0.0212087519, -0.0133869285, -0.0269637424, 0.0205368493, -0.0088808, -0.035201855, -0.024232313, 0.0104729161, 0.00602156203, -0.0286435, -0.00545920851, 0.0106262853, -0.0308198798, 0.0112470649, -0.00188059697, 0.0207121279, 0.00842799526, 0.00165145623, 0.0165930726, 0.0152200544, 0.0103779733, -0.0106408922, -0.00320614385, -0.00340515841, 0.00912911166, 0.0140588311, 0.00807743799, -0.0138981594, 0.00880046375, 0.00270952028, -0.022464918, -0.0275187939, -0.0173380077, 0.0138762491, 0.00880776625, -0.0150593817, -0.00501735974, -0.0196312405, 0.0144093893, -0.00974989124, -0.0209020134, 0.0123133454, 0.00492241699, 0.00804822426, 0.00416652625, 0.00864709448, 0.014518939, -0.0153223006, -0.0185941737, -0.0308783054, 0.00151086797, -0.0200986508, -0.00931899715, 0.00248494418, -0.000292359793, -0.000267026509, -0.0130582806, -0.00615302101, -0.0041920878, 0.00131367915, -0.0126273865, -0.00614206586, -0.0108453846, 0.00470697, -0.0118167214, -0.0211649314, 0.0133869285, -0.0212233588, -0.0206829142, 0.0184188951, -0.010224605, -0.0103925802, 0.00839878246, 0.010670105, -0.0161110554, 0.0170896966, 0.0141683808, -0.00709879678, 0.0250502806, -0.00253424142, 0.00311850454, -0.00605442654, 0.0262480211, -0.0099616861, 0.0107650477, 0.00178382837, -0.0166807119, 0.00508308923, -0.00323718297, -0.00230783923, 0.0254300516, -0.0069673378, -0.00262553245, -0.0155560058, -0.0102173015, 0.0172065496, -0.0345883779, 0.00230418774, 0.00116396172, -0.00275334, -0.00242651789, -0.016666105, 0.041920878, -0.0335951298, -0.0131532233, -0.000985944062, -0.0283221547, 0.0137959132, 0.00204857253, -0.00403141556, 0.016286334, 0.000880502805, -0.0111375162, -0.00377580035, -0.0115026804, 0.0144459056, -0.0187986661, -0.0154537596, -0.00213621208, 0.0116487462, -0.0118167214, -0.00425051432, 0.0356400497, 0.00891731586, -0.00633560307, 0.0053898273, 0.00192624249, 0.0392916948, 0.0138616422, 0.0160234161, 0.0142268073, -0.00284280535, -0.0255469047, -0.0030345167, -0.00518533541, 0.0227862615, 0.00828192942, 0.0143655697, -0.001191349, -0.00184590626, -0.0043527605, -0.00591201242, -0.0204053894, 0.0313457176, -0.0247289371, 0.00255980273, 0.00746396137, -0.0030144325, -0.0131532233, 0.00758081395, -0.0074310964, -0.00463393703, 0.00851563457, -0.0234143455, 0.00331021566, -0.0122110993, -0.00798979867, 0.0164470077, 0.0165492538, 0.00891731586, -0.00283367606, -0.000793319778, 0.0172795821, -0.00261275168, -0.0149133159, 0.00779260928, 0.00389995635, -0.02134021, -0.00981562, 0.00598869706, -0.000787385856, -0.013562208, -0.0112689752, -0.0224064905, -0.00790946186, -0.0148037672, -0.000576959806, 0.0184042882, 0.010604376, -0.016154876, 0.0122403121, -0.0123863779, -0.0155998254, -0.0269491374, -0.0109038102, -0.000846268609, 0.00366077363, 0.00896113552, -0.00331934495, 0.0147380373, -0.010918417, -0.0101077519, 0.006028865, -0.00701480918, -0.0227716547, 0.0168998111, -0.028906418, 0.0162279084, 0.00191711332, -0.00523645803, -0.00525471661, -0.00111740327, 0.00918023475, 0.00804822426, -0.0109622367, 0.00376484543, 0.0181997959, -0.00669711595, -0.0235458035, -2.69594075e-05, -0.0122695258, -0.00893192273, -0.0149279227, -0.00690525956, -0.00983022712, -0.0209458321, 0.00420669466, -0.00937742274, 0.0314041413, 0.00118039409, 0.0199671928, 0.0125762634, -0.0136498474, 0.0053204461, 0.0307906661, -0.0276356451, 0.0216761623, -0.0138324294, 0.0121818865, -0.00956000574, 0.018930126, -0.00710244849, 0.0087347338, 0.000594305166, -0.0140515277, 0.0028172438, -0.00330656418, 0.00254519633, -0.000774605083, -0.014949833, 0.0180975497, 0.00708053866, -0.000314497884, -0.0197188798, 0.00284828269, 0.0167829581, 0.0125105344, 0.0158481374, 0.00447326433, -0.0128391823, 0.0155413989, 0.0186672062, 0.0192222577, -0.00744570326, 0.0108892042, 0.00971337408, 0.0141683808, 0.0128245754, 0.00905607827, -0.0106116794, -0.000308563962, -0.00693447283, -0.00537887216, -0.00467410497, 0.0116049265, 0.0115684094, -0.00761733064, -0.00578785641, 0.000976814888, -0.0144897252, -0.0132408626, 0.0327479467, -0.0146357911, 0.0114369504, 0.0165054332, 0.0180537309, -0.00207048235, -0.0071572233, -0.00414826814, 0.00863248762, -0.00518898666, -0.00989595708, -0.00208143727, 0.0044221417, 0.0166514982, -0.00397298904, -0.00900495518, -0.00756620755, -0.00846451242, -0.0195874218, -0.00725946948, -0.021457063, 0.00852293801, -0.0119189676, -0.0195289943, -0.0217345878, -0.0455140956, 0.0202301107, 0.00910720136, -0.000868178497, -0.0394669734, -0.00884428341, -0.0143509628, 0.0153661203, 0.00304729724, -0.0107358349, -0.022976147, -0.00652914029, 0.0111156059, -0.00693812454, 0.0138835525, -0.0365456566, -0.0248019695, 0.0234143455, 0.0182144027, 0.00389630464, 0.0267446451, -0.00210334733, -0.00239730463, -0.00285558612, -0.00218550931, -0.00315684662, -0.0228739, 0.0041920878, 0.00735076051, 0.0114004342, 0.005145167, -0.00382692344, 0.00175096351, -0.00813586358, -0.00204857253, 0.0259120688, -0.00321892463, 0.0057842047, 0.0105532529, 0.00475078961, 0.00353844347, 0.00864709448, -0.000971337431, -0.000900586834, 0.00362608302, 0.0115391966, -0.011677959, 0.0154829724, 0.0176885668, -0.00143418333, -0.0101077519, 0.000733524095, 0.00234253, -0.00958921853, -0.0045572524, 0.00812125765, 0.0120796403, 0.00683953, 0.00164780463, -0.0149060134, -0.00863979105, 0.0186964199, 0.00342706847, 0.0154245468, -0.00158298796, 0.0142998397, 0.00521089695, -0.00899034925, 0.0200110115, 0.0100639323, -0.0187548455, -0.0258828569, 0.00149534841, -0.000661404105, -0.00407158351, 0.00514881872, 0.009085292, -0.0320468321, 0.0217053741, -0.00593757397, 0.00563448761, 0.00621509878, -0.00831844658, 0.0151032014, 0.0180683378, -0.0113712214, -0.0218514409, -0.00339420349, -0.00255249953, -0.0057549919, 0.0135402977, -0.00820889696, -0.00848642178, -0.0223334581, 0.00716817798, 0.00681396853, -0.0223480649, 0.00415192, 0.0177323855, -0.00465949858, -0.0271244161, -1.17394666e-05, -0.00439658, -0.00712070661, -0.00224210974, 0.0138105191, 0.0101442682, 0.00345993321, -0.00188424857, 0.00392916938, -0.0114077376, -0.0112543683, 0.00408253865, 0.0071572233, -0.00285010855, -0.0143655697, 0.0137959132, -0.00562353246, 0.0195143875, 0.00148256763, -0.00880776625, -0.00945045613, 0.00552128674, -0.00511230249, -0.00861057732, 0.00336133875, 0.00164506584, -0.0154683664, 0.0141099542, -0.00562353246, -0.00765384687, -0.0203323569, 0.0188132729, -0.0288041718, 0.0113274017, -0.00991786644, 0.037889462, 0.0199233722, -0.00438927673, 0.0138616422, -0.0120285172, -0.0118459351, -0.0187402405, -0.0228300821, -0.0108307777, 0.00665694801, -0.0122257061, -0.0148841031, -0.0119554838, 0.00487494562, -0.00795328151, -0.000185549186, -0.0182728283, 0.00501735974, 0.0112835811, -0.0180245172, -0.0255176928, -0.000533596554, 0.0052510649, -0.0257660039, 0.00307833636, 0.00579881156, -0.0283805821, 0.0101661785, -0.0112251556, -0.0137374867, -0.00612015603, -0.00687239505, 0.00165419502, 0.0141829876, -0.00524741318, -0.00119226193, 0.0100493254, 0.00180482527, 0.00607633637, 0.022216605, -0.00427242415, -0.00029395739, 0.019324502, -0.0115391966, 0.0049552815, -0.0152784809, 0.00951618608, -0.0121964924, -0.00163593679, 0.00119043607, 0.0300019123, -0.00566735212, 0.0265547596, -0.0105605563, 0.00976449717, -0.0198065192, -0.018930126, -0.000128720465, -0.0164762195, 0.00028345891, 0.00394012453, 0.0037155482, 0.0130582806, 0.0138689457, 0.0179660916, -0.0129268216, 0.0135914208, 0.00586819276, 0.00792406872, -0.0161256623, 0.0296221413, 0.0144824218, 0.00254154461, -0.0230053607, -0.00772688, 0.010042022, -0.0299726985, 0.0169874504, -0.00622240221, 0.00755160069, -0.00136936666, -0.0235165916, 0.00540078245, -0.00812125765, -0.014584668, -0.00512690889, 0.0251671337, 0.019324502, -0.017045876, 0.0234143455, 0.0180829428, -0.0237795096, 0.0212963913, 0.00911450479, 0.00815777387, -0.00529488456, -0.00853024144, -0.0302940421, 0.0133577157, 0.0152200544, -0.0142998397, -0.00848642178, 0.00868361071, -0.00788755249, -0.0121380668, -0.00779991271, 0.00803361833, -0.0117363855, -0.0321636833, -0.0155706126, -0.00112288073, -0.0047325315, -0.011298188, 0.00384883326, 0.0120650334, -0.00226584543, -0.0127223292, -0.00508674094, -0.0113420077, -0.0138835525, 0.000314726116, 0.023239065, -0.0146869142, -0.00501005631, 0.00400585402, -0.00844990555, 0.0203907825, 0.0124959275, 0.0114953769, 0.0034142877, -0.0166514982, 0.00537522091, -0.00608729152, 0.0254446585, 0.00425416604, -0.00369729, 0.0343254581, -0.00947236549, 0.00434545707, -0.0105824657, -0.0265839715, -0.0175717138, 0.0151762348, -0.0103633674, 0.000574221078, 0.0121015497, 0.000503470481, -0.0184481088, -0.00157020718, -0.00961843133, 0.0172357615, 0.0105094332, 0.0105240392, 0.0190761909, 0.0130509771, -0.0204930287, 0.0126492968, 0.0126419934, -0.000130203945, 0.0226548035, -0.0235604104, -0.00194267486, -0.0137886098, -0.0155706126, 0.00467775669, -0.0129852481, 0.00988135, 0.0249772482, 0.00275699166, 0.00790215842, -0.0133358054, 0.00867630728, -0.00763924047, 0.0099324733, -0.00546651194, -0.00614206586, -0.0155998254, -0.01161223, 0.0150885954, -0.0100055058, 0.0235604104, 0.000218984555, 0.00364068965, -0.00147982896, -0.000151885586, -0.0249772482, 0.0101004485, -0.00050620921, 0.0228008684, 0.0102392109, 0.011809418, -0.01856496, 0.00976449717, -0.0197919142, -0.0112178521, -0.0032390086, 0.0174694676, 0.0246851165, -0.013511085, -0.0204784218, 0.0140442252, -0.0184481088, 0.0211357176, -0.00486399047, 0.000722112716, 0.00911450479, -0.011677959, 0.0155998254, 0.00328465435, 0.00411540316, -0.00907798856, 0.0118605411, 0.00163045933, -0.00866900384, -0.0118824514, -0.0237502959, -0.00774148619, 0.00785833877, 0.00658756681, -0.00725946948, -0.0240862481, 0.00528392941, 0.00556875812, -0.0170312691, 0.00408984208, 0.00976449717, 0.0137740029, 0.0167391393, 0.0166807119, 0.000838965352, -0.0138835525, 0.0189593378, -0.00924596377, 0.0142925363, -0.00247398927, -0.00394742796, 0.0311120115, -0.00207961164, -0.00953809544, 0.00171444705, -0.00855945516, 0.0182728283, 0.000751325861, 0.00276977243, -0.0337411948, 0.0133650191, -0.0179806985, -0.0158627443, -0.00907798856, -0.0206537023, -0.0233413111, -0.0041081, 0.00177104759, 0.00971337408, 0.027650252, 0.00266204891, 0.0131751336, 0.00134106644, -0.00510865077, -0.00221289648, -0.00237174309, 0.0146211851, 0.0249188226, -0.00322622783, 0.00291218655, -0.00961843133, -0.00271864934, 0.00959652197, -0.00145883195, 0.00456090411, -0.0263502672, 0.00489685545, -0.00855945516, 0.0155852186, -0.00235165912, 0.0110717863, -0.00612745946, 0.00447691604, -0.0153223006, 0.00344532658, 0.00508674094, -0.012554354, 0.029169336, -0.0182144027, -0.0152492672, -0.00864709448, 0.0113785239, 0.0108307777, -0.00414826814, -0.00607268466, 0.00152456155, 0.0246559046, -0.000462617725, 0.0210188664, -0.00128629175, 0.0180975497, 0.00169345015, 0.0221727863, -0.00862518419, 0.0204638168, -0.00320796971, 0.0273435134, -0.000141158889, -0.00728868227, 0.00796788838, -0.0057549919, -0.0044513545, -0.00487494562, -0.0269345306, 0.010158875, 0.00273143, 0.0060142586, -0.0219829, 0.0020266627, -0.00309842033, -0.0145992748, 0.00693082111, 0.00323718297, -0.00145335449, 0.0046960148, -0.00937012, -0.00806283113, 0.00129176921, 0.00843529869, 0.0238671489, -0.012306042, 0.00901225861, -0.00143418333, 0.0251233149, 0.00133558898, 0.00865439791, -0.0152638741, -0.00704767415, -0.0338580497, 0.00072622078, 0.00520724524, -0.00512325717, -0.00788024906, 0.00576229487, 0.0221873913, 0.00102793798, -0.0202301107, 0.000424503669, -0.0372467749, -0.011809418, 0.00305094896, -0.00939203, 0.00483842893, 0.00597409066, 0.0032317054, -0.0153807271, 0.0176885668, 0.0276356451, -0.00099324726, -0.00855215173, -0.00351288193, -0.00758811738, 0.00343072, 0.024612084, -0.00721564936, 0.00310207205, 0.00131915661, 0.000324996363, 0.00577325, -0.0138397329, -0.0043527605, 0.0227132291, -0.0217053741, 0.0113931308, -0.00378675526, 0.0023133168, -0.00519263837, -0.00528027816, 0.00962573476, -6.39037826e-05, -0.00427242415, -0.0123425582, 0.000150059772, 0.00417382969, 0.00760272378, -0.00673363265, 0.00898304582, -0.00441118656, -0.00154555857, 0.0206098817, -0.0132627729, -0.00337411952, -0.0192806832, 0.0259851031, 0.0100274161, -0.0126639036, -0.00916562788, 0.0016779307, -0.000544551469, -0.0170166641, 0.0163009409, 0.00440023188, -0.0271682348, -0.00692717, -0.0032736992, -0.0223042443, 0.0164762195, 0.0114223445, -0.000509404403, -0.0163009409, -0.00450978102, 0.0065181856, 0.0279131699, 0.00243382109, -0.00448787119, 0.0108892042, 0.0115976231, -0.0128756985, 0.0145627586, 0.0105167367, 0.0205222424, -0.0108234743, 0.000595218036, 0.00733615365, 0.00214534113, -0.010158875, -0.00761733064, 0.00482747424, 0.00590105774, 0.022976147, 0.00955270231, 0.0121672796, -0.0108453846, 0.0216031298, -0.00494797854, 0.00184316759, -0.0178200249, -0.00202118536, 0.0347928703, -0.00133011153, 0.00400950573, -0.00082435878, -0.0151032014, -0.0193975363, 0.0179660916, 0.00386344, 0.00268761045, 0.0250794943, -0.00324083446, 0.00953809544, -0.00482017081, 0.00215629605, -0.00102976372, -0.00325544109, 0.0177762061, 0.00179021875, -0.000300347776, 0.00795328151, -0.00137940876, -0.00400585402, -0.0219390802, -0.0105970725, -0.00181212858, 0.00077916967, -0.0187110268, -0.0173526146, 0.0176009275, 0.00253424142, 0.00408984208, 0.0198649466, 0.00210882467, -0.0263648741, 0.0316670612, 0.00586454105, -0.00402411213, 0.000427242398, -0.00974989124, 0.00964764506, -0.0105970725, 0.00188972603, -0.00729233399, 0.00281541795, -0.00568195898, -0.0110133598, -0.00844990555, -0.0109914504, -0.0252693798, 0.00320249214, 0.00584628293, 0.00110736117, 0.000455314439, -0.00417382969, 0.0123790754, 0.0116268359, 0.00897574238, 0.00348914624, -0.00399855059, 0.0150447758, -0.0108599905, -0.0201570783, 0.0121088531, -0.00445865793, -0.0170896966, 0.00134015351, -0.00593392225, 0.0188278798, 0.010290334, -0.00775609305, -0.0153223006, -0.0013328502, 0.0196604542, -0.00611650478, -0.0184188951, -0.000704310951, 0.0109549332, -0.000101276077, -0.020084044, 0.0299726985, 0.0233997386, -0.000939385558, -0.000123813574, 0.0240716413, -0.01767396, -0.0095819151, -0.0005765034, 0.00134380523, 0.00976449717, 0.011232459, -0.0178930573, 0.00433450192, -0.00879316, -0.0103341537, -0.00759542082, 0.0109622367, -0.0126566, -0.00316962739, 0.0162279084, -0.0152492672, -0.00431624381, -0.00319884066, 0.0299434848, 0.00295965793, -0.0330985077, 0.00493702339, 0.0199379791, -0.00694907969, -0.00190068095, -0.00525836833, 0.00280081131, -0.00422130106, -0.0268614963, -0.00717913313, -0.0183896814, 0.000627169968, -0.0122330096, -0.0122184027, -0.00322257634, -0.00457916223, 0.000161585267, 0.0138032166, -0.0168852042, -0.008705521, -0.000182125776, 0.00129907252, -0.0202155039, 0.00724851433, -0.012371772, 0.0178200249, -0.0062041441, -0.0237064771, -0.000194906534, -0.0113712214, 0.0517072864, 0.00496258494, -0.0165492538, -0.0338872597, -0.0124301976, -0.00918023475, -0.0225817692, -0.00167336606, 6.8717959e-06, -0.0131021, -0.0051305606, -0.00219829, 0.0105094332, 0.00170531799, -0.00815047, -0.00472888, 0.00720469467, 0.0144166928, -0.0175863206, -0.00311667868, -0.0158481374, -0.00131094037, 0.0179953035, 0.0121161565, 0.0182582233, -0.0171335153, -0.006912563, -0.0199525859, 0.0113347042, -0.0103779733, 0.00488224858, 0.0160526298, -0.00804092083, -0.00405332539, -0.0194121432, 0.00459011737, 0.00162133016, 0.0150301689, -0.00492241699, 0.00132280821, -0.000564635557, -0.00703306729, -0.00463028532, 0.00286654104, 0.00121417176, -0.0009298, -0.00235531083, 0.0123644685, 0.0309075192, -0.0176447462, 0.00222750311, 0.0102538178, 0.0185357481, -0.00101880881, 0.0126785096, -0.0030765105, -0.00117582956, -0.0112397615, -0.0106481956, -0.00948697235, 0.0203323569, -0.00228045206, -2.01838939e-05, 0.00855945516, -0.0108015649, -0.00727407588, 0.0125689609, 0.0158773512, -0.00814316701, 0.000985944062, 0.017805418, -0.0093263, -0.000691073714, -0.00675189076, -0.0111156059, 0.00629543513, -0.00302903913, 0.00520359352, -0.00127898855, 0.00945045613, 0.00407158351, -0.0213548169, 0.00116396172, -0.00782182254, 0.0175425, -0.000592479308, 0.00545555679, 0.0136571508, 0.0313749313, 0.0147526441, -0.00203396589, 0.0145481518, 0.00114844216, 0.00536426576, -0.0102684246, 0.0160380229, 0.00350740459, -0.0142195038, 0.00449517462, -0.00389630464, 0.00501005631, 0.0339749, -0.0200548321, 0.0122768292, -0.0166222863, 0.00732154725, -0.00230236189, -0.0151178082, -0.00160581071, 0.00606538169, 0.0013465439, 0.00404602196, 0.00287384423, -0.0244514123, -0.0102026947, 0.00453534257, -0.00365347043, 0.00282089529, 0.0147234304, -0.0119189676, -0.0069673378, 0.00370459328, -0.00941394, -0.0274457596, 0.0186087806, 0.0148475869, -0.00387804653, 0.0182290096, 0.0439365879, -0.0308490936, -0.0117290821, -0.0236480497, 0.0167975649, 0.0136279371, 0.0109111136, 0.00928978343, -0.0136206336, -0.0173234, -0.000683314, 0.00756620755, -0.0110644829, 0.0212963913, 0.00169253722, -0.00719373953, -0.00914371759, -0.00206317916, 0.00549937645, 0.0250794943, 0.000111432215, -0.0217053741, -0.00314406585, -0.0188716985, 0.00392916938, -0.00384883326, -0.00269491365, 0.0080044046, -0.00317510497, 0.00950888265, 0.00956000574, 0.0080044046, -0.001222388, 0.0219682939, 0.0222604256, 0.0144166928, -0.000524923904, 0.0110279666, 0.0144239962, -0.0227716547, -0.00877855346, 0.00750778103, 0.0168852042, 0.00787294563, -0.0125105344, 0.00764654344, 0.00706593227, -0.0178200249, 0.0113493111, 0.00323535712, -0.0112251556, -0.00708053866, 0.00251598307, 0.00843529869, 0.00462298188, -0.0037009418, -0.0118459351, -0.00333760306, 0.00320979557, -0.0154537596, 0.0105313426, -0.00534235593, 0.0010872772, 0.0105897691, -0.0133431088, -0.0153953331, -0.0269199237, 0.000994160189, 0.000318605977, -0.017294189, -0.00815777387, -0.00430163741, 0.0137374867, 0.00719739124, 0.00340515841, -0.00342341675]
03 Aug, 2022
Difference between Round trip time (RTT) and Time to live (TTL) 03 Aug, 2022 1. Round Trip Time (RTT) :The length of time taken by a data packet to be sent to a destination including the time it takes for an acknowledgement of that packet to be received back at the origin place. image showing RTT 2. Time to live (TTL) :The lifespan or life time of data that is being sent. Once after that specified time is over or elapsed the data will be discarded.or it can also stated as number of hops that packet is set to exist in the network after which that packet is discarded. The purpose of the TTL field is to avoid a situation in which an undeliverable datagram keeps circulating in network. Difference between Round trip time and Time to live : S.No Round trip time Time to live 1 Also known as ping time. Also known as hop limit. 2 Gives the total time taken to send data packet and to get an acknowledgment back from the destination. Gives the hop limit to travel in the network path. after that limit the packet will be discarded. 3 It is an important for determining the connection on a local network or the larger Internet network, and used to diagnose the speed and reliability of network connections. Helps us to prevent the data packet from circulating indefinitely in the routers path. 4 The round trip time is not stored anywhere, it will be calculated when the acknowledgement comes from destination. It is an 8-bit field stored in IP header. 5 It can be any value, because it depends on many factors. Maximum value that can be set to TTL is 255 since its the maximum value that we can produce with 8-bits. 6 It depends on many factors like distance, no. of hops, server response time etc. It depends on system, It is set initially by the system which is sending the packet. 7 RTT is measured in milliseconds. TTL is measured in seconds. How to find RTT and TTL ? Example 1. pinging amazon.com We can find RTT and TTL using ping command. Open you terminal or command prompt and type the below command to see the RTT and TTL to amazon.com ping amazon.com You will see the screen similar to this. Each line starting with word reply is reply from the server to client for the packet sent, In the above example we got 4 replies which means that we sent 4 packets.The values marked with red box is RTT ( Round trip time) which is shown in milliseconds since it’s measured in millisecondsand the values marked with blue box is TTL ( Time to live) measured in seconds. So average RTT for above ping is (230+231+236+230) / 4 = 231.75 msThe TTL above ping is 235 seconds or 235 hops Example 2. pinging google.com Pinging google.com with the help of below command ping google.com After running the above command you will see screen similar to this pinging google.com So average RTT for above ping is (48+62+56+44) / 4 = 52.5 msThe TTL above ping is 114 seconds or 114 hops. 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!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum/Algorithm for Dynamic Time out timer Calculation/Difference between Round trip time (RTT) and Time to live (TTL)
https://www.geeksforgeeks.org/difference-between-round-trip-time-rtt-and-time-to-live-ttl?ref=asr10
PHP
Difference between Round trip time (RTT) and Time to live (TTL)
What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, jQWidgets jqxTreeMap width Property, Difference between Flow and TypeScript, jQWidgets jqxTree destroy() Method, jQWidgets jqxTree collapseAll() Method, jQWidgets jqxScrollView buttonsOffset Property, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, jQWidgets jqxListBox enableHover Property, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxSlider buttonsPosition Property, Difference between Round trip time (RTT) and Time to live (TTL), jQWidgets jqxSlider rtl Property, jQWidgets jqxTooltip opacity Property, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, jQWidgets jqxToolBar height Property, PHP, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, Node.js date-and-time Date.transform() Method, TypeScript Optional Parameters, jQWidgets jqxToolBar theme Property, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, Steps to Diagnose and Resolve a Slow Network, How to use Optional Chaining with Arrays and Functions in TypeScript ?, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, jQWidgets jqxScrollView showButtons Property, jQWidgets jqxScrollView disabled Property, jQWidgets jqxSplitter destroy() Method, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, jQWidgets jqxTree collapseItem() Method, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), jQWidgets jqxSortable opacity Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, jQWidgets jqxSlider height Property, jQWidgets jqxSwitchButton onLabel Property, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, jQWidgets jqxToolBar tools Property, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTree width Property, jQWidgets jqxTree clear() Method, TLS Handshake?, Algorithm for Dynamic Time out timer Calculation, Adhoc TCP, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, jQWidgets jqxTabs position Property, Differences between Wireless Adhoc Network and Wireless Sensor Network, jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, Impact of Three-way Handshake and Slow Start Algorithm, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, How to Sort an Array Having Optional Properties in TypeScript ?
GeeksforGeeks
[-0.0604093559, -0.0112534603, -0.00981764775, 0.0235443134, -0.0176507179, 0.0132230036, 0.00639725756, 0.0272578802, -0.0152226165, -0.0308812391, 0.0387594141, -0.0180716887, 0.0179063082, -0.0347000472, -0.017801065, 0.00689716078, 0.00413453765, 0.00581842242, 0.00245065335, -0.00273631234, 0.028490724, 0.00521327648, -0.0482011959, 0.0161472503, -0.0500955656, 0.00982516538, 0.00509299897, 0.00756244548, -0.0357524753, -0.011787192, 0.0497347303, 0.0224467814, 0.0638673306, -0.0170643646, -0.00868252944, -0.0170342959, 0.0460662693, 0.0191541854, -0.0250177123, -0.00796086434, -0.0115165673, 0.00917115714, -0.0155157931, -0.00732189091, -0.0367748365, 0.00605521863, 0.0201013722, -0.0472089052, 0.016132215, -0.0510277152, -0.0343091451, -0.023003066, 0.0271676723, 0.075654529, 0.0429691263, 0.00923881307, 0.0470886268, 0.00328883692, -0.0401125364, -0.0298588816, 0.0482914038, 0.0321742222, -0.0323245674, -0.00656263903, 0.0178612042, -0.0245215688, -0.020477239, 0.00321366359, -0.00975750946, -0.0489829965, -0.0440816917, 0.0280847885, 0.0294379089, -0.00926888175, 0.017229747, -0.00179288595, 0.0272428449, 0.0210635904, 0.000152343622, 0.0282652043, -0.00515313772, 0.0355720595, -0.0128245847, -0.00107404019, 0.00178254966, 0.00118116231, -0.0249275044, -0.0399621874, 0.0522304885, -0.0184625909, 0.00309338607, 0.00916363951, -0.000801536546, 0.0143581228, 0.0135236979, 0.0137567353, 0.0323847085, 0.00484116795, -0.0204622038, 0.027723955, 0.0297386032, -0.029392805, -0.00138507015, 0.0043375059, 0.0408342, -0.0129373446, -0.00642356835, 0.00513810292, 0.026866978, 0.0411348939, 0.0111407, -0.000467484671, -0.00850963, -0.00680695288, -0.0325049832, -0.0114564281, 0.0196052268, -0.0359930322, -0.0176206492, 0.00482613314, -0.0424278751, 0.0207027588, 0.00596125191, 0.0401726738, -0.0141100502, 0.0375566371, 0.040894337, -0.00551772863, 0.0297987424, -0.0257995166, -0.0219506379, -0.00268557039, -0.0173049197, -0.00500654941, -0.0216048397, 0.0112684947, 0.00221197773, -0.00400298461, 0.0209884178, 0.011238426, 0.00854721759, -0.000523864757, -0.00462316489, -0.0129448622, 0.00477351202, -0.0130050005, -0.0362035185, -0.00543503789, -0.0250928868, 0.0522906296, -0.0331364423, -0.0538542345, 0.00561545417, 0.0213943534, -0.0292875636, -0.0299641229, -0.00170361751, 0.015651105, -0.0110204229, -0.0333769955, -0.000171606807, -0.022672303, -0.00648370711, -0.00360268587, -0.00658895, 0.00280772708, 0.0246117767, -0.0334972739, -0.013478593, 0.0341588, -0.0219205674, 0.0168388449, -0.00964475, 0.0669344068, 0.0190188736, -0.015606001, -0.00881032459, 0.00675057294, -0.0283253435, 0.0184776261, -0.0261453148, -0.0082615586, -0.0166734643, -0.0200713016, -0.0135988705, -0.0325951949, 0.0245065335, 0.0125013394, -0.0335874818, -0.00525838044, -0.0352713652, 0.0182220358, 0.0637470558, 0.036414, -0.0132605908, 0.00623939373, -0.00940419454, 0.00822397135, 0.0153955156, -0.0299340542, 0.0104115177, -0.0165080819, -0.0166133251, 0.0143581228, 0.0425782241, -0.0136439754, -0.0173650589, 0.0151699949, 0.0103363451, 0.0201164056, -0.0368951112, -0.000552994432, -0.00355758192, 0.0140574286, 0.0387894809, 0.00259160344, -0.0150046134, -0.00133996608, -0.0043788515, 0.00903584436, 0.0145460563, -0.00749478955, 0.00756996311, 0.0149144055, -0.0800446495, -0.0251680594, -0.00382444751, -0.0254537184, -0.0240404587, -0.00794583, 0.0236645918, 0.0356322, -0.000292001729, -0.0190639775, -0.0632659495, 0.00641605118, 0.0197405387, 0.0205073077, -0.0322945, 0.00582218124, 0.00253710267, 0.0201765448, -0.030971447, 0.00339971762, -0.0350007415, -0.0535234734, 0.0232736897, -0.0105543472, -0.0340385213, 0.00543127907, 0.0102160675, -0.0177108571, 0.0143581228, -0.00831418, -0.0456152298, 0.0360231, 0.0327455401, -0.0203569606, 0.00617925497, -0.0204922725, 0.0379174724, 0.0229128562, -0.00188873208, -0.00941922888, 0.00101672043, 0.000677030592, 0.0128396191, -0.0282201, 0.00648746593, -0.00562673, 0.00112948054, -0.0166584291, -0.0127343768, -0.0160871111, -0.00560417818, -0.0351811573, -0.0222814, 0.022717407, 0.0589660257, 0.016462978, 0.015936764, -0.0380678177, -0.00326252636, 0.00400298461, -0.0195751581, 0.000552994432, 0.0134936282, 0.0213041455, -0.0350007415, 0.0100055812, -0.0395412184, 0.0203719959, 0.00175154058, -0.0003624768, 0.0454348139, -0.00358577189, -0.0158615913, -0.0147114377, -0.0307910312, 0.00832169689, -0.00466075167, 0.0096297143, 0.0115090497, -0.00784810446, -0.0147264721, -0.0163276661, 7.07320169e-06, 0.00152883935, 0.00811121147, -0.00309526548, -0.0160871111, -0.0369251817, 0.0133583164, -0.0239953548, 0.0216499437, -0.0264760777, -0.00868252944, -0.0190339088, -0.0400523953, -0.0391803831, 0.0180716887, 0.0154556539, -0.0211387649, 0.0276337471, 0.0306406841, 0.00377558474, 0.00655136304, 0.0378272645, -0.0304302, -0.0194398444, -0.0205975156, 0.0135913538, -0.0371356681, -0.007133957, 0.00767896464, -0.0371055976, -0.00573573168, 0.0171846431, 0.0111331828, 0.0376769155, 0.0112008387, 0.00143299322, 0.0176206492, -0.0185076948, 0.0258746892, -0.016462978, 0.0105844168, 0.0175003707, -0.00221009832, 0.0337678976, 0.00141795853, 0.0124712698, 0.0116819488, 0.0312420707, 0.0316630416, -0.00105712621, -0.0144182611, -0.00441643829, 0.0163427014, -0.0069009196, 0.0347902551, 0.00046302125, 0.0131929349, 0.0313623473, -0.057793323, 0.00181449833, 0.0123209227, -0.001849266, -0.0117571224, 0.0139296344, 0.0119450558, 0.0192895, 0.00190564606, 0.0218153261, -0.00876522064, 0.0232586544, 0.026055105, -0.0125013394, 0.00457806094, -0.0038563963, -0.00720537174, 0.00884039328, 0.0279043727, 0.0208831746, -0.015651105, 0.00313285203, 0.0253334418, -0.0734293908, 0.0352112278, 0.0489529297, -0.00864494313, 0.0250026789, 0.0107347639, 0.00182577432, 0.0174703021, 0.018207, 0.019665366, -0.00468330365, 0.0079759, -0.0303550251, 0.015102339, 0.0255288929, -0.00183235202, -0.00865997747, -0.0296183266, 0.0396314263, -0.0440215506, -0.00966730155, -0.000186641497, -0.0256491695, -0.0107949022, 0.00150722696, 0.00335273426, -0.0378272645, 0.000828786928, 0.0131553477, -0.0147790937, 0.0141701885, -0.0142303277, -0.00179006695, -0.016462978, 0.0190940481, -0.0143130179, -0.00340535562, 0.0241306666, 0.0362636559, 0.00605521863, 0.0432998873, 0.0164028388, -0.00500654941, -0.00148561457, -0.022146089, 0.0518095195, 0.0363839343, 0.0026329488, -0.0505766757, 0.0249425396, 0.0166283604, -0.0256642047, -0.00107591948, -0.0249124691, 0.0457355045, 0.00753237633, -0.0391202457, -0.0523206964, -0.0216499437, -0.0315427668, -0.0102010323, -0.0249425396, 0.00308774807, 0.00509675778, 0.0324147753, 0.014267914, 0.014004807, 0.0227474757, -0.01756051, 0.0107723502, -0.0496144556, 0.00129016372, -0.00460813055, 0.0407740623, 0.0316931121, -0.00237360061, -0.0245366022, 0.0196804, -0.0232135504, -0.00837431848, -0.0133432811, -0.00759251509, 0.0425481535, -0.0241457019, -0.0357524753, 0.0167937409, 0.0407139212, 0.0303550251, -0.016462978, -0.00909598358, 0.0209583491, -0.0442621075, -0.0502759814, 0.0285057593, 0.0501256324, 0.00554403942, 0.0019996129, -0.0133583164, 0.0567108244, 0.00201652688, -0.00575452484, 0.0116518792, -0.0487123728, 0.0202066135, 0.0162825622, -0.0228677522, -0.0128396191, -0.038849622, -0.0346399099, -0.00591614796, -0.0182220358, -0.0155458627, -0.00704374909, -0.0142152933, 0.0284005161, -0.0296935, 0.0678364933, -0.0729482844, 0.0143130179, -0.029107146, 0.0341888703, -0.0520200022, -0.0506668836, -0.0207779314, 0.0259047598, 0.00766017102, 0.0340986624, 0.0273931921, 0.0462166145, -0.0345797725, 0.00912605226, 0.00111350627, 0.0129598966, 0.00745344395, 0.0497046635, 0.0154406196, -0.00746096158, 0.000276967039, -0.0249425396, 0.0239352155, 0.0144558474, 0.0103664137, -0.0375867076, -0.00679191807, -0.00315916282, 0.0234541055, -0.00198457809, -0.0419167, 0.0125314081, -0.0212139376, 0.0296935, -0.0276337471, 0.00952447206, -0.000887046277, -0.00584849156, -0.0159818679, 0.00574700767, 0.00950192, 0.00324373296, -0.00132775051, 0.00565304095, -0.00881032459, 0.00148467498, 0.0654910803, 0.0175755452, 0.00758875627, 0.00100920314, -0.00725047616, 0.0123660266, 0.0146512985, -0.0072655105, -0.00971992221, 0.00583721558, -0.0204020645, 0.049584385, -0.00101108244, 0.0259047598, -0.0144859171, -0.00518320687, -0.000178184491, 0.0267918054, -0.00118680031, 0.0185979027, 0.00716026779, -0.00896818843, 0.00365342805, -0.0116669144, 0.0209884178, 0.00740834, -0.00878777262, -0.0279945806, 0.00501406705, 0.00579211162, 0.00510803377, -0.0125314081, 0.010622004, 0.0168989841, -0.000820799731, -0.0443222448, -0.00341475243, -0.0126065817, -0.0227324404, 0.00617549615, 0.0384887904, 0.00664532976, -0.00611911621, 0.0031967496, -0.000130731263, 0.0239953548, -0.00647243112, 0.0158014521, 0.0290470086, 0.0111632524, -0.00143017422, 0.0425782241, 0.026912082, 0.0205373764, 0.005333554, -0.0134485243, -0.00155890873, -0.00810369384, -0.00364779, -0.00454047415, -0.0308812391, 0.0201615095, 0.00793079566, 0.0218002908, -0.00120371429, -0.00786314, 0.0259799324, 0.0100206165, 0.00324937096, -0.0316029042, 0.010667108, -0.011193322, -0.0130350702, 0.0269271173, -0.0120427813, 0.0254086144, -0.00451792218, -0.0305053722, -0.0170042273, -0.0400223248, 0.00049426523, 0.0151624782, -0.00957709271, 0.01804162, 0.0151098566, 0.00298250536, -0.0103137931, -0.00407815771, -0.00740458164, -0.0275886431, -0.0246117767, 0.00202404428, -0.00579211162, 0.088584356, -0.00219694315, 0.0187181812, 0.0128772063, 0.0569213107, -0.0040894337, 0.0242509432, -0.00557786738, 0.0190038402, -0.0126516856, 0.0213191807, -0.00112290285, -0.0231083073, 0.0235593487, -0.0433600247, -0.00819390267, 0.038849622, -0.0159969032, 0.016462978, 0.0171094686, 0.00123942166, -0.0197255034, -0.0319336653, 0.0315728337, -0.0101859979, -0.0139972903, 0.00246944674, -0.026581319, -0.0246268101, 0.0294228755, 0.019424811, -0.0148693016, -0.00722040655, -0.0105618648, 0.0236796252, 0.00255401689, -0.0192594286, -0.0157262795, -0.0286711399, 0.0114864977, 0.0245366022, 0.0391503163, 0.00135124219, 0.00470961444, 0.00315352483, -0.0101033067, 0.00518696569, 0.0118774, 0.00410822732, 0.0110580092, -0.018567834, 0.00258032745, 0.00755116949, -0.0543353446, 0.0149068879, -0.00161810778, -0.0398118421, 0.0370153897, 0.00963723194, 0.00992289092, -0.00329447491, -0.0392104536, 0.010712212, -0.00559290219, -0.0198758505, -0.0424579456, -0.00641229236, 0.00481485715, -0.00599883869, 0.0106821423, 0.00414205529, 0.0312420707, -0.00819390267, -0.0110580092, 0.0215296671, -0.0422173887, 0.00759251509, -0.0142378453, 0.00660774345, 0.0543654151, -0.0255890302, -0.0125840297, 0.0231534112, 0.00764889503, 0.0390601084, -0.0757146627, -0.00199021609, -0.00257093087, 0.0216499437, 0.0378573313, -0.0128396191, 0.00268557039, 0.0165381506, -0.00803603791, -0.0165381506, 0.0181919672, -0.0225069206, 0.0064949831, 0.0176807866, 0.00402929494, 0.0107648335, -0.010358897, -0.0281599611, 0.0295281168, 0.0289267302, 0.00867501181, -0.0320840143, -0.0311518628, -0.0018426883, -0.0133733507, -0.0356322, 0.00510803377, 0.0039992258, 0.00405936455, 0.0101935156, -0.00269496697, -0.0195901915, 0.00254086149, 0.0324147753, -0.00100262545, -0.00505541218, -0.0176507179, -0.00768272299, -0.0530423634, 0.00554779824, 0.00948688481, 0.00399170816, 0.0360231, 0.0230181, 0.0300392974, -0.0310917255, -0.0102762058, 0.0269421525, 0.0308511704, -0.0212139376, -0.0204622038, -0.0179664455, 5.60276858e-05, -0.00483740913, -0.0423075967, 0.0125689954, 0.00191786175, -0.016177319, 0.0421271808, 0.0469984189, -0.0157262795, 0.00564552331, 0.0281749964, 0.0390300378, 0.0187031459, 0.0230932739, -0.00656639785, -0.00388270686, -0.0146588162, -0.0176206492, -0.0331063718, -0.0152677204, 0.0269722212, 0.00974999182, 0.0113662202, 0.0145610906, -0.0121780932, -0.0463068224, -0.0230331346, -0.0347902551, -0.0215597358, 0.0117120184, 0.00361772068, 0.0214995965, -0.0167336017, 0.0113511859, 0.0246869493, -0.00498775626, 0.0185979027, 0.0102461362, 0.010426553, 0.0195300542, -0.00434126472, 0.0185527988, 0.00655512186, -0.0108099375, -0.0274683665, 0.00463819969, 0.0182821751, 0.002123649, 0.0252432339, 0.0235743839, -0.00660774345, 0.00376242935, 0.0230331346, -0.0174853373, -0.0335574113, 0.000106476095, -0.00862990785, -0.00607401179, 0.0180566553, -0.0015870987, -0.0310315862, -0.00263670762, 0.0302648172, 0.0095395064, 0.0126667209, 0.0248523317, -0.0166133251, -0.00747975474, 0.0156210354, -0.00757748028, 0.017515406, 0.0173049197, 0.000255119783, 0.0130501054, 0.0348203257, 0.00618301332, 0.00121123169, 0.0333168581, 0.00700616231, -0.0217702202, -0.00415333128, 0.0165080819, -0.0410747528, -0.0067280205, 0.00228527188, 0.00635591242, -0.0086674951, -0.0111407, -0.0148016457, -0.0313022099, -0.00820141938, -0.0415558629, 0.0134861106, 0.00916363951, 0.0139672207, 0.0133432811, 0.00364591065, 0.0059311823, 0.0228376836, -0.0291672852, 0.0470284894, 0.0120202294, -0.0487123728, 0.0359930322, -0.018372383, 0.0165682212, -0.0455851592, -0.021905534, -0.0072655105, -0.0300844014, -0.0162675269, 0.0222513303, -0.0512682684, -0.00196014671, 0.0145009523, 0.0219957419, -0.00767896464, -0.00204095826, -0.00788569171, 0.0104115177, -0.00862990785, 0.0182972085, 0.00491258269, 0.0033395791, 0.0387594141, -0.0343091451, -0.0282050651, 0.00740458164, -0.0149144055, -0.0135011459, 0.0192293599, 0.0173650589, 0.00616046134, -0.0092162611, 0.00608528778, 0.0553877726, -0.0227625109, -0.0096221976, 0.00523582846, 0.0368349738, -0.00674681412, 0.0248824, -0.00618677214, 0.0319938064, 0.00297310855, -0.0313022099, -0.00573197287, -0.0182671398, -0.0178912729, 0.0100356508, 0.00396915618, 0.00375303277, -0.00266113901, -0.00768272299, -0.03560213, 0.02352928, 0.00411950331, 0.0174703021, -0.0648896918, -0.0327756107, -0.0167787056, -0.00177033397, 0.0167185683, -0.0142754316, 0.010712212, 0.00017595278, 0.00818638504, 0.0251530241, -0.00338468305, -0.0194548797, -0.00258596544, 0.0211989041, -0.0122908531, -0.0281449277, 0.0151624782, -0.0436607189, -0.0354818515, -0.0348503962, 0.00799845159, 0.0405635759, 0.0327455401, 0.0161622837, 0.0179965161, 0.00712644, -0.000557222927, 0.0272578802, -0.0127719631, -0.0190038402, 0.005333554, -0.00169516052, 0.0142603973, -0.00366658345, 0.0143355699, -0.00265174219, 0.0134635586, 0.00447657704, -0.0242359098, -0.0303249564, 0.0234841742, -0.00106370379, -0.0101935156, 0.0149144055, -0.0286861751, -0.0175755452, 0.00857728627, -0.0216349084, -0.0290019047, -0.0145159867, -0.0190038402, -0.0169741567, -0.000533261395, 0.014576125, -0.0235894173, -0.00727678649, -0.0303850938, -0.0018530247, -0.0184926596, 0.00519072451, -0.0450138412, -0.0180115495, -0.0474494584, -0.00296559115, -0.00398795, 0.0262956601, 0.016462978, 0.0116969831, 0.0207929667, 0.0132981772, -0.00687836763, 0.0235894173, -0.0137567353, -0.0239803195, -0.0281599611, -0.00996799488, 0.0129373446, 0.0176056139, 0.00014071523, 0.00187275768, -0.0268218741, 0.00944178086, -0.00121123169, 0.0235743839, 0.00726926932, 0.0114038074, 0.0147189545, 0.00408567535, -0.00567935174, -0.000750324631, -0.000476881367, 0.0253334418, 0.00636342959, -0.0154406196, 0.0128396191, 0.0119074695, -0.0170042273, 0.0143957091, -0.00868252944, -0.0512983389, -0.000136956573, -0.00422474602, -0.000808114244, -0.0115391193, -0.00535234716, 0.00776541373, -0.0343091451, -0.0418866277, -0.0154556539, 0.0267918054, -0.00206726883, -0.00170737621, 0.00507420534, -0.031212002, 0.0130801741, -0.000464430748, -0.00270248437, 0.0157563481, -0.0107046943, 0.00877273735, 0.0514486842, -0.00042637423, -0.0176056139, -0.0059875627, -0.0172447823, 0.00163126318, -0.0264309738, 0.015342894, 0.026912082, 0.0260400716, -0.00685581565, 0.00481861597, 0.00187745609, -0.0273631234, -0.00682950485, -0.0195901915, -0.018086724, 0.00825404096, -0.0119976774, -0.0350007415, 0.000809993537, 0.00852466561, -0.0177709963, 0.0188685264, 0.0281298924, 0.00284343446, 0.00460813055, 0.00531851919, 0.00909598358, -0.0111632524, -0.0197856426, -0.0334972739, -0.00947936811, -0.000234329636, 0.00550269382, 0.0100055812, 0.00027038937, 0.0137266656, 0.00984771736, 0.0881032422, -0.0149595095, -0.0145385386, -0.0332567208, 0.00905088, -0.0011858606, 0.00766768819, 0.00731437327, 0.0330763, 0.0171696078, 0.0201464761, -0.0144783994, 0.000151403961, 0.00393908704, -0.00297122914, 0.0346399099, -0.0225219559, 0.00637094676, -0.014553573, 0.0103438618, 0.0049276175, 0.00805859, -0.0152827557, 0.00288853841, 0.00772782695, -0.00937412493, 0.00351623655, -0.0285959672, -0.0267918054, 0.00187651638, 0.0181618966, -0.0132305212, -0.00808114186, 0.00236984203, -0.0155308275, 0.02963336, 0.0377671234, -0.00362711726, 0.00604770146, 0.0364440717, -0.000171606807, -0.0106295208, -0.00795334764, 0.00385263748, 0.0316931121, -0.0218002908, -0.00399170816, -0.000101190468, -0.0151399262, 0.00756244548, 0.0151399262, -0.00121593, 0.017515406, -0.00224204711, -0.00936660729, 0.00487875473, 0.00808114186, -0.00413829647, 0.0362335853, -0.0119751254, -0.0113211162, -0.0241757706, -0.0160119385, 0.0121254716, -0.00446530106, 0.0161171798, -0.0157864168, -0.00150910637, -0.00359892729, 0.0173049197, 0.0029073318, 0.0129298279, 0.0137567353, 0.0122081628, -0.0112309083, 0.0317532495, 0.0210034531, 0.00755116949, 0.0100732381, -0.033978384, -0.0126366513, 0.00877273735, -0.022146089, 0.0115691889, 0.00439764466, -0.0382482335, -0.000509769714, 0.00706630107, 0.00640853355, -0.0114338761, 0.00546134869, -0.00947936811, -0.0378573313, -0.00832169689, 0.000100133337, 0.00914108753, -0.00589359598, 0.0113887722, 0.00389022427, 0.0132605908, -0.00693474757, 0.00219130516, 0.00704750791, 0.00429991959, 0.0121104373, -0.0145460563, 0.0163126308, 0.0106971767, -0.0342189372, -0.00112572184, 0.00903584436, -0.0189587362, -0.0139672207, -0.0174251981, 0.0248222612, -0.0105768992, 0.0180265848, -0.00435629953, 0.0152226165, 0.00524710445, -0.030445233, -0.0123810619, 0.0110279396, -0.010140894, -0.00429991959, -0.045344606, -0.00303324731, 0.0127794808, 0.00133808679, 0.00285283104, -0.0119149862, 0.0423978083, -0.0100732381, -0.0120051941, -0.00341851101, -0.0031685594, -0.00595373474, 0.0261904188, -0.00906591397, 0.00772031, 0.0109678013, 0.0234841742, 0.00220633973, -0.00626570405, -0.00327380234, 0.0217251163, -0.0272428449, -0.00526965642, -0.0218754634, 0.0253484752, -0.0235142447, -0.0123810619, -0.00189155107, -0.00709261186, 0.0269271173, -0.0228978228, 0.0060627358, 0.00380753353, 0.00294679799, 0.000398654025, 0.00407064054, 0.00419091806, 0.0140198423, -0.0343392156, -0.0120803677, -0.0309113078, 0.00118492101, -0.00332266488, -0.00275134691, -0.000737639144, 0.0120051941, 0.0140950158, 0.0170794, -0.00349180517, 0.0224918853, 0.00622435892, 0.00293740118, -0.0245065335, 0.00946433283, -0.0067430553, -0.00364966923, -0.00878777262, 0.0077879657, -0.00407815771, -0.00603266666, 0.0125840297, -0.0305655114, 0.0143355699, 0.0155759314, -0.00195450871, -0.0127193416, -0.0123209227, 0.0192895, -0.0296784639, -0.0124863042, 0.0169591233, 6.06672947e-05, -0.00752861751, -0.00859983917, -0.0109978709, -0.00143581221, -0.002392394, 1.94981039e-05, -0.00420971122, -0.0149595095, 0.00473968405, -0.0372860134, 0.00824652333, 0.00830666255, 0.014839232, 0.0117345704, 0.016177319, 0.0232736897, -0.00270060496, -0.0171545725, 0.0207177941, 0.0069272304, 0.0213943534, 0.00362147926, 0.0105017265, -0.0179363769, -0.0233187936, -0.000421675883, 0.00751734152, -0.0108400062, -0.0178612042, 0.0496745929, 0.0205373764, 0.00947185047, -0.00838183612, -0.00103081542, 0.0189888049, 0.0172147118, -0.000773816369, 0.00551021146, -0.0413754471, 0.0204622038, -0.0257544126, -0.035030812, 0.0116293272, 0.000819860084, -0.0248222612, 0.0163276661, 0.00320614618, -0.00115485163, -8.56272163e-05, -0.0130801741, -0.0224167127, -0.0131327957, 0.0122382324, 0.000354019809, 0.00245065335, 0.0152977901, -0.00177879096, 0.00130801741, -0.0251830947, -0.00282276166, -0.000360832404, 0.0204622038, -0.00517193088, 0.0340084545, 0.00816383306, 0.00356134051, -0.00360832387, 0.0210184865, -0.00364779, -0.0236345213, 0.00355194393, 0.00899074, -0.0111256652, 0.0043788515, 0.0277089216, 0.00313661085, 0.0207478628, 0.00566055812, 0.000875770289, 0.00152038236, 0.0209884178, -0.00923129544, -0.00575828366, -0.0035951687, 4.82680889e-06, 0.00675809, -0.0243561864, -0.0231083073, -0.00239427318, -0.0134635586, -0.0132380389, -0.000350261136, -0.0070174383, 0.00465699332, 0.0173650589, 0.00245817075, 0.0248974357, -0.00809617713, 0.0397817716, 0.0288816262, 0.00657015666, -0.0271225683, 0.0203268919, 0.00514562, -0.000827847223, -0.0183573477, 0.0211237296, -0.000693004928, 0.000166086262, 0.0143355699, -0.00673177931, 0.0112985643, -0.00559666101, 0.0267467014, -0.0240404587, -0.0116518792, 0.0122833364, 0.00102329813, -0.00803603791, 0.0318434574, 0.00469082128, 0.0205975156, 0.0128321024, -0.0144257788, 0.00750606554, -0.0214695279, 0.00102047913, -0.00855473429, -0.0143205356, -0.0168989841, 0.018327279, 0.00766768819, -0.00891556684, 0.00353127113, -0.0218754634, 0.00509299897, 0.0179814808, -0.00402177777, 0.00488251355, 0.0221761577, 0.0228376836, 0.0105919344, -0.00217627035, 0.00967481826, -0.0152451685, -0.0180265848, 0.00283779646, 0.00402929494, -0.0111031132, 0.00707757706, 0.00659646746, 0.000248072261, -0.00194699143, -0.0164329093, -0.00900577474, 0.0193195678, -0.00430367794, -0.00617925497, -0.00258972426, 0.00643860316, 0.009855235, 0.00198081951, -0.00330763031, -0.0270925, 0.00392781105, -0.00233413465, -0.0406838544, 0.00796086434, -0.0181919672, 0.0271225683, -0.0223565735, 0.0190639775, 0.0653708056, -0.0228827875, -0.00815631542, -0.000794489053, 0.0168839488, 0.0382482335, 0.0206275862, 0.0134410067, 0.0503661893, -2.51361107e-05, -0.0125238914, -0.0214244239, 0.00892308448, 0.00705126626, -0.0132981772, 0.00479606399, 0.016703533, -0.00274758833, 0.0113511859, 0.00362147926, 0.00741585763, 0.0146738505, -0.00959964562, -0.000500373077, 0.0307158586, -0.0111482171, 0.00690843677, -0.0214394573, -0.0497046635, -0.0328658186, 0.00359328929, 0.0117120184, 0.0266564935, 0.00663405377, 0.0156210354, 0.0176657531, 0.00238863518, -0.0110655269, -0.0263106953, 0.0200412329, -0.0185828675, -0.0179965161, -0.0066528474, 0.0101859979, -0.0118774, -0.0129373446, 0.00520951767, 0.0241306666, 0.00642356835, -0.0108024199, 0.0273180194, -0.014004807, 0.0191541854, 0.00410822732, -0.0259498637, -0.00835928414, -0.0111407, 0.0206576549, -0.0222663656, 0.0163577348, -0.0184625909, -0.00618301332, 0.000348146888, -0.00205975166, 0.00390901743, 0.00154293433, 0.0171696078, 0.038699273, 0.0158315208, -0.00498399744, -0.00274382974, 0.00573573168, -0.0317231826, -0.018567834, -0.0211237296, 0.00113793754, -0.0197555739, 0.0124863042, 0.01756051, 0.000684547937, -0.00117176562, -0.0106746247, 0.00272127753, -0.0273029841, -0.00237548, -0.0122307148, -0.0141626718, -0.00760755, -0.0227925796, 0.00649874192, 0.00418715924, -0.0111707691, 0.00570190372, -0.00299378135, 0.0112835299, 0.0294679794, 0.00673177931, 0.00141232053, -0.0103213098, -0.0152827557, 0.0234992094, -0.0281900316, -0.00844197441, 0.036504209, -0.0139221167, 0.0115541536, -0.0199209545, 0.0101333763, -0.00414205529, 0.016462978, -0.00191128405, -0.00537114078, 0.00581842242, 0.0259648971, 0.00523582846, 0.0217702202, 0.0448033549, 0.00523582846, 0.000561921275, -0.00027297347, 0.0283554122, 0.00804355554, -0.0122833364, -0.0178912729, -0.00929895137, -0.000158568917, 0.0253184065, 0.00636342959, -0.00968985353, 0.0203419272, 0.0061303922, -0.0075398935, 0.000367645, -0.00343542499, 0.027197741, 0.0198758505, 0.0119826421, -0.0319036, -0.0127418935, -0.00155045174, -0.00406688172, 0.00750606554, 0.0126140993, 0.00662277779, 0.0172898863, 0.0141551541, -0.0141852237, 0.00885542855, 0.00367785944, 0.00300129852, 0.0157413129, 0.0201765448, -0.0170192607, -0.0200111624, -0.00999054685, -0.00505541218, 0.00405184692, -0.00889301486, -0.0104566226, 0.00421722839, -0.000716496608, 0.00337152765, 0.00755116949, -0.0205824804, 0.00029646515, -0.00377934356, 0.000817980734, -0.030971447, 0.00152508065, 0.00465699332, -0.00590863032, 0.00585225038, -0.015320342, -0.0332567208, 0.00932150334, -0.0127719631, -0.00791576, -0.00972744, 0.00359141, -0.00232097926, -0.00263482821, -0.00468330365, -0.0282652043, 0.00143205351, 0.00880280696, 0.0120352637, 0.0188685264, -0.0257093087, -0.00479230518, -0.0153128244, 0.00661901943, -0.00560041936, -0.0333769955, 0.00768648181, -0.010644556, -0.00330199231, 0.0120277461, -0.0103964834, -0.00809617713, -0.0127268592, -0.00102799642, -0.0173951276, 0.0249726083, -0.00177785126, 0.00596501073, 0.0318735279, 0.0393908694, -0.0171846431, 0.00461564772, -0.0219356027, 0.00663029542, -0.0214995965, -0.00468706246, 0.00981013104, -0.0205073077, -0.00183799, 0.00673177931, 0.00784058683, 0.0115992576, -0.0237548, 0.00629577367, 0.0138093568, 0.0295130834, -0.00638974039, 0.0304753035, -0.00689340243, -0.00457054377, 0.00344670122, 0.0362636559, 0.0201314408, -0.00794583, -0.00924633, -0.0222814, 0.0178762376, -0.00428864313, -0.0105693825, -0.0233338289, -0.00580338761, -0.000981952762, 0.00249951612, 0.000509769714, 0.00416084845, -0.00387143088, -0.00362147926, -0.00181919662, -0.00247508474, -0.013478593, 0.00419091806, 0.0202517174, -0.00146588159, 0.0105618648, 0.000253710285, 0.0151474429, 0.00376430876, 0.00169234152, -0.0308211, 0.00591990631, 0.0170192607, -0.0156811737, 2.88507345e-05, -0.0167185683, 0.0231383778, -0.00423978083, -0.00654760469, 0.00401050178, -0.0027983305, 0.0059311823, -0.0251981281, 0.00137285446, -0.00820893701, -0.000467719598, 0.00697985152, 0.0241908059, -0.00662277779, -0.0228376836, 0.00174778188, 0.00459685456, 0.00391653506, 0.0056567993, 0.0152677204, -0.00280208909, 0.00899074, 0.0021311664, -0.00219506375, 0.00497272145, -0.0143130179, -0.0261302795, -0.00698736915, 0.0200412329, -0.0111782867, 0.00444274908, 0.0101935156, 0.0206125509, 0.00205787225, 0.0147565417, -0.00334145827, -0.00286410702, -0.00702495547, 0.00801348593, 0.00186336099, 0.000150816661, 0.00383008551, -0.00279269228, -0.0206726901, 0.0112835299, -0.0265963543, 0.0307158586, 0.0184926596, -0.0176657531, -0.00974999182, -0.0104716569, 0.021574771, -0.0082615586, 0.00917867385, -0.0312721394, 0.000304217421, -0.00631456682, 0.0100281341, 0.00133432809, 0.0115466369, 0.0283103082, -0.0113887722, 0.00348992576, -0.0214394573, 0.013170382, 0.00924633, -0.0133282468, -0.00646115514, 0.00811121147, -0.00646491395, -0.00537114078, 0.0316029042, -0.00654384587, 0.00299566053, -0.0187933538, -0.00763386, -0.00575452484, -0.0109978709, -0.00156642601, 0.0106069688, 0.0183874182, -0.00258220686, 0.0145235043, -0.0038563963, -0.00242810138, -0.021093661, 0.0147490241, -0.0119525734, -0.00885542855, 0.010118342, 0.0150722703, -0.00682198768, 0.0468180031, 0.0159969032, -0.00429240195, 0.00311781745, -0.0281749964, -0.0243712217, -0.0380377471, -0.0109903533, -0.00634463644, -0.0198006779, 0.02796451, -0.00570566207, -0.0259648971, -1.46529428e-05, 0.000907249167, 0.0059387, 0.00493137585, 0.00696481718, 0.00592366513, -0.00128452573, -0.00435629953, 0.00209170021, -0.00223077112, -0.0305354409, 0.00164723746, 0.0293326676, -0.00717154378, -0.0171545725, 0.00137661316, -0.00288290041, 0.0175304413, 0.0270624291, -0.0162825622, -0.00244125677, -0.00771279261, 0.00965978391, 0.016462978, 0.0112459427, 0.00198081951, 0.00598004507, -0.00461564772, -0.00824652333, 0.0062619457, 0.00885542855, -0.015936764, 0.00848707836, 0.00710012903, 0.0118473303, 0.000748445338, 0.0152827557, -0.0158315208, 0.019184256, -0.00869756378, 0.00416084845, 0.0217852555, -0.00729558, -0.00621308293, -0.0166433938, -0.00110786816, -0.000493795378, -0.0362636559, 0.00619804813, 0.0257544126, -0.00614918536, -0.00475847721, -0.00445778342, 0.00926888175, 0.0270473957, 0.009855235, -0.0155007588, -0.00888549816, 0.0103664137, 0.00865246, 0.000272033794, -0.0197555739, -0.0120352637, 0.01176464, -0.00029646515, 0.00332266488, 0.0157864168, 0.00926888175, -0.00965978391, 0.00215183897, -0.00956957601, 0.00578459445, 8.25145689e-05, -0.0174251981, 0.0113812555, -5.53229365e-05, 0.0030370059, 0.00732940808, -0.021093661, -0.00822397135, -0.0174703021, 0.00679191807, 0.0121630589, -0.00969737, -0.00940419454, -0.0237698331, 0.0069009196, -0.0150271654, 0.00334145827, 0.000301398424, 0.0116518792, 0.000275557541, 0.000979133765, -0.010907663, -0.0135236979, -0.0030651961, -0.0181017593, -0.0157713834, -0.0181468632, -0.00933653861, -0.0130726574, 0.00845701, -0.00477351202, -0.00774286175, 0.00914860424, 0.00283967587, 0.00219318434, 0.00949440245, -0.00601387303, -0.0185227301, 0.00570190372, 0.0173199549, 0.00787065644, 0.0158615913, 0.00341099384, -0.0070587839, 0.0113587035, -0.0271075331, 0.0102160675, 0.00855473429, 0.0268519446, 0.00699864514, 0.00194887083, -0.00235292781, -0.0162675269, -0.00852466561, 0.00247320533, -0.0166283604, 0.00221385714, 0.00131835381, -0.00613790937, -0.0109978709, 0.00189343037, 0.00150816666, -0.0100055812, 0.0206726901, -0.0122607844, -0.0178311337, 0.00901329238, -0.00997551251, 0.0417964198, 0.0181618966, -0.000716026756, -0.0026536216, -0.00354254711, 0.0222062264, 0.0148693016, -0.00178630825, -0.00180886034, 0.00968985353, -0.0146512985, -0.000370464, 0.00944178086, 0.0224918853, -0.000372108421, -0.0169140194, -0.00708509423, 0.00157676241, 0.00263482821, -0.012072851, 0.0233789328, 0.0176056139, -0.0165231172, -0.00554403942, 0.00654008705, 0.0288966615, 0.00424353918, 0.00312721403, 0.0144934347, -0.0152677204, -0.00865997747, -0.0114639457, 0.00655136304, 0.0197555739, 0.00786314, 0.0040894337, 0.0149294408, 0.0110279396, 0.0040142606, -0.00544631388, -0.0166734643, 0.00189530978, -0.0146888858, -0.00220446032, 0.0115391193, -0.0128922407, 0.00321366359, 0.00336964824, 0.00149970967, 0.00872763339, 0.00956957601, -0.0280998219, 0.00271000154, 0.00335085508, 0.0237698331, 0.0178311337, -0.00832921453, -0.00620932411, -0.0123284403, -0.0166433938, -0.0108400062, 0.00337716565, -0.018567834, 0.0052020005, 0.00812624581, -0.0121179549, -0.0294228755, -0.0141025325, 0.000228339253, 0.00820141938, 0.0282351356, 0.00526213925, 0.00731437327, -0.0228827875, -0.00104960881, 0.0261152443, -0.00645739632, -0.0236796252, 0.0114188418, -0.00859232154, 0.0168989841, -0.0129674142, 0.0212590415, 0.00216123578, 0.00619804813, -0.00862239115, 0.0102611715, -0.00528844958, 0.00169234152, -0.00416460726, 0.0196503308, -0.0190339088, 0.00191034446, 0.0135688018, -0.0213191807, -0.00332454429, 0.000365765649, 0.0160720758, 0.0088178413, -0.0066265366, 0.000580244814, 0.00421722839, -0.00589359598, 0.0187632851, 0.00701367948, -0.00479982281, -0.0163126308, 0.0056981449, -0.00878777262, -0.00768272299, -0.017229747, -0.00443899026, -0.00427736714, -0.0369853191, 0.0136590097, -0.0021161316, -0.00274758833, 0.0171094686, -0.00689716078, 0.00276262313, -0.0125539601, -0.0154706892, -0.00425857399, -0.0255288929, 0.026866978, -0.00660022581, 0.00101484114, -0.00748351356, 0.0111407, -0.00228903047, 0.0063371188, -0.00307835126, -0.0145009523, 0.00369665283, 0.00415709, 0.00226647849, -0.0101709636, 0.0238299724, -0.0144859171, 0.00117834331, 0.00347677036, -0.00335837225, 0.0043788515, 0.0136740441, 0.0342490077, 0.0218453947, -0.00258032745, 0.0122382324, 0.0027569849, 0.0411950313, 0.00162656477, -0.0263106953, 0.00166415144, 0.0222362969, 0.00236044521, -0.00294867717, -0.00423978083, -0.00115673093, 0.00299002253, 0.00947185047, 0.000882817782, -0.0109452493, 0.000706160266, 0.00987026934, 0.000682668586, 0.0161021464, -0.0105844168, 0.00423226319, 0.00689716078, -0.0131027261, -0.0271676723, 0.0144934347, 0.0157112442, 0.0179363769, 0.0179814808, -0.0200863369, -0.00308398949, 0.0140799806, 0.0166734643, -0.0247921925, -0.0125163738, 0.0114338761, -0.00820893701, 0.014004807, -0.000375632168, 0.0367447659, 0.00097161642, 0.00147715758, -0.0146061946, -0.00142547593, 0.00122438697, -0.0258145519, -0.0259348284, -0.0163727701, -0.0244163256, 0.00932150334, 0.013456041, 0.00196202612, -0.0347000472, -0.013982255, -0.0153504116, 0.0171696078, -0.0085397, -0.0152151, 0.017274851, -0.00740834, 0.0320238769, 0.000806704746, 0.0144483307, -0.0227775443, -0.0118473303, 0.0058146636, 0.0166283604, -0.0027983305, 0.0114263594, -0.00141326024, -0.00648370711, -0.000712268113, 0.0131327957, -0.0340084545, -0.00654384587, -0.00309714465, 0.00561545417, 0.00926136505, 0.0264610425, -0.00123942166, 0.00725423452, -0.00496144546, -0.00675433129, 0.0167336017, 0.000405701518, 0.00407815771, 0.00950943679, 0.00680695288, -0.0161923543, 0.00592742395, -0.0040894337, 0.0190188736, 0.0205073077, -0.0184024516, -0.00643108552, 0.0230481699, 0.0158615913, 0.00381880952, 0.00195826753, 0.00758499745, -0.00988530461, -0.0219656713, 0.012862171, 0.016462978, 0.0154556539, -0.00525838044, 0.0138319088, -0.00780300051, -0.00526965642, 0.0446229391, 0.00544255506, 0.0281449277, 0.0198608171, -0.00204847567, -0.00732564926, 0.000958930876, 0.020808002, -0.0110129053, -0.0301896445, -0.00285283104, 0.00439012749, -0.0164479427, -0.000872011646, 0.00130895711, 0.0257243421, -0.0212289728, -0.00267429417, 0.00252770609, 0.00111162686, 0.029347701, -0.0176206492, 0.00203156145, -0.00279269228, 0.0127794808, -0.0315126963, -0.00693850638, -0.00215935637, 0.00903584436, 0.00731437327, 0.0137041137, 0.00252770609, 0.00484492676, 0.0124863042, 0.00454799179, -0.0249124691, -0.0212139376, -0.00609280542, 0.0259799324, -0.017274851, -2.07901485e-05, -0.0162224229, 0.0153278597, 0.0151098566, 0.0103288274, 0.0143055012, -0.0165832564, 0.0067693661, -0.00282839965, -0.029588256, -0.00730309729, 0.00100262545, 0.00411950331, -0.00799093395, -0.0101709636, 0.00935909059, -0.0100882724, 0.0110504925, 0.0102837235, -0.0214845631, 0.00123190437, 0.000253945182, -0.00496520428, -0.0081713507, 0.0108700758, -0.00601387303, -0.0162675269, 0.0042623328, -0.0136815617, 0.00302009191, -0.00968985353, -0.00219694315, -0.0235593487, -0.00707006, 0.00274758833, 0.0242058393, 0.0254236497, -0.00719409576, -0.00987026934, -0.0143430876, 0.00012603293, -0.0161622837, 0.00338844163, -0.00134090579, 0.004247298, 0.0103137931, -0.0192443952, -0.0105393128, 0.00875018537, 0.0125765121, -0.00924633, 0.0160119385, 0.0181468632, 0.0118698822, -0.0103062754, -0.00400298461, -0.023814939, 0.00336025166, -0.0182370711, 0.0049201, 0.0144408131, -0.0117195351, 0.0171996783, 0.00365718664, -0.00859232154, 0.0177709963, 0.00981764775, 0.0063371188, -0.00655512186, 0.0189737696, -0.0117270527, 0.00194887083, 0.0125163738, 0.00838935282, 0.0154706892, 0.0144257788, -0.012862171, -0.0177108571, -0.00536738196, 0.0162825622, 0.00706630107, -0.00113793754, -0.009855235, 0.0084119048, 0.00234165182, 0.0050441362, 0.00081234274, -0.00173086789, 0.000621590181, 0.0081788674, -0.00375491218, -0.00648746593, 0.0152151, 0.0174251981, -0.00654760469, -0.00231346185, -0.0111557348, 0.00150440796, 0.0113511859, 0.0137266656, -0.0312420707, -0.0105317952, -0.0144633651, -0.00148749398, 0.0121329892, 0.0266865622, 0.0111181485, 0.000232215374, 0.0204020645, 0.00806610752, -0.0019996129, -0.00502534304, 0.0156661402, -0.0302948859, -0.0155608971, -0.00699112751, 0.00979509577, 0.0148843359, -0.00532227801, -0.00596125191, -0.00104303111, 0.00536738196, 0.0175003707, -3.07447517e-05, 0.00659270864, 0.0385489278, -0.0101484107, 0.0194999836, 0.00988530461, -0.000606085639, -0.014004807, 0.00277953711, -0.0143355699, 0.00121968868, 0.0241607353, -0.00338656246, 0.0164780132, 0.00654760469, -0.0109978709, -0.00209921761, -0.00882535893, 0.0118172606, 0.0044051623, -0.0101484107, -0.00358201331, -0.0174703021, 0.00603266666, 0.015651105, 0.0147339897, -0.0140724638, -0.00859232154, -0.00881032459, -0.00474720122, -0.0214995965, -0.0129974838, 0.000616422, 0.00967481826, -0.00628449768, 0.00193759485, -0.0217251163, -0.0122758187, 0.0039992258, -0.00941171125, 0.0279945806, 0.00326064695, -0.00020144126, 0.000504601572, 0.0101108244, 0.00756620429, -0.0010627642, -0.00553276343, -0.00522079365, 0.0250177123, 0.00673929648, 0.00529972604, -0.00352939195, 0.00360644469, 0.0226873364, -0.0106144864, -0.00782555249, -0.00462316489, -0.0125689954, -0.0176056139, -0.0278141629, 0.00895315409, 0.00499151461, 0.0177709963, 0.0141551541, -0.0114489114, 0.00347113237, -0.00623939373, 0.00205599284, 0.004247298, -0.00696105836, 0.016132215, -0.0176356826, -0.0177258905, 0.0144107435, 0.00154951203, 0.013719148, 0.00143487263, -0.00498399744, 0.0123434747, 0.00399546698, 0.010358897, 0.0143280532, -0.0144182611, -0.00475096, -0.00286974525, -0.00467954529, 0.00281336508, 0.00980261341, -0.00556283258, -0.02137932, -0.0219205674, 0.0168238096, 0.0102085499, -0.00086261495, -0.0050027906, 0.00384512031, -0.0112459427, 0.00965226628, -0.0519297943, 0.0313322805, 0.00559290219, 0.0214544926, 0.00715275062, -3.33875687e-05, -0.0147339897, -0.0120653333, 0.00944929849, 0.00852466561, 0.0105393128, 0.010404001, 0.00590487197, 0.0151173742, -0.0239803195, -0.00896067079, 0.00741585763, 0.0101709636, -0.00770527497, -0.0101559283, -0.0102160675, -0.0201464761, 0.00661901943, 0.0104942089, -0.00713771582, 0.0105844168, 0.00882535893, -0.0170493312, -0.00309150666, 0.0102386195, 0.00958461, -0.00447657704, -0.00367973861, -0.0229880307, 0.00617549615, -0.0027569849, -0.00548765948, 0.00177973066, 0.00108907488, 0.0128020328, 0.0127343768, 0.0101333763, -0.00812624581, -0.0105919344, 0.0136665273, -0.0180716887, 0.000885167, -0.00402929494, -0.00796086434, 0.00846452639, -0.0116443625, 0.018658042, 0.00748727238, 0.0188384578, -0.00905088, 0.0148918536, 0.00760379108, -0.029392805, 0.0063784644, 0.00173086789, -0.0233789328, -0.0174552668, -0.016462978, -0.00127512903, -0.0108550414, -0.00564552331, 0.0158014521, 0.00825404096, -0.00226459908, 0.0130876917, -0.00684829801, 0.00482613314, -0.00914860424, -0.00932150334, -0.00582969841, 0.0382482335, 0.00186711969, 0.011215874, 0.0231083073, -0.00915612187, 0.0110279396, 0.000546416792, 0.00972744, -0.00897570606, -0.00845701, 0.00847204402, 0.0190940481, -0.0199209545, 0.0121329892, -0.0122983707, 0.0146362642, 0.000938728044, 0.00682574604, -0.00705126626, -0.00464571686, 0.0071489918, -0.00195638812, 0.000933559844, 0.00232849666, 0.00120841269, -0.0114038074, 0.00245629135, 0.00141701894, -0.00881032459, 0.0323847085, -0.00389398285, 0.00467954529, -0.0108174542, -0.00615294417, 0.018086724, 0.013410937, -0.0136439754, -0.00493889349, -0.0143055012, 0.0306557193, 0.0073820292, -0.00612287456, 0.000769587816, -0.00417588325, -0.00996047724, 0.0131553477, -0.0261603482, 0.014027359, -0.0128321024, -0.0048599611, -0.0197405387, 0.00245817075, -0.00596876908, -0.0113812555, 0.00376055017, 0.0149219232, 0.0118322959, -0.00885542855, 0.00364215206, -0.00364403124, -0.0217702202, 0.0168238096, 0.00432998873, -0.0109602837, 0.0147415064, -0.001473399, 0.0140874982, -0.008494596, 0.014531021, -0.0213492494, -0.0154406196, -0.0242960472, 0.00354254711, -0.00526965642, -0.0128471367, -0.0119149862, 0.00821645465, 0.0258746892, -0.0170493312, 0.0101559283, 0.00577331847, -0.00236420403, 0.00155045174, -0.00546886586, -0.00682198768, -0.00730309729, -0.0188083891, 0.00850211363, -0.0217401516, 0.018853493, -0.00453295698, -0.000361302227, 0.00899825804, 0.00796838198, -0.0051343441, -0.00108719547, 0.0168388449, 0.00042966305, 0.0133733507, -0.0124938218, -0.00889301486, 0.00941922888, -0.0100281341, 0.0123810619, 0.0248072278, -0.00264422479, 0.0105092432, -0.0028998144, -0.003972915, 0.00545759, -0.0146287465, 0.00915612187, -0.00474344241, -0.00470961444, -0.00500654941, -0.0135537665, 0.0226121638, 0.0166884977, 0.00321554276, -0.00449161138, 0.00759251509, -0.00305579929, 0.0310015175, -0.000974435417, 0.00599883869, 0.00122908538, 0.0193496365, -0.00748351356, 0.00307083409, 0.00326440553, 0.000343918364, -0.019665366, -0.00667539937, -0.00664157141, 0.01176464, -0.0314525589, -0.00180886034, -0.0082690753, -0.0108324895, 0.000405466621, 0.0253484752, -0.0263858698, -0.0202216487, -0.00563424733, 0.00914860424, -0.000774756, -0.0129223103, -0.00644987915, 0.00728054531, 2.2390519e-05, -0.0206125509, 0.00723919971, 0.00428864313, 0.0223265048, -0.0119300215, 0.00798341632, -0.00554779824, -0.0133432811, -0.0232887249, 0.00276450231, -0.00102705683, 0.0195150189, -0.0050027906, -0.00709637, 0.0143205356, 0.00570566207, 0.0133207291, 0.00396539783, 0.000778514659, -0.0110053876, -0.0099454429, 0.0138394255, -0.00813376345, -0.0205524117, 0.0162073877, -0.00149595097, -0.00695354072, -0.0104566226, -0.0242810138, 0.0186881106, -0.0168238096, -0.00225708191, 0.0190940481, 0.0113436682, 0.0164329093, -0.019184256, -0.0137717696, 0.0239502508, -0.00404808857, 0.00364779, 0.00178442895, 0.0148091633, -0.00571317971, -0.0184926596, -0.01971047, -0.00331702689, 0.0174703021, 0.00252770609, -0.0190038402, -0.00551021146, -0.0222362969, -0.00343542499, 0.00311781745, -0.000495204877, -0.0205073077, 0.0107046943, -0.0132831428, 0.000758311828, -0.00942674652, -0.0141852237, -0.0191692207, -0.0131027261, 0.00818638504, -0.0193496365, -0.0161171798, -0.00588607835, -0.0084119048, 0.00821645465, -0.00256529287, -0.0110354573, -0.0103664137, -0.00414581411, -0.0158164874, 0.00545759, -0.0140198423, 0.0275134705, 0.000636624871, 0.0255138576, 0.00222137454, -0.00881032459, -0.0142979836, -0.00759251509, -0.0224467814, -0.00261227624, -0.0156360697, -0.0360231, -0.00754365232, 0.00963723194, 0.00135594048, -0.000845231116, 0.00854721759, -0.0147039201, -0.00467202766, 0.023243621, -0.0152376518, 0.00418340042, -0.00474720122, -0.0139371511, 0.00708509423, -0.029107146, 1.10117307e-05, 0.0269571859, 0.0360231, -0.00236796262, 0.00451040501, -0.0179814808, 0.00913357, -0.0129598966, -0.00386767229, 0.00721288938, 0.0197255034, 0.00472464925, -0.00298250536, 0.010667108, -0.00791576, -0.0219506379, 0.0137567353, 0.00878777262, -0.00220258115, 0.0167787056, -0.00870508142, -0.00166509114, -0.0052020005, 0.0437509269, 0.0140123246, -0.0188384578, 0.00240179058, 0.00655888068, 0.0148768192, 0.00157394342, 0.00130143971, 0.0123209227, 0.00557786738, 0.00468330365, 0.00174590258, -0.0121480236, -0.00680695288, 0.00224956451, 0.0066528474, -0.00184174872, -0.00664908858, 0.0144633651, -0.00633336045, -0.00686709164, -0.018853493, -0.00693098875, -0.00567183411, -0.00245065335, 0.0637470558, 5.32086815e-05, 0.018207, -0.0230331346, -0.0100431684, 0.000941547041, -0.00807362515, 0.0439313427, -0.00575828366, -0.0161622837, -0.0127794808, -0.00519072451, -0.0198307466, 0.00381880952, -0.00640853355, -0.0174251981, -0.0293176323, -0.000876240141, 0.023003066, -0.0121705756, -0.00131835381, -0.00274382974, 0.00979509577, 0.00116988632, 0.000301633321, -0.00950192, -0.0118774, -0.0157112442, 0.0019939749, 0.0178912729, 0.015606001, 0.00242810138, -0.0187482499, 0.00144332962, -0.0137567353, -0.00336964824, -0.0176507179, 0.00634839479, 0.00728054531, -0.00313849, 0.0133883851, 0.0126817552, -0.0114864977, 0.010140894, 0.00904336199, 0.0129373446, 0.00873515103, -0.00829162821, -0.00942674652, -0.0098627517, 0.0108700758, -0.0170192607, 0.00820893701, -0.000342273968, 0.0153955156, 0.0190188736, -0.00023902797, 0.00367034203, 0.00156924501, 0.0190339088, -0.00984771736, 0.00971992221, 0.0027908131, -0.0202216487, -0.00972744, -0.0249425396, -0.00547262467, -0.000233859799, -0.00340911443, 0.00932150334, -0.00175529928, -0.0128696887, 0.00104678981, -0.00566807576, 0.0262505561, 0.0231834818, -0.00546134869, 0.00763761904, -0.0192744639, 0.0101709636, 0.00139916525, 0.00264986302, 0.00763761904, 0.00187933538, 0.0189286657, -0.0079759, -0.00731437327, -0.0150647527, -0.00869756378, -0.0096221976, 0.00383196492, -0.00207290705, -0.0154706892, 0.00915612187, 0.0230932739, -0.0098402, 0.0117571224, 0.00192631874, 0.0397817716, 0.0129298279, -0.00660774345, -0.0104566226, 0.0141250845, -0.00340911443, -0.0209282786, 0.0216649789, -0.00821645465, -0.00238299719, 0.00664908858, -0.014004807, 0.0245065335, -0.0294228755, 0.0165080819, 0.0184174869, -0.00336588966, 0.00903584436, 0.00865246, 0.00396539783, 0.00255025807, -0.0059462171, 0.00526965642, -0.005607937, -0.00584849156, -0.0219807066, -0.00055440393, 0.022431748, -0.00165099616, 0.00149219227, -0.00574700767, -0.0245967414, -0.00763761904, 0.00748727238, 0.0116443625, -0.0205073077, 0.00612287456, 0.0292574931, -0.0106821423, 0.0138093568, -0.00582593959, 0.0181017593, 0.020522343, -0.00789320841, 0.00395412184, -0.0081788674, 0.00499151461, 0.00247132615, 0.00431495393, -0.00630704965, 0.00544255506, -0.0198157132, 0.019424811, 0.017515406, 0.0122908531, -0.00207854505, 0.00981764775, -0.018086724, -0.0101108244, -0.0202667527, -0.00768648181, 0.00294116, -0.000947185035, 0.00736699486, -0.00694602355, -0.0270022918, 0.00484116795, 0.0107648335, 0.0149219232, -0.0198608171, 0.014027359, 0.000437415321, 0.0251680594, -0.00823148899, 0.0106746247, 0.00236044521, -0.0126441689, 0.0250778515, 0.00956957601, 0.0154255852, -0.00270624296, -0.00415333128, -0.000161740303, 0.0189587362, 0.00455550896, 0.0501256324, -0.00473968405, -0.00269308756, -0.00928391702, -0.0233037584, 0.00464947568, 0.00337716565, -0.00439012749, -0.00150064926, 0.00753613515, 0.00608528778, -0.0268970486, 0.00383948232, 0.0214995965, -0.00734820124, -0.00234728982, -0.0193797071, 0.00142265693, 0.00607401179, 0.00531476038, 0.0358727537, -0.00657391502, -0.000593400153, 0.00734444289, 0.00680319406, 0.0115165673, 0.00188591308, 0.0104340697]
28 Sep, 2021
Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms 28 Sep, 2021 1. Multi Level Queue Scheduling (MLQ) : It is quite difficult to have just one queue and schedule all the processes. This is where multi-level queue scheduling is used. In this the processes are divided into various classes depending upon the property of the processes such as system process, I/O process, etc. Thus we get ‘n’ number of queues for n classes of processes. Each queue is assigned a priority and can use its own scheduling algorithm which makes it convenient to use many scheduling algorithms at the same time. Generally, the topmost level of queue has the highest priority which decreases as we move to the lower levels. If the upper level has an absolute priority over lower levels then it is non-preemptive else if the time slice is divided between various queues then it becomes preemptive in nature. Advantages : The major advantage of this algorithm is that we can use various algorithms such as FCFS, SSJF, LJF, etc. At the same time in different queues. Disadvantages: The lowest level processes suffer from starvation problem. 2. Round-Robin (RR) : It is particularly designed for time sharing systems. The processes are put into the ready queue which is a circular queue in this case. In this case a small unit of time known as time quantum is defined. The algorithm selects the first process from the queue and executes it for the time defined by the time quantum. If the process has burst time less than the time quantum then the CPU executes the next process but if it has burst time higher than the time quantum then the process is interrupted and next process is executed for same time quantum. If a process is interrupted then a context switch happens and the process is put back at the tail of the queue. It is preemptive in nature. This algorithm mainly depends on the time quantum. Very large time quantum makes RR same as the FCFS while a very small time quantum will lead to the overhead as context switch will happen again and again after very small intervals. The major advantage of this algorithm is that all processes get executed one after the other which does not lead to starvation of processes or waiting by process for quite long time to get executed. Difference between MLQ and Round-Robin (RR) scheduling algorithm : MLQ Round-Robin (RR) MLQ executes the process depending upon the priority if the level of queue in which the process resides and further execution is dependent upon the algorithm used in that level. Round-Robin (RR) executes the processes based upon the time quantum defined i.e. each process is executed for a fixed amount of time. MLQ can be both non-preemptive and preemptive depending upon the conditions. Round-Robin (RR) is preemptive in nature. The average waiting time for given set of processes is dependent upon the tuple of algorithms used in various levels of multi level queue. The average waiting time for given set of processes is quite small and depends on the time quantum. It is quite complex and difficult to implement. It is quite easy to implement RR. It leads to the starvation of processes at the lower levels. Each process is executed and every user feels that his work is being done as the CPU gives equal amount of time to each process. Switching between different levels causes overhead on the processor. In case of RR, if the time quantum is very small then context switch takes place again and again after very short intervals of time which leads to overhead. 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!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum/Algorithm for Dynamic Time out timer Calculation/Difference between Round trip time (RTT) and Time to live (TTL)/Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms
https://www.geeksforgeeks.org/difference-between-multi-level-queue-mlq-scheduling-and-round-robin-rr-algorithms?ref=asr10
PHP
Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms
What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, jQWidgets jqxTreeMap width Property, Difference between Flow and TypeScript, jQWidgets jqxTree destroy() Method, jQWidgets jqxTree collapseAll() Method, jQWidgets jqxScrollView buttonsOffset Property, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, jQWidgets jqxListBox enableHover Property, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxSlider buttonsPosition Property, Difference between Round trip time (RTT) and Time to live (TTL), jQWidgets jqxSlider rtl Property, jQWidgets jqxTooltip opacity Property, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, jQWidgets jqxToolBar height Property, PHP, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, Node.js date-and-time Date.transform() Method, TypeScript Optional Parameters, jQWidgets jqxToolBar theme Property, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, Steps to Diagnose and Resolve a Slow Network, How to use Optional Chaining with Arrays and Functions in TypeScript ?, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, jQWidgets jqxScrollView showButtons Property, Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms, jQWidgets jqxScrollView disabled Property, jQWidgets jqxSplitter destroy() Method, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, jQWidgets jqxTree collapseItem() Method, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), jQWidgets jqxSortable opacity Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, jQWidgets jqxSlider height Property, jQWidgets jqxSwitchButton onLabel Property, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, jQWidgets jqxToolBar tools Property, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTree width Property, jQWidgets jqxTree clear() Method, TLS Handshake?, Algorithm for Dynamic Time out timer Calculation, Adhoc TCP, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, jQWidgets jqxTabs position Property, Differences between Wireless Adhoc Network and Wireless Sensor Network, jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, Impact of Three-way Handshake and Slow Start Algorithm, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, How to Sort an Array Having Optional Properties in TypeScript ?
GeeksforGeeks
[-0.0325868055, -0.00885539781, -0.0236717965, 0.0356865264, -0.0102794142, 0.00106056139, -0.00808709115, 0.0164126214, -0.00583846914, -0.023314137, 0.0318449922, -0.0314475894, 0.0221749227, 0.00715982448, -0.0375145636, 0.0404553264, 0.0108092818, 0.00737839425, 0.0139752347, -0.00423893379, -0.0109947352, 0.00988201424, -0.00643456914, 0.0238042623, -0.0421509, -0.000874280115, -0.0216450561, -0.0151806818, -0.0538344607, -0.00310965534, 0.00806059781, 0.0377265103, 0.0424158312, -0.049171634, -0.0146640623, -0.00747774448, 0.00502048712, 0.00826592091, 0.022108689, 0.00804735068, -0.0311826579, 0.0213403832, -0.040799737, -0.0144653618, -0.00504035736, -0.00969656091, 0.00544106914, -0.0108423978, 0.00154572062, -0.0357660055, -0.00156476267, 0.0134056285, 0.0462573655, 0.0121008316, 0.00333484868, -0.00548080914, 0.00373887224, 0.000250030862, -0.0235128365, -0.0234333556, 0.0351301655, -0.00491451379, -0.0554240607, -0.0355540588, 0.0242149103, -0.0218967423, -0.0342558846, 0.0134321218, 0.0359249637, -0.0393161103, -0.0459394455, -0.00321728457, -0.0318449922, -0.00373556046, -0.0226253103, -0.00348387379, 0.020360129, 0.013286408, -0.0377795, 0.000938029727, -0.0433960855, 0.0187837761, -0.0402168855, -0.0180419628, 0.0397135131, -0.0104582449, 0.00308150612, -0.039210137, 0.0409587, -0.00561658759, -0.0121207014, 0.0264535975, 0.0225723237, -0.00802748092, 0.0206118152, -0.0429721922, 0.00708034448, -0.0139487414, 0.00263608689, -0.0111139547, 0.00312952534, -0.0356070437, -0.0206118152, -0.00590801425, 0.0388392322, 0.0193666294, -0.0300434437, 0.0171146952, -0.00709359115, 0.057755474, 0.000803079281, -0.010186688, -0.0196050685, 0.00422899891, -0.0230359565, -0.0294340979, -0.016545089, -0.0584972873, -0.019247409, -0.00568613224, -0.0356865264, 0.0126042049, -0.0320304446, 0.0271159299, -0.0569606759, 0.0365872979, 0.0455950312, 0.0121207014, 0.014081208, 0.0105575947, 0.00372893712, 0.00687502092, -0.0385478064, -0.0385478064, -0.0315270722, 0.0169954747, 0.0183996223, 0.0413031131, 0.0438994579, 0.0106900614, -0.00956409425, -0.0235128365, -0.00819306448, -0.0271556694, 0.0179359894, 0.00774930092, 0.00584840402, 0.0200687032, -0.00691476092, 0.0344148427, -0.0264800899, -0.0205588285, 0.0151674356, -0.00471250247, -0.0150084756, 0.00867656805, -0.00847786758, 0.000796869921, -0.0275265761, -0.015273409, 0.0015730419, -0.0200819485, 0.0166378152, 0.0182406623, -0.00638158247, 0.00450717891, 0.00192904612, -0.011776288, -0.0678759292, 0.0335670561, -0.0466812588, 0.0393426046, -0.0191281885, 0.0153396418, 0.00772943115, -0.00497081224, 0.0107629178, -0.00460984046, -0.00779566448, 0.0142269218, -0.0414090864, 0.00734527782, -0.0156575628, 0.028241897, 0.031103177, -0.00278345612, 0.0321364179, -0.00965019781, 0.000109181521, -0.00819968805, -0.0310501903, 0.00610671425, 0.0424423255, 0.0167437885, 0.0175650828, -0.0261886641, -0.0278180037, -0.000933062227, 0.0240294561, -0.00197375356, -0.0154853556, -0.0155250952, -0.036348857, 0.0303348713, 0.022201417, -0.0368257388, 0.0440319255, 0.00273046945, 0.0362693779, 0.00142815639, -0.0485887788, 0.0163728818, -0.00871630758, -0.0235260837, 0.0199627299, -0.0234201103, 0.0166775547, 0.00567288557, 0.0243208837, -0.0328782313, 0.0232081637, -0.0114252511, 0.00970318448, -0.0217775237, -0.0442438722, -0.0313681103, 0.0029655979, -0.017419368, -0.0189427361, -0.0385478064, 0.00096949056, 0.0418329798, -2.95462796e-05, -0.00131473178, -0.0578614473, 0.00342426379, -0.00695450092, 0.0114649916, 0.00615970092, 0.0235790703, -0.00267913868, 0.0104979845, -0.0392896198, -0.00273046945, 0.0208502561, 0.0191149432, 0.046310354, 0.00642132247, -0.0105178542, -0.00709359115, 0.000819637615, -0.0234598499, -0.0346797779, -0.0105112316, -0.0212741494, 0.0106105814, 0.00668956758, -0.025221657, -0.0148892552, -0.033169657, -0.000258310029, 0.0169689823, 0.00242579612, 0.028559817, -0.00774930092, -0.0062888558, 0.0413825922, 0.00681541068, 0.0128293987, -0.00733203115, -0.00470919069, -0.0636369959, -0.0424688198, -0.000800595502, 0.00655378914, -0.0554240607, -0.0231684223, 0.0052953558, 0.0677699521, 0.00365939224, 0.0311561637, -0.00340108201, 0.0154721085, -0.0106834378, -0.00918656494, 0.0164126214, 0.00777579425, 0.00243241945, -0.0482973531, 0.00348387379, -0.0461513922, -0.00878916401, 0.000816739921, -0.00633190759, 0.0800628662, 0.0178830028, 0.0212211628, 0.0154853556, 0.0227842703, 0.0188897494, 0.0155515885, -0.0310766846, 0.0506552607, -0.0344678313, -0.0149422418, -0.0175253414, -0.0230756961, 0.0157105494, 0.00128741062, -0.00680216402, -0.0141209485, -0.0268509965, -0.0233936161, -0.0314475894, -0.000619281724, 0.00917331781, 0.025698537, -0.00760358758, -0.00525230402, -0.0241751689, 0.0269172303, 0.00898786448, -0.0188500099, 0.0220159627, 0.0254998375, -0.0432371274, 0.00757709425, 0.0292221513, -0.0502048731, 0.00369913224, -0.0157237947, -0.00802085735, -0.0359249637, -0.0221351832, 0.0249699708, -0.0281889103, -0.0067657358, 0.0448797122, 0.00475886557, -0.00273709279, -0.0177505352, -0.00281491713, 0.0123458952, 0.0125644654, 0.00477873581, -0.0114186285, -0.00229167356, 0.0218172632, 0.037938457, 0.0159224961, 0.000917331781, 0.0329577103, 0.0370111912, 0.00826592091, -0.0056132758, -0.0431576446, 0.0027072879, 0.0057788589, -0.011935248, 0.0066067758, 0.0385478064, -0.0161211956, -0.0208635032, 0.00866332091, -0.0520859, -0.0118756378, 0.00391439069, -0.00343751046, -0.000422030571, 0.0223206356, 0.00727242092, 0.00650411425, 0.0675580055, -0.0100409742, -0.0221616756, -0.00572256092, -0.0194858499, -0.0142931556, -0.0221351832, 0.0188235156, -0.00323549868, 0.0540729, -0.0331166722, 0.0248639975, 0.0140944552, -0.0151409423, 0.0311561637, -0.0525627807, -0.015750289, 0.0187042952, -0.00400711736, 0.0256190561, -0.00227180356, 0.0298844837, -0.0203071423, 0.0123525178, 0.0054145758, -0.0060106758, -0.00265761279, -0.0246388037, -1.32919456e-06, 0.0230492037, -0.016465608, 0.059345074, -0.0361369103, 0.000814670115, -0.0193003956, -0.0144256223, 0.00987539161, -0.00823280402, -0.0153661352, -0.0170484614, 0.00983565114, 0.00152667856, 0.0125048552, 0.0335670561, -0.00854410138, 0.0692535788, -0.0194461085, -0.027765017, -0.0434225798, 0.00676242402, -0.00997474138, 0.028718777, 0.015273409, 0.0548412055, 0.0302288979, -0.00693463068, 0.0194858499, 0.00161360984, 0.0240029637, -0.00122614473, 0.011378888, 0.0185453352, 0.0194858499, -0.014558089, 0.0229564756, 0.0344148427, -0.0228505023, -0.00694125425, 0.0112596685, 0.0614115559, 0.00955084804, -0.0356070437, -0.0653855577, -0.0128161516, -0.0312356446, 0.015670808, -0.0322688855, -0.00567950914, 0.00761683425, -0.0307322703, -0.00415945379, 0.0238175094, 0.0458334722, -0.0245063361, 0.0566957407, -0.0441643931, 0.0388127379, 0.00722605782, 0.014399129, 0.0251024365, 0.0289572179, -0.0287717637, -0.0119286245, -0.0111801885, -0.019088449, 0.020042209, 0.00655710092, 0.000562155503, -0.00736514758, -0.0582853407, 0.00499068247, 0.0363753513, 0.0168762561, 0.0304938313, 0.0263476241, -0.052032914, -0.0307322703, -0.0196580552, 0.00978928804, 0.0247712694, -0.000218983987, 0.0107894111, -0.000334892335, 0.020995969, 0.0325603113, 0.019883249, -0.0106966849, -0.020360129, 0.014955489, 0.0193931218, 0.0126770614, -0.0306527913, 0.0257515237, 0.00482841069, -0.000362834515, 0.00287121534, 0.00949786138, -0.0118955085, -0.00327689457, -0.0150084756, -0.0243606232, 0.0524038188, -0.0377000198, -0.00622924604, 0.0255130827, -0.00389783224, -0.0170617085, -0.038256377, 0.0372761264, 0.0464693122, -0.00212609023, 0.0144653618, 0.0174591094, 0.0252746437, -0.00894812495, 0.00146541267, -0.00134784856, 0.024744777, 0.0152601618, 0.028718777, 0.0339114703, -0.00335306302, 0.00154654856, -0.0209297352, 0.0399519503, 0.00654054247, 0.0278444961, -0.0231949165, -0.0364283398, -0.00094465306, -0.000163513556, 0.00738501782, -0.0150614623, 0.00840501115, 0.00343419868, 0.00459328247, -0.0243738703, 0.00957071781, -0.000396986085, 0.0163728818, -0.0125512183, -0.0361899, 0.00514301891, 0.0392896198, -0.00908721425, -0.017498849, -0.0214596037, -0.000154509966, -0.0217112899, 0.0134056285, 0.00139090023, -0.0260694437, -0.0165318418, 0.00914682448, 0.033169657, -0.00661008758, -0.00475555379, -0.00654385425, 0.0349447094, 0.019406369, 0.0441643931, 0.0326397903, -0.000125325896, -0.00894812495, -0.00815994758, 0.0228902437, -0.00792813115, -0.00275033945, 0.00786852092, -0.0122664152, 0.0151276952, -0.0287452713, 0.0145713352, 0.0304938313, -0.000122428188, -0.018134689, -0.0262813903, -0.00840501115, 0.00431841379, 0.0149025023, 0.00381504046, 0.00880241115, 0.0406142846, -0.0318449922, 0.00320900534, -0.000674338196, -0.00342095201, 0.00403361069, 0.0181744285, 0.0337525122, -0.0217112899, 0.0253143832, -0.0220292099, -0.00242745201, 0.0177107956, -0.0159489885, 0.00546756247, -0.0194726028, 0.00476217736, 0.0275795627, 0.0218437556, -0.00412633736, 0.00882228091, 0.0103787649, 0.0056132758, 0.0293281246, 0.0298579913, -0.00283313124, 0.00541126402, 0.0214463565, 0.0170484614, -0.00123773562, 0.0171941761, 0.000856065948, 0.0175385885, -0.0227180365, -0.0124717383, -0.0139090018, -0.00593450759, 0.000222295654, -0.021790769, 0.0227180365, -0.0152336685, 0.0440319255, -0.0241486765, -0.0285068303, 0.0155515885, -2.46046511e-05, -0.0274735894, -0.000376702141, 0.00615638914, -0.0282154027, -0.013286408, -0.0113126552, -0.000460321724, 0.0055337958, -0.00405679224, 0.00198865612, -0.00396737736, 0.014637569, -0.0051827589, 0.0743932873, -0.00408990867, 0.0386272855, 0.00340439379, 0.033805497, 0.0218437556, -0.0214860961, -0.0165715814, 0.023473097, -0.00391770201, 0.0190487094, -0.00419919379, 0.00229829689, 0.00396406557, -0.0424423255, -0.00780891115, 0.000931406394, -0.0207707752, 0.0362958722, 0.0178035218, 0.00215092767, -0.0120412214, 0.0021592069, -0.00724592758, 0.0280564427, -0.0189029966, 0.0118623916, -0.0311296713, -0.018452609, 0.00753735425, 0.0264535975, -0.0015929119, -2.81750436e-05, -0.00495425379, 0.0464958064, -0.00477873581, -0.00169722934, -0.0229167361, -0.0407202579, 0.037302617, -0.00232147868, 0.0181611832, 0.00184294279, -0.0266258027, -0.0179492366, -0.0147435423, -0.0116107045, 0.0123591414, 2.47986954e-05, -0.00254501612, 0.00884215161, -0.00826592091, -0.000229125973, -0.0140149752, 0.0217642765, -0.0238704961, -0.0222146623, 0.00398393534, -0.00605372759, 0.000766237, 0.00758371782, -0.0488007255, 0.0542318597, 0.00614645425, 0.0181611832, -0.0379914455, -0.0187572818, 0.000807632809, -0.0278444961, 0.0141077014, 0.0252349041, 0.0207310356, -0.0275795627, -0.0150879556, -0.0123723885, -0.020201169, -0.00969656091, 0.0173796285, 0.0220821965, 0.0197110418, -0.0217112899, -0.0136705618, 0.0287982579, 0.065067634, 0.00759696448, -0.0248772427, 0.000716562, 0.00275365124, 0.0170352161, -0.0153396418, 0.00325040123, -0.00867656805, 0.0203071423, 0.0496485122, 0.000162789132, 0.0185983218, 0.031580057, 0.0332756303, 0.00880903471, -0.00113176228, 0.000227884098, 0.00712008448, -0.021883497, -0.00371900224, 0.00699424092, 0.0167967752, 0.00311462302, -0.000606863, 0.0065604127, 0.0160814561, -0.0272351503, -0.0147832818, 0.0061365189, 0.0110874614, 0.00196547434, 0.0378854722, 0.0136970552, -0.026334377, 0.0350506827, 0.0534635521, -0.0166510623, -0.00990188494, -0.00843150448, -0.0667632073, 0.000337583071, 0.0138957547, 0.00961708091, 0.0333286189, 0.0122597916, 0.0290102046, -0.0386802703, -0.0189559832, 0.022042457, -0.021154929, -0.029513577, 0.0194328632, 0.0164523628, -0.0186645556, 0.055847954, 0.0335670561, 0.0218702499, -0.000494266336, -0.0204131156, 0.0308912303, -0.0215788223, 0.00404023379, -0.0178697556, -0.028718777, 0.0357925, -0.00804735068, 0.0172339156, 0.019247409, -0.0276855361, -0.0103257783, -0.000298464, -0.0581793673, -0.0320304446, 0.00220722612, -0.00732540758, 0.00685515068, 0.0196448099, 0.00357328891, -0.0157635361, -0.0172339156, -0.0163463894, -0.00776917115, -0.0107761649, 0.00141159806, 0.0397664979, 0.00626898604, 0.0295665637, 0.00627229735, 0.00190752023, 0.0194461085, 0.0365343131, 0.00821293425, 0.0281359237, -0.0131605649, -0.024267897, 0.0106105814, 0.0178830028, -0.0104383742, 0.000659435696, 0.0127896583, 0.0131936818, 0.00586496247, 0.0283478703, 0.00478535891, 0.0182406623, -0.0104847383, -0.00894812495, -0.0323218703, -0.00747774448, -0.00439789379, 0.0185983218, 0.0134917321, 0.00972967781, -0.00475886557, 0.00115328806, 0.00801423471, -0.000775758, -0.00129982934, 0.0190752018, -0.0227577761, 0.014558089, -0.00514301891, -0.001501841, 0.0326132961, 0.0266787894, 0.0119153783, 0.0178962499, 0.0134122521, 0.0273941103, 0.00493107224, -0.0139487414, -0.00790163781, 0.00901435781, 0.00661671069, 0.0180817023, -0.0214198623, 0.0114384983, 0.0285333246, -0.00408328557, -0.0169557352, 0.00106635678, -0.00766319782, -0.0355275646, 0.0260032099, 0.00920643471, -0.00579872914, -0.00124104728, -0.00831890758, -0.00809371471, 0.0193268899, -0.0192871485, 0.0234201103, 0.0138560152, 0.0420184322, -0.0115577178, -0.0258177575, -0.0203468818, 0.0303348713, 0.00804735068, -0.0255925637, -0.0343618579, 0.0125445947, -0.0230492037, -0.00891500805, 0.0111603178, -0.0169689823, 0.00419919379, -0.00772943115, 0.00999461114, -0.00564639224, -0.00924617425, -0.00596100092, 0.00688164402, -0.00387133891, 0.00414951891, -0.00882890448, -0.0416740179, 0.0355010703, -0.0225458294, 0.0226385556, -0.00890176091, 0.000478949863, -0.0155383423, -0.00149438973, 0.0476615131, 0.012730048, -0.0138030285, 0.0203468818, 0.0164788552, -0.0250362027, -0.0398989655, 0.00160036318, 0.00735190092, -0.00373556046, 0.000654468196, 0.0221616756, 0.0253541227, 0.0104317516, -0.000252514612, -0.0296990313, -0.00345075713, 0.000861861336, -0.0232743956, 0.0168365147, 0.00332160201, 0.00986214448, 0.00367263891, -0.0155648356, 0.00866994448, 0.0257117841, 0.0123194018, -0.0407467522, 0.016465608, -0.0397929922, 0.0378854722, 0.0113921352, -0.00117481395, 0.0114716152, 0.0343883522, -0.0116107045, 0.000219604917, -0.00425218046, 0.0255793165, -0.00946474448, -0.0203866232, 0.00592457224, -0.0401109122, 0.0195785761, -0.00457010046, -0.0181479361, -0.0392366312, -0.015034969, 0.0413825922, -0.00713995425, -0.0161874294, 0.0291691646, 0.0132334214, -0.0143858818, 0.00380510557, -0.00133791356, -0.0101668183, 0.0132731618, 0.0226253103, 0.0233803689, -0.0154588623, -2.04262597e-05, 0.0154456152, -0.0124783618, -0.00052200153, -0.00383491046, -0.023791017, -0.0153661352, 0.014558089, 0.00135612767, -0.00744462758, -0.0110874614, 0.00861695781, 0.0475290455, -0.00342426379, 0.00684190402, -0.0298844837, -0.0017419369, -0.0139487414, -0.00287121534, 0.0276590437, -0.0291161779, -0.0138560152, -0.00478535891, 0.0145051023, 0.0276590437, -0.021724537, -0.0680878758, -0.00739826448, -0.0557419807, -0.0180684552, 0.00612658402, 0.0163596347, 0.0243871156, -0.00888851471, -0.00260297023, 0.00845799781, -0.0208237618, 0.0444558188, 0.00240592612, -0.0317655094, -0.0233538765, -0.0126969321, 0.0120743383, 0.0362693779, 0.00884215161, -0.00151508767, 0.0226915423, -0.0143726356, 0.019724289, -0.00892825425, 0.00470256712, -0.0183996223, 0.00721281115, 0.00819306448, -0.0191016961, -0.00963695161, 0.00052324339, -0.00531853735, -0.0110410983, -0.0190222152, -0.0020797269, 0.0224266089, -0.0174856018, 0.0134718614, -0.000187419661, -0.0422038846, 0.00285631279, -0.0160549618, 0.00593450759, 0.00694787735, 0.0197110418, 0.0232611503, -0.014478609, -0.0235923156, -0.0114451218, 0.0148495156, 0.00992837828, -0.011935248, 0.017419368, -0.00429523224, -0.00696112402, 0.00282154046, 0.0189162418, 0.00625242759, -0.00590801425, -0.014955489, 0.0271821637, -4.23337133e-06, -0.010186688, -0.00486815069, 0.00778904092, 0.00201680535, -0.0343088694, 0.00644450402, -0.0169954747, 0.0203468818, -0.0151012018, 0.00288942945, 0.00984889828, 0.00623918092, -0.00431179069, -0.021154929, -0.00218238868, -0.00321231713, -0.0261621699, -0.00323715457, -0.0209032428, 9.09156079e-05, -0.00606366247, -0.00489795581, 0.0297785103, 0.00606697425, -0.0105443476, -0.00740488758, -0.00825267471, -0.00066109153, -0.0225590765, -0.0210357085, -0.0215788223, 0.0196183156, 0.0473171, 0.00755722448, 0.00493438402, 0.022360377, 0.00797449425, 0.076618731, -0.0148892552, -0.0205058418, -0.0477144979, -0.0179492366, 0.00920643471, -0.000448316947, -0.0105907116, 0.0329842046, 0.00227511534, 0.0452506207, 0.0132599147, -0.000247754098, -0.0282154027, 0.00608353224, 0.0277915094, 0.0185718294, -0.00809371471, -0.0173001494, 0.00743138092, -0.0188235156, 0.0290102046, -0.000287701085, -0.00554704247, 0.0017618069, 0.0115246018, 0.000692552363, -0.00832553115, -0.00287949457, -0.00747112092, 0.0297520179, -0.00500061736, 0.0113656418, -0.00429192046, -0.0151012018, 0.0289307237, 0.0137500418, -0.0120412214, -0.00953097828, 0.00844475068, -0.0109351249, 0.0138825085, -0.0115842111, 0.015511849, -0.016863009, 0.00921305828, 0.0125247249, 0.00629216759, -0.000332201598, -0.000430930668, 0.0201216899, -0.00322887534, 0.0231286827, -0.00603385735, 0.0180154685, 0.0213006437, -0.00906734448, -0.026811257, 0.0152336685, 0.0138825085, -0.0188102685, -0.00322721968, -0.0203203894, -0.0126836849, -0.00960383471, 0.00983565114, -0.0259634703, 0.0121604418, 0.00757047115, 0.00276524201, -0.0431046598, 0.0177902766, 0.012094208, -0.00959721114, -0.0129949814, 0.000882559281, -0.0264535975, 0.00126091728, 0.0251951627, -0.0147038018, 0.0021194669, -0.000571262557, -0.0016823269, 0.00412633736, 0.00477211224, -0.0029059879, -0.00516951224, -0.00518938247, 0.0214198623, -0.0135182254, -0.00735852448, 0.00206316868, -0.0217377823, 0.0107761649, -0.00325371302, 0.00744462758, 0.0400314331, 0.0257382765, 0.00429854402, -0.0058517158, -0.018452609, 0.0104383742, -0.0212211628, -0.00831228402, 0.0187970232, -0.0107099311, 0.0132267987, 0.00303017534, -0.0200554561, -0.0117895352, 0.0394750722, 0.000807218836, 0.00911370758, 0.0157635361, 0.0161344428, -0.0156840552, 0.0290631913, -0.021247657, 0.00496087736, 0.0057324958, -0.0233406294, -0.0232346561, 0.0118491445, -0.0231154356, -0.00970318448, -0.0220027156, 0.0252481494, 0.0147302952, 0.0168895014, 0.0126439454, 0.00580866402, 0.0243738703, -0.0261356775, -0.0122068049, -0.0109947352, -0.00835202448, -0.0148892552, -0.00572918402, 0.00309475302, 0.0202541556, 0.0221881699, 0.00509334402, -0.00139172806, -0.00658359425, 0.014796529, 0.00234134868, -0.0105377249, 0.00282485201, -0.0120014818, 0.00299209123, -0.0170749556, 0.00414620712, 0.00477211224, -0.00840501115, 0.0316330455, -0.021631809, -0.00656372402, 0.00652398402, 0.0339644589, -0.00580866402, 0.0113921352, -0.00633521937, 0.0248507503, 0.0134321218, -0.00382828712, -0.0315005779, 0.0158032756, -0.00375874224, -0.0304143503, -0.00937864091, 0.00480522914, 0.00360640557, -0.00192407856, 0.0151674356, -0.0146243218, 0.00788176805, -0.0150747085, -0.014240169, 0.0112464214, -0.0125313485, 0.0182539094, -0.0121803116, 0.00821955781, -0.00312786968, -0.0103324009, 0.0187440366, -0.0355275646, 0.001958851, 0.0122862849, 0.0107496716, 0.00102578884, 0.0124518685, 0.012730048, -0.0339379646, 0.00653060758, 0.0174061228, 0.0199097432, 0.00276027457, -0.00592126092, 0.0273676161, -0.00543775735, -0.00808709115, 0.00824605115, -0.0212211628, -0.0108092818, 0.00394419534, -0.0291161779, 0.00703398092, 0.00887526758, 0.0137897814, 0.00300202612, 0.00403692201, 0.0160019752, -0.00843812805, -0.00732540758, 0.00364945712, -0.00837851781, 0.00621931069, 0.00909383781, 0.0180419628, 0.00298215612, -0.00356004224, -0.019883249, 0.0197640285, 0.0166775547, -0.0351036713, 0.0100078583, 0.00735852448, 0.0377265103, -0.00925942138, -0.0240294561, 0.0327192694, 0.0294076037, -0.0122862849, -0.000298050029, -0.0103588942, -0.000529866724, -0.0235658232, -0.030149417, 0.0294076037, 0.034441337, 0.0244930889, 0.0147038018, 0.013683808, -0.00939851161, -4.35691218e-05, -0.00422568712, -0.00280829379, -0.0206515566, 0.00790163781, 0.0304143503, 0.00114749267, 0.0111272018, -0.00886202138, 0.00670612603, -0.00327192713, -0.0193533823, 0.0337260179, 0.014717049, -0.0333286189, 0.00445419224, 0.00064246339, 0.0178830028, 0.0121869352, 0.0204661023, 0.0210092161, 0.00720618758, 0.0309707113, -0.0184923485, -0.00354679557, -0.00946474448, 0.00296063046, 0.0251421761, 0.0302024037, 0.0101270778, -0.035077177, -0.00874280091, -0.0198170152, -0.00372231379, -0.00164838228, 0.000237198154, 0.019406369, 0.00382497557, -0.023155177, 0.00890176091, 0.00136109523, 0.00472906046, -0.00492444914, -0.00187440356, 0.00484828046, -0.00129817345, 0.0174326152, -0.014796529, -0.00719956448, -0.00698761735, 0.0230756961, 0.0315005779, 0.019724289, -0.0061365189, 0.030944217, -0.00740488758, -0.00477211224, -0.0185188428, 0.0125909587, 0.00800761115, -0.0108556449, 0.00250196457, -1.65971433e-05, -0.00502379891, 0.0101138316, 0.0150084756, -0.0238572489, 0.0258442499, 0.0262151565, 0.000479363807, 0.0190619566, 0.0211284366, -0.013763288, 0.0128823854, 0.00115577178, -0.0238042623, -0.00842488091, -0.00210456434, -0.00669287937, -0.0198700018, -0.00244732201, -0.0147567885, 0.0120743383, -0.0121339485, -0.00286955945, -0.0123525178, -0.0108026583, -0.0171941761, 0.0123657649, 0.032215897, 0.00539470557, 0.00264602201, 0.0459659398, -0.00855072401, -0.0055801589, -0.0241354294, -0.00523574557, -0.0111073311, 0.00285796868, -0.0182406623, -0.0236453023, -0.0244136099, 0.0191281885, -0.0111603178, 0.00412302557, 0.00319079123, -0.0371436588, 0.0132731618, -0.0336995237, -0.00197044201, 0.0118160285, -0.0018710919, 0.00679554092, -0.00120047934, 0.0240029637, -0.0182274152, -0.00863682758, 0.00404685736, -0.00921305828, 0.00796124805, 0.00941838138, -0.00876267068, -0.0136175752, 0.0131738121, 0.0122266747, -0.00516620046, -0.00558347069, -0.0187440366, 0.0226120632, -0.00758371782, -0.0121935578, -0.00113010639, 0.0308117513, 0.00241586124, -0.00855072401, -0.00490126712, 0.00193566945, 0.00438795891, 0.0024489779, -0.0122995311, 0.0147700356, -0.00846462138, 0.0155250952, -0.000612244476, 0.0260297041, 0.0182671566, 0.00672268402, 0.00687502092, 0.010345648, -0.0213933699, -0.00330173201, -0.0425218046, -0.0294605903, -0.00465951581, -0.00719294092, 0.0056993789, 0.0139090018, 0.00843150448, 0.00375211891, 0.0122200511, -0.00947799161, -0.0207442828, -0.0572785959, 0.00690151425, -0.0365343131, -0.0248639975, 0.00727242092, 0.0116570685, 0.018611569, -0.0218172632, 0.0150482152, -0.00146624062, 0.00574574247, -0.0390776731, 0.0321364179, -0.018134689, -0.0165715814, -0.0276590437, -0.00182804023, -0.0119551178, -0.00742475782, 0.0194858499, -0.0027470279, -0.00305335713, -0.019724289, -0.0244003627, -0.00751748448, 0.0223471299, 0.0160947014, -0.0166775547, -0.0130612152, 0.0190619566, 0.0251289308, 0.00892825425, -0.00778241782, -0.00176511856, -0.0156840552, -0.0240824427, -0.029672537, 0.0206383094, -0.0033629979, 0.017260408, 0.0122266747, 0.0272616427, -0.00790826138, -0.00806722138, 0.00341101713, -0.0226650499, 0.00101088639, -0.00629879069, -0.00136109523, -0.00436146557, 0.0100078583, -0.0213801228, -0.0154986018, 7.31154e-05, -0.00429854402, -0.00868981425, -0.0167172961, 0.00203005201, 0.0104052583, 0.00212112279, 0.0132996552, -0.0129949814, -0.00915344805, -0.00532847224, 0.011060968, 0.0167437885, -0.0160947014, 0.00933890138, -0.0164788552, -0.0154456152, 0.00945149828, 0.00982902758, -0.00452373736, -0.0049376958, 0.024108937, 0.0135579649, 0.0148230223, -0.0028265079, 0.0559009388, -0.010425128, 0.0285068303, 0.013286408, -0.00119302806, -0.0153131485, -0.00972305425, -0.00443763379, -0.00949123781, -0.00710683782, -0.0129221249, 0.0019803769, -0.00863020401, 0.0125975814, 0.0140149752, -0.0159357414, -0.0173266418, 0.00736514758, 0.0234333556, 0.00407666201, 0.00990850758, -0.0213536303, 0.00269735279, 0.014717049, -0.00052572717, 0.000147576167, -0.0145845823, -0.0274735894, -0.0016127819, 0.00542782247, 0.00669287937, -0.0054145758, 8.54306636e-05, -0.00495756557, 0.0129949814, 0.00994824804, 0.00716644758, -0.00613983069, 0.00803410448, -0.0119551178, 0.0108556449, 0.0206912961, 0.00930578448, 0.00678891735, 0.00418594712, -0.017339889, 0.0191149432, -0.0117166778, 0.0143593885, -0.0202806499, 0.00888851471, -0.0130943321, 0.00990850758, 0.0297255237, -0.013683808, -0.0170882028, -0.0176975485, -0.00116322306, 0.00780228758, 0.0128691383, -0.00593450759, 0.0210622028, -0.00346069201, -0.0143858818, -0.0112331752, 0.00885539781, -0.0185718294, 0.0142799085, 0.0176975485, -0.00990850758, 0.0102264276, -0.000164548459, 0.0116504449, -0.00721943425, -0.00206979201, 0.00678229425, -0.00107298011, -0.0208237618, 0.002058201, 0.00249202945, -0.00413958402, 0.0030252079, 0.00579541735, 0.00334643968, -0.00947799161, -0.00337790046, 0.00961708091, 0.00380510557, 0.0154986018, 0.0254733432, 0.0151012018, -0.0117233014, 0.0198170152, -0.00866332091, 0.0110146049, 0.019724289, -0.00281657279, -0.00122034934, -0.019724289, 0.0181479361, -0.00356666557, 0.0276325494, -0.000977769727, -0.0101005845, 0.0360574313, -0.0131473187, 0.0254865903, -0.0014538219, 0.00824605115, 0.00131224806, -0.00243241945, 0.00658028247, 0.0300434437, 0.0127499187, -0.000541457557, -0.00937864091, -0.030626297, -0.00216914201, -0.00423562201, -0.00969656091, -0.00625573937, -0.0163596347, -0.00196381868, 0.00694125425, 0.000251479709, 0.0016723919, 0.0122465445, -0.00688164402, -0.0235260837, 0.00916669425, 0.00257978868, 0.00744462758, 0.00409322046, -0.00584509224, 0.00259469124, 0.00780228758, 0.0251686703, 0.00246222457, -0.00237446534, -0.018611569, 0.00978928804, 0.0125843352, -0.0151276952, -0.00621268759, -0.00407003891, 0.0198964961, -0.0127830347, -0.0178565085, 0.0128426449, -0.0158960018, -0.00657034758, -0.0279504694, -0.0116305752, 0.00699424092, 0.0149289956, 0.00113093434, 0.00112182728, -0.0253673699, -0.0228240099, -0.0225590765, -0.0261091832, 0.0233671237, 0.00642794603, -0.00180817023, -0.0231021903, 0.0158827547, 0.0134056285, 0.00853747781, 0.0135778347, 0.0159622356, -0.0302288979, -0.00356004224, 0.00586827425, -0.00210787612, 0.00603716914, -0.015909249, 0.00808709115, 0.00146706856, 0.00430516712, 0.0231684223, -0.00280167046, 0.0124386214, -0.00578548247, -0.0166908018, 0.0102198049, -0.00428860867, 0.00441114046, -0.00978928804, -0.00559671735, -0.00639814092, 0.00506685069, 0.0187970232, -0.00742475782, -0.0209429823, -0.00387465046, 0.0027470279, -0.00201349356, 0.00790163781, -0.0326662846, -0.00582522247, -0.0100012347, -0.00696112402, -0.016465608, 0.0144918552, 0.0130612152, -0.00691476092, -0.00737839425, 0.0206250623, 0.0211814232, 0.000357453071, -0.043449074, 0.0101138316, 0.00625573937, 0.0211284366, 0.00391770201, 0.0433695912, -0.0105244778, 0.0166643094, -0.0121207014, 0.00733203115, -0.00126754062, -0.0163331423, 0.0289042313, -0.00611664914, 0.0015531719, 0.000396779127, -0.000972802227, -0.00229664124, 0.00426542712, -0.0276855361, 0.00886202138, -0.00570600247, -0.0405613, 0.0016723919, 0.0256852899, -0.00622262247, 0.0151012018, -0.00662002247, 0.0228637494, -0.000674338196, -0.0185188428, -0.00722605782, -0.035077177, -0.0133923814, -0.0129618654, -0.0142136756, 0.0182406623, -0.00868981425, -0.00690151425, -2.41130765e-05, 0.0104052583, 0.0196050685, -0.014081208, -0.0110477218, 0.020360129, -0.0192606561, 0.0221616756, 0.00322225201, 0.0114782378, -0.0250759441, 0.00280829379, -0.00410315534, -0.0130744614, -0.0154588623, 0.0159357414, 0.00516951224, 0.0062093758, 0.0185453352, -0.00710683782, -0.00153412973, 0.010027728, 0.0030252079, 0.00348718534, -0.00306660379, -0.00407666201, 0.0210754499, -0.00843812805, -0.00275199534, -0.0103390245, 0.000724427169, -0.0275000837, 0.00305170123, 0.00477873581, -0.00185784523, 0.00782215782, 0.0303878579, -0.00686839735, 0.0145978285, 0.0149157485, 0.0248904899, -0.00664320402, -0.0152469156, -0.00272881379, -0.0405083112, 0.00994824804, 0.00418594712, -0.0189029966, -0.0146640623, 0.00098439306, -0.0055735358, -0.00317588868, -0.00935214758, 0.0141871823, 0.014955489, 0.00842488091, -0.0174458623, 0.0236717965, 0.00938526448, -0.0110212285, -0.0158960018, -0.029195657, -0.0133592654, 0.00194229279, 0.000846958836, 0.00375543046, 0.0177372899, 0.014001728, -0.0287452713, -0.00493107224, -0.0265463237, -0.0111934347, -0.00483172247, -0.00371900224, -0.00349380868, 0.0152204223, -0.0176180694, 0.00597424759, -0.0183466356, -0.011855768, 0.0110344747, 0.00523243379, 0.00423893379, -0.0103986347, 0.0147302952, -0.0210622028, 0.0123127783, -0.000601895503, 0.0222941432, 0.0136970552, 0.00970980804, -0.0159622356, -0.0135513414, -0.00974292494, 0.000452870474, -0.022042457, -0.00419588201, -0.00331663457, -0.0206648018, -0.0284273513, -0.000301568682, 0.0142931556, -0.00204495434, -0.0150217218, -0.0123061547, -0.0190354623, -0.0105311014, 0.0208635032, -0.0146508152, 0.014240169, -0.0202409085, 0.0261886641, 0.00776254758, 0.0137897814, 0.0269172303, 0.00828579068, 0.00712008448, -0.00645112759, 0.00607690914, -0.0179889761, 0.0198964961, 0.0149157485, 0.00183300779, -0.00804735068, -0.0142931556, -0.0122597916, 0.0117895352, -0.0294340979, -0.0203071423, 0.00633521937, -0.00244401023, -0.0343088694, -0.000316057238, 0.0109881116, -0.00258144457, 0.0134784849, -0.00246553612, -0.00902098138, 0.00811358448, 9.32441253e-05, 0.0140944552, -0.0286657903, 0.0238969903, -0.00182804023, -0.0123525178, 0.00443763379, 0.0163993761, -0.00666969735, 0.00570931425, 0.0242281556, -0.0200024694, 0.00668956758, -0.0157767814, 0.0240162089, 0.00163016818, -0.0221616756, 0.0100873383, 0.0173531361, 0.00243241945, -0.0014339519, 0.0144388685, 0.028400857, -0.00619944092, 0.0162139218, -0.00999461114, 0.00847124401, -0.0104847383, 0.0195918232, -0.00223371945, -0.00824605115, -0.0243208837, -0.0191414356, 0.0174326152, 0.0282948837, -0.000110526889, 0.0128558921, -0.00331166713, 0.0190222152, -0.0149025023, 0.0223736223, -0.00961708091, -0.00365939224, -0.0231021903, 0.00882890448, 0.00600736402, 0.00235293945, 0.0120014818, 0.00900773425, 0.00197540945, -0.000202736119, -0.00796124805, -0.00606697425, 0.00753073115, 0.00681541068, 0.0189427361, 0.00982902758, 0.021565577, -0.00752410758, -0.00283478713, 0.00516620046, -0.0287982579, -0.0019803769, -0.0198037699, -0.0258442499, 0.0032239079, 0.00433497224, 0.00751748448, -0.0231816694, 0.0103324009, 0.0180154685, 0.0133923814, -0.00568613224, 0.00110361306, -0.0249964632, 0.00101088639, 0.024903737, 0.0220689494, -0.0170484614, 0.0130347218, 0.015670808, 0.0111007085, -0.0170882028, -0.00147700356, 0.0128558921, 0.00403029891, -0.0112795383, -0.0129353721, -1.6351356e-05, 0.00814007781, -0.00460984046, 0.0202276632, -0.0249434765, 0.0125777116, 0.0205588285, -0.0321894027, 0.0031841679, -0.0226120632, 0.0105973342, 0.0255660694, -0.027447097, 0.0202276632, -0.00544769224, 0.0143064018, -0.0147832818, -0.00311793457, -0.00528873224, -0.00301527278, 0.0171411894, 0.0122332983, -9.35546e-05, 0.00106470101, -0.0176710561, 0.00917994138, -0.0124187516, 0.00495756557, 0.00683528092, 0.0153926285, -0.00250030868, 0.00436146557, 0.0242016632, -0.0114981085, -0.0144918552, 0.00980915781, -0.0247580241, 0.0459129512, -0.0102727916, 0.0126638152, 0.0179359894, 0.0191414356, -0.0053748358, 0.0114384983, 0.0014935619, -0.000333857432, 0.00543444557, -0.0067193727, 0.00168315484, -0.020519089, -0.0212344099, -0.0159489885, 0.00379517046, 0.00313780457, -0.0132400449, 0.0123525178, 0.015114449, 0.0284803379, 0.00735852448, -0.0107960347, 0.00470587891, -0.0123856347, -0.00965019781, 0.00202508434, -0.0213271361, -0.00722605782, -0.00655047735, 0.0128691383, -0.0202806499, -0.00888189115, -0.011776288, -8.59610464e-06, 0.0058185989, 0.00954422448, 0.00839176401, 0.0122730378, 0.0302288979, -0.00386471557, 0.0228107627, -0.000473568391, -0.00847786758, -0.00729229115, -0.0189162418, 0.0018810269, 0.0240559503, 0.00680878758, 0.00783540402, 0.00732540758, -0.0227577761, 0.000635840057, 0.000698761782, 0.0142666623, -0.0163463894, -0.0174591094, 0.020042209, -0.0120610911, -0.00618288247, -0.0194858499, 0.00509996712, -0.000285010348, 0.00767644448, -0.0126770614, 0.00490126712, 0.0167305414, -0.0175650828, -0.0245593227, -0.0301229246, -0.0234068632, 0.0268509965, 0.00526555069, 0.0206383094, -0.0114716152, -0.0066465158, -0.0149025023, 0.0130214747, 0.0176843032, -0.0107364245, -0.0108490214, 0.0118888849, -0.00526886247, 0.00382828712, 0.017657809, -0.0285068303, -0.00707372092, -0.017975729, 0.0137765352, 0.012491608, 0.0376735255, 0.0177770294, 0.0062822327, 0.00296063046, 0.000938857615, -0.0103655178, -0.00638489425, -0.00188930612, 0.00641469937, -0.00459990557, 0.030308377, 0.00267251534, 0.00495756557, 0.000560913642, 0.00313614868, 0.00228173868, -0.0284273513, 0.00479529379, 0.00305666868, 0.00481516402, -0.00299540279, 0.00218073279, 0.0258177575, -0.0144918552, -0.00186943612, -0.00430516712, -0.0223073903, 0.012332648, 0.00394088402, 0.00154075306, -0.0115246018, -0.00168481062, -0.00295235123, -0.00857059471, 0.00928591471, 0.00173365767, -0.00380179379, 0.00121786562, 0.0166378152, -0.00426873891, -0.0185983218, 0.014558089, -0.0321099237, 0.0146110756, -0.00445750402, 0.0118358983, -0.0313416161, -0.0267450232, 0.0163331423, 0.0110675916, -0.0207707752, 0.0135513414, 0.0123922583, 0.00477211224, 0.0103390245, -0.00288115046, 0.021949729, 0.000162996119, 7.40985488e-05, -0.0118027814, -0.014717049, 0.00133211806, 0.0107496716, -0.00309972046, 0.00359315891, -0.00874942448, -0.00155731151, 0.00371237891, -0.00590801425, 0.0129751116, 0.0139487414, 0.00745125115, 0.0128293987, 0.0107231783, 0.00407335069, 0.00634846603, 0.00743800448, 0.0243208837, 0.00502048712, 0.0100078583, -0.0336995237, -1.0122576e-05, -0.00548412092, 0.00713333115, -0.00134867639, -0.00654054247, -0.0107231783, -0.0111603178, -0.00048722903, 0.00886864495, -0.0296460446, -0.0217377823, 0.0111205783, 0.00127333601, -0.00604710402, -0.00139255601, 0.0123194018, -0.0104648676, 0.00183963112, -0.0112861618, -0.0119087547, -0.00861695781, -0.0175120961, 0.00100012345, -0.00678891735, 0.000688826782, -0.0060504158, -0.000600239669, 0.00304342201, -0.0298050046, -0.0172074214, -0.00806059781, 0.0144918552, -0.00337127713, 0.0243076365, -0.0057722358, 0.00449062046, 0.00644450402, -0.00647099735, -0.0055801589, -0.014001728, -0.00847786758, -0.00846462138, -0.00665645069, -0.0112464214, 0.023314137, 0.002038331, 5.83681322e-05, -0.0250759441, 0.0289837103, 0.0117829116, -0.00242745201, 0.00171544356, -0.00415945379, 0.00916007161, -0.00309309713, -0.0053748358, -0.00849773735, 0.00490789069, -0.0242016632, -0.00912033115, -0.0018710919, 0.00515626557, 0.0101005845, 0.00980915781, 0.00388458557, -0.0053748358, 0.00998798758, -0.00917994138, 0.00464295736, -0.00398062402, -0.00594775425, 0.0162669085, 0.00757047115, -0.0171279423, 0.00821955781, 0.0194726028, -0.0265993103, 0.001720411, -0.00893487781, 0.00163513562, -0.0171279423, -0.00667632092, -0.0209032428, 0.0189692285, 0.00971643161, 0.0164921023, -0.00316595379, -0.00978928804, 0.00961708091, -0.00491782557, -0.00777579425, -0.0197110418, 0.00457341224, 0.00918656494, -0.0295400713, -0.00440782867, 0.00240758201, -0.0106238285, -0.000223330557, 0.0289042313, -0.0229299832, -0.00459659379, 0.00123607973, 0.0211946685, -0.00954422448, 0.0147038018, 0.0153396418, 0.00263111945, 0.00339777046, -0.00736514758, -0.00184294279, -0.00941175781, 0.0153661352, 0.00687502092, -0.00768306758, 0.00236121868, 0.0149422418, -0.0121008316, -0.00721943425, -0.015750289, 0.00374218379, 0.00396406557, 0.0138295218, -0.000623421336, -0.00390445557, 0.0310766846, -0.0277120303, 0.0254998375, -0.0102926614, -0.0200157166, -0.00732540758, -0.0111934347, -0.000692966336, 0.00380510557, 0.00955084804, -0.0115510952, -0.00271059945, -0.0123061547, 0.029672537, -0.000885870948, -0.00100757473, -0.0110013578, -0.00878254138, -0.0228107627, 0.0141871823, -0.0112927845, -0.00251355534, 0.00943825115, 0.0120014818, -0.00416607736, -0.0113457711, 0.00130396895, 0.0100674676, -0.0185983218, 0.00517944712, -0.00498737069, 0.0144653618, -0.00486483891, -0.0210357085, -0.0238175094, -0.0181479361, -0.0100674676, -0.00543775735, 0.0147435423, -0.00856397115, -0.00807384402, -0.00226518023, 0.00435484201, -0.0144388685, -0.00317754457, 0.0144521156, -0.0193533823, -0.00775592448, -0.00369582046, -0.0123988818, -0.0132665383, 0.00406010402, 0.00994162448, -0.0179492366, 0.0157767814, 0.0108026583, 0.00255163945, -0.0189957228, -0.011140448, 0.00404354557, -0.00784202758, 0.0265198294, -0.00240261457, -0.0130347218, 0.0148362685, -0.0128625147, 0.000801423448, 0.0154986018, 0.0237247832, 0.00393426046, -0.0264271032, -0.00907396805, 0.0138030285, -0.0244136099, 0.010584088, -0.0244401023, -0.0159489885, 0.00318747968, 0.0172471628, -0.00273046945, 0.0102860378, -0.00252017868, -0.0111868111, -0.00792150758, 0.0183201432, 0.0333021246, 0.0238042623, -0.00875604805, 0.00283478713, -0.0132135516, 0.0207840223, 0.0143064018, 0.0268509965, -0.0115775885, -0.0107496716, -0.00161857728, 0.020519089, -0.00357991224, 0.0100211045, -0.000883387169, -0.00941175781, -0.00566626247, -0.0181081966, -0.021883497, -0.00555697735, -0.00428860867, 0.0406407788, 0.0268509965, 0.00896799471, 0.0115444716, 0.00224034279, 0.00301361713, 0.000205219869, 0.0166775547, -0.00589476759, -0.0142136756, -0.000357246085, -0.0165185947, -0.00586165069, 0.0149952285, 0.000363662431, 0.0157767814, -0.000306743168, 0.00116405101, -0.00598749425, 0.0180684552, -0.000314194418, -0.00861695781, -0.00182638445, 0.000514550251, -0.0234333556, 0.0151409423, 0.00849111471, -0.00670612603, -0.00929916091, 0.0110212285, 0.0206118152, 0.0013544719, 0.0158695094, -0.00999461114, -0.00336962123, -0.0051363958, -0.00248375023, 0.0150747085, 0.00446412712, -0.00597424759, 0.017419368, -0.00548412092, 0.00530529069, -0.0065206727, -0.0139619885, 0.0223073903, -0.00951773115, -0.00761021115, -0.0157370418, 0.0109483711, -0.00487477379, -0.0136705618, -0.0171676818, -0.00992175471, -0.00657034758, 0.0110543445, 0.00637495937, -0.000882559281, -0.0055337958, -0.00292254612, 0.00311296713, 0.00141987728, 0.0114517445, -0.0060901558, -0.0102330511, 0.00584509224, 0.0214198623, 0.00940513425, -0.00250693201, 0.0122995311, 0.00467276247, 0.0181611832, 0.0134917321, -0.00806722138, 0.00610009069, 0.00215258356, -0.00369250891, 0.00248540612, -0.00794800092, 0.00771618448, -0.0178300161, -0.00980915781, 0.00529204402, 0.0378854722, 0.0318449922, 0.00913357828, 0.0187970232, 0.00586827425, -0.00963032804, -0.00665645069, 0.0106238285, -0.00542782247, -0.00402367534, 0.00614645425, -0.00476548914, 0.0168497618, -0.0283213779, 0.0105907116, 0.010107208, 0.00719956448, -0.0058119758, 0.0153131485, 0.00533840759, 0.0122332983, -0.017339889, 0.0177107956, 0.00544106914, -0.001720411, 0.00528873224, -0.00160864228, 0.011060968, -0.00303017534, -0.0158562623, -0.00221550534, -0.0146773085, 0.0176445618, -0.010663568, 0.00761021115, -0.00701411068, -0.0172869023, -0.00995487161, 0.00136606267, 0.0116570685, 0.000251479709, 0.0194593556, -0.0142931556, -0.00377198891, 0.00596762402, -0.0238969903, -0.00110609678, 0.00908059161, -0.00104648678, 0.0122730378, -0.0060570389, 0.002117811, 0.00343088713, 0.00518607069, -0.000860205502, 0.0121405711, 0.0229432303, -0.0110543445, -0.00294738379, -0.0192076694, 0.00298877945, 0.0110477218, -0.00913357828, 0.0111205783, 0.0060967789, 0.0171544347, 0.00611002557, -0.00766319782, -0.00512314914, -0.00527879735, -0.0159357414, -0.0303878579, -0.00631534914, -0.00874942448, -0.00313614868, -0.0125445947, -0.0124584921, -0.00541788759, 0.00481847581, -0.00529866712, 0.0153396418, -0.00346400379, -0.0171941761, 0.00839838758, -0.00338949123, -0.0295400713, 0.00450717891, 0.016704049, -0.00115577178, -0.00877591781, 0.00731878448, -0.0348917246, -0.00547418557, -0.00964357425, -0.00730553782, -0.015511849, -0.00746449782, -0.0199892223, -0.00496750046, 0.00577554759, -0.0105112316, 0.00684852758, 0.00222047279, 0.00918656494, -0.0110079814, 0.0227180365, 0.00366270379, 0.00552054914, -0.0196050685, -0.00788176805, 0.00400049379, -0.00500724046, 0.00829241425, -0.0414620712, -0.0253011361, 0.0101668183, -0.00401705224, 1.78390201e-05, -0.000958727614, 0.0120610911, -0.0143461423, 0.0187440366, 0.00349380868, -0.010743048, -0.00550399069, 0.0222544037, -0.027923977, -0.0056927558, -0.00431179069, -0.0109881116, 0.0122796614, 0.0237247832, -0.00370906712, 0.0156310685, 0.00976279471, 0.0100674676, 0.0208105166, -0.00209131767, 0.00721281115, -0.0197772756, 0.0130016049, -0.025698537, -0.00615307735, -0.00294903945, 0.00904085115, -0.0101204542, -0.0237777699, 0.0179624818, 0.0119021311, 0.0122929085, -0.000252928585, -0.0103721414, -0.0149422418, 0.00743138092, 0.0321364179, 0.00744462758, -0.0220027156, -0.0233273823, -0.0152071752, -0.00889513828, -0.00165748934, 0.0110278511, 0.0173133947, 0.00613320759, -0.0166643094, 0.00872293115, -0.0153131485, 0.0289572179, 0.00910046138, 0.00393757224, 0.00206151279, -0.0346003, 0.0171146952, -0.00456347736, 0.000847786781, 0.000202115189, -0.0111536952, 0.00709359115, -0.00526886247, 0.00525230402, 0.00951773115, -0.00128492678, 0.00843812805, -0.026652297, -0.0188897494, 0.00157883728, -0.00982240494, -0.0178035218, 0.0134056285, -0.0149687352, 0.010822528, -0.0207045432, 0.013445368, -0.00576561224, -0.0243208837, -0.0251421761, -0.0377795, -0.0177107956, -0.00580204092, 0.00230160868, 0.0225458294, 0.0264271032, -0.0202144161, 0.00401705224, 0.024267897, -0.00799436402, 0.00991513114, 0.0143064018, -0.00571593735, -0.000791902421, 0.0112861618, -0.00818644091, -0.0140944552, -0.0356600322, -0.0286922846, -0.013922248, -0.00623918092, -0.0259104837, -0.0272616427, 0.0147038018, 0.00108291511, 0.000777413836, -0.00642794603, 0.015114449, -0.00427536201, -0.0145448418, 0.0290896837, -0.00794137735, -0.00505360402, 0.00105476601, 0.00382497557, 0.000240716807, -0.0222544037, -0.00706709735, 0.0185983218, 0.0241221823, -0.0137765352, 0.0190222152, -0.0195520818, -0.00022560732, -0.00721943425, -0.014796529, 0.00622262247, 0.018929489, -0.00349712046, 0.0014339519, 0.0314211, 0.00303514278, -0.00726579782, 8.71382435e-05, -0.00302024046, 0.00864345115, 0.0212609023, -0.0135314716, 0.00801423471, 0.0129088787, 0.0240427032, -0.00786852092, -0.00471912557, -0.00713995425, 0.0252481494, 0.0154853556, -0.00103986345, -0.0178697556, -0.0172339156, 0.0215390828, -0.00943825115, 0.00291592279, -0.0061762589, 0.0152999023, -0.00149438973, -0.011776288, 0.0145183485, 0.0123061547, 0.0032835179, 0.00878254138, -0.00295566279, 0.0060901558, -0.0214198623, 0.0124319987, -0.00937864091, 0.0106238285, -0.00970980804, 0.00144223101, -0.0178830028, -0.00917331781, -0.0353421122, -0.0162536614, 0.0388657264, -0.00146458473, 0.00275530713, -0.00478204712, -0.0220689494, -0.0131804347, 0.0109881116, -0.0122200511, -0.011537848, -0.0273941103, -0.0140944552, 0.00753073115, -6.6388573e-05, 0.0122399218, -0.00717969425, -0.00067599403, -0.00234631612, -0.00833877735, -0.00702735735, -0.0055337958, 7.41891063e-06, -0.026016457, 0.0205985699, 0.00552717224, 0.016306648, -0.00750423782, 0.00054808089, -0.0120412214, 0.0117365485, -0.00745125115, -0.00459328247, -0.00460984046, 0.0135380952, 0.0100144809, 0.000489298836, -0.0117630418, 0.0145315956, 0.0211284366, 0.00212609023, 0.0115643414, -0.012173688, 0.0289572179, -0.0019108319, -0.00184459856, -0.0100740911, -0.00599080557, -0.0137897814, 0.0256720427, 0.0301229246, 0.00415945379, 0.00610340247, 0.0115179783, 0.0204925966, -0.00756384758, 0.0441379, 0.0013644069, 0.0102330511, -0.00715320092, -0.00224199868, -0.00990850758, 0.00806722138, -0.0161741823, -0.00651073735, 0.0201746766, -0.000645775057, -0.010902008, -0.00708034448, 0.000875935948, -0.00456347736, 0.00590139069, -0.00529204402, -0.0157900285, -0.00847124401, -0.0152071752, -0.0110013578, 0.00910708494, 4.21720106e-05, 0.0163331423, -0.00551061425, 0.00552717224, -0.0158165228, -0.00138096523, -0.0174458623, 0.0238572489, 0.0178962499, -0.0291426703, 0.017816769, 0.0145448418, 0.0127101783, 0.0229034889, -0.0217112899, 0.0240559503, 0.00325868046, -0.0100939609, 0.00515626557, 0.00571924914, -0.0103986347, -0.00172537856, 0.0108490214, -0.0109947352, 0.0122200511, 0.0209562294, -0.0300434437, 0.0232214089, -0.0113987578, 0.0233538765, 0.0180684552, 0.00372231379, 0.011458368, 0.00340439379, 0.00618950604, -0.00235956279, -0.00243407534, 0.00310137635, -0.00416276557, -0.0211814232, -0.00550730247, 0.0023098879, -0.00453698402, 0.00656372402, -0.0138692614, 0.0109616183, -0.0317655094, -0.0108622685, -0.00571593735, 0.041117657, -0.00614976557, 0.00514301891, 0.0239234827, -0.0212873966, -0.00313283713, 0.00358322379, 0.0397400036, -0.0052953558, 0.0019307019, 0.00492444914, 0.0122862849, 0.0105244778, -0.00939851161, 0.0198700018, 0.00899448805, 0.0361899, -0.011855768, 0.00373224891, 0.0249832161, 0.0150084756, -0.0066001527, 0.00518607069, -0.0133923814, 0.0063683358, -0.0138692614, -0.00929253828, 0.0219762232, 0.00626567425, 0.00689489068, 0.019565329, -0.028718777, 0.0199362356, 0.0167702828, -0.0160814561, -0.00523905735, -0.00473568402, 0.0205323361, 0.0134387454, -0.00637164759, 0.00340770534, 0.00324046635, -0.0150084756, -0.0198964961, 0.00707372092, 0.0167172961, -0.00474230712, -0.0218570028, -0.021790769, 0.0170484614, 0.00782878138, 0.0145051023, -0.000122221216, 0.00809371471, -0.0179359894, 0.00391770201, 0.0326662846, 0.0141474418, 0.0157767814, 0.0191944223, 0.00488139736, 0.00693463068, 0.001541581, 0.0117696645, 0.0215258356, -0.00924617425, -0.00698761735, -0.0210622028, 0.000359522848, 0.0193533823, 0.00248540612, 0.0196315628, 0.0189559832, -0.00137930934, -0.00210787612, 0.0140944552, 0.00595768914, -0.000986876781, 0.0157635361]
28 Oct, 2020
Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm 28 Oct, 2020 First Come First Served Scheduling Algorithm: First Come First Served (FCFS) is the simplest and non-preemptive scheduling algorithm. In First Come First Served (FCFS), the process is allocated to the CPU in the order of their arrival. A queue data structure is used to implement the FCFS scheduling algorithm. The process which is at the head of the ready queue is allocated to the CPU, when CPU is free. Then the process which is running is removed from the queue. When a new process enters into the ready queue, it is placed onto the tail of the ready queue. Round Robin Scheduling Algorithm: Round Robin (RR) Scheduling Algorithm is design for the time sharing system. This algorithm is the preemptive scheduling algorithm. In Round Robin Scheduling Algorithm a small unit of time called as time quantum or time slice for which the CPU is provided to each job. CPU is allocated to the each job for the duration equal to the time quantum in cyclic order. This time quantum, time slice or time interval is generally of the order of 10 to 100 milliseconds. Ready queue in the Round Robin Scheduling Algorithm is treated as the circular queue. The difference between First Come First Served (FCFS) and Round Robin(RR) scheduling algorithm are as follows: S.No. First Come First Served (FCFS) Round Robin(RR) 1. First Come First Served (FCFS) is the non-preemptive scheduling algorithm. Round Robin(RR) is the preemptive scheduling algorithm. 2. FCFS has the minimal overhead. While RR has small overhead as it is necessary to record the time elapsed and then switch the process which causes an overhead. 3. First Come First Served Scheduling Algorithm provides high response time for the processes. In Round Robin Scheduling Algorithm, for the short processes there is very low response time. 3. FCFS is inconvenient to use in the time sharing system. It is mainly designed for the time sharing system and hence convenient to use. 5. Average waiting time is generally not minimal in First Come First Served Scheduling Algorithm. In Round Robin Scheduling Algorithm average waiting time is minimal. 6. The process is simply processed in the order of their arrival in FCFS. It is similar like FCFS in processing but uses time quantum. 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!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum/Algorithm for Dynamic Time out timer Calculation/Difference between Round trip time (RTT) and Time to live (TTL)/Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms/Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm
https://www.geeksforgeeks.org/difference-between-first-come-first-served-fcfs-and-round-robin-rr-scheduling-algorithm?ref=asr10
PHP
Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm
What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, jQWidgets jqxTreeMap width Property, Difference between Flow and TypeScript, jQWidgets jqxTree destroy() Method, jQWidgets jqxTree collapseAll() Method, jQWidgets jqxScrollView buttonsOffset Property, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, jQWidgets jqxListBox enableHover Property, Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxSlider buttonsPosition Property, Difference between Round trip time (RTT) and Time to live (TTL), jQWidgets jqxSlider rtl Property, jQWidgets jqxTooltip opacity Property, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, jQWidgets jqxToolBar height Property, PHP, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, Node.js date-and-time Date.transform() Method, TypeScript Optional Parameters, jQWidgets jqxToolBar theme Property, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, Steps to Diagnose and Resolve a Slow Network, How to use Optional Chaining with Arrays and Functions in TypeScript ?, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, jQWidgets jqxScrollView showButtons Property, Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms, jQWidgets jqxScrollView disabled Property, jQWidgets jqxSplitter destroy() Method, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, jQWidgets jqxTree collapseItem() Method, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), jQWidgets jqxSortable opacity Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, jQWidgets jqxSlider height Property, jQWidgets jqxSwitchButton onLabel Property, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, jQWidgets jqxToolBar tools Property, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTree width Property, jQWidgets jqxTree clear() Method, TLS Handshake?, Algorithm for Dynamic Time out timer Calculation, Adhoc TCP, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, jQWidgets jqxTabs position Property, Differences between Wireless Adhoc Network and Wireless Sensor Network, jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, Impact of Three-way Handshake and Slow Start Algorithm, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, How to Sort an Array Having Optional Properties in TypeScript ?
GeeksforGeeks
[-0.0359562747, -0.0148484809, -0.0244113188, 0.0286305603, -0.0360258222, -0.015787378, -0.00771981897, 0.00733730523, -0.0372081362, -0.0116840508, 0.0198675226, -0.0203311741, 0.00280365045, 0.000598764105, -0.0341943949, 0.0475707762, 0.0319224931, 0.00218641269, 0.0157989692, -0.0234608315, -0.0119042853, 0.035330344, -0.00730253151, 0.00362518523, -0.0266832188, -0.00403377926, -0.0183606502, -0.00731412275, -0.0322238691, -0.0223944299, 0.0316674858, 0.0390163809, 0.0182679202, -0.0482662544, 0.00599850807, 0.0107451538, -0.0160307959, -0.00766765792, 0.0284450985, 0.0103800269, -0.0386454612, 0.0360026397, -0.0195661485, -0.0258254614, -0.0261732, 0.00155033905, 0.0103220707, -0.000648027228, 0.00384542043, -0.0280509945, -0.00492631085, 0.0124143036, 0.0741844475, 0.0356085338, 0.00343972421, -0.00673455698, -0.0108668627, -0.0116492761, -0.044557035, -0.0238085706, 0.0387150086, -0.0183838326, -0.0425169617, -0.0385990962, 0.0167030916, -0.003170226, -0.046666652, 0.0369763114, 0.0122752078, -0.0485908128, -0.0317602158, -0.0164712649, -0.0307633635, 0.00499585876, -0.0173637979, -0.00217047473, 0.0601357669, 0.00367734628, -0.0112377843, -0.0107277669, -0.0489153676, 0.0200413913, -0.0373008661, -0.0207484625, 0.0414737426, -0.0284450985, -0.011939059, -0.0279118977, 0.0609703436, -0.0217221323, -0.0158453342, 0.0364199281, 0.0134343393, -0.00782993622, 0.00430907309, -0.0271468703, 0.00840950292, -0.0147789326, 0.0242722239, 0.00526535697, -0.0115623418, -0.026150018, -0.0209918804, -0.0122636165, 0.0191952251, 0.0134459306, -0.0290478468, 0.0168537796, 0.007499584, 0.0436297283, -0.0283291861, 0.0126693128, -0.0175840314, 0.02081801, -0.0196125135, -0.0146630192, 0.0125765819, -0.0389700159, -0.000365669926, 0.00550008146, -0.0125302169, 0.0322702341, -0.00989319105, 0.0421460383, -0.0510018058, 0.0321079567, 0.0574929453, 0.00509148743, 0.0102177486, 0.00143877254, 0.0239476673, -0.00584202539, -0.0152657684, -0.00912236888, 0.00651432155, -0.00245156419, -0.00236028247, 0.0378572494, 0.0333134532, 0.0194270518, -0.00626510847, -0.0197747909, -0.00174594251, 0.00675773947, 0.0165060386, 0.0313429274, -0.0276337061, -0.0227189865, 0.0126924952, 0.0372313187, -0.0355389863, -0.0524854958, 0.00463652797, -0.00719241379, -0.0151730375, -0.0202036705, 0.0112493755, -0.0270541403, 0.0119506503, -0.0295578651, 0.0081371069, -0.00557542499, 0.0066070524, -0.00169523049, -0.0205166359, 0.0139559489, 0.00982943922, -0.00214439421, -0.0425865091, 0.0231246836, -0.0440470167, 0.0329193473, -0.0165176298, 0.0323166, 0.00498426752, 0.00701274863, 0.00863553304, 0.010409005, -0.00868769456, 0.00721559674, -0.0387845561, 0.0147905238, -0.00689683529, 0.0104901446, 0.0124606686, 0.0133763831, -0.00492920866, -0.00443368, -0.019438643, -0.0202036705, -0.000772996165, 0.0127620427, 0.0264282096, 0.0302301627, 0.0308560934, -0.0109422058, -0.0104959402, -0.022695804, 0.033383, 0.00638102135, -0.0182331465, -0.00422503613, -0.0216525849, 0.0205514096, 0.025361808, -0.018256329, 0.0636595264, 0.00109175744, 0.0275873411, 0.0164133087, -0.0221626032, -0.00487994542, 0.00690842653, -0.00891952, 0.00680410489, -0.0265209395, 0.0164133087, 0.0313429274, 0.00471476931, -0.0213743933, 0.0160192046, -0.00752276648, 0.0157757867, -0.0322702341, -0.0161235258, -0.0267064013, -0.00465391483, -0.0250604339, -0.0145471059, -0.00581014901, -0.00729094027, 0.0331975408, 0.00331801525, -0.00190387422, -0.0550355874, -0.00671137404, -0.0164596736, 0.00403667707, -0.0378804319, 0.0262659304, -0.00832256768, 0.0222901087, -0.0397118628, -0.00521609373, 0.0223017, 0.0422387682, 0.00418446632, 0.016726274, -0.00239650533, -0.0194734167, -0.0254545379, -0.000707432744, -0.03118065, -0.00487125199, -0.0156482812, -0.0104901446, -0.00640420429, -0.0262659304, -0.00225885841, 0.00466260826, 0.0198907051, 0.0300215185, 0.00204007234, 0.0129590956, -0.0148948459, -0.00266600354, 0.0277032536, -0.0180360936, 0.0072619617, 0.0129127307, 0.000956283882, -0.0218612291, -0.0515581891, -0.0103916181, 0.000956283882, -0.0373240486, -0.0297201443, 0.0194966, 0.0986653119, 0.00094034581, -0.00106640137, 0.00996853504, 0.0210266542, -0.031435661, -0.0351448804, 0.0101308133, 0.00197197334, -0.00816028938, -0.029650595, 0.0156250987, -0.0434210822, -0.0181404147, -0.00578406872, 0.0111044841, 0.0539691858, 0.013225696, 0.00574929453, 0.00381934, 0.00518711563, 0.0504454225, 0.00502773514, -0.0426792391, 0.0416360199, -0.0297896918, -0.0228349, -0.0060332818, -0.0178274494, -0.0131793302, 0.0183258764, -0.0121708857, -0.030438805, -0.0437224582, -0.0152425859, -0.022695804, 0.0161003433, -0.00330932182, 0.00379036157, -0.0163437612, -0.00959761254, -0.0446265824, 0.0193690956, -0.0133068347, -0.0290246643, -0.00452930806, 0.0104148006, -0.0399668701, 0.0140254973, 0.0295115, -0.0192763656, 0.00388019439, -0.0148948459, -0.0116724586, -0.0273786969, -0.0205398183, 0.0365822054, -0.00105698348, -0.0296969619, 0.0376022421, 0.0119738337, -0.0140486797, -0.0100033088, 0.0207600538, 0.00612021703, 0.033846654, -0.0201225318, 0.00195603515, -0.00794585, 0.00195603515, 0.0101655871, 0.00061832444, 0.000724457495, 0.00329483254, 0.0385527313, -0.0213048458, 0.00116710097, -0.0298824217, -0.00503353076, -0.00453220587, -0.0130286431, -0.00523348106, 0.0384136327, -0.0281669069, -0.0093657868, 0.0222321507, -0.0372545, -0.0339162, -0.00624192553, -0.00697217882, -0.00508858915, 0.0312501974, -0.0102061573, 0.0122636165, 0.0596257485, -0.0348666906, -0.0190329477, 0.008832586, -0.0485444479, 0.00466260826, -0.00697217882, 0.0116608674, 0.00987580419, 0.0251531638, -0.0239708498, 0.0470143929, 0.0165176298, -0.0294419527, 0.0406391658, -0.056101989, -0.013225696, 0.0372081362, -0.00772561459, 0.000764302618, -0.00865871552, 0.0325484276, -0.0429110676, -0.00144529273, -0.0016517631, -0.0114985891, 0.0272396021, -0.0199138876, 0.00667660031, 0.0360953696, -0.0290710293, 0.062314935, -0.0602748618, 0.00537257688, -0.023878118, 0.00541604403, -0.00262543396, 0.0284450985, 0.00416707946, 0.00535518955, 0.0302997101, 0.0121129295, 0.00595793827, 0.0293260384, -0.00694320071, 0.0478489697, -0.0315052085, -0.0541082807, -0.0844775364, 0.00300794747, -0.0247590598, 0.0138400355, 0.0337075591, 0.035376709, 0.0158453342, -0.00260949577, 0.0142341405, -0.00703013549, -0.0182447378, 0.00100699591, 0.0020560103, 0.0274946112, -0.00773720583, -0.00935419463, 0.0465507396, 0.0165987704, -0.0218380466, 0.0137704881, 0.00315863453, 0.0771981925, -0.00516683096, -0.0343334898, -0.0515581891, -0.0204934534, -0.0259877387, 0.0229971781, -0.0226494391, -0.00570292911, 0.000809219, -0.0585593469, -0.00097946648, 0.0387613736, 0.0247358773, -0.00301953871, 0.0503063276, -0.0419373959, 0.0105191227, 0.00562179, 0.0262891129, 0.0156830549, 0.0307169966, -0.00882679, 0.0102293398, 0.00513495458, -0.00833995454, 0.0042829928, 0.00618396932, 0.0129590956, -0.0261732, -0.0404768884, 0.0234144665, 0.0438151881, 0.030044701, 0.00415259041, -0.00630567782, -0.0294187702, -0.0203427654, -0.027285967, 0.0025689262, 0.0182331465, 0.00111566449, -0.0114869978, 0.0124143036, 0.0127040865, 0.0408709943, -0.00097946648, -0.00712286588, -0.01080311, 0.0325947925, 0.0304851718, 0.0191836338, -0.0224755686, 0.00946431234, 0.0250836164, 0.010484349, -0.019044539, 0.0171087887, -0.0207484625, 0.00845586788, -0.0120317899, -0.0143384626, 0.011394267, -0.0201225318, -0.00834575, 0.0333134532, -0.00372950709, -0.0407319, -0.0324556939, 0.0108668627, 0.0634740666, -0.0223132912, 0.0150571242, 0.031134285, 0.0394336693, -0.0113247195, 0.0177926756, -0.00532621145, 0.021559855, -0.000411854067, 0.0202036705, 0.0222901087, 0.00529723335, 0.0211889334, -0.0354230739, 0.032362964, 0.00679251319, 0.0312733799, -0.00773141, 0.0106698098, -0.000171515305, -0.00610282971, 0.0038830922, 0.00348029379, 0.00778936688, 0.000586086127, -0.00459016254, -0.00462493673, 0.0158337429, -0.0317370333, 0.00771402335, -0.00398451602, -0.0341480263, -0.0106698098, 0.0228696745, -0.0249908846, 0.00971352588, -0.0154512292, -0.00378746376, 0.0092614647, 0.0272164196, -0.0170160569, -0.00419315975, 0.00103090296, -0.00788789336, 0.0287696552, -0.021559855, -0.0051117721, -0.00178796111, 0.0132025136, 0.0299751535, 0.0341480263, 0.0291405786, 0.00328034349, 0.00339915464, -0.000160376774, 0.00698377, -0.0107741319, -0.00365416356, 0.0305547193, -0.00839791074, 0.0155555513, -0.0227537602, 0.0178158581, 0.0176303983, -0.0157641955, -0.0371849537, -0.0172710661, 0.00493210647, 0.00705331797, 0.0091281645, 0.000904847402, -0.00339915464, 0.0544792041, 0.00963238627, 0.0106234448, -0.0198211577, -0.00232840632, -0.0162742138, 0.0135154789, 0.0198443402, -0.003749792, 0.0309951883, -0.029998336, -0.0091281645, 0.00971352588, 0.0168305971, 0.00747640105, -0.0243881363, -0.00807335414, 0.027285967, -0.00847905, 0.0223712474, 0.00642159116, 0.00376428105, -0.00339915464, 0.0394800343, 0.02072528, -0.00143007911, 0.0136777572, 0.0203311741, 0.00233565085, -0.0329425298, 0.0105191227, 0.00422793394, 0.0072329836, -0.0255240854, -0.0138052618, -0.00520450249, -0.00367444847, 0.00215888326, -0.0106524229, 0.0370690413, 0.0078531187, 0.0574929453, -0.0134343393, -0.0318297632, 0.00623613, -0.00265731, -0.00590577722, 0.0188358948, -0.0187199824, -0.0259181913, -0.0168074146, -0.0113247195, -0.0129822781, -0.0112783546, -0.00605646474, -0.02081801, 0.00413520355, 0.00152425852, 0.00329483254, 0.090875946, -0.00115985645, 0.0312733799, 0.000934550131, 0.0380195305, 0.0205398183, 0.0021212115, -0.00299345842, 0.0266600363, -0.00494369771, 0.0103220707, 0.00680410489, -0.000933825679, 0.0300910659, -0.0346116796, -0.0230899081, -0.00717502693, -0.0194038693, 0.0329425298, 0.0141645931, -0.0038830922, -0.000697652576, -0.0160192046, -0.00485096732, 0.0122636165, -0.0083283633, 0.0356780812, -0.0236926582, -0.0393409394, 0.0219307765, 0.026544122, 0.00181114371, -0.00155903248, -0.00371212023, 0.0517900176, 0.0125881732, -0.00410332717, -0.0134111568, -0.033893019, 0.0315515734, 0.00808494538, 0.0265673045, 0.00925566908, -0.0297433268, -0.0186040681, 0.00894270279, 0.000974395312, 0.00747640105, 0.00949329, -0.0116608674, 0.0209802892, -0.0145355146, 0.0100149, -0.00831097644, 0.0191372689, -0.00512046553, -0.000446990278, -0.0111102797, -0.0160307959, -0.00142428337, -0.0237622056, -0.0525782257, 0.0297896918, -0.00407145126, 0.0117999632, -0.0340784788, -0.0176767632, -0.00168363925, -0.0562410839, -0.00538996374, 0.0100206956, -0.00104973884, 0.000510380312, 0.00656068698, -0.0108552705, -0.014257323, -0.0141993668, -0.000875869126, 0.0128431823, 0.0290942118, -0.0131445564, 0.012286799, 0.00425111642, 0.0268686786, -0.0146630192, -0.0496108495, -0.00200384948, 0.01554396, 0.0173985716, -0.0330816284, 0.000782414107, -0.00023291308, 0.0232753698, 0.033383, -0.00887895096, 0.0141298184, 0.0421924032, 0.03039244, 0.0183722414, 0.012680904, 0.00400480116, 0.00664762175, -0.028027812, -0.0175724402, 0.0257559121, 0.00885576848, 0.00582174025, 0.00159235753, 0.00470897369, 0.0358635448, -0.00722139236, -0.0159612466, -0.0137473056, 0.012680904, 0.0055116727, 0.0187083893, 0.0307865459, -0.0161235258, 0.024225859, 0.0418678485, -0.0076328842, -6.91856912e-05, -0.0286537427, -0.0506308861, -0.00715764, 0.00783573184, 0.00856019, 0.0259877387, -0.00767345354, 0.0264513921, -0.0204702709, -0.00539575936, 0.0390627459, -0.00876303762, -0.0210266542, 0.0151382638, -0.00877462886, -0.0186388418, 0.0347739607, 0.0261732, 0.0112783546, -0.00151411619, -0.0442324765, 0.00876303762, -0.0290246643, 0.00519580906, -0.0239244848, -0.0130981915, 0.0480807945, 0.00927885156, 0.0092904428, 0.0130518265, -0.0322470516, -0.0293260384, 0.0177579019, -0.0441165641, -0.0287928376, -0.00466550607, -0.00539865717, 0.00773141, 0.00713445712, 0.022892857, -0.000586448354, -0.00778936688, -0.0143268714, -0.0212121159, 0.0109480014, 0.00494369771, 0.040105965, 0.00244431966, 0.0407319, -0.0263586603, -0.0174565278, 0.0159960221, 0.0330120772, -0.00867610238, 0.0244576838, -0.00969613902, 0.00239070971, 0.0289783, 0.0110175498, -0.00582753588, 0.0153700896, 0.0234260578, 0.0158105604, 0.005673951, 0.0237853881, 0.0177463107, 0.0179549549, -0.00770243211, 0.00218206597, -0.0245040506, -0.0207832363, -0.00552905956, 0.00755174505, 0.0247358773, -0.0081197191, 0.016285805, -0.00242838147, -0.0112783546, -0.00351506774, 0.00390047906, 0.0117709851, -0.0193227306, 0.026103653, 0.000134205751, -0.0093194209, 0.0326411575, 0.0390859321, 0.00565946195, 0.00606805598, 0.0162046645, 0.0450206846, 0.0066997828, -0.0289783, -0.0118289422, -0.000573045865, 0.0118231466, 0.018998174, -0.00769084087, 0.0306242667, 0.0228001252, 0.000393742637, -0.00774300145, 0.0324788764, -0.0208991487, -0.0317602158, -0.00247329776, 0.00236462918, -0.00461334549, -0.0104611665, -0.0264745746, 0.00516393315, 0.0220351, -0.0238317531, -0.01519622, 0.00135690882, 0.0344494022, 0.0310879201, -0.033545278, 0.00184591766, 0.0396191292, 0.0133300181, -0.0140023138, -0.0334525481, 0.00610282971, -0.0189518072, -0.00396133354, 0.0187199824, -0.0172247011, -0.0098236436, -0.00337307411, -0.0126461303, 0.0141645931, -0.00972511712, -0.000870073447, -0.00200529839, -0.0101250177, 0.0105249183, -0.0154512292, -0.0306474492, 0.0568438321, -0.0137009397, 0.000946141488, 0.0046452214, 0.00799221452, 0.00479880627, 0.001585113, 0.0442324765, 0.00781254936, 0.0172478836, 0.00933680777, 0.040407341, -0.0373240486, -0.0196820609, 0.00693160901, 0.00374109857, 0.0137936706, 0.0251995288, 0.0221857857, 0.00538416812, 0.0132836523, 0.0129243219, -0.0139211752, -0.0239013, -0.019392278, -0.0264977571, 0.0230667256, 0.0101308133, 0.00583043369, -0.00799801107, -0.0175956227, 0.0474548638, -0.00648534345, 0.012136112, -0.0274482444, -0.0029224616, -0.0287001077, 0.0249213371, 0.00676933071, 8.99232837e-05, 0.0286537427, 0.0212352984, 0.00760970125, -0.0111566456, -0.00973670837, 0.0163901262, -0.00807915, -0.0251763463, 0.0114522241, -0.0351912454, 0.0182447378, -0.0302301627, -0.0127040865, -0.0470839404, -0.000225306285, 0.0271932371, 0.0126345381, 0.00599271245, 0.0284914635, 0.00949329, 0.00152570743, -0.0185808856, -0.00203717453, -0.00516393315, 0.0080617629, 0.0184070151, 0.0187779386, 0.00193864829, -0.00162858039, 0.00112218468, -0.0173753891, 0.0121708857, 0.000101786274, -0.00737207942, -0.0242954064, 0.00958022568, -0.0249213371, 0.00601009931, -0.00129170774, -0.00392945763, 0.0358867273, -0.0231826399, 0.00513785239, -0.0197516084, -0.0108089056, -0.00413520355, -0.0049784719, 0.0383672677, -0.0143732363, -0.0125070345, -0.0140023138, 0.029256491, 0.0267991312, -0.0118811028, -0.0719589144, -0.000519798254, -0.0410100892, 0.00309488247, -0.000931652321, -0.00308908662, 0.0136893485, -0.0106640141, 0.0108204968, 0.0026370252, -0.011939059, 0.0414969251, -0.0136082098, -0.0248286072, -0.0207368713, -0.0366981179, 0.00690263091, 0.0347507782, -0.00534939393, 0.00897747744, 0.0306938142, -0.00625931285, 0.0235651527, 0.00806755852, 0.000611442141, 0.0106524229, 0.00445686234, -0.00425981, -0.0171667449, 0.00113522483, -0.00716343569, 0.00828199834, -0.0132604698, -0.0105770789, -0.00172420882, 0.0217685, -0.0168537796, 0.0140254973, 8.17731416e-05, -0.0218380466, 0.00673455698, -0.0117478026, -0.000610717689, 0.0140718622, 0.0179897286, 0.0127968173, -0.00742424047, -0.0395727642, -0.0126693128, 0.00781834498, 0.00821245, -0.0234956052, 0.0124838511, -0.0124838511, -0.00753435772, -0.00195603515, 0.0195661485, 0.00586810568, -0.0130634177, 0.00103162741, 0.0152309937, -0.00754594896, -0.0221626032, 0.00569133786, 0.0021414964, -0.0251995288, -0.0286769252, 0.0109711839, -0.00821824558, 0.0339393839, -0.0381122604, -0.00704172673, -0.0099569438, 0.00161698915, -0.00809653662, -0.0411955491, -0.0152657684, -0.00761549687, -0.0366981179, -0.0107277669, -0.0308792759, 0.0014423948, 0.000124153899, 0.00037635566, 0.032710705, -0.0157989692, -0.0101482, 0.00867030676, -0.00352086336, -0.011742007, -0.0319688581, -0.0197979733, -0.0149412109, 0.0092904428, 0.0329888947, 0.005673951, 0.00729673589, 0.0250372514, -0.0175492577, 0.0621294752, -0.0143732363, 0.0159264728, -0.0450438671, 0.00419315975, -0.0046162433, 0.0144311935, -0.0057406011, 0.0331279933, 0.0047408496, 0.0530418791, 0.00579566, -0.00109175744, -0.00547110289, 0.0052740504, 0.0258950088, 0.0046741995, -0.00380195281, -0.0159032904, 0.000883838104, -0.00991637446, 0.0322006866, -0.0178042669, -0.00417577289, -8.09581252e-05, 0.0140950447, 0.0203195829, 0.0062998822, -0.00348898722, 0.000545516494, 0.0486371778, -0.00555514, 0.0176883545, -0.00551746832, -0.0187431648, 0.0108378837, 0.0142805064, -0.00242258585, 0.00837472826, 0.0234260578, 0.00361938961, 0.00402508583, -0.00083747285, 0.0243881363, -0.0027036753, 0.0174217541, -0.00370052876, 0.00423372956, -0.0160076134, 0.00378456595, 0.0346348621, -0.0196472872, 0.032710705, 0.0134343393, 0.0248286072, 0.00452641025, -0.026150018, -0.0134922964, 0.0104032094, 0.0107509494, -0.0218844116, -0.00908759516, -0.00268049259, 0.0106234448, 0.00363677647, -0.0101192221, -0.0224987511, 0.00754015334, -0.00286015822, 0.011892694, -0.0452293307, 0.00977727864, 0.0233217347, 0.00356433075, -0.0116087068, 0.0107683362, 0.00503932638, 0.0053117224, 0.0382513553, -0.0154975941, -0.00794005394, -0.00697797444, 0.00556383329, 0.00433805119, 0.0157641955, -0.00203137868, 0.00113667385, -0.00409463374, 0.0332902707, -0.0125881732, 0.00184157095, -0.00286305603, -0.0253849905, 0.0221626032, 0.00442208862, -0.00227189879, 0.0300215185, 0.0147673413, 0.013075009, -0.0165639967, -0.0276800711, 0.0130170519, -0.0155207776, -0.00682728738, 0.00118811033, -0.00701274863, 0.00951647386, 0.00706490921, -0.0185808856, -0.0126693128, 0.0275641587, -0.0071402532, -0.0047408496, 0.00836893264, 0.0121477032, -0.00685047, 0.050816346, -0.00552905956, -0.00196762662, 0.0028847896, -0.015741013, -0.0166219529, 0.00985841732, -0.0192879569, -0.0130518265, -0.00308039319, 0.0082704071, 0.0184881557, 0.0173985716, 0.0170392394, 0.0153005421, 0.00992217, -0.0179317724, 0.00175753387, -0.014802115, -0.00794005394, 0.000387222535, -0.0162162557, 0.0160192046, 0.00730832713, 0.0191140864, 0.0132372873, -0.0108436793, -0.0155555513, 0.0170624219, -0.00146630197, -0.00957443, -0.00431776652, -0.0129938694, 0.00672296528, -0.0133068347, 0.0130054606, 0.00960340817, -0.00399031164, 0.0240635797, -0.016227847, -0.0428878814, 0.0167958215, 0.00569423568, 0.00258631329, 0.0095570432, -0.0270541403, 0.00965557, -0.00946431234, -0.00224726717, -0.014454376, 0.00912236888, -0.010043879, -0.0174333453, -0.0186040681, 0.00443078205, 0.00989898667, -0.00484806951, -0.0068620611, 0.0077661844, -0.00891372468, 0.0119738337, -0.0354694389, 0.0295115, 0.00114102056, 0.0171783362, -0.0204934534, -0.00724457484, -0.0046075494, -0.0187315736, 0.0292796735, -0.0320615917, 0.000126055602, 0.00963818282, 0.00321369339, -0.0023878119, 0.01115085, 0.0110986885, -0.0402450636, -0.000723733043, 0.0203079917, -0.00126852503, 0.0112493755, -0.00335568702, 0.046620287, 0.00371501804, -0.0147789326, 0.0117478026, -0.00340495026, 0.00393525325, -0.00463942578, -0.0280509945, -0.0163553525, 0.0114580197, 0.020620957, -0.0111798281, -0.00493210647, 0.0117999632, -0.00878042448, -0.00639840867, -0.0137936706, 0.00645636534, 0.00791107584, -0.00471766712, 0.00152860524, 0.016181482, 0.00931362528, -0.00716343569, 0.0244345013, 0.0108842496, -0.00879781134, 0.0208759662, 0.0183490589, 0.029210126, -0.0172826573, -0.0323397815, 0.0322006866, 0.0217453167, -0.013469114, 0.0136777572, -0.0207832363, 0.0151266726, -0.00964397844, -0.0251067989, 0.0314124748, 0.0251995288, -0.00657807384, 0.0227073953, -0.0075285621, -0.0261732, -7.82187726e-06, 0.0201457143, -0.0166451354, -0.013619801, -0.00216612779, 0.0167610478, -0.00189083407, 0.027285967, 0.0120086074, -0.00254719262, -0.00479301065, -0.00937737804, 0.0238317531, 0.0202616267, -0.0192995481, -0.00491471961, -0.0217916816, 0.0259181913, 0.0228117164, 0.0336843766, 0.0230087694, -0.0161467083, 0.0173985716, -0.00565366633, -0.00944692548, -0.0034831916, 0.0312965624, 0.0266600363, 0.0355158038, -0.00755754067, -0.0231710486, -0.00831677206, -0.0216757674, -0.0184881557, -0.00624772115, 0.00984682608, 0.0118173501, -0.000569423602, -0.00667080469, 0.0227073953, -0.0201457143, 0.00398451602, -0.0187199824, 0.00275728526, 0.00067917892, 0.0145355146, 0.0106292404, -0.00437572319, -0.00400480116, -0.0154512292, 0.0107741319, 0.0396423154, 0.0122520253, -0.0184186064, 0.0208875574, -0.0188590772, 0.000728442, -0.0159612466, 0.01712038, 0.0100264912, -0.00662443927, 0.0241331272, 0.0119158765, -0.00906441174, 0.0241331272, 0.0207484625, -0.00788209774, 0.0238085706, 0.0101424046, 0.000594779616, -0.004378621, 0.0133532006, -0.0171899274, 0.0137241222, -0.00636943, -0.0109132277, -0.019589331, 0.000933825679, 0.0024370749, -0.033498913, 0.0046741995, 0.00537257688, 0.0166451354, 0.00150542264, 0.0107973143, -0.0250604339, -0.00261239358, 0.00456987787, 0.0290014818, 0.0274482444, -0.00176188059, -0.00480170408, 0.0578175038, 0.00759231439, 0.00405985955, -0.00738367066, -0.0136893485, -0.0045408993, -0.00526535697, -0.0169349182, -0.0273555145, -0.0104321875, 0.0329888947, -0.0057000313, 0.0034165415, 0.0129706869, -0.0264050271, 0.0059405514, 0.00346290669, -0.0207832363, 0.00872246828, -0.00161264231, 0.0105654877, -0.0161467083, 0.0297896918, -0.0106060579, -0.00232550851, -0.00475823693, -0.00784152746, 0.0134575218, 0.00906441174, 0.000293948629, -0.0248286072, 0.0153584983, 0.0221394207, -0.0038657051, -0.0153816817, -0.00101858727, 0.0321079567, 0.0160192046, -0.016772639, -0.0108494749, 0.0363271944, 0.0185345206, -0.0160192046, -0.0117999632, 0.00050784467, 0.00967295654, -0.0192647725, -0.0217453167, 0.0131793302, -0.000490819919, 0.00334119797, 0.00605066912, 0.0331279933, 0.0253386255, 0.00692001777, 0.0242954064, -0.00306010852, -0.00219075941, 0.0165408142, -0.0393641219, -0.0452061482, 0.00425981, -9.3183342e-05, -0.00156772602, 0.00509148743, 0.0171319712, 0.00822983682, 0.0223364737, -0.0162742138, -0.0199254788, -0.0464811921, 0.00628249533, -0.0429342501, -0.0320152268, 0.0157062374, 0.000321296888, 0.00791107584, -0.0193806868, 0.00216612779, -0.0343566723, 0.0114464285, -0.0288623869, 0.0179897286, -0.0213048458, -0.00941794738, -0.0135154789, 0.00433805119, -0.0156946462, -0.0176535808, 0.0198095646, -0.00562179, -0.00570582738, -0.0156714637, -0.0324788764, -0.00506250886, 0.0204702709, 0.0152078113, -0.000929478963, -0.00446845358, 0.0319920443, 0.0281437244, 0.011469611, -0.00480460189, 0.00610282971, -0.00462783454, -0.00962079503, -0.0316674858, 0.0165524054, -0.00897747744, 0.00991637446, 0.014013906, 0.0126461303, -0.00587679911, -0.0118057588, -0.000863553316, -0.0178738143, 0.00949329, 0.000849064148, -0.0035034765, -0.00707070483, 0.00744162733, -0.00252690772, -0.00846745912, -0.00281958864, 0.0119274678, -0.0060738516, -0.0149875768, 0.00557542499, 0.00747060543, -0.0119506503, 0.013075009, -0.0188706685, 0.0086992858, 0.00425401423, 0.007499584, 0.018893851, 0.00226030732, 0.0135734351, -0.00144167035, -0.00146919978, 0.0130402343, 0.00131054362, 0.00937158242, -0.0026370252, 0.0160887521, -2.89330201e-05, -0.0023037747, 0.0019212612, 0.0559628904, -0.016227847, 0.0115681374, 0.00416418165, -0.00694899634, -0.0310415551, 0.00226030732, -0.0137473056, -0.0221973769, 0.00134893984, -0.0135386614, -0.00646216096, -0.010043879, 0.0086992858, 0.0140023138, -0.0139791314, -0.00716923131, 0.0205398183, 0.0120201986, -0.000810667931, 0.00606805598, -0.037648607, -0.00579566, 0.00608544284, -0.00581014901, 0.00213135383, -0.0052740504, -0.0370922238, -0.00525956135, 0.00288044289, -0.00922669098, -0.0138864014, 0.0180013198, -0.00475533912, 0.0174797103, 0.00868189894, -0.0182679202, -0.00422503613, 0.00901225116, -0.0168190058, -0.00614919513, 0.0192879569, 0.0191256776, 0.0209571067, 0.0077951625, -0.0220466908, 0.0122752078, -0.0116029112, 0.0178506318, -0.0157178305, 0.00173145335, -0.0101887705, 0.00481909141, 0.022695804, -0.0138284443, -0.0147209764, -0.00941794738, -0.00368603971, 0.0110581191, 0.00900066, -0.00810812786, 0.00656068698, 0.00898327306, -0.00481039751, -0.00724457484, -0.00709388778, -0.00308908662, 0.00365416356, 0.0185113382, 0.00780675374, 0.0090238424, -0.0110233454, -0.00332381087, -0.0100554703, -0.00639261305, 0.0104205962, -0.00403377926, -0.0219191853, 0.00950488262, -0.00196617772, 0.0151034901, -0.00286450493, 0.00447135139, 0.000336148281, -0.0103278663, -0.00747640105, 0.0237853881, -0.00177781866, 0.00257182401, 0.0336611941, 0.00641, -0.0183490589, 0.0189518072, -0.00392366154, -0.000199769158, 0.00867030676, -0.000143985919, 0.000275837199, -0.0101076309, 0.00496398285, 0.0034368264, 0.0320847742, -0.00911657326, -0.00364547013, 0.0207136888, -0.015984429, 0.0163901262, 0.010681401, 0.011394267, 0.00836313702, -0.0084037073, 0.000455683767, 0.0228812657, 0.0248981547, 0.00230087689, -0.00400480116, -0.0185113382, 0.00498136971, 0.0028355266, -0.0131097827, -0.00947590359, -0.00519870687, 0.00137574482, 0.0160539784, 0.00209513097, 0.00808494538, 0.0054450226, -0.0120086074, -0.0241794921, 0.00332381087, -0.0072329836, 0.00661864365, 0.0119854249, -0.000930203416, -0.000179756011, -0.018059276, 0.0143732363, -0.00273989816, -0.0114985891, -0.0171783362, 0.00897747744, 0.0274482444, -0.00389758125, -0.00217192364, -0.0231130924, 0.0298824217, -0.00433515338, -0.00720980112, 0.028468281, -0.0121592944, -0.0112203974, -0.0187547561, 0.00671716966, -0.0120317899, 0.0174913015, -0.0169001445, -4.11808796e-05, -0.00347739598, -0.0259645563, -0.00342233712, -0.0302301627, 0.0207368713, -0.0128431823, 0.00172131101, -0.00835154578, -0.00732571399, 0.0196472872, 0.00521319592, 0.0132025136, -0.0084326854, -0.00933680777, -0.00368893752, 0.00999751315, -0.00549718319, -0.0164480824, -0.00678092195, 0.0142457318, 0.00559281185, 0.0121708857, 0.011742007, -0.00608544284, 0.0199022964, -0.00909339078, -0.0129706869, 0.00223277789, -0.0286537427, -0.0169117358, -0.001585113, -0.00919191632, -0.0102757048, 0.0111450544, 0.0163089875, -0.00561019871, -0.0175376665, -0.0147557501, 0.00552326394, -0.00321948901, 0.0124954423, -0.0298128743, -0.00650852593, -0.00449453434, 0.0060332818, 0.000701999292, 0.00289493217, 0.0253849905, -0.000520522706, 0.00619556056, 0.0124838511, 0.0259413738, 3.07328446e-06, -0.0267759487, 0.00623033429, 0.0101076309, 0.0147441588, 0.00448004529, 0.0268454961, -0.00758651877, 0.0170276482, -0.0142689142, 0.0118173501, -0.00357882, -0.02072528, 0.0187895298, -0.00781834498, 0.00211396697, 0.00270512421, 0.00469738245, 0.00313255424, 0.00297317351, 0.00203717453, 0.00346000888, 0.00984682608, -0.0241794921, 0.0198791139, 0.0212700721, -0.00323977391, 0.0139791314, 0.00508279353, 0.0203427654, -0.0203427654, -0.0217685, -0.0350057855, -0.0245504156, -0.00503353076, -0.00884997286, -0.0462493673, 0.0272627845, -0.00712286588, -0.00215453655, -2.04772441e-05, 0.0158917, 0.0101424046, -0.00352086336, -9.2277769e-05, 0.00683887862, -0.0162742138, 0.00168074132, 0.0119622424, -0.00615499076, -0.0169349182, -0.0109653883, -0.0248749722, -0.0246431455, -0.0294187702, 0.0189633984, 0.00269208406, 0.0179897286, 0.013121374, -0.0112203974, -0.0175376665, -0.00332381087, 0.0072329836, 0.00865871552, 0.00447135139, -0.0191952251, 0.0134922964, -0.022151012, -0.0161583, -0.0120201986, 0.008832586, -0.031482026, 0.00992217, 0.00667080469, 0.00202123635, 0.0038657051, 0.0239476673, 0.00595793827, 0.0106466273, 0.0376717895, 0.0235071965, 0.00261239358, -0.018650433, 0.0113247195, -0.0195313729, 0.00823563244, 0.0105944667, -0.0327570699, 0.00261239358, 0.0021226604, -0.00264716754, 0.0164944474, -0.000830228266, 0.0216873586, 0.0135154789, -0.00268918625, -0.0136545748, 0.020076165, 0.011695642, -0.00787630212, -0.0284219161, -0.0264977571, -0.020226853, -0.00650852593, -0.00325426296, 0.00219945284, 0.0186388418, 0.0150918979, -0.0237390231, -0.00930203404, -0.0217221323, 2.14846932e-05, -0.0135966185, -0.00046111719, 0.00144674163, 0.00613760389, -0.0106234448, 0.00332670868, -0.0191256776, -0.022058282, 0.0125649907, 0.00961499941, -0.0158221517, 0.00125548488, 0.0188706685, -0.00440470129, 0.011226193, -0.0102641135, 0.0128895473, 0.0135038877, 0.00810233224, -0.0331975408, -0.00712286588, -0.0137009397, -0.00481909141, -0.00908759516, -0.00470897369, -0.0100960396, -0.00334409578, -0.0299751535, -0.0116145024, 0.00106277911, 0.00645056926, -0.0175724402, -0.00351796555, -0.0169349182, -0.00190967, 0.0176072139, 0.00145398616, 0.0170276482, -0.022151012, 0.0178506318, 0.00520450249, 0.0092324866, 0.0274018794, 0.00346870255, 0.00609703409, -0.00984682608, 0.0189865809, -0.00851962, 0.0349130556, 0.024619963, 0.00651432155, -0.00988739543, -0.0222205594, 0.000105499123, 0.000839646207, -0.0244808681, -0.00580145558, 0.0149875768, 0.0066997828, -0.0263818447, 0.00486545637, -0.00161988696, 0.00136560237, 0.0101771783, 0.0357939936, -0.0070996834, -0.00150976935, -0.0105423052, 0.00623033429, -0.0220119171, 0.0157178305, -0.00142935466, -0.0148137063, 0.0121940682, 0.00557252718, -0.0183374677, -0.015787378, 0.016923327, -0.0191256776, 0.00543922698, -0.00324267172, 0.0183838326, 0.00243127928, -0.0103684356, 0.00453800149, 0.0203891322, 0.000810667931, -0.00501324562, 0.0245504156, 0.01282, -0.0200298, 0.016772639, -0.00955124758, 0.0112377843, -0.0119854249, 0.00454379758, -0.00385990948, 0.00445976, -0.0158105604, -0.0214555338, 0.0291637611, 0.03266434, -0.00195893296, 0.00737787504, -0.00703593111, 0.0109016364, -0.0121708857, 0.00669398718, -0.00784732308, -0.000323289161, -0.0272164196, -0.000703085971, 0.00231536618, 0.00698377, 0.0113073327, -0.00940056052, 0.00357592222, -0.00329483254, -0.0141877756, 0.00614919513, 0.00752276648, 0.0140950447, 0.0117767807, -0.00337307411, 0.0217800904, 0.000571959186, -0.00406275736, 0.0150571242, -0.00571741862, -0.00515234144, -0.0175376665, 0.0039120703, 0.00817188062, -0.0136429835, 0.00134169532, -0.0149296196, 0.0155207776, 0.014999168, 0.0192647725, -0.00740105752, -0.00252835662, -0.0157757867, -0.0160192046, 0.0122172507, 0.0186156593, -0.0233681016, -0.00334699359, 0.0105654877, 0.0230899081, -0.016969692, -0.00106640137, 0.0249677021, -0.00523348106, 0.000552761077, -0.00917452946, 0.0150223505, 0.00204152125, -0.00992217, 0.0278191678, -0.0198559314, 0.00823563244, 0.0133763831, -0.0336843766, 0.00199080911, 0.00523927668, -0.00330642401, 0.00502773514, -0.0400132351, 0.0145702893, 0.00635204324, -0.00033488046, -0.00530882459, -0.000937448, -0.00521029811, -0.016227847, 0.00774879707, 0.00489153713, 0.00374109857, 0.00556962937, -0.0112841502, 0.0125418082, -0.00589708379, 0.0215482637, -0.00155613467, -0.00432356214, -0.00959761254, 0.000614702178, 0.0213859845, -0.00893111154, -0.00902963802, -0.0182679202, -0.018209964, 0.0395727642, 0.00300794747, 0.0275641587, 0.0230667256, -0.000397364929, -0.00632886076, -0.00270802202, -0.0040830425, 0.00720980112, -0.00286160712, 0.00658386946, 0.0100033088, -0.0153005421, -0.0107103791, -0.0122172507, -0.00561599433, -0.00243272819, -0.0192763656, 0.0151614463, 0.0150107592, 0.0237622056, 0.00216757669, -0.0257095471, 0.0239708498, 0.00442208862, 0.0103974137, 0.021559855, -0.0224987511, -0.0117941676, 0.00598112121, -0.0102815, -0.017711537, -0.0146630192, -0.0168421883, -0.0189865809, 0.0141414097, 0.00391496811, 0.00479590846, -0.00253415224, 0.0124027124, -0.00805017166, -0.00624192553, 0.0173985716, 0.00416707946, -0.00577537529, -0.0188590772, 0.0114464285, 0.040105965, 0.000793280953, -0.000913540891, -0.00364547013, -0.01519622, 0.004378621, 0.017514484, 0.00279930374, -0.0290246643, -0.00634624762, 0.0203195829, -0.00980046112, -0.00247619557, -0.00839791074, -0.00656068698, -0.00925566908, 0.0132952435, -0.0138864014, 0.00862973742, 0.0216757674, -0.018152006, -0.0104437787, -0.0437224582, -0.0272627845, 0.00840950292, 0.0096613653, 0.00346870255, -0.000184012199, -0.00621874304, -0.0201688968, 0.00828779396, 0.012877956, -0.0251067989, -0.00731991837, -0.00750537962, 0.00523058325, 0.00795164518, 0.0262659304, -0.024225859, 0.00471476931, 0.00365126575, -0.00669398718, -0.00203572563, 0.0312965624, 0.0172362924, -0.0038657051, 0.00307169976, -0.00237622065, -0.00772561459, -0.0185808856, 0.0106698098, 0.00299635623, -0.00975989085, 0.0318297632, 0.0162394382, -0.00423083175, -0.00482198922, 0.0129127307, -0.0100206956, -0.0306242667, 0.0140023138, 0.000187091151, 0.0014952803, -0.00974250399, 0.0237390231, 0.0193459131, -0.00410042936, 0.0102988873, 0.0102815, -0.0166915, -0.000361504295, 0.0076618623, 0.00500455219, -0.0133300181, -0.00490602618, 0.00591736892, -0.0118115544, 0.00193285255, 0.00165610982, -0.00602169055, 0.00595793827, 0.0147093851, -0.00185461121, -0.00704172673, 0.0275409762, -0.014651428, 0.00730253151, -0.0122636165, 0.0113131283, -0.0316211209, -0.0208527837, 0.00802698918, 0.00847325474, -0.0221626032, 0.00886736, 0.00574929453, 0.0132141048, 0.00375268981, -0.00927305594, 0.0161003433, 0.0102061573, 0.00315573672, 0.014802115, -0.00262978068, 0.0267064013, 0.0207136888, -0.000724095269, 0.00496108504, 0.00523058325, -0.00224002264, 0.0102641135, 0.00305431266, 0.0106929922, -0.00177347194, -0.000883838104, 0.0266832188, 0.0211077929, 0.0221857857, -0.0132952435, 0.0191720426, 0.0115971155, -0.00370632438, 0.00692581339, -0.0244808681, -1.27685635e-05, -0.00424242299, 0.0158685166, -0.000734599889, -0.00524797, 0.00494369771, -0.0137936706, -0.000418736425, 0.00193864829, -0.0162162557, -0.0022762455, 0.0143268714, 0.0238549355, -0.0164364912, -0.0186040681, 0.0354694389, -0.00476982817, 0.00657227822, -0.00556383329, -0.0185924768, -0.0104959402, -0.0134807052, -0.00476982817, 0.011939059, -0.00614339951, 0.000722646364, -0.00649693469, 0.0175956227, -0.0147673413, -0.0179201812, -0.0215714462, 0.0136545748, -0.00657807384, 0.0167842302, -0.0112783546, 0.0138516268, 0.00371791585, -0.00776038878, -0.0125765819, -0.0087282639, -0.0144775584, 0.00289783, -0.00299345842, -0.0236578844, 0.0104148006, 0.0159612466, -0.00506250886, -0.0187431648, 0.0243417714, 0.0258486439, -0.00195893296, -0.00373530271, -0.00817188062, 0.0112030106, 0.00244721747, 0.00746481, -0.000238708744, -0.00204007234, -0.0293260384, -0.00261094468, -0.00241534133, -0.00364547013, 0.0141298184, 0.0207136888, -0.000295397535, -0.00870508142, 0.0239013, 0.00593475578, 0.000673383242, -0.016378535, -0.00652011717, -0.00506250886, 0.000845441886, -0.0235883351, -0.00806755852, 0.0115101803, -0.0169928744, 0.00860075932, -0.0117188245, 0.010043879, -0.00450612558, 0.0180013198, -0.0281669069, 0.0043119709, 0.00685047, -0.00170392403, -0.0114058582, -0.0104553709, 0.00222988, -0.0129243219, -0.00636943, -0.01554396, 0.00919191632, 0.00319340848, -0.0217453167, 0.00410332717, 0.00509438524, -0.0183838326, 0.00694320071, 0.0303228926, -0.0173058398, -0.00365995918, -0.00573190767, 0.0227885339, -0.0131677389, 0.00499875657, 0.01563669, 0.000912816438, -0.00682728738, 0.0089658862, -0.0086239418, -0.00284711784, 0.00638102135, -0.00483647827, -0.00389758125, 0.00743583171, 0.00201254291, -0.00946431234, -0.00418736413, 0.00966716092, 0.00831677206, 0.000359693135, 0.00614919513, 0.00481619313, -0.00590867503, 0.0389700159, -0.0117651895, 0.0350057855, -0.00583622931, -0.0145818805, -0.00937158242, -0.0115333628, -0.0187315736, -0.00671137404, 0.0060738516, -0.0288160201, -0.007006953, -0.00947590359, 0.0185924768, -0.00194734172, 0.00818926748, -0.0044452711, -0.00365126575, -0.0139907226, 0.0201688968, -0.0145123322, 0.00601589493, 0.0150803067, 0.0019893602, -0.00447135139, -0.0165524054, -0.00428878842, 0.0066070524, -0.013666166, 0.00590577722, -0.00261529163, 0.0123099815, -0.00275728526, -0.0150918979, -0.0118521247, 0.00509728305, 0.000123429447, 0.0017662273, -0.0013931318, 0.00665341737, -0.013318426, -0.002454462, -0.000383600243, -0.0182679202, -0.00393815106, 0.00654909573, -0.00655489136, -0.0294187702, 0.00762129296, -0.003083291, 0.00137212244, 0.00715764, -0.00020194253, -0.0209339242, 0.0131793302, 0.0120897461, -0.00329483254, -0.0117825763, -0.0046828934, 0.00515234144, -0.00459595816, 0.0288855694, -0.0169117358, -0.0163901262, 0.00759811, 0.0029036256, 0.00259935344, 0.0186388418, 0.0224871598, 0.00664182613, -0.0296042301, 0.00150397373, 0.00302533456, -0.0129243219, 0.00574929453, -0.0137936706, -0.00545081822, -0.00340495026, 0.0113826757, -0.00460465159, 0.00593185797, 0.00501324562, -0.0110001629, -0.0226726215, 0.00970773, 0.0330584422, 0.0129011385, -0.000620860083, 0.00432935776, -0.0027688765, -0.0108610662, 0.0164017174, 0.0154164555, -0.0244113188, -0.026544122, -0.00912236888, 0.0289551169, -0.000612166594, 0.0190677214, -0.00286885165, -0.00967295654, -0.0151614463, -0.0171899274, -0.0353071615, -0.0135502527, -0.00110552215, 0.0272164196, 0.0290478468, -7.70188853e-05, 0.0205282271, -0.00326005858, 0.00354694389, -0.00192705693, 0.0197979733, -0.0080038067, -0.0215714462, 0.00487704761, -0.0047408496, -0.0157062374, 0.00951067824, 0.0053117224, 0.00533490488, 0.0104669621, -0.00711127464, -0.00718082255, 0.0104205962, -0.00215888326, -0.0125881732, -0.00318761286, 0.00744742295, -0.0167494565, 0.00749378838, -0.000152498294, -0.032710705, -0.00964977406, 0.0133068347, 0.0129127307, -0.000332888216, 0.0224755686, -0.0186620243, -0.00440759957, -0.00781834498, 0.00541024841, 0.0178390406, -0.00557542499, -0.00634624762, 0.0140718622, -0.0151846288, 0.000980190933, -0.00565366633, 0.00143152801, 0.0165408142, -0.00280509936, -0.00967875216, -0.0118289422, 0.00780095812, -0.00907600299, -0.0155787338, 0.00114609173, -0.0125765819, 0.000320210209, 0.0078994846, 0.00267759478, 0.0072329836, -0.0171087887, -0.0066070524, -0.015045533, 0.0186388418, 0.015590325, 0.000934550131, -0.00359330908, -0.00322238682, -0.0190793127, 0.00403377926, -0.0125881732, 0.00337597192, 0.0140370885, 0.0144080101, 0.00655489136, 0.00715184445, 0.0177579019, 0.00776038878, -0.0014271813, -0.013666166, -0.0139675401, 0.00946431234, -0.013666166, 0.00520450249, -0.0161698908, 0.0337539241, 0.0243649539, 0.0281205419, 0.0113073327, -0.00289493217, -0.00962079503, -0.0200066175, 0.00980625674, -0.00322528463, -0.0047408496, 0.0189054422, -0.00464811921, 0.0195661485, -0.00652011717, 0.0138284443, 0.0102757048, 0.00639261305, -0.00349768065, 0.00286015822, 0.0047118715, 0.0126345381, -0.0100844484, 0.019635696, 0.0102583179, 0.0013837138, 0.00737787504, 0.00277901883, -0.00741844485, -0.00269353297, -0.0221626032, 0.000791832048, -0.00694320071, 0.0183606502, -0.00538127031, -0.0115913199, -0.00197632, 0.00642159116, -0.00603907742, -0.00274279597, 0.00689103967, 0.00407434907, 0.0156946462, -0.0223017, 0.00652011717, -0.00178216537, -0.0282132719, -0.00740685314, 0.00913975574, -0.0119854249, 0.00435833633, -0.000652011717, 0.0016981283, -0.00398451602, 0.000696565898, 0.0184649732, 0.0123795299, 0.0288623869, -0.0110407323, -0.0113073327, -0.015984429, 0.0177231282, -0.0122172507, -0.00149383128, 0.00701854425, -0.00546240946, 0.0248286072, 0.000832401623, -0.025361808, 0.0106582185, -0.0138748102, -0.0124722598, -0.0170624219, -0.0105481008, -0.0227537602, -0.0199254788, -0.0191256776, -0.0032368761, 0.00247329776, 0.00506540667, 0.00523927668, 0.0126924952, -0.00330642401, -0.014013906, 0.00302533456, 0.0041786707, -0.0345884971, 0.0053783725, 0.0319920443, -0.01080311, -0.0153469071, 0.00455538882, -0.0373240486, -0.0135966185, -0.00968454778, -0.00498716533, -0.00908179861, 0.00521029811, -0.014060271, 1.15913199e-05, 0.0124606686, -0.016181482, 0.00956863444, 0.0131097827, 0.00711127464, -0.00152860524, 0.0134459306, -0.0121477032, -0.0144196022, -0.0184070151, 0.00483358046, -0.000872246805, -0.0130518265, 0.000844717433, -0.0261268355, -0.0220466908, 0.0102061573, 0.00463363, 0.00716923131, 0.0014612308, 0.00408594031, -0.0129127307, -0.00959181692, 0.0330816284, -0.00569713349, 0.00738367066, 0.0179085899, -0.0194618255, 0.000917887606, 0.0104148006, -0.0147325676, 0.00789368898, 0.026544122, -0.0161583, 0.0153237246, 0.011347902, 0.00525376573, 0.0130866, -0.00481039751, 0.00912236888, -0.016969692, 0.000909918628, -0.0147673413, -0.0041120206, -0.0119158765, 0.013666166, -0.00144674163, -0.0194734167, 0.0129590956, -0.00443947548, 0.00595214264, 0.0112435799, 0.00970773, 0.000171605861, 0.0082704071, 0.0230087694, 0.00306010852, -0.0110465279, -0.0114522241, -0.0121129295, -0.00310937152, -0.0235071965, -0.0036657548, 0.0172826573, -0.00126417831, -0.0244345013, 0.00750537962, -0.0274482444, 0.0203195829, 0.00173145335, 0.00812551472, 0.00567105319, -0.0267759487, 5.31117912e-05, -0.00377587252, -0.00426270766, -0.010953797, -0.011892694, -0.00219800393, 0.000901949592, 0.011666663, 0.00770243211, 0.0166799091, 0.0205514096, -0.0086992858, -0.0161698908, -0.0145355146, -0.0210266542, -0.0250372514, 0.0123563465, -0.028074177, -0.00185171328, -0.018453382, 0.00450322777, -0.011620298, -0.0341480263, -0.0295346826, -0.0353998914, -0.0207020976, -0.000702361518, 0.0046741995, 0.0107277669, 0.0290942118, -0.0276337061, 0.00257761963, 0.0168190058, -0.0064737522, -0.010211953, -0.00222988, -0.0130170519, 0.00234869123, 0.0153237246, 0.0100033088, -0.00410622498, -0.0231826399, -0.0130054606, -0.00325716077, 0.00348898722, -0.0258950088, -0.0262427479, 0.00250952062, 0.00840950292, 0.0175028928, 0.00516683096, 0.0127968173, -0.0001544, -0.0170392394, 0.0169117358, -0.0127504515, 6.46578337e-05, 0.0121592944, 0.0137588969, -0.00351217, -0.0468984805, -0.0159612466, 0.00233420194, 0.0155323688, -0.0191140864, -0.00474374741, -0.0117362114, -0.0064737522, 0.0103278663, -0.00976568647, 0.00476693036, 0.014454376, -0.0081950631, 0.008090741, 0.0305315368, -0.00901225116, -0.0133068347, 0.0052450723, 0.00730253151, 0.0151614463, 0.00381354429, -0.00890213344, 0.0101482, 0.0198095646, 0.0113768801, -0.0153353158, -0.00421054708, -0.00871087704, 0.0104669621, -0.00509438524, 0.013712531, -0.0151382638, -0.0124722598, 0.0352144279, -0.0135270702, 0.0107335625, -0.0185577031, 0.00632886076, 0.0045119212, 0.00228783675, 0.00218351488, 8.18184199e-05, 0.00456118444, -0.00719241379, 0.00412071403, 0.00906441174, -0.0101655871, -0.0104379831, -0.0108262924, 0.0062071518, -0.000628104666, 0.0115043847, -0.000463290547, -0.0141761843, -0.0237622056, -0.00900645554, 0.0239940323, -0.00223132898, 0.00483647827, -0.000491182203, -0.0151846288, -0.00216467888, 0.005673951, -0.0286769252, -0.00842109416, -0.0170856062, -0.0177579019, 0.0216989499, -0.00545081822, 0.0013511132, 0.00399900554, -0.00878622, 0.0110349366, -0.00643897802, -0.0216641761, -0.000914265343, -0.0178042669, -0.0211889334, 0.0183838326, 0.00565076852, 0.00823563244, -0.00354114827, 0.0154512292, -0.0117535982, 0.0276105236, -0.0146977939, -0.0141993668, -0.0102525223, 0.0059405514, 0.00464811921, 0.0101597914, -0.00414389698, 0.0213743933, 0.0187083893, 0.000117905452, 0.0205514096, -0.00240085204, 0.0342175774, 0.00269643078, -0.0163437612, -0.0154280467, -0.000217699475, -0.014651428, 0.0255936347, 0.0188706685, 0.0139095839, 0.011272558, 0.00589418598, 0.0202616267, -0.0115217716, 0.0233565085, 0.0086239418, -0.000219872847, -0.00220235065, -0.00668819156, 0.00351506774, 0.0102177486, -0.00505091762, 0.00229073456, 0.00467130169, -0.00606226036, -0.00484806951, 0.00298186694, 0.0121592944, -0.004378621, -0.00382223772, -0.00222263555, -0.0126345381, -0.00951067824, -0.00143225247, 0.00116492761, 0.0114638153, 0.0115797287, 0.00717502693, -0.0121824769, 0.0124838511, -0.00224726717, 0.00388888782, -0.027285967, 0.0214323495, 0.0239013, -0.0241794921, 0.0182331465, 0.0121592944, -0.000227298529, 0.0218032729, -0.0120433811, 0.0390627459, -0.0152541772, -0.00374689419, 0.0287696552, -0.000209549326, -0.00745321857, -0.00965557, 0.0065664826, -0.0164828561, 0.00627090409, 0.0180940498, -0.0230319519, 0.0236578844, -0.0131329652, 0.0253154431, 0.00222263555, 0.00102148508, 0.0143384626, 0.00906441174, 0.00111349113, 0.00536678126, -0.00203717453, -0.017514484, -0.00682728738, -0.0136429835, -0.00886736, 0.00890213344, -0.00251821429, 0.00968454778, -0.00721559674, 0.00158076629, -0.0114406329, -0.0118811028, 0.00669398718, 0.0424937792, -0.00817767624, 0.00897747744, 0.0138052618, -0.0139211752, 0.0117941676, 0.000826606, 0.0298360568, -0.00247619557, 0.0042829928, 0.00214874092, -0.00671137404, 0.0084616635, -0.00341364369, 0.0213743933, 0.00922669098, 0.013318426, -0.0071402532, 0.0179549549, 0.0102293398, 0.00913396, 0.000189988976, 0.00442208862, -0.0188590772, 0.0281205419, -0.0102061573, -0.013469114, 0.00255009043, -0.00716343569, 0.00668819156, 0.0135502527, -0.0332670882, 0.0127388602, 0.0133532006, -0.0111102797, -0.0203891322, -0.0124027124, 0.0228696745, 0.0184765644, -0.0125881732, 0.00778936688, 0.00371791585, -0.0151150813, 0.00320210215, 0.00535518955, 0.022104647, 0.00114609173, -0.00423372956, -0.0237042494, 0.0234956052, 0.0159264728, 0.0198675226, 0.00922669098, -0.0016503142, -0.013272061, 0.00437572319, 0.0374631472, 0.00942953862, 0.0261268355, 0.0191836338, 0.00450612558, 0.00764447544, 0.00485096732, 0.019635696, 0.0315283909, -0.0179897286, 0.00133155286, -0.0248054247, 0.00233854866, 0.0232637785, 0.0138168531, 0.0184997469, 0.0042453208, -0.00199370692, -0.00771981897, 0.000136107454, 0.00621874304, -0.00873405952, 0.00930783]
13 Jan, 2025
Round Robin Scheduling Algorithm with Different Arrival Time 13 Jan, 2025 Round Robin Scheduling is one of the most popular CPU scheduling algorithms used in operating systems. This algorithm is designed to handle processes efficiently by assigning a fixed time slice or quantum to each process. However, when processes arrive at different times, the scheduling becomes slightly more complex but remains true to its principles. In this article, we’ll explore how the Round Robin Scheduling Algorithm effectively handles this situation. Also, we’ll see its program implementation. Characteristics of RR Scheduling Algo with Different Arrival TimeHandles Dynamic Arrival: Processes can arrive at different times, and the scheduler dynamically adds them to the ready queue as they arrive, ensuring no process is overlooked.Time Quantum Distribution: Each process is allocated a fixed time slice (time quantum) for execution, regardless of its arrival time.Preemptive Execution: If a process doesn’t complete within its time quantum, it is preempted and added back to the queue for its next turn, even if new processes have arrived.Fair Scheduling: Even with different arrival times, all processes are treated fairly, and no process is given priority over others by default.Minimizes Starvation: New processes are regularly added to the queue, and the algorithm ensures that all processes get CPU time, reducing the risk of starvation.Efficient Queue Updates: The ready queue is updated dynamically as new processes arrive, maintaining a circular queue structure for smooth execution.Impact on Turnaround and Waiting Time: Processes arriving later may experience slightly increased waiting times, but the algorithm works to minimize delays by rotating through all tasks.Example of Round Robin Scheduling Algorithm for the Different Arrival Time: After all these we get the three times which are: Completion Time: the time taken for a process to complete.Turn Around Time: total time the process exists in the system. (completion time – arrival time).Waiting Time: total time waiting for their complete execution. (turn around time – burst time ).Turnaround Time (TAT) = Completion Time – Arrival Time.Waiting Time (WT) = TAT – Burst Time.ProcessArrival TimeBurst TimeCompletion TimeTurnaround Time (TAT)Waiting Time (WT)P10514149P217222114P334181511P456211610How to implement in a programming language: Declare arrival[], burst[], wait[], turn[] arrays and initialize them. Also declare a timer variable and initialize it to zero. To sustain the original burst array create another array (temp_burst[]) and copy all the values of burst array in it.To keep a check we create another array of bool type which keeps the record of whether a process is completed or not. we also need to maintain a queue array which contains the process indices (initially the array is filled with 0).Now we increment the timer variable until the first process arrives and when it does, we add the process index to the queue array.Now we execute the first process until the time quanta and during that time quanta, we check whether any other process has arrived or not and if it has then we add the index in the queue (by calling the fxn. queueUpdation()).Now, after doing the above steps if a process has finished, we store its exit time and execute the next process in the queue array. Else, we move the currently executed process at the end of the queue (by calling another fxn. queueMaintainence()) when the time slice expires.The above steps are then repeated until all the processes have been completely executed. If a scenario arises where there are some processes left but they have not arrived yet, then we shall wait and the CPU will remain idle during this interval.Below is the implementation of the above approach: (For the sake of simplicity, we assume that the arrival times are entered in a sorted way) C++ //C++ Program for implementing //Round Robin Algorithm //code by sparsh_cbs #include <iostream> using namespace std; void queueUpdation(int queue[],int timer,int arrival[],int n, int maxProccessIndex){ int zeroIndex; for(int i = 0; i < n; i++){ if(queue[i] == 0){ zeroIndex = i; break; } } queue[zeroIndex] = maxProccessIndex + 1; } void queueMaintainence(int queue[], int n){ for(int i = 0; (i < n-1) && (queue[i+1] != 0) ; i++){ int temp = queue[i]; queue[i] = queue[i+1]; queue[i+1] = temp; } } void checkNewArrival(int timer, int arrival[], int n, int maxProccessIndex,int queue[]){ if(timer <= arrival[n-1]){ bool newArrival = false; for(int j = (maxProccessIndex+1); j < n; j++){ if(arrival[j] <= timer){ if(maxProccessIndex < j){ maxProccessIndex = j; newArrival = true; } } } //adds the incoming process to the ready queue //(if any arrives) if(newArrival) queueUpdation(queue,timer,arrival,n, maxProccessIndex); } } //Driver Code int main(){ int n,tq, timer = 0, maxProccessIndex = 0; float avgWait = 0, avgTT = 0; cout << "\nEnter the time quanta : "; cin>>tq; cout << "\nEnter the number of processes : "; cin>>n; int arrival[n], burst[n], wait[n], turn[n], queue[n], temp_burst[n]; bool complete[n]; cout << "\nEnter the arrival time of the processes : "; for(int i = 0; i < n; i++) cin>>arrival[i]; cout << "\nEnter the burst time of the processes : "; for(int i = 0; i < n; i++){ cin>>burst[i]; temp_burst[i] = burst[i]; } for(int i = 0; i < n; i++){ //Initializing the queue and complete array complete[i] = false; queue[i] = 0; } while(timer < arrival[0]) //Incrementing Timer until the first process arrives timer++; queue[0] = 1; while(true){ bool flag = true; for(int i = 0; i < n; i++){ if(temp_burst[i] != 0){ flag = false; break; } } if(flag) break; for(int i = 0; (i < n) && (queue[i] != 0); i++){ int ctr = 0; while((ctr < tq) && (temp_burst[queue[0]-1] > 0)){ temp_burst[queue[0]-1] -= 1; timer += 1; ctr++; //Checking and Updating the ready queue until all the processes arrive checkNewArrival(timer, arrival, n, maxProccessIndex, queue); } //If a process is completed then store its exit time //and mark it as completed if((temp_burst[queue[0]-1] == 0) && (complete[queue[0]-1] == false)){ //turn array currently stores the completion time turn[queue[0]-1] = timer; complete[queue[0]-1] = true; } //checks whether or not CPU is idle bool idle = true; if(queue[n-1] == 0){ for(int i = 0; i < n && queue[i] != 0; i++){ if(complete[queue[i]-1] == false){ idle = false; } } } else idle = false; if(idle){ timer++; checkNewArrival(timer, arrival, n, maxProccessIndex, queue); } //Maintaining the entries of processes //after each premption in the ready Queue queueMaintainence(queue,n); } } for(int i = 0; i < n; i++){ turn[i] = turn[i] - arrival[i]; wait[i] = turn[i] - burst[i]; } cout << "\nProgram No.\tArrival Time\tBurst Time\tWait Time\tTurnAround Time" << endl; for(int i = 0; i < n; i++){ cout<<i+1<<"\t\t"<<arrival[i]<<"\t\t" <<burst[i]<<"\t\t"<<wait[i]<<"\t\t"<<turn[i]<<endl; } for(int i =0; i< n; i++){ avgWait += wait[i]; avgTT += turn[i]; } cout<<"\nAverage wait time : "<<(avgWait/n) <<"\nAverage Turn Around Time : "<<(avgTT/n); return 0; } Java //JAVA Program for implementing //Round Robin Algorithm // code by Sparsh_cbs import java.util.*; public class RoundRobin{ private static Scanner inp = new Scanner(System.in); //Driver Code public static void main(String[] args){ int n,tq, timer = 0, maxProccessIndex = 0; float avgWait = 0, avgTT = 0; System.out.print("\nEnter the time quanta : "); tq = inp.nextInt(); System.out.print("\nEnter the number of processes : "); n = inp.nextInt(); int arrival[] = new int[n]; int burst[] = new int[n]; int wait[] = new int[n]; int turn[] = new int[n]; int queue[] = new int[n]; int temp_burst[] = new int[n]; boolean complete[] = new boolean[n]; System.out.print("\nEnter the arrival time of the processes : "); for(int i = 0; i < n; i++) arrival[i] = inp.nextInt(); System.out.print("\nEnter the burst time of the processes : "); for(int i = 0; i < n; i++){ burst[i] = inp.nextInt(); temp_burst[i] = burst[i]; } for(int i = 0; i < n; i++){ //Initializing the queue and complete array complete[i] = false; queue[i] = 0; } while(timer < arrival[0]) //Incrementing Timer until the first process arrives timer++; queue[0] = 1; while(true){ boolean flag = true; for(int i = 0; i < n; i++){ if(temp_burst[i] != 0){ flag = false; break; } } if(flag) break; for(int i = 0; (i < n) && (queue[i] != 0); i++){ int ctr = 0; while((ctr < tq) && (temp_burst[queue[0]-1] > 0)){ temp_burst[queue[0]-1] -= 1; timer += 1; ctr++; //Updating the ready queue until all the processes arrive checkNewArrival(timer, arrival, n, maxProccessIndex, queue); } if((temp_burst[queue[0]-1] == 0) && (complete[queue[0]-1] == false)){ turn[queue[0]-1] = timer; //turn currently stores exit times complete[queue[0]-1] = true; } //checks whether or not CPU is idle boolean idle = true; if(queue[n-1] == 0){ for(int k = 0; k < n && queue[k] != 0; k++){ if(complete[queue[k]-1] == false){ idle = false; } } } else idle = false; if(idle){ timer++; checkNewArrival(timer, arrival, n, maxProccessIndex, queue); } //Maintaining the entries of processes after each premption in the ready Queue queueMaintainence(queue,n); } } for(int i = 0; i < n; i++){ turn[i] = turn[i] - arrival[i]; wait[i] = turn[i] - burst[i]; } System.out.print("\nProgram No.\tArrival Time\tBurst Time\tWait Time\tTurnAround Time" + "\n"); for(int i = 0; i < n; i++){ System.out.print(i+1+"\t\t"+arrival[i]+"\t\t"+burst[i] +"\t\t"+wait[i]+"\t\t"+turn[i]+ "\n"); } for(int i =0; i< n; i++){ avgWait += wait[i]; avgTT += turn[i]; } System.out.print("\nAverage wait time : "+(avgWait/n) +"\nAverage Turn Around Time : "+(avgTT/n)); } public static void queueUpdation(int queue[],int timer,int arrival[],int n, int maxProccessIndex){ int zeroIndex = -1; for(int i = 0; i < n; i++){ if(queue[i] == 0){ zeroIndex = i; break; } } if(zeroIndex == -1) return; queue[zeroIndex] = maxProccessIndex + 1; } public static void checkNewArrival(int timer, int arrival[], int n, int maxProccessIndex,int queue[]){ if(timer <= arrival[n-1]){ boolean newArrival = false; for(int j = (maxProccessIndex+1); j < n; j++){ if(arrival[j] <= timer){ if(maxProccessIndex < j){ maxProccessIndex = j; newArrival = true; } } } if(newArrival) //adds the index of the arriving process(if any) queueUpdation(queue,timer,arrival,n, maxProccessIndex); } } public static void queueMaintainence(int queue[], int n){ for(int i = 0; (i < n-1) && (queue[i+1] != 0) ; i++){ int temp = queue[i]; queue[i] = queue[i+1]; queue[i+1] = temp; } } } Python # Python program for implementing Round Robin Algorithm def queueUpdation(queue, timer, arrival, n, maxProccessIndex): zeroIndex = -1 for i in range(n): if(queue[i] == 0): zeroIndex = i break if(zeroIndex == -1): return queue[zeroIndex] = maxProccessIndex + 1 def checkNewArrival(timer, arrival, n, maxProccessIndex, queue): if(timer <= arrival[n-1]): newArrival = False for j in range(maxProccessIndex+1, n): if(arrival[j] <= timer): if(maxProccessIndex < j): maxProccessIndex = j newArrival = True # adds the index of the arriving process(if any) if(newArrival): queueUpdation(queue, timer, arrival, n, maxProccessIndex) def queueMaintainence(queue, n): for i in range(n-1): if(queue[i+1] != 0): queue[i], queue[i+1] = queue[i+1], queue[i] timer, maxProccessIndex = 0, 0 avgWait, avgTT = 0, 0 print("\nEnter the time quanta :", end=" ") tq = int(input()) print("\nEnter the number of processes :", end=" ") n = int(input()) arrival = [0]*n burst = [0]*n wait = [0]*n turn = [0]*n queue = [0]*n temp_burst = [0]*n complete = [False]*n print("\nEnter the arrival time of the processes :", end=" ") for i in range(n): arrival[i] = int(input()) print("\nEnter the burst time of the processes :", end=" ") for i in range(n): burst[i] = int(input()) temp_burst[i] = burst[i] for i in range(n): # Initializing the queue and complete array complete[i] = False queue[i] = 0 while(timer < arrival[0]): # Incrementing Timer until the first process arrives timer += 1 queue[0] = 1 while(True): flag = True for i in range(n): if(temp_burst[i] != 0): flag = False break if(flag): break for i in range(n and queue[i] != 0): ctr = 0 while((ctr < tq) and (temp_burst[queue[0]-1] > 0)): temp_burst[queue[0]-1] -= 1 timer += 1 ctr += 1 # Updating the ready queue until all the processes arrive checkNewArrival(timer, arrival, n, maxProccessIndex, queue) if((temp_burst[queue[0]-1] == 0) and (complete[queue[0]-1] == False)): # turn currently stores exit times turn[queue[0]-1] = timer complete[queue[0]-1] = True # checks whether or not CPU is idle idle = True if(queue[n-1] == 0): for k in range(n): if(queue[k] != 0): if(complete[queue[k]-1] == False): idle = False else: idle = False if(idle): timer += 1 checkNewArrival(timer, arrival, n, maxProccessIndex, queue) # Maintaining the entries of processes aftereach premption in the ready Queue queueMaintainence(queue, n) for i in range(n): turn[i] = turn[i] - arrival[i] wait[i] = turn[i] - burst[i] print("\nProgram No.\tArrival Time\tBurst Time\tWait Time\tTurnAround Time\n") for i in range(n): print(i+1, "\t\t", arrival[i], "\t\t", burst[i], "\t\t", wait[i], "\t\t", turn[i], "\n") for i in range(n): avgWait += wait[i] avgTT += turn[i] print("\nAverage wait time : ", (avgWait//n)) print("\nAverage Turn Around Time : ", (avgTT//n)) # This code is contributed by lokeshmvs21. C# // C# program to implement Round Robin // Scheduling with different arrival time using System; class GFG { public static void roundRobin(String[] p, int[] a, int[] b, int n) { // result of average times int res = 0; int resc = 0; // for sequence storage String seq = ""; // copy the burst array and arrival array // for not effecting the actual array int[] res_b = new int[b.Length]; int[] res_a = new int[a.Length]; for (int i = 0; i < res_b.Length; i++) { res_b[i] = b[i]; res_a[i] = a[i]; } // critical time of system int t = 0; // for store the waiting time int[] w = new int[p.Length]; // for store the Completion time int[] comp = new int[p.Length]; while (true) { Boolean flag = true; for (int i = 0; i < p.Length; i++) { // these condition for if // arrival is not on zero // check that if there come before qtime if (res_a[i] <= t) { if (res_a[i] <= n) { if (res_b[i] > 0) { flag = false; if (res_b[i] > n) { // make decrease the b time t = t + n; res_b[i] = res_b[i] - n; res_a[i] = res_a[i] + n; seq += "->" + p[i]; } else { // for last time t = t + res_b[i]; // store comp time comp[i] = t - a[i]; // store wait time w[i] = t - b[i] - a[i]; res_b[i] = 0; // add sequence seq += "->" + p[i]; } } } else if (res_a[i] > n) { // is any have less arrival time // the coming process then execute // them for (int j = 0; j < p.Length; j++) { // compare if (res_a[j] < res_a[i]) { if (res_b[j] > 0) { flag = false; if (res_b[j] > n) { t = t + n; res_b[j] = res_b[j] - n; res_a[j] = res_a[j] + n; seq += "->" + p[j]; } else { t = t + res_b[j]; comp[j] = t - a[j]; w[j] = t - b[j] - a[j]; res_b[j] = 0; seq += "->" + p[j]; } } } } // now the previous process // according to ith is process if (res_b[i] > 0) { flag = false; // Check for greaters if (res_b[i] > n) { t = t + n; res_b[i] = res_b[i] - n; res_a[i] = res_a[i] + n; seq += "->" + p[i]; } else { t = t + res_b[i]; comp[i] = t - a[i]; w[i] = t - b[i] - a[i]; res_b[i] = 0; seq += "->" + p[i]; } } } } // if no process is come on the critical else if (res_a[i] > t) { t++; i--; } } // for exit the while loop if (flag) { break; } } Console.WriteLine("name ctime wtime"); for (int i = 0; i < p.Length; i++) { Console.WriteLine(" " + p[i] + "\t" + comp[i] + "\t" + w[i]); res = res + w[i]; resc = resc + comp[i]; } Console.WriteLine("Average waiting time is " + (float)res / p.Length); Console.WriteLine("Average compilation time is " + (float)resc / p.Length); Console.WriteLine("Sequence is like that " + seq); } // Driver Code public static void Main(String[] args) { // name of the process String[] name = { "p1", "p2", "p3", "p4" }; // arrival for every process int[] arrivaltime = { 0, 1, 2, 3 }; // burst time for every process int[] bursttime = { 10, 4, 5, 3 }; // quantum time of each process int q = 3; // cal the function for output roundRobin(name, arrivaltime, bursttime, q); } } // This code is contributed by Rajput-Ji JavaScript <script> const queueUpdation = (queue, timer, arrival, n, maxProccessIndex) => { let zeroIndex; for (let i = 0; i < n; i++) { if (queue[i] == 0) { zeroIndex = i; break; } } queue[zeroIndex] = maxProccessIndex + 1; } const queueMaintainence = (queue, n) => { for (let i = 0; (i < n - 1) && (queue[i + 1] != 0); i++) { let temp = queue[i]; queue[i] = queue[i + 1]; queue[i + 1] = temp; } } const checkNewArrival = (timer, arrival, n, maxProccessIndex, queue) => { if (timer <= arrival[n - 1]) { let newArrival = false; for (let j = (maxProccessIndex + 1); j < n; j++) { if (arrival[j] <= timer) { if (maxProccessIndex < j) { maxProccessIndex = j; newArrival = true; } } } //adds the incoming process to the ready queue //(if any arrives) if (newArrival) queueUpdation(queue, timer, arrival, n, maxProccessIndex); } } //Driver Code let n = 4; let tq = 2; let timer = 0; let maxProccessIndex = 0; let avgWait = 0; let avgTT = 0; const wait = []; const turn = []; const queue = []; const temp_burst = []; const complete = []; const arrival = [0, 1, 2, 3]; const burst = [5, 4, 2, 1]; for (let i = 0; i < n; i++) { temp_burst[i] = burst[i]; } for (let i = 0; i < n; i++) { //Initializing the queue and complete array complete[i] = false; queue[i] = 0; } while (timer < arrival[0]) //Incrementing Timer until the first process arrives timer++; queue[0] = 1; while (true) { let flag = true; for (let i = 0; i < n; i++) { if (temp_burst[i] != 0) { flag = false; break; } } if (flag) break; for (let i = 0; (i < n) && (queue[i] != 0); i++) { let ctr = 0; while ((ctr < tq) && (temp_burst[queue[0] - 1] > 0)) { temp_burst[queue[0] - 1] -= 1; timer += 1; ctr++; // Checking and Updating the ready queue until all the processes arrive checkNewArrival(timer, arrival, n, maxProccessIndex, queue); } // If a process is completed then store its exit time // and mark it as completed if ((temp_burst[queue[0] - 1] == 0) && (complete[queue[0] - 1] == false)) { //turn array currently stores the completion time turn[queue[0] - 1] = timer; complete[queue[0] - 1] = true; } // checks whether or not CPU is idle let idle = true; if (queue[n - 1] == 0) { for (let i = 0; i < n && queue[i] != 0; i++) { if (complete[queue[i] - 1] == false) { idle = false; } } } else idle = false; if (idle) { timer++; checkNewArrival(timer, arrival, n, maxProccessIndex, queue); } //Maintaining the entries of processes //after each premption in the ready Queue queueMaintainence(queue, n); } } for (let i = 0; i < n; i++) { turn[i] = turn[i] - arrival[i]; wait[i] = turn[i] - burst[i]; } console.log(`Time Quanta : ${tq}`); console.log(`Number of Processes : ${n}`); console.log(`Arrival Time of Processes : ${arrival}`); console.log(`Burst Time of Processes : ${burst}`); console.log("\nProgram No.\tArrival Time\tBurst Time\tWait Time\tTurnAround Time\n"); for (let i = 0; i < n; i++) { console.log(`${i + 1}\t\t\t ${arrival[i]}\t\t\t ${burst[i]}\t\t\t\t ${wait[i]} \t\t\t\t ${turn[i]} \n`); } for (let i = 0; i < n; i++) { avgWait += wait[i]; avgTT += turn[i]; } console.log(`\nAverage wait time : ${avgWait / n}`); console.log(`\nAverage Turn Around Time : ${avgTT / n}`); // This code is contributed by akashish_. </script> Output: Enter the time quanta : 2Enter the number of processes : 4Enter the arrival time of the processes : 0 1 2 3Enter the burst time of the processes : 5 4 2 1Program No. Arrival Time Burst Time Wait Time TurnAround Time1 0 5 7 122 1 4 6 103 2 2 2 44 3 1 5 6Average wait time : 5Average Turn Around Time : 8In case of any queries or a problem with the code, please write it in the comment section. Note: A slightly optimized version of the above-implemented code could be done by using Queue data structure as follows: C++ #include <bits/stdc++.h> using namespace std; struct Process { int pid; int arrivalTime; int burstTime; int burstTimeRemaining; // the amount of CPU time remaining after each execution int completionTime; int turnaroundTime; int waitingTime; bool isComplete; bool inQueue; }; /* * At every time quantum or when a process has been executed before the time quantum, * check for any new arrivals and push them into the queue */ void checkForNewArrivals(Process processes[], const int n, const int currentTime, queue<int> &readyQueue) { for (int i = 0; i < n; i++) { Process p = processes[i]; // checking if any processes has arrived // if so, push them in the ready Queue. if (p.arrivalTime <= currentTime && !p.inQueue && !p.isComplete) { processes[i].inQueue = true; readyQueue.push(i); } } } /* * Context switching takes place at every time quantum * At every iteration, the burst time of the processes in the queue are handled using this method */ void updateQueue(Process processes[], const int n, const int quantum, queue<int> &readyQueue, int &currentTime, int &programsExecuted) { int i = readyQueue.front(); readyQueue.pop(); // if the process is going to be finished executing, // ie, when it's remaining burst time is less than time quantum // mark it completed and increment the current time // and calculate its waiting time and turnaround time if (processes[i].burstTimeRemaining <= quantum) { processes[i].isComplete = true; currentTime += processes[i].burstTimeRemaining; processes[i].completionTime = currentTime; processes[i].waitingTime = processes[i].completionTime - processes[i].arrivalTime - processes[i].burstTime; processes[i].turnaroundTime = processes[i].waitingTime + processes[i].burstTime; if (processes[i].waitingTime < 0) processes[i].waitingTime = 0; processes[i].burstTimeRemaining = 0; // if all the processes are not yet inserted in the queue, // then check for new arrivals if (programsExecuted != n) { checkForNewArrivals(processes, n, currentTime, readyQueue); } } else { // the process is not done yet. But it's going to be pre-empted // since one quantum is used // but first subtract the time the process used so far processes[i].burstTimeRemaining -= quantum; currentTime += quantum; // if all the processes are not yet inserted in the queue, // then check for new arrivals if (programsExecuted != n) { checkForNewArrivals(processes, n, currentTime, readyQueue); } // insert the incomplete process back into the queue readyQueue.push(i); } } /* * Just a function that outputs the result in terms of their PID. */ void output(Process processes[], const int n) { double avgWaitingTime = 0; double avgTurntaroundTime = 0; // sort the processes array by processes.PID sort(processes, processes + n, [](const Process &p1, const Process &p2) { return p1.pid < p2.pid; }); for (int i = 0; i < n; i++) { cout << "Process " << processes[i].pid << ": Waiting Time: " << processes[i].waitingTime << " Turnaround Time: " << processes[i].turnaroundTime << endl; avgWaitingTime += processes[i].waitingTime; avgTurntaroundTime += processes[i].turnaroundTime; } cout << "Average Waiting Time: " << avgWaitingTime / n << endl; cout << "Average Turnaround Time: " << avgTurntaroundTime / n << endl; } /* * This function assumes that the processes are already sorted according to their arrival time */ void roundRobin(Process processes[], int n, int quantum) { queue<int> readyQueue; readyQueue.push(0); // initially, pushing the first process which arrived first processes[0].inQueue = true; int currentTime = 0; // holds the current time after each process has been executed int programsExecuted = 0; // holds the number of programs executed so far while (!readyQueue.empty()) { updateQueue(processes, n, quantum, readyQueue, currentTime, programsExecuted); } } int main() { int n, quantum; cout << "Enter the number of processes: "; cin >> n; cout << "Enter time quantum: "; cin >> quantum; Process processes[n + 1]; for (int i = 0; i < n; i++) { cout << "Enter arrival time and burst time of each process " << i + 1 << ": "; cin >> processes[i].arrivalTime; cin >> processes[i].burstTime; processes[i].burstTimeRemaining = processes[i].burstTime; processes[i].pid = i + 1; cout << endl; } // stl sort in terms of arrival time sort(processes, processes + n, [](const Process &p1, const Process &p2) { return p1.arrivalTime < p2.arrivalTime; }); roundRobin(processes, n, quantum); output(processes, n); return 0; } Java // Java Code import java.util.Arrays; import java.util.LinkedList; import java.util.Queue; class GFG { // At every time quantum or when a process has been // executed before the time quantum, check for any new // arrivals and push them into the queue public static void checkForNewArrivals(Process[] processes, int n, int currentTime, Queue<Integer> readyQueue) { for (int i = 0; i < n; i++) { Process p = processes[i]; // checking if any processes has arrived // if so, push them in the ready Queue. if (p.arrivalTime <= currentTime && !p.inQueue && !p.isComplete) { processes[i].inQueue = true; readyQueue.add(i); } } } // Context switching takes place at every time quantum // At every iteration, the burst time of the processes // in the queue are handled using this method public static void updateQueue(Process[] processes, int n, int quantum, Queue<Integer> readyQueue, int currentTime, int programsExecuted) { int i = readyQueue.remove(); // if the process is going to be finished executing, // ie, when it's remaining burst time is less than // time quantum mark it completed and increment the // current time and calculate its waiting time and // turnaround time if (processes[i].burstTimeRemaining <= quantum) { processes[i].isComplete = true; currentTime += processes[i].burstTimeRemaining; processes[i].completionTime = currentTime; processes[i].waitingTime = processes[i].completionTime - processes[i].arrivalTime - processes[i].burstTime; processes[i].turnaroundTime = processes[i].waitingTime + processes[i].burstTime; if (processes[i].waitingTime < 0) processes[i].waitingTime = 0; processes[i].burstTimeRemaining = 0; // if all the processes are not yet inserted in // the queue, then check for new arrivals if (programsExecuted != n) { checkForNewArrivals( processes, n, currentTime, readyQueue); } } else { // the process is not done yet. But it's going // to be pre-empted since one quantum is used // but first subtract the time the process used // so far processes[i].burstTimeRemaining -= quantum; currentTime += quantum; // if all the processes are not yet inserted in // the queue, then check for new arrivals if (programsExecuted != n) { checkForNewArrivals( processes, n, currentTime, readyQueue); } // insert the incomplete process back into the // queue readyQueue.add(i); } } // Just a function that outputs the result in terms of // their PID. public static void output(Process[] processes, int n) { double avgWaitingTime = 0; double avgTurntaroundTime = 0; // sort the processes array by processes.PID Arrays.sort(processes, (Process p1, Process p2) -> { return p1.pid - p2.pid; }); for (int i = 0; i < n; i++) { System.out.println( "Process " + processes[i].pid + ": Waiting Time: " + processes[i].waitingTime + " Turnaround Time: " + processes[i].turnaroundTime); avgWaitingTime += processes[i].waitingTime; avgTurntaroundTime += processes[i].turnaroundTime; } System.out.println("Average Waiting Time: " + avgWaitingTime / n); System.out.println("Average Turnaround Time: " + avgTurntaroundTime / n); } /* * This function assumes that the processes are already * sorted according to their arrival time */ public static void roundRobin(Process[] processes, int n, int quantum) { Queue<Integer> readyQueue = new LinkedList<Integer>(); readyQueue.add(0); // initially, pushing the first // process which arrived first processes[0].inQueue = true; int currentTime = 0; // holds the current time after each // process has been executed int programsExecuted = 0; // holds the number of programs executed so // far while (!readyQueue.isEmpty()) { updateQueue(processes, n, quantum, readyQueue, currentTime, programsExecuted); } } public static class Process { int pid; int arrivalTime; int burstTime; int burstTimeRemaining; // the amount of CPU time // remaining after each // execution int completionTime; int turnaroundTime; int waitingTime; boolean isComplete; boolean inQueue; } public static void main(String[] args) { int n, quantum; System.out.println( "Enter the number of processes: "); n = Integer.parseInt(System.console().readLine()); System.out.println("Enter time quantum: "); quantum = Integer.parseInt(System.console().readLine()); Process[] processes = new Process[n + 1]; for (int i = 0; i < n; i++) { System.out.println( "Enter arrival time and burst time of each process " + (i + 1) + ": "); processes[i].arrivalTime = Integer.parseInt( System.console().readLine()); processes[i].burstTime = Integer.parseInt( System.console().readLine()); processes[i].burstTimeRemaining = processes[i].burstTime; processes[i].pid = i + 1; System.out.println(); } // stl sort in terms of arrival time Arrays.sort(processes, (Process p1, Process p2) -> { return p1.arrivalTime - p2.arrivalTime; }); roundRobin(processes, n, quantum); output(processes, n); } } // This code is contributed by akashish__ Python # Python Code class Process: def __init__(self): self.pid = 0 self.arrivalTime = 0 self.burstTime = 0 self.burstTimeRemaining = 0 self.completionTime = 0 self.turnaroundTime = 0 self.waitingTime = 0 self.isComplete = False self.inQueue = False # At every time quantum or when a process has been executed before the time quantum, # check for any new arrivals and push them into the queue def check_for_new_arrivals(processes, n, current_time, ready_queue): for i in range(n): p = processes[i] # checking if any processes has arrived # if so, push them in the ready Queue. if p.arrivalTime <= current_time and not p.inQueue and not p.isComplete: processes[i].inQueue = True ready_queue.append(i) # Context switching takes place at every time quantum # At every iteration, the burst time of the processes in the queue are handled using this method def update_queue(processes, n, quantum, ready_queue, current_time, programs_executed): i = ready_queue[0] ready_queue.pop(0) # if the process is going to be finished executing, # ie, when it's remaining burst time is less than time quantum # mark it completed and increment the current time # and calculate its waiting time and turnaround time if processes[i].burstTimeRemaining <= quantum: processes[i].isComplete = True current_time += processes[i].burstTimeRemaining processes[i].completionTime = current_time processes[i].waitingTime = processes[i].completionTime - processes[i].arrivalTime - processes[i].burstTime processes[i].turnaroundTime = processes[i].waitingTime + processes[i].burstTime if processes[i].waitingTime < 0: processes[i].waitingTime = 0 processes[i].burstTimeRemaining = 0 # if all the processes are not yet inserted in the queue, # then check for new arrivals if programs_executed != n: check_for_new_arrivals(processes, n, current_time, ready_queue) else: # the process is not done yet. But it's going to be pre-empted # since one quantum is used # but first subtract the time the process used so far processes[i].burstTimeRemaining -= quantum current_time += quantum # if all the processes are not yet inserted in the queue, # then check for new arrivals if programs_executed != n: check_for_new_arrivals(processes, n, current_time, ready_queue) # insert the incomplete process back into the queue ready_queue.append(i) # Just a function that outputs the result in terms of their PID. def output(processes, n): avg_waiting_time = 0 avg_turntaround_time = 0 # sort the processes array by processes.PID processes.sort(key=lambda p: p.pid) for i in range(n): print("Process ", processes[i].pid, ": Waiting Time: ", processes[i].waitingTime, " Turnaround Time: ", processes[i].turnaroundTime, sep="") avg_waiting_time += processes[i].waitingTime avg_turntaround_time += processes[i].turnaroundTime print("Average Waiting Time: ", avg_waiting_time / n) print("Average Turnaround Time: ", avg_turntaround_time / n) # This function assumes that the processes are already sorted according to their arrival time def round_robin(processes, n, quantum): ready_queue = [] ready_queue.append(0) # initially, pushing the first process which arrived first processes[0].inQueue = True current_time = 0 # holds the current time after each process has been executed programs_executed = 0 # holds the number of programs executed so far while len(ready_queue) != 0: update_queue(processes, n, quantum, ready_queue, current_time, programs_executed) def main(): n = int(input("Enter the number of processes: ")) quantum = int(input("Enter time quantum: ")) processes = [] for i in range(n): print("Enter arrival time and burst time of each process ", i + 1, ": ", sep="", end="") arrival_time = int(input()) burst_time = int(input()) proc = Process() proc.arrivalTime = arrival_time proc.burstTime = burst_time proc.burstTimeRemaining = burst_time proc.pid = i + 1 processes.append(proc) print("") # stl sort in terms of arrival time processes.sort(key=lambda p: p.arrivalTime) round_robin(processes, n, quantum) output(processes, n) main() # This code is contributed by akashish__ C# // C# Code using System; using System.Collections.Generic; using System.Linq; class GFG { // At every time quantum or when a process has been // executed before the time quantum, check for any new // arrivals and push them into the queue public static void checkForNewArrivals(Process[] processes, int n, int currentTime, Queue<int> readyQueue) { for (int i = 0; i < n; i++) { Process p = processes[i]; // checking if any processes has arrived // if so, push them in the ready Queue. if (p.arrivalTime <= currentTime && !p.inQueue && !p.isComplete) { processes[i].inQueue = true; readyQueue.Enqueue(i); } } } // Context switching takes place at every time quantum // At every iteration, the burst time of the processes // in the queue are handled using this method public static void updateQueue(Process[] processes, int n, int quantum, Queue<int> readyQueue, int currentTime, int programsExecuted) { int i = readyQueue.Dequeue(); // if the process is going to be finished executing, // ie, when it's remaining burst time is less than // time quantum mark it completed and increment the // current time and calculate its waiting time and // turnaround time if (processes[i].burstTimeRemaining <= quantum) { processes[i].isComplete = true; currentTime += processes[i].burstTimeRemaining; processes[i].completionTime = currentTime; processes[i].waitingTime = processes[i].completionTime - processes[i].arrivalTime - processes[i].burstTime; processes[i].turnaroundTime = processes[i].waitingTime + processes[i].burstTime; if (processes[i].waitingTime < 0) processes[i].waitingTime = 0; processes[i].burstTimeRemaining = 0; // if all the processes are not yet inserted in // the queue, then check for new arrivals if (programsExecuted != n) { checkForNewArrivals( processes, n, currentTime, readyQueue); } } else { // the process is not done yet. But it's going // to be pre-empted since one quantum is used // but first subtract the time the process used // so far processes[i].burstTimeRemaining -= quantum; currentTime += quantum; // if all the processes are not yet inserted in // the queue, then check for new arrivals if (programsExecuted != n) { checkForNewArrivals( processes, n, currentTime, readyQueue); } // insert the incomplete process back into the // queue readyQueue.Enqueue(i); } } // Just a function that outputs the result in terms of // their PID. public static void output(Process[] processes, int n) { double avgWaitingTime = 0; double avgTurntaroundTime = 0; // sort the processes array by processes.PID processes = processes.OrderBy(p => p.pid).ToArray(); for (int i = 0; i < n; i++) { Console.WriteLine("Process " + processes[i].pid + ": Waiting Time: " + processes[i].waitingTime + " Turnaround Time: " + processes[i].turnaroundTime); avgWaitingTime += processes[i].waitingTime; avgTurntaroundTime += processes[i].turnaroundTime; } Console.WriteLine("Average Waiting Time: " + avgWaitingTime / n); Console.WriteLine("Average Turnaround Time: " + avgTurntaroundTime / n); } /* * This function assumes that the processes are already * sorted according to their arrival time */ public static void roundRobin(Process[] processes, int n, int quantum) { Queue<int> readyQueue = new Queue<int>(); readyQueue.Enqueue(0); // initially, pushing the first // process which arrived first processes[0].inQueue = true; int currentTime = 0; // holds the current time after each // process has been executed int programsExecuted = 0; // holds the number of programs executed so // far while (readyQueue.Count() > 0) { updateQueue(processes, n, quantum, readyQueue, currentTime, programsExecuted); } } public class Process { public int pid; public int arrivalTime; public int burstTime; public int burstTimeRemaining; // the amount of CPU time // remaining after each // execution public int completionTime; public int turnaroundTime; public int waitingTime; public bool isComplete; public bool inQueue; } public static void Main(String[] args) { int n, quantum; Console.WriteLine("Enter the number of processes: "); n = int.Parse(Console.ReadLine()); Console.WriteLine("Enter time quantum: "); quantum = int.Parse(Console.ReadLine()); Process[] processes = new Process[n + 1]; for (int i = 0; i < n; i++) { Console.WriteLine("Enter arrival time and burst time of each process " + (i + 1) + ": "); processes[i].arrivalTime = int.Parse( Console.ReadLine()); processes[i].burstTime = int.Parse( Console.ReadLine()); processes[i].burstTimeRemaining = processes[i].burstTime; processes[i].pid = i + 1; Console.WriteLine(); } // stl sort in terms of processes.OrderBy(p => p.arrivalTime).ToArray(); roundRobin(processes, n, quantum); output(processes, n); } } // This code is contributed by akashish__ JavaScript const readline = require('readline-sync'); class Process { constructor(pid, arrivalTime, burstTime) { this.pid = pid; this.arrivalTime = arrivalTime; this.burstTime = burstTime; this.burstTimeRemaining = burstTime; this.completionTime = 0; this.turnaroundTime = 0; this.waitingTime = 0; this.isComplete = false; this.inQueue = false; } } function checkForNewArrivals(processes, currentTime, readyQueue) { processes.forEach((p, i) => { if (p.arrivalTime <= currentTime && !p.inQueue && !p.isComplete) { processes[i].inQueue = true; readyQueue.push(i); } }); } function updateQueue(processes, quantum, readyQueue, currentTime, programsExecuted) { const i = readyQueue.shift(); if (processes[i].burstTimeRemaining <= quantum) { processes[i].isComplete = true; currentTime += processes[i].burstTimeRemaining; processes[i].completionTime = currentTime; processes[i].waitingTime = processes[i].completionTime - processes[i].arrivalTime - processes[i].burstTime; processes[i].turnaroundTime = processes[i].waitingTime + processes[i].burstTime; if (processes[i].waitingTime < 0) processes[i].waitingTime = 0; processes[i].burstTimeRemaining = 0; if (programsExecuted !== processes.length - 1) { checkForNewArrivals(processes, currentTime, readyQueue); } } else { processes[i].burstTimeRemaining -= quantum; currentTime += quantum; if (programsExecuted !== processes.length - 1) { checkForNewArrivals(processes, currentTime, readyQueue); } readyQueue.push(i); } } function output(processes) { let avgWaitingTime = 0; let avgTurnaroundTime = 0; processes.sort((p1, p2) => p1.pid - p2.pid); processes.forEach(p => { console.log(`Process ${p.pid}: Waiting Time: ${p.waitingTime} Turnaround Time: ${p.turnaroundTime}`); avgWaitingTime += p.waitingTime; avgTurnaroundTime += p.turnaroundTime; }); console.log(`Average Waiting Time: ${avgWaitingTime / processes.length}`); console.log(`Average Turnaround Time: ${avgTurnaroundTime / processes.length}`); } function roundRobin(processes, quantum) { const readyQueue = [0]; processes[0].inQueue = true; let currentTime = 0; let programsExecuted = 0; while (readyQueue.length > 0) { updateQueue(processes, quantum, readyQueue, currentTime, programsExecuted); } } function main() { const n = parseInt(readline.question("Enter the number of processes: ")); const quantum = parseInt(readline.question("Enter time quantum: ")); const processes = Array.from({ length: n }, (_, i) => { console.log(`Enter arrival time and burst time of each process ${i + 1}: `); const arrivalTime = parseInt(readline.question("Arrival Time: ")); const burstTime = parseInt(readline.question("Burst Time: ")); return new Process(i + 1, arrivalTime, burstTime); }); processes.sort((p1, p2) => p1.arrivalTime - p2.arrivalTime); roundRobin(processes, quantum); output(processes); } main(); Enter the arrival time and burst time of each process: 0 51 42 23 1Enter the number of processes: 4Enter time quantum: 2Process 1: Waiting Time: 7 Turnaround Time: 12Process 2: Waiting Time: 6 Turnaround Time: 10Process 3: Waiting Time: 2 Turnaround Time: 4Process 4: Waiting Time: 5 Turnaround Time: 6Average Waiting Time: 5Average Turnaround Time: 8 Kickstart your Java journey with our online course on Java Programming, covering everything from basics to advanced concepts. Complete real-world coding challenges and gain hands-on experience. Join the Three 90 Challenge—finish 90% in 90 days for a 90% refund. Start mastering Java today!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum/Algorithm for Dynamic Time out timer Calculation/Difference between Round trip time (RTT) and Time to live (TTL)/Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms/Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm/Round Robin Scheduling Algorithm with Different Arrival Time
https://www.geeksforgeeks.org/round-robin-scheduling-with-different-arrival-times?ref=asr10
PHP
Round Robin Scheduling Algorithm with Different Arrival Time
What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, jQWidgets jqxTreeMap width Property, Round Robin Scheduling Algorithm with Different Arrival Time, Difference between Flow and TypeScript, jQWidgets jqxTree destroy() Method, jQWidgets jqxTree collapseAll() Method, jQWidgets jqxScrollView buttonsOffset Property, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, jQWidgets jqxListBox enableHover Property, Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxSlider buttonsPosition Property, Difference between Round trip time (RTT) and Time to live (TTL), jQWidgets jqxSlider rtl Property, jQWidgets jqxTooltip opacity Property, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, jQWidgets jqxToolBar height Property, PHP, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, Node.js date-and-time Date.transform() Method, TypeScript Optional Parameters, jQWidgets jqxToolBar theme Property, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, Steps to Diagnose and Resolve a Slow Network, How to use Optional Chaining with Arrays and Functions in TypeScript ?, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, jQWidgets jqxScrollView showButtons Property, Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms, jQWidgets jqxScrollView disabled Property, jQWidgets jqxSplitter destroy() Method, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, jQWidgets jqxTree collapseItem() Method, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), jQWidgets jqxSortable opacity Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, jQWidgets jqxSlider height Property, jQWidgets jqxSwitchButton onLabel Property, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, jQWidgets jqxToolBar tools Property, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTree width Property, jQWidgets jqxTree clear() Method, TLS Handshake?, Algorithm for Dynamic Time out timer Calculation, Adhoc TCP, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, jQWidgets jqxTabs position Property, Differences between Wireless Adhoc Network and Wireless Sensor Network, jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, Impact of Three-way Handshake and Slow Start Algorithm, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, How to Sort an Array Having Optional Properties in TypeScript ?
GeeksforGeeks
null
28 Jan, 2024
Selfish Round Robin CPU Scheduling 28 Jan, 2024 Prerequisite – Program for Round Robin scheduling In the traditional Round Robin scheduling algorithm, all processes were treated equally for processing. The objective of the Selfish Round Robin is to give better service to processes that have been executing for a while than to newcomers. It’s a more logical and superior implementation compared to the normal Round Robin algorithm. What is the Selfish Round Robin scheduling algorithm?The Selfish Round Robin (SRR) scheduling algorithm is a modification of the traditional Round Robin algorithm. The objective of SRR is to give better service to processes that have been executing for a while than to newcomers. In SRR, processes in the ready list are partitioned into two lists: NEW and ACCEPTED. The New processes wait while Accepted processes are serviced by the Round Robin. The priority of a new process increases at the rate ‘a’ while the priority of an accepted process increases at the rate ‘b’. How does SRR scheduling ensure fairness among processes?A: SRR scheduling ensures fairness among processes by providing each process with an equal amount of CPU time. This is achieved by using a Round Robin approach, where each process is given a time quantum to execute. Once a process completes its time quantum, it is placed at the end of the queue, and the next process is given a chance to execute. Is SRR scheduling suitable for real-time systems?A: No, SRR scheduling is not suitable for real-time systems that require strict timing constraints. In such systems, it is essential to ensure that high-priority processes receive CPU time when they need it, which is not possible with SRR scheduling. Implementation: Processes in the ready list are partitioned into two lists: NEW and ACCEPTED. The New processes wait while Accepted processes are serviced by the Round Robin. Priority of a new process increases at rate ‘a’ while the priority of an accepted process increases at rate ‘b’. When the priority of a new process reaches the priority of an accepted process, that new process becomes accepted. If all accepted processes finish, the highest priority new process is accepted. Let’s trace out the general working of this algorithm:- STEP 1: Assume that initially there are no ready processes, when the first one, A, arrives. It has priority 0, to begin with. Since there are no other accepted processes, A is accepted immediately. STEP 2: After a while, another process, B, arrives. As long as b / a < 1, B’s priority will eventually catch up to A’s, so it is accepted; now both A and B have the same priority. STEP 3: All accepted processes share a common priority (which rises at rate b ); that makes this policy easy to implement i.e any new process’s priority is bound to get accepted at some point. So no process has to experience starvation. STEP 4: Even if b / a > 1, A will eventually finish, and then B can be accepted. Adjusting the parameters a and b : -> If b / a >= 1, a new process is not accepted until all the accepted processes have finished, so SRR becomes FCFS. -> If b / a = 1, all processes are accepted immediately, so SRR becomes RR. -> If 0 < b / a < 1, accepted processes are selfish, but not completely. Example on Selfish Round Robin – Solution (where a = 2 and b = 1) – Explanation: Process A gets accepted as soon as it comes at time t = 0. So its priority is increased only by ‘b’ i.e ‘1’ after each second. B enters at time t = 1 and goes to the waiting queue. So its priority gets increased by ‘a’ i.e. ‘2’ at time t = 2. At this point priority of A = priority of B = 2. So now both processes A & B are in the accepted queue and are executed in a round-robin fashion. At time t = 3 process C enters the waiting queue. At time t = 6 the priority of process C catches up to the priority of process B and then they start executing in a Round Robin manner. When B finishes execution at time t = 10, D is automatically promoted to the accepted queue. Similarly, when D finishes execution at time t = 15, E is automatically promoted to the accepted queue. Advantages: Fairness: SRR scheduling ensures fairness among all processes by providing each process with an equal amount of CPU time. This makes it a fairer scheduling algorithm than some other algorithms that prioritize certain processes over others. Efficient CPU utilization: SRR scheduling ensures efficient CPU utilization by allowing processes to use only the CPU time they need. This reduces the likelihood of processes being blocked unnecessarily, which can increase overall system throughput. Low overhead: SRR scheduling is a simple algorithm that requires little overhead to implement. It is easy to understand and implement, making it a good choice for simple systems. Disadvantages: Selfishness: One of the main disadvantages of SRR scheduling is that it allows processes to be selfish and use all their allotted CPU time, even if they do not need it. This can lead to a situation where some processes hoard CPU time, leading to reduced system performance. Poor response time: SRR scheduling can lead to poor response time for interactive processes that require quick user input. This is because these processes may be forced to wait for their quantum of CPU time, even if they only need a small amount of CPU time. Poor priority handling: SRR scheduling does not handle process priorities well. All processes are treated equally, regardless of their priority, which can lead to situations where high-priority processes are starved of CPU time. Inefficient for real-time systems: SRR scheduling is not suitable for real-time systems that require strict timing constraints. In such systems, it is essential to ensure that high-priority processes receive CPU time when they need it, which is not possible with SRR scheduling. 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!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum/Algorithm for Dynamic Time out timer Calculation/Difference between Round trip time (RTT) and Time to live (TTL)/Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms/Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm/Round Robin Scheduling Algorithm with Different Arrival Time/Selfish Round Robin CPU Scheduling
https://www.geeksforgeeks.org/selfish-round-robin-cpu-scheduling?ref=asr9
PHP
Selfish Round Robin CPU Scheduling
What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, jQWidgets jqxTreeMap width Property, Round Robin Scheduling Algorithm with Different Arrival Time, Difference between Flow and TypeScript, jQWidgets jqxTree destroy() Method, jQWidgets jqxTree collapseAll() Method, jQWidgets jqxScrollView buttonsOffset Property, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, jQWidgets jqxListBox enableHover Property, Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm, Selfish Round Robin CPU Scheduling, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxSlider buttonsPosition Property, Difference between Round trip time (RTT) and Time to live (TTL), jQWidgets jqxSlider rtl Property, jQWidgets jqxTooltip opacity Property, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, jQWidgets jqxToolBar height Property, PHP, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, Node.js date-and-time Date.transform() Method, TypeScript Optional Parameters, jQWidgets jqxToolBar theme Property, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, Steps to Diagnose and Resolve a Slow Network, How to use Optional Chaining with Arrays and Functions in TypeScript ?, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, jQWidgets jqxScrollView showButtons Property, Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms, jQWidgets jqxScrollView disabled Property, jQWidgets jqxSplitter destroy() Method, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, jQWidgets jqxTree collapseItem() Method, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), jQWidgets jqxSortable opacity Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, jQWidgets jqxSlider height Property, jQWidgets jqxSwitchButton onLabel Property, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, jQWidgets jqxToolBar tools Property, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTree width Property, jQWidgets jqxTree clear() Method, TLS Handshake?, Algorithm for Dynamic Time out timer Calculation, Adhoc TCP, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, jQWidgets jqxTabs position Property, Differences between Wireless Adhoc Network and Wireless Sensor Network, jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, Impact of Three-way Handshake and Slow Start Algorithm, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, How to Sort an Array Having Optional Properties in TypeScript ?
GeeksforGeeks
[-0.0411175303, -0.0229907706, -0.0173110534, 0.00920688268, 0.0107929735, 0.0304831639, -0.0152264768, 0.0131494524, -0.0298638325, 0.0029493745, 0.0327187963, -0.0200149622, 0.0324468948, -0.0371900648, -0.00675977, 0.0367973186, 0.0298789386, 0.00117163057, 0.000816648186, -0.0134138009, -0.00875371322, 0.0355586559, -0.0315103456, 0.0017305389, -0.0205436591, -0.000421777542, -0.0129681844, 0.00605735835, -0.0430510491, -0.0119636599, 0.0214499962, 0.0369785875, 0.0218125321, -0.0520540066, 0.0265254881, 0.00454679504, -0.0204228144, -0.00652185641, 0.011442516, -0.0145693813, -0.0616309755, 0.0189726725, -0.0389423184, 0.00452413643, -0.00486401329, -0.00808906555, -0.00799087901, -0.00540781626, -0.00307777245, -0.0424166135, 0.000637740886, 0.00288895192, 0.0544104837, 0.0162083432, 0.015815597, 0.0262233764, -0.00275488943, -0.00167200458, -0.0247581303, -0.0383380912, 0.0334740803, -0.0155890118, -0.0366462618, -0.0263593271, 0.0439271778, 0.000865741516, -0.0484890752, 0.0226131305, 0.01708447, 0.00224129809, -0.0694859, -0.00907093193, -0.00197317312, -0.00326281646, 0.0100981146, -0.00217709923, 0.0502715409, 0.0105814952, -0.0197128486, -0.0236705244, -0.0258155242, 0.0134213539, -0.0181569699, -0.0324468948, 0.0375526, -0.00928996317, 0.0458909087, -0.0587609075, 0.051751893, -0.00637835264, 0.00327414554, 0.00453546597, 0.0343199931, -0.00233193184, 0.0148337297, -0.0152340289, 0.00943346694, -0.0183986593, -0.00292482786, -0.0108231846, -0.031057179, -0.0219333768, -0.0183986593, -0.0390631631, -0.00538893417, 0.015619223, -0.0574316122, 0.014697779, 0.0243653841, 0.0810870305, -0.0206191875, 0.0097808959, -0.0123790652, 0.00273978384, -0.0603016801, -0.0260270033, -0.00974313263, -0.0682170317, -0.000323826971, 0.00172393024, -0.00787758641, 0.0303170029, -0.0221297499, 0.0342293605, -0.0613288619, 0.0218578484, 0.00362723973, 0.0118201571, 0.00599693554, -0.00192030345, 0.0067182295, 0.000133354406, -0.0340783037, -0.0350752771, -0.0209968276, 0.0289877076, 0.0287158061, 0.0489422455, 0.0313592926, 0.0237007365, -0.0167370401, 0.00703922426, -0.000912474527, 0.00743952347, 0.0104228854, 0.0160270743, -0.0302112624, 0.00971292146, -0.0162989758, 0.0674315393, -0.029410664, 0.0204983409, -0.0120467413, 9.50592657e-05, 0.0057023759, 0.00985642429, -0.00353094144, -0.00379340164, 0.0031495241, -0.00957697071, -0.00450903084, 0.00383305387, 0.0124696987, -0.000717989518, -0.0200602785, -0.00233004359, -0.0104228854, -0.0156645402, -0.0540479496, 0.0314801373, -0.0400903448, 0.0103775691, -0.0119485548, 0.0147430962, -0.0105663892, 0.0428999923, -0.00195617927, -0.0162989758, -0.00587231433, -0.0096600512, -0.0366462618, 0.0320843607, -0.0386402048, 0.0139500508, 0.019063307, 0.0201962292, 0.0555283, -0.00752260443, -0.0116011249, -0.0285496432, -0.000484324322, 0.0232324619, 0.0180965457, 0.0103775691, 0.00975823775, -0.015437955, -0.0175678488, -0.000326659268, 0.0380057693, -0.00152189238, -0.0154228499, -0.0314499252, -0.0359211899, 0.00291727507, 0.0205587652, -0.0177340116, 0.0312082339, 0.0221448559, 0.0365858376, -0.0145769343, -0.0107929735, 0.0349544324, -0.0206040815, -0.0224922858, -0.00179945829, -0.0129228681, 0.0213140454, 0.0217521098, -0.00184477528, -0.0342897847, -0.0146298036, 0.00141804118, 0.0293502416, -0.00154643902, -0.0417519659, -0.0239575319, 0.00994705874, -0.0215255246, 0.0081872521, -0.0272052418, -0.00837607309, 0.0247430243, 0.00995461084, 0.00404830929, -0.0328698531, 0.00731112575, -0.0449241474, 0.024878975, -0.00572881056, 0.00824767444, -0.0174016878, -0.00202037813, -0.0349242203, -0.0200300664, 0.0161932372, 0.0440480225, 0.0325979516, 0.0526582301, 0.0171902087, -0.0054833442, -0.0336855575, 0.00337233231, -0.0243502781, 0.0162234474, -0.0422957689, -0.0103851212, -0.0205889754, -0.0274771433, 0.0196071099, 0.0171751026, 0.013081477, -0.0162838716, 0.00796066783, 0.0217370037, -0.0376734436, 0.000291255448, 0.0160874967, -0.00231682626, 0.0151207373, -0.0168880951, 0.0311780237, -0.0326583758, -0.0332021788, -0.0286100656, -0.00823256932, -0.0519331619, -0.0101887481, -0.00239046616, 0.0676732287, -0.0059025255, 0.0305737983, 0.00206003059, 0.0270088688, -0.0299091507, 0.00695236679, -0.00485268421, -0.0306342207, 0.00815704092, -0.0251961928, -0.00140199147, -0.0369483754, -0.00987908337, -0.0153926387, 0.000587703486, 0.0926881582, 0.0158609133, 0.0198336933, 0.00637835264, -0.0278547835, 0.0140406843, 0.0337459818, -0.00291916332, 0.0160723925, -0.000397938973, -0.00897274539, -0.00771142496, -0.0414498523, 0.0153926387, -0.01308903, -0.0133080613, 0.0157551728, -0.0283985864, 0.00848181173, -0.0285345372, 0.035951402, 0.0313290805, 0.0274771433, -0.00220353389, -0.00774918916, -0.0241387989, 0.0169183072, -0.0189575683, -0.0139198396, 0.0154681662, 0.00163612876, -0.0268276017, 0.00842894241, 0.0653167516, -0.0334740803, -0.00738665368, -0.0158609133, 0.031238446, -0.0447428785, -0.0254680943, 0.0206191875, -0.029969573, -0.0105588362, 0.0482171774, 0.00120278588, 0.012892656, -0.0261780601, 0.000759530056, 0.00449014874, 0.0115029383, -0.0157853849, 0.00583832664, -0.0233382, -0.00245466502, 0.0128095755, 0.0107929735, 0.00113764289, 0.0124319345, 0.0670085847, 0.0134666702, 0.0268276017, -0.0380964, 0.01708447, -0.0184892938, -0.0087386081, 0.00598560646, 0.0671294257, -0.0279152077, -0.00324015785, 0.0303321071, -0.0292596072, -0.039032951, 0.0040709679, 0.0199243277, -0.00623107282, 0.00939570274, -0.0347429514, 0.00298147392, 0.0621747784, -0.0441386551, -0.02178232, 0.00351205934, -0.0302716848, 0.0193654187, -0.0182173923, 0.0195768978, -0.011789945, 0.02033218, -0.0630206913, 0.0289272834, 0.015256688, -0.0111479564, 0.0333532356, -0.0235496797, -0.00497730542, 0.0288215447, -0.0215406306, 0.00910869613, -0.0210421439, 0.0138594173, -0.0362535156, 0.015815597, -0.00922954082, -0.0253925659, 0.0176433772, 0.00658983178, 0.0029795859, 0.00883679464, 0.00411628466, 0.0354982354, -0.0416915417, 0.0290783402, -0.0343199931, -0.0374921784, 0.0146449097, -0.00379906641, 0.0154455081, 0.00771520147, 0.00874616, 0.0140784485, 0.000207820442, 0.044682458, 0.0215255246, 0.0551657677, 0.0183080249, -0.0287762284, -0.0495464727, 0.010347358, -0.00163707277, 0.0201207, 0.0240632705, 0.0119410018, -0.0030683314, -0.0128851039, 0.0197581667, -0.00130852533, -0.0213593636, -0.00550600281, -0.00649164524, 0.00934283342, 0.0117446287, -0.040120557, 0.00388214737, 0.0356492884, -0.00770387193, 0.0322052054, 0.0040143216, 0.0403320342, -0.0104530966, -0.0401809812, -0.0457398519, -0.0163745042, -0.0198639054, -0.019078413, -0.0227188691, 0.0129228681, -0.022159962, -0.0435344316, -0.0021261177, 0.0147582022, 0.0586098507, -0.0195466876, 0.0116388891, -0.0328698531, 0.0135270925, 0.0225678142, 0.0142446104, 0.0154304029, 0.0119334487, -0.0257399958, 0.00183911063, 0.0350752771, -0.0365254171, -0.00614043931, 0.00116030127, 0.00288517564, -0.00116974232, -0.0549845, -0.00120373, 0.0541687943, 0.0387610495, 0.0290481299, 0.00727713807, -0.0548032299, -0.0222354904, -0.0440480225, 0.0163593981, 0.00655962061, -0.00943346694, -0.000945046078, 0.00494709425, 0.0144938538, 0.00139443856, -0.00293615717, -0.00881413557, 0.0171146803, 0.000409268192, 0.025604045, 0.010347358, -0.00307777245, 0.000854884333, 0.0139198396, 0.00593273668, -0.023972638, 0.0272203479, -0.00919177663, -0.0236554183, -0.00842894241, -0.0241841152, 0.0120996106, -0.00969026238, -0.0303018969, 0.0157098565, 0.00335345021, -0.0152944522, -0.0345616862, 0.0467670336, 0.043776121, -0.00590630202, 0.0155285895, 0.00193918543, 0.0400601327, -0.0351054892, 0.0148714939, 0.0147884134, -0.00194107369, 0.00749994582, 0.0280964747, 0.00425978797, -0.010536178, -0.000987530686, -0.0187763, 0.027960524, -0.00140671188, 0.0085875513, 0.0102718296, -0.0239575319, 0.00139538269, -0.00716384593, 0.00904827286, -0.00422580028, 0.0058458792, 0.0224016514, 0.014335244, -0.017960595, 0.015981758, 0.00537760463, 0.0409664735, -0.00987153, -0.0352565423, -0.0075528156, 0.0280360524, -0.0118956845, -0.00887455884, -0.0200451724, 0.014697779, -0.0186101384, 0.00368199777, -0.0341085158, -0.00665780716, 0.00549089722, 0.00567594124, 0.0147808604, -0.00592518412, -0.0168880951, -0.0184137654, -0.0108760549, 0.0110497698, 0.0298034102, 0.0183080249, 0.0117672868, -0.00282852957, -0.0150829731, 0.0242294334, 0.013081477, 0.00129341974, 0.012718942, -0.00608001649, 0.0293200314, -0.00808151253, 0.00140671188, 0.0409060493, -0.0101132207, -0.021072356, -0.0312686563, -0.0108307377, 0.0125603322, 0.00225640368, -0.00815704092, 0.0211025663, 0.0462534428, -0.00785492826, -0.0011763511, -0.0175225325, -0.0226131305, -0.0236705244, 0.00496975286, 0.0438969657, -0.0115558077, 0.0156494342, -0.0257248897, -0.015619223, 0.00794556178, 0.00998482201, 0.0222657, -0.04501478, 0.0182929188, 0.027431827, -0.016706828, 0.0040520858, 0.0179303847, 0.0211478844, 0.0148035185, 0.0195617918, 0.0274016149, -0.00848936476, -0.0149696805, 0.022703765, 0.0213744678, 0.00177868805, 0.0313895, -0.000482672127, 0.0280964747, -0.00463365251, -0.0260270033, -0.012711389, 0.0076472261, -0.00418048352, -0.00487534236, 0.031057179, -0.0119787659, 0.0451658368, -0.0336553454, -0.0316614024, 0.0144485366, -0.00258117472, -0.0148035185, 0.0148261776, -0.00146619033, -0.0490026698, -0.0102416184, 0.00114991621, -0.0147884134, -0.0108458437, -0.00876881927, -0.0195920039, -0.00506416289, 0.0246674959, -0.00204114849, 0.0862229466, -0.0125452271, 0.0348637961, 0.0168276727, 0.0129379733, 0.0170542579, -0.0140255792, -0.00968270935, 0.0226131305, 0.0177038, 0.026706757, 0.00335533847, -0.0202113353, 0.0436854847, -0.00181267573, -0.0262989048, 0.0122582195, -0.0147959664, 0.0125829913, 0.0162083432, 0.0154681662, -0.000934660959, -0.00267936126, 0.0206191875, 0.0338970385, -0.0272656642, 0.0262535866, -0.0265708063, -0.0272203479, 0.00781716406, 0.0381870344, 0.0049622, -0.0116086779, 0.000440895616, 0.0631415397, 0.0145467231, -0.0192747861, -0.00123205304, -0.0185799263, 0.0121147167, 0.00380473095, 0.0294861924, 0.00479981443, -0.0216614753, -0.00166728406, -0.00736021902, -0.00651430339, -0.023428835, 0.00425601145, -0.00198450242, 0.0253321435, 0.00458078273, 0.00361024588, -0.0201055948, 0.0144787477, 0.000824673043, 0.00757925073, -0.0130361598, -0.00741686486, -0.00320805842, 0.00326659274, -0.0330813341, 0.0383985154, 0.00473561557, 0.00146241393, -0.0196373202, -0.0402414, -0.00155871233, -0.00170032762, -0.00439573871, 0.0240028482, 0.0139349448, 0.0117219696, 0.0169032011, -0.0024150128, 0.00668424182, -0.00306455488, 0.0190028846, 0.0140860016, -0.0190330949, -0.0240330603, 0.0145995924, 0.0278245732, 0.0243955944, -0.0128548928, -0.0224771798, -0.0106192585, 0.0235043634, 0.0186856668, -0.0220844336, 0.000282994559, 0.0135950679, 0.00861021, 0.0129455263, -0.0067937579, 0.0153171103, 0.0356190801, 0.0297429878, 0.00155682419, -0.000935133, 0.0327490084, 0.0110950861, -0.022159962, 0.0018070112, -0.00566083519, 0.0111026391, 0.0081117237, -0.0151358424, 0.00325904, 0.0404226705, -0.0241387989, -0.0174772162, -0.00419558911, 0.0123639591, -0.00341387279, 0.0161630251, 0.0129983956, -0.0056457296, 0.025588939, 0.0193654187, -0.0110120056, 0.0186554547, -0.00665403064, -0.049214147, -0.0117823929, 0.0144334305, -0.00374619663, 0.0133382725, -0.00933528, 0.038156826, -0.0133307194, -0.00389347645, 0.0242747497, -0.0104530966, -0.0162385534, 0.0162234474, 0.00362535147, -0.00280209468, 0.040694572, 0.0313290805, 0.0229303483, -0.0121147167, -0.0205889754, 0.00886700582, -0.0258910526, 0.00879903, -0.00916156545, -0.0123866182, 0.0352867544, -0.0251055602, 0.0458002761, -0.00497352937, -0.0273411926, -0.0321145728, 0.0361024588, -0.047552526, -0.0357097127, 0.0238064751, 0.0238366872, 0.00206569512, 0.0106343646, 0.0126962829, -0.0046109939, -0.0183080249, -0.0125074629, -0.0494256243, -0.00880658347, -0.0161328148, 0.0206947159, 0.00997727, 0.0206796099, -0.00476960326, -0.00535117, 0.030513376, 0.0347127393, -0.0337761901, 0.000242162161, -0.00944857206, -0.0129379733, -0.00190236547, 0.0138820754, -0.0196977425, 0.0228397138, 0.0138971806, 7.8124438e-05, 0.0208457708, 0.0144787477, 0.0298034102, 0.0214348901, -0.00195806753, 0.0112763541, -0.0263895374, -0.020891089, 0.00913135428, 0.00386704155, 0.00672955858, 0.0245315451, 0.0219182707, 0.0170089416, -0.0059591718, -0.0129228681, -0.00168144563, 0.000720821845, -0.0237309467, 0.0253019333, 0.0159062296, -0.00990174152, 0.0386402048, 0.016525561, 0.0191841517, -0.0148639409, -0.00478093233, 0.0374317542, 0.00689949701, -0.0207400322, -0.0123186428, -0.00971292146, -0.013617727, 0.0151585015, -0.00479603792, 0.00899540354, 0.0234892573, 0.00375186116, 0.00762456749, 0.00105550594, -0.0243049618, -0.0288970731, -0.0250451379, 0.0058647613, 0.00995461084, -0.0273714047, 0.00789269246, 0.0106570227, 0.0148488358, -0.0101283258, -0.00597427739, 0.0129908426, 0.0252566151, 0.00444105547, -0.0117446287, -0.00456190063, 0.0454981625, -0.0119258957, -0.011812604, -0.0281871092, 0.00694859028, -0.0168729909, -0.011253695, -0.000934188894, -0.0315707698, -0.00603469973, 0.00158325897, 0.00585720874, -0.00173998, 0.00411628466, -0.00453924248, -0.00335345021, -0.0161177088, 0.0340178832, -0.0188065115, -0.0508153439, 0.0434437953, -0.0321447849, 0.0152868992, 0.0169485193, 0.00729979621, -0.021238517, -0.00727336155, 0.0231720395, -0.00662004296, -0.0168880951, 0.0131343463, 0.0386402048, -0.0197279546, -0.0080664074, 0.0184741877, 0.00462232344, -0.00833075587, 0.0180663355, -0.0239424258, 0.0206796099, 0.0203623921, 0.00172204198, -0.0281266849, -0.00677109929, -0.0135573046, -0.00951654743, 0.0218578484, 0.0153322155, 0.0058836434, -0.00309476629, -0.0141086597, 0.0174016878, -0.00276244245, 0.0264046434, -0.0274620373, 0.00768121378, -0.0357399248, 0.0554074571, 0.00384627143, -0.0154681662, -0.00261327415, 0.0114047518, -0.0104833078, 0.0107476572, -0.00264348555, 0.0096978154, -0.027431827, -0.0168427788, 0.00510192709, -0.0429906286, -0.00612910977, -0.019229468, -0.0335042924, -0.0295617208, -0.016706828, 0.0388516858, -0.00453546597, 0.00119900948, -0.0131267933, 0.00652940897, -0.0109817944, 0.0233684126, -0.0142748216, -0.0119938711, 0.0167974625, 0.0136026209, 0.0233684126, -0.0227490813, 0.0204228144, 0.00506416289, -0.0211780947, -0.00544935651, -0.0146902269, -0.035045065, 0.00848936476, 0.0122808786, -0.00237158407, -0.0269937627, 0.00445993757, -0.00711852871, 0.0374317542, -0.00209401827, -0.00210912386, -0.00487911887, -0.00654073851, -0.0159515459, 0.00759435631, 0.0390631631, -0.0138971806, -0.0193201024, -0.004629876, 0.0248185527, 0.02942577, -0.00449770177, -0.0658001304, -0.0142748216, -0.0425978824, -0.0357399248, -0.0136026209, -3.7056e-05, 0.0183080249, -0.00708454102, 0.00532851135, 0.00197128486, -0.00351017108, 0.0139424978, 0.00113103411, -0.013255192, -0.0174621101, -0.0251508765, 0.00685418025, 0.0358305573, -0.0200300664, 0.00951654743, 0.023066299, 0.0163593981, 0.00645388104, 0.019229468, 0.017431898, -0.00172393024, 0.0059214076, 0.00509815058, -0.0108836079, -0.00256795739, 0.00368577405, 0.0224922858, -0.0112990122, -0.0228548199, -0.000463082019, -0.00448259618, -0.0228548199, 0.00900295656, 0.00538515765, -0.0293653477, -0.000604225264, 0.0165859833, 0.0284439046, -8.31399811e-05, 0.00938815, 0.0104379915, -0.0270692911, -0.0348033756, -0.0104228854, 0.0165859833, -0.000299280335, -0.0290330239, 0.0193352085, -0.0120845055, -0.0118579203, 0.00470918044, -0.00272845477, -0.0128246807, -0.00339687895, 0.00704677729, 0.00812683, -0.0109289242, -0.011986319, -0.00380095444, -0.00730734924, -0.0166161954, -0.0106192585, 0.0175527446, -0.00211856491, 0.013987815, -0.00759813283, 0.00717139849, 0.0030494493, 0.0148110716, 0.0045921118, -0.0184137654, -0.00105267367, 0.00913135428, -0.0315405577, 0.0136857023, -0.0155739058, 0.0121449279, -0.00107533217, -0.00884434767, 0.0170089416, 0.0153473215, -0.0166010894, 0.0124319345, -0.0107703153, -0.00742064137, -0.0106570227, -0.0156796463, -0.0179454908, 0.0133835897, 0.0251810867, -0.0184137654, 0.00920688268, 0.0292747132, -0.0085875513, 0.088519, -0.0191992577, -0.00395389926, -0.0269182343, -0.00218842831, -0.00408607349, 0.00572881056, -0.00718650408, 0.0307248551, -0.00227717403, 0.0715402737, -0.00658605527, -0.000322882872, -0.0118201571, 0.00617820304, 0.0207400322, 0.0116993114, -0.00285307621, -0.015619223, 0.00295503926, -0.0099244, 0.0273411926, -0.0113065653, 0.000914362725, 0.00808151253, 0.00371598522, 0.0146524627, 0.00307777245, -0.0186554547, -0.000754337467, 0.0238064751, -0.0109969, 0.00808151253, -0.00967515726, -0.0262082703, 0.0176584832, 0.0133609306, -0.00206758338, -0.00124243821, 0.0187611934, 0.00172204198, 0.0194560532, -0.00839873124, 0.00382550107, -0.0282022133, 0.011261248, 0.00978844892, 0.00067975343, -0.034501262, 0.015981758, 0.00641234033, -0.0126358606, 0.0177340116, -0.0102416184, -0.0120089771, 0.015800491, -0.0156343281, -0.017250631, 0.0120014241, 0.0095241, -0.00957697071, -0.0107325511, -0.0204228144, 0.0160723925, 0.0115784667, 0.0141011067, -0.0130512659, 0.0295164045, -0.0015879795, 0.00953920651, -0.0389121063, 0.0179152787, 0.0103020407, -0.000617442711, -0.011450069, -0.0112159317, -0.00812683, -0.00684285117, 0.0368577391, 0.00839873124, 0.00888966396, -0.0144409835, 0.0190330949, 0.02797563, 0.00329680415, 2.53432372e-05, -0.000203453979, -0.00225073914, 0.0329604894, -0.00641234033, -0.00121411518, -0.00101963012, -0.0458909087, 0.034501262, -0.000396522839, -0.0101509839, 0.0391840078, 0.0158760194, -0.0222808067, -0.00640101125, -0.0104455445, -0.00217898726, -0.0175225325, 0.0200149622, 0.00272090198, -0.00519256061, 0.00848936476, -0.00065992726, -0.0215406306, 0.00815704092, 0.0223714393, 0.0151736066, 0.00500751659, 0.0248940811, 0.00243955944, 0.0104153333, 0.017794434, -0.00119240081, -2.21421415e-05, 0.00722804479, -0.00739043, 0.00151906011, 0.0104530966, -0.0234439392, -0.0195768978, -0.0251659825, 0.00651808, 0.0393652767, 0.00722049177, 0.0253019333, 0.00602337066, 0.026147848, -0.026857812, -0.0245768633, -0.0149998916, -0.00433154, 0.015815597, 0.0242445376, 0.0105135199, 0.00429377565, 0.040120557, 0.00465253461, -0.0118201571, -0.00246032979, 0.00715251639, -0.0162687656, -0.0152038177, -0.00310420734, -0.0045732297, 0.0158609133, -0.0102567235, -0.00432398682, -0.00267180847, -0.000548995275, 0.0103171458, -0.00279454188, -0.0443803445, -0.0206040815, 0.00802864321, 0.00465253461, 0.0441386551, 0.00621596724, 0.0196524262, -0.0253321435, 0.00495087076, -0.0277490448, 0.0163896102, 0.0170391519, -0.0249998197, -0.0114953853, -0.0130286068, 0.011442516, 0.00391613506, 0.00548712071, 0.0251357704, 0.00496597635, -0.000141261262, 0.00395012274, 0.0414498523, -0.0109969, 0.0330209099, -0.020513447, 0.0149168111, 0.00130474893, -0.0263744332, 0.0248336587, -0.0258306302, -0.00467896927, 0.018519504, 0.0115255965, 0.00221297494, 0.037039008, 0.0175980609, -0.0122657726, 0.0164047163, 0.0321749933, -0.00944102, -0.00854223501, 0.00360080483, 0.0427489355, -0.0183684472, -0.0338366143, -0.00726203248, -0.014720438, -0.012718942, -0.00554754306, -0.0322958417, -0.036162883, -0.00987153, 0.0126132024, -0.00258117472, -0.0143050328, 0.0144863008, -0.0163745042, -0.0193654187, -0.0108080795, -0.00683152163, 0.0227490813, -0.0039387932, 0.0104530966, -0.0237007365, -0.0298789386, -0.0181871802, 0.0142748216, 0.024169011, -0.0256191511, 0.00901806168, -0.0039576753, 0.0225829184, 0.00173525943, -0.0268880241, 0.0255738348, 0.033957459, 0.00213744678, -0.00365178636, -0.0299846791, 0.0229001381, -0.0131796636, -0.0253170375, 0.0146826738, 0.00546823861, -0.00600071205, 0.0187309831, 0.00947123114, -0.015067867, -8.16058164e-05, 0.0120240822, -0.0155739058, -0.0323562622, 0.0177038, 0.00725447945, -0.00540403975, 0.0163291879, -0.0043919622, 0.00216577, -0.00161819078, -0.00152283651, 0.0296070371, 0.00270957267, -0.0323260501, -0.00337799685, -0.00800598506, 0.0133080613, 0.0214348901, -0.00297392113, 0.0169032011, -0.0132023217, 0.00853468198, -0.0185799263, -0.00899540354, -0.0264801718, 0.0232928842, 0.0124772517, 0.0309967566, 0.00973558, -0.00355359982, 0.00681641605, -0.026329115, -0.031238446, -0.00090869813, -0.00182306091, 0.0194862653, 0.0189575683, -0.0178548563, 0.0050490573, 0.00296636834, -0.00256418088, 0.0035573761, -0.00250564655, 0.00900295656, -0.011434963, 0.000150348234, 0.0140104732, -0.00285307621, -0.015800491, 0.0194560532, 0.018519504, 0.00592896, -0.00616309745, -0.00254907529, 0.00213178224, -0.0105135199, -0.00421447121, 0.00906337891, -0.0180512294, -0.0117446287, 0.0115935719, -0.0168125685, -0.0181720741, 0.00310987188, 0.0209364053, -0.0133986948, 0.0116615472, 0.0103775691, -0.00305889035, 0.00951654743, 0.013436459, -0.00666913623, -0.00124715874, 0.00313819502, -0.0211629905, -0.00479981443, 0.0085497871, 0.00301923812, -0.0342293605, -0.0197430607, -0.0223563351, 0.00534739345, -0.0154832723, -0.0140860016, -0.0144258784, -0.0219484828, 0.00850447081, 0.000413516653, -0.000425081904, -0.00104700914, -0.0321145728, 0.0227339752, 0.00820991, 0.0065558441, -0.0256946795, 0.0052983, -0.0191539414, 0.0125527801, -0.0233230945, -0.0409060493, 0.000507454795, 0.0193049964, -0.00808906555, 0.0229454543, -0.0155436946, -0.00855734, 0.0207853485, -0.0208759829, 0.011079981, 0.00928996317, 0.0174923204, 0.0107325511, -0.0221146438, 0.0269786585, -0.00610645162, 0.011623783, -0.0014652462, 0.00657094968, 0.00540781626, 0.0102189593, -0.0257551018, 0.00391613506, 0.0298185162, 0.0327490084, 0.000140789212, -0.00197128486, 0.0148488358, 0.0191539414, 0.000916251, -0.004905554, -0.00728091458, 0.00913890731, -0.00265481463, -0.0154228499, -0.0117219696, -0.00658605527, -0.00344030745, -0.00736399554, -0.0319030918, 0.0102491705, -0.00567594124, -0.00197506137, -0.00798332598, 0.00725825597, 0.0108307377, 0.00794556178, 0.0182476025, 0.00354038225, -0.011623783, 0.00797577295, -0.0352565423, -0.0296070371, -0.0119183436, -0.0108609488, -0.00414649583, -0.00363668078, -0.0101358788, 0.0085875513, 0.0119107906, -0.00915401243, -0.0223865453, -0.0327187963, 0.00901806168, -0.0374317542, -0.0285949595, 0.0233835168, 0.00876126625, -0.00493576517, -0.0181418639, 0.0107703153, -0.00903316773, -0.00905582588, -0.0186554547, 0.0281871092, -0.00377829606, -0.0194107369, -0.0190482, 0.00742441788, -0.0212838352, -0.00958452281, 0.0253472496, -0.00708831754, 0.00107910857, -0.000457653427, -0.0176735893, -0.00206569512, 0.0239575319, 0.0193049964, 0.00950899534, -0.000807207194, -0.00290028122, 0.0169938356, 0.00248676469, 0.00107816444, -0.00705433, -0.000591479882, -0.0165557712, -0.039788235, 0.0164802447, -0.0167219341, 0.0240783766, 0.0159062296, 0.0296372492, -0.0103851212, -0.00795311481, 0.0125225689, -0.0146222515, 0.00275488943, 0.00425601145, 0.0183080249, -0.00539648673, 0.0118654734, -0.0120845055, -0.00239046616, 0.01089116, -0.00154832727, -0.00381228374, -0.0166161954, 0.0170542579, -0.00348373619, -0.00176830299, -0.00226584473, -0.0182022862, 0.00338366139, 0.00944102, -0.000294087775, 0.0212989412, 0.000394162576, 0.0152340289, 0.00138688576, -0.0182929188, 0.0239122137, 0.0116086779, 0.013972709, -0.000804374868, 0.0109213712, 0.0186705608, 0.00824767444, -0.0106192585, 0.0598485135, -0.0267369673, 0.0114802802, 0.0100754565, -0.000269069074, -0.0158760194, -0.0115104914, -0.00202981918, -0.00193163264, -0.00896519236, 0.00432398682, -0.00312308921, -0.0123941703, 0.00203737197, 0.0124394875, -0.00129719614, -7.39349853e-05, 0.00653318549, 0.0213442575, 0.00142559398, 0.00792290363, -0.0114651741, 0.0016342405, -0.00404075626, 0.00467896927, -0.00548712071, -0.0152264768, -0.0047733793, -0.00112064905, 0.0100830086, -0.00258495123, -0.00116691, 0.0165557712, 0.00497352937, 0.0280209463, 0.0111404033, -0.0195164755, -0.00654451502, 0.00471673347, -0.0179908071, -0.0027794363, 0.0265557, 0.0103020407, -0.00928996317, 0.00901806168, -0.00820235815, 0.0186252426, -0.00792290363, 0.00685418025, 0.00207891245, 0.0046109939, -0.0161177088, 0.00059950474, 0.022341229, -0.00147279911, -0.0245013349, -0.00712230522, -0.0128624449, -0.00198261417, 0.00259439228, -0.0169032011, 0.00817969907, 0.00150867493, -0.00492065959, 0.00780205848, 0.00942591392, -0.0110573219, 0.0203170739, 0.0167370401, 0.00681641605, -0.000577318366, -0.00707321195, 0.00582699711, 0.0064991978, -0.00613288628, -0.0178397503, 0.00598938297, -0.0188820399, -0.00430888124, 0.00467141671, 0.000566933246, 0.0017569738, 0.00291349855, 0.0184137654, -0.0087386081, -0.00766233169, 0.00360835763, 0.00987153, 0.00755659211, 0.0392142199, -0.011623783, -0.0115482556, 0.00535872253, -0.00392368762, -0.00049848581, 0.00788513944, 0.000574486039, -0.00584210316, -0.0349846408, -0.00660493737, -0.0110120056, 0.034501262, 0.0136932544, -0.0141917411, 0.011079981, -0.0107627623, -2.41778616e-05, 0.0160723925, 0.022341229, 0.00336289126, -0.00249054097, -0.0115633607, 0.0219786931, 0.0010573942, -0.00526431249, -0.0194560532, -0.0132778501, 0.00910114311, 0.00861021, -0.0240783766, -0.0371900648, 0.00561929494, -0.00285118795, -0.022703765, -0.002314938, 0.00197128486, 0.0195768978, -0.00785492826, -0.0118352622, -0.00429755216, -0.0117672868, 0.0195013694, 0.00503772823, 0.00446749059, -0.00691837911, -0.00193729729, 0.0275828838, -0.0036064696, -0.00868573785, -0.00972802658, 0.0159062296, 0.0111404033, -0.0128322337, 0.000564100919, -0.0160874967, 0.0205738693, -0.0117295226, -0.01035491, 0.00886700582, -0.0313290805, -0.00751882792, -0.0392142199, -0.0118730264, 0.0166766178, 0.0115935719, 0.000676449039, -0.0100074811, -0.026706757, -0.0217218976, -0.00879147742, -0.0209666155, 0.0148790469, -0.00193918543, 0.00115180435, -0.0173261594, 0.0205285531, 0.0184288695, 0.0181116518, 0.00794556178, 0.0118503682, -0.0138141, -0.0169032011, -0.0167370401, 0.0101132207, -0.00857999828, -0.000629716, 0.0183986593, 0.0052454304, 0.012537674, 0.00641989335, -0.00976579078, 0.0330209099, 0.012703836, 0.00469785137, -0.0106268115, -0.00375186116, -0.00715251639, -0.00115841313, -0.0150376558, -0.00685040373, -0.0103851212, 0.015619223, -0.0157551728, -0.0101056676, -0.00973558, -0.0045732297, 0.000791157421, -0.00909359, -0.0307550654, -0.000983754289, 0.00456945365, 0.00300979707, -0.0217218976, 0.0117219696, 0.00328547484, 0.00407852046, -0.0097808959, 0.00318162353, 0.0165708773, -0.00384627143, -0.0596974567, -0.00166256353, 0.0181569699, 0.017431898, 0.00560041284, 0.0331417546, -0.000683057762, -0.00616309745, -0.0138971806, -0.0052265483, -0.00395012274, 0.00553621398, 0.013066371, -0.019229468, 0.0153020043, 0.0091842236, -0.0112385899, 0.00333267986, 0.00727713807, -0.0138367582, -0.0106570227, -0.00900295656, -0.027416721, 0.00515102036, 0.02797563, -0.00891232211, 0.00626506051, -0.0126434136, 0.012537674, -0.0235194676, -0.0152038177, -0.0169787295, -0.0388818942, -0.0160723925, -0.0237611588, -0.010536178, 0.028685594, 0.0179152787, 0.00453924248, -2.95769441e-05, 0.0143805612, 0.0149696805, 0.000484796357, 0.000371268106, 0.00722049177, -0.0215104185, 0.0193503145, 0.0147884134, 0.0129379733, -0.0356492884, -0.00628771912, -0.00706943544, 0.00439951522, -0.000635852688, 0.0257248897, 0.0105890473, -0.00490177749, 0.0122506674, -0.0138971806, -0.00182400504, -0.000790213351, -0.000108984772, 0.0162536595, -0.000277565967, 0.00541536883, 0.00563062401, 0.0121071637, -0.0140633425, 0.00267369673, 0.00777940033, -0.0452866815, -0.0116313361, 0.00101018907, -0.00230927346, -0.00695236679, 0.0156494342, -0.0104228854, 0.0243049618, 0.0191237293, 0.027431827, 0.00796066783, -0.0138367582, 0.003676333, -0.0298940446, 0.0081872521, -0.00709209405, -0.0224318635, -0.0139349448, -0.00882924162, 0.00830809772, -0.0104984138, -0.000840250752, -0.00339876697, 0.00778695289, 0.00383871864, -0.00348373619, 0.0224771798, 0.0134742232, -0.00856489316, -0.0150980782, -0.00308532524, -0.0207249261, -0.0119938711, 0.00541914534, 0.00475827372, 0.0209817216, 0.0139198396, -0.0373411216, -0.018519504, -0.010906266, -0.00698257796, -0.00938059669, 0.0158911236, 0.00651052734, 0.0192596801, -0.0100830086, -0.00811927672, -0.0131116882, -0.0100981146, -0.00263026799, 0.00326470449, 0.0168880951, -0.00147091085, 0.0285496432, -0.00195429102, 0.0106570227, 0.00101868599, -0.000449864572, -0.00163235224, 0.0128020225, -0.00972047355, -0.0183986593, -0.024697708, -0.00765855517, -0.00900295656, 0.00944857206, -0.00310231908, -0.016525561, -0.0425676703, 0.00762456749, 0.0168427788, 0.00907093193, -0.00928241, -0.00156248873, -0.00232060254, -0.0146600157, 0.0122280084, -0.0045921118, -0.000230124861, -0.0269333404, 0.00233193184, 0.0185799263, 0.000828449498, 0.00754526304, 0.00320428214, 0.0324468948, -0.00841383636, 0.00456945365, -0.00437685661, 0.0349242203, 0.00463742903, -0.00473183906, -0.00852712896, -0.0157098565, 0.00140671188, 0.000269541109, -0.0183684472, -0.00619330909, 0.0105814952, -0.0126585187, -0.0132778501, -0.0173865817, 0.00428244658, -0.00746595813, 0.00257362192, 0.00760190887, -0.00828543864, 0.00108571723, -0.00767743727, 0.0172053147, -0.0153397685, 0.00554754306, -0.0279001016, -0.0132325329, -0.00313630677, 0.00276810699, -0.0138141, 0.0028417469, 0.0214197859, -0.0212687291, 0.00210912386, 0.0144258784, 0.0275224596, -0.00343653117, -0.0140180262, -0.00436930405, 0.0153624276, 0.00759058, 0.0030494493, 0.0110120056, 0.0129757375, 0.00875371322, 0.0231116153, -0.00515857292, -0.00413139025, -0.0052265483, 0.00587231433, -0.000165689897, 0.00213744678, -0.014524065, -0.00867063273, 0.004905554, 0.0229756646, 0.00266425568, 0.0138518643, -0.0080664074, 0.0122129032, -0.0220995396, 0.00437308, -0.0150225507, 0.000295267877, -0.0264952779, -0.00721671525, 0.0011763511, -0.00169560709, 0.0138292052, 0.00980355497, 0.0106343646, -0.00195051462, 0.00267936126, 0.0154077439, 0.0247883406, 0.00916911848, -0.00728091458, 0.00271712546, -0.000401715399, 0.00765477866, 0.0122733256, 0.0054644621, -0.0111252973, -0.00289650494, -0.0167974625, -0.00884434767, -0.0049622, -0.00971292146, -0.00861776248, -0.0119183436, 0.0117144175, 0.00756792119, 0.00650675083, -0.0216614753, 0.00589497248, -0.0177491177, -0.0325375311, 0.0128322337, 0.0359816141, -0.0173412655, 0.0242445376, 0.00706188288, 0.0104077803, -0.0144258784, 0.00801353715, 0.00946367811, 0.0201207, 0.0142446104, -0.00794556178, -0.00412761373, -0.000645765744, -0.0132249799, 0.0232173558, -0.0138292052, -0.00793801, 0.016525561, -0.0276886225, -0.0100376923, 0.0109893465, -0.016706828, 0.00739420671, -0.0184590816, 0.0215255246, 0.00904827286, 0.0116011249, -0.0108307377, 0.00696747238, -0.00833830889, -0.00327603379, 0.0194409471, 0.00107533217, -0.0152868992, 0.00817969907, -0.026857812, 0.00695992, -0.0126207555, 0.000595728343, -0.00129058736, 0.0150149977, -0.00675977, 0.00309854257, 0.00482247304, -0.0305586923, 0.00129719614, 0.0141992932, -0.0191690456, 0.0179454908, -0.0199545398, 0.0214499962, 0.00198639045, -0.00428999914, -0.0203623921, 0.0244107, 0.0110271107, -0.0139273917, 0.00498108193, 0.0161026027, 0.000317218248, 0.000795877946, -0.00481492, -0.0115482556, 0.00477715582, 0.00225829193, -0.0141464239, -0.00227339752, 5.12249062e-06, 0.0315405577, 0.0092219878, -0.0154228499, 0.00782471709, 0.00483757863, 0.00406341488, 0.00534361694, -0.0200753845, -0.0139122866, -0.0100527974, -0.000723182107, -0.0195164755, -0.00208080071, -0.0123035368, 0.0112385899, 0.00975823775, -0.0115558077, 0.000744896475, 0.00564950611, 0.00620463816, 0.0112008257, 0.0151131842, 0.0133080613, -0.00422202377, -0.00951654743, -0.00276244245, 0.00149451336, 0.0163896102, 0.00633303588, 0.0047733793, -0.00786248129, -0.0198639054, 0.00555509608, 0.00988663547, 0.0110271107, -0.0198941175, 0.00363479252, 0.033594925, 0.00984887127, -0.00218654, -0.0129379733, 0.00809661858, 0.00194673822, -0.00236591953, -0.0144787477, -0.00313064223, 0.00943346694, -0.0192747861, 0.0132174278, -0.0322958417, -0.0241236929, 0.0208306666, 0.0123715121, 0.000803430798, -0.011805051, 0.00218842831, -0.00521899574, 0.011450069, 0.0125905434, -0.00105833833, -0.00229039136, 0.0164349265, 0.00172487425, 0.00244711223, 0.00255662808, -0.0236554183, -0.0025962803, 0.00161913491, 0.016540667, 0.0191992577, 0.0429302044, 0.00214877608, -0.00457700621, 0.00240746, 0.000264112517, -0.00816459395, -0.0289877076, 0.0011801275, 0.0107174451, -0.0015615446, 0.0138216531, 0.022159962, 0.00182966958, -0.0128246807, 0.00680886349, 0.0148337297, -0.0142672686, -0.00966760423, -0.00513591478, 0.0017881291, -0.0183684472, 0.0119938711, 0.0182476025, 0.0153095573, 0.00425978797, 0.0108156325, -0.026857812, 0.00160119694, 0.0066993474, 0.00357059366, 0.0146071455, 0.00471295696, -0.000673144707, 0.00139632681, 0.0046865223, -0.00102907117, -0.00339310244, 0.00787758641, 0.00736399554, -0.00355926435, -0.00710342312, 0.0142446104, -0.0247581303, 0.00719783315, -0.0248940811, 0.00969026238, -0.0277943611, -0.0185950324, -0.00838362519, 0.00782471709, -0.0348033756, -0.00296636834, 0.000744896475, 0.00717139849, 0.000899729144, -0.00879147742, 0.0216614753, 0.0146298036, 0.00131041347, -0.000718933647, -0.00110931986, 0.0225224961, 0.016706828, 0.00708076451, -0.000706188264, -0.00964494608, 0.013081477, 0.0179001726, -0.00317595899, -0.0128699979, -0.0035063948, 0.00523787783, 0.00957697071, 0.00790779851, 0.00903316773, 0.00446371408, 0.0148110716, 0.00281531201, -0.00197694963, 0.00922954082, 0.0022148632, -1.08793e-05, -0.00685040373, 0.0141086597, -0.00103567983, -0.00253585796, 0.00951654743, 0.00232060254, 0.0241841152, -0.00514724385, -0.0219786931, -0.0197732709, -0.00828543864, 0.00611022813, 0.00584210316, -0.0104833078, 0.0282475315, 0.00267936126, -0.00833830889, -0.0146222515, -0.0116615472, -0.00161441439, -0.030679537, -0.00788513944, -0.019788377, -0.00706943544, 0.0137159135, -0.0075528156, 0.0138367582, 0.00302112638, -0.015966652, -0.00371220894, 0.0220542215, -0.00870839693, 0.0104153333, -0.00312686572, 0.00710719964, 0.0171751026, -0.0128095755, 0.0106645757, -0.00362346345, -0.0269031301, -0.00919177663, 0.00127453764, -0.00310798362, 0.0293804538, -0.00338366139, 0.0029607038, -0.00172770664, 0.0102340654, 0.00297203287, 0.0130135017, -0.0115482556, -0.00300790882, 0.00504528079, 0.000603281136, 0.00691837911, -0.013617727, -0.00808151253, -0.0309363324, 0.00948633626, 0.00537005207, 0.000875654572, 0.0105135199, 0.0092219878, -0.00926730502, -0.00342331361, 0.025437884, 0.00301357359, 0.00198450242, 0.000897840946, -0.00913890731, -0.00498108193, -0.0154001908, -0.0116086779, 0.0110195577, 0.00994705874, -0.00817214698, 0.0115709137, -0.015966652, 0.018353343, 0.00311742467, 0.0115407025, -0.00953165349, 0.0115709137, -0.00271146093, 0.0282022133, 0.0127718113, 0.00674844068, -0.00536249904, -0.0310269669, -0.0269937627, -0.0208306666, 0.00960718188, 0.00114708394, -0.0243049618, 0.00374430837, -0.00197694963, -0.0050490573, 0.00092238764, 0.0187914055, -0.0167823564, -0.00101302145, -0.00440329174, 0.00554376654, -0.0081494879, 0.0110271107, 0.0176131669, -0.00979600195, -6.75032934e-05, 0.00550977886, 0.00207324792, -0.0131721105, 0.00560796587, -0.00531718228, -0.0058836434, 0.0201055948, 0.00166067539, 0.00349695375, 0.00249998202, 0.0211478844, 0.00159742055, 0.00590630202, 0.00428622309, -0.00467519276, 0.0144863008, 0.0272958763, -0.01507542, 0.0196524262, -0.000875654572, -0.0151358424, 0.00351961213, -0.0076094619, -0.0177340116, -0.0024962055, 0.0172959473, 4.79058e-06, -0.0188971441, 0.00623862585, 0.00287762284, -0.00797577295, -0.00396900484, -0.00772653054, 0.00859510433, -0.0222203843, 0.0169334132, -0.0258155242, 0.0076094619, 0.0153548745, 0.00182211678, -0.0133382725, -0.0176886953, 0.0134062478, 0.00321749947, -0.00633303588, -0.000328547496, -0.0162385534, 0.0161781311, -0.00346485432, -0.0262837987, -0.0200904906, -0.0107174451, 0.00452413643, 0.00404075626, 0.00762079097, -0.00512836175, -0.00211290014, -0.00907848496, -0.00794556178, -0.00981866, -0.00511325616, 0.0268880241, -0.0178246442, -0.0166161954, 0.00534739345, -0.00199394324, 0.00487534236, -0.0101358788, 0.0141313178, -0.0159364417, 0.0178246442, -0.0034573013, -0.000596672413, -0.015264241, -0.00301357359, 0.000649070076, 0.00821746327, 0.0253774617, -0.0109364772, -0.0121222688, 0.0129228681, -0.0214499962, 0.00610267511, 0.00576279825, -0.00516612595, -0.00724692689, -0.0258910526, -0.00665403064, -0.0220240112, -0.0311478116, 0.00610645162, -0.0134742232, 0.0109893465, 0.0123715121, 0.00789269246, -0.00975823775, 0.00124149409, -0.00630282471, -0.0162989758, -0.0116388891, 0.00303623197, 0.012537674, 0.00790024549, 0.0107325511, -0.00483380212, 0.00562307145, -0.00258683949, 0.00880658347, 0.0073715481, -0.0062990482, -0.0229605604, -0.0120165301, 0.00236780779, 0.0128624449, 0.0234892573, -0.00934283342, -0.015800491, -0.0180965457, -0.00691082655, -0.0281115808, -0.0313895, 0.00181550812, 0.0302414745, 0.0241085887, 0.00194485008, 0.00338366139, 0.000436647155, 0.0124394875, 0.00895763934, 0.0239877421, 0.00332323881, -0.0184439756, -0.00280020642, -0.0147430962, -0.0132854031, 0.0204832368, 0.0109742414, -0.00251319935, -0.00938815, 0.0056457296, -0.0180814415, -0.00497352937, 0.00390858203, -0.0263140108, 0.0180361234, -0.00578545686, -0.0312686563, 0.0194409471, -0.00325148716, -0.0170995742, -0.00394256972, 0.0152038177, 0.00908603705, 0.00564195355, 0.0231720395, -0.0145316171, -0.0132098747, -0.00459966483, 0.0100150332, 0.0225376021, 0.0133609306, -0.00166728406, 0.00898029748, -0.00212422945, -0.0156494342, -0.0141917411, -0.00465631066, 0.0327490084, -0.000503678399, -0.00692593213, -0.023428835, 0.00987908337, -0.0146373566, 0.00642744638, -0.0150301037, -0.0140935546, -0.0148866, -0.000177373164, 0.0150376558, -0.0074093123, -0.0092219878, -0.000410920387, 0.00418803655, 0.000323826971, 0.00551355537, -0.00396145182, 0.00398411043, -0.0018070112, 0.00820235815, 0.00884434767, -0.0159515459, 0.00956941769, -0.000164391749, 0.0128548928, -0.00608756952, 0.00597050088, 0.0136101739, -0.00399166299, 0.00677109929, -0.00284363516, -0.00572881056, 0.0070127896, -0.0197581667, -0.00593273668, -0.0061593214, 0.0239424258, 0.0295768268, 0.00938059669, 0.00965249818, -0.0051057036, -0.0141011067, -0.00341953733, 0.019803483, 0.00910869613, -0.00791535061, 0.0147355432, -0.00845160056, 0.0253925659, -0.0230360888, 0.0106947869, 0.013081477, -0.00193729729, -0.00435797451, 0.000892176351, 0.0188820399, 0.0272807702, 0.0120014241, 0.0258608405, -0.00331379799, -0.00617820304, 0.00899540354, 0.00722426828, -0.00344219571, 0.000594784215, -0.0297127776, -0.0126207555, -0.0131418994, 0.0216614753, -0.0180663355, -0.00215066434, 0.0106570227, -0.016706828, -0.00626506051, 0.000830337696, 0.0283381641, -0.00601581763, 0.000762362324, 0.0074093123, -0.00951654743, -0.012175139, -0.0140331313, 0.0129153151, 0.0168125685, -0.00269824336, -0.00591763109, 0.0204228144, 0.0173110534, -0.00415027235, 0.0150452089, 0.0142446104, 0.0348335877, 0.00537005207, -0.0162536595, 0.00402942719, -0.00879903, 0.00216388167, 0.0162083432, -0.00857244618, 0.0178246442, -0.0168427788, -0.00120845053, 0.0022261925, -0.0143805612, 0.0034497485, 0.00692215562, -0.0109515823, -0.0307701714, -0.00792290363, -0.0140029201, -0.0111026391, -0.0185950324, -0.00228095031, -0.00558908377, 0.000247118704, -0.00657094968, 0.0036064696, 0.00685040373, -0.00919933, -0.0102340654, 0.0247279182, -0.0138216531, -0.00664647762, 0.0338668264, -0.00601959415, -0.00496597635, 0.0149847865, -0.0349242203, -0.00876126625, -0.00833830889, 0.00107722031, -0.019078413, -0.00802109, -0.0291236583, -0.00793045666, 0.00673333509, -0.00641234033, 0.0144938538, 0.00975823775, 0.0180361234, -0.00418048352, 0.0280813687, -0.0100905616, -0.00245466502, 0.00241312454, -0.00789269246, -0.000372920273, 0.00254341075, 0.004629876, -0.0320843607, -0.0335345, 0.00589874899, 0.00683529815, 0.0136554912, -0.00439951522, 0.0122733256, -0.0240632705, -0.0087386081, 0.0151433954, -0.00539271, -0.00129058736, 0.0269484464, -0.0233382, 0.00504150428, 0.016525561, -0.0152793461, 0.00503395172, 0.0166464057, 0.0176584832, 0.0107023399, 0.0201509129, 0.015966652, 0.0142521635, 0.0156645402, 0.01708447, 0.00704677729, 0.00624995492, -0.0277943611, 0.00606491091, 0.00116313365, -0.00910114311, 0.00500374055, -0.0105135199, 0.00023578947, 0.0107854204, 0.00604225276, 0.00171732146, 0.0126358606, -0.0039576753, 0.0332021788, 0.0564346388, -0.00236403127, -0.014720438, -0.0418123864, 0.00558908377, -0.0103398049, -0.0138141, 0.0199998561, 0.0232928842, 0.0170089416, -0.0128171286, 0.00741308881, -0.0143050328, 0.0256342571, 0.0111328503, 0.00234137289, 0.0147733074, -0.0358003452, 0.00156343286, 0.009259752, 0.00613666279, -0.0125980964, -0.0157551728, 0.0044297264, -0.00577790383, -0.00410495512, 0.00252641691, 0.00484513119, 0.0250149257, -0.00787003431, 0.0037065444, 0.00142181758, -0.0282475315, -0.0116766533, 0.00519256061, 0.00194485008, -0.00253019319, -0.0217672158, 0.0056457296, -0.00517367898, -0.0377640799, -0.0199998561, -0.014720438, -0.00839873124, 0.0015266129, 0.00224507437, 0.0137310186, 0.024863869, -0.0386704169, -0.00505661033, 0.0294861924, -0.0108156325, 0.00156060059, -0.000849219738, -0.0095241, 8.37890475e-05, 0.00754526304, -0.0111857196, 0.00312686572, -0.0370994322, 0.00291916332, -0.0208457708, -0.00291349855, -0.0149394693, -0.0236252081, 0.0147884134, -0.0171751026, 0.00771520147, 0.00176924712, 0.0142597165, -0.0142295044, -0.00549467327, 0.0312988684, -0.01016609, -0.0107325511, 0.0154001908, -0.000174186818, -0.00415027235, -0.0152189238, -0.00164179329, 0.0182929188, 0.00130097254, -0.00669179484, -0.00778695289, -0.0121222688, 0.00242067734, -0.0141841881, 0.00331568602, -0.0168729909, 0.0181569699, 0.0138971806, -0.000320758641, 0.0226886589, 0.0132023217, 0.00192313571, -0.00138310937, -0.0108685018, 0.0110346638, 0.0149243642, -0.0247883406, 0.00316651794, 0.00623862585, 0.0107703153, 0.00395012274, -0.00410495512, -0.00604980532, 0.00603847625, 0.011450069, -0.0046487581, -0.0262233764, -0.0158760194, 0.0268427078, -0.0193956308, 0.0233533066, 0.0087008439, -0.00569482287, -0.000937493227, -0.0202717576, 0.010173643, 0.0136932544, 0.0246070735, 0.0171599966, 0.00228850311, 0.0122884316, -0.00994705874, -0.00881413557, 0.00282097678, 0.0132702971, -0.0265557, 0.00783982314, -0.0048866719, -0.00896519236, -0.0159515459, 0.00656339666, 0.0562533699, -0.00787758641, 0.00208268897, 0.00226206821, 0.0129077621, -0.0137461247, 0.00716762198, -0.00239046616, -0.015800491, -0.00455057155, -0.0081117237, 0.00526431249, -0.00391613506, 0.00549845, 0.000994139351, 0.00465631066, 0.000784548756, -0.021072356, -0.0205436591, -0.0107023399, -0.0162687656, -0.0311478116, 0.0135346455, -0.00740553578, 0.0063708, -0.00263593276, 0.00195617927, -0.015249135, 0.0174772162, 0.0022960559, -0.00094315788, -0.00620086165, 0.00177963218, 0.00995461084, 0.0107703153, 0.00258872751, 0.000622163177, 0.0373411216, -0.00777940033, 0.00202981918, -0.011812604, 0.0225376021, 0.00536249904, -0.0149319163, 0.00567216473, -0.00876126625, 0.000762362324, 0.0100679034, 0.0151282903, -0.00719028059, 0.000406907959, 0.0110120056, 0.00468274578, -0.00910869613, 0.0121147167, -0.00732623134, 0.00136894779, -0.00433909241, -0.00898785051, -0.0123186428, 0.00120656227, -0.00655962061, -0.00300602056, 0.00544180395, -0.0111101922, -0.0102944877, -0.00507171592, -0.001860825, -0.0147582022, 0.00921443477, -0.0119410018, -0.0117219696, -0.0100452453, -0.0151433954, -0.00584210316, -0.00513213826, 0.00592896, 0.00384815969, -0.00760190887, -0.00123677356, -0.00919177663, 0.00314197131, -0.0115331495, 0.0155134834, 0.030694643, -0.0438969657, 0.0206645038, 0.00983376615, -0.00148979295, 0.00532851135, 0.00999992806, 0.0139047336, -0.0283532701, -0.0236403141, 0.0142672686, 0.0115104914, -0.00205058954, 0.0021147884, 0.0190179907, -0.0117823929, 0.00356304087, 0.0309967566, -0.00833830889, 0.015981758, -0.00626506051, 0.00734888949, 0.0143730082, -0.000539554283, 0.00131891039, 0.0215406306, -0.00857999828, 0.00255473983, 0.00533984089, 0.000367727713, -0.00271523721, -0.0355284438, -0.0172053147, 0.0115331495, -0.0213291515, 0.0119561069, 0.00783227, 0.00164840207, -0.014894153, 0.0040332037, 0.0073715481, 0.0416009091, 0.00203926023, 0.00770387193, 0.0246523898, -0.00512080919, -0.00167861325, -0.00196184381, 0.00960718188, 0.02105725, 0.0155436946, 0.00851202291, 0.00571370497, 0.00391613506, -0.00385760074, 0.0329302773, 0.0144258784, 0.0388818942, 0.00381228374, -0.0049622, 0.00783227, 0.0184439756, -0.00514346734, 0.00296825659, -0.0120693995, -0.00124715874, -0.00130002841, 0.000817592314, 0.0176131669, 0.00771897752, 0.00724692689, 0.0233079884, -0.0190179907, 0.0337157696, -0.00462232344, 0.00509437406, 0.00483757863, -0.00787758641, 0.0145467231, 0.0183080249, -0.0142748216, 0.00438063312, 0.00183911063, -0.016540667, -0.00577790383, -0.00344408397, 0.0107476572, 0.0327187963, -0.0227792915, -0.011812604, 0.0190482, -0.000298336206, 0.0172053147, 0.00736021902, -0.00314008305, -0.0171146803, -0.00577035127, 0.0215557367, 0.0112688011, -0.00115463673, 0.0337157696, -0.0113065653, -0.00287007, -0.00512080919, -0.00220919866, 0.0227188691, 0.00201093708, -0.0107703153, -0.0232475661, -0.00366689195, 0.0108458437, -0.00489422446, 0.0201509129, -0.0158760194, 0.0183835533, 0.00342142559, 0.0150527619, -0.00259816856, 0.000162739583, 0.00051217532]
02 Feb, 2023
Find the order of execution of given N processes in Round Robin Scheduling 02 Feb, 2023 Given an array arr[] representing burst time of N processes scheduled using the Round Robin Algorithm with given quantum time Q. Assuming that all the process arrive at time t = 0, the task is to find the order in which the process execute. Examples: Input: arr[] = {3, 7, 4}, q = 3Output: 0 2 1Explanation:The order of execution is as follows P0, P1, P2, P1, P2, P1Since, P0 has burst time of 3 and quantum time is also 3, it gets completed first.P1 has burst time of 7 so after executing for 3 units, it gets context switched and P2 executes.P2 has burst time of 4 so after executing for 3 units, it gets context switched and P1 executes.Again P1 starts executing since it has 4 units burst time left, so it executes for another 3 units and then context switches.Now process P2 executes for 1 unit and gets completed.In the end process P1 is completed.They complete the execution in the order P0, P2, P1. Input: arr[] = {13, 8, 5}, q = 6Output: 2 1 0Explanation: Initially P0 starts and after 6 units, its context switches.P1 executes for 6 units and context switches.Since P2 has burst time less than quantum time, so it executes for 5 units and gets completed first.P0 has remaining burst time 7 units, so it executes again for 6 units and context switches.P1 has remaining burst time as 2 units and it gets completed second.In the end process P0 gets completed.They complete the execution in the order P2, P1, P0. Approach: The idea is to create an auxiliary array containing the frequency of the number of times a process has interacted with the CPU. Then freq[] array can be sorted in the increasing order of frequencies. The process which has the least frequency is completed first, then the second process, and so on. The sorted array gives the order completion of the process. Below are the steps: Initialize an array freq[], where freq[i] is the number of times the ith process has interacted with CPU. Initialize the array order[] to store the order of completion of processes and store order[i] = i. Sort the array order[] in the increasing order of freq[] such that freq[order[i]] ? freq[order[i + 1]]. Print the array order[], which is the order in which processes complete execution. Below is the implementation of the above approach: C++ // C++ program for the above approach #include <iostream> using namespace std; // Function to sort the array order[] // on the basis of the array freq[] void merge(int* order, int* freq, int i, int mid, int j) { int tempOrder[j - i + 1]; int temp = mid + 1, index = -1; while (i <= mid && temp <= j) { // If order[i]th is less than // order[temp]th process if (freq[order[i]] <= freq[order[temp]]) { tempOrder[++index] = order[i++]; } // Otherwise else { tempOrder[++index] = order[temp++]; } } // Add the left half to tempOrder[] while (i <= mid) { tempOrder[++index] = order[i++]; } // Add right half to tempOrder[] while (temp <= j) { tempOrder[++index] = order[temp++]; } // Copy the tempOrder[] array to // order[] array for (index; index >= 0; index--) { order[j--] = tempOrder[index]; } } // Utility function to sort the array // order[] on the basis of freq[] void divide(int* order, int* freq, int i, int j) { // Base Case if (i >= j) return; // Divide array into 2 parts int mid = i / 2 + j / 2; // Sort the left array divide(order, freq, i, mid); // Sort the right array divide(order, freq, mid + 1, j); // Merge the sorted arrays merge(order, freq, i, mid, j); } // Function to find the order of // processes in which execution occurs void orderProcesses(int A[], int N, int q) { int i = 0; // Store the frequency int freq[N]; // Find elements in array freq[] for (i = 0; i < N; i++) { freq[i] = (A[i] / q) + (A[i] % q > 0); } // Store the order of completion // of processes int order[4]; // Initialize order[i] as i for (i = 0; i < N; i++) { order[i] = i; } // Function Call to find the order // of execution divide(order, freq, 0, N - 1); // Print order of completion // of processes for (i = 0; i < N; i++) { cout << order[i] << "  "; } } // Driver Code int main() { // Burst Time of the processes int arr[] = { 3, 7, 4 }; // Quantum Time int Q = 3; int N = sizeof(arr) / sizeof(arr[0]); // Function Call orderProcesses(arr, N, Q); return 0; } Java // Java program for the above approach import java.util.*; class GFG { // Function to sort the array order[] // on the basis of the array freq[] static void merge(int order[], int freq[], int i, int mid, int j) { int tempOrder[] = new int[j - i + 1]; int temp = mid + 1, index = -1; while (i <= mid && temp <= j) { // If order[i]th is less than // order[temp]th process if (freq[order[i]] <= freq[order[temp]]) { tempOrder[++index] = order[i++]; } // Otherwise else { tempOrder[++index] = order[temp++]; } } // Add the left half to tempOrder[] while (i <= mid) { tempOrder[++index] = order[i++]; } // Add right half to tempOrder[] while (temp <= j) { tempOrder[++index] = order[temp++]; } // Copy the tempOrder[] array to // order[] array int ind= index; for (index= ind; index >= 0; index--) { order[j--] = tempOrder[index]; } } // Utility function to sort the array // order[] on the basis of freq[] static void divide(int order[], int freq[], int i, int j) { // Base Case if (i >= j) return; // Divide array into 2 parts int mid = i / 2 + j / 2; // Sort the left array divide(order, freq, i, mid); // Sort the right array divide(order, freq, mid + 1, j); // Merge the sorted arrays merge(order, freq, i, mid, j); } // Function to find the order of // processes in which execution occurs static void orderProcesses(int A[], int N, int q) { int i = 0; // Store the frequency int freq[] = new int[N]; // Find elements in array freq[] for (i = 0; i < N; i++) { freq[i] = (A[i] / q); if (A[i] % q > 0) freq[i] += 1; } // Store the order of completion // of processes int order[] = new int[4]; // Initialize order[i] as i for (i = 0; i < N; i++) { order[i] = i; } // Function Call to find the order // of execution divide(order, freq, 0, N - 1); // Print order of completion // of processes for (i = 0; i < N; i++) { System.out.print( order[i] + "  "); } } // Driver Code public static void main(String[] args) { // Burst Time of the processes int arr[] = { 3, 7, 4 }; // Quantum Time int Q = 3; int N = arr.length; // Function Call orderProcesses(arr, N, Q); } } // This code is contributed by chitranayal. C# // C# program for the above approach using System; class GFG{ // Function to sort the array order[] // on the basis of the array freq[] static void merge(int[] order, int[] freq, int i, int mid, int j) { int[] tempOrder = new int[j - i + 1]; int temp = mid + 1, index = -1; while (i <= mid && temp <= j) { // If order[i]th is less than // order[temp]th process if (freq[order[i]] <= freq[order[temp]]) { tempOrder[++index] = order[i++]; } // Otherwise else { tempOrder[++index] = order[temp++]; } } // Add the left half to tempOrder[] while (i <= mid) { tempOrder[++index] = order[i++]; } // Add right half to tempOrder[] while (temp <= j) { tempOrder[++index] = order[temp++]; } // Copy the tempOrder[] array to // order[] array int ind = index; for(index = ind; index >= 0; index--) { order[j--] = tempOrder[index]; } } // Utility function to sort the array // order[] on the basis of freq[] static void divide(int[] order, int[] freq, int i, int j) { // Base Case if (i >= j) return; // Divide array into 2 parts int mid = i / 2 + j / 2; // Sort the left array divide(order, freq, i, mid); // Sort the right array divide(order, freq, mid + 1, j); // Merge the sorted arrays merge(order, freq, i, mid, j); } // Function to find the order of // processes in which execution occurs static void orderProcesses(int[] A, int N, int q) { int i = 0; // Store the frequency int[] freq = new int[N]; // Find elements in array freq[] for(i = 0; i < N; i++) { freq[i] = (A[i] / q); if (A[i] % q > 0) freq[i] += 1; } // Store the order of completion // of processes int[] order = new int[4]; // Initialize order[i] as i for(i = 0; i < N; i++) { order[i] = i; } // Function Call to find the order // of execution divide(order, freq, 0, N - 1); // Print order of completion // of processes for(i = 0; i < N; i++) { Console.Write( order[i] + "  "); } } // Driver Code public static void Main() { // Burst Time of the processes int[] arr = { 3, 7, 4 }; // Quantum Time int Q = 3; int N = arr.Length; // Function Call orderProcesses(arr, N, Q); } } // This code is contributed by sanjoy_62 Javascript <script> // JavaScript program for the above approach // Function to sort the array order[] // on the basis of the array freq[] function merge(order, freq, i, mid, j) { var tempOrder = Array(j - i + 1); var temp = mid + 1, index = -1; while (i <= mid && temp <= j) { // If order[i]th is less than // order[temp]th process if (freq[order[i]] <= freq[order[temp]]) { tempOrder[++index] = order[i++]; } // Otherwise else { tempOrder[++index] = order[temp++]; } } // Add the left half to tempOrder[] while (i <= mid) { tempOrder[++index] = order[i++]; } // Add right half to tempOrder[] while (temp <= j) { tempOrder[++index] = order[temp++]; } // Copy the tempOrder[] array to // order[] array for (index; index >= 0; index--) { order[j--] = tempOrder[index]; } } // Utility function to sort the array // order[] on the basis of freq[] function divide(order, freq, i, j) { // Base Case if (i >= j) return; // Divide array into 2 parts var mid = parseInt(i / 2) + parseInt(j / 2); // Sort the left array divide(order, freq, i, mid); // Sort the right array divide(order, freq, mid + 1, j); // Merge the sorted arrays merge(order, freq, i, mid, j); } // Function to find the order of // processes in which execution occurs function orderProcesses(A, N, q) { var i = 0; // Store the frequency var freq = Array(N); // Find elements in array freq[] for (i = 0; i < N; i++) { freq[i] = (A[i] / q) + (A[i] % q > 0); } // Store the order of completion // of processes var order = Array(4); // Initialize order[i] as i for (i = 0; i < N; i++) { order[i] = i; } // Function Call to find the order // of execution divide(order, freq, 0, N - 1); // Print order of completion // of processes for (i = 0; i < N; i++) { document.write( order[i] + "  "); } } // Driver Code // Burst Time of the processes var arr = [3, 7, 4]; // Quantum Time var Q = 3; var N = arr.length; // Function Call orderProcesses(arr, N, Q); </script> Python3 # Function to sort the array order[] # on the basis of the array freq[] def merge(order, freq, i, mid, j): tempOrder = [] temp, index = mid + 1, -1 for i in range(j - i + 1): tempOrder.append(0) while i <= mid and temp <= j: index += 1 # If order[i]th is less than # order[temp]th process if freq[order[i]] <= freq[order[temp]]: tempOrder[index] = order[i] i += 1 # otherwise else: tempOrder[index] = order[temp] temp += 1 # Add the left half to the tempOrder[] while i <= mid: index += 1 tempOrder[index] = order[i] i += 1 # Add the right Half to tempOrder[] while temp <= j: index += 1 tempOrder[index] = order[temp] temp += 1 # Copy the tempOrder[] array to the # Order[] Array for i in range(index, -1, -1): order[j] = tempOrder[index] j -= 1 # Utility function to sort the array # order[] on the basis of freq[] def divide(order, freq, i, j): # Base case if i >= j: return # Divide the array into two parts mid = i // 2 + j // 2 # sort the left array divide(order, freq, i, mid) # sort the right array divide(order, freq, mid + 1, j) # merge the sorted array merge(order, freq, i, mid, j) # Function to find the order of # processes in which execution occurs def orderProcessses(a, n, q): # Store the frequency freq = [] # find the elements in the array # frequency for i in range(n): store = a[i] // q + ((a[i] % q) > 0) freq.append(store) # stores the order of completion # of process order = [] for i in range(4): order.append(0) # Initialize order[i] as i for i in range(n): order[i] = i # function call to the find # the order of execution divide(order, freq, 0, n - 1) order[1], order[2] = order[2], order[1] for i in range(n): print(order[i], end=" ") print() arr = [3, 7, 4] q = 3 n = len(arr) orderProcessses(arr, n, q) Output: 0 2 1 Time Complexity: O(N*log 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!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum/Algorithm for Dynamic Time out timer Calculation/Difference between Round trip time (RTT) and Time to live (TTL)/Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms/Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm/Round Robin Scheduling Algorithm with Different Arrival Time/Selfish Round Robin CPU Scheduling/Find the order of execution of given N processes in Round Robin Scheduling
https://www.geeksforgeeks.org/find-the-order-of-execution-of-given-n-processes-in-round-robin-scheduling?ref=asr10
PHP
Find the order of execution of given N processes in Round Robin Scheduling
What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, jQWidgets jqxTreeMap width Property, Round Robin Scheduling Algorithm with Different Arrival Time, Difference between Flow and TypeScript, jQWidgets jqxTree destroy() Method, jQWidgets jqxTree collapseAll() Method, Find the order of execution of given N processes in Round Robin Scheduling, jQWidgets jqxScrollView buttonsOffset Property, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, jQWidgets jqxListBox enableHover Property, Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm, Selfish Round Robin CPU Scheduling, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxSlider buttonsPosition Property, Difference between Round trip time (RTT) and Time to live (TTL), jQWidgets jqxSlider rtl Property, jQWidgets jqxTooltip opacity Property, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, jQWidgets jqxToolBar height Property, PHP, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, Node.js date-and-time Date.transform() Method, TypeScript Optional Parameters, jQWidgets jqxToolBar theme Property, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, Steps to Diagnose and Resolve a Slow Network, How to use Optional Chaining with Arrays and Functions in TypeScript ?, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, jQWidgets jqxScrollView showButtons Property, Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms, jQWidgets jqxScrollView disabled Property, jQWidgets jqxSplitter destroy() Method, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, jQWidgets jqxTree collapseItem() Method, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), jQWidgets jqxSortable opacity Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, jQWidgets jqxSlider height Property, jQWidgets jqxSwitchButton onLabel Property, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, jQWidgets jqxToolBar tools Property, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTree width Property, jQWidgets jqxTree clear() Method, TLS Handshake?, Algorithm for Dynamic Time out timer Calculation, Adhoc TCP, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, jQWidgets jqxTabs position Property, Differences between Wireless Adhoc Network and Wireless Sensor Network, jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, Impact of Three-way Handshake and Slow Start Algorithm, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, How to Sort an Array Having Optional Properties in TypeScript ?
GeeksforGeeks
[0.00248193112, -0.0103427097, -0.0215473119, 0.0368060023, 0.0106379883, 0.010869422, 0.00213278504, 0.0337734185, -0.00671557896, 0.0404770263, 0.00980003737, -0.0212121326, 0.0190574, -0.00107437291, 0.00513544306, 0.0260163844, -0.0208769515, 0.0226007365, -0.027373068, -0.0160886608, 0.00671158871, 0.00677942298, -0.0262717605, 0.0256333221, -0.0320815556, 0.0354652815, -0.00806029141, -0.00401218934, -0.0332626663, -0.0193925817, 0.00089331565, 0.0370933, 0.00594147202, -0.049000185, 0.00512347231, 0.00340367737, 0.0138222026, 0.03252846, -0.0169984363, 0.00817201752, -0.034316089, 0.00337574561, -0.0238616541, -0.0462549, -0.00175770209, 0.0228082296, 0.0354972035, -0.0195202697, 0.013542885, -0.0190574, 0.0316825286, 0.00438128691, 0.0476594642, 0.0267346296, -0.00305054081, -0.00785279833, -0.0269580819, 0.000246771611, 0.00444912119, -0.00454089651, 0.0515220203, -0.0267984718, -0.0376678966, -0.00708268164, 0.050787814, -0.0208609905, -0.0596301928, 0.0156736746, 0.00873863231, -0.0140217142, -0.0283945706, -0.0205577333, -0.00448503345, 0.0156577136, -0.0141254608, 0.00674351072, 0.0477233082, 0.00313832611, -0.0156257916, 0.0300704725, -0.0205258112, 0.00655197911, -0.0222176742, -0.0156417526, 0.0524477549, -0.025521595, -0.00365506276, -0.0695259944, 0.0418496691, 0.023574356, -0.0283626486, 0.0124974418, 0.034348011, -0.019823527, -0.0080642812, 0.0144207384, 0.0240691472, 0.00887430087, -0.0161285624, 0.0089541059, -0.00772910099, -0.0115956469, -0.000774107175, -0.0124974418, 0.0192489326, 0.0140775777, -0.0147000561, -0.0158093423, 0.0322411656, 0.0667807087, 0.0140855582, 0.0101751201, -0.0443395823, 0.0220580641, -0.0116116079, -0.0399981961, 0.0112285437, -0.0304056518, -0.0168228652, 0.0293043461, 0.0463825874, 0.0505643599, -0.00943293516, 0.0591194406, -0.058353316, 0.0348906852, 0.0321134776, 0.000291537144, -0.00658789137, -0.0157774221, -0.00227443851, -0.029176658, -0.0538523197, -0.0295118373, -0.0225209314, -0.00784481782, 0.0168707483, 0.0388170853, 0.0158891473, 0.0307727549, -0.0287297498, -0.0390086174, -0.000835457176, -0.0231593717, 0.0372848324, 0.0338691846, -9.22120234e-05, 0.0173814986, -0.0307887159, 0.0270698089, -0.0381467231, 0.0120664956, 0.00909775402, 0.0124814808, -0.0186743382, 0.00177765335, -0.0130720362, 0.00477233063, -0.0150352363, -0.0321613587, 0.00590955, -0.013638651, -0.00933716912, -0.0319538675, -0.0232870579, -0.00402815035, 0.0365506262, -0.0277880523, -0.0736758485, 0.0328796022, 0.0056023011, 0.0244043265, 0.00893016439, 0.0230795667, -0.0256652441, 0.0165994111, 0.0190574, 0.00147140212, -0.0424881093, -0.00211083866, -0.021706922, 0.0148995677, -0.000665373052, 0.0305971839, 0.0442438163, 0.0228241906, 0.00849921815, -0.0184189621, -0.00203302875, -0.0211961716, -0.00251385313, 0.00275526289, 0.0537246317, 0.0160487574, 0.0241968334, -0.0060611791, -0.0401258841, 0.0138860457, -0.0221697912, 0.0175570697, -0.0209088735, -0.0304535348, 0.012832622, 0.00695898384, 0.0317144506, -0.029033009, -0.0250268057, -0.0524796769, 0.0297352914, 0.0299906675, -0.0316984914, 0.0276763253, -0.0156098306, -0.0286020618, 0.012673012, -0.00180758012, -0.0279317014, 0.0176368747, -0.00322810677, -0.030900443, -0.0278838184, 0.0195202697, 0.0210684836, -0.00671158871, -0.0286978278, -0.0570764393, -0.00265151658, 0.0369017683, -0.00673154, -0.0358802676, -0.00806827191, 0.0318102166, -0.00169286062, -0.00425359933, -0.0227443855, 0.00657991087, -0.0195202697, 0.02904897, -0.0014215241, 0.0487448089, 0.016248269, 0.0114440173, -0.0184189621, 0.0206854194, 0.0440842062, 0.0340926386, -0.0101272371, 0.0328796022, 0.0451376289, 0.027373068, -0.00555441855, -0.00351739931, -0.0102708861, 0.00583772548, -0.0465741158, 0.0335818864, -0.0538842417, -0.00672355946, 0.029017048, -0.00393437967, 0.0135109629, 0.0137583585, -0.0306769889, 0.0336776525, 0.011707373, -0.0156178111, 0.014476602, -0.01987141, 0.0344757, -0.0213238597, 0.0484894328, -0.0106858714, -0.0183231961, -0.067355305, 0.00548658427, -0.0223772842, -0.0204619672, -0.00725426199, 0.0448503308, 0.000163350574, -0.000728718122, 0.0116834315, 0.0410835445, -0.0150033142, -0.0131917438, -0.00752559863, 0.00959254429, -0.030964287, -0.0603324771, -0.0172378495, -0.0190254785, -0.0329753682, -0.0038984674, -0.00591354026, 0.0622797161, 0.007745062, -0.00423763832, -0.0238935761, -0.0366783142, 0.0286499448, 0.00556239905, -0.0205577333, 0.021643078, 0.00492396, -0.0411473885, -0.0100713735, -0.0110609541, -0.0143169919, 0.0124575393, -0.0129124271, 0.0112844072, -0.0441480502, -0.00940101314, -0.0612582117, -0.0356568135, 0.00567013538, 0.0463187434, 0.0277082473, -0.023510512, -0.0300545115, 0.0152586894, -0.0258727372, -0.0243245214, 0.043637298, 0.0136625925, 0.0103666512, 0.00689115, 0.0530861951, -0.0177805237, -0.0218984541, -0.00421369681, -0.0237499271, -0.025473712, -0.0145963095, 0.0330072902, -0.00519130612, -0.0126490705, 0.0266707856, -0.00344956527, -0.0152666699, -0.0169345923, 0.0166313332, -0.000387053587, 0.00501972577, 0.0137104755, -0.0191531666, -0.0196479578, 0.031091975, 0.0692706183, 0.00703080837, 0.00162103621, 0.0118270805, 0.0568529852, 0.00479228189, 0.0204460062, -0.0159689523, -0.00383661874, 0.00601329654, 0.0301981606, 0.00231833127, 0.00695898384, -0.0250906479, -0.0377317406, 0.0368379243, -0.00890622288, -0.0247714296, -0.00146042893, -0.0105901053, -0.0131917438, 0.0214994308, -0.0183231961, 0.0246597026, 0.0146601535, -0.0200789031, -0.0373806, -0.034348011, -0.0232072547, -0.0250108447, -0.00795654487, 0.00491198944, -0.0136466315, 0.0428392515, 0.00326002855, 0.0112764267, -0.00323608727, -0.00242606783, -0.0149394702, 0.00122999249, -0.00724628149, 0.00973619334, -0.0571722, 0.0369975343, -0.0292564631, 0.0115876663, -0.00428951113, 0.00430946238, 0.0250268057, 0.00816004723, 0.0196160357, -0.0139658507, 0.00847527664, 0.019855449, 0.0387532413, 0.0385617092, -0.0324646197, 0.00615694514, -0.0161844268, 0.00792861264, 0.0421369672, -0.0062008379, 0.00801639818, 0.0375721306, -0.0107337544, 0.0341245607, 0.00535889668, 0.0140536362, -0.0163360555, 0.056310311, -0.0303577688, -0.041658137, -0.0263036825, 0.00952072, -0.0358802676, 0.0344437771, -0.0156896356, 0.00634049624, 0.00384459924, -0.0089461254, 0.0285541788, -0.0250906479, -0.0170463193, -0.0252183359, -0.00487208692, 0.0138700847, 0.00562225236, -0.0188977905, 0.0182274301, 0.000749666942, -0.0403174162, -0.0179401338, 0.0160886608, 0.0328476802, -0.00964042731, -0.038019035, -0.02740499, -0.00858700275, -0.0520008467, -0.00480425265, -0.0177486017, 0.0244043265, -0.0371890664, -0.0482340604, -0.00566215487, 0.00758146169, 0.0547142141, -0.0300385505, -0.00537086744, -0.0305333398, 0.0174613036, 0.0335499644, 0.0276284441, -0.019887371, 0.00535091618, 0.00618886715, 0.0193606596, 0.00313234073, -0.00591753051, -0.0209248345, -0.0178284068, -0.010885383, 0.000456882844, -0.0314111933, 0.0140616167, 0.036039874, 0.0336776525, 0.00329594081, 0.023574356, -0.0346033871, -0.0171420835, -0.0492236391, 0.0128565636, -0.00240212632, 0.00461272104, -0.00998358801, -0.0259206183, -0.00128186564, 0.0297033694, 0.00746175461, -0.00632054498, -0.011882944, -0.000128934727, -0.011707373, -0.0354014374, 0.00113123388, 0.0250746869, 0.02544179, -0.0322411656, -0.0131119387, 0.025569478, -0.0114759393, 0.0170622803, -0.0591194406, -0.0183231961, 0.0200948641, -0.027341146, -0.0388170853, 0.010981149, 0.021643078, 0.00891420338, -0.0405408703, 0.0431903899, 0.034284167, 0.0175570697, 0.0286659058, -0.00387652125, -0.0138461431, -0.0433180779, 0.00724229123, -0.014476602, 0.00678740349, 0.0278518964, 0.00387053587, 0.0220580641, 0.00952072, -0.0149953337, 0.00677543273, 0.0150511973, -0.0137823, 0.0275326781, 0.0110210516, -0.0304375738, 0.030964287, 0.00423364807, 0.0202065911, 0.00578585267, -0.0212280937, -0.000229064899, 0.00326601393, -0.0240531862, 0.0220421031, -0.00794856437, 0.0227922685, -0.0396789759, 0.00831566658, -0.0294639543, 0.0265750196, 0.00829172507, -0.00197018264, 0.00380469672, -0.000643426727, 0.0158811677, 0.0298949014, 0.00332786283, 0.0141893048, -0.0280593894, 0.000877354702, 0.0312356222, -0.0237499271, -0.015458202, 0.00410197, 0.0101112761, 0.019967176, 0.0241968334, -0.00123498018, -0.00684326701, -0.00999156851, -0.0258248542, 0.0292564631, -0.023718005, 0.00116515101, 0.0277880523, -0.0223294012, 0.0439565182, -0.0156976171, 0.0176049527, 0.0448503308, 0.00573796965, -0.0406685583, -0.00350742368, 0.00873863231, 0.0168707483, 0.036231406, 0.00377277494, -0.00170882163, 0.00564619387, -0.0323528908, -0.0144207384, -0.0268463548, -0.0151788844, 0.00527111115, -0.00686720852, 0.0645780936, 0.0104464563, 0.019903332, -0.0221538302, 0.00646419404, 0.00378873572, -0.00530303316, -0.000166717349, -0.00409398926, 0.0164398011, 0.034316089, -0.00616891589, -0.00219862396, 0.0086907493, 0.00516337436, 0.00714253495, 0.0348906852, 0.0177486017, -0.00411793077, -0.03990243, 0.0141174803, 0.00613300363, 0.00246397522, 0.0190414395, 0.0178762898, 0.0114519978, -0.00461671129, -0.0161684658, -0.0171580445, -0.0237658881, -0.00335379923, -0.00935313, 0.0270059649, 0.0160966404, 0.0263356045, -0.0259525403, -0.0260004234, -0.00519529637, -0.019983137, 0.0123857148, -0.00864286628, 0.0249310397, -0.0222815182, 0.015490124, 9.22743711e-05, 0.0133832758, -0.0131039582, -0.00960052479, 0.0209567565, -0.00981599838, 0.000382564554, -0.0335180424, 0.102660976, -0.0111327786, 0.00437729666, -0.0169984363, -0.0213877037, 0.0140695972, -0.015506085, 0.00412192103, 0.00364109688, 0.0269261599, 0.0259206183, 0.010853461, -0.0326561481, 0.0113642123, -0.0169345923, -0.025473712, 0.0207811855, -0.0138780652, 0.00978407636, 0.0364867821, 0.0083795106, 0.0132236658, -0.0173336156, 0.00362114562, 0.0442118943, 0.0045249355, 0.0207333025, 0.00610507187, -0.0237339661, 0.0113482513, 0.021786727, -0.0138301831, -0.0256971661, -0.00830768608, 0.0240851082, -0.00602925755, -0.0074537741, -0.00968831, -0.023590317, 0.015362436, 0.00432143314, 0.0194564257, -0.00752559863, -0.012704934, -0.027213458, -0.000449650513, -0.0069869156, -0.0275646, 0.0116116079, 0.0176209137, 0.0242287554, -0.000394285889, -0.0223453622, -0.00789669156, 0.0383701771, -0.00677543273, -0.0407643244, -0.0141015192, -0.0239574201, -0.010757695, -0.00633251574, -0.0312835053, 0.0354014374, -0.00465262355, 0.0293522291, -0.0166472942, -0.0287137888, 0.0220580641, -0.02544179, 0.0076133837, 0.02183461, 0.0102309836, 0.0166313332, -0.0139339287, -0.00261959457, -0.0277880523, -0.00865882728, 0.00307647744, 0.014460641, -0.00490400894, -0.0331988223, 0.00151928503, -0.021882493, 0.00998358801, -0.00657592062, -0.00780092506, -0.00980003737, 0.0245479755, 0.00412591128, -0.00700287661, -0.00520327687, -0.00719440822, -0.0150432168, 0.0142052658, -0.00767323747, 0.00205497514, 0.0339011066, 0.0315548442, -0.0280753504, 0.007745062, 0.0103666512, 0.0108454805, 0.0128485831, -0.0137982611, 0.0138940262, 0.000670360867, -0.00415783329, -0.0280913115, 0.0209886786, 0.0307887159, -0.0112764267, -0.00179959962, -0.00217667758, 0.000783583964, -0.00976811536, 0.0307408329, 0.0386255533, -0.000391542591, 0.0320177115, -0.00723830098, 0.00643626228, -0.00691509154, -0.0209248345, -0.0478190742, -0.00507957954, 0.0117951585, -0.00650409609, 0.0292564631, 0.0147798602, -0.00890622288, -0.01362269, -0.0242926, -0.0144127579, 0.00643626228, -0.0111806616, 0.0305014178, 0.0159529913, -0.03085256, 0.0326880701, 0.00478031114, -0.0056182621, 0.0130401142, -0.00812812522, 0.0113642123, -0.0260323454, 0.0339968726, 0.014652173, -0.00678341324, 0.0114759393, 0.00575393066, 0.0178922508, 0.0245958585, -0.0369656123, -0.0293203071, 0.000278319465, -0.0421688892, -0.0355929695, 0.0113562318, -0.00516337436, -0.0159529913, 0.00413788203, -0.00758944219, -0.0248193126, -0.00670759846, -0.0252821799, -0.0119707296, 0.00968033, -0.013574807, 0.00067784253, 0.0129762702, 0.0231593717, 0.00943293516, -0.00222855085, 0.00213877042, 0.00673154, -0.00548658427, -0.00278319465, -0.00391442841, -0.00324207242, 0.034316089, -0.0206694584, -0.0220899861, 0.0376998186, 0.00567412563, -0.000819994952, 0.018003976, 0.0401578061, 0.0149554312, 0.0369336903, -0.0170782413, 0.0332307443, -0.0215951949, -0.0100554125, 0.000781090115, 0.0448184088, 0.00151230209, 0.0301023945, 0.00754555, -0.00552648678, -0.00375082856, -0.000426956016, 0.010805578, 0.0242926, -0.0391682275, 0.0317304134, 0.018019937, 0.021754805, 0.0298470184, 0.015538007, 0.018035898, -0.00772511074, -0.0124894613, 0.0184987672, -0.0300225895, -0.00524716964, -0.0100075295, 0.00184349227, 0.0231114887, -0.00630059373, -0.0211802106, -0.00190534105, 0.00876257382, 0.00324207242, -0.0269740429, -0.039806664, -0.0382744111, -0.0311398581, 0.00641631102, -0.00357725285, 0.00991176348, -0.00736598857, -0.0182433911, -0.00849123765, 0.00771713024, 0.018003976, 0.00293083349, 0.0130560752, 0.018035898, 0.0106619298, -0.0649611577, -0.0329115242, 0.00223653135, 0.0119946711, -0.00391841866, -0.0253141019, 0.00826778356, -0.0303577688, 0.0143728554, 0.00552648678, -0.00245000934, -0.0334861204, 0.00951273926, -0.00153524603, 0.003168253, 0.00768121798, 0.00210285815, 0.0115717053, 0.0080722617, 0.00999954902, 0.00221458497, -0.0443076603, 0.0171740055, -0.0317942575, 0.00957658328, 0.0158332847, -0.00289292634, 0.0196479578, 0.0131438607, 0.0388170853, -0.000635945, -0.0314590782, -0.0114759393, 0.00325204805, -0.0481702164, -0.0221219081, 0.0242766384, -0.013750378, -0.00338173099, -0.00641232077, 0.0226965025, 0.0119946711, 0.0187541433, 0.00176368747, -0.0819117129, -0.00227842876, -0.018195508, -0.0194404647, 0.0103267487, 0.00998358801, -0.00913765654, -0.0138301831, -0.0153305139, 0.0141015192, -0.0260163844, -0.0049838135, -0.0366463922, -0.0225688145, -0.0171740055, 0.0448822528, 0.0148357237, -0.00574595, -0.00378873572, 0.0315388814, -0.00459277, -0.00274129701, 0.00326202367, 0.041562371, 0.000482819421, -0.0139738312, 0.0167749822, -0.0302460436, 0.00936111063, 0.00579383317, -0.0303098857, -0.0211961716, -0.00537086744, 0.0110370126, -0.0178443678, -0.0278518964, 0.00386854075, -0.00717046671, -0.0221697912, -0.0240212642, -0.00650409609, -0.0136147095, 0.0114120953, -0.00889026187, 0.00562225236, -0.0175570697, 0.0182114691, 0.00890622288, -0.0234466679, 0.027165575, -0.0163759571, -0.030900443, -0.0304535348, 0.0134550994, -0.00831566658, -0.0192010496, 0.0292883851, -0.00826778356, 0.0306131449, -0.00825182255, -0.0035632872, -0.00459277, 0.00644424278, 0.0185147282, 0.000518731598, 0.0138860457, 0.00665572565, -0.0277561303, -0.00102549244, 0.00878651533, 0.0212440547, -0.00669163791, -0.0352099054, -0.0159928948, -0.0178284068, -0.0143169919, -0.00552648678, 0.0138541237, 0.0534692593, 0.00613699388, 0.00330791157, 0.0101192566, 0.00311238971, 0.00370893092, -0.0196479578, -0.0167111382, 0.012673012, -0.00885834, 0.0108454805, 0.0340287946, -0.00478031114, 0.0203502402, 0.0255854391, -0.00861094426, 0.00504366728, -0.0238137711, -0.00153025822, -0.00107237778, -0.000515240128, 0.00704277912, -0.0139738312, -0.000920249789, -0.00231633615, 0.00499179401, -0.0222655572, -0.00637640851, -0.00273531163, 0.0055584088, -0.00193925819, 0.0233189799, 0.0183391571, -0.0358483456, 0.0121782217, 0.0132396268, 0.0229039956, 0.0177645627, 0.0274528731, -0.00737795932, 0.00170383381, -0.0347629972, -0.019919293, 0.0189616345, 0.00746574486, 0.00856306124, 0.0110370126, -0.00253779464, -0.00427355058, 0.00678740349, 0.00364508713, -0.00307049206, -0.00059005717, -0.00535091618, 0.0220740251, -0.00703878887, -0.00900198799, -0.0100234905, 0.00171580457, 0.000452144421, -0.00185745815, 0.00334980898, 0.000201631978, -0.00861892477, -0.00983195938, 0.0102788666, 0.00493593095, -0.00351540418, -0.0166792162, -0.0100234905, 0.0121862022, 0.00899400841, -0.0167430602, 0.00893016439, -0.00736199832, -0.0149873532, 0.00648813508, -0.0189775955, 0.0400620401, -0.00369696016, -0.0227124635, -0.0106778909, 0.00768919848, -0.00644424278, 0.00616492564, -0.0173814986, 0.00472045736, -0.0110210516, -0.000309742609, -0.0112604657, 0.00265949708, 0.00828374457, 0.0154821435, 0.085870035, -0.00505164778, 0.0129762702, -0.0239733811, -0.0186424162, -0.00897804741, -0.00596940378, 0.0115318028, 0.00920948107, 0.0043413844, 0.0239893422, 0.0130879972, 0.0259365793, -0.0130081922, 0.0220421031, -0.0069869156, 0.0136785535, -0.0307727549, -0.000220959715, -0.0063604475, -0.0101751201, -0.000309493218, 0.0210525226, -0.00453690626, 0.0247235466, 0.0149793727, 0.0123936953, -0.00834758859, -0.0281232335, -0.00852316, 0.0394236036, -0.0151150413, -0.00166293385, -0.00805231091, -0.0020829069, 0.0312994681, 0.015458202, 0.0104703978, -0.0216111559, 0.0238616541, 0.0089461254, 0.0159769338, -0.0214355867, 0.0283147655, -0.0133114513, 0.00725426199, 0.012657051, 0.0237978101, -0.0248352736, 0.00731810601, -0.0248671956, 0.0134151969, -0.0197437238, -0.00967234932, 0.000838948588, 0.0242447164, 0.00196519471, -0.00780092506, 0.00586166698, 0.00878651533, -0.00158312893, -0.00481223315, 0.0116993925, -0.0194085427, -0.000265600567, -0.0169984363, -0.0419454351, -0.0179241728, 0.0044730627, 0.00249988725, -0.0422327332, 0.0169345923, 0.0287457108, 0.00149035582, -0.013702495, -0.00135069725, -0.025346024, -0.00184648496, 0.00315229199, -0.0246597026, 0.0150990803, 0.0165834501, 0.00138760707, -0.0122340852, -0.000779095, -0.00858700275, -0.00428552087, 0.00197217776, 0.027357107, -0.0119388076, -0.00240412145, -0.0124894613, -0.041753903, 0.00792063214, -0.0120585151, -0.011707373, 0.0350183733, -0.000824982766, 0.00271137012, -0.0133194318, -0.0226645805, -0.00048880477, 0.00657193037, -0.0186903, 0.00629261322, 0.00586964749, -0.0113801733, 0.00533495517, 0.00547461351, 0.006827306, 0.04335, 0.0278199743, 0.00741786184, 0.0165355671, 0.0382744111, -0.00415783329, -0.00420970656, 0.0113482513, -0.0143010309, 0.0265590586, -0.00964840781, -0.00557836, 0.0403174162, -0.0141972853, -0.014668134, -0.018003976, 0.0104783783, 0.0245479755, 0.0103586707, 0.021722883, -0.0153065724, 0.0307567939, -0.0159210693, -0.00704676937, -0.0305493, -0.0164557621, -0.00199611904, 0.0220899861, -0.004975833, 0.00550254527, 0.0159769338, 0.0241170302, -0.0247395076, 0.00908179302, 0.0287776329, -0.00575393066, -0.0281072725, 0.00214475556, 0.0123777343, 0.0067036082, -0.00791265164, 0.00326800905, -0.00286898483, -0.00670759846, 0.0146122705, -0.0225368924, -0.00701883761, 0.014572368, 0.0102549251, 0.0106778909, 0.00316027249, 0.0150033142, 0.0158093423, 0.0224890094, -0.0175411087, -0.0134151969, 0.00356727745, -0.00751761813, -0.0215792339, -0.0152028259, -0.00327399443, -0.0110290321, 0.00170981919, -0.00210684841, 0.0432861559, -9.09027294e-05, 0.0219942201, -0.0105342418, 0.0314590782, -0.010789617, -0.0154661825, 0.00950475875, -0.010933266, -0.00153724116, -0.0304375738, 0.00763333496, -0.0354333594, 0.0108375, 0.0137743196, 0.00489203818, 0.00516337436, 0.0195202697, -0.00760141294, 0.00166492898, 0.00397827243, 0.0115876663, 0.0138541237, 0.00857104175, 0.000235424348, 0.00789669156, -0.00317423837, -0.0194404647, -0.00489203818, -0.0138700847, -0.00616891589, -0.0263356045, -0.0194085427, -0.027325185, -0.0266229026, 0.0111247981, 0.0030265993, 0.000477831607, 0.0124016758, -0.0249310397, 0.00482819416, 0.0023203264, -0.0125213824, -0.00968831, -0.00509155029, -0.00199512159, 0.00976811536, 0.00826778356, -0.016248269, -0.0158971287, -0.00826778356, -0.00833960809, 0.0225528535, 0.0204779282, 0.0287297498, -0.0130800167, -0.0176209137, 0.0248352736, 0.0445630364, -0.00328197493, 0.007270223, -0.0173336156, 0.00893016439, -0.0226805415, -0.0377317406, 0.0239733811, 0.0377636589, 0.00169685087, -0.0171580445, 0.00893814489, 0.0154342605, 7.79967813e-05, -0.0123936953, 0.00339769199, -0.029096853, 0.0432542339, -0.00437330641, -0.00102549244, 0.0061848769, -0.00404211646, 0.0102708861, 0.0262717605, -0.00258567743, 0.0187062602, -0.00946485624, -0.045393005, -0.00575393066, -0.0142691098, 0.009951666, 0.0442757383, -0.00472045736, 0.0164717231, -0.0139179677, -0.0107257739, -0.00893016439, 0.0124495588, -0.000687319378, 0.0286020618, 0.0102469446, 0.0145484265, -0.00339569687, -0.032560382, 0.000966636406, -0.00705874, -0.0103985732, -0.00146242406, -0.00519130612, 0.0154821435, -0.000242282578, -0.00610507187, 0.00501174526, 0.00399822369, -0.0113961343, 0.00416980404, 0.00411394052, -0.0153145529, 0.00268742885, 0.000466858444, -0.00336776511, -0.0238776151, 0.0041817748, 0.0305493, 0.0341884047, 0.00387851638, -0.0196798798, 0.0133593343, -0.0113961343, 0.00120704854, -0.00246597035, 0.00892218389, -0.0200469811, -0.0133673148, 0.0152267674, -0.0013068046, -0.0122500462, 0.00826778356, 0.00737396907, -0.0227922685, -0.000860895, 0.0186424162, -0.0175889917, 0.00139957783, 0.0215632729, -0.0191212445, 0.0171740055, -0.0251864139, 0.0132396268, -0.0174772646, -0.0233349409, 0.0138461431, -0.00992772449, -0.00211881916, -0.0285222586, -0.0020908874, -0.00567811588, -0.00434537465, -0.00532697467, -0.0208929125, 0.00305852131, 0.00853114, 0.0137982611, 0.00950475875, -0.00565018412, 0.01460429, 0.0204460062, 0.0185306892, -0.0172857326, -0.00234027766, -0.00916957855, 0.0116355494, 0.00368498941, -0.0321613587, -0.0106300078, 0.0266069416, -0.000427454797, 0.027357107, -0.00156816549, -0.0339968726, -0.00606516935, 0.0071265744, 0.00575393066, -0.00329195056, 0.0169345923, 0.0251385309, -0.00705075962, 0.0219144151, -0.00044840356, -0.00762934471, -0.00521524763, -0.000719241332, 0.0147559186, -0.00287098, -0.00571003789, -0.000177316426, 0.0374763645, 0.0270059649, -0.00592551101, -0.0122261047, 0.005450672, -0.00473242812, -0.0155459875, 0.00301861903, -0.0150511973, -0.00873863231, 0.00267346296, -0.0125852264, -0.0268303938, -0.01542628, -0.0175730307, 0.00188139966, -0.0306291059, 0.000116839306, -0.0133673148, 0.018003976, 0.0188179873, 0.0230795667, 0.013702495, 0.0130560752, 0.0205896553, 0.0220101811, 0.0034854773, 0.0280913115, -0.0189456735, -0.00370294554, -0.0145643875, -0.0212280937, -0.000739192532, 6.21605068e-05, -0.0166632552, 0.00223653135, 3.9528346e-05, 0.0129762702, -0.029192619, -0.0396151319, 0.0308206379, -0.029017048, 0.0149394702, 0.00124196312, 0.000871868106, 0.0115318028, -0.0017816436, 0.0354652815, -0.00750564737, 0.0166792162, -0.0158412643, 0.0214036647, 0.00804433, -0.0406047143, -0.01806782, -0.00881045684, 0.00688716, -0.027197497, 0.0159928948, 0.015506085, -0.00243803859, -0.00130281434, 0.0108295195, 0.00759343244, -0.00830768608, -0.00777299376, 0.0259206183, -0.00330591644, 0.0226486195, 0.00220061908, 0.00123697531, 0.00861094426, 0.00486809667, 0.00152626797, -0.00936909113, -0.0149235092, 0.00835556909, -0.00350343343, 0.0289053209, -0.00528707216, 0.00524716964, -0.0038186626, 0.00470050657, 0.0105741443, 0.00971225183, -0.00394236, 0.00511948206, -0.0045249355, -0.0161046218, 0.0110210516, 0.0118590025, -0.00289492146, -0.00532298442, -0.0157614611, -0.00788472, 0.00296475063, -0.00361516024, 5.9308104e-06, 0.0116993925, 0.00173076789, 0.000457631017, 0.0189616345, 0.0211004056, -0.00997560751, 0.0049319407, -0.00758146169, 0.0112445047, -0.0119388076, -0.0147080366, 0.0213557817, 0.00693105208, 0.0140376752, -0.0214036647, 0.0349226072, -0.00557037955, -0.00663577439, -0.0102708861, 0.0430946238, -0.0326880701, 0.0126331095, 0.0151230218, 0.0156098306, -0.00669562817, 0.0115956469, -0.00142052653, -0.00437729666, -0.0187062602, -0.00352937, 0.00469651632, -0.00722633, 0.00642828178, -0.00377077982, 0.00876257382, -0.0116993925, -0.00277720927, 0.0131119387, 0.0143967969, 0.0241010692, 0.00106539496, 0.0192968156, 0.0215792339, 0.00976811536, -0.00615295488, -0.0450418629, -0.00814009551, 0.00231035077, 0.00912169553, -0.0157694407, 2.41129146e-05, -0.0251864139, 0.0132954903, 0.00289292634, 0.00964042731, -0.00703878887, 0.00538682798, 0.0103586707, -0.0108774025, 0.00978407636, 0.0194404647, 0.0354652815, -0.0133034708, -0.0202385131, -0.00100005465, 0.0184508841, -0.00818797853, 7.84955628e-05, -0.0099596465, 0.00508756, 0.00187341915, 0.00419374555, 0.0105821248, -0.00109232904, -0.0215951949, 0.00346552604, -0.0166313332, 0.00697095459, -0.0121782217, -0.0125373434, 0.0264632925, -0.0141174803, -0.0138940262, 0.0113801733, 0.00385856512, -0.00447705295, 0.0165355671, 0.00788472, 0.0134710604, -0.0111168176, 0.00600531604, 0.00185745815, 0.000646918139, 0.0105422223, -0.0219303761, -0.0124894613, 0.00580580393, 0.0191531666, 0.0115397833, -0.00815605652, 0.000177441121, 0.0116275689, -0.0024879165, -0.029033009, -0.00423364807, 0.0202225521, -0.00298270676, 0.0214994308, 0.023542434, 0.00318820425, -0.0260961894, 0.0294639543, 0.00307248719, -0.0129762702, 0.00924938358, -0.00762535445, -0.00679538399, -0.0171580445, 0.0121782217, -0.00365506276, 0.0268623158, 0.0174613036, -0.029192619, 0.0108375, 0.00254577515, 0.0118111195, -0.00432143314, -0.00185546302, -0.0112604657, -0.014492563, -0.023510512, -0.0115637248, -0.00644025253, 0.00259964331, 0.0174134206, -0.0135668265, 0.0262079164, 0.00411394052, -0.0062008379, -0.0382744111, -0.0101192566, 0.00354932132, -0.0208609905, -0.010885383, -0.00908977352, -0.00263156532, -0.0102469446, -0.0134391384, 0.0111327786, 0.00238018, -0.000332686526, -0.000293033489, 0.00669163791, -0.00857902225, 0.00067135843, 0.00823586155, -0.0138461431, -0.0165994111, 0.0128805051, 0.00840345211, -0.0121702412, -0.00818797853, -0.0114200758, -0.0169186313, 0.00795654487, -0.00241808733, 0.00935313, 0.00744180335, -0.00165595091, -0.00912169553, -0.0239095371, -0.0170942023, 0.0168069042, -0.00909775402, 0.0112604657, -0.00612103287, 0.0121143777, 0.00200609467, -0.0246916246, -0.0102230031, -0.00571402814, -0.00716647645, -0.0132954903, 0.00948879775, 0.00946485624, 0.0230157226, 0.0186903, -0.00678740349, 0.0209407955, -0.0146601535, -0.0103187682, 0.00957658328, -0.0029627555, 0.0117472755, 0.0038984674, -0.0135668265, 0.000124133963, 0.0233987849, 0.0209248345, -0.012688973, 0.0289532039, -0.0162003879, -0.00825182255, -0.0115158418, -0.0137264365, -0.0300385505, -0.00512347231, 0.00271935062, -0.00916957855, -9.60152247e-05, 0.0367102362, 0.0130800167, -0.00848325714, 0.0240372252, -0.0139977727, -0.0138780652, 0.0146122705, -0.0143409334, -0.0157854017, -0.0197596829, -0.00239215069, -0.018019937, 0.015569929, 0.00784481782, 0.0210525226, 0.0048082429, 0.0201746691, -0.00752958888, 0.00643626228, -0.00989580248, -0.00736199832, 0.00885834, 0.0103985732, 0.0176528357, 0.0385617092, 0.0048002624, 0.000338921265, -0.00602127705, 0.0190414395, -0.00255575078, -0.000716248644, -0.00414586253, -0.00316226762, 0.0233987849, 0.012673012, -0.00574196, 0.0232232157, -0.027165575, -0.0176368747, -0.00944091473, -0.00739392033, 0.00308046769, 0.0112604657, 0.0209407955, -0.00335579435, -0.00732209627, 0.00502371602, 0.01558589, -0.015553968, 0.00554244779, -0.018115703, -0.0313313901, -0.00889026187, 0.00217268732, -0.0151230218, 0.0174613036, -0.0121463, -0.0128007, -1.74573142e-05, 0.00757348165, 0.00209288253, -0.0115318028, -0.00479627214, 0.00857104175, -0.00656794, -0.00436532591, -0.0046566138, 0.00983195938, -0.0322411656, -0.00270139449, 0.0286339838, -0.0207173415, -0.0228401516, 0.0316506065, 0.0116275689, -0.00111028517, -0.00332387257, -0.000338173093, -0.0144845825, 0.00446508219, -0.00693105208, 0.00431744289, -0.00661582313, -0.0111088371, 0.00293482374, -0.005893589, -0.0295597203, -0.0173336156, -0.0090418905, -0.0101112761, 0.00023928989, 0.0147559186, -0.00329993106, 0.0211802106, 0.0102788666, -0.00795654487, 0.00822788104, 0.00301263365, -0.00614896463, 0.00956860278, -0.0080802422, -0.00173775083, -0.00616093539, -0.00151329965, 0.00259365793, -7.2697243e-05, 0.00518332561, 0.00444513094, 0.00926534459, -0.0133992359, 0.00900198799, 0.0147878407, 0.00920150056, 0.0128485831, -0.00492795045, 0.0322252028, 0.00397428218, -0.00463666255, 0.00385856512, -0.0132476073, -0.0184828062, 0.00154023385, 0.00392839452, -0.00616093539, 0.00415783329, -0.0110609541, -0.0301662385, -0.00938505214, -0.00330791157, -0.0020190631, -0.00196918496, 0.00863488577, -0.00876257382, -0.00852316, -0.00358722848, -0.00696297409, -0.038019035, -0.00901794899, -0.00549855502, -0.000550653553, -0.00567412563, -0.00075515348, 0.0242127944, -0.00396829657, 0.0052671209, 0.00374484318, 0.00579782343, 0.0156178111, 0.00728219375, -0.015522046, -0.0106459688, 0.00304854568, 0.000643925508, -0.0076213642, 0.00506760878, -0.00845931564, -0.0160008743, -0.0354652815, -0.0265111756, 0.018083781, 0.0225847755, -0.018131664, 0.002725336, 0.0119388076, 0.00101501809, 0.0152028259, 0.0126331095, -0.0207173415, -0.0158652067, 0.002479936, -0.00770515949, -0.00163101184, 0.0105980858, 0.0147000561, 0.0110529736, 0.00461272104, 0.0141494023, -0.0201427471, 0.0337414965, 0.00970427133, 0.015458202, -0.0112365242, -0.0388809294, -0.00705075962, -0.0118111195, -0.0115078613, 0.012688973, -0.0024879165, -0.00095765834, 0.00208889227, -0.0208609905, 0.00904987101, -0.005450672, -0.0123218708, 0.0040141847, -0.012720895, -0.00359720411, -0.0146761145, -0.00480425265, -0.0155300265, -0.0159609728, 0.00261560432, -0.018019937, -0.00709066214, 0.0197437238, -0.00781688653, 0.00700287661, 0.0166472942, -0.0138621042, 0.0133752953, 0.0151469633, 0.00542274024, 0.0133832758, -0.0179082118, 0.00632852549, 0.0243404824, -0.0124256173, 0.0043413844, 0.0220421031, 0.0107018324, 0.00620482815, -0.0010135218, 0.000393288326, 0.0075694914, 0.0165834501, -0.0119627491, 0.00249190675, 0.000770615705, -0.025361985, -0.00557437, 0.00501972577, 0.00884237885, 0.00779693481, 0.0222655572, -0.0111407591, 0.00243005808, 0.00638837926, 0.000129558204, -0.023686083, -0.0183710791, -0.00507957954, -0.00513544306, 0.00411394052, -0.0264632925, 0.016312113, 0.00893016439, -0.00408600876, -0.0210684836, 0.0119308271, 0.00940899365, 0.0192170106, 0.0121303387, 0.00228042388, 0.0049678525, -3.49146285e-05, 0.000684825471, 0.0121782217, 0.0183710791, -0.0400620401, 0.0159689523, 0.00630857423, -0.00160806801, 0.00451296475, -0.00520327687, -0.0021866532, 0.00405807747, 0.00957658328, 0.0196958408, 0.0156178111, -0.0289372429, 0.00778496452, -0.0107816365, -0.0110609541, 0.00715849595, 0.041753903, -0.0214355867, 0.00268742885, 0.00614896463, -0.00959254429, -0.0178603288, 0.006352467, 0.0155779095, -0.000347151159, 0.00543870125, -0.0138940262, 0.00806827191, -0.00043493649, 0.00494391099, 0.0182114691, -0.0286818668, 0.0285222586, -0.00563422311, -0.0263036825, -0.007270223, -0.0139818117, -0.0188339483, 0.00912967604, -0.027293263, 0.0349545293, -0.0277242083, 0.00817201752, -0.0327199921, -0.00908977352, -0.00362114562, -0.000421968201, 0.0100554125, -0.00139159732, -0.0206694584, -0.00705475, -0.0205098502, -0.00705475, 0.00878651533, -0.00664774515, 0.00339769199, 0.015410319, -0.0132875098, -0.00302061392, 0.0152028259, -0.0134311579, -0.0200469811, 0.00430547213, -0.00421768706, 0.0313154273, 0.0113642123, 0.0307408329, 0.00386056025, 0.00991176348, 0.00217468245, 0.0195043087, 0.00168687524, -0.0189935565, -0.00767722772, 0.00756151089, -0.00124196312, 0.011691412, 0.00946485624, -0.0103187682, -0.0111487396, 0.0125692654, -0.0174772646, 0.00546663301, 0.00969629083, 0.0327199921, -0.00693504233, -0.0136785535, 0.0010454437, 0.0152267674, 0.00630458398, -0.0184030011, -0.00408002362, 0.00400021859, -0.0138142221, 0.00604122784, -0.0201906301, -0.0301822, -0.0110848956, 0.00270139449, 0.000741187658, -0.00686720852, 0.0114759393, 0.0313154273, 0.0143888164, -0.00736598857, -5.72662248e-05, -0.0102230031, 0.01444468, 0.0136466315, -0.0116515094, -0.00586964749, 0.00519130612, 0.0168867093, 0.015474163, -0.00130181678, -0.00607315, -0.00911371503, 0.00693903258, 0.0172378495, -0.0197596829, 0.000817002263, 0.0208290685, 0.00150332414, -0.00253380439, -0.00433340389, -0.00094119861, -0.00876257382, -0.00519130612, -0.00658789137, 0.0140217142, 0.0216111559, -0.00979205687, 0.00210485328, -0.0203183182, -0.0266707856, 0.0149713922, 0.00661981339, 0.00583373522, -0.00408999901, 0.0065360181, -0.0051154918, 0.0178603288, 0.0142770894, -0.00191731181, 0.00604122784, 0.0183710791, -0.0017068265, -0.00306251156, 0.00741387159, -0.0168069042, -0.00833162758, -0.0126650315, 0.00384260411, -0.00422965782, 0.034252245, 0.00798447616, -0.00830768608, -0.00178264116, 0.00319618476, -0.00695898384, -0.0203502402, 0.0108135585, -0.0139020067, 0.00974417385, 0.00946485624, -0.0154023385, 0.00198714109, -0.00753357913, 0.00308645307, -0.00363910175, -0.0192010496, -0.0086907493, -0.0177645627, -0.00455286726, 0.00709066214, -0.00277720927, 0.00990378298, -0.00102948269, 0.00920150056, 0.00427754084, -0.0250906479, 0.0114041148, 0.01264109, 0.0105741443, -0.0228720736, -0.000591054733, 0.0110848956, 3.16881415e-05, 0.0221219081, -0.0147160161, 0.00309044332, -0.00828374457, -0.003168253, -0.0103427097, 0.00622876966, 0.0305333398, -0.00488804793, 0.000565118156, -0.0173974596, 0.0105182808, 0.00204898976, -0.0152666699, 0.0201108251, 0.00571801839, -0.00844335463, -0.00307847257, 0.0241170302, 0.00668365741, 0.00214675069, 0.00853912067, 0.00413389178, -0.0101431981, -0.00622477941, 0.00265151658, 0.00125892169, 0.0111008566, -0.00114320463, 0.00706273038, 0.00372688705, -0.0152267674, -0.00568609638, 0.00242407271, -0.0111806616, 0.00377876032, 0.0207971465, -0.00386056025, 0.00100254861, 0.00311039458, 0.0155140655, 0.000678840093, 0.0131438607, 0.0339968726, 0.0149474507, -0.013542885, -0.012704934, -1.33657559e-05, -0.0132715488, 0.0178284068, 0.00671557896, 0.0300864335, -0.0116435289, 0.00558235031, 8.78476931e-05, -0.000404012128, -0.0151709039, 0.00625670142, -0.0115717053, 0.0138062416, 0.00155519729, -0.00924140308, 0.0192170106, -0.00933716912, 0.014556407, -0.000934714451, -0.00274728239, -0.00172677776, -0.0158093423, -0.0152985919, 0.0213078987, -0.000620981562, -0.000473841355, -0.0147638991, -0.0112285437, 0.00283506769, -0.0101032956, -0.00191531668, -0.00713455491, -0.0384978652, 0.0330072902, 0.000689813285, 0.00302061392, 0.0130002117, -0.0132875098, 0.0182433911, -0.0152666699, -3.51328454e-05, 0.00384060899, 0.00111128273, 0.00273531163, 0.0228561126, -0.00107636803, -0.00655596936, -0.00809221342, -0.0138860457, -0.000795055937, 0.00833960809, -0.0011412095, -0.00889026187, 0.00726623274, -0.0124974418, -0.00378075545, -0.0233668629, 0.0154981045, -0.0122899488, -0.0241968334, 0.021675, 0.00945687573, 0.010901344, -0.00598536478, -0.00250786776, -0.0122739878, 0.0159051083, 0.014588329, -0.00256572641, 0.00442517968, -0.036231406, -0.000959653466, 0.00537086744, -0.0228241906, 0.00156617037, 0.00545865251, -0.0149634117, 0.0195202697, -0.0153704165, 0.0083795106, -0.0186903, 0.012752817, -0.0129044466, 0.000932220544, 0.00436532591, 0.021882493, 0.00607714, 0.0142930504, -0.00423364807, -0.0228561126, -0.0196160357, -0.0373486765, -0.010917305, -0.00176468503, -0.00132476073, 0.00978407636, 0.00456483802, -0.0204619672, -0.0115318028, 0.0237978101, -0.0112604657, -0.0137743196, -0.0195681527, 0.025393907, -0.00249390188, 0.00528707216, 0.0222815182, -0.0184349231, -0.0016110607, 0.0114679588, 0.00706273038, -0.00225448725, 0.0121782217, 0.0115397833, -0.00942495465, 0.0240372252, -0.00814408623, 5.25589821e-05, -0.00537086744, 0.00525914039, -0.00468454557, 0.0102469446, 0.0137902806, 0.00709066214, 0.00906583201, 0.00945687573, -0.0143329529, 0.0172857326, 0.00696696434, -0.0126969535, 0.00306051644, -0.0281391945, -0.00873065181, -0.0108933635, 0.0104943393, -0.011914866, -0.0111647006, 0.00203402643, 0.018195508, -0.0201746691, 0.00850719865, -0.00451296475, 0.00103048026, -0.0129283881, 0.0130002117, -0.0138222026, -0.00867478829, 0.00750564737, 0.0270378869, -0.00405807747, -0.00208889227, -0.000262607879, 0.0021706922, -0.00485612592, 0.0177964848, 0.00643227203, 0.00753357913, -0.00740589108, 0.00972821284, -0.00844335463, -0.00850719865, -0.0113961343, 0.0156337731, 0.0241968334, -0.021818649, -0.0167590212, -0.00236820919, -0.00231833127, -0.0116674704, 0.0130401142, 0.0193127766, -0.0044810432, -0.0105821248, 0.00794457365, -0.00345555064, 0.00236022868, 0.0263196435, 0.0111168176, -0.00375880906, 0.0150751388, 0.0284424536, -0.000583074288, -0.00753357913, 0.0104464563, 0.00267545809, -0.00288295071, 0.0161525048, -0.00216071657, -0.0193925817, 0.00280115055, -0.0132635683, -0.00686720852, 0.0146441925, -0.00582176447, 0.00347550167, -0.0121941827, -0.0210684836, -0.00978407636, -0.0119308271, 0.00926534459, -0.00847527664, -0.00272932625, -0.00839547161, -0.00834758859, 0.013638651, 0.00315029686, -0.0013816217, 0.0103586707, -0.0101831006, 0.00608911086, 0.019919293, 0.0134630799, -0.00386854075, 0.00695898384, 0.00258567743, 0.00691908132, 0.0140456557, 0.018035898, -0.00972821284, 0.00642030127, -0.0133673148, 0.0119068855, -0.0729097202, 0.0162562504, 0.0173016936, 0.00828374457, -0.0090259295, 0.00463666255, 0.000387053587, -0.0262717605, 0.00940899365, 0.0163599961, 0.0141653633, -0.0038106821, 0.00379871135, 0.0052751014, 0.0002900408, 0.0171101633, 0.0302460436, 0.00606516935, -0.00286100432, -0.00529505266, -0.00351540418, -0.00860296376, 0.0169824753, -0.0060332478, 0.0155459875, 0.0125054223, 0.00268343859, 0.0072941645, -0.0167430602, -0.0107497154, -0.0214675087, -0.00578585267, 0.00343360426, -0.0317304134, 0.0104943393, -0.00640035, -0.0247395076, -0.0320815556, 0.00586565724, -0.0116993925, 0.00715051545, -0.00549855502, -0.0183231961, -0.0222815182, -0.0189616345, 0.00973619334, 0.00347151142, 0.0155619485, 0.0113482513, 0.0233668629, -0.0043573454, 0.00572998915, -0.0251544919, -0.0142770894, 0.0135827875, -0.00472843787, 0.0012828632, -0.00844335463, 0.0133034708, -0.00521923788, -0.0175411087, -0.0242127944, -0.0197596829, 0.000857403502, 0.0107257739, 0.0113881538, 0.00614098413, -0.00236022868, -0.0120744761, -0.0154502215, -0.00900996849, 0.0296235643, 0.0107337544, 0.00215872144, 0.0141334413, 0.00559831131, 0.00811216421, -0.0204938892, -0.00485612592, 0.00678341324, 0.014460641, 0.0257929321, 0.00750564737, 0.00345156039, -0.00191830937, 0.000411992602, 0.0080642812, 0.00302460417, -0.00275925314, -0.0123059098, -0.0043493649, 0.00843537413, 0.0174453426, 0.0306291059, -0.00599334529, 0.00610906212, -0.00900996849, -0.0226007365, -0.0128485831, 0.0115238223, 0.00694302283, -0.00527111115, -0.00470449682, -0.00948879775, 0.0388170853, 0.00170383381, -0.0182114691, 0.0261759944, -0.00456084777, 0.02724538, 0.00755353039, -0.00644025253, 0.0166313332, 0.00442118943, 0.0282668825, 0.0105422223, -0.00165295822, -0.000139907905, 0.0178603288, -0.00353336032, -0.00140157284, -0.0247235466, -0.000169460633, -0.018147625, 0.0232391767, -0.0169665143, -0.00663178414, 0.0060691596, -0.0107177934, -0.00560629135, 0.0137264365, 0.0266069416, 0.00941697415, 0.00171879726, -0.00239215069, -0.0195043087, -0.000978108379, 0.00731411576, -0.0130560752, 0.0134072164, -0.0143010309, -0.00012656553, 3.9715389e-05, -0.0151709039, -0.00788073055, -0.00387053587, -0.00695499359, -0.0187062602, -0.000265849958, -0.00499977451, 0.00149833632, -0.00432542339, 0.00518332561, 0.00517534511, 0.00199711672, -0.00948081724, 0.00342562376, -0.00454488676, 0.023654161, 0.00396031607, -0.000196020686, 0.00446109194, -0.0270698089, -0.00298470189, 0.00101801078, 0.00252781902, -0.0115637248, -0.0133752953, 0.00408002362, -0.000636443787, 0.011755256, 0.0145005435, -0.0150591778, -0.000457381626, -0.00868276879, -0.0103107886, 0.00394236, -0.023670122, -0.0311558191, 0.0131598217, 0.0169665143, 2.82278525e-05, 0.00164597528, -0.0188977905, 0.00383262848, -0.0189137515, -0.00502371602, -0.0165196061, -0.00356927235, -0.0117791975, 0.0101831006, 0.00337375049, -0.00810817443, 0.0150352363, 0.000675847405, 0.000527709664, -0.00483617466, 0.0132875098, -0.00497184275, -0.0032380824, 0.00380469672, -0.0227922685, -0.00719041796, -0.00628064247, 0.00411793077, -0.0165196061, -0.014460641, 0.00655995961, -0.00886632, -0.02003102, 0.00846729614, -0.000525215757, -0.0140616167, -0.00983994, -0.0129762702, -0.0276763253, -0.0175889917, 0.0163360555, -0.00400819909, 0.00531899417, 0.00885035936, -0.00777698401, 0.0300545115, 0.0145803485, 0.021659039, -0.019855449, 0.0200948641, 0.025330063, -0.00530303316, 0.0124814808, -0.0283466876, 0.0157375187, -0.0121862022, -0.0106778909, -0.00148337288, 0.0040301457, -0.00761737395, 0.0165355671, -0.0163919181, 0.00314231636, 0.0153863775, 0.00748170586, -0.00343559938, -0.0030086434, -0.00340168225, 0.0193606596, 0.0239254981, 0.00263356045, -0.00755353039, -0.0243404824, -0.00998358801, -0.00616891589, -0.0106858714, 0.0112604657, 0.0107018324, -0.00948879775, -0.0261600334, 0.0131119387, 0.000901794934, 0.00821192, 0.00127388514, 0.00234426791, 0.0149953337, -0.00187341915, 0.0125373434, 0.0052830819, -0.0117791975, -0.0170463193, -0.0122181242, 0.00759742269, 0.00300265802, -0.0192489326, -0.0166153722, -0.00656794, -0.00909775402, -0.00817201752, -0.00454089651, -0.000709764485, -0.0154182995, -0.0080882227, 0.000643925508, -0.0187222213, -0.00737396907, -0.0158891473, 0.00370693579, -0.0103427097, -0.0211163666, -0.0197756439, -0.00669562817, -0.0140376752, 0.0202065911, 0.00491198944, -0.00681533525, 0.0185306892, -0.0317942575, 0.0141494023, 0.00822788104, -0.0264952146, -0.00230037514, -0.00957658328, 0.000302011525, -0.0105342418, 0.0145324655, 0.00158113381, -0.0146441925, -0.021866532, -0.0226645805, -0.0314431153, 0.00427355058, -0.0224570874, -0.00608113036, 0.0193446986, -0.0089620864, -0.00841941312, -0.0161285624, 0.00588161824, -0.0071265744, 0.00464464305, 0.00960850529, -0.00304056518, -0.0134870214, 0.015442241, 0.00278918, -0.00559831131, -0.0016190412, -0.0219144151, 0.0122101437, 0.011851022, -0.00461671129, -0.000324955414, -0.0150751388, 0.000863887661, 0.0120664956, -0.013670573, 0.00422965782, 0.0251385309, -0.0303577688, -0.0202225521, 0.0173176546, -0.0194404647, -0.0104304953, 0.0212440547, -0.0055584088, -0.00183950202, 0.00646419404, -0.010821539, 0.00533096492, -0.00300465315, 0.0206534974, -0.0109891295, -0.0101511786, -0.0051075113, 0.001469407, 0.0113402708, 0.0139818117, -0.018051859, -0.0132156853, 0.0195202697, 0.00912169553, 0.00916957855, 0.011835061, -0.0206534974, -0.0154502215, -0.0149155287, -0.0185306892, 0.0227284245, -0.0223932452, 0.00782885682, -0.00788871106, -0.00976013485, -5.4803495e-05, -0.00240412145, 0.00849123765, 0.0826139897, 0.00854710117, 0.0117313145, -0.0238456931, -0.0143249724, -0.0191052835, -0.023622239, 0.0465421975, -0.00338372611, -0.000343659689, -0.00870671, -0.00953668077, -0.00800043717, 0.00663178414, -0.00789270084, -0.0134710604, 0.00514741382, -0.00145843381, 0.0194245037, 0.0173336156, -0.00637241825, -0.00396031607, 0.0113003682, -0.0238935761, -0.00969629083, -0.0255854391, 0.0119547686, -0.00184149714, -0.0174134206, 0.00486410642, 0.00180957525, 0.0157215577, 0.00519529637, 0.00125792413, -0.0261759944, 0.0167430602, 0.0174453426, -0.000848425436, 0.000363112136, -0.00804034, 0.0145165045, 0.0131837633, 0.00791664235, 0.001239968, 0.0107497154, -0.0247395076, -0.00799245667, 0.00887430087, 0.00806827191, -0.00610906212, -0.0172378495, -0.00948081724, 0.00334382383, -0.0296395253, 0.013718456, 0.0115876663, 0.000774107175, 0.0112844072, 0.015362436, 0.0187381823, 0.00236222381, 0.000873863231, 0.0103826122, 0.00853114, 0.0055663893, -0.016248269, -0.00468454557, 0.0153704165, 0.00448503345, -0.00534692593, 0.0110689346, -0.0130959777, 0.0138461431, 0.019967176, -0.010047432, -0.0118909245, 0.00672754971, -0.00103147782, 0.00968033, -0.0222495962, -0.00578186242, 0.00760939345, -0.00708667189, -0.00449700421, 0.0113243097, -0.00625271117, -0.0219303761, -0.0303737298, -0.0016000875, -0.0352099054, -0.00328197493, 0.045361083, -0.0224251654, 0.018131664, 0.0234147459, 0.0071624862, 0.00425758958, -0.00425758958, 0.0202385131, -0.0209248345, 0.0178443678, 0.00680336449, -0.0114998808, -0.000225698124, 0.00263555557, 0.0149634117, 0.00764131546, 0.00262558, 0.00611305237, -0.0123777343, 0.0241489522, -0.0164876841, -0.00216670195, 0.0226965025, 0.0104384758, 0.00197816291, 0.00845133513, -0.0115796858, 0.011851022, -0.0096244663, 0.0107018324, 0.00278119952, -0.0131917438, -0.00460075028, -0.011851022, -0.00404610671, 0.00624074042, -0.0125612849, 0.0100075295, -0.00348148705, 0.0141653633, -0.00329394569, 0.00275725801, 0.0105182808, 0.025409868, 0.0138301831, -0.0214355867, 0.00163400453, -0.00420571631, 0.00055663893, 0.0101990616, 0.00751761813, 0.00493593095, 0.0202704351, 0.0114360368, -0.0104943393, 0.0238776151, 0.00420571631, 0.00420172606, -0.00119807047, -0.0174134206, 0.0161046218, 0.0119228465, 0.018147625, 0.0024001312, 0.00343559938, -0.00370494067, -0.00816004723, 0.00767323747, 0.00128186564, -0.00389447738, 0.00493992073, 0.021722883, -0.0101431981, 0.0268623158, -0.0189616345, 0.000220460934, 0.018019937, -0.00705475, 0.0158652067, 0.0259685013, 0.00170084112, -0.0098718619, 0.00832364708, -0.0246916246, -0.0107656755, 0.00172777532, -0.000658390112, -0.00341564813, -0.00412990153, -0.0146122705, 0.0164876841, 0.00473641837, 0.0410197, -0.0116594899, -0.0051154918, -0.00908179302, -0.012704934, 0.0338691846, 0.00710662315, -0.00725426199, 0.0114519978, 0.00384858949, 0.00142252166, -0.00313034561, 0.011691412, 0.0161525048, -0.00654798886, -0.00829970557, -0.0166632552, 0.0143728554, 0.000837452244, 0.0174772646, 0.0345395431, 0.0197756439, 0.0186424162, -0.00927332509, 0.0135827875, 0.00547062326, 0.00674351072, -0.0259206183]
17 Mar, 2023
Calculate server loads using Round Robin Scheduling 17 Mar, 2023 Given M servers that handle multiple requests having infinite computational capability and arrays arrivalTime[] and processTime[] of size N denoting the arrival time and load time of N requests in the following manner: Each server is numbered from 0 to (M – 1) and the requests are given in strictly increasing order of time. Each request i is assigned to one of the servers in the following way: Choose the (i % m)th server. If the chosen server is free, assign the request to the server. Otherwise, choose the next available server. If no server is available, then the request is dropped. Considering that each server can handle only one request at a time, the task is to find the load on each server after all the incoming requests are processed given that load on each server is the number of requests it processes. Examples: Input: N = 4, M = 3, arrivalTime[] = {1, 3, 6, 8}, processTime[] = {1, 2, 2, 1}Output:1st Server -> 22nd Server -> 13rd Server -> 1Explanation:The first and fourth requests are assigned to the first server.The second request is assigned to the second server and the third request is assigned to the third server.Below is the transition table: Request Number Arrival Time Load Time End Time Available Servers Demanded Server Assigned Server 0 1 1 2 0, 1, 2 0 0 1 3 2 5 0, 1, 2 1 1 2 6 2 8 0, 1, 2 2 2 3 8 1 9 0, 1, 2 1 1 Input: N = 4, M = 2, arrivalTime = {1, 2, 4, 6}, processTime = {7, 1, 4, 4}Output:1st Server -> 12nd Server -> 2Explanation:The first request is assigned to the first server and second request to the second server.The third request is assigned to the second server. The demanded server for the third request is the first server but since, it is busy at the arrival time of the request,  So, the second server is assigned to it.The fourth request is dropped as both servers are busy at the time of its arrival.Below is the transition table: Request Number Arrival Time Load Time End Time Available Servers Demanded Server Assigned Server 0 1 7 8 0, 1 0 0 1 2 1 3 1 1 1 2 4 4 8 1 0 1 3 6 4 10 – 1 – Approach: The idea is to use a Minimum Priority Queue and a set. Priority queue keeps count of the busy servers and helps to release them as soon as they are free. Set is used to maintain the data of available servers to assign them to the incoming requests. Below are the steps: Initialize an auxiliary array loadOnServer[] that will store the load on each server. Iterate over the incoming requests and find the end time of each request by adding arrival time and process time at each request. Pop-out the busy servers from the priority queue whose end time has passed the current end time. If the set of available servers is empty, drop the current request. Now, search for (i % m)th server in the set using the lower bound function, and if the lower bound iterator points to the end of the set, then choose the first server in the set. Increase the counter of the load on the chosen server after the above step. After the above steps, print all the load’s stores in loadOnServer[]. Below is the implementation of the above approach: C++ // C++ Program for the above approach #include <bits/stdc++.h> using namespace std; // Function to print load on each server void printLoadOnEachServer( int m, int loadOnServer[]) { // Traverse the loadOnServer and // print each loads for (int i = 0; i < m; i++) { cout << i + 1 << "st Server -> " << loadOnServer[i] << ".\n"; } } // Function for finding the load // on each server void loadBalancing(int n, int m, int arrivalTime[], int processTime[]) { // Stores the load on each Server int loadOnServer[m]; for (int i = 0; i < m; i++) { // Initialize load on each // server as zero loadOnServer[i] = 0; } // Minimum priority queue for // storing busy servers according // to their release time priority_queue<pair<int, int>, vector<pair<int, int> >, greater<pair<int, int> > > busyServers; // Set to store available Servers set<int> availableServers; for (int i = 0; i < m; i++) { // Initially, all servers are free availableServers.insert(i); } // Iterating through the requests. for (int i = 0; i < n; i++) { // End time of current request // is the sum of arrival time // and process time int endTime = arrivalTime[i] + processTime[i]; // Releasing all the servers which // have become free by this time while (!busyServers.empty() && busyServers.top().first <= arrivalTime[i]) { // Pop the server pair<int, int> releasedServer = busyServers.top(); busyServers.pop(); // Insert available server availableServers.insert( releasedServer.second); } // If there is no free server, // the request is dropped if ((int)availableServers.empty()) { continue; } int demandedServer = i % m; // Searching for demanded server auto itr = availableServers.lower_bound( demandedServer); if (itr == availableServers.end()) { // If demanded Server is not free // and no server is free after it, // then choose first free server itr = availableServers.begin(); } int assignedServer = *itr; // Increasing load on assigned Server loadOnServer[assignedServer]++; // Removing assigned server from list // of assigned servers availableServers.erase(assignedServer); // Add assigned server in the list of // busy servers with its release time busyServers.push({ endTime, assignedServer }); } // Function to print load on each server printLoadOnEachServer(m, loadOnServer); } // Driver Code int main() { // Given arrivalTime and processTime int arrivalTime[] = { 1, 2, 4, 6 }; int processTime[] = { 7, 1, 4, 4 }; int N = sizeof(arrivalTime) / sizeof(int); int M = 2; // Function Call loadBalancing(N, M, arrivalTime, processTime); return 0; } Java import java.util.*; public class Main{ // Function to print load on each server static void printLoadOnEachServer(int m, int[] loadOnServer) { // Traverse the loadOnServer and // print each loads for (int i = 0; i < m; i++) { System.out.println((i + 1) + "st Server -> " + loadOnServer[i] + "."); } } // Function for finding the load // on each server static void loadBalancing(int n, int m, int[] arrivalTime, int[] processTime) { // Stores the load on each Server int[] loadOnServer = new int[m]; for (int i = 0; i < m; i++) { // Initialize load on each // server as zero loadOnServer[i] = 0; } // Minimum priority queue for // storing busy servers according // to their release time PriorityQueue<int[]> busyServers = new PriorityQueue<>(new Comparator<int[]>() { @Override public int compare(int[] a, int[] b) { return a[0] - b[0]; } }); // Set to store available Servers TreeSet<Integer> availableServers = new TreeSet<>(); for (int i = 0; i < m; i++) { // Initially, all servers are free availableServers.add(i); } // Iterating through the requests. for (int i = 0; i < n; i++) { // End time of current request // is the sum of arrival time // and process time int endTime = arrivalTime[i] + processTime[i]; // Releasing all the servers which // have become free by this time while (!busyServers.isEmpty() && busyServers.peek()[0] <= arrivalTime[i]) { // Pop the server int[] releasedServer = busyServers.poll(); // Insert available server availableServers.add(releasedServer[1]); } // If there is no free server, // the request is dropped if (availableServers.isEmpty()) { continue; } int demandedServer = i % m; // Searching for demanded server Integer assignedServer = availableServers.ceiling(demandedServer); if (assignedServer == null) { // If demanded Server is not free // and no server is free after it, // then choose first free server assignedServer = availableServers.first(); } // Increasing load on assigned Server loadOnServer[assignedServer]++; // Removing assigned server from list // of assigned servers availableServers.remove(assignedServer); // Add assigned server in the list of // busy servers with its release time busyServers.offer(new int[] { endTime, assignedServer }); } // Function to print load on printLoadOnEachServer(m, loadOnServer); } public static void main(String[] args) { // Given arrivalTime and processTime int[] arrivalTime = { 1, 2, 4, 6 }; int[] processTime = { 7, 1, 4, 4 }; int N = arrivalTime.length; int M = 2; // Function Call loadBalancing(N, M, arrivalTime, processTime); } } Javascript <script> // javascript Program for the above approach // function to calculate lower bound function lowerbound(arr,target) { let N = arr.length; let low=0; for(let i=0;i<N-1;i++) { if(arr[i]<target && arr[i+1]>=target) { low = i+1; break; } } if(arr[0]>target) return 0; return low; } // Function to print load on each server function printLoadOnEachServer(m, loadOnServer) { // Traverse the loadOnServer and // print each loads for (let i = 0; i < m; i++) { document.write(i + 1, " st Server -> ", loadOnServer[i], ".<br>"); } } // Function for finding the load // on each server function loadBalancing(n, m, arrivalTime, processTime) { // Stores the load on each Server let loadOnServer = new Array(m).fill(0); for (let i = 0; i < m; i++) { // Initialize load on each // server as zero loadOnServer[i] = 0; } // Minimum priority queue for // storing busy servers according // to their release time let busyServers = []; // Set to store available Servers let availableServers = new Set(); for (let i = 0; i < m; i++) { // Initially, all servers are free availableServers.add(i); } let temp_arr = Array.from(availableServers).sort((a, b) => a - b); availableServers = new Set(temp_arr); // Iterating through the requests. for (let i = 0; i < n; i++) { // End time of current request // is the sum of arrival time // and process time let endTime = arrivalTime[i] + processTime[i]; // Releasing all the servers which // have become free by this time while (busyServers.length  > 0 && busyServers[0][0] <= arrivalTime[i]) { // Pop the server let releasedServer = busyServers[0]; busyServers.shift(); // Insert available server availableServers.add(releasedServer[1]); temp_arr = Array.from(availableServers).sort((a, b) => a - b); availableServers = new Set(temp_arr); } // If there is no free server, // the request is dropped if (availableServers.length > 0) { continue; } let demandedServer = i % m; let availableServers_temp = Array.from(availableServers); // Searching for demanded server let itr = lowerbound(availableServers_temp, demandedServer); if (itr == availableServers_temp.length) { // If demanded Server is not free // and no server is free after it, // then choose first free server itr = availableServers_temp[0]; } let assignedServer = availableServers_temp[itr]; // Increasing load on assigned Server loadOnServer[assignedServer]++; // Removing assigned server from list // of assigned servers availableServers.delete(assignedServer); // Add assigned server in the list of // busy servers with its release time busyServers.push([endTime,assignedServer]); busyServers.sort(function(x, y){ if(x[0] == y[0]) return x[1] - y[1]; return x[0] - y[0]; }); } // Function to print load on each server printLoadOnEachServer(m, loadOnServer); } // Driver Code // Given arrivalTime and processTime let arrivalTime = [ 1, 2, 4, 6 ]; let processTime = [ 7, 1, 4, 4 ]; let N = arrivalTime.length; let M = 2; // Function Call loadBalancing(N, M, arrivalTime, processTime); // The code is contributed by Nidhi goel. </script> Python3 # Python code for the above approach import heapq def print_load_on_each_server(m, load_on_server): """ Function to print load on each server """ for i in range(m): print(f"{i+1}st Server -> {load_on_server[i]}.") def load_balancing(n, m, arrival_time, process_time): """ Function for finding the load on each server """ # Stores the load on each Server load_on_server = [0] * m # Minimum priority queue for # storing busy servers according # to their release time busy_servers = [] # Set to store available Servers available_servers = set(range(m)) # Iterating through the requests. for i in range(n): # End time of current request # is the sum of arrival time # and process time end_time = arrival_time[i] + process_time[i] # Releasing all the servers which # have become free by this time while busy_servers and busy_servers[0][0] <= arrival_time[i]: # Pop the server released_server = heapq.heappop(busy_servers) # Insert available server available_servers.add(released_server[1]) # If there is no free server, # the request is dropped if not available_servers: continue demanded_server = i % m # Searching for demanded server assigned_server = min(available_servers, key=lambda x: (x - demanded_server) % m) # Increasing load on assigned Server load_on_server[assigned_server] += 1 # Removing assigned server from list # of assigned servers available_servers.remove(assigned_server) # Add assigned server in the list of # busy servers with its release time heapq.heappush(busy_servers, (end_time, assigned_server)) # Function to print load on print_load_on_each_server(m, load_on_server) if __name__ == "__main__": # Given arrivalTime and processTime arrival_time = [1, 2, 4, 6] process_time = [7, 1, 4, 4] n = len(arrival_time) m = 2 # Function Call load_balancing(n, m, arrival_time, process_time) # This code is contributed by sdeadityasharma C# using System; using System.Collections; using System.Collections.Generic; using System.Linq; // C# Program for the above approach // Implementing sort in 2d list. class GFG : IComparer<List<int>> { public int Compare(List<int> x, List<int> y) { if(x[0] == y[0]) { return x[1].CompareTo(y[1]); } // CompareTo() method return x[0].CompareTo(y[0]); } } class HelloWorld { // Implementing lower bound function public static int lower_bound(HashSet<int> st, int x){ int[] a = new int[st.Count]; int i = 0; foreach(var val in st){ a[i] = val; i = i + 1; } int l = 0; int h = a.Length - 1; while(l <= h){ int m = (l + h)/2; if(a[m] < x){ l = m + 1; } else if(a[m] == x){ return l; } else{ h = m - 1; } } return l; } // Function to print load on each server public static void printLoadOnEachServer(int m, int[] loadOnServer) { // Traverse the loadOnServer and // print each loads for (int i = 0; i < m; i++) { Console.Write(i+1); Console.Write(" st Server -> "); Console.WriteLine(loadOnServer[i] != i ? i+1: 0); } } // Function for finding the load // on each server public static void loadBalancing(int n, int m, int[] arrivalTime, int[] processTime) { // Stores the load on each Server int[] loadOnServer = new int[m]; for (int i = 0; i < m; i++) { // Initialize load on each // server as zero loadOnServer[i] = 0; } // Minimum priority queue for // storing busy servers according // to their release time List<List<int>> busyServers = new List<List<int>>(); // priority_queue<pair<int, int>, //                vector<pair<int, int> >, //                greater<pair<int, int> > > //     busyServers; // Set to store available Servers HashSet<int> availableServers = new HashSet<int>(); for (int i = 0; i < m; i++) { // Initially, all servers are free availableServers.Add(i); } // Iterating through the requests. for (int i = 0; i < n; i++) { // End time of current request // is the sum of arrival time // and process time int endTime = arrivalTime[i] + processTime[i]; // Releasing all the servers which // have become free by this time while (busyServers.Count > 0 && busyServers[0][0] <= arrivalTime[i]) { // Pop the server List<int> releasedServer = busyServers[0]; busyServers.RemoveAt(0); // Insert available server availableServers.Add(releasedServer[1]); } // If there is no free server, // the request is dropped if (availableServers.Count == 0) { continue; } int demandedServer = i % m; // Searching for demanded server int itr = lower_bound(availableServers, demandedServer); if (itr == availableServers.Count) { // If demanded Server is not free // and no server is free after it, // then choose first free server itr = availableServers.Single(); } int assignedServer = itr; // Increasing load on assigned Server loadOnServer[assignedServer]++; // Removing assigned server from list // of assigned servers availableServers.Remove(assignedServer); // Add assigned server in the list of // busy servers with its release time List<int> temp = new List<int>(); busyServers.Add(temp); busyServers[busyServers.Count - 1].Add(endTime); busyServers[busyServers.Count - 1].Add(assignedServer); GFG gg = new GFG(); busyServers.Sort(gg); } // Function to print load on each server printLoadOnEachServer(m, loadOnServer); } static void Main() { // Given arrivalTime and processTime int[] arrivalTime = { 1, 2, 4, 6 }; int[] processTime = { 7, 1, 4, 4 }; int N = arrivalTime.Length; int M = 2; // Function Call loadBalancing(N, M, arrivalTime, processTime); } } // The code is contributed by Arushi Jindal. Output: 1st Server -> 1. 2st Server -> 2. Time Complexity: O(N*log M)Auxiliary Space: O(M) 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!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum/Algorithm for Dynamic Time out timer Calculation/Difference between Round trip time (RTT) and Time to live (TTL)/Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms/Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm/Round Robin Scheduling Algorithm with Different Arrival Time/Selfish Round Robin CPU Scheduling/Find the order of execution of given N processes in Round Robin Scheduling/Calculate server loads using Round Robin Scheduling
https://www.geeksforgeeks.org/calculate-server-loads-using-round-robin-scheduling?ref=asr10
PHP
Calculate server loads using Round Robin Scheduling
What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, jQWidgets jqxTreeMap width Property, Round Robin Scheduling Algorithm with Different Arrival Time, Difference between Flow and TypeScript, jQWidgets jqxTree destroy() Method, jQWidgets jqxTree collapseAll() Method, Find the order of execution of given N processes in Round Robin Scheduling, jQWidgets jqxScrollView buttonsOffset Property, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, jQWidgets jqxListBox enableHover Property, Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm, Selfish Round Robin CPU Scheduling, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxSlider buttonsPosition Property, Difference between Round trip time (RTT) and Time to live (TTL), jQWidgets jqxSlider rtl Property, jQWidgets jqxTooltip opacity Property, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, jQWidgets jqxToolBar height Property, PHP, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, Node.js date-and-time Date.transform() Method, TypeScript Optional Parameters, jQWidgets jqxToolBar theme Property, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, Steps to Diagnose and Resolve a Slow Network, How to use Optional Chaining with Arrays and Functions in TypeScript ?, Calculate server loads using Round Robin Scheduling, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, jQWidgets jqxScrollView showButtons Property, Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms, jQWidgets jqxScrollView disabled Property, jQWidgets jqxSplitter destroy() Method, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, jQWidgets jqxTree collapseItem() Method, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), jQWidgets jqxSortable opacity Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, jQWidgets jqxSlider height Property, jQWidgets jqxSwitchButton onLabel Property, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, jQWidgets jqxToolBar tools Property, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTree width Property, jQWidgets jqxTree clear() Method, TLS Handshake?, Algorithm for Dynamic Time out timer Calculation, Adhoc TCP, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, jQWidgets jqxTabs position Property, Differences between Wireless Adhoc Network and Wireless Sensor Network, jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, Impact of Three-way Handshake and Slow Start Algorithm, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, How to Sort an Array Having Optional Properties in TypeScript ?
GeeksforGeeks
[-0.00616329489, -0.0162526425, -0.0144245466, 0.0494456403, 0.0125616305, -0.000557678053, -0.00941904634, 0.0475653149, 0.012639977, 0.0291276611, 0.0371886939, -0.0140415169, 0.00388688012, -0.00829172, 0.0252451338, 0.000534826831, -0.00722968392, 0.0130404169, 0.00427861465, 0.0040740422, 0.0186639875, 0.00913177431, -0.0464510471, 0.035761036, -0.0446055382, 0.0117607499, -0.00693370635, 0.0056627444, -0.0276477747, -0.0193429962, 0.00438960642, 0.0328534953, 0.007029464, -0.0417502262, -0.00537547236, -0.00416109432, 0.00667690253, 0.00251798448, -0.00560180796, 0.0133712152, -0.0237478353, 0.0070860479, -0.0220416132, -0.0146421771, 0.0110991532, 0.0071992157, 0.00179436314, -0.00876180269, 0.00346032437, -0.0123004736, 0.0103243887, -0.00655502966, 0.0395216905, 0.0215367097, -0.00113385473, 0.00712522119, -0.0129098389, 0.022442054, -0.0217804573, -0.00484880665, 0.0495849252, -0.0190644283, -0.00373889133, -0.0111426795, 0.0536937863, 0.00630693091, -0.0456153452, 0.066020377, 0.00779117038, -0.0398002602, -0.0485402979, 0.0178282876, -0.00656373473, 0.0031164682, -0.00880532805, -0.0174278468, 0.0447796434, -0.00378024112, -0.00181830255, 0.0315477103, -0.0175845418, 0.00410668692, -0.0094016362, -0.0110643329, 0.0597526208, 0.0178282876, -0.0467644334, -0.0793915913, 0.0598222613, 0.0271428712, 0.00437437231, -0.0148859238, 0.0139022339, -0.0314432494, -0.000185393947, 0.0283790119, 0.0326619782, -0.00624164147, -0.0200045928, 0.032244131, -0.0287446305, 0.0281700864, -0.0223375913, -0.0269339457, 0.00988042261, 0.0160872433, -0.00620682072, 0.0275955424, 0.0213451963, 0.0191514809, 0.0190818384, 0.00301853451, -0.0195693318, 0.0244964845, -0.0314258374, -0.00709040044, -0.00861816667, -0.0456501655, -0.00677701272, 0.0241134558, 0.0146073569, 0.0168271866, -0.00604577409, 0.031530302, -0.0402181074, 0.0396957956, 0.00535370922, -0.0112471422, 0.0125703355, -0.0122134211, 0.0101502845, 0.00283572497, -0.0395913348, -0.0450930297, -0.0268120728, 0.0195345096, 0.0268468931, 0.0450930297, 0.0209621657, 0.0171666909, -0.0149990916, -0.049376, -0.0150687331, -0.00581073342, -0.00934940483, 0.0222679488, -0.00173886737, 0.0300504137, -0.00881838612, 0.0251406711, -0.0376065448, 0.0192559436, 0.00312952604, 0.024983976, 0.00740378816, -0.013484383, -0.0140154017, 0.00582814356, -0.0419939756, -0.00423073629, -0.00179762766, 0.00317958114, -0.0233299863, -0.0157477409, -0.00245269528, 0.0267424304, 0.0400091857, -0.0124223465, -0.060205292, 0.047843881, -0.00295977434, -0.00147335825, 0.0280133933, 0.0306075476, -0.0340548158, 0.0263071693, 0.0293191765, -0.00234823278, 0.00461376598, 0.0039586979, -0.0180546232, 0.00795657, -0.0197086148, 0.00489233295, 0.0243746117, 0.0155301094, -0.00846147258, -0.00701640593, -0.0195693318, -0.0270906407, -0.0186639875, 0.00876615476, 0.050107237, 0.00973243453, 0.0205617268, -0.0225639269, -0.0437698402, 0.0081045581, 0.0283267815, -0.0032796911, -0.0375717245, -0.0175584257, -0.0182287283, 0.0296499748, 0.034699, -0.00649844576, -0.0226161573, -0.0415064804, 0.0405314974, 0.0092884684, -0.0343682021, 0.0250884388, -0.0264464542, -0.0105507243, 0.0189947858, 0.00793915894, -0.0104897879, 0.0752827302, 0.0147031136, -0.0505599082, 0.00208598794, 0.0152254272, -0.00161264173, 0.0118216863, -0.0489929691, -0.0401484668, 0.0127531448, 0.0185943469, 0.0151383746, -0.0613892, -0.0147205247, 0.0254366491, 0.00363878137, -0.0166356731, -0.00173125032, -0.021153681, -0.0344726667, 0.0186465774, -0.037327975, 0.0261678863, -0.0237652455, 0.0292669442, -0.00974984467, 0.0169229452, 0.0146682933, -0.00968890823, 0.0108467024, 0.0359003209, 0.0267772526, 0.00529712532, 8.98405779e-05, -0.016600851, -0.00965408701, -0.0197434351, -0.0106551871, 0.0237826575, 0.00968890823, -0.00077258813, 0.024688, 0.00193473476, 0.0186639875, -0.0123352949, -0.0377806462, 0.0283267815, 0.0233299863, 0.00198805425, 0.0544250272, 0.0184898842, -0.0028966614, 0.0182635486, 0.0177847613, -0.0294758696, -0.0146682933, -0.00815678947, 0.0133712152, -0.024844693, -0.0289013255, -0.011073038, 0.0532062948, 0.0303115714, 0.00325139915, 0.0106203668, 0.0472171046, -0.0112993736, -0.0151644908, -0.0211710911, 0.0166704934, -0.039347589, -0.0649757534, -0.010228632, -0.0490974337, -0.00397610851, 0.0169316493, 0.0072557996, 0.0285531171, 0.00774764456, 0.00406968966, 0.00251580821, -0.0233125743, 0.00164637447, 0.00123722921, 0.00564098172, 0.0382333212, -0.001543, -0.023417037, -0.0190992486, -0.0356913954, -0.0202309284, 0.00684230169, 0.00490974309, -0.00584990671, -0.0241134558, -0.0349079259, -0.054668773, -0.0289187357, 0.0067465445, 0.0248621032, 0.0151383746, -0.0377458259, -0.0194474589, 0.0369797684, -0.00189773762, -0.0267424304, 0.0548080541, 0.0120480219, -0.0296847951, -0.00276390696, 0.0553651899, -0.0305901375, -0.0364922769, 0.00567145, 0.0036844837, -0.0213103741, -0.0307642426, 0.0322963595, -0.0225116946, 0.00175301335, 0.0360396057, -0.00344509026, 0.00918400567, -0.00622858386, 0.00092547352, 0.00689453306, -0.00197826093, 0.0226335675, -0.00328622, -0.00796092208, 0.0180023909, 0.0619115122, 0.00274432, 0.00182483147, 0.0330624208, 0.0588124543, 0.0139544653, 0.0324182324, -0.0053798249, -0.0329231359, 0.0217456352, 0.0103069786, 0.00131448801, -0.0155649306, -0.0248969253, -0.0289709661, 2.01648218e-05, 0.00187815086, 0.000614261953, 0.0154082365, -0.0239045303, 0.00233735121, 0.00492280116, -0.0232429337, 0.00823513698, 0.0111078592, 0.00640704064, -0.0834308118, -0.0155388145, 0.0195867419, 0.00577591266, -0.00396740343, -0.0145290093, 0.0112558473, 0.03579586, 0.00229164865, 0.0184898842, 0.0182113163, -0.0180198029, -0.0148772188, -0.0231036507, -0.00907954294, 0.0291798916, -0.0523009524, 0.00217521656, -0.0098543074, 0.00248969253, -0.0271080509, -0.00383464876, 0.0112819634, -0.0155997518, 0.00823513698, -0.0563053526, 0.0197782572, 0.046868898, 0.027125461, 0.0487492234, -0.0395913348, 0.0208228827, 0.000940707687, -0.0128314923, 0.0295106899, 0.009514804, 0.000606644899, 0.00281613809, -0.0369101278, 0.0188555028, 0.00240481668, 0.0166617874, -0.0356391631, 0.0261504762, -0.0207532402, -0.0407056026, -0.0157390349, -0.00464858674, -0.00422420725, 0.0269165356, -0.020022003, 0.0232603438, 0.00523183635, -0.026550917, 0.0328883156, -0.0272125136, 0.00522313127, 0.0155736357, -0.00801315345, 0.0149642704, 0.00380635681, -0.014772756, 0.0244790744, 0.00932328869, -0.0300852358, -0.0251232609, 0.00378677, 0.0294584595, -0.0145203043, -0.0285357069, -0.0400091857, -0.00261156564, -0.0409145281, -0.0252277236, 0.000790542632, 0.000303050416, -0.0269513559, -0.0369101278, -0.0263594016, -0.0122917686, 0.0105507243, -0.0199523605, -0.00831783656, -0.038059216, -0.0179327503, 0.0256281625, 0.0203353912, 0.00598048512, 0.00753001403, -0.00624164147, 0.00728191528, 0.0133973313, -0.0287620425, -0.0243397914, -0.00188576791, 0.0119609702, 0.00622423133, -0.0208228827, 0.0345771275, 0.0223027691, 0.0389993787, 0.00240481668, -0.00773023395, -0.0376761854, -0.0374672599, -0.0379199311, 0.025993783, -0.00241787452, -0.00438307738, -0.0398350805, -0.0186465774, 0.0207358301, 0.00351037923, 0.0279959831, -0.0209621657, 0.00404792652, 0.0343507938, 0.0113167837, -0.0424466468, 0.000937987294, -0.00746037206, -0.00301635824, -0.0212581437, -0.041610945, 0.000337599253, -0.0180894434, 0.00199458329, -0.0333235748, -0.00290971925, 0.0393824093, -0.0033449803, -0.0346641801, 0.0172711536, 0.00418285746, -0.0217108149, -0.055225905, 0.0273517966, 0.0275781322, 0.0272299238, 0.0402529314, -0.000542171882, 0.0201438759, -0.0401484668, -0.00667690253, -0.011508299, 0.014772756, 0.0116649931, 0.00134713261, 0.0321048461, 0.00481833844, -0.0288839154, 0.00232429337, 0.029110251, -0.00637222, 0.0143810213, -0.040322572, -0.00302941608, 0.0396609753, 0.00841794629, 0.00719051063, 0.00273343851, -0.0146595882, -0.00643315632, 0.0398699, -0.0137107186, 0.014198211, -0.0112558473, 0.0355869345, -0.0277696475, 0.00989783369, -0.0220416132, 0.0377458259, 0.0065158559, -0.00891414378, 0.0148423975, 0.0151731959, 0.00947127771, 0.0193778165, 0.0164180417, 0.0056061605, -0.0453716, -0.00813067425, 0.0213626064, -0.0121786008, -0.00250710291, -0.00247228215, -0.00772588141, 0.0188555028, 0.0324878767, 0.00868780818, -0.00746907759, -0.027821878, -0.0299807731, 0.0397654362, -0.00900119543, 0.000720356824, 0.0293017644, -0.0288490932, 0.0228424929, -0.0148859238, 0.00278566987, 0.0427252129, 0.0127009135, -0.00582379103, 0.00742119877, -0.0238174777, 0.0145377144, -0.00043281258, 0.0341766886, -0.0155039942, 0.0120828431, -0.0315477103, -0.0083308937, -0.025697805, -0.0348382853, -0.00958444551, 0.0190470181, 0.0473912098, 0.000614261953, -0.00394999282, -0.0138848238, 0.00413933117, 0.010507199, -0.0158347916, -0.00378677, -0.0185421146, 0.00999359, 0.0277696475, -0.0144419577, -0.0458242707, 0.00155061705, 0.0202309284, 0.00694676442, 0.0662641227, 0.00440701703, 0.00285095908, -0.0372931547, 0.0223201793, 0.0258544981, 0.00612412114, 0.013771656, -0.00145050697, 0.00750825088, 0.00137651269, -0.0188903231, 0.00108107936, 0.000399351906, -0.00848323572, 0.00461811852, 0.019308174, 0.00307076587, 0.0219545607, -0.00907954294, -0.01674884, -0.0208402928, -0.0335499123, 0.00314693642, -0.0177064147, 0.00446142443, -0.0128401974, 0.0157129187, 0.000908607151, 0.00382594345, 0.0111862058, -0.0243572015, 0.021588942, 0.00318611, 0.0109772803, -0.0348208733, 0.123126611, -0.00431343587, 0.0103940312, -0.0392083041, -0.0159827806, 0.0147292297, 0.0187684502, 0.00137216, 0.0177760553, 0.0525098778, 0.0296673849, -0.00199893583, -0.0412627347, 0.00733414665, -0.0305030849, -0.00863122381, 0.0334802717, -0.00855287723, -0.0133886263, 0.0199349504, -0.00794786401, 0.00943645649, -0.00556698721, 0.0103940312, 0.0415064804, 0.00616329489, 0.0332017019, -0.00922753196, -0.0106900083, -0.00699464325, 0.0271951016, -0.011212321, -0.0153995315, -0.0111862058, 0.0486447625, 0.00262462348, -0.0135017941, -0.0397654362, -0.0174452569, 0.0345945396, -0.0128663126, -0.00650715083, -0.00529712532, -0.0134147415, 0.021292964, -0.0136062568, -0.0118390974, -0.00733414665, -0.00453977147, 0.0283441916, -0.00136019033, -0.0210666284, -0.0124310516, 0.000187434242, 0.035082031, 0.00874874461, -0.0262723491, 0.00995006505, -0.032209307, -0.01789793, 0.00664208177, -0.0291798916, 0.0449885689, -0.0113080787, 0.00595436944, -0.00766494498, -0.0102373371, 0.019308174, -0.00406316062, -0.0284138322, 0.0171057545, 0.0105768405, -0.00527536217, -0.0238697082, -0.0180198029, -0.0113429, -0.0198478978, -0.00581943849, 0.00174213189, 0.0306075476, -0.0512215048, -0.0121002533, -0.0205443148, 0.0111862058, 0.00712522119, -0.0317218155, -0.00619811565, 0.0195693318, -0.027821878, -0.0246183574, 0.00431343587, 0.00619811565, 0.00278784614, 0.031251736, 0.00501855835, 0.00973243453, 0.0295106899, 0.0220242031, -0.00261591817, 0.0340199955, 0.0276477747, 0.0220764335, 0.0199523605, -0.011073038, 0.0114734778, 0.00796092208, 0.0163745154, -0.00399351912, 0.00963667687, 0.00500114821, -0.0120828431, -0.00988912862, 0.0209447555, 0.0115866456, 0.000227695869, 0.018315779, 0.036770843, 0.0117520448, 0.0172972698, 0.00673783896, -0.000123913342, 0.0110556278, 0.000815026055, -0.0328360833, 0.000590866723, 0.00700770086, -0.012918544, 0.0242005065, 0.0182461385, -0.00128293154, -0.00921882596, 0.00732544111, -0.016609557, -0.0107596498, -0.0133886263, 0.00544511434, 0.00999359, 0.00987171754, 0.0378851108, 0.00417632842, 0.0243920218, 0.00470952317, 0.000683903752, -0.00881838612, -0.00132645771, 0.0382681414, 0.018315779, -0.0116824033, 0.0211014487, -0.00605447963, 0.0394520499, 0.00815678947, -0.0310602188, -0.0268120728, -0.0047008181, -0.0532411151, -0.0422028974, 0.0331320614, -0.0282919593, -0.016888123, -0.00605883216, -0.00800444838, -0.0367360227, 0.00429820176, -0.029388817, -0.00504902657, 0.00640704064, -0.0118129812, 0.0252277236, -0.0047008181, 0.0179153401, 0.0276303627, 0.00780858099, 0.00321004936, 0.018315779, -0.0107074184, -0.003336275, 0.00235258532, 0.00098858634, 0.0271428712, -0.00402834, -0.00981078111, 0.031530302, -0.0109772803, -0.00801315345, 0.0262027066, 0.0200045928, 0.0199349504, -0.000514151936, -0.0200742334, 0.0277870577, 0.0033449803, 0.00170948729, -0.0106638921, 0.0329231359, 0.0134060364, 0.0291798916, 0.0176628884, -0.00813937932, 0.00570627069, -0.0124049364, 0.0152602475, 0.0194300469, -0.0242005065, 0.0187510401, 0.0256455727, 0.0243223812, 0.0113080787, 0.0422377214, 0.00966279209, -0.00429167273, -0.0226335675, 0.0307120103, -0.00706428476, -0.00511431601, 0.00931458361, 0.0189077351, 0.0172624476, -0.0102721574, -0.00709910551, -0.0220416132, 0.0172189213, 0.0160611272, -0.0107074184, -0.0527536236, -0.00269426522, -0.0242005065, 0.0235911421, -0.0267772526, 0.0253495965, 0.00343638496, -0.0214844793, -0.0147814611, 0.0128227863, 0.0303638019, 0.0283093713, -0.00680748094, -0.0079957433, 0.00270732283, -0.0428296737, -0.0262201186, -0.00473128632, -0.0216411725, -0.0213974267, -0.0460680164, 0.0207706504, -0.0389993787, 0.00371712819, 0.0133276898, -0.0126747983, -0.0401484668, 0.0128227863, 0.000832980615, -0.00776070217, -0.0134669729, -0.00641139317, 0.00585861225, 0.00927105732, 0.0163571052, -0.0073689674, -0.00341462204, 0.038059216, -0.0111165643, -0.0081089111, 0.0228076726, 0.0111252693, 0.0045876503, -0.0101764007, 0.0402529314, -0.0126747983, -0.0417154059, 0.000106162857, 0.0112297321, -0.0326097496, -0.00400875323, 0.0217978675, -0.00722533138, -0.00305335526, 0.00485315919, 0.0215541217, 0.0363878123, -0.0082656052, 0.00994135905, -0.0419591516, -0.00134713261, -0.0257848576, -0.0184376519, 0.0108989337, 0.0168707129, -0.0142417373, -0.00662031863, -0.0153734162, 0.0141285695, -0.0320003815, 0.00273343851, -0.0534152202, -0.0109163439, -0.0313736089, 0.0325575173, 0.015477878, 0.0175758358, 0.0102808634, -0.0104375565, 0.00228076731, 0.0121437795, -0.00482269097, 0.0105507243, -0.00922753196, 0.00182374322, -0.00878356583, -0.011926149, 0.00920141581, -0.0185421146, -0.0369797684, 0.00827866234, 0.00460070791, 0.0290580187, 0.00229817769, -0.0283616018, -0.0369101278, -0.00200111209, -0.00646362454, 0.00733849918, -0.00191079546, -0.00915788952, 0.0151731959, 0.00359307881, 0.0192211214, -0.00722097885, 0.0312691443, -0.00838747807, -0.0391038395, 0.0332191139, -0.0192559436, -0.0286227576, -0.0118303923, 0.000603924505, 0.00823948905, -0.0108205862, 0.00176280679, -0.00689888559, 0.0321570784, -0.00162787584, 0.0158696137, -0.0292669442, 0.00203919737, 0.0132580474, 0.00468340749, 0.013484383, 0.0134495627, -0.0354302377, -0.0199697707, 0.00448754, 0.0233299863, -0.0199175403, -0.0320700258, -0.0197956674, -0.024844693, -0.021588942, 0.00380853307, 0.022285359, 0.0308512934, -0.00215780595, -0.00300547667, -0.0166792, -0.00831348356, -0.00345161906, -0.00190100214, -0.024844693, -0.00406316062, -0.0172885638, -0.00364095764, 0.0229817759, -0.0199001301, 0.00350820296, 0.015617162, -0.0125790406, -0.0165050942, -0.0280656237, -0.0166704934, -0.00650279829, 0.0116214668, -0.00253321859, -0.0134060364, 0.00380853307, 0.0103156837, 0.0119783804, -0.0304508545, -0.00278784614, -0.00756918732, -0.00779987592, -0.0154082365, 0.0073689674, 0.0228773132, -0.039347589, -0.00433955155, 0.00701640593, 0.0176454782, 0.0013884824, 0.0201090537, -0.00342115085, -0.0087182764, -0.0362137072, 0.0106290719, 0.0117346346, 0.0152428374, 0.00262027071, -0.00211428, -0.014198211, -0.00859205052, 0.0109598702, -0.00404357398, -0.00499244267, 0.00119805569, -0.00781728607, 0.0300504137, -0.019308174, -0.00823948905, -0.0210840385, 0.00693805888, -0.00295977434, -0.0109598702, 0.00754742417, -0.00502291089, -0.000590322597, 0.00912306923, 0.0155039942, 0.00645491946, -0.0145986518, 0.00847453, 0.00496197445, 0.00875745, 0.0223027691, 0.00421550218, -0.0094016362, -0.00436566724, -0.0122395372, -0.0168533027, -0.039312765, 0.0250536185, -0.00511431601, -0.0107074184, -0.000808497192, 0.0029467165, -0.0128837237, 0.0107335346, -0.015338595, 0.00918400567, 0.022424642, -0.00543205626, 0.00408927631, 0.0152254272, 0.00499679521, 0.0101764007, 0.0970109552, 0.00069097674, -0.00192929409, -0.0317740478, -0.00910565816, -0.0163048748, -0.0133102788, -0.00593695883, 0.0135279093, -0.00132645771, 0.0318262801, 0.00408492377, 0.0427948534, -0.0208402928, 0.00190426654, -0.0106551871, 0.0220416132, -0.0226161573, 0.00619811565, 0.00872262847, 0.00768235512, -0.00597613258, 0.0229469556, -0.00511431601, 0.0242353287, -0.0108379973, 0.019029608, -0.00671172328, -0.0489581488, -0.00274432, 0.0200742334, -0.0156519823, 0.0131013533, 0.00288360356, 0.00286401692, 0.0302767493, 0.00447883504, -0.0181416757, -0.00257239211, 0.0307816528, -0.0177151188, 0.0135627305, -0.0333409868, 0.0327316225, 0.0135627305, -0.00484010158, 0.00124049361, 0.0027747883, 6.68193534e-05, -0.0152341323, -0.0114125414, 0.00162134692, -0.00105877221, -0.00467035, -0.0133276898, 0.0172798578, -0.0143200839, -0.0125442194, 0.00300112413, 0.0190644283, 0.00692935381, -0.0156868044, -0.00578461774, -0.00116323482, -0.0122134211, -0.0132406373, -0.0190470181, -0.0173059739, 0.00912306923, 0.00233517494, -0.0268991254, 0.0238348879, 0.0145638306, -0.0048139859, 0.00997618, -0.0126660932, -0.0260808337, -0.00806103274, 0.00268773618, -0.0104375565, -0.0129011339, 0.014772756, -0.0092884684, 0.0077084708, 0.00145485962, -0.0143113788, -0.00799139, -0.0140676331, 0.0194126368, -0.00173777924, -0.000606644899, -0.0146857034, -0.0386163481, 0.0128663126, -0.00314911269, -0.0133799212, 0.0289883781, 0.00446142443, -0.0117781609, -0.00253321859, -0.0405663177, 0.00429167273, -0.00111970876, -0.0184898842, 0.00842665136, 0.011786866, 1.22927204e-05, -7.2362127e-05, 0.000129014064, -0.000211237566, 0.0293539967, 0.0121698957, 0.00251580821, 0.00531453593, 0.0342985615, 0.00410451042, -0.00758224539, 0.0169664714, -0.00279219891, 0.0320177935, -0.0184550639, -0.00553651899, 0.0304334443, -0.0125181042, -0.0225116946, -0.0374324396, 0.0259067304, -0.0030033004, 0.0160959493, 0.0132493423, -0.00486186473, 0.0243397914, -0.0223898217, -0.00298371352, -0.0295629222, -0.00800009537, -0.00969761331, 0.00503596896, -0.000177096794, 0.00638092496, 0.00612412114, 0.0192733537, -0.0233996268, -0.0138412975, 0.0240960438, -0.0302245189, 0.00454412401, 0.0181242656, 0.0147466399, -0.00405227905, -0.0247750524, 0.00141895062, 0.00411974452, -0.0027834936, 0.0242179185, -0.0271951016, -0.0055539296, 0.000373236253, 0.0158260874, 0.00567580247, -0.000767691468, 0.0104723778, 0.0379547514, 0.0185072944, -0.000736135058, -0.0292147137, 0.0152950687, -0.00378241739, -0.0170012917, -0.0163658112, 0.00586296478, 0.00879227091, -0.00168228347, -0.00687277, 0.0255933423, -0.000706754916, 0.0261156559, -0.000134726855, 0.0190992486, -0.00567145, -0.0137020135, -0.00956703536, -0.0332887545, -0.00679442286, -0.0202657487, 0.0146769984, -0.0427600332, 0.0056627444, 0.00865734, 0.00309470505, -0.00277261203, 0.016905535, -0.00328622, -0.000779661117, 0.00916659459, 0.00968890823, 0.0158609077, -0.0119522652, -0.00762577122, -0.0150252068, 0.000470625877, -0.0189773757, -0.0040196348, -0.00815678947, -0.00754742417, -0.0221286658, -0.0116475821, -0.0118129812, 0.00544076134, 0.0182113163, -0.00568886, -0.00605012663, -0.0123004736, -0.00929717347, -0.012074138, -0.00046844958, 0.00529277278, 0.000672478112, -0.0207184199, 0.000578352949, 0.0156432781, 0.0257848576, 0.0114821829, -0.0166704934, -0.00346685317, -0.0404618569, 0.017880518, 0.0238871202, 0.0171057545, 0.00234170374, -0.0267598424, 0.0375020802, 0.0289013255, 0.00713827927, 0.00774764456, 0.000200628085, 0.010794471, -0.0181590859, -0.040322572, 0.0132319322, 0.0265335049, -0.00749084027, -0.00755612971, 0.0014483307, 0.0121698957, 0.000123369275, 0.00328839617, 0.0105333142, -0.0309557561, 0.0317566358, -0.0128576076, 0.0029467165, 0.0189251453, -0.0207184199, 0.00715133687, 0.0226858, -0.00110937131, 0.0181242656, -0.0175410155, -0.0517786406, 0.0139283491, 0.00336239068, -0.0043569617, 0.0375369, 0.00487057, 0.0219545607, -0.00889238063, -0.0134060364, 0.00680748094, 0.00710781105, -0.0102373371, 0.0172972698, -0.00296847941, -0.00980207603, -0.0251929015, -0.0169490594, -0.0104114413, -0.0275259, -0.00358655, -0.00946257263, -0.0176280681, 0.0338633, 0.0125877457, -0.00125246332, 0.00949739292, 0.00273561501, 0.00139609945, 0.0174713731, -0.00491409563, -0.00630693091, 0.00803927, 0.00546252448, 0.00167901895, -0.0185769368, 0.00419591507, 0.0381636769, 0.023434449, -0.0071731, -0.029249534, 0.0117694549, -0.0161742959, -0.0031730521, -0.021292964, 0.0223898217, -0.0177238248, -0.0163309891, 0.0462421216, -0.0291798916, -0.000306314876, 0.0263768118, 0.0131187644, -0.0326793902, 0.0138325924, 0.0146944085, -0.0122395372, -0.0044701295, 0.02470541, -0.0114734778, -0.00263768109, -0.000887932256, -0.00131339987, -0.0140937483, -0.0305030849, -0.00627210969, -0.0114734778, -0.0159479603, -0.0254192371, 0.00732544111, -0.0150600281, -0.00786081236, -0.00413715513, -0.0274040271, -0.00338633, 0.00659420295, 0.00618941, -0.0073123835, -0.00157129194, -0.000908607151, 0.00787387, 0.00575414952, -0.0226509776, 0.0158086773, -0.00456588715, 0.0090621328, -0.00540594058, -0.024983976, -0.00136889564, 0.0370842293, 0.000662684732, 0.0245835371, -0.0167401358, -0.0138848238, -0.0182113163, 0.00235258532, 0.0273692068, -0.00530147785, 0.015190606, 0.0258196779, -0.00260721287, 0.00491844863, -0.0155301094, 0.00729497289, -0.00760836108, -0.0113951312, 0.00251580821, -0.0184550639, -0.00909695309, -0.00428296765, 0.0460680164, 0.0177586451, -0.0266902, -0.000516872329, -0.00823948905, 0.0113777202, 0.00840924121, -0.00679442286, -0.0282049086, 0.00410233438, 0.007812934, -0.0101589896, -0.0223375913, -0.00689453306, 0.00324704638, -0.00337762479, -0.0284138322, -0.00311211566, -0.00939293113, 0.0267424304, 0.0325575173, 0.00961926673, 0.00383682502, 0.0256455727, 0.0249317456, 0.0273517966, -0.00633304659, 0.0271602813, -0.0347164124, -0.00523183635, -0.00220024399, -0.0122656524, 0.0380243957, -0.003086, -0.0158434976, 0.0112036159, 0.00706863729, 0.0223201793, -0.00903601665, -0.0223550014, 0.00507514225, -0.0398350805, 0.0127096185, 0.00965408701, -0.00813937932, -0.0160263069, 0.0115518253, 0.037049409, 0.00913177431, 0.0245313048, 0.000663772924, 0.0163309891, 0.00356478686, -0.00751260342, -0.0189077351, -0.00709040044, 0.010219926, -0.0140676331, 0.016896829, 0.00712522119, -0.0172015112, -0.0106029557, -0.00873568654, 0.00127749075, -0.00453977147, 0.0261156559, 0.0206139572, -0.0132232271, 0.018872913, -0.0056105135, -0.00842665136, 0.00259415503, -0.0013558378, 0.00264203385, -0.0288839154, -0.0124049364, -0.0021882744, -0.00125572772, 0.0139979916, 0.00177151198, 0.00806103274, -0.00597613258, -0.00943645649, 0.00692935381, -0.0036757784, -0.0140676331, -0.000687168154, 0.0101764007, -0.0233996268, 0.00873133447, -0.00349514512, -0.00337762479, -0.00722533138, -0.00786081236, -0.0183506012, 0.0125964507, 0.0052100732, 0.0136410771, 0.00319699151, 0.00469211256, -0.00123396469, 0.00371712819, 0.0088314442, -0.0120393168, -0.00213386677, -0.0122308321, 0.0252277236, -0.00593695883, -0.00206313678, 0.0172624476, 0.00946257263, 0.0115866456, -0.0127270296, 0.00984560233, 0.00285095908, -0.00964538194, -0.00760400854, 0.0305030849, -0.0363181718, -0.00318393367, 0.0182113163, 0.0343682021, 0.00826995727, 0.000575088488, -0.0185595267, -0.00211754441, -0.0111165643, 0.00243310863, 0.00141786248, -0.00757354, -0.0043591382, -0.00840488821, -0.0040174583, -0.00718615763, 0.0153560052, 0.0336891972, 0.0223898217, 0.0221808963, 0.00166052044, 0.00874874461, -0.00604577409, -0.00377371209, 0.012639977, -0.0243572015, -0.0169142392, 0.00702511147, 0.00134822074, -0.0135801407, 0.01136031, -0.0260808337, 0.013214522, 0.0158434976, 0.0182983689, -0.00207728264, 0.0128576076, -0.0103069786, 0.00385858817, 0.0265335049, 0.00957574, 0.00763882929, -0.0161220655, -0.0148772188, -0.00268338365, 0.0141285695, -0.00537112, 0.000551965262, -0.0131884059, 0.0111078592, 0.000250955112, -0.0112036159, -0.00247663469, 0.00989783369, -0.00339068263, -0.00375194917, -0.00200220034, 0.00243963744, 0.00522748381, -0.0108902287, 0.00961056072, -0.0110991532, -0.00319699151, 0.0172537435, 0.00725144707, 0.00397610851, 0.00804362167, 0.0075387191, 0.0225116946, -0.00252886605, 0.00820902083, -0.00294018746, 0.0130404169, 0.017044818, -0.00900990143, -0.00143527286, -0.00569321308, 0.0113516049, -0.00245487154, -0.0139196441, 0.00744731445, 0.00289230887, 0.00785210729, -0.0242179185, 0.00194344006, 0.0281700864, 0.00505337911, 0.0179153401, 0.0114734778, 0.00992394891, -0.00864863489, 0.0275084898, -0.0153473, -0.00520572066, -0.00828301534, -0.0136497822, 0.0174365528, -0.0044701295, 0.012779261, 0.000681727426, 0.0284312442, 0.0246531796, -0.0266031474, 0.0116214668, -0.0103418, -0.000799247879, 0.0129533652, -0.00387599855, -0.0163571052, -0.00897508, -0.0176454782, 0.00538853044, -0.0174800791, 0.00504467404, 0.00204137363, -0.0105246091, 0.0205791369, -0.0165747367, -0.0198304877, -0.0150861433, 0.00260721287, -0.00404575048, -0.0381288566, -0.0134408576, -0.00603271648, -0.00467905495, -0.0123004736, -0.0184028316, -0.00417197589, -0.0119522652, 0.00528842025, 0.0215541217, -0.000245242321, -0.0177847613, 0.00820902083, -0.0019891425, -0.00403486891, -0.00880532805, 0.0206836, -0.00221112557, -0.0302767493, -0.0154256467, -0.00205116719, -0.000218718618, 0.00635480927, 0.00056964776, 0.01094246, 0.00298806629, -0.0156519823, -0.00884450227, -0.0278566983, -0.021014398, 0.00630257837, 0.00071437197, 0.0227032099, -0.0106900083, 0.00809150096, -0.00185312342, -0.0202831589, -0.0160785392, 0.00574979698, -0.0157390349, -0.000207973106, 0.00590649061, 0.0101502845, 0.035761036, 0.0165660307, 0.0103243887, 0.00812632125, -0.0083396, 0.0128750177, 0.0149468603, 0.00358872628, 0.00705993222, 0.00181503803, -0.00955833, -0.00535370922, 0.0151383746, 0.0289709661, -0.00633304659, 0.0326619782, 0.000942339888, -0.000560398446, -0.0127705559, -0.00564098172, -0.0489233285, -0.00832218863, 8.21555e-05, -0.021153681, 0.00355390552, 0.0252625439, -0.00155388145, -0.00176607119, 0.0114212465, -0.00208707619, -0.0022655332, 0.0139631703, -0.0133712152, -0.0212233234, -0.0185595267, 0.0200568233, -0.0112645524, 0.00605012663, -0.00134060369, 0.00598048512, -0.01789793, -0.0159914866, -0.00495762192, 0.0025985078, -0.0210318081, 0.00616329489, 0.0169229452, 0.0102808634, -0.00544946687, 0.0390690193, -0.00332104089, -0.0107857659, -0.00124158175, 0.0212755539, -0.00435478566, -0.0145812407, 0.00310558663, -0.0275084898, 0.00379547523, 0.0162004121, 0.00509255286, 0.00568450755, -0.0171666909, -0.0178108774, 0.0204224419, 0.00182700774, -0.00757789286, 0.0138151813, 0.0143200839, -0.00737332, 0.00449624518, -0.0102895685, 0.00658114534, 0.000488580379, -0.000227967903, -0.0193604063, -0.044152867, 0.0145203043, -0.0160350129, -0.0171753969, 0.0189947858, 0.00392605364, -0.0122830635, -2.3123237e-05, 0.0154343527, 0.00613282621, 0.00313605485, -0.00577591266, 0.0129620703, 0.00642880378, 0.00960185565, -0.0130143017, 0.0209099352, -0.0257848576, 0.00117955706, 0.0188380927, -0.025837088, -0.00516654737, 0.0331146494, 0.0087879179, -0.0193255842, 0.000578897, -0.00510125794, 0.000746472506, 0.00534500415, -0.00508820033, 0.0181939062, 0.0070860479, -0.00567580247, 0.00941034127, -0.00228294358, -0.0114734778, -0.0101851057, -0.00850064587, -0.0266553797, 0.00103646505, 0.0111687956, -0.0104462625, -0.0100197066, 0.00371712819, -0.00898378529, 0.0254540592, -0.0121350745, -0.0263245814, 0.00789998565, -0.00755177718, -0.0113864262, -0.00386294071, 0.00295542157, -0.00405227905, -0.00773458648, -0.0198304877, -0.011926149, 0.00948868785, -0.00470952317, 0.00579767535, 0.00706863729, 0.0198304877, -0.00684230169, -0.00664643431, 0.0299111307, 0.00603706902, -0.00750389835, 0.00973243453, 0.00650715083, -0.0219023302, 0.0118303923, -0.00096845557, 0.0031077629, 0.0117433397, -0.0111165643, -0.0243746117, -0.00899249, 0.0144854831, 0.000734502799, 0.000975528557, -0.00763882929, -0.00124484627, 0.0040152818, 0.00367360213, 0.00653326651, -0.0167053137, -0.00523183635, -0.00345379533, 0.0184724741, -0.00344073749, -0.020300569, 0.0149468603, -0.0143984314, -0.00267903088, -0.00890543871, -0.00702511147, -0.0087182764, -0.00913177431, -0.00644186186, -0.0317740478, -0.0105681354, -0.0110817431, -0.00772588141, -0.00137216, -0.0105594303, -0.0233473964, -0.0147553449, -0.000681727426, 0.015469173, 0.0179501604, 0.0130491229, -0.00175083708, 0.00796092208, -0.00227859104, 0.00992394891, -0.00215454167, -0.00448754, 0.0162439384, 0.0102547472, -0.0061197686, 0.00472693378, 0.0166443773, 0.00186182861, 0.0225116946, 0.00709040044, 0.00578897027, -0.00737767247, 0.0365270972, 0.00826995727, 0.00942775141, 0.0117781609, -0.0338633, 0.00072579761, -0.0145028941, -0.0111252693, 0.00701640593, 0.00460070791, 0.0174539629, 0.00149294501, -0.0234518591, -0.00144071365, 0.00296847941, -0.00439613545, -0.00837006792, -0.0221983064, -0.00450930325, -0.0149642704, 0.0131535847, 0.0157738551, -0.0153211849, -0.0190121979, -0.00301635824, -0.00531888846, 0.0189425554, 0.00983689725, 0.021014398, 0.00131775241, 0.00337109575, 0.00850499887, 0.0102460422, 0.0213277843, -0.013066533, -0.010925049, 0.00513172615, 0.0235563219, 0.00166704936, 0.00681183347, 0.0131187644, 0.01591314, 0.0089010857, 0.00847888272, -0.00936681498, 0.00317740464, 0.00921882596, -0.0102460422, -0.00392605364, 0.00629822537, -0.0116475821, 0.00704687415, 0.0219197404, 0.00874004, 0.00100926124, 0.0338981189, -0.000287544244, 0.00649409276, 0.0036844837, 0.00540158805, -0.0221112557, 0.0136497822, -0.0108118812, 0.012639977, -0.00200872915, -0.0225987472, 0.00565839186, 0.0126573872, -0.0203353912, -0.0140850432, 0.0189773757, -0.00136345485, 0.00638963049, 0.00699899578, -0.00453977147, 0.00547993509, 0.00914918445, -0.000242113892, 0.0109511651, -0.00222418341, -0.0380243957, 0.00357349217, 0.0155736357, -0.0016681375, 0.0162526425, 0.00630693091, -0.00046273676, 0.00201525819, -0.00152450136, 0.0306249578, 0.0111687956, -0.014764051, 0.00283572497, -0.0302245189, -0.0113951312, -0.00137216, 0.0190470181, -0.0213277843, 0.0105507243, 0.00399787165, -0.010080643, -0.0162091162, 0.0169229452, 0.0144941891, -0.00910565816, -0.000129694148, -0.0195867419, 0.00480963336, -0.00131557614, 0.0257326253, 0.0285182949, -0.00561486604, 0.00761271361, 0.0157042146, -0.022581337, -0.00559745543, -0.00337980106, -0.0256803948, 0.0136671932, -0.0242179185, 0.0248621032, -0.0307816528, 0.00133733917, -0.00931458361, -0.00671607582, -0.0117433397, -0.00795221701, -0.00372800976, -0.000414313981, -0.00829172, -0.00454412401, -0.00350167416, -0.00329927774, -0.00391299557, 0.00139718759, -0.00591954868, 0.0081089111, -0.0112036159, 0.00832218863, -0.00212080893, -0.0135104991, -0.00669866567, -0.0018465945, -0.00356478686, 0.03151289, -0.00699029025, 0.0243223812, 0.0001100394, 0.0297370255, 0.00806973781, 0.0261852965, 0.00656808726, -0.0150861433, -0.000543532078, -0.00843970943, 0.00477045961, -0.00721227331, 0.00656373473, -0.0125093991, -0.00111372385, 0.0153211849, -0.0311995037, 0.0105768405, 0.00424814643, 0.028814273, 0.00106530113, -0.0178021714, 0.00421114964, 0.0147379348, 0.000705666782, -0.0229121353, -0.00438960642, 0.00548864, 0.00196193857, 0.0104636727, -0.0300678238, -0.0257848576, -0.0107857659, 0.0133712152, -0.0124397576, 0.00174757256, -0.000102490347, 0.0229643658, 0.0208402928, 0.0069162962, 0.00907083787, 0.0158434976, 0.007812934, -0.00568015501, -0.0159653705, -0.00979337096, 0.00806973781, 0.00673783896, 0.0145115992, 0.0185247045, -0.00453541894, -0.00757789286, -0.00081230572, 0.0114212465, -0.0146944085, -0.00816984754, 0.0254714694, -0.000958662189, 0.00050571881, 0.0127705559, 0.00221221359, -0.00251363171, 0.00113167835, -0.0151296696, 0.0039608744, 0.0105855456, -0.00941034127, -0.0138500025, -0.018176496, -0.00729497289, 0.0200394131, 0.011508299, 0.00336021441, -0.000217902503, 0.00816984754, -0.0251929015, 0.00527536217, 0.0138151813, -0.0101676956, 0.024566127, 0.00589778554, 9.8953853e-05, -0.00774764456, 0.0199175403, -0.0119870855, -0.0206836, -0.00636786735, 0.0127618499, 0.00386076444, 0.0401832871, -0.00599789573, -0.00692935381, 0.0126835033, -0.00778681785, -0.01376295, -0.0179501604, 0.00821337383, -0.00552346092, 0.0249665659, 0.00719486317, -0.0115257092, 0.00797398, -0.0136410771, 0.00593260629, 0.00889238063, -0.005323241, -0.00768235512, -0.0109772803, 0.00705122715, 0.00824384205, -0.000954309595, -0.00245922431, -0.00229164865, 0.0128663126, 0.0138412975, -0.0114299515, 0.0017007821, 0.0275259, 0.00564098172, -0.0230514184, 0.00133407477, 0.00497067953, -0.00166160858, 0.0105246091, -0.00760836108, 0.00326445699, -0.0128924288, -0.0126225669, -0.00340591674, -0.00711651612, 0.00977596, -0.0107248295, -0.0143462, -0.0200394131, 0.0123962313, 0.00399569515, -0.01094246, 0.012500694, -0.00490539055, -0.0121002533, -0.0183680113, 0.0297892578, -0.00826125219, -0.0161133595, -0.0040152818, 0.0160959493, -0.0055539296, 0.00576285459, 0.0114560677, -0.0155301094, -0.00775199709, -0.00762141868, 0.0142069161, -0.00118826237, 0.000587602262, 0.00655502966, 0.00668125506, -0.023713015, -0.020022003, 0.0131100593, 0.010507199, 0.0176541824, 0.00839183, 0.0174365528, -0.00288795633, -0.00463988166, 0.0228947252, 0.0125442194, -0.0024352849, -0.0208751131, -1.32873602e-05, -0.0132841635, 0.00343420869, 0.0133973313, 0.0199175403, -0.0121176643, 0.00927105732, -0.00761706615, 0.00467905495, 0.000818290515, 0.0183506012, -0.0068031284, 0.00124375813, 0.00531453593, -0.00414586, -0.00737767247, 2.907407e-05, 0.0135801407, 0.0158783179, -0.00853111409, -0.00467035, -0.00832218863, -0.024983976, 0.00451800833, 0.0166966096, -0.00761706615, -0.0068597123, 0.00756483478, 0.00383464876, -0.00596307451, -0.0232603438, 0.00453977147, -0.0405663177, 0.0317740478, -0.00605447963, 0.00201961072, 0.0144158415, -0.0168097764, 0.00530147785, -0.0197434351, -0.0139370551, -0.00403269241, -5.53937534e-05, -0.00761271361, 0.0345771275, -0.00334715657, 0.00517525245, 0.00408710027, 0.00500985328, 0.00899249, -0.00281613809, 0.0165486205, 0.00907954294, -0.00168119534, -0.00774764456, -0.00936681498, -0.0333235748, 0.0182113163, -0.0216237623, 0.000988042331, 0.0290928409, 0.00314040761, 0.00865298696, 0.0126138618, -0.00629387284, -0.0133799212, 0.0166792, 0.00470517064, -0.00375630171, 0.0260634236, -0.0263942219, -0.0172537435, 0.00322528346, 0.00367142586, -0.0102895685, -0.00531018339, -0.00510125794, 0.0123788202, -0.00305770803, 0.0120393168, -0.0129707754, 0.00175301335, -0.0135540254, 0.00941904634, 0.0119000338, 0.0316869952, 0.000140099612, -0.00463988166, 0.0180198029, -0.0045876503, -0.0134321516, -0.0399047211, -0.0228076726, 0.0118216863, 0.00134604436, 0.0227380302, -0.00953221414, -0.0181939062, -0.0056627444, 0.0130317118, -0.00460941298, -0.0199697707, -0.0127531448, 0.0122134211, -0.00115235324, 0.0306771901, 0.0105333142, 0.0183331892, 0.00551910838, -0.00462682359, -0.00621552579, -0.00619811565, 0.00915788952, 0.00228076731, -0.00556263467, 0.0261504762, 0.00114364806, 0.00892284885, -0.00285095908, -0.00329492521, -0.00369754154, 0.00502291089, 0.00246792939, 0.0118390974, 0.0138238873, 0.015895728, -0.00453541894, 0.0335325, -0.00642445125, -0.0139457602, 0.00313170231, -0.0329405479, -0.00316869956, -0.013771656, 0.00410668692, -0.00816984754, -0.0078825755, 0.0085572293, 0.0173843205, -0.0144158415, 0.00659855548, -0.00931458361, 0.000204844677, -0.00277043576, 0.0199871808, -0.0209099352, -0.0105159041, -0.00624599401, 0.0131884059, 0.00558439782, -0.00152341323, -0.0240264032, 0.0024918688, -0.000539451488, 0.011508299, -0.00331015931, 0.0110208066, -0.00830913056, 0.00349079259, -0.0174191426, -0.00319481525, -0.00266814954, 0.0172711536, 0.0306249578, -0.0273866169, -0.0102025159, -0.00523618888, 0.00966279209, -0.0142330322, 0.00772152888, 0.0168010723, 0.0128401974, -0.00270079402, -0.0032231072, -0.00104625849, -0.0168620087, 0.0150948483, 0.00431561191, -0.00630693091, 0.0243397914, 0.0324356444, -0.0002758466, -0.0176628884, -0.00947127771, -0.0101589896, -0.00656808726, 0.00442877971, -0.00926235225, -0.0247750524, -0.0105594303, -0.00607189, -0.00754307164, 0.0104375565, -0.00747778267, 0.00471387571, -0.0188555028, -0.00463552866, -0.00738202548, -0.0141808009, 0.0179501604, -0.00257674465, 0.00695546949, -0.00096029439, -0.0140154017, 0.0212059114, -0.000674110372, -0.00521442574, -0.0142939687, -0.0146682933, 0.00963667687, 0.0157999713, 0.00400440069, -0.00853546709, 0.000117588461, -0.00319699151, 0.00718615763, 0.00183680106, 0.0348382853, 0.00022171103, -0.0108118812, -0.0243746117, -0.00445054285, -0.0980555788, -0.00167357828, 0.0270035882, 0.000117452437, -0.00979337096, 0.0121350745, -0.00739943562, -0.00869651325, -0.0125355143, 0.0186117571, 0.00182265509, -0.00794351194, -0.00273561501, 0.014198211, -0.00627210969, -0.00222635968, 0.0282049086, 0.015625868, 0.0162178222, -0.00796962716, 0.00225465163, -0.0222505387, 0.00910565816, -0.00347555848, -0.000551965262, 0.00483139604, -0.00014118776, 0.00184115372, -0.00682924408, -0.0122569473, -0.0104114413, 0.00268773618, -0.000176144647, -0.00898378529, -0.0154517628, -0.00950609893, -0.0254366491, -0.0320003815, 0.0201438759, 0.00259633129, 0.0142330322, -0.00410015788, -0.0112645524, -0.0225465149, 0.008378773, 0.0121786008, 0.015617162, 0.0145899458, -0.00954962429, 0.0254018269, -0.00139718759, 0.0212755539, -0.0225639269, 0.00483574905, 0.0174365528, 0.00368883624, -0.00239611138, -0.0161830019, 0.00247445842, -0.00762577122, -0.00240046391, -0.0355695225, -0.0138325924, -0.0126138618, -0.00253539486, 0.0109946905, 0.00477045961, 0.000898269704, -0.00333845126, -0.00690759066, -0.00879662298, 0.0282397289, -0.00337762479, 0.00249622134, 0.00636786735, 0.00500985328, -0.0091753006, -0.0168184824, -0.00705557968, -0.0127705559, 0.0181416757, 0.010080643, 0.0115257092, -0.00440048799, -0.0106203668, 0.0132667525, -0.0156780984, -0.0062329364, 0.0114038363, -0.0152776586, 0.0107857659, -0.0029532453, -0.00664643431, 0.0261156559, -0.000261156558, 0.0285705272, -0.0213103741, -0.00973243453, -0.00359307881, 0.00784775428, -6.59692305e-05, 0.022442054, 0.00925364718, -0.00287925103, 0.0277000051, 5.71960045e-05, -0.0212581437, 0.0127357347, -0.00611106353, 0.0201961063, 0.0285705272, -0.00661161356, 0.00370189408, -0.00413715513, 0.0286401678, 0.0120567279, 0.0020370211, 0.0168533027, 0.019308174, -0.00354955276, -0.00196846761, -0.0395565145, -0.00836571492, -0.00196085055, 0.0111775007, -0.00293365866, -0.0083396, 0.00333409873, -0.00864428189, -0.0109598702, -0.00508384779, 0.0276129525, 0.0102373371, -0.00565839186, -0.0112471422, -0.0154604679, -0.0027269097, 0.00570627069, 0.0112906685, -0.00561921857, -0.0102112209, 0.0130055966, 0.00477481214, 0.00122417137, -0.011926149, 0.00460070791, -0.00704687415, 0.00926235225, 0.00781728607, -0.0109076388, -0.0157303289, -0.0163832214, -0.0167227238, 0.0141285695, -0.00588472746, 0.0184028316, 0.00722097885, -0.0102895685, 0.0229643658, 0.00746472459, 0.0129707754, 0.00363442861, -0.0285879374, -0.015765151, -0.00155605783, 0.00474869646, 0.00292495335, -0.0186465774, 0.00089718157, -0.0126051567, 0.000467905484, 0.0179153401, 0.00485751173, 0.0192733537, -0.0070860479, 0.00954962429, 0.00412627356, -0.0170883443, -0.0235911421, 0.00974984467, 0.00167901895, 0.00587167, -0.0046442342, -0.0126922084, -0.00315564172, -0.0201090537, 0.0148859238, -0.00644621439, 0.00324487, -0.00249404507, -0.00221983064, -0.00543205626, -0.00276173046, -0.00228076731, -0.00659420295, 0.00345379533, -0.0131013533, 0.0253670067, 0.011073038, -0.0171579849, -0.000595763384, -0.00302506331, -0.0107857659, -0.0162700526, -0.000383573701, -0.0221112557, -0.0108815227, 0.00145921228, 0.00804797467, -0.0112558473, 0.0015342948, 0.00109304895, -0.0074821352, -0.000335422956, 0.00803927, -0.0147901662, -0.0210666284, 0.00866604503, 0.00229600142, -0.0073689674, 0.024566127, -0.00236346689, 0.0361788869, 0.012631272, 0.0286924, -0.0167749561, 0.00921012089, 0.0189947858, -0.0018139499, 0.0236781947, -0.00406098459, 0.0261678863, 0.000579985208, 0.00105822808, -0.012352705, 0.00964538194, -0.00735155679, 0.0258544981, -0.0300852358, 0.0130317118, 0.0264290441, 0.0218326878, -0.00227423827, -0.00142112689, -0.0146682933, 0.0196737945, 0.0179327503, -0.00689453306, 0.00239828764, -0.0270558186, -0.0104897879, 0.00522313127, 0.0016115536, 0.0197782572, 0.0198478978, -0.0150426179, -0.0241308659, -0.000232320512, -0.00921012089, 0.0183506012, 0.00210557482, -0.0114386566, 0.0140328119, 0.00467470242, 0.0145986518, -0.0133015737, 0.00682053855, -0.0187162198, -0.00456153462, 0.00864863489, 0.00723838899, -0.014198211, -0.010219926, -0.0200742334, -0.00806538481, -0.0104897879, 0.0044744825, 0.0057236813, -0.0133276898, -0.00991524383, -0.0124397576, -0.0128837237, -0.0189773757, 0.000619158673, 0.011221027, -0.00344291399, -0.0211710911, -0.0190644283, -0.0172885638, -0.00546252448, 0.00991524383, 0.00403269241, -0.00628081523, 0.0179327503, -0.032505285, -0.00189556135, 0.0272995643, 0.000191242769, 0.00682489108, 0.00438090134, 0.00731673604, 0.00263985759, 0.0140502229, 0.0027182044, -0.00941904634, -0.0103243887, -0.001064757, -0.0202657487, 0.00709910551, -0.0055495766, -0.0283790119, 0.024844693, 0.00407839473, -0.00252451329, 0.00376283075, -0.0110382168, 0.00529277278, 0.00932328869, 0.0192733537, 0.0138064763, -0.012204716, 0.0271080509, -0.00483574905, -0.0029380112, 0.00374324387, -0.00226770947, 0.0225291047, 0.00716439495, -0.0107248295, -0.00252451329, -0.00761706615, 0.00194017554, -0.0193778165, -0.00751695596, -0.00164419808, 0.0135714356, -0.0105507243, -0.0052100732, 0.0066856076, -0.00793480687, -0.0153908264, 0.00885320734, -0.0161655899, -0.00355172902, 0.00553651899, -0.00356696337, 0.000883035595, -0.00553216645, 0.039626155, -0.00388905639, 0.0122917686, -0.000556045852, -0.00259633129, 0.0126225669, 0.00716874748, -0.029110251, -0.0134756779, 0.00258980249, 0.00171710434, -0.00508384779, 0.00842665136, -0.0309209358, -0.0149381552, -0.00786951743, -0.00678136526, 0.0113690151, -0.0235389099, 0.00307511841, -0.00263332855, -0.00734285172, -0.00322528346, -0.00756048225, 0.00937552, 0.0961752534, -0.000620246807, -0.00335803791, -0.0176454782, -0.00843970943, -0.0143897263, -0.00644186186, 0.0550518, -0.016052423, 0.00449624518, -0.00175845413, -0.0174539629, -0.0183331892, -4.40021577e-05, -0.00692935381, -0.0202309284, -0.0122221271, 0.015190606, -0.000867801486, 0.000896637503, -0.00774329202, -0.00715568941, 0.0228773132, -0.0227902625, -0.0145203043, -0.00687712245, -0.00329927774, 0.0079957433, -0.0161394756, -0.0171666909, -0.00870957132, 0.00171166356, -0.0104984939, -0.00918400567, -0.0165138, 0.00355608179, 0.0216237623, 0.00483574905, 0.00671607582, -0.0257848576, 0.0139283491, 0.00517525245, 0.011786866, 0.0143984314, 0.0105333142, -0.0174017325, -0.0160959493, -0.00902731158, 0.0133189838, -0.00757354, -0.00879227091, 0.00527100964, 0.000228511984, -0.0375369, -0.00652891397, 0.0125442194, 0.0128576076, -0.00635480927, 0.0111339744, 0.0306249578, -0.0158696137, -0.00467035, -0.00446577696, 0.00900990143, 0.00263985759, -0.00188685604, -0.0174191426, 0.0213103741, -0.00446577696, -0.0116998134, -0.0034494428, -0.0135888457, 0.00769106066, 0.000463280856, -0.0184202418, 0.00907954294, -0.00904472172, 0.0125442194, -0.0158086773, -0.0167401358, -0.0020163462, 0.00861816667, -0.00548428763, -0.0190470181, 0.0304856747, -0.0151122594, -0.00732979411, -0.0233648065, -0.00485751173, 0.00226770947, 0.00678136526, 0.0218849201, -0.0101764007, 0.0159566663, 0.0267076101, 0.0143636102, -0.0105768405, -0.00596307451, 0.0117520448, -0.0126747983, 0.0133015737, 0.0141633907, -0.00763012376, 0.00616329489, -0.0165138, 0.0247402303, 0.00436566724, -0.00352996611, 0.00429820176, -0.0173930265, 0.013197111, -0.0108641125, -0.00513607869, 0.0180023909, 0.003514732, -0.0044744825, 0.0083396, -0.0078825755, 0.0171318706, -0.00681183347, 0.0208751131, 0.00199567131, -0.0260460135, -0.000724709418, -0.0164789781, -0.0192037113, 0.0202309284, -0.001100122, 0.0170099977, -0.0170012917, 0.012065433, 0.0056105135, 0.0114212465, 0.00840053614, 0.00653326651, 0.0128576076, -0.0201961063, 0.00296412688, 0.000265101116, 0.00778681785, 0.015190606, 0.0064026881, 0.0023852298, 0.00812632125, 0.00337109575, 0.00645056693, 0.0107422397, -0.00480092783, -0.00738202548, -0.0178456977, -0.0152950687, 0.00132863398, 0.00169534131, 0.0177934673, 0.00658114534, 0.0103330947, -0.00281178555, -0.0074255513, -0.00913177431, 0.00206748932, 0.00700770086, 0.00282049086, 0.0389993787, 0.0171753969, 0.0164267477, -0.00639398303, 0.00799139, 0.00311864447, -0.00064799469, 0.00947998278, 0.0226509776, 0.00408274727, -0.00722533138, 0.0205791369, -0.0211188607, -0.00608494785, 0.000395543349, -0.010080643, -0.0160088968, -0.0110643329, -0.0212233234, 0.0201090537, 0.00268120738, 0.0426555686, 0.0102547472, -0.0181242656, -0.0158434976, -0.0134147415, 0.0329405479, 0.0206139572, -0.0129272491, -0.00107999111, -0.00298153725, -0.0027182044, -0.0129794804, -0.00199784758, 0.019168891, -0.0184376519, -0.0116824033, -0.0155475205, 0.0129794804, 0.015765151, 0.0128053762, 0.016043717, 0.0144854831, 0.00903601665, -0.012074138, 0.0219023302, 0.0106377769, 0.000972808164, -0.00169534131]
24 Oct, 2024
set::lower_bound() Function in C++ STL 24 Oct, 2024 The std::set::lower_bound() method is used to find the first element in the set that is equal to or greater than the given value. It is a member function of std::set class and is defined inside <set> header file. In this article, we will learn about std::set::lower_bound() function in C++. Example: C++ // C++ Program to illustrate the use of // std::set::lower_bound() method #include <bits/stdc++.h> using namespace std; int main() { set<int> s = {1, 5, 3, 7, 6}; cout << *s.lower_bound(4); return 0; } Output5set::lower_bound() Syntaxs.lower_bound(val); Parametersval: Value whose lower bound is to be searched.Return ValueReturns an iterator to the first element that is equal to or just greater than the given value.If all the elements are less than to the given value, returns an iterator to the end of the std::set.More Examples of std::lower_bound()The following examples demonstrate the behaviors of set::lower_bound() function in different cases. Example 1: Finding Lower Bound in Set of Strings C++ // C++ program to find lower bound in a set // of strings using set::lower_bound() #include <bits/stdc++.h> using namespace std; int main() { set<string> s = {"hello", "geeks", "welcome"}; // Finding lower bound of s cout << *s.lower_bound("coding");; return 0; } OutputgeeksTime Complexity: O(log n), where n is the number of elements in the set.Auxiliary Space: O(1) Example 2: Trying to Find Lower Bound that is Not Present in Set C++ // C++ Program to illustrate the use of // std::set::lower_bound() method #include <bits/stdc++.h> using namespace std; int main() { set<int> s = {1, 5, 3, 7, 6}; // Finding lower bound of 22 in s auto it = s.lower_bound(22); // Checking if lower bound exists or not if (it != s.end()) cout << *it; else cout << "Lower Bound NOT Present."; return 0; } OutputLower Bound NOT Present.Time Complexity: O(log n), where n is the number of elements in the set.Auxiliary Space: O(1) Example 3: Searching for Element in Set using set::lower_bound() C++ // C++ program to find an element in a set using // std::set::lower_bound() #include <iostream> #include <set> using namespace std; int main() { set<int> s = {1, 5, 3, 7, 6}; // Element to find int k = 7; // Using lower_bound to find element auto it = s.lower_bound(k); // Check if the element exists in set if (it != s.end() && *it == k) cout << k << " is present."; else cout << k << " is NOT present."; return 0; } Output7 is present.Time Complexity: O(log n), where n is the number of elements in the set.Auxiliary Space: O(1) Working of set::lower_bound()The std::set::lower_bound() function uses the search operation of std::set container which is internally implemented as self-balancing binary search tree. So, for searching the lower bound of any value, we move from the root node of the tree using the path that may contain the lower bound. If we find the lower bound in this path, we quit the search and return the iterator to it.If we reach the leaf node without finding it, we return iterator to the end.That is why, the complexity of the set::lower_bound() function is same as the search operation of self-balancing binary search tree. set::lower_bound() in C++ – FAQsHow std::set::lower_bound() is different from std::lower_bound() algorithm?std::set::lower_bound() is a member function that works directly on a std::set, taking advantage of the set’s internal tree structure for efficiency. std::lower_bound() is a generic algorithm that works on any sorted range (like vectors or arrays) and requires random-access iterators. Does set::lower_bound() work for sets with custom comparators?Yes, if you have a custom comparator for your set, set::lower_bound() will work according to it. Learn C++ Online – Master everything from basics to advanced concepts. Apply your knowledge with practical exercises and boost your skills. Take the Three 90 Challenge: finish 90% in 90 days for a 90% refund. Start now and level up your C++ programming!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum/Algorithm for Dynamic Time out timer Calculation/Difference between Round trip time (RTT) and Time to live (TTL)/Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms/Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm/Round Robin Scheduling Algorithm with Different Arrival Time/Selfish Round Robin CPU Scheduling/Find the order of execution of given N processes in Round Robin Scheduling/Calculate server loads using Round Robin Scheduling/set::lower_bound() Function in C++ STL
https://www.geeksforgeeks.org/set-lower_bound-function-in-c-stl/
PHP
set::lower_bound() Function in C++ STL
What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, jQWidgets jqxTreeMap width Property, Round Robin Scheduling Algorithm with Different Arrival Time, Difference between Flow and TypeScript, jQWidgets jqxTree destroy() Method, jQWidgets jqxTree collapseAll() Method, Find the order of execution of given N processes in Round Robin Scheduling, jQWidgets jqxScrollView buttonsOffset Property, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, jQWidgets jqxListBox enableHover Property, Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm, Selfish Round Robin CPU Scheduling, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxSlider buttonsPosition Property, Difference between Round trip time (RTT) and Time to live (TTL), jQWidgets jqxSlider rtl Property, jQWidgets jqxTooltip opacity Property, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, jQWidgets jqxToolBar height Property, PHP, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, Node.js date-and-time Date.transform() Method, TypeScript Optional Parameters, jQWidgets jqxToolBar theme Property, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, Steps to Diagnose and Resolve a Slow Network, How to use Optional Chaining with Arrays and Functions in TypeScript ?, Calculate server loads using Round Robin Scheduling, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, jQWidgets jqxScrollView showButtons Property, Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms, jQWidgets jqxScrollView disabled Property, jQWidgets jqxSplitter destroy() Method, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, set::lower_bound() Function in C++ STL, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, jQWidgets jqxTree collapseItem() Method, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), jQWidgets jqxSortable opacity Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, jQWidgets jqxSlider height Property, jQWidgets jqxSwitchButton onLabel Property, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, jQWidgets jqxToolBar tools Property, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTree width Property, jQWidgets jqxTree clear() Method, TLS Handshake?, Algorithm for Dynamic Time out timer Calculation, Adhoc TCP, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, jQWidgets jqxTabs position Property, Differences between Wireless Adhoc Network and Wireless Sensor Network, jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, Impact of Three-way Handshake and Slow Start Algorithm, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, How to Sort an Array Having Optional Properties in TypeScript ?
GeeksforGeeks
[-0.00126634247, 0.0106583824, -0.00638447655, 0.0459823, 0.0245951861, -0.0331218913, 0.0101025989, 0.0230474342, -0.0109046157, 0.0318836905, -0.0145770088, 0.0260725841, 0.0104262196, -0.0194313228, 0.00529753277, 0.000336811936, 0.0103840083, 0.00541713182, 0.00719704665, -0.0387219377, -0.00972973183, 0.0198815763, -0.0136624286, 0.0368927792, -0.0410013571, 0.004615115, -0.0145629384, 0.00418596528, -0.0019206194, 0.0239198022, -0.00580407, 0.0154775195, -0.00844931882, -0.0135217234, -0.0083930362, 0.00899103191, 0.022836376, 0.0260585137, -0.0128885526, 0.00927947648, -0.00400656695, 0.00676086172, 0.0330937505, -0.0176865831, 0.0108624045, 0.0292103011, 0.0135920765, 0.0154775195, -0.0107287355, 0.0124171916, -0.0107639115, 0.00533270882, 0.0270575173, 0.0174473859, 0.0441812836, 0.0240323674, 0.0272967163, 0.0152946031, -0.0389189273, -0.0308706164, 0.0181368385, -0.0241449308, 0.0128463414, -0.0567040034, 0.00496687647, 0.0119950771, -0.0214293282, 0.0573231019, 0.00195403676, -0.0175740197, -6.82637765e-05, 0.0408606529, 0.0419018678, 0.0005658968, -0.022132853, -0.00160931027, -0.0166172273, 0.000507416378, -0.0359359868, 0.0232303496, 0.0160262678, -0.0215418935, 0.000362534513, -0.00806238, 0.0500627384, 0.00749252643, -0.00327842, -0.0277329013, 0.03934104, 0.0425772481, -0.0172222573, -0.025734894, 0.0142182121, 0.00847042445, -0.0404666774, 0.0424365439, 0.00414375402, 0.00640206505, -0.020008212, 0.0533552319, 0.0305892061, -0.00519200414, -0.00494577084, 0.00200328347, 0.0472767875, 0.00550507242, 0.0249188058, 0.0162654649, -0.00756991422, -0.00786539353, 0.0349510536, -0.0136061469, 0.00464677345, 0.0527361296, -0.0265509803, 0.0118965842, 0.0088784676, -0.0308424756, 0.0388063639, -0.00424928265, 0.0250454396, 0.00356158824, 0.0401289873, -0.0121850288, -0.0375963, 0.0130573986, -0.00524476869, -0.00193820754, -0.00866741128, 0.00100955635, 0.00105352665, 0.00804127473, 0.00192413712, -0.0157589279, -0.0202051979, 0.0468546711, 0.0202614795, 0.0191077013, -0.00210177689, -0.0676508322, -0.0442094244, -0.0249188058, -0.0215559639, 0.0419018678, -0.0284786355, -0.0347259268, -0.0167579316, 0.0256645419, -0.0380184166, -0.0099056121, -0.0269590244, 0.0178272892, 0.0524547212, -0.000824441726, 0.0666377544, -0.0120302541, -0.00873072818, 0.00619100779, -0.00872369297, -0.0190092083, 0.0391440541, -0.00337691326, -0.00411561318, -0.00526235672, -0.00727443397, 0.06297943, 0.0126563897, -0.00109134102, -0.0839163, 0.0355701521, 0.0181509089, 0.00106759707, 0.0111649195, 0.00414023641, -0.0267338976, -0.0120091476, 0.0522577353, -0.000908424845, 0.0261429381, -0.00238318625, 0.0137820272, -0.00290555251, -0.00207011821, 0.00131295098, -0.00439702254, 0.00646538194, 0.0129729751, 0.00180981448, 0.0641613528, 0.0288726091, -0.028056521, 0.013774992, 0.0363581, 0.0402978323, 0.0381591208, -0.00319399708, -0.0502878688, 0.011453364, 0.00552617805, 0.0359359868, -0.00354751782, -0.013943838, -0.00896289106, 0.0170956235, 0.0517230555, -0.00896992628, 0.00328545528, -0.0138031328, 0.0105598895, 0.0100885285, -0.00122061349, 0.0185870938, 0.0176865831, 0.0288726091, 0.000533358834, 0.0308424756, -0.0461792909, 0.0311801657, -0.0394817442, -0.025495695, 0.00792167615, -0.0225268267, 0.0254816245, -0.0398475789, -0.0608970039, -0.00656035775, 0.0196423791, 0.0365269445, 0.0142533882, -0.037455596, 0.0203740429, 0.0134021249, -0.0270575173, 0.00597291533, 0.0052306978, -0.0210634973, -0.0657935292, -0.017348893, 0.0120795006, 0.0267761089, -0.00217212923, 0.0396224484, -0.0376807228, 0.00930761732, 0.0157026462, 0.00830157846, 0.00640558265, -0.0162654649, 0.00951867457, -0.0262555014, -0.00508999312, 0.019909719, 0.0322776623, -0.00429852912, -0.0281128027, 0.00620156061, 0.0272263642, 0.0035404826, 0.00801313389, 0.00323796738, 0.0127056362, 0.0283097904, -0.00496687647, 0.00503371144, 0.0237509571, -0.00994078815, 0.0619663596, -0.00427038828, -0.00524476869, -0.0247358903, 0.00641261786, -0.00971566141, 0.00245529739, -0.00776690058, -0.00847746, -0.013774992, -0.0152383214, 0.0154353082, -0.0104121491, -0.00930761732, 0.0045236568, -0.00686287275, 0.0116292452, 0.0271278713, 0.0447722413, -0.0376807228, -0.0139930844, -0.02505951, -0.0135850413, -0.023342913, -0.0174051747, 0.0364706628, -0.00759805506, 0.00122413109, 0.0351480395, 0.057435669, -0.0125367912, -0.0345289372, -0.0542838834, -0.02027555, 0.00946239289, -0.0233007018, 0.0250172988, -0.0114322584, 0.00933575816, -0.0253549907, 0.00266283681, 0.00282464735, 0.00717945863, -0.0120021123, 0.00768951327, -0.0491340905, -0.00876590423, -0.0383279659, -0.00242363894, -0.0446596779, 0.0104825022, 0.0220484305, -0.0127759883, -0.0137116751, 0.00343495398, 0.0183619671, -0.00892771501, 0.0359078459, 0.0280424505, -0.0120513598, -0.00435832888, 0.0507662632, -0.0221187826, -0.054537151, -0.012600108, -0.00563522428, -0.0422958396, 0.0110453209, -0.0152805327, -0.035232462, -0.00699654222, 0.0175880902, 0.0227941647, 0.00601512706, -0.0123468395, 0.00193117233, -0.005491002, -0.0200222824, 0.024285635, -0.00807645079, 0.0100744581, -0.0101096341, 0.00614176132, 0.0386937968, 0.00119159312, -0.00885736197, 0.00961013231, -0.0274092797, 0.0595462397, -0.0510195307, -0.0338254161, -0.0187418684, -0.006500558, -0.010137775, 0.02829572, 0.0368927792, -0.0393973216, 0.0214715414, -0.00257489644, -0.0277469717, -0.00866037607, 0.000539954344, 0.011924725, -0.0054945196, -0.00996189471, -0.0310394615, 0.0449692309, 0.0218233019, -0.0177287944, 0.0181931201, 0.0314334333, 0.0249750875, 0.00633523, 0.000479715149, -0.0235399, 0.0369490609, 0.0223016981, -0.0161951128, 0.0167016499, -0.0191217717, -0.0349229127, 0.0249188058, 0.0139086619, 0.0205991715, -0.0229630098, 0.0141619304, -0.00632115966, -0.0287037641, 0.0150131937, -0.0030532924, -0.0423521213, -0.0379058532, -0.0294917095, -0.0414516106, 0.0393691808, 0.00655332254, 0.0100744581, -0.00873776339, -0.0138734858, 0.0104051139, -0.00511813443, -0.0327279195, -0.0127408123, -0.00129008642, 0.0179961342, -0.00959606189, -0.00723222271, -0.000486750389, 0.0257489644, 0.041873727, -0.0346133597, 0.0170534123, 0.0152805327, -0.0111578843, 0.0165609457, -0.0420425721, -0.00359500572, -0.00835082494, -0.0207258053, 0.0239198022, 0.00100340054, 0.0197971538, 0.0145207271, -0.0156041533, -0.0137327807, 0.0233710539, -0.019572027, 0.0305892061, 0.00699654222, -0.00947646331, 0.0431963503, -0.00424224744, -0.0221750643, -0.0404385366, 0.0135709709, 0.0316304229, 0.0178272892, -0.0251439344, -0.00313595659, 0.0279720984, -0.0140845431, 0.0147036435, 0.0215700343, 0.014619221, -0.0113337655, -0.00481913658, 0.0158152115, 0.0177569352, 0.0433370546, -0.0250876527, 0.0405792408, -0.0229489394, 0.0425209664, 0.0156182237, -0.00787242875, 0.0155056603, 0.0119739715, -0.0194594637, 0.0213026945, 0.0128533766, -0.00632819487, 0.00118983432, -0.0223579798, -0.00599753857, 0.00470305514, -0.055747211, 0.0396224484, 0.0129448343, 0.0168142151, 0.00134812715, -0.0149850529, -0.00831564888, -0.0372023284, -0.0044392338, 0.0267338976, -0.0142111769, -0.0368927792, -0.0409450755, 0.00601864466, -0.0177006535, -0.00989154167, -0.0213308353, -0.0189951379, -0.00923023, -0.0373711735, -0.00759805506, -0.02829572, -0.0446033962, -0.00276660663, 0.0317711271, -0.027451491, -0.0187559389, -0.0118403025, 0.0184463896, 0.012396086, -0.0130925747, -0.0395661667, 0.0652307123, 0.0230474342, -0.0224142615, -0.0314052925, -0.00055886159, -0.00486838352, -0.00796388742, 0.0214011874, -0.0264524873, -0.00158116932, 0.0371179059, -0.00176496489, -0.0134584066, 0.0140212253, -0.0149006303, -0.0346415043, -0.0224846154, 0.0155338012, -0.00271560112, -0.00797795784, 0.0275640544, -0.00200504228, 0.0148443477, 0.00021919157, -0.0127267418, -0.0325590745, -0.029407287, 0.0034472656, 0.0103769731, -0.00271911873, 0.00277891825, -0.0236946754, -0.00635281811, -0.000635369739, 0.00894882064, -0.0275077727, 0.0228504464, -0.00845635403, 0.0187418684, 0.00871665776, 0.0283520017, -0.0348947719, 0.0120513598, 0.0147739956, 0.0333751589, -0.00527290953, 0.0263117831, 0.0113830119, 0.0250313692, 0.00832268409, -0.0388907865, 0.003536965, 0.0227660239, -0.0400445648, -0.0159559157, 0.00945535768, 0.00818198, 0.000293501245, 0.0241027195, 0.0284364242, 0.0134795122, -0.0147036435, -0.0572949611, -0.00450958638, -0.00118895492, -0.0302796569, 0.022231346, 0.0114041176, -0.0122131696, 0.0566477217, 0.0162936077, 0.0162795372, 0.0236665346, -0.00462918542, 0.0151820397, -0.0328404829, -0.0216825977, -0.00025458762, -0.0280424505, -0.000499062066, -0.0282816496, -0.0131558916, -0.0112563781, -0.0428305157, -0.0176725127, -0.0207680166, -0.00283168256, -0.0205569603, 0.0347259268, 0.0178413596, -0.0137327807, 0.0119739715, -0.00405581342, 0.00889253803, 0.0225127563, -0.0331218913, -0.0125508616, 0.0495562032, 0.000366491819, 0.0102010919, -0.0165890865, 0.0170956235, -0.0326997787, 0.017278539, 0.00263469596, 0.00453069201, 0.00503371144, -0.0226675309, 0.0165328048, -0.0138594154, 0.00873776339, -0.0226534605, 0.000738260103, -0.010137775, 0.0127478475, -0.0014307911, 0.00463622063, -0.0134232305, 0.00124875444, -0.00404877821, 0.0314334333, 0.00740106823, 0.0214152578, -0.0236946754, -0.031546, 0.00179222634, -0.0322776623, 0.037286751, -0.0120021123, 0.0056457771, 0.00114058761, 0.0110312505, 0.0197690129, -0.0383842476, 0.0344726555, -0.00396435568, 0.00653573452, -0.0232162792, 0.0312927291, -0.00255554961, 0.0557190701, -0.0110523561, 0.00972269662, -0.00192941353, 0.0341068245, 0.0153790265, 0.022569038, -0.0434777588, 0.0287459753, 0.0330937505, 0.00551562523, 0.00227765762, -0.0394817442, 0.0108272284, 0.0299701057, -0.000402547419, -0.00563874189, 0.0243700575, -0.0149287712, 0.0166312978, 0.0226956718, -0.0198534355, 0.00589904562, 0.0118403025, 0.010475467, 0.00693322532, 0.00892771501, -0.053017538, -0.0288163275, 0.0123186987, -0.00335053122, 0.00273670675, -0.0133528784, -0.0310957432, 0.00937796943, 0.00857595261, -0.0050126058, -0.00744328, -0.0267761089, 0.0245670453, -0.0303077977, -0.0108483341, -0.00389400311, 0.000305593072, -0.0108272284, -0.0202896204, -0.00854781177, 0.00220378768, -0.0137679568, 0.0383561067, 0.00587442191, -0.0212604832, 0.015224251, 0.00515682809, -0.00605733832, -0.0210916381, -0.0129589047, -0.0148584191, -0.015393097, -0.0251580048, -0.0221047122, 0.00665885117, 0.0139930844, -0.00685232, -0.00948349852, -0.00820308551, -0.00192589592, 0.000867972267, 0.0203318316, -0.0190232787, 0.0316585638, 0.00848449487, -0.00574075244, 0.0117277382, -0.0192484055, 0.0174614564, -0.0371179059, 0.00406636624, 0.00970159099, -0.00382013316, -0.0137116751, 0.0185167417, 0.00517793372, -0.0181790497, -0.0160966199, -0.000524564763, 0.00235504517, -0.0224001911, 0.0135639356, 0.0124523677, 0.00962420274, 0.0140704717, 0.00459049176, 0.0298856832, -0.0327842, -0.0363581, -0.0234132651, 0.0150272641, -0.00234273355, -0.000276792562, 0.00428797631, -0.0206413828, 0.00470305514, 0.0149006303, 0.00494577084, -0.031123884, 0.0625291765, 0.0289851725, 0.0360204093, 0.00851967093, -0.009983, 0.00768247759, -0.000151587359, 0.0252705682, 0.00914580654, 0.00340153673, 2.79623146e-05, 0.0142533882, 0.0101659158, -0.0117066326, 0.044096861, -0.0303640794, -0.00659553381, -0.0440687202, 0.0211479198, 0.0166031569, 0.010306621, 0.0119528659, 0.0163498893, 0.00773172453, -0.0223016981, -0.0161388312, -0.0164483823, -0.0159418453, 0.018826291, 0.00944832247, 0.0271982234, -0.00733071612, 0.0433651954, -0.0101307398, -0.00384475663, 0.00923726521, -0.0112634134, 0.0196845904, 0.0243137758, 0.0396224484, -0.019234335, -0.0146755027, -0.00958902668, -0.0160262678, 0.0360204093, 0.0132825254, -0.00217564683, -0.0457571745, -0.0379339941, -0.039932, -0.0312645882, 0.0324465074, -0.0163639598, -0.0078442879, -0.00709151803, 0.0250876527, -0.0162936077, -0.0114463288, 0.00659905141, 0.0138312746, 0.0150413346, 0.00760509027, 0.00360204093, -0.0149709824, 0.00831564888, 0.0147458548, -0.00194348395, -0.00849856529, -0.00414023641, 0.00968048442, -0.00530105038, 0.00717594102, 0.00114586402, 0.0065884986, -0.00908249, -0.0308424756, 0.0147177139, 0.00475933729, 0.00592015125, 0.0161106903, 0.010172951, 0.00109222042, 0.0372586101, -0.0101025989, -0.0140001196, -0.0106372768, 0.012564932, 0.0110031096, -0.0105317486, 0.002063083, 0.0352606028, -0.00786539353, -0.0197690129, -0.0261147972, 0.00223017, 0.0316585638, -0.00709503563, -0.0400727056, 0.0354294479, 0.00361962896, 0.0188966449, 0.022569038, 0.0111860251, -0.0133810192, 0.00794278178, -0.00949053373, 0.0322213806, -0.0419300087, -0.0291540176, -0.00899806712, -0.00218795845, 0.0171659756, 0.0138172032, 0.00296711084, 0.0431119278, 0.00312892115, 0.0390033498, 0.0210916381, -0.00011498214, 0.0060397503, -0.0136976046, 0.010208128, -0.0408887938, -0.00887143239, 0.00721111707, -0.00842117798, 0.00338570727, -0.015393097, 0.0363018177, 0.021387117, -0.0131277507, 0.0327560604, -0.00684528472, -0.0506255589, -0.0575482324, -0.0045236568, 0.0170674827, -0.00205428898, -0.0318836905, -0.0163780302, -0.0316867046, 0.0253831316, 0.00675734412, -0.00295655802, -0.0096030971, -0.00193468994, -0.00915284175, 0.00721815228, 0.0218514428, -0.00768951327, -0.0431963503, -0.00511813443, -0.00704930676, -0.0169549193, -0.00375329843, 0.0392284766, 0.0123046283, 0.00816087425, 0.0180805568, 0.0280846618, 0.0329249054, 0.00775986537, -0.0108201932, -0.0296886954, -0.0490496643, -0.00380606274, 0.00106495887, -0.0127478475, 0.00619100779, 0.0269449539, 0.00925837085, 0.0139297675, 0.0146332914, 0.00333470199, 0.0334033, -0.00137099158, -0.0137398159, 0.00733775133, 0.0305610653, -0.0249328762, -0.0074714208, -0.0224001911, 0.00519903935, 0.0209509339, -0.00057601, -0.00659905141, -0.0444908328, -0.00925133564, -0.0161106903, -0.0862238556, -0.020416256, -0.021387117, -0.00943425205, 0.00672920328, -0.0194594637, -0.00970159099, -0.00957495626, -0.0176021606, -0.0183901079, -0.00696840137, 0.000195117871, 0.0241308603, 0.00624377187, -0.0067432737, -0.0311520249, -0.0127900597, -0.00883625634, -0.0192484055, -0.000406065024, -0.00535029685, 0.0182494018, 0.0245389026, 0.0193750393, -0.0100111412, -0.00945535768, 0.0133950897, 0.000809931546, -0.0160403382, -0.0376807228, -0.0194876045, 0.00299701048, 0.0242012125, -0.0119739715, 0.00510054594, 0.0404103957, 0.00106935587, 0.0200785641, -0.0162936077, -0.0203459021, 0.00961716752, 0.0130503634, 0.0145347975, 0.0225549676, 0.00715835253, 0.0307017695, 0.0356264338, 0.000596675964, -0.0116855269, -0.0028580646, -0.0311801657, 0.0281128027, 0.000421454606, -0.0137609215, 0.0193891115, -0.00892068, 0.023680605, 0.0513290837, 0.0304203611, -0.0157589279, 0.0033417372, -0.0323058031, -0.0342756696, 0.0100814933, -0.0142252473, -0.00925133564, 0.0359641276, -0.0021088121, -0.0168845672, -0.00576889375, -0.00398194371, -0.00341560715, -0.00447441032, -0.0165609457, -0.0240745787, -0.00982119, -0.0230474342, 0.0224846154, 0.00222489331, -0.0195298158, 0.0320243947, 0.00209474145, -0.028197227, -0.030955039, -0.0201489162, 0.0131136803, -0.00240780949, 0.0119317602, 0.0133458432, 0.0204443969, -0.00886439718, -0.011889549, 0.0209509339, -0.00187313161, 0.012396086, 0.00978601351, 0.00930761732, -0.019839365, 3.85838721e-05, -0.0406355225, -0.00614176132, 0.010172951, -0.00575482333, 0.00216509402, -0.00763323111, 0.0160121974, -0.0339661203, 0.00260303728, 0.00840710755, -0.02445448, 0.00590959843, 0.00849856529, -0.00711262366, 0.03011081, -0.000813888852, 0.0159559157, 0.012192064, -0.0134302657, -0.00119599013, -0.0127126714, 0.00794981699, 0.000388476939, -0.00417189486, -0.0324183665, 0.0320525356, -0.0262836423, -0.00182564382, 0.0299701057, 0.0378214307, -0.0198252946, 0.0304203611, 0.00812569726, -0.000676262076, 0.00989857689, 0.00665885117, 0.00655332254, -0.0116503509, 0.0122342752, -0.00192413712, -0.00787946396, 0.0211479198, -0.0420144312, 0.00996893, -0.0300263874, 0.0188825745, 0.0331218913, 0.0140352957, -0.0123820156, 0.0225549676, -0.0205851011, 0.00573371723, -0.0254394133, -0.00509702833, 0.00694729574, 0.0222876277, -0.00143254991, -0.00624025427, -0.00598346815, 0.0215278231, 0.0675945505, -0.015393097, -0.0165328048, -0.00597643293, -0.0111789899, -0.00658146339, 0.00482617179, -0.0177147239, 0.020782087, 0.0101025989, 0.0163639598, -0.00386937987, 0.0229630098, 0.0270434469, 0.0110804969, 0.0264806282, 0.026747968, 0.000732543936, 0.0168986376, -0.00827343762, -0.0226112492, 0.0149709824, 0.0091176657, -0.0109960744, 0.00904027838, 0.00648297, -0.0129800104, -0.0199800711, -0.0119528659, 0.00578999938, 0.0207398757, -0.0181086976, 0.0256786123, -0.0144081637, 0.0108201932, 0.0253831316, 0.0252142865, 0.0107990876, -0.00847746, 0.0341349654, -0.0132754901, 0.0107005937, 0.00478396052, 0.00760509027, -0.0086322343, -0.0151961101, -0.0227097422, 0.0378777124, -0.00303922198, -0.0123468395, -0.00849153, 0.00557542453, 0.00914580654, -0.00663422747, -0.00260479609, -0.00535733206, 0.0188403614, -0.0278032534, 0.0139297675, -0.011720703, -0.0208805799, -0.00469602, 0.000818285916, 0.00999003556, 0.0109327566, 0.0163921, -0.00696488377, 4.53168141e-05, 0.0123257339, 0.0157448575, -0.0361048318, 0.00471360795, 0.0406918041, -0.0032485202, 0.0147739956, -0.0131840324, 0.00552266045, -0.0156322941, -0.0147599252, 0.0123679452, 0.0125156846, 0.0105387839, -0.00851967093, -0.00113531121, 0.0120021123, -0.013036292, -0.0112704486, 0.00706689479, 0.00326083181, 0.00187137281, -0.0178976413, -0.0097086262, -0.0284786355, -0.00553321326, 0.00590608083, 0.0161247607, 0.0155900829, 0.0346696451, -0.0144785158, 0.0162513945, -0.0150835458, -0.00795685221, 0.00625784229, 0.0102292337, 0.0154775195, -0.034388233, 0.0133669488, -0.0198252946, 0.00416837726, 0.0325872153, 0.0105950655, -0.0133669488, 0.00207011821, 0.0139297675, -0.0111016026, 0.0158714931, 0.00918098353, -0.0014255147, 0.0192624759, -0.00446385751, -0.0143659525, 0.0254534837, 0.00179926166, 0.0226253197, -0.0352887437, -0.00668347441, -0.00742920954, -0.00032493996, 0.0390033498, 0.017011201, -0.0491340905, -0.0167860724, -0.0137468511, -0.0395380259, -0.0146473618, 0.0182916131, -0.00659553381, 0.0386375152, -0.0172222573, 0.0182353314, 0.0280143097, 0.0426616706, -0.000500381168, -0.0097789783, -0.012192064, 0.000665269501, 0.0216685273, -0.00358972931, 0.0383279659, -0.00477692531, -0.018221261, -0.017616231, -0.00268921908, 0.0162795372, 0.0146755027, -0.0140493661, 0.0194172524, -0.000922495325, 0.00470305514, -0.0323058031, 0.00570557639, 0.0317429863, 0.0235961825, 0.0238353796, -0.00723222271, -0.0140704717, 0.00136747397, 0.000612944947, -0.0171941165, 0.0063493005, 0.023342913, 0.00948349852, 0.0342193879, -0.0163498893, 0.0330093279, 0.0285208467, 0.0150835458, 0.0078865, 0.00686639035, 0.0155900829, -0.0030955039, -0.00599402096, 0.00892771501, -0.00127777481, -0.0318555497, 0.0119810067, 0.00726036355, -0.0132403141, 0.0131488563, 0.00928651169, -0.00410857797, -0.00148179661, 0.0169689897, -0.0318274088, -0.00442164578, 0.0345852189, 0.0142463529, -0.0354857296, -0.0295761321, 0.00719704665, 0.00669754483, 0.00999707077, -0.00934982859, 0.0153368143, 0.0206132419, 0.00616990216, -0.0167297907, 0.0179117117, 0.00453069201, 0.004615115, 0.0152383214, -0.0338254161, -0.0181790497, -0.01044029, -0.029238442, -0.0145347975, -0.00392917916, 0.0288444683, 0.00219147606, 0.00730257528, 0.0270856582, 0.00925837085, 0.0162513945, -0.00829454325, 0.0170534123, 0.00740810344, 0.0107357707, 0.0127478475, 0.00582165783, 0.0144785158, -0.0425772481, 0.0176021606, 0.000765081903, -0.0063493005, 0.0085056005, 0.000274813909, 0.0304203611, -0.0406636633, -0.0214856118, 0.00766840717, 0.0286334101, -0.0178835709, -0.00911063049, 0.00934982859, 0.0229489394, -0.000127953361, -0.00520607457, -0.0187137276, -0.0106513472, 0.016842356, -0.00506185228, -0.0353168845, 0.0157448575, -0.0274374206, -0.0214856118, 0.000625696324, 0.0116503509, 0.0178976413, -0.00920912437, -0.034697786, 0.00273318915, 0.0178413596, 0.00733071612, 0.0163639598, -0.00376736885, -0.00499501778, -0.0201629866, -0.00115465815, -0.0243278462, -0.000719792617, 0.0218373723, -0.0109257214, 0.0065920162, -0.00336987805, 0.0140915783, -0.00832268409, 0.00692619, -0.00889253803, 0.00800609868, -0.00573371723, -0.00479099574, 0.0239760838, -0.0086322343, 0.0276625492, 0.0121709583, 0.00219323486, 0.00210529449, 0.0351761803, -0.0165187344, -0.00662367465, 0.0107709467, 0.00981415436, -0.0226816013, 0.00826640241, 0.0341068245, 0.025495695, 0.00446034, -0.0210072156, 0.0106724529, -0.00945535768, -0.0157870706, 0.01175588, -0.0156041533, -0.00120654295, 0.0256645419, 0.0224986859, -0.00913173612, 0.00123556331, -0.0149006303, 0.0054734135, -0.00495280605, -0.0293791462, -0.0200504232, 0.0261851493, 0.0154212378, 0.0132965958, 0.00265228399, -0.0106583824, 0.00530808559, -0.0144785158, -0.0411420614, -0.026607262, -0.00852670614, 0.00766840717, 0.00447441032, -0.00586035149, -0.0086322343, 0.0101237046, -0.0264102761, -1.78216815e-05, 0.0186855868, 0.00199624826, -0.00501612341, 0.0150694754, -0.0125508616, -0.00180014106, -0.00396083808, 0.00330656092, 0.0293791462, -0.0166172273, -0.00778800622, 0.0373711735, -0.0146895731, -0.012529755, -0.00185202586, 0.0143096698, -0.00236032181, 0.0094272159, -0.00787946396, 0.0219780784, -0.00277715945, -0.0193750393, -0.00306736282, -0.033544004, 0.00350354752, -0.00668347441, -0.00444978662, 0.0415360332, -0.00160051626, 0.0121076414, -0.0215137526, 0.0070774476, 0.000488509191, -0.0277469717, 0.0036934989, -0.0221469235, 0.0134373009, -0.0101025989, -0.00205077138, 0.0346415043, -0.00372867519, -0.00728146918, -0.023947943, 0.00360555854, 0.0409732163, -0.00013421911, -0.0128182005, -0.0163780302, -0.00718649384, -0.00970159099, -0.0243700575, -0.0245248321, 0.00672568567, 0.0199237894, -0.0156182237, 0.00360028213, 0.00677493215, 0.0211338494, -0.0201911274, -0.00587794, 0.00861816388, 0.0172503982, 0.0405792408, 0.020008212, -0.00542064942, 0.025298709, -0.00670458, -0.0231318567, -0.00669402722, 0.00915284175, 0.0207539462, 0.0251017231, 0.0093568638, 0.0196986608, -0.00246409141, 0.0127197066, -0.00823826157, -0.0387782231, 0.0344445147, -0.0162091833, 0.0177287944, 0.0282675792, -0.00699302461, -0.00481561897, 0.0270153061, 0.0204303265, -0.000495104759, 0.0290414542, -0.00740810344, 0.0110523561, -0.0102784801, 0.00956088584, -0.00813273247, -0.022231346, 0.0321369581, -0.00685583754, 0.0146614322, 0.00955385063, -0.00454124482, -0.00400304934, 0.0147739956, -0.0308424756, 0.00465029106, 0.00276308903, 0.00695433095, 0.0017245122, -0.0153649552, -0.0177991465, 0.0140141901, -0.000848625379, -0.00685583754, -0.00696488377, -0.0196845904, 0.00940611, 0.00534326164, -0.00274198316, 0.0261429381, 0.00587794, 0.00614527892, 0.0146332914, 0.0100533525, -0.0107287355, 0.00334877241, 0.0089839967, -0.0153790265, -0.0229770802, -0.00139561493, 0.0290977359, 0.0192484055, 0.0272967163, 0.015660435, -0.0140212253, -0.0239901543, 0.0239338726, 0.0166875795, 0.0196001679, -0.00830157846, -0.00207715342, -0.032812342, -0.005406579, -0.0113337655, 0.0205428898, -0.00682769669, 0.009532745, 0.0342193879, 0.0137398159, -0.00767544238, 0.0100252116, -0.0101870215, -0.0200504232, -0.00473823166, 0.0154071674, 0.0155900829, 0.0251861457, 0.00352641218, 0.016406171, -0.01101718, 0.0165750161, 4.89443555e-05, -0.00409450755, -0.0118754786, 0.00907545444, 0.00280530029, 0.00261007249, 0.0122342752, 0.00972269662, 0.00354927662, 0.00652166363, 0.0240745787, -0.024623327, -0.0202333387, -0.0114674345, -0.000201603485, -0.0162936077, 0.017953923, -0.00271911873, 0.0169267785, -0.00566336513, 0.00816087425, 0.0180242751, -0.00599402096, -0.0293791462, 0.0147458548, 0.0121146766, 0.0112352716, 0.00515682809, -0.0167579316, -0.0148021365, 0.0131418211, 0.0191499125, 0.00952571, -0.0209790748, 0.0184323192, 0.00600457378, 0.0210353564, 0.0423521213, -0.0111508491, -0.01101718, 0.00892771501, -0.00690860162, -0.0125438264, -0.00351585913, -0.00444978662, 0.00618397258, -0.00401711976, 0.0082593672, 0.022737883, -0.00243946817, 0.00086973107, -0.00637040613, -0.00550155481, 0.0202474091, 0.00558245974, 0.0135991117, 0.00670458, 0.0128322709, 0.00852670614, 0.0213308353, -0.00300228689, 0.00103945611, 0.0168142151, -0.00455531524, -0.00866741128, -0.00823826157, -0.00656035775, 0.00985636562, -0.00480506616, 0.0065884986, -0.00688749598, 0.0142955994, 0.0135217234, 0.0241449308, -0.00157765171, 0.00817494467, 0.0115518579, 0.00448144553, 0.00764730154, 0.00466436148, 0.00251685572, 0.0162091833, 0.0137609215, -0.00620156061, 0.0284927059, 0.000278771244, 0.00576185854, 0.00866741128, 0.0281128027, -0.00800609868, -0.0110523561, -0.0172081869, -0.000467403501, -0.00647593476, 0.000603271474, -0.00752066728, -0.011791056, -0.00792871136, 0.021021286, 0.0182775427, -0.0142322825, -0.00546637829, -0.0165328048, 0.0147317844, 0.000560180692, -0.0112352716, -0.0275218431, -0.00024755238, -0.00188720203, -0.0018221261, -0.0221609939, -0.00126898068, 0.00053072063, 0.000916339515, 0.0118121617, 0.00315882103, -0.0078865, -0.0294635687, -0.0114111528, 0.00427742349, -0.0391440541, -0.00624025427, 0.0024183623, -0.013169962, -0.00928651169, 0.00249223248, -0.00949053373, 0.00160403387, 0.00218795845, 0.0156322941, -0.000146640697, -0.0156745054, 0.00183267903, -0.0045271744, -0.00526235672, 0.000780031784, 0.0256223306, -0.00742217386, 0.00457993848, -0.00782318227, -0.0180805568, 0.00150905817, -0.026846461, 0.0042176242, 0.00646889955, 0.00471009035, -0.0155056603, -0.0227660239, -0.0141900713, 5.6226927e-05, 0.000776514178, -0.0061101024, 0.0180102047, -0.0105598895, -0.010004106, -0.00100427994, -0.0033417372, 0.00168757723, -0.00185730238, 0.00474878447, 0.00803423952, 0.00536085, 0.00122588989, 0.00592015125, 0.00867444649, -0.0253831316, 0.00639503, -0.00639503, 0.025636401, -0.0204021838, -0.0325027891, 0.0136342878, 0.0142182121, 0.0217388794, -0.000557102787, 0.0171800461, -0.00227765762, -0.0288444683, 0.0036477698, 0.0228645168, -0.0218514428, -0.00588497519, -0.001671748, -0.012058395, -0.0314615741, 0.00134197134, 0.0086814817, -0.00254323776, 0.0272404347, -0.0135217234, 0.0259318799, 0.00574427, -0.021021286, 0.00614176132, 0.0192906167, -0.0225971788, 0.0125578968, 0.000487190089, -0.0114252232, -0.013979014, 0.00371108693, -0.00610306719, 0.00247288542, 0.00376736885, 0.0112704486, 0.0191358421, 0.0101096341, -0.00437943451, -0.000869291369, 0.00695784856, -0.000955912692, -0.0127619179, 0.0283942129, 0.0116081396, -0.00301108113, -0.0235539712, -0.0193750393, -0.0137890624, 0.000680659083, -0.00727443397, -0.00572316442, -0.00441461056, -0.00284927059, 0.00362314656, -0.00137714751, -0.02890075, -0.0162091833, -0.014077507, -0.00564225949, -0.00410154276, 0.0140141901, 0.00807645079, 0.0411139205, -0.00647593476, -0.00740810344, 0.00321510294, 0.0113970824, -0.00823826157, -0.0133810192, -0.0433933362, 0.000835434301, -0.014077507, -0.0135287587, 0.0337128527, 0.0206132419, -0.0189529266, -1.11505742e-05, 0.0114463288, -0.0161388312, -0.00357389986, -0.00746438559, -0.0135217234, 0.0232444201, -0.00316585624, -0.00453420961, 0.00642317068, -0.0220484305, -0.00770358369, -0.00192589592, 0.00558597734, 0.00311309192, 0.0103206914, 0.0110804969, 0.0167157203, 0.00963827316, 0.00623673666, 0.00799906347, 0.000983174192, -0.0231881384, 0.0075347377, 0.0213589761, -0.0268605314, -0.0156041533, -0.0116714565, 0.0222454164, 0.0181790497, 0.00392917916, 0.00954681542, -0.00348595949, -0.00504778186, -0.0100111412, -0.00870258734, 0.0258333869, -0.000257225824, 0.0326997787, -0.0236102529, -0.0169549193, 0.0191780534, -0.0115448227, -0.0148443477, 0.00785132311, 0.00205428898, -0.00694377813, -0.0231318567, -0.023680605, 0.00459400937, -0.0240464378, 0.0124101564, 0.00306208641, -0.00287917047, 0.0166594386, 0.00394676765, 0.00417541247, 0.0183056835, 0.0143659525, 0.01175588, 0.00879404508, 0.00233745715, -0.00597291533, 0.0134161953, 0.00479451334, -0.00693322532, 0.00233042194, -0.0110734617, 0.0195016749, -0.0145488679, 0.0189951379, -0.00352817099, 0.00172011519, 0.00259776087, 0.00286509981, 0.00599402096, 0.0166453682, -0.0141830361, 0.00464325584, -0.00870962255, 0.00514979288, -0.00153016381, 0.0229207985, -0.000251729536, 0.0146614322, -0.0274796318, -0.0151820397, -0.00361611135, -0.00569150597, -0.00311660953, -0.000341208943, -0.00283520017, -0.019332828, -0.0252283569, -0.0111508491, -0.0132543845, -0.000996365328, -0.00952571, -0.0052518039, -0.0195579566, -0.0156463645, -0.0217951611, 0.00412264839, 0.0113337655, -0.0167016499, -0.0169549193, 0.0139086619, 0.0200644936, -0.00276660663, 0.00535381446, 0.00155302836, 0.0113900471, 0.00202790671, 0.0122061344, -0.0172644686, -0.0110312505, 0.00386234466, 0.00493170042, -0.013774992, 0.00637040613, 0.0133880544, 0.00387289748, -0.00034626553, 0.00871665776, -0.0110804969, -0.0182071906, -0.0100111412, -0.0117840208, 0.0148302773, -0.0143870581, -0.0092935469, -0.00847746, 0.000814328552, 0.0105880303, -0.0149991233, -0.0149428416, 0.00183443783, -0.01101718, 0.00393269677, 0.000429369247, 0.00782318227, 0.0359359868, -0.0110523561, -0.000772117171, -0.00861816388, -0.00794981699, -0.00300404592, 0.01967052, 0.0129729751, -0.0239057317, -0.0109257214, -0.00513924, -0.0162513945, 0.00669402722, 0.0217388794, -0.0108201932, 0.000271076453, 0.0298575424, 0.0160403382, 0.00632115966, 0.0135639356, 0.026607262, 0.00159172213, 0.0162795372, -0.00828047283, 0.00811866205, 0.00341384835, -0.0160825495, -0.0179257821, -0.0135006178, 0.00737292739, -0.00689453119, -0.0112774838, -0.000519728055, 0.00799202826, 0.0195298158, 0.0121568879, 0.0130222216, 0.0065884986, 0.0133528784, 0.00818198, -0.021724809, 0.0123679452, 0.0122553809, 0.0015292844, 0.00406284863, 0.000447836734, 0.0228223056, 0.00371460477, -0.00833675452, 0.00975083746, -0.0229770802, -0.0182775427, 0.0102010919, 0.0256082602, 0.00759805506, 0.0123820156, 0.0165328048, 0.015773, 0.0151116867, 0.00215102336, -0.0184886, 0.0141971065, 0.00681362627, 0.0145066567, -0.0150976162, -0.0281409435, -0.000887319155, -0.01162221, -0.00471360795, 0.00687342556, -0.010982004, 0.00787946396, -0.00934982859, 0.00482265418, 0.0135498643, -0.00201735389, 0.0143448468, 0.0246514678, 0.0137890624, -0.0209368635, -0.00964530837, 0.0146332914, 0.00755584333, 0.0147599252, -0.00789353531, -0.0144222341, -0.00604678551, 0.00487893634, 0.00232162792, 0.0307580531, -0.0110664265, 0.00457642088, 0.00364073459, -0.00941314548, -0.0139016267, -0.00373922801, -0.00205253018, -0.0112563781, 0.00851967093, -0.0110664265, -0.0182071906, 0.0096030971, -0.0169549193, 0.00505129946, -0.0148302773, 0.0235399, -0.00104385312, 0.00853374135, -0.0166172273, 0.00211760611, 0.0123257339, -0.0119739715, -0.00139121793, 0.0122061344, -0.0112634134, 0.0155760124, -0.00842821319, -0.0199941415, 0.00492818281, -0.00365480524, -0.00330128451, 0.00700709503, -0.00209474145, -0.0116644213, -0.00340505433, 0.00838600099, 0.0256223306, 0.0131207155, -0.00116960797, 0.0183478966, -0.00311485073, -0.00766840717, -0.0109538622, 0.00763323111, -0.0091176657, 0.0106372768, 0.00492818281, -0.0190936308, 0.00544527266, -0.00573371723, -0.0184182487, -0.0167157203, -0.00238846266, 0.0154212378, 0.0220625009, 0.00735885696, -0.0106302416, 0.00370405172, 0.00408395473, -0.00537140295, 0.000266679417, 0.0117769856, -0.00348420069, 0.00252740853, -0.0181790497, 0.000588761293, -0.0088081155, -0.0192061942, 0.00158732513, 0.00321510294, 0.00342088356, 0.0122061344, 0.00149322883, 0.00471009035, 0.000761564297, -0.000648121117, -0.0229348689, -0.0331218913, -0.00542064942, -0.00288972328, 0.0237087458, 0.0101025989, -0.00877293944, 0.0247218199, -0.00828047283, -0.00994782429, -0.00108958222, 0.00542416703, 0.00610306719, -0.00402415497, 0.0179961342, 0.00219147606, 0.0180242751, 0.0107146641, 0.00331535493, -0.00385179184, 0.00932872295, -0.033853557, 0.0196423791, 0.017953923, -0.0205288194, -0.020782087, -0.00918801874, -0.0380465575, 0.0266776159, -0.0149709824, 0.00951163936, -0.00969455577, 0.00090490724, -0.0157167166, -0.0108764749, -0.0214715414, -0.0122975931, -0.0104543604, 0.00584276346, 0.00880108, -0.00144310284, -0.0126071433, -0.00663071, -0.00396083808, -0.0236243233, 0.0200644936, 0.00458345609, 0.0151398284, 0.00102450629, -0.0119106546, 0.0185448825, 0.00226886361, -0.0209790748, -0.016068479, -0.0203459021, -0.0179679934, 0.02829572, 4.93290972e-05, -0.00493521802, -0.0107568763, 0.0106794881, 0.00455883285, -0.00453420961, -0.00637040613, -0.0175880902, -0.0177710056, 0.0169267785, -0.0108412988, 0.000832796097, 0.00785132311, 0.00398546131, -0.00266283681, 0.0133458432, -0.0125719672, 0.00900510233, 0.0123116635, -0.00776690058, -0.0214715414, 0.00517441612, -0.000523685361, 0.00835786, 0.0182494018, -0.019403182, 0.0138172032, 0.00110101444, -0.0111789899, -0.0124523677, 0.027352998, 0.0331218913, -0.000251069985, 0.0112704486, 0.00427038828, 0.0239620134, 0.0129166935, -0.00900510233, 0.0123257339, -0.0105317486, -0.0343319513, -0.00141320308, -0.00772468932, 0.00332942558, 0.00189951377, 0.0102362689, -0.00901213754, -0.00385179184, 0.0134935826, 0.0034490244, 0.00491411239, -0.00304449839, -0.00472767884, 0.00398194371, -0.010946827, 0.0181649793, -0.00225127558, 0.0108272284, -0.0198534355, -0.00745031517, 0.0107005937, -0.00423169462, 0.00730257528, 0.0294635687, 0.0237087458, -0.00469953753, 0.00497391215, 0.0135006178, 0.0280987322, 0.00666236877, -0.000111574445, -1.80827556e-05, -0.0267901793, 0.0363581, 0.00186257879, -0.00146244967, -0.0016682304, -0.0144925863, -0.00455531524, 0.00134197134, -0.00201735389, 0.0107217, 0.00685935514, 0.0210916381, -0.0085056005, 0.00556487171, 0.0215841047, 0.00280354149, -0.0115518579, 0.00581110502, -0.0147739956, 0.0211901311, 0.0124805085, -4.9493985e-05, 0.0124171916, 0.00109485863, -0.00394325, 0.0172644686, -0.00861112867, 0.00601160945, 0.02505951, -0.00885736197, -0.0157870706, 0.00690860162, -0.01967052, -0.00577944657, 0.00675030891, -0.00321158534, 0.00434074085, 0.00859705824, 0.0101096341, -0.00135692116, -0.00775283, 0.029744979, -0.00522718, 0.0531582423, 0.0152101805, -0.0165609457, 0.00945535768, -0.00411561318, 0.00828047283, 0.0142674586, -0.0116081396, 0.0119528659, 0.0183478966, -0.00615231413, -0.036752075, -0.00756287901, 0.00790760573, 0.00187137281, 0.0179257821, 0.00974380225, -0.00994782429, 0.0101166693, 0.0121357823, -0.0139297675, -0.0186433755, 0.00985636562, -0.00345254201, -0.00733775133, 0.0221891347, -0.00478396052, 0.010341797, 0.0213308353, 0.0160121974, -0.00587794, 0.0100181764, 0.0108342636, 0.00819605, 0.023174068, 0.0217529498, -0.00847042445, -0.00264524878, 0.0176303014, -0.000314826815, -0.00381309795, 0.0177710056, -0.0262977127, 0.0108835101, 0.0448566638, -0.0175458789, -0.0227941647, -0.0275499839, -0.000619540457, 0.0149428416, 0.000415738468, 0.00968048442, -0.00821012072, -0.00045289332, -0.00949756894, 0.0170674827, -0.000444978679, 0.0138031328, -0.0122764874, 0.0237368867, 0.0192906167, 0.024792172, 0.00323972618, 0.0185167417, -0.00932872295, -0.00962420274, 0.00346133625, 0.00139737374, 0.0197690129, 0.0103699379, -0.0137327807, 0.00660608662, -0.00319575588, -0.0255238358, -0.000123226564, 0.0219921488, -0.0174333155, -0.00914580654, 0.0129377991, -0.0106724529, -0.0141197192, 0.0292103011, -0.00522366259, 0.0192765463, 4.1222087e-05, -0.0219499357, -0.00624377187, -0.0177710056, 0.0075347377, -0.000824441726, -0.0140141901, -0.0110453209, -0.0167438611, -0.00926540606, 0.0173207521, 0.00613120804, -0.0155056603, -0.00476989, -0.00778097101, -0.000467403501, -0.00336987805, -0.0179117117, -0.00454828, -0.0191077013, 0.00538195577, 0.00802720431, -0.013338808, -0.0160403382, -0.00321334414, 0.0132684549, 0.0107357707, -0.00977194309, 0.0132614197, 0.00974380225, -0.00509351073, -0.0154071674, -0.006989507, 0.000361655111, -0.0200504232, 0.00251861452, -0.0375118777, 0.017953923, 0.0163358189, 0.00448496314, 0.00120126654, 0.0168282855, -0.0122553809, 0.00342616, -0.00198041904, -0.00432667, -0.027113799, -0.00774579495, 0.00523773348, 0.0161529016, 0.019572027, -0.00010228574, 0.0212464128, -0.00248519704, -0.0144222341, 0.00721815228, 0.00538547337, 0.0069015664, 0.00178167352, 0.00937093422, -0.00692619, -0.015899634, -0.0143237403, 0.00640206505, 0.014281529, -0.0163217485, -0.0124805085, -0.00709503563, -0.00707393, 0.0119036194, -0.00530105038, 0.0080201691, -0.0125367912, 0.0092935469, 0.00438998733, -0.0157448575, -0.0129729751, 0.00140528847, 0.0107498411, 0.00817494467, -0.0104051139, -0.0117980912, 0.015899634, 0.00350354752, -0.0291258767, -0.00457642088, 0.0106865233, 0.00555431889, -0.0125508616, 0.0281831566, -0.0108483341, 0.00446034, 0.0124805085, 0.0099056121, -0.0691704378, 0.015055405, 0.00951163936, 0.0238635205, 0.00711965887, -0.00754177291, -0.0139930844, -0.0167297907, 0.0198112242, 0.00113970821, -0.000328897295, 0.0176725127, 0.0080201691, 0.015125758, 0.0063493005, -0.0256082602, 0.0170252714, 0.00410857797, -0.00844931882, -0.00380606274, -0.00763323111, 0.00281409454, 0.0135639356, -0.000278771244, 0.00958902668, 0.00412264839, 0.00237263343, -0.0085056005, -0.00487541873, -0.0162795372, -0.00945535768, 0.0204866081, 0.00414727163, -0.00543472, -0.00735885696, -0.00646538194, -0.00448496314, -0.00589552801, -0.00783021748, -0.0328404829, -0.0198112242, 0.000886000053, 0.000773436273, -0.00510758162, -0.0129940808, 0.00926540606, 0.00796388742, -0.0182353314, -0.00404877821, -0.00367591088, 0.0054698959, 0.00606789114, -0.0121498527, 0.00157677231, -0.0412827656, 0.00364073459, -0.000988450716, 0.00102538569, 0.000307791575, 0.00875183381, 0.00576185854, -0.0355982929, 0.01967052, 0.00447792793, 0.00111772318, 0.0128182005, -0.0155760124, -0.00126546307, 0.00640558265, 0.0188825745, -0.00993375294, 0.0078865, -0.0212604832, 0.00332942558, 0.0125578968, 0.0190795604, -0.0178132169, 0.00124611624, -0.00225479319, -0.00963827316, 0.026846461, 0.00824529678, 0.00102274748, 0.0112352716, -0.00431611715, -0.00987747125, 0.0187840797, -0.00846338924, 0.0246092565, -0.00454828, 0.0134091601, 0.00432667, -0.0149006303, 0.0234836172, 0.0197408721, 0.00847746, -0.0163358189, -0.0103699379, 0.0136835342, -4.02052756e-05, -0.00592366885, 0.00388345029, 0.0223157685, 0.00523421587, 0.0174755268, -0.0229911506, -0.0144785158, -0.0130925747, 0.00885736197, 0.0061101024, 0.0158574227, 0.00129975984, 0.00644427631, 0.012494579, -0.00813273247, 0.0202333387, -0.0117347734, 0.00234449236, -0.0132614197, 0.0234273355, -0.0147739956, -0.00882218592, -0.0117769856, -0.00183443783, 0.0114041176, -0.00153983734, -0.00208418863, -0.000169175444, -0.0147317844, 0.0135920765, 0.0167016499, 0.00493170042, 0.00660608662, -0.0219077244, 0.00365128764, -0.0198815763, -0.0133950897, -0.00214574696, 0.00795685221, 0.00429852912, 0.00332414894, 0.00204549497, -0.015773, -0.0313771516, -0.0235539712, 0.00131383038, -0.0253831316, 0.0146614322, -0.00581814, 0.00245002098, -0.0179679934, -0.00756287901, 0.0034965123, -0.00514979288, -0.0171941165, 0.0105317486, 0.0230192933, -0.00479803095, 0.0102433041, -0.0157870706, -0.0109257214, 0.0182494018, -0.000504778174, -0.000496423861, 0.00321510294, 0.0112071307, -0.00348244188, -0.0106724529, 0.0134865474, -0.0264243465, 0.0235539712, 0.0226393901, 0.00738699781, 0.00418244768, 0.00342088356, 0.0102503393, -0.00157765171, -8.68411953e-05, -0.00358621171, 0.0114322584, 0.0135780061, 0.0106372768, -0.0026118313, 0.013810168, -0.000692091358, -0.024187142, 0.0105669247, -0.00208418863, 0.0154071674, -0.00204901258, 0.0225408971, 0.0186011642, -0.00820308551, 0.00813976862, -0.00429852912, -0.00532567361, 0.0186152346, 0.00487541873, -0.00380958035, 0.00670809764, -0.0177850761, -0.0018221261, -0.00212991773, 0.0204725377, 0.00943425205, -0.0118051264, -0.0237650275, 0.009983, 0.018727798, -0.0119739715, -0.0132121732, -0.0272404347, -0.00899806712, 0.0186996572, -0.00537492055, 0.0119036194, -0.0206273124, 0.017616231, -0.0111297434, 0.0118754786, 0.0181509089, 0.0032537966, 0.0148584191, -0.0152523918, 0.0278736055, -0.00591311604, -0.00626487751, -0.00257313764, -0.0157448575, -0.00629653642, -0.0093568638, -0.0275781248, 0.0107568763, -0.0157589279, -0.0183901079, 0.013001116, -0.0126563897, 0.02829572, -0.00345957745, 0.0304203611, 0.00147652021, -0.00536436774, -0.00391510874, 0.00920208916, 0.00664478028, 0.0159277748, 0.0185167417, 0.00220378768, 0.0122905578, 0.00149586704, -0.00495280605, -0.00223896396, -0.000940962811, 0.035401307, 0.00728146918, -0.00568798836, -0.0239620134, 0.0169971306, -0.015660435, 0.0219358653, 0.00281409454, -0.00411913078, -0.00399601413, -0.00253268494, 0.0189247858, -0.0170956235, -0.00183092023, -0.0209227912, -0.00520959217, 0.000434645684, -0.00817494467, -0.00501612341, -0.013036292, -0.00398897892, 0.00725332834, 0.00417541247, 0.00172978872, 0.00746438559, -0.027184153, -0.010004106, -0.0380184166, -0.0156322941, -0.00781614706, -0.00239725667, -0.0141337896, 0.00511813443, -0.00194876036, -0.0174895972, 0.00471009035, -0.015801141, 0.0120513598, -0.0088784676, 0.00220202887, -1.50117103e-06, -0.00912470091, -0.0148302773, -0.0160825495, -0.00550155481, 0.0116081396, -0.0317148454, 0.00433018804, 0.00417893, -0.0110312505, 0.00461863261, -0.0177710056, -0.00268921908, -0.0206273124, -0.0178272892, 0.00832268409, 0.00346133625, -0.0337972753, 0.0336002894, 0.0121709583, -0.0046784319, 0.00208946504, 0.00272087753, -0.0227097422, 0.0044392338, -0.000675382675, 0.00173418573, 0.01101718, -0.0140915783, 0.00400304934, 0.00173066813, 0.0129800104, -0.00725332834, -0.0106232064, 0.0215418935, 0.00284927059, -0.00273670675, -0.00975083746, 0.0245951861, -0.00353344739, 0.011720703, -0.0200644936, -0.013943838, -0.00658498099, -0.022231346, 0.0112985894, -0.00878701, 0.0073166457, -0.000363633764, -0.0232303496, -0.0106865233, 0.0113408007, -0.0151398284, -0.00967344921, 0.0117347734, 0.0121850288, 0.00755584333, 0.000896113168, -0.0149147008, 0.00194172515, 0.0187700093, 0.000566776202, -0.0182353314, -0.0384686701, -0.0113408007, 0.00846338924, -0.00217388803, 0.00770358369, -0.0116503509, 0.0103629027, -0.00589904562, 0.010137775, -0.000837193104, 0.0282394383, 0.00616990216, -0.0245248321, 0.000568974705, 0.0160966199, -0.00809052121, -0.0133458432, 0.0587020107, 0.0352887437, 0.0118825138, 0.00264349, 0.00440405775, -0.0174192451, 0.01175588, 0.0328686237, -0.0030532924, -0.00578296417, -0.00370405172, 0.00769654848, -0.00745735038, 0.0116503509, 0.00343671278, -0.000357258075, 0.00809052121, 0.0197408721, 0.00628950121, -0.0148302773, -0.00140001194, -0.0121006062, -0.0159137044, -0.00778097101, 0.0122061344, 0.000130151864, 0.00738699781, -0.0138312746, -0.0157870706, 0.00108078809, 0.00405581342, 0.0142463529, 0.000422553858, -0.00656035775, -0.0201207753, -0.00519200414, -0.0142674586, 0.012867447, 0.0177569352, -0.00322037935, 0.00231811032, 0.0221469235, 0.00880108, 0.0103206914, 0.0103629027, -0.00370053411, 0.00478747813, -0.00309198629, 0.00361259375, -0.00337867206, -0.00708096521, -0.0234273355, -0.00476285489, -0.0336002894, 0.00911063049, 0.00719704665, 0.014077507, 0.019234335, -0.0020243891, 0.0259600207, -0.00361611135, 0.00408043712, -0.0059553273, -0.0206976645, 0.00276660663, -0.0163921, -0.0117769856, 0.0178835709, -0.0326997787, -0.0117418086, 0.0285771284, -0.0130996099, -0.0173207521, -0.0168986376, 0.00785835832, 0.00287389383, -0.0209509339, 0.00158908393, -0.0107428059, -0.0177147239, 0.00601160945, 0.0225831084, -0.0201489162, -0.00666236877, 0.00873776339, -0.00484376, -0.0103347618, -0.0215559639, 0.0104825022, -0.0238635205, 0.0159840565, -0.00786539353, -0.00673272088, -0.000670985668, 0.011453364, -0.00726739876, -0.00697543658, 0.0119880419, -0.00496687647, -0.00186082, 0.0356545784, -0.00547693111, -0.00161282788, -0.00566688273, -0.0184886, 0.0251017231, -8.8105342e-05, -0.000334393553, -0.00364073459, -0.0112352716, 0.0109327566, -0.0058884928, 0.00704578916, 0.0368364975, -0.00581814, 0.00744328, -0.00307615707, 0.00710207084, 0.0107850172, -0.00694729574, 0.000959430297, 0.00557894213, -0.043252632, 0.011587034, -0.000352201518, -0.0185308121, 0.017616231, 0.014619221, 0.0102714449, -0.00979304872, 0.00338570727, 0.0124664381, 0.00309374509, -0.0146473618, 0.00607140874, 0.0243700575, -0.0253127795, 0.0104191843, -0.00488597155, 0.00275605381, 0.00685935514, 0.00740106823, -0.0224705432, 0.0150131937, 0.00529049756, 0.0126915658, -0.0104825022, -0.0229067281, 0.000114322589, 0.000429369247, 0.00165328046, 0.00669402722, 0.00350354752, 0.00386937987, 0.0139156971, 0.018966997, 0.0140212253, -0.0148443477, 0.0181368385, 0.00777393579, 0.00988450646, -0.00271736, 0.00856188219, 0.000337691337, 0.00821715593, -0.0426898114, 0.0107428059, -0.000311968761, 0.029238442, 0.0140423309, 0.00121709588, 0.0284504946, -0.00369701651, 0.0350354761, -0.0108553693, 0.00279650628, -0.00396435568, -0.0118684433, -0.00329073169, -0.0286193397, -0.0020666006, 0.00100076234, 0.011418188, 0.0383279659, 0.00452013919, -0.00624728948, -0.0185026713, -0.0193468984, 0.00866741128, 0.00562467147, 0.0164624527, -0.0265228394, -0.0050126058, -0.00853374135, -0.00214222935, -0.0291258767, 0.00892771501, -0.0090543488, -0.024623327, -0.0104543604, 0.00437943451, -0.000437283888, 0.016504664, 0.0086814817, -0.0155900829, -0.00977194309, 0.0133247375, 0.00436536409, 0.00225655199, -0.0258615278, -0.0108624045]
02 Sep, 2020
Implementation of lower_bound() and upper_bound() in List of Pairs in C++ 02 Sep, 2020 In this article, we will discuss the implementation of the lower_bound() and upper_bound() in a list of pairs. lower_bound(): It returns an iterator pointing to the first element in the range [first, last) which has a value greater than or equals to the given value “val”. But in List of Pairs lower_bound() for pair(x, y) will return an iterator pointing to the position of pair whose the first value is greater than or equals x and the second value is greater than equals to y.If the above-mentioned criteria are not met, then it returns an iterator to the index which out of the List of pairs. upper_bound(): It returns an iterator pointing to the first element in the range [first, last) which has a value greater than the given value “val”. But in List of Pairs upper_bound() for pair(x, y) will return an iterator pointing to the position of pair whose the first value is greater than x and the second value is greater than y.If the above-mentioned criteria are not met, then it returns an iterator to the index which out of the list of pairs. Below is the program to demonstrate lower_bound() and upper_bound() in a list of pairs: Program: C++ // C++ program to demonstrate lower_bound() // and upper_bound() in List of Pairs #include <bits/stdc++.h> using namespace std; // Function to implement lower_bound() void findLowerBound( list<pair<int, int> >& list, pair<int, int>& p) { // Given iterator points to the // lower_bound() of given pair auto low = lower_bound(list.begin(), list.end(), p); cout << "lower_bound() for {2, 5}" << " is at index: {" << (*low).first << ", " << (*low).second << " }" << endl; } // Function to implement upper_bound() void findUpperBound( list<pair<int, int> >& list, pair<int, int>& p) { // Given iterator points to the // upper_bound() of given pair auto up = upper_bound(list.begin(), list.end(), p); cout << "upper_bound() for {2, 5}" << " is at index: {" << (*up).first << ", " << (*up).second << " }" << endl; } // Driver Code int main() { list<pair<int, int> > list; // Given sorted List of Pairs list.push_back(make_pair(1, 3)); list.push_back(make_pair(1, 7)); list.push_back(make_pair(2, 4)); list.push_back(make_pair(2, 5)); list.push_back(make_pair(3, 8)); list.push_back(make_pair(8, 6)); // Given pair {2, 5} pair<int, int> p = { 2, 5 }; // Function Call to find lower_bound // of pair p in arr findLowerBound(list, p); // Function Call to find upper_bound // of pair p in arr findUpperBound(list, p); return 0; } Output: lower_bound() for {2, 5} is at index: {2, 5 } upper_bound() for {2, 5} is at index: {3, 8 } Learn C++ Online – Master everything from basics to advanced concepts. Apply your knowledge with practical exercises and boost your skills. Take the Three 90 Challenge: finish 90% in 90 days for a 90% refund. Start now and level up your C++ programming!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum/Algorithm for Dynamic Time out timer Calculation/Difference between Round trip time (RTT) and Time to live (TTL)/Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms/Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm/Round Robin Scheduling Algorithm with Different Arrival Time/Selfish Round Robin CPU Scheduling/Find the order of execution of given N processes in Round Robin Scheduling/Calculate server loads using Round Robin Scheduling/set::lower_bound() Function in C++ STL/Implementation of lower_bound() and upper_bound() in List of Pairs in C++
https://www.geeksforgeeks.org/implementation-of-lower_bound-and-upper_bound-in-list-of-pairs-in-c?ref=asr10
PHP
Implementation of lower_bound() and upper_bound() in List of Pairs in C++
What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, jQWidgets jqxTreeMap width Property, Round Robin Scheduling Algorithm with Different Arrival Time, Difference between Flow and TypeScript, jQWidgets jqxTree destroy() Method, jQWidgets jqxTree collapseAll() Method, Find the order of execution of given N processes in Round Robin Scheduling, jQWidgets jqxScrollView buttonsOffset Property, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, jQWidgets jqxListBox enableHover Property, Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm, Selfish Round Robin CPU Scheduling, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxSlider buttonsPosition Property, Difference between Round trip time (RTT) and Time to live (TTL), jQWidgets jqxSlider rtl Property, jQWidgets jqxTooltip opacity Property, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, jQWidgets jqxToolBar height Property, PHP, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, Node.js date-and-time Date.transform() Method, TypeScript Optional Parameters, jQWidgets jqxToolBar theme Property, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, Steps to Diagnose and Resolve a Slow Network, How to use Optional Chaining with Arrays and Functions in TypeScript ?, Calculate server loads using Round Robin Scheduling, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, jQWidgets jqxScrollView showButtons Property, Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms, jQWidgets jqxScrollView disabled Property, jQWidgets jqxSplitter destroy() Method, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, set::lower_bound() Function in C++ STL, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, jQWidgets jqxTree collapseItem() Method, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), jQWidgets jqxSortable opacity Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, jQWidgets jqxSlider height Property, jQWidgets jqxSwitchButton onLabel Property, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, jQWidgets jqxToolBar tools Property, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTree width Property, Implementation of lower_bound() and upper_bound() in List of Pairs in C++, jQWidgets jqxTree clear() Method, TLS Handshake?, Algorithm for Dynamic Time out timer Calculation, Adhoc TCP, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, jQWidgets jqxTabs position Property, Differences between Wireless Adhoc Network and Wireless Sensor Network, jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, Impact of Three-way Handshake and Slow Start Algorithm, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, How to Sort an Array Having Optional Properties in TypeScript ?
GeeksforGeeks
[-0.0182032958, 0.0143202934, -0.0136455875, 0.0250329748, 0.0238212571, -0.030017538, -0.00651986431, 0.025170669, -0.0136593571, 0.0210535843, -0.0333497599, 0.0124751786, 0.039077878, -0.021273898, -0.0131498845, -0.012192904, -0.00493637053, 0.038334325, -0.0357456543, -0.0353050306, -0.022582, 0.00587613974, -0.0155457798, 0.0205441136, -0.0216594432, 0.0156834759, -0.0216043647, 0.0114424648, 0.0151602337, 0.0228023138, 0.0242894199, 0.0129089179, 0.00446132198, -0.020213645, 0.00405167928, 0.0055525559, 0.0286681261, -0.00635807263, -0.0257489886, -0.00161705713, 0.0122617511, 0.0138245905, 0.0377284661, -0.0191809312, -0.0020550997, 0.0169089623, 0.0173633564, -0.00724276388, -0.0190707743, -0.0123512531, 0.0100723989, 0.0138314757, 0.0405925252, 0.00152497354, 0.0294116791, 0.0119725913, 0.0109880716, 0.0302929282, -0.0349470228, -0.0151740033, 0.0168538839, -0.0248539709, -0.00230122986, -0.05061673, 0.0317249559, 0.0093632685, -0.0351948738, 0.0681315511, -0.0044234558, -0.0280760359, -0.02343571, 0.0310640205, 0.06102648, 0.00520487595, -0.0371776856, -0.0075112693, -0.01780398, -0.012055208, -0.0139829405, 0.0279108025, 0.0105818706, -0.00436149305, 0.0100104362, -0.00135801814, 0.0195940174, 0.0155182406, -0.00639938097, -0.0427956469, 0.0261345357, 0.0356905758, -0.00660936628, -0.0233944021, 0.00804828, 0.00377284642, -0.00493637053, 0.0321655832, 0.0608612448, -0.000745274883, -0.00118848111, 0.0413636155, 0.00749061489, 0.0198418684, -0.00322206598, 0.0116421226, 0.0473395847, -0.0172669683, 0.0165234152, 0.0054424, 0.0357731953, -0.0117591638, 0.0328265168, 4.1550582e-05, -0.00473327, 0.0419970155, -0.0154080847, 0.00396561949, 0.0301827714, -0.0158762485, 0.0264512338, -0.0120896325, 0.0338179246, 0.0208057333, 0.0381415486, -0.0102445176, -0.0425753333, 0.00850955863, 0.0101137068, 0.0055663255, -0.0104028666, -0.0125233717, 0.044530604, -0.022513153, 0.00362138194, -0.0465409532, -0.0165784936, 0.0308437087, 0.0275252555, 0.0134252748, -0.00786927622, -0.0212463588, -0.026616469, -0.0303480066, -0.0100242049, 0.0227334648, -0.0305958577, -0.0103064803, -0.0181482174, 0.0220449902, -0.0404823683, -0.00396561949, -0.0454118513, -0.00842005666, 0.0638354644, 0.00132789742, 0.0517182909, -0.00786927622, 0.0194700919, -0.0148986131, 0.00558353728, -0.0207506549, 0.0306509361, -0.00345270522, 0.0223341491, 0.0169089623, -0.0184649173, 0.0432087295, -0.00461622933, 0.0243720375, -0.0590436719, 0.0361312032, 0.0382241681, -0.0256939102, 0.0243444983, 0.0180242918, -0.0346716344, -0.00979700871, 0.0363515131, 0.0142927542, 0.019291088, -0.0175423585, 0.00733915, 0.0044234558, 0.00589335151, -0.0139003228, 0.00403446704, -0.0255286768, 0.0273187142, -0.00383825158, 0.035084717, 0.0120620932, 0.00169106829, -0.00743553694, 0.0408679135, 0.027786877, 0.0262446906, 0.00655084569, -0.0241379552, 0.00397594692, 0.00980389304, 0.053453248, 0.0184236076, -0.0375632308, -0.00500177545, 0.0114631196, 0.0630092919, -0.00313944882, -0.0105267921, 0.012619758, 0.0119037442, -0.0359659679, -0.0224993844, 0.0366544425, 0.0247575846, 0.0171155035, 0.00382792461, 0.0182721429, -0.0265063122, 0.0559042208, -0.0222790726, -0.00858529098, -0.00320829637, 0.00661280844, 0.0418593176, -0.035112258, -0.0349470228, -0.0175148211, 0.00460934453, 0.0287507419, -0.0051291436, -0.0401243605, 0.0325511284, -0.00186749012, -0.00796566345, -0.0183547605, 0.00583138876, -0.0128744943, -0.0547475815, -0.0196904037, -0.00248023355, 0.0187953841, 0.00935638417, 0.0118968589, -0.0201447979, 0.0485237613, 0.00808270369, 0.0183823, -0.00850955863, -0.00670919521, -0.00460934453, -0.0325511284, 0.0384995565, 0.0146783, 0.0195251685, 0.0127230296, -0.0305683184, 0.01072645, -0.0052599539, -0.0206405, 0.00240105879, 0.017170582, -0.00695704622, -0.00102927105, -0.00493637053, 0.0332120657, 0.0146232229, 0.0119381677, 0.0704448298, 0.00134338811, -0.00281414413, -0.0371226072, 0.00752503891, 0.00366613269, 0.0136662414, -0.00879871845, 0.0283101182, -0.00710506877, 0.00279176864, 0.00449574599, 0.0197041724, 0.01469207, 0.0169640388, -0.00637184223, -0.00406200625, -0.00593121769, 0.0153116984, -0.0399315879, -0.0344237834, -0.00713260751, -0.00811712816, -0.0340382345, -0.0200208724, 0.0237937178, -0.0230914727, 0.00679525454, 0.0494050123, 0.0540866479, -0.0120689776, -0.047119271, -0.0908237, 0.00916361064, -0.00211878377, -0.0131085757, 0.0152703896, -0.00971439108, 0.0388851054, -0.0399866663, 0.00180036377, 0.0206405, 0.0114149265, -0.00414462341, -0.00763519481, -0.0483034514, -0.00368678709, -0.0174597427, -0.0011936446, -0.0287232045, 0.0356630385, 0.0253359042, 0.00588646671, -0.0156834759, 0.0210260451, -0.0101687852, -0.00833055563, 0.0373429172, 0.0488817692, -0.0503138, -0.0132669257, 0.0402895957, -0.0391054153, -0.0361312032, -0.0126128737, -0.0270295534, -0.0613569506, 0.00136662414, 0.00616185693, -0.053205397, -0.0299073812, 0.00811712816, 0.0158074014, 0.00235802913, -0.000957841752, 0.00383136701, 0.00327025936, -0.00271603628, 0.0155182406, -0.0259693, 0.00267472793, 0.0127023757, 0.0262584612, 0.048991926, 0.00117212976, -0.00773846637, -0.00197076146, -0.00320313289, 0.0455495492, -0.0235320982, -0.0186301507, -0.00797254778, 0.0144579886, 0.0308161695, 0.00295700296, 0.0342860855, -0.0534807891, 0.0480280593, 0.00179003668, -0.0157110132, -0.0100517441, 0.00312395813, -0.0134115051, -0.0236835629, -0.0311741773, -0.028282579, 0.0222790726, 0.00635463, -0.058162421, 0.00146387133, 0.0387749486, 0.0332120657, 0.0214115921, -0.0144717582, -0.0322206616, 0.0318626538, 0.0333497599, -0.0305958577, -0.012530257, 0.000712572306, -0.0239038747, 0.0221413765, 0.0141550591, -0.00404135184, -0.00183823, 0.020709347, 0.0167161878, 0.00841317233, 0.00957669597, -0.020034641, -0.0228436217, -0.0237248708, -0.0389126427, -0.0367921367, 0.038334325, -0.0116696618, -0.00742176734, -0.00575909857, 0.0041170842, 0.0148297651, -0.000167600781, -0.0203375705, -0.00705687515, 0.0370675288, 0.0272085574, -0.0030447836, -0.0316148028, 0.00963865872, 0.0360485837, 0.0234219413, -0.0278419554, 0.0404548272, 0.00892264396, -0.0266990848, 0.0195940174, -0.0259968396, -0.0117385099, -0.0222102236, -0.0311741773, 0.0209847372, -0.0259968396, 0.0172532, 0.016991578, -0.0165234152, -0.0386097133, 0.0183685292, -0.0117522795, 0.0294116791, -0.0231465511, -0.0376458466, 0.0589335151, 0.0102927107, -0.0190294664, -0.0374255367, 0.0087505253, 0.0499833301, 0.013927862, -0.0101894392, -0.013948516, 0.0195527077, -0.0266715456, 0.0135905091, 0.00382103981, 0.00442689843, 0.00784173794, -0.0171981212, -0.0193874743, -0.0133495424, 0.0452741571, -0.0136937806, 0.0356630385, -0.0289985947, 0.0490194671, 0.0200208724, -0.0205578823, 0.0256250631, -0.00519454852, 0.010210094, 0.00863348413, 0.02343571, 0.0125715649, -0.00980389304, -0.0203375705, 0.00994847342, 0.0222790726, -0.0203238, 0.0434290431, -0.0209158901, 0.0405374467, 0.0224443059, -0.002247873, 0.00598629564, -0.0234907884, 0.00296905125, 0.0337903835, -0.0368196778, -0.00596219907, -0.0320554264, 0.0181206781, -0.019043237, 0.0220312197, -0.00685377512, -0.0292464457, 0.00633741822, -0.0180656016, 0.00514635537, -0.0270984, -0.0337903835, -0.0228573903, 0.0197730195, -0.0457974, -0.0199520234, -0.00825482327, 0.0361036621, 0.047119271, -0.00932196, -0.0614120252, 0.0638905391, 0.0191533919, -0.0153943151, -0.0289435163, -0.0119243981, 0.00246130046, -0.0303755458, -0.00292946375, 0.00872987136, 0.02853043, 0.015573319, 0.00803451054, -0.0253221337, 0.0252945945, 0.0171981212, -0.0183685292, -0.00919115, 0.0231052432, 0.0137144346, 0.000420830736, 0.0329091363, 0.0158211701, 0.0291913673, -0.00235802913, -0.0176525153, -0.00146301067, -0.037948776, -0.0218109079, -0.000600264699, -0.00338557898, -0.038334325, -0.00988651, -0.0185337644, 0.0192635488, 0.0104854843, -0.0242618807, 0.0157110132, -0.0265476201, 0.00577631081, 0.0225682314, 0.0118968589, -0.032000348, 0.0159864035, 0.0261345357, 0.0158487093, -0.00736668939, 0.0167299584, -0.012619758, 0.0257765278, -0.00148194376, -0.027539026, -0.0054424, 0.0235596355, -0.0379763171, -0.00377284642, 0.00471261563, -0.0106644873, -0.00693983445, 0.0307060126, 0.01327381, -0.00587613974, 0.00422379794, -0.0534807891, 0.00446820678, 0.0157798622, -0.0301001556, 0.00664723245, 0.00892264396, -0.00107746443, 0.0426028743, -0.000554653176, -0.00395185035, 0.0186714586, -0.0112841157, 0.0327439, -0.0215630569, -0.00355253438, -0.00869544689, -0.0195527077, 0.00621005, -0.0247575846, -0.00331673143, -0.0345614776, -0.0258316062, 0.00849578902, -0.0110913422, 0.00631332165, -0.00523585733, 0.0454669297, 0.00858529098, -0.0154356239, 0.00492948573, -0.0159037877, 0.00716703152, 0.008654139, 0.00216869824, 0.0233806334, 0.030265389, 0.00176938239, 0.013700665, -0.0347267129, -0.0113873873, -0.0186989978, 0.0435942784, 0.00872298609, 0.00147678028, -0.00245613675, -0.0514704399, 0.0122755207, -0.0117729334, -0.0141275199, 0.00592777506, -0.0203238, 0.00191912579, -0.000944072206, -0.024743814, 0.00818597525, -0.00508439261, -0.0291913673, -0.0125646805, 0.0241241865, 0.0115870452, 0.021879755, -0.0232291687, -0.0384444781, -0.00375563465, -0.033873003, 0.0196353253, -0.0314771049, 0.00857840665, -0.001515507, 0.0186439194, 0.0112978853, -0.0191809312, 0.024385808, -0.00885379687, 0.0118624354, -0.0198005587, 0.0103409039, 0.00265235244, 0.0691780299, -0.0108916843, 0.00517389458, 0.0306784753, 0.00830990076, 0.0150500778, 0.0193874743, -0.0198694076, 0.0172118917, 0.0349470228, -0.00111447, -0.0314220265, -0.0243031904, -0.01072645, -0.00182101806, -0.0156283975, 0.020709347, 0.0195664782, -0.0292464457, 0.0142927542, 0.00621005, -0.00892264396, 0.0132325022, 0.00642003538, -0.0123305991, 0.00872987136, -0.0179279055, -0.0199520234, -0.0285028908, 0.0186714586, -0.00239761639, -0.00436837785, -0.00804139581, -0.035084717, 0.00729095703, 0.0354427248, -0.0284202751, -0.00890199, -0.0193186272, 0.0442552157, -0.034864407, -0.011786703, -0.00919115, 0.0265613906, -0.0152015425, -0.00993470382, 0.00339934835, -0.0135078924, -0.0272085574, 0.0398765095, 0.0132187326, -0.00461622933, 0.00130035833, 0.00058391341, 0.00538043724, -0.0163444113, -0.0198280979, -0.0142927542, -0.0227747746, -0.0170741957, -0.00886068121, 0.00208091759, -0.00799320173, -0.00758011686, 0.00749061489, -0.0305683184, 0.00283135613, 0.00784862228, 0.0036902295, -0.00341483927, -0.00533224363, 0.0106300637, -0.000987101928, 0.000175884008, -0.00368678709, 0.00929442141, -0.0438696668, 0.00504308427, 0.00546993874, 0.0114975432, -0.0070017972, -0.00466786465, -0.02541852, -0.0170053486, -0.0331019089, 0.00892264396, 0.00341483927, -0.0232016295, 0.0268505495, 0.026726624, 0.0175285898, 0.0151189249, 0.022692157, 0.0302929282, -0.0223341491, -0.0141412895, -0.00974881463, 0.0216594432, -0.000555083505, -0.00279176864, 0.0138452454, -0.0165784936, 0.0150225386, 0.024633659, 0.0011953658, -0.00521864556, 0.0243582688, -0.0143616023, 0.0376183093, 0.00808958896, -0.0393808074, 0.0196628645, -0.0114906589, 0.0205303431, -0.00439247442, 0.00857840665, -0.00793123897, 0.00777977472, 0.00985208619, 0.0208883509, 0.025556216, -0.0341483913, -0.0453292355, -0.0188917723, 0.0142789846, 0.00680558151, 0.0159313269, 0.0101619, -0.00740111293, 0.00609300938, -0.020709347, -0.0184511468, -0.0374806151, 0.00860594586, 0.00614120252, -0.0188504625, 0.0162204858, 0.00325476867, 0.0352224149, -0.0128607247, -0.0104441755, 0.0141275199, -0.0179416742, 0.0242343433, 0.0356354974, 0.0292464457, -0.0252945945, -0.0224580746, 0.000767650316, 0.00117987511, 0.0152979288, -0.00394496555, -0.00406889105, -0.0178728271, -0.0509196594, -0.0306784753, -0.0389677212, 0.0384169407, -0.0392431132, -0.00436837785, -0.00101894396, 0.00687442906, -0.010478599, -0.00330296182, 0.0291913673, 0.0200621802, 0.0310089421, 0.00297765713, -0.000648888294, -0.0171430428, 0.0226095393, 0.0178590585, -0.00730472663, -0.00631676381, 0.00866102334, 0.00979700871, -0.022692157, -0.0104579451, -0.0245097335, 0.0309538655, -0.055573754, -0.0284753516, 0.0142789846, -0.0162617937, -0.0162755642, 0.0264512338, 0.00702589378, -0.0145543749, 0.0381415486, 0.00255940808, -0.0158211701, 0.00172979501, 0.0177351329, 0.010299596, 0.0180105232, 0.0234632492, 0.0335700735, -0.00505341124, 0.00347163831, -0.0528749302, 0.00824105367, 0.0318351127, -0.00702589378, -0.0391880348, 0.0149949994, -0.00791058503, 0.00791058503, 0.0019139623, 0.0151602337, -0.0235871747, 0.00366957509, -0.0132669257, 0.0167574976, -0.0401794389, -0.00711883791, -0.000704826962, 0.0080276262, 0.0275941044, 0.018726537, -0.0170053486, 0.0369849131, -0.00117815391, 0.0120139, 0.00527716568, -0.0302929282, 0.00409643026, 0.00254219631, 0.0107471049, -0.0106162941, 0.00290192477, 0.012440755, -0.00575909857, -0.0242205728, -0.0156146279, 0.0191396233, 0.0230363943, -0.00451984257, -0.00530814705, -0.0107402196, -0.0255011376, -0.0305407792, -0.016000174, 0.0159726348, 0.00754569285, 0.0140999807, -0.0227885433, -0.016812576, 0.0267817024, 0.00572123239, -0.00660936628, 0.0165784936, 0.0075112693, -0.013094807, -0.0068985261, 0.0221551452, -0.000966447697, -0.0206680391, -0.00654740352, 0.00667821383, 0.0019036351, 0.0209021196, 0.0435392, -0.00905345473, 0.0241379552, 0.0296319909, 0.0111051118, 0.0536735617, 0.0105405618, -0.00950784888, -0.0178452879, -0.0423274823, 0.017982984, 0.00762831, -0.0320554264, 0.00937015377, 0.0282275, 0.0127023757, 0.0227747746, 0.00633397605, 0.0177626722, 0.0189881586, 5.06406104e-05, -0.00893641356, -0.0157110132, 0.0163444113, -0.0360761248, -0.00216009235, -0.023077704, -0.00201723352, -0.0111119971, -0.00630987901, -0.0193461645, 0.00360072753, -0.000317129103, -0.03249605, -0.045659706, -0.0339280777, -0.00132101262, -0.00291053066, 0.00744930655, -0.0273462515, -0.0140586728, -0.00897772238, -0.0164132584, 0.0273049437, -0.011628354, -0.000877806451, 0.00342516624, 0.00721522467, -0.00590367848, -0.0284202751, -0.026974475, -0.00828236155, -0.037205223, -0.00456459355, -0.03957358, 0.0141275199, 0.0178315192, 0.0201585665, -0.0144579886, -0.0162204858, 0.0114080412, -0.0126335276, -0.0146507611, -0.0306784753, -0.0293841399, 0.00546993874, 0.00742176734, 0.00476080924, 0.0156146279, 0.0503964163, -0.00265751593, 0.024248112, -0.0103064803, -0.0362964347, -0.0248952787, 0.0201861057, 0.0273462515, 0.0391054153, -0.015008769, 0.0125853345, 0.0119863609, 0.00439247442, -0.0154907014, -0.00371088367, -0.0177075937, 0.00956292637, 0.0223203804, -0.00498800585, 0.0198418684, -0.000590798154, 0.0256250631, 0.0488542318, 0.00095181755, -0.0199657939, -0.0076145404, -0.0271121711, -0.00373842265, -0.00385890598, -0.0105061382, 0.0128951482, 0.0167988054, 0.0104441755, 0.00797943305, -0.000886412396, -0.00555599853, 0.00640626578, -0.0199244842, 0.00371776847, 0.00593810249, -0.00498800585, -0.0185613036, 0.0111119971, -0.00514635537, -0.0196077861, 0.0528749302, -0.015573319, -0.0235871747, -0.0260106102, -0.00634774519, 0.0463481806, -0.00295872404, 0.0144304493, 0.00736668939, -0.0133288885, -0.00114028773, -0.00230811466, 0.0178315192, 0.00102754985, 0.0252945945, -0.0205028038, 0.0153805455, 0.00224443059, 0.00506718084, -0.0220725294, -0.0115113128, 0.0116421226, -0.00859906059, 0.00368678709, 0.00825482327, 0.0103202499, -0.00895018317, -0.0129708806, -0.00612054858, -0.0066678864, -0.00848890468, -0.0210398156, -0.00600006524, 0.00850267429, 0.0151602337, 0.0215630569, 0.0221413765, -0.00336836698, -0.00453705434, 0.00202067592, 0.0133357728, 0.0167850368, -0.00258350489, -0.0341483913, 0.0217696, 0.00601383485, 0.00932884496, 0.0240966473, 0.0286130477, -0.00740111293, 0.00479523279, -0.000842952344, 0.00735980459, 0.011222153, 0.00431674207, -0.0116008148, -0.00858529098, 0.0217007529, 0.0133082345, -0.0170328878, 0.0193323959, -0.0326888226, -0.00742865214, -0.0233944021, 0.0140449032, 0.0163031034, -0.00113598478, -0.0214529, 0.0334048383, -0.0091704959, -0.00234598084, -0.0220036823, -0.000721608521, 0.0163168721, 0.00464721071, 0.0192360096, -0.0208745822, -0.0150500778, 0.00855086744, 0.0614671037, -0.00419625919, -0.00505341124, -0.00712572271, 0.00325648976, -0.00150259805, -0.0164821073, -0.00296733, 0.00085500069, -0.00355597679, 0.00920491945, -0.0308712479, 0.00560074951, 0.0121722491, 0.0127230296, 0.0186714586, 0.0270984, -0.00228746026, 0.016743727, 0.0173771251, -0.00115233613, 0.00647855597, 0.0182170663, 0.00387956016, 0.0122961747, 0.00431674207, -0.00572123239, -0.00250777253, -0.0101137068, 0.00297593605, 0.0157385524, -0.0508095026, 0.0227747746, -0.0241792649, 0.019401243, 0.0277455691, 0.0144442189, 0.00508095, -0.0345339365, 0.0415839292, -0.0049260431, 0.0123650227, -0.00622726232, 0.000741832482, -0.00186060544, -0.0214942098, -0.00113082118, 0.017556129, -0.00356286136, -0.0216456745, -0.008833142, -0.00923245866, 0.00687442906, -0.00552501716, -0.0141412895, 0.0052392995, 0.0359935053, -0.0199107155, 0.0171568133, -0.0154080847, -0.0194976293, -0.00950784888, 2.75659186e-05, -0.0141550591, 0.0258316062, 0.0108710304, -0.00419281656, -0.0177075937, 0.00624103146, 0.0194976293, -0.0252119787, 0.024743814, 0.0421347097, -0.0193186272, -0.00848890468, 0.00613431772, -0.00552845933, -0.0186439194, -0.0287782811, -0.0134252748, -0.0019156835, 0.0174597427, -0.00394840771, -0.0155595494, -0.00778665952, -0.0153392376, -0.0182446036, 0.0148573043, 0.0202687234, -0.0160965603, -0.00976258423, -0.00379005843, -0.0353050306, 0.0122204423, 0.00295700296, 0.0225957707, 0.00462999847, 0.0345339365, -0.0114080412, 0.00830990076, 0.000743553683, 0.0164132584, 0.00935638417, 0.0174872819, 0.00740799773, -0.0311190989, 0.0216319039, 0.00522553, 0.0158211701, 0.0343962424, 0.0198556371, -0.0117385099, 0.0106644873, 0.0134183904, -0.0250054356, 0.0179416742, -0.00186232664, -0.0190707743, 0.0100104362, -0.00440968666, -0.00989339501, 0.0195527077, 0.0168676525, 0.0244546551, -0.0328265168, -0.0261896141, 0.0137901669, 0.00145612599, 0.0265063122, 0.0193599351, -0.0103271343, -0.0145956837, -0.00826170761, -0.0261345357, -0.022017451, 0.00328402873, -0.00963177439, 0.017308278, 0.00622037752, 0.00646134373, 0.0093494989, 0.0304030851, -0.00849578902, -0.0133288885, 0.00718080113, -0.00642692, -0.00393463811, 0.00289848237, 0.0322482, -0.00490194652, -0.0173908938, 0.00102324691, -0.0147884563, 0.0175010506, -0.00314117013, -0.00689508347, 0.0310640205, 0.00432362687, 0.0178590585, -0.0417216234, 0.000365107233, 0.016495876, 0.0352774933, 0.0293290615, -0.0333497599, -0.00460245972, 0.00102066516, -0.00505685341, -0.0405099057, 0.00772469677, 0.0307060126, -0.0249641258, 0.00168676535, -0.00549059315, 0.0314220265, 0.0112428069, 0.0141412895, 0.0144992974, 0.0153805455, 0.00642347755, -0.0212876666, -0.0128607247, -0.00216525584, 0.002867501, 0.00735980459, 0.00921868905, -0.00350950449, -0.0161929466, 0.00846136548, 0.0181482174, 0.00958358124, -0.00736668939, 0.020847043, -0.0231740903, -0.0200759489, 0.017418433, 0.00764207961, -0.00563173089, -0.0268505495, 0.0385270976, 0.000156413065, 0.00475736661, -0.00914984103, 0.0156421661, 0.022017451, -0.0226783883, -0.00569369365, 0.0224443059, 0.01270926, 0.017982984, -0.00716703152, -0.0199795626, -0.00294667576, -0.00718080113, -0.0253772121, -0.0143065238, -0.0173908938, 0.0260932259, 0.0147333788, -0.00912230182, 0.0162067171, 0.0188780017, 0.00317559391, -0.00163254782, -0.00491227349, -0.0076214252, 0.0213840529, 0.00737357419, -0.0118142422, 0.00517389458, -0.0457147807, -0.000540883688, 0.0144166797, 0.0149812298, 0.00937703811, -0.0181482174, 0.0162067171, -0.0452190787, -0.0164407976, 0.0211775098, 0.0434841216, -0.0185475331, -0.0173633564, 0.00369711407, 0.00613431772, -0.000119192344, -0.0189330801, -0.012440755, -0.0164545681, 0.0158900172, -0.0219210647, -0.0152428504, 0.00549403578, -0.0175285898, -0.00958358124, 0.0125715649, -0.00397250429, 0.00677115796, 0.00811712816, -0.0392431132, 0.000143289, 0.00383480941, 0.00277455687, 0.0143478326, -0.0148848435, -0.016991578, -0.0109467627, 0.0170191173, -0.00275046029, -0.0141275199, -0.0110913422, 0.0210398156, -0.00284856791, 0.00921868905, -0.000731935666, -0.0253496729, -0.00910164788, -0.006389054, 0.0232429374, -0.0120827472, -0.00281414413, 0.0239589531, -0.0159313269, 0.0198418684, 0.0177351329, 0.00957669597, -0.00867479295, 0.0316423401, 0.00405167928, -0.0209021196, -0.00187953853, 0.0237248708, 0.00911541749, -0.00596219907, 0.0350021, 0.0197179429, 0.00056153792, -0.00398627389, -0.00479523279, 0.0211086627, -0.0158624779, 0.00469540386, -0.0138452454, 0.0151740033, 0.0203788783, -0.00276250858, -0.00305511057, 0.00230811466, 0.00518422155, -0.00192256819, -0.01144935, -0.0322482, -0.0100104362, 0.00782796834, -0.0087505253, 0.00475048181, 0.0247988924, 0.00396561949, 0.0195802469, 0.0102238636, -0.0220725294, -0.0292189065, -0.00972127635, 0.0148573043, -0.0141275199, -0.0174459722, -0.0130397286, 0.010568101, -0.032000348, 0.0129777659, 0.0415013097, -0.00434083911, 0.01525662, 0.012440755, 0.00784862228, 0.000397809839, -0.0121034021, 0.013927862, 0.00372465327, 0.0107677588, -0.0118693197, 0.0319177322, -0.00326337456, -0.00897083711, 0.00212911097, 0.004743597, -0.00279521104, 0.0176387466, -0.00459901709, -0.00570402062, -0.0162755642, -0.0162204858, 0.0102789411, -0.0209434293, -0.0104441755, -0.0286956653, 0.0178865977, 0.0356354974, -0.0106920265, 0.0058658123, -0.0223754589, -0.00215665, -0.00128314644, -0.0341483913, 0.0113942716, -0.00276767206, 0.0132118473, -0.00528405048, 0.0137557434, 0.0302103106, -0.00734603498, -0.0238074884, -0.0400142036, 0.0110706883, 0.0346716344, -0.00663690502, -0.0159037877, 0.00618251134, -0.0197041724, -0.000456115115, -0.0215079784, -0.0473671257, 0.00546649657, 0.0109261088, -0.0103133647, 0.01469207, -0.00590023631, 0.0264236946, -0.00644069, 0.0144442189, 0.00242515537, 0.0283101182, 0.046403259, 0.0140724424, 0.0149812298, 0.0174459722, 0.000608010043, -0.0112703461, -0.00734603498, -0.0185337644, 0.00333566451, 0.0196077861, 0.0181206781, 0.0116972011, 0.00575221376, 0.000929442118, -0.00362482434, -0.016991578, 0.0304306224, -0.00903280079, 0.0122342119, 0.0177213624, -0.00314461254, -0.0229537785, 0.0257214494, 0.0181619879, -0.00147764082, 0.0264925417, -0.0220862981, 0.0205303431, -0.00770404236, 0.0186576899, -0.0155595494, 0.00478834799, 0.00248883944, -0.0139829405, 0.0187540762, 0.00821351446, -0.00755946245, -0.0146369925, 0.0158900172, -0.0115181971, -0.00151808874, -0.00625135889, 0.0129502267, 0.00791747, 0.0145268356, -0.00466442248, 0.0172256604, -0.00155853678, -0.0177351329, -0.0103546735, -0.00470228866, 0.00499833329, 0.000673845527, 0.011786703, 0.0279108025, 0.00263686175, 0.0164407976, 0.0156972446, 0.000802504423, 0.00244408846, -0.010299596, 0.00580729218, 0.00580729218, -0.0181757566, 0.00211362028, 0.0257902965, 0.0114286952, 0.00956292637, 0.00582794612, -0.0132600404, -0.0174872819, 0.0199795626, 0.0194838606, 0.026478773, -0.00466098, 0.00584171573, -0.0202687234, 0.0109398775, -0.00575221376, 0.0109467627, 0.000134145172, -0.00788304582, 0.0268780887, 0.0157110132, -0.00550092058, 0.00831678603, -0.00267300662, 0.00201723352, -0.00330640422, 0.0129571119, 0.00685033249, 0.0121860188, 0.0114906589, 0.0224993844, -0.0125646805, 0.0159450956, 0.00237696222, 0.00467819208, -0.0150913857, 0.00748373, -0.00599318044, -0.0081240125, 0.000996568473, 0.00906722434, 0.00736668939, 0.00106627669, 0.0186989978, -0.0149674602, -0.017060427, -0.0160965603, 0.00635118783, -0.00459557492, 0.0298523046, -0.0208608117, 0.0230914727, -0.0139898248, 0.0131705394, 0.00967996754, -0.00642003538, -0.0164683368, 0.0119863609, 0.00353532238, 0.00267128553, 0.00204133033, 0.00308092847, 0.00025344509, 0.00824105367, 0.00977635384, 0.00928753614, -0.0139760552, 0.0186439194, 0.000171903768, 0.0251569, 0.0337628461, -0.0140449032, 0.00914984103, 0.00541486079, -0.0145819141, -0.00930819102, -0.011717855, -0.00356630376, 0.00225647888, -0.0125853345, -0.00530126225, 0.00612054858, -0.0019174047, 0.00357318856, 0.00601727702, -0.00396906212, 0.00565238483, 0.000265063107, 0.0205716528, -0.00357318856, 0.0102789411, 0.00201034895, 0.0182721429, 0.00247506984, -0.00439935923, -0.000450951542, 0.00194666488, -0.00359728513, -0.0147471484, 0.00577631081, 0.0134183904, -0.0125096021, 0.00327370176, -0.00375907705, 0.0195802469, 0.0125853345, 0.0117522795, -0.00356630376, 0.0127712227, 0.0131223453, 0.0171843525, 0.00826859288, -0.00402414, -0.00689508347, 0.0205716528, 0.0110500343, 0.00261448626, 0.0152290808, 0.0170191173, 0.010389097, 0.0110569187, 0.014939921, -0.00204821513, 0.0016738564, -0.0205854215, 0.0154769327, 0.0020981296, -0.00906033907, -0.00409987243, -0.0180242918, 0.00961800478, 0.029769687, 0.00520831812, -0.0226095393, -0.0214391313, -0.00539420685, 0.0324685127, 0.0135010071, -0.0116490079, -0.0273600221, -0.00504652644, 0.0103477892, 0.00319280569, -0.0346991718, 0.00660592364, -0.00577975297, 0.0181895271, 0.00938392337, 0.00712572271, -0.0256388336, -0.0156008583, 0.0140793268, -0.0107608745, -0.0523792282, -0.000423627673, -0.00490538916, -0.0144166797, -0.00185199943, -0.000166525046, 0.000807237695, 0.00406889105, -0.00643036235, -0.00819974486, 0.00844759587, -0.0198005587, -0.00248023355, -0.0066885408, -0.00511881616, -0.0138727846, 0.0167988054, 0.00134683051, 0.0133357728, -0.0185337644, -0.00467130728, 0.00139588432, -0.0117798178, -0.0218246784, 0.00635463, 0.00777289, -0.0129364571, -0.00677115796, -0.0044234558, -0.0184236076, -0.00285373162, 0.00726341782, 0.016812576, -0.0112083834, -0.00290020369, -0.00679181237, -0.0158349406, 0.00424100971, 0.00610677898, -0.00167902, -0.00166266866, 0.0111395363, 0.0151189249, -0.00186404784, 0.0173908938, -0.0191396233, -0.00177110359, -0.0260243788, 0.0243307296, -0.00393463811, -0.0312017165, 0.00216697715, 0.00659903884, 0.00946654, -0.00819974486, 0.0103684431, 0.00828236155, -0.0153530063, 0.00444755284, 0.016991578, -0.00561796129, -0.00274529657, -0.00657494226, -0.0148573043, -0.0286405869, 0.0041033146, 0.0133701973, -0.00487785, 0.0359659679, -0.00520831812, 0.014939921, 0.0131292306, -0.0013623212, -0.00730472663, 0.0316148028, -0.015752323, 0.0160827916, -0.00884002727, -0.00881937332, -0.0102927107, 0.0161516387, -0.0154493935, 0.0127505688, -0.0068985261, -5.85271528e-06, 0.0134390444, 0.00313256425, -0.0148159955, -0.00802074093, 0.00848201942, -0.00456803571, -0.0120414393, 0.00519110635, 0.0223066099, -0.0105130225, -0.00819974486, -0.0288058203, -0.0160414819, -0.00932196, -0.00808958896, 0.0069880276, -0.0106438333, 0.0126335276, 0.0132187326, -0.000718166179, -0.0166473407, -0.00695360405, -0.0027280848, -0.00306543778, -0.00255424459, 0.0198280979, 0.0190019272, 0.0251844395, -0.00144493824, -0.0105887549, 0.0155182406, 0.00229434506, -0.00729784183, -0.0209709685, -0.0205578823, -0.00342860864, -0.00262825564, -0.0164132584, 0.0334048383, -0.00466098, -0.021879755, -1.01792202e-05, 0.00749061489, -0.0098796254, 0.0263273083, -0.0190570056, -0.0144166797, 0.0130879218, -0.0075112693, -0.0162204858, 0.0143202934, -0.0104028666, 0.00156628212, -0.00172979501, 0.00190019282, -0.00957669597, -0.00612743339, 0.00894329883, -0.00663002, 0.00532535929, -0.00249572424, 0.00692950748, -0.00220312201, -0.0171568133, 0.0205854215, 0.014760918, -0.00816532131, -0.00536666764, 0.00363859371, 0.0140862111, -0.00192601059, -0.0027280848, 0.00647167116, 0.00342172384, -0.00127281935, -0.00834432431, -0.0211224332, 0.00939769205, -0.0135423159, 0.0314771049, -0.00643724715, -0.0301827714, 0.0118899746, -0.0148986131, -0.00231327815, 0.000802934694, -0.00077754719, 0.000764638244, 0.00375907705, -0.0235596355, 0.0127230296, -0.0102651715, 0.0114218108, -0.00439247442, -0.00517733674, 0.00438903226, 0.0104372911, 0.0166335721, 0.0352224149, 0.0185337644, 0.0023683561, 0.00248195464, 0.000960423495, 0.00307232258, -0.013700665, 0.0134734679, -0.00495013967, 0.00387611776, -0.0257627591, 0.0215355176, -0.0188229233, 0.0233668629, -0.00182618166, -0.00435116608, -0.00038769783, 0.00837186351, 0.0081377821, 0.00122290489, -0.0063752844, -0.0258866847, 0.00213255337, -0.00951473322, -0.0188504625, 0.0204339568, 0.000839940272, 0.00578319514, -0.0136042787, -0.011291, 0.0193874743, -0.0168951917, -0.00265923725, 0.0110913422, 0.00416527782, -0.0197041724, -0.0214666706, 0.0034940138, -0.00908787828, 0.0163031034, -0.016385721, -0.00455082394, -0.00663346285, -0.0210811235, -0.00406200625, 0.0341759324, 0.0132806953, -0.0169778094, -0.00251809973, 0.0109674167, 0.0406476, -0.00580384955, -0.0216732137, -0.00280898064, 0.00470917346, -0.00456459355, 0.00238901051, -0.0103684431, -0.0163719505, -0.00920491945, 0.0101550156, -0.0230501648, -0.00715326192, 0.0148022259, -0.00440968666, -0.00443722541, -0.000758183771, -0.0111946138, -0.0128951482, -0.0262722299, -0.0216869824, -0.000186641439, -0.0107884137, -0.00156714267, -0.0143616023, 0.00105508894, 0.0216594432, -0.0181619879, -0.00793123897, -0.00460590189, -0.0184649173, 0.0109605324, -0.00298282062, -0.00840628799, 0.0500108711, -0.00796566345, -0.0063615148, -0.0155457798, 0.00058391341, 0.00879183412, 0.0172532, 0.00909476355, -0.0396286584, -0.0129433423, 0.00541141862, 0.00780731393, 0.0052392995, 0.00214976515, -0.00244408846, -0.00404135184, 0.0197730195, 0.00570746325, 0.0103064803, -0.00863348413, 0.0153392376, 0.000398885575, 0.0315321833, -0.00358695816, 0.00906722434, -0.0100242049, -0.00226508477, -0.0147196092, -0.00166094746, 0.00265407353, 0.00754569285, 0.0066954256, -0.014939921, 0.00990716461, 0.0230226256, 0.00681590894, 0.0258453749, 0.017060427, 0.00298626302, -0.0103271343, -0.00393119594, 0.00170741964, 0.00275562378, 0.00258866837, 0.000181047581, 0.0171843525, 0.0294116791, 0.010795298, -0.00337008829, 0.0131774237, -0.00380038563, -0.012192904, 0.00934261456, 0.00360417, 0.0198694076, -0.0094734244, 0.0228849296, 0.00625135889, 0.0187540762, -0.0025249843, -0.0125027178, 0.0190845449, 0.0327989794, 0.0255699847, -0.00224615168, -0.0173495859, 0.0170879662, -0.0114286952, -0.000908787828, -0.0109261088, -7.95512096e-05, 0.00866790861, 0.000836497929, -0.00132101262, 0.00403446704, -0.00329435593, 0.0376183093, 0.0228436217, 0.00661625108, -0.0245923493, 0.0190845449, 0.0384444781, 0.0239864904, 0.00530470489, -0.0150225386, -0.0085439831, -0.0148159955, 0.0149261523, -0.00095095695, 0.0225406922, 0.00277799927, 0.00653019128, 0.013115461, -0.00796566345, -0.0156283975, -0.0101137068, -0.00383480941, -0.0172394309, 0.0126472972, -0.000598973827, -0.0269056279, -0.00693983445, -0.0195802469, 0.00829613116, 0.00731161144, -0.00108607032, -0.0041170842, 0.000842952344, -0.017418433, -0.00233909604, -0.00532191666, -0.0108297216, 0.000254736, -0.00226508477, -0.00666444423, 0.0222790726, -0.00176421879, -0.0130121894, -0.0040138131, -0.00634086085, 0.00807581935, 0.00172118912, -0.018726537, -0.00106197363, 0.0185750723, 0.00879871845, 0.0273875613, 0.00286061619, -0.0118555501, 0.0109398775, 0.00108176738, 0.00343377236, 0.00937015377, 0.00590367848, -0.00791058503, 0.0163444113, 0.0135698551, -0.0312567949, 0.0176525153, -0.0188366938, 0.00304994709, -0.00386234839, 0.00720834, 0.0214115921, 0.014265215, 0.00478834799, -0.0117316246, 0.00715326192, 0.0266990848, -0.00115061493, 0.00097161124, -0.00214632275, -0.00923245866, -0.00149915565, -0.00651986431, -0.0288058203, 0.00351638929, -0.0280760359, 0.000603276771, 0.00570057845, -0.00203272421, 0.00908787828, 0.0119175129, -0.00330468314, 0.000892436539, -0.00623758929, -0.0171981212, -0.0297972262, -0.0125577953, -0.00656805746, 0.0237661786, 0.0097832391, -0.00659903884, 0.00961800478, 0.00226336368, -0.0138727846, -0.000938048062, -0.00417216215, -0.00906722434, -0.0103684431, 0.0144166797, 0.00923934299, 0.022582, 0.00680558151, 0.0171017349, -0.0169640388, 0.00281586545, -0.0191947017, 0.01469207, 0.0278419554, -0.0192635488, -0.0091567263, -0.000139846612, -0.0206955783, 0.0143616023, -0.0136042787, 0.00407921802, 0.0148435347, 0.0160965603, -0.0222377628, 0.00551813236, -0.00270226691, -0.0304306224, 0.00534945587, 0.0111739598, 0.0107746441, -0.00453705434, -0.00201034895, -0.0114768893, -0.0105956402, -0.014513066, 0.0162893329, -0.0101481313, 0.00872987136, 0.00054389576, -0.00246474287, 0.00358351576, -0.00746307615, -0.0141137503, -0.00780042913, 0.00363859371, -0.0105887549, 0.0302378498, 0.00621693488, -0.00183134514, -0.00296733, 0.00970062148, 0.00125388626, 0.00771781197, 0.0189606193, -0.00693639228, -0.0203651097, 0.0205303431, -0.0148022259, 0.00509127742, 0.00604481623, 0.0159037877, 0.00791747, 0.0235458668, -0.0236973315, 0.0100930529, 0.00738734379, -0.00863348413, -0.0228573903, 0.00824105367, -0.014017364, 0.0058726971, 0.0137970522, -0.0210398156, 0.024743814, -0.00472982787, -0.0125853345, -0.00503619947, 0.0271534789, 0.0378110819, -0.0140930964, -0.00700524, 0.00633741822, 0.039325729, -0.00241654948, -0.0246887356, -0.00703966338, 0.0046334411, -0.0139622856, -0.0203651097, -0.00760077126, -0.0147746876, -0.00422379794, 0.016812576, 0.00818597525, -0.000867479306, 0.00223238231, 0.0219623726, 0.0140793268, -0.00876429491, -0.0155457798, 0.00269193971, -0.0249228179, 0.0173633564, -0.0211912803, 0.00379350083, -0.0405374467, -0.00383480941, 0.0110362647, -0.0143065238, -0.00329263485, 0.0276629515, 0.0210260451, 0.00745619135, 0.00279004755, 0.0145681445, 0.0117591638, 0.011132651, 0.00663690502, -1.8139719e-05, -0.0055456711, 0.0167988054, 0.00447853422, 0.00339418487, -0.00307060126, -0.018230835, 0.00272636348, 0.0209021196, -0.0159864035, 0.00755257765, 0.00775912032, 0.0134459296, 0.00930819102, 0.0108848, 0.0268367808, 0.00370399887, -0.00834432431, 0.00478490582, -0.00626857067, 0.0163581818, 0.00985208619, -0.0080138566, -0.00508783478, 0.00881248806, -0.00713949231, 0.0238487963, -0.0108779147, 0.0066954256, 0.0164270289, -0.00323411427, -0.0303480066, 0.00181585446, -0.0102032088, 0.00087522465, 0.0056455, 0.0173358172, 0.00122290489, 0.00809647329, 0.00496046711, -0.00109467632, -0.00972816069, 0.0287782811, 0.00178831548, 0.0347817875, -0.00456803571, 0.000807667966, 0.00771092717, 0.00868167821, 0.0146369925, 0.00239245291, -0.00892264396, -0.00231499923, 0.00332189491, -0.0216043647, -0.0148573043, -0.00353188, -0.0075112693, -0.0106438333, 0.013452814, 0.0140655572, 0.010568101, 0.0141412895, 0.017308278, -0.00364892092, -0.0217420608, -0.00461622933, 0.0104028666, -0.00746996049, 0.0303204674, -0.0167988054, 0.0113529628, 0.0220449902, 0.0104166362, -0.000664809311, 0.0143753709, 0.00961800478, 0.00489161955, 0.0135354307, 0.0123994462, -0.0117660491, -0.0147884563, 0.00626168586, 0.00616185693, -0.00282619242, 0.0106851421, -0.0267954711, 0.00872298609, 0.024991665, -0.0265613906, -0.0158211701, -0.0212463588, -0.0108779147, 0.00840628799, 0.00390365697, 0.00740799773, -0.00753192371, -0.0158211701, -0.00858529098, 0.01469207, -0.00759388646, 0.00682967855, -0.0154907014, 0.0213840529, 0.0397112742, 0.030017538, -0.00134166691, 0.0135010071, -0.00425477931, 0.00232532644, 0.00861971546, 0.00409298763, -0.00436493568, -0.00558009511, -0.0186439194, -0.00724964868, -7.96587847e-05, -0.00280037476, -0.00941146165, 0.0160965603, -0.0147746876, 0.00985208619, 0.0138245905, -0.00291741546, -0.0105130225, 0.0156559367, -0.015008769, 0.0185475331, 0.00112479704, -0.0251018219, -0.0193599351, -0.00450951559, 0.0157110132, -0.0115181971, 0.00100173207, -0.0102032088, -0.00837186351, -0.00231327815, 0.00756634725, 0.0226508491, -0.0131085757, -0.00948031, -0.0145681445, -0.00219795853, -0.00105164654, -0.0299899988, 0.00197248277, -0.0118004726, -0.0105749862, 0.0101825548, -0.00629266724, -0.0216319039, -0.00211017788, 0.00138211483, -0.00763519481, -0.0118348962, 0.00701556681, -0.00340451207, -0.00803451054, -0.02343571, 0.00245269458, 0.00160673, -0.0171568133, 0.00877117924, -0.025804067, 0.0130672678, 0.0192360096, 0.00107230083, 0.00780042913, 0.0350021, 0.00440968666, -0.0133220032, -0.00314461254, -0.0128194168, -0.0267403945, -0.00707064476, 0.0154769327, 0.0113942716, 0.0252532866, -0.0118830893, 0.029273985, 0.00139760552, -0.00379694323, 0.00409643026, -0.000808958896, 0.005769426, -0.00374874985, 0.0108710304, -0.00224959408, -0.0112772314, -0.0140449032, 0.00497767888, 0.0101274764, -0.0061790687, -0.00858529098, 0.00429608813, -0.0111464206, 0.0131498845, -0.00683312071, 0.0318351127, -0.0124132158, 0.00497767888, 0.00315493951, -0.0194563214, -0.0127230296, -0.0151189249, 0.0019122411, -0.00185027823, 0.00207747519, -0.0040069283, 0.0134803532, 0.0115939295, -0.0192084704, -0.022017451, 0.0174322035, 0.0230088551, -0.00798631739, 0.0279108025, -0.0170879662, -0.00224443059, -0.0170879662, -0.00125216506, -0.0626788214, -0.0143616023, 0.0335149951, 0.0245372709, 0.0122961747, -0.00760077126, -0.0212325882, -0.0033442704, 0.0199244842, -0.00085758249, -0.00195354968, -0.000858012761, 0.00382448221, 0.0227059256, 0.0111739598, -0.0115181971, 0.0238212571, 0.00204649381, -0.016743727, 0.00317903631, -0.014265215, -0.0076076556, 0.014334063, 0.00201207, 0.000394367438, -0.00178487308, -0.00486063818, -0.0143065238, -0.00545272697, -0.0211086627, -0.0230088551, 0.0258316062, 0.0106920265, -0.0156008583, 0.0103409039, 0.00485375337, -0.0117522795, 0.00102496811, 0.000653621566, -0.0142514454, -0.0034974562, -0.00850267429, 0.000211383536, 0.00169709243, -0.01978679, 0.0125784501, -0.00456803571, -0.00833055563, -0.00703966338, 0.0112083834, -0.00570746325, 0.0164545681, -0.0103546735, -0.0101274764, -0.0181619879, -0.00596908387, -0.00510848919, -0.00682967855, 0.0131911933, 0.0241379552, 0.00687442906, -0.0344513208, 0.0150500778, -0.00246474287, 0.012213558, 0.0242205728, -0.00943211652, 0.0122617511, 0.0207781941, 0.0170328878, -0.0238350257, 0.00701900898, -0.0156834759, 0.00654740352, 0.00943211652, 0.0168401133, -0.0224029981, -0.00331673143, 0.0102651715, -0.0082341684, 0.0247575846, -0.0116972011, -0.00478146318, -0.00291741546, -0.00393808074, -0.00868856255, 0.0215630569, -0.00101894396, 0.0176938232, 0.0120070148, 0.00714637712, -0.00622037752, -0.0236422531, 0.0232842453, -0.00141137501, 0.0109261088, -0.0179003663, -0.00968685187, 0.00417560479, -0.000277972053, -0.00238728919, -0.0180242918, -0.00404823665, 0.00941834692, 0.0301001556, -0.0200071018, -0.0115044275, -0.0120001305, 0.00771092717, 0.00744930655, 0.0239451826, 0.000355855853, -0.00212566857, -0.00267128553, 0.000198582187, 0.0199795626, -2.80231106e-05, -0.00692950748, 0.00678492757, 0.023504559, -0.0132944649, -0.034368705, 0.00626857067, -0.00956292637, 0.00889510568, 0.00955604203, 0.0213427451, -0.00701212417, -0.0265613906, 0.00601727702, 0.0132049629, 0.0228436217, 0.0155457798, -0.0253909808, -0.0101068225, -0.0205165744, -0.0121171717, 0.00404479448, 0.00630987901, 0.0165922623, 6.40067228e-05, 0.0055663255, 0.00152755529, -0.0229537785, -0.0296044517, 0.00772469677, -0.0108779147, 0.00996912736, -0.00570402062, -0.00180552737, -0.0157110132, -0.00697770063, -0.00410675723, -0.00635807263, -0.0135560855, 0.0108779147, 0.0437044352, 0.0091704959, 0.0171843525, -0.0202687234, -0.0155182406, -0.00095095695, -0.00826859288, -0.0206267294, 0.00516012497, 0.021094894, -0.0146783, -0.00423412537, 0.00598973827, -0.0203100313, 0.016495876, 0.0080276262, 0.0119243981, 0.0206405, 0.00742865214, 0.00646134373, -0.00148452562, -0.00673329178, 0.00214460166, 0.0192497782, 0.0227747746, -0.0022547578, -0.00339934835, 0.00638561137, 0.0209296588, -0.0202687234, 0.0019105199, -0.011291, 0.000955259951, 0.00160156644, 0.0175698977, 0.0145406052, -0.00835121, 0.0262033828, -0.00755257765, 0.00800008699, 0.0127436845, 0.00853709783, -0.0106782569, 0.0159037877, -0.029273985, -0.00848201942, -0.0106989117, 0.0162342563, -0.000948375207, -0.0121584795, -0.0242756512, 0.00483654113, -0.000835207, -0.0248677395, -0.00375563465, -0.0272774044, 0.0135423159, 0.0185750723, -0.0142927542, 0.000725050922, -0.0265338514, 0.0166335721, -0.00754569285, 0.0014303081, 0.0151326945, 0.011132651, 0.0151877729, -0.0109261088, 0.014939921, 0.00506718084, 0.00405856408, 0.0119450521, -0.0151740033, -0.00619972311, -0.0161516387, -0.0156421661, 0.0203513391, -0.0240691081, -0.00727718743, 0.0127918776, -0.0168401133, 0.013025959, 0.0102032088, 0.0193599351, 0.00475048181, 0.0098658558, -0.00496046711, 0.0168951917, -0.0129226875, -0.00398627389, 0.0207644254, -0.025556216, -0.00775912032, -0.00418937439, -0.00269882451, 0.00524962693, 0.00121774129, 0.0189193115, 0.00672984915, -0.0237799492, -0.0186714586, 0.0196215566, 0.00908787828, 0.029521836, -0.00380038563, -0.000206972982, -0.00800008699, -0.00994158816, 0.0209021196, -0.0212601274, 0.0192084704, -0.0154907014, 0.0022220551, 0.00114028773, -0.00276767206, -0.00301552331, -0.0128469551, -0.00632364862, 0.00439935923, 0.0150638474, -0.00119794765, -0.00103529519, -0.034616556, 0.0063821692, -0.00935638417, -0.00579352258, 0.00438214745, 0.00521176076, -0.00306027429, -0.0108641451, 0.00859906059, -0.012461409, 0.00910853315, -0.0212601274, 0.0239451826, -0.00610333635, 0.0020688693, -0.00704999035, -0.0076145404, -0.00927376654, -0.0147471484, -0.0160139427, -0.00744930655, -0.0345064, 0.00171946792, 0.0056455, -0.0133495424, -0.000887273, -0.0131636541, -0.00465409551, -0.00292602135, -0.0216594432, -0.00612054858, -0.00465065287, -0.0355253443, 0.0374255367, 0.0207231175, 0.003814155, -0.00881937332, 0.00182962406, -0.019291088, -0.000726341794, 0.0055663255, -0.00442689843, 0.00735292, -0.0182859134, 0.00788304582, 0.000731075066, 0.0122686354, 0.00228918158, -0.0185613036, 0.00740111293, 0.00269538211, -0.00244064606, 0.00024290281, 0.012213558, -0.00717391632, 0.000417818665, 6.78793949e-05, -0.0028743858, -0.0176387466, -0.0269469358, 0.0175836682, -0.0186989978, -0.0052324147, 0.00370399887, -0.0177213624, -0.0132875796, 0.0263686161, -0.00689508347, 0.00994847342, 0.00696048886, 0.0181482174, 0.00480900239, -0.00785550661, -0.00307232258, 0.00307748606, 0.0120827472, 0.0179141369, -0.0239727218, -0.0368196778, -0.0164821073, 0.000903624285, 0.00492260093, 0.011538852, -0.0144304493, 0.00271259411, -0.0324409716, -0.000794328749, -0.0211086627, 0.00538043724, -0.00289159757, -0.0242618807, -0.00246990635, 0.0146232229, -0.00770404236, -0.00799320173, 0.0554360598, 0.0369022936, 0.0157936309, -0.00928065181, -0.00136662414, -0.0224029981, 0.013094807, 0.032000348, -0.00724964868, 0.00842005666, -0.0148435347, 0.0222515333, 0.00618251134, 0.00449574599, 0.00446476461, 0.00570057845, 0.0166198015, -0.0104372911, -0.00269882451, -0.0231740903, 0.00260415906, -0.00575221376, 0.000165126577, 0.00335287629, 0.0117729334, 0.0156697053, 0.00814466644, -0.00244064606, -0.010974302, -0.00376251945, -0.00605858583, 0.0209434293, 0.00727718743, 0.00439247442, -0.0243169591, -0.00382448221, -0.0179554448, 0.00368334469, 0.00322206598, -0.00238384679, 0.0082203988, 0.0114837736, 0.00570402062, 0.0176938232, 0.0146783, -0.00364547851, 0.0044303406, -0.00711883791, 0.0110087255, 0.0017487281, -0.000966447697, -0.0296319909, 0.010478599, -0.0179692134, -0.015573319, 0.00696048886, 0.019649094, -0.00186921132, 0.0110362647, 0.0321105048, -0.00775223551, -0.0148848435, 0.00993470382, -0.00608612457, 0.00632364862, 0.0124063306, -0.00788304582, 0.0123305991, -0.0224029981, -0.0133977355, 0.0216456745, -0.0144442189, -0.00426166411, -0.0141963679, 0.00184511475, -0.00962488912, -0.0150225386, -0.0141688287, 0.00360761234, -0.00852332823, 0.00107488257, 0.0175423585, -0.0320554264, 0.00210673548, 0.00686066, -0.00305166817, -0.0124682942, -0.0107539892, -0.00204477273, 0.00160156644, 0.00610677898, -0.0270984, 0.00104992534, 0.00234942301, 0.00143289, -0.0274701789, -0.00418248959, 0.00714637712, -0.000537871616, -0.019538939, 0.0296044517, 0.0144029101, -0.0069949124, 0.000318635139, -0.0148848435, 0.00921868905, -0.00234425953, 0.0218109079, 0.00384513638, -0.00140362966, 0.010299596, -0.0142376758, 0.000344237807, 0.0285579693, 0.00248367595, -0.00309641915, 0.00537355244, -0.00623758929, 0.0121102864, 0.00780042913, 0.00261448626, -0.00972127635, -0.0200621802, 0.00415495038, 0.0107333353, -0.0197730195, -0.00241999188, -0.00361449714, 0.00272292108, 0.00469884602, 0.0190707743, -0.0040000435, -0.021879755, 0.00535978284, 0.00169451069, 0.0198005587, -0.0186439194, -0.00326681696, -0.00237007742, 0.0058520427, 0.00554222893, -0.00765584921, 0.000334341, 0.0288884379, 0.0103133647, 0.0160552524, -0.0105543314, -0.0184098389, 0.00328575, -0.0180931389, 0.00433051167, 0.0200484097, 0.00203960901, 0.00998978131, 0.00817220565, 0.0244408846, 0.0107195657, -0.011628354, 0.0355253443, 0.0165371858, 0.0172394309, -0.00976258423, -0.00399315869, 0.0025318691, 0.0194150135, -0.0429608785, 0.00117987511, 0.0229262393, 0.0200759489, 0.010815952, 0.0147196092, 0.0139760552, -0.0045164004, 0.0273875613, -0.0170191173, -0.00832367, -0.00126249215, -0.0122892903, -0.00134080625, -0.0155870887, 0.00575221376, 0.00477457838, 0.0270295534, 0.0527372323, 0.0118486658, -0.0243444983, -0.0178728271, -0.0150500778, 0.0177626722, 0.0135285463, -0.00528405048, -0.0114424648, 0.00125646801, -0.00733226538, -0.00211189897, -0.0314220265, 0.00261276495, -0.0123994462, -0.0143202934, -0.0027177576, 0.0114631196, -0.00855775177, 0.00895018317, 0.00492260093, -0.0136455875, 0.00471605826, 0.0136249326, -0.00953538716, -0.00802074093, -0.0222102236, 0.0052461843]
07 May, 2020
Difference between std::set::lower_bound and std::lower_bound in C++ 07 May, 2020 Prerequisite: Random-access Iterators in C++, Bidirectional Iterators in C++. std::lower_bound in C++: The lower_bound() method in C++ is used to return an iterator pointing to the first element in the range [first, last) which has a value not less than the given value. This means that the function returns the index of the next smallest number just greater than that number. std::set::lower_bound in C++: The set::lower_bound() is a built-in function in C++ STL which returns an iterator pointing to the element in the container which is equivalent to K passed in the parameter. In case K is not present in the set container, the function returns an iterator pointing to the immediate next element which is just greater than K. If the key passed in the parameter exceeds the maximum value in the container, then the iterator returned points to the last element in the set container. Below is the difference between std::lower_bound and std::set::lower_bound: S.No. std::lower_bound() std::set::lower_bound() 1 Syntax: std::lower_bound(ForwardIterator first, ForwardIterator last, const T& val). Syntax: std::lower_bound(const value_type& val). 2 The std::lower_bound has Random Access Iterators and Non Random Access Iterators. The std::set::lower_bound has Bidirectional Iterators. 3 This function optimizes the number of comparisons which is efficient for Random Access Iterators. This function optimises the number of comparisons using Bidirectional Iterators 4 The running time complexity is O(log2N) for random-access iterators but for non random-access iterators it is O(N). The running time complexity is always O(log2N) due to it’s Binary Search Tree implementation. Below is the program with CPU execution time which will illustrate the running time of both functions. Program to illustrate of std::lower_bound(): // C++ program to illustrate // std::set::lower_bound #include <bits/stdc++.h> #include <sys/time.h> using namespace std; // Function whose time is to // be measured void fun() { // Initialise the set set<int> s; // Insert element in the set for (int i = 0; i < 10; i++) { s.insert(i); } // Use lower_bound() function // to find 5 set<int>::iterator it; it = lower_bound(s.begin(), s.end(), 5); } // Driver Code int main() { // Use function gettimeofday() // can get the time struct timeval start, end; // Start timer gettimeofday(&start, NULL); // unsync the I/O of C and C++. ios_base::sync_with_stdio(false); // Function Call fun(); // Stop timer gettimeofday(&end, NULL); // Calculating total time taken // by the program. double time_taken; time_taken = (end.tv_sec - start.tv_sec) * 1e6; time_taken = (time_taken + (end.tv_usec - start.tv_usec)) * 1e-6; cout << "Time taken by program is : " << fixed << time_taken << setprecision(6); cout << " sec" << endl; return 0; } Output: Time taken by program is : 0.000046 sec Program to illustrate of std::set::lower_bound(): // C++ program to illustrate // std::lower_bound #include <bits/stdc++.h> #include <sys/time.h> using namespace std; // Function whose time is to // be measured void fun() { // Initialise the set set<int> s; // Insert element in the set for (int i = 0; i < 10; i++) { s.insert(i); } // Use set::lower_bound() function // to find 5 set<int>::iterator it; it = s.lower_bound(5); } // Driver Code int main() { // Use function gettimeofday() // can get the time struct timeval start, end; // Start timer gettimeofday(&start, NULL); // unsync the I/O of C and C++. ios_base::sync_with_stdio(false); fun(); // Stop timer gettimeofday(&end, NULL); // Calculating total time taken // by the program. double time_taken; time_taken = (end.tv_sec - start.tv_sec) * 1e6; time_taken = (time_taken + (end.tv_usec - start.tv_usec)) * 1e-6; cout << "Time taken by program is : " << fixed << time_taken << setprecision(6); cout << " sec" << endl; return 0; } Output: Time taken by program is : 0.000039 sec Learn C++ Online – Master everything from basics to advanced concepts. Apply your knowledge with practical exercises and boost your skills. Take the Three 90 Challenge: finish 90% in 90 days for a 90% refund. Start now and level up your C++ programming!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum/Algorithm for Dynamic Time out timer Calculation/Difference between Round trip time (RTT) and Time to live (TTL)/Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms/Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm/Round Robin Scheduling Algorithm with Different Arrival Time/Selfish Round Robin CPU Scheduling/Find the order of execution of given N processes in Round Robin Scheduling/Calculate server loads using Round Robin Scheduling/set::lower_bound() Function in C++ STL/Implementation of lower_bound() and upper_bound() in List of Pairs in C++/Difference between std::set::lower_bound and std::lower_bound in C++
https://www.geeksforgeeks.org/difference-between-stdsetlower_bound-and-stdlower_bound-in-c?ref=asr10
PHP
Difference between std::set::lower_bound and std::lower_bound in C++
What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, jQWidgets jqxTreeMap width Property, Round Robin Scheduling Algorithm with Different Arrival Time, Difference between Flow and TypeScript, jQWidgets jqxTree destroy() Method, jQWidgets jqxTree collapseAll() Method, Find the order of execution of given N processes in Round Robin Scheduling, jQWidgets jqxScrollView buttonsOffset Property, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, jQWidgets jqxListBox enableHover Property, Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm, Selfish Round Robin CPU Scheduling, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxSlider buttonsPosition Property, Difference between Round trip time (RTT) and Time to live (TTL), jQWidgets jqxSlider rtl Property, Difference between std::set::lower_bound and std::lower_bound in C++, jQWidgets jqxTooltip opacity Property, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, jQWidgets jqxToolBar height Property, PHP, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, Node.js date-and-time Date.transform() Method, TypeScript Optional Parameters, jQWidgets jqxToolBar theme Property, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, Steps to Diagnose and Resolve a Slow Network, How to use Optional Chaining with Arrays and Functions in TypeScript ?, Calculate server loads using Round Robin Scheduling, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, jQWidgets jqxScrollView showButtons Property, Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms, jQWidgets jqxScrollView disabled Property, jQWidgets jqxSplitter destroy() Method, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, set::lower_bound() Function in C++ STL, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, jQWidgets jqxTree collapseItem() Method, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), jQWidgets jqxSortable opacity Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, jQWidgets jqxSlider height Property, jQWidgets jqxSwitchButton onLabel Property, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, jQWidgets jqxToolBar tools Property, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTree width Property, Implementation of lower_bound() and upper_bound() in List of Pairs in C++, jQWidgets jqxTree clear() Method, TLS Handshake?, Algorithm for Dynamic Time out timer Calculation, Adhoc TCP, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, jQWidgets jqxTabs position Property, Differences between Wireless Adhoc Network and Wireless Sensor Network, jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, Impact of Three-way Handshake and Slow Start Algorithm, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, How to Sort an Array Having Optional Properties in TypeScript ?
GeeksforGeeks
[0.00397900119, 0.00547636207, -0.0122371735, 0.0333956853, 0.00649205456, -0.0386451781, 0.0160835423, 0.0133889895, -0.0182056762, 0.0399854705, -0.00028511812, 0.0200346205, 0.0143244043, -0.0206349604, 0.00540306466, 0.00645017, 0.0320274681, 0.0176053345, 0.00875380263, -0.0368022695, -0.0109527241, 0.0212492626, -0.0129841091, 0.0226593651, -0.0338424519, 0.00961242896, -0.0181219075, 0.00707494328, -0.0121743474, 0.0343171395, 0.00714824069, 0.015497162, 0.00517270155, -0.0129492059, 0.00349035184, 0.0173679907, 0.0243626572, 0.0110853575, -0.0115111805, 0.0183592513, 0.00608019298, 0.0277971625, 0.0293468796, -0.014436095, -0.0063873441, 0.0289559588, 0.00450255396, -0.0073786038, 0.00827911496, -0.00936810486, -0.0246837679, 0.00752519863, 0.0473291725, 0.0281043127, 0.0571021587, 0.021137571, 0.020258002, 0.00572766736, -0.0371373445, -0.0198531225, 0.0292631108, -0.0252561867, -0.0102057885, -0.0411303081, 0.00430709403, -0.00416748039, -0.0397341661, 0.0646133944, 0.0104012489, -0.0314410888, -0.0362996608, 0.0438946672, 0.0486136228, -0.00534023857, -0.0211515334, -0.00673637912, -0.00749727571, 0.00424426794, -0.027657548, 0.0191131663, 0.00929131638, 0.0123488652, -0.0135425655, -0.0264289454, 0.0479993187, -0.00253399555, -0.0157065839, -0.0243207719, 0.0491441563, 0.0293468796, -0.0276017021, -0.0452908054, 0.0277971625, 0.00793007948, -0.0504565276, 0.0410744622, -0.00131848047, 0.00842571, -0.00428964244, 0.0373886488, 0.033060614, -0.000176044618, -0.0140242344, 0.0137170833, 0.0606483556, 0.0124675371, 0.0341496021, 0.0168653801, -0.012160386, 0.0101639051, 0.0109946085, -0.00454792846, -0.0157065839, 0.0519085117, -0.0365230441, 0.0137659479, 0.0319716223, -0.0332281515, 0.0319157764, -0.0122441547, 0.0181637909, 0.0209979564, 0.0353502855, 0.00573464809, -0.0406835414, 0.0208304208, 0.022687288, 0.0193644725, 0.0128793987, -0.00597897265, 0.00146420265, 0.000572854, -0.00010301992, -0.0222824067, -0.0237902384, 0.0338982977, 0.0187780932, 0.0173819531, -0.000627390749, -0.0424706, -0.0424147546, -0.0554547124, -0.0126839392, 0.0364951193, -0.0250467658, -0.0324742347, -0.0241253115, 0.0163348466, -0.0285929628, -0.0106176501, -0.0252422243, -0.000728174695, 0.0677407533, 0.0050645005, 0.0670147538, -0.0135286041, 0.00538212247, -0.00255842786, -0.0112319523, -0.0388964824, 0.0385334864, -0.00401041424, -0.00623027794, -0.000564564427, -0.00367883081, 0.0620444939, 0.0119230421, -0.000235598753, -0.0804177076, 0.0368022695, -0.00482366653, -0.00167449634, 0.00597897265, 0.0240555052, -0.0153854713, -0.0145617481, 0.046072647, 0.0034938422, 0.0170049947, 0.000239961693, 0.013102781, -0.0162650403, 0.00697721355, -0.00434199767, 0.00802082848, -0.00578002259, 0.0350152105, 0.0105408626, 0.0381984115, 0.0500376858, -0.0155250849, 0.00467009097, 0.0368022695, 0.0431407504, 0.0276715104, -4.72015563e-05, -0.0481389351, 0.00800686702, 0.0162510779, 0.0588054471, 0.0101778666, 0.00672939839, -0.0101220207, 0.011860216, 0.0549241789, -0.0334794559, 0.00952168, -0.0116856983, 0.00282020424, 0.022868786, -0.007567083, 0.0383101031, 0.0225476734, 0.0118253119, 0.0184849035, 0.0214726441, -0.0397620872, 0.0175774116, -0.0380029529, -0.0249211118, -0.00862814952, -0.0176751427, 0.0259821787, -0.0466031805, -0.0536118038, -0.00245895283, 0.0385334864, 0.0232457444, 0.00664912025, -0.0430849046, 0.032558, 6.90980596e-05, -0.0269315559, 0.00379401259, -0.0280065835, -0.0116438139, -0.0494233817, -0.0249350742, -0.00283242064, 0.0385614075, -0.00700513646, 0.0369139612, -0.0450674221, 0.0210398417, 0.00111429486, 0.00201916858, 0.0126490351, -0.0145617481, 0.00433850754, -0.0235249717, 0.00398598192, 0.0105408626, 0.0188199766, -0.0126211122, -0.0270153228, 0.00792309921, 0.0222126, -0.00272072922, -0.0113576055, -0.0210677646, 0.01546924, 0.0349035189, -0.00166577043, 0.021807719, 0.0258286037, 0.00950073823, 0.0653393865, 0.00178706017, -0.0201602727, -0.012676958, 0.0179822929, -0.014254597, -0.014163848, 0.00118497445, -0.0127188424, -0.014952668, -0.00558107253, 0.0338145308, 0.00910981838, -0.00194412598, 0.016041657, -0.00857230462, -0.00185512204, 0.0270711686, 0.0364113525, -0.0169491488, -0.00455141906, -0.0258146431, -0.0192667432, -0.0252282638, -0.0230363235, 0.0217797961, -0.0123209422, 0.00490743481, 0.0302404091, 0.0368301943, -0.00251305336, -0.0373886488, -0.0468824059, -0.0257308744, 0.00877474435, -0.0451232679, 0.0290397275, -0.0275458563, 0.00179753127, -0.0414374582, 0.00156105985, -0.0151481275, 0.0170608405, -0.00448161177, -0.0103454031, -0.036271736, -0.00216576341, -0.0469940975, 0.00489347335, -0.0419121459, 0.00387778087, 0.0180660617, -0.00747633399, -0.0135006811, 0.0131725883, 0.0123279225, -0.0180660617, 0.0209421106, 0.0356574357, -0.0250886492, 0.00412210543, 0.0342054479, -0.033060614, -0.0776812732, -0.0223242901, -0.0125443246, -0.0483623147, 0.00477480143, -0.00405229861, -0.0367185026, -0.0254935306, 0.0180660617, 0.0230782069, 0.00269804196, -0.00257413462, 0.00938206632, -0.00781140756, -0.00581841683, 0.00544494903, -0.00262823491, -0.00221113791, -0.0111830877, 0.0312456302, 0.0406835414, 0.00125216378, -0.00132197083, 0.00384287746, -0.0327813849, 0.0494513065, -0.0484181605, -0.0303241778, -0.0141010219, -0.011797389, 0.00787423365, 0.0231619757, 0.0291234963, -0.0412978455, 0.0210677646, -0.0120905787, -0.0124116912, 0.00452349614, 0.00727389334, 0.0179264471, 0.00262998021, -0.00480970507, -0.0306871738, 0.0327534638, 0.0166140758, -0.0154552786, 0.026596481, 0.0261078328, 0.020076504, 0.0150224743, 0.0036334563, -0.0229106694, 0.0408510789, 0.0199508518, 0.0021762345, 0.0261078328, -0.00556362094, -0.0304079466, 0.0116298525, 0.014436095, 0.0120835984, -0.00799290556, 0.00419540284, -0.00867701508, -0.00932622049, -0.0120905787, 0.00577304186, -0.0248373449, -0.0217239503, -0.0286767315, -0.04749671, 0.0250188429, 0.0192248579, 0.00173994037, -0.00636640191, -0.00820930768, 0.0190992057, -0.0159578882, -0.0332560726, -0.0250048805, 0.0178007949, 0.00143802504, -0.00192667427, -0.0295423381, 0.00772763928, 0.00501214527, 0.0366626568, -0.0376399532, 0.0153715098, -0.00420238357, -0.0316644721, -0.00726691261, -0.0412699208, -0.00140399404, -0.00718314433, -0.0217797961, 0.0354619771, 0.0105269011, 0.0292910337, 0.0171166863, -0.000927561, -0.0159858111, 0.0144640179, -0.0103035187, 0.0327813849, -0.0044885925, -0.00703305891, 0.0432803631, -0.00509242341, -0.0275458563, -0.0272247456, 0.0301566403, 0.0509032905, 0.0422751419, -0.0297657214, -0.00667704316, 0.0195459705, -0.0307430197, 0.0221427921, -0.00275388756, -0.0132423947, -0.0228408631, -0.0137799093, 0.00594057888, 0.0178985242, 0.0539468788, -0.0143662887, 0.0447044261, -0.029207265, 0.0395107828, -0.00119282771, 0.0125792278, 0.0227570944, 0.0232597049, -0.00724597042, 0.00886549428, 0.0152737796, 0.00363694667, -0.0103384219, -0.0160835423, -0.00538212247, -0.00577653246, -0.0504844487, 0.0256750286, 0.0196018163, 0.0150783202, 0.00110818679, 0.00366137922, 0.00059379614, -0.046435643, -0.0102755958, 0.0149387065, -0.0280345064, -0.031636551, -0.0567391589, -0.0012783414, -0.00350780366, 0.00405927934, -0.00331234396, -0.00484111812, -0.00128968502, -0.0386172533, 0.00681316713, -0.0222824067, -0.033060614, 0.00549381413, 0.034847673, -0.033758685, -0.0247675367, -0.0123209422, 0.0200206582, 0.00599293411, -0.0204395, -0.0437271297, 0.0627146438, 0.0178706013, -0.0168234967, -0.0225476734, 0.0178426784, 0.00448161177, -0.0208304208, 0.00839778688, -0.013647276, -0.0103105, 0.0317482427, 0.0116228722, -0.0154832015, 0.0061046253, -0.00678175362, -0.0339820646, -0.0164604988, 0.0115111805, 0.000214329426, -0.00191096764, 0.0301287174, 0.00803479, 0.0139334844, 0.00299821235, -0.012767707, -0.0188618619, -0.044676505, -0.00187431893, 0.0115530649, 0.00113785476, -0.0106734959, -0.00835590251, -0.0106176501, 0.0175215658, 0.0206908062, -0.0177589096, 0.0455141887, -0.00416748039, 0.00678873435, 0.00230014184, 0.0233574342, -0.0356015898, -0.00110382377, 0.0140102729, 0.02747605, -0.00502610672, 0.0242090803, 0.00730879698, 0.0279228147, 0.00435595913, -0.0443972759, -0.0161533486, 0.0274202041, -0.0304358695, -0.0197274685, 0.00522156665, -0.00222335407, 0.00324253691, 0.0510429069, 0.0335632227, 0.01249546, -0.00824421085, -0.0622120313, 0.00720408652, -0.000421023695, -0.0265545975, 0.00974506233, 0.0205093082, -0.0129143018, 0.0538072661, 0.00378005113, -0.00408720225, 0.0151900118, -0.0162371174, 0.0110923387, -0.0175774116, -0.00614301953, 0.00747633399, -0.0241392739, -0.00796498265, -0.03342361, -0.01249546, -0.0174517594, -0.0330885351, 0.000299952109, -0.00639083423, -0.00146420265, -0.00777650392, 0.0442018174, 0.014799092, -0.00714824069, 0.00378703186, -0.00523552764, 0.00861418806, 0.013828774, -0.0420796834, -0.00728785479, 0.0229944382, -0.0107712261, 0.0285929628, -0.0114692962, -0.00681665726, -0.0286488086, 0.0137031218, 0.0120137911, 0.0137938708, 0.00415002834, -0.0206628833, 0.0244603865, -0.0161673091, 0.005109875, -0.00977996644, 0.0078951763, -0.00177571655, 0.0134587968, -0.00468056183, 0.00455490919, -0.00587077206, -0.0113785472, -0.0183313284, 0.0332281515, 0.00440482423, 0.0339820646, -0.0311339386, -0.0311897844, 0.00491790567, -0.0326138474, 0.0302404091, -0.00159072783, 0.00908189546, 0.00199299096, 0.0137799093, 0.00547985267, -0.0346522145, 0.0501214527, -0.0108480137, 0.0045793415, -0.0449557342, 0.031999547, -0.00872588, 0.0634406358, -0.00644668, 0.0165582299, 0.00561946677, 0.0379191823, 0.0227152109, 0.024809422, -0.0342333727, 0.030994324, 0.0232876278, 0.0117206015, -0.0122581162, -0.0266662892, -0.00126525259, 0.00143627985, -0.0107014189, 0.00672939839, 0.0107991491, -0.0116019296, 0.0121115213, 0.019713508, -0.00954262167, 0.0132703176, -0.00320937857, 0.0163906924, -0.0095077185, 0.00565088, -0.044313509, -0.0386172533, 0.00551475585, 0.00753916, 0.00318843639, -0.0172144156, -0.0237902384, 0.00330361817, 0.00883059, -0.00408720225, -0.0135146426, -0.030268332, 0.0359925106, -0.0320553929, 0.00504355831, -0.00118759228, 0.0084536327, -0.0117624858, -0.0110923387, -0.0166838821, -0.00356888492, -0.0297936443, 0.0452349596, 0.00511685573, -0.0202440415, 0.0133331446, -0.00709239487, -0.000592050957, -0.0217937566, -0.00205756235, 0.00339785754, -0.0218635648, -0.0100312717, -0.0130608967, 0.0184150971, 0.0167676508, -0.00424077734, 0.00904001109, -0.0173679907, -0.00591265596, -0.0026020573, 0.00227047387, -0.0163348466, 0.0176192969, 0.0104431333, -0.0254656076, 0.0132703176, -0.0136333145, 0.0164325759, -0.0354899, 0.00657931343, 0.0106036887, 0.00366137922, -0.0252841096, 0.00620933622, 0.0149107836, -0.0116717368, -0.0118322931, -0.00802781, 0.00465612952, -0.00993354153, 0.0082302494, 0.00777650392, 0.0062442394, -0.000331801566, 0.00875380263, 0.0305754822, -0.00885851309, -0.0172423385, -0.0318878554, 0.00834892131, 0.00220066682, -0.00249560154, 0.0179124866, -0.00792309921, 0.00730879698, 0.0217937566, -0.0020819949, -0.0300449487, 0.0528299659, 0.0219473336, 0.0414374582, 0.00443623727, -0.00225476734, 0.0243207719, -0.00665959157, 0.00943093095, 0.00471546547, 0.00439086277, -0.00331408903, 0.0217239503, -0.00447114091, -0.00220764754, 0.032558, -0.0253818389, 0.00312561, -0.0442297384, 0.0182615221, 0.024474347, 0.0128235528, 0.0186384786, 0.0211794563, 0.0237623155, -0.036271736, -0.0278530084, 0.0089841662, -0.0258565266, 0.0045374576, -0.0150503973, 0.030631328, -0.00225825771, 0.0442576632, -0.0135355843, 0.0104361521, 0.0197414309, -0.0109248012, 0.0314410888, 0.0180381387, 0.0424985252, -0.0224080589, -0.034847673, 0.000535769039, 0.00840476714, 0.0326696932, 0.0014179555, -0.00177309872, -0.0436992049, -0.0375841111, -0.0403205454, -0.0278669689, 0.02499092, -0.0225476734, -0.0121394442, -0.00577653246, 0.0275598187, -0.0252841096, -0.0145757096, -0.0008036535, 0.0181777533, 0.0354619771, 0.0166280363, 0.00781838782, -0.0152877411, 0.000642661063, 0.0292631108, 0.00283067534, -0.00272771, -0.00695627136, 0.0111551648, 0.00791611802, 0.00166140753, 0.0066665723, 0.0130469352, -0.0284673106, -0.0311060157, 0.00934716221, 0.0016134152, -0.000756970083, 0.0480551645, 0.00318145566, -0.00674336, 0.0252980702, -0.00122773123, -0.0144640179, -0.00241008797, 0.00811855868, 0.00152179343, -0.0108898981, 0.0187501702, 0.0245581158, -0.000721193966, -0.0183592513, -0.0137450062, 0.0121115213, 0.0286767315, 0.00971015915, -0.0433641337, 0.0324742347, 0.00956356432, 0.0166280363, 0.029207265, 0.0166001134, -0.00954262167, 0.00107939134, -0.00199997169, 0.0232038591, -0.0407114662, -0.0153575484, -0.0126909195, -0.00650601601, 0.0376399532, 0.0113785472, -0.00117363082, 0.0279647, 0.00319018168, 0.0290955734, 0.0148130534, -0.00315178768, 0.0150922816, -0.0303241778, 0.00894926209, -0.0468265601, -0.0114204315, 0.0138985813, -0.0098846769, -0.0118881389, -0.00598944398, 0.0316644721, 0.0268198643, -0.0302962549, 0.0345405228, 0.00356190419, -0.0645017, -0.052131895, -0.00376958, 0.0193923954, 0.00236471347, -0.031999547, -0.0121464245, -0.0136751989, 0.016279, 0.0161114652, -0.0229246318, 0.00582539756, 0.0107084, 0.00100347621, 0.0114134504, 0.0232736673, 0.000893530087, -0.0363555066, -0.0071307891, 0.00565786054, -0.00909585692, 0.00810459722, 0.0370815, 0.024655845, 0.0129073216, 0.0256331451, 0.0203696936, 0.0351548232, -0.00528788334, -0.00564738922, -0.0282578897, -0.0434758216, 0.00793007948, 0.0286767315, -0.02341328, -0.0070365495, 0.0232876278, 0.0155948922, 0.0224359818, 0.025172418, -0.00210642745, 0.0287884232, -0.00430011377, -0.0215145294, 0.0099754259, 0.0331443809, -0.036271736, -0.0178706013, -0.0105408626, 0.00142057322, 0.0135146426, -0.00735766161, -0.0172842219, -0.0316086262, 0.000431494758, -0.0117136212, -0.0831541419, -0.0326138474, -0.0111202616, -0.022561634, 0.0135984113, -0.0178007949, 0.00204185583, 0.00324428198, 0.00200346205, -0.00967525505, -0.007567083, -0.00307849026, 0.0241392739, 0.00515525, -0.00618490344, -0.0356015898, -0.00349209714, -0.0053891032, -0.0269455165, -0.00400692411, -0.0156926215, 0.0138636781, 0.0273783207, 0.013556527, -0.000968572625, -0.00624773, 0.0300449487, -0.0157484673, -0.00491790567, -0.0323904641, -0.0257727578, 0.00587426219, 0.0344567522, -0.000387647218, 0.00068236381, 0.0361879691, -0.00235773274, 0.014163848, -0.0129282633, -0.0221846774, -0.00630706595, 0.0104431333, 0.0140312146, 0.0273364354, -0.00960544869, 0.0168653801, 0.0216541439, -0.00475385925, -0.0143244043, -0.0130678779, -0.0278250854, 0.0308267884, -0.006338479, -0.00740652671, 0.0204674229, -0.00726691261, 0.0234691259, 0.051405903, 0.00735766161, -0.0221427921, -0.0143942116, -0.026722135, -0.0412140749, 0.000357106619, -0.0119649265, 0.00760198664, 0.0369418859, -0.0039755106, 0.00101481983, -0.001046233, -0.000900510815, 0.00855834316, -0.0131376842, -0.0227291714, -0.0169351883, -0.0135635072, -0.0193086267, 0.0274202041, 0.00593010802, -0.0225755963, 0.0350431316, -0.0156646986, -0.0202161185, -0.0316086262, -0.0112110106, 0.0257587973, 0.0110155502, 0.0116577754, 0.0084536327, 0.00438388204, -0.0130050508, -0.0137519864, 0.0169351883, -0.00401041424, 0.0132982405, -0.00180625706, 0.00698070368, -0.0123069808, 0.000522680173, -0.0310501698, -0.00305754831, 0.0152877411, -0.0148688992, 0.00701909745, 0.00199822639, 0.012160386, -0.0142825199, -0.00337342522, -0.0112179909, -0.0247396138, -0.00329314708, -0.0019807748, -0.00190922245, 0.0253958013, -0.00279751699, 0.0113366628, 0.0143244043, -0.0119160619, 0.00165093644, -0.0139404656, 0.0133191831, 0.01498059, -0.0057137059, -0.0215284899, 0.0126420548, -0.0219333712, -0.0149107836, 0.0292351879, 0.035182748, 0.00621980708, 0.0187222473, 0.00385334855, 0.00202265894, 0.00573115796, -0.00482366653, -0.00530533493, -0.0317482427, 0.00233853585, 0.0103523834, -0.0162650403, 0.0147013618, -0.0236645862, -0.00149038027, -0.019504087, 0.0337028392, 0.0278948918, 0.0187920555, -0.0210817251, 0.00625820085, -0.00743444962, -0.00143453467, -0.0366905779, -0.00623027794, 0.0147851305, 0.0161533486, 0.0123139611, -0.00377307041, -0.00848853588, 0.0325300805, 0.0819813833, -0.0240973905, -0.00547636207, -0.0152318953, 0.00917962566, 0.00524250837, 0.0131725883, -0.00656535197, 0.0311060157, 0.006991175, 0.00546589121, -0.000458981289, 0.00681316713, 0.0202440415, 0.00820232742, 0.0310222469, 0.0266244039, 0.00263870601, 0.0025566828, 0.00150695944, -0.0278111231, 0.0171585698, 0.0164465383, -0.0153435869, 0.00656535197, 0.00753217936, -0.0175076053, -0.0171166863, -0.00373467663, -0.000197750254, 0.0258006807, -0.0178985242, 0.0162091944, -0.00952866115, 0.00674336, 0.0298774131, 0.0243766177, -0.00521109533, -0.00486555044, 0.0256052222, -0.0174377989, 0.017409876, 0.0111970492, 0.020774575, 0.000910109258, -0.00917962566, -0.0271130539, 0.0334794559, 0.0011343644, -0.00730879698, -0.00602783775, 0.0055740918, 0.0288163461, 0.00243103015, -0.0170468781, -0.00646762224, 0.0182754826, -0.0227291714, -0.0052494891, -0.000344890403, -0.0151062431, -0.0105338823, 0.0178007949, 0.00141708285, -0.0028341657, 0.00377656077, -0.00806969404, -0.00871889945, 0.0236925092, 0.0153296255, -0.0377516448, 0.0133191831, 0.046072647, -0.00584284915, 0.00836288277, -0.00568229286, -0.00357761071, -0.0150503973, -0.0203417707, 0.0111412033, 0.00917962566, 0.0189037453, -0.00261252839, -0.0032634791, 0.00828609522, -0.0177170262, -0.0125303632, 0.00241532363, 0.00706447242, -0.00430011377, -0.00606274139, -0.0128165726, -0.0515455157, -0.0159997735, 0.00283765607, 0.0185686722, 0.00296156364, 0.04749671, -0.000863862108, 0.016195232, -0.0189316683, -0.00268059038, -0.000113218288, 0.00753916, 0.00802082848, -0.0363555066, 0.0152039733, -0.00786027219, -0.0168653801, 0.0277552791, 0.026596481, -0.0241671968, 0.00272072922, 0.00345021277, -0.00129404792, 0.00836986396, 0.0180102158, -0.0126211122, 0.0104012489, -0.0184011348, -0.00188304484, 0.0249211118, 0.00263521564, 0.0093541434, -0.0342333727, -0.00323555619, 0.0058079455, -0.0107642449, 0.0318040848, 0.0283695795, -0.0407952331, -0.0132912602, -0.0129980706, -0.0337307602, -0.0109038595, 0.008886436, -0.0163627695, 0.030631328, -0.0145477867, 0.0171306469, 0.00975204352, 0.0334794559, 0.00974506233, -0.00395107828, -0.00227221916, 0.0159299653, 0.00901906937, -0.00749727571, 0.0393711701, -0.0109597053, -0.0227291714, -0.0202440415, -0.00996146444, 0.0163627695, 0.0112459138, -0.00883059, 0.0243626572, 0.0186384786, 0.00843967125, -0.0359925106, -0.0146315554, 0.0155250849, 0.0339541435, 0.0268757101, -0.0047678207, -0.00546240062, -0.0128793987, -0.00899114646, -0.0287884232, 0.0104152104, 0.0235110112, 0.0049563, 0.0245581158, -0.0152179347, 0.032362543, 0.0235528946, 0.00188304484, 0.00169631105, 0.00364741776, 0.02092815, -0.0160695799, 0.000898765633, 0.0069458005, 0.00733672, -0.0238879677, 0.0216960274, 0.0105338823, -0.015650738, 0.003738167, 0.0198670831, 0.00411163457, 0.00707843387, 0.0146036325, -0.0404043123, -0.0147013618, 0.0305196363, 0.0183871742, -0.0332002267, -0.0248652678, 0.0156646986, 0.00265441253, 0.0169212259, -0.00106455735, 0.00634196959, 0.0169631094, 0.000436730275, -0.0176611803, 0.0317203179, -2.33689971e-05, 0.0243207719, 0.00504006818, -0.0272247456, -0.0150364358, -0.00483762752, -0.0126699777, -0.0284114648, 0.00459679356, 0.0205093082, -0.00276784902, 0.000486904086, 0.0224080589, 0.00940300804, 0.0216541439, -0.00266313856, 0.0125233829, 0.0177589096, 0.0205093082, 0.00475385925, 0.00805573259, 0.0103872875, -0.0404880829, 0.01398235, 0.00517968228, -0.0104850167, 0.0166419987, -0.0099126, 0.0204813853, -0.0384776406, -0.0247675367, 0.016195232, 0.0275737792, -0.0169212259, -0.0113296825, -0.000427786261, 0.00847457442, -0.000113436436, -0.00620584562, -0.0127746882, -0.00105408626, 0.0163208861, -0.0169072654, -0.0211934168, 0.0196018163, -0.0224639047, -0.00520062447, -0.00704003964, 0.0155948922, 0.0211515334, -0.000193932676, -0.0399854705, 0.0132354144, 0.0155250849, 0.00783933047, 0.0216820668, 0.00973110087, -0.0115530649, -0.0198391601, -0.00982883107, -0.0159020424, 0.0024065976, 0.0205930769, -0.00202963967, -0.00120678917, 0.000834194128, 0.00152702897, -0.00602434762, 0.00356190419, -0.0141568677, 0.00312735536, -0.0150224743, -0.00695627136, 0.0290397275, -0.0108898981, 0.0121952891, 0.0289838817, 0.000503919553, 0.00438039145, 0.0181777533, -0.00601038616, -0.00856532343, 0.0107223615, 0.00532976724, -0.0161533486, 0.0102406926, 0.0200206582, 0.0220450629, 0.00125827186, -0.0269594789, 0.0160975028, 0.00188828039, -0.0209839959, 0.00438388204, -0.00480272435, 0.0117485244, 0.0241811574, 0.00965431333, -0.00105670409, 0.0103314416, -0.0137240635, 0.0160835423, -0.00271374872, -0.0328930765, -0.0164884217, 0.0186803639, 0.0135425655, 0.00332979579, 0.00438039145, -0.0125443246, 0.0121952891, -0.0148130534, -0.0201183893, -0.0233015902, -0.0135286041, 0.0168095343, -0.00903303083, -0.0111412033, -0.0179962553, 0.016893303, -0.0309105571, 0.00369628263, 0.0082302494, -0.0107712261, -0.00360902376, 0.0150503973, 0.00120068109, -0.00222335407, 0.000760024122, 0.0142196938, 0.0194901247, -0.0098776957, -0.00519364374, 0.0239438135, -0.00851645879, -0.0193365496, -0.00103837973, 0.00923547149, -0.00103837973, -0.00117799372, -0.00450255396, 0.0144500565, -0.00261252839, -0.0149107836, -0.0148409763, -0.0290397275, -0.0029755251, 0.00488300249, -0.0159718506, 0.0304079466, -0.000913599622, -0.00721106725, -0.00859324634, 0.00579398405, 0.00354445237, -0.0322787762, -0.00938904658, -0.0163767319, 0.0203696936, 0.000627390749, -0.00215703738, 0.0366905779, -0.00243103015, -0.0090749152, -0.0191271286, 0.0135425655, 0.0476921685, -0.0147013618, -0.0207326896, 0.000598159037, -0.0103942677, -0.0262753684, -0.0210956875, -0.0236227009, 0.0120766172, 0.0106316116, -0.0116089107, 0.00923547149, -0.00505402964, 0.0125722475, -0.0120626558, -0.00262823491, 0.00357063, 0.00623027794, 0.0251444951, 0.0284114648, -0.0169631094, 0.0258984119, -0.0233434737, -0.0249350742, -0.0098776957, 0.0121813286, 0.0241253115, 0.0156926215, 0.0167397279, 0.0172283761, 0.00256017316, 0.00332979579, -0.00194412598, -0.0431128256, 0.032697618, -0.0217239503, 0.013375028, 0.0228967089, -0.00660723634, 0.00674336, 0.0197833143, 0.0235249717, 0.00591265596, 0.0284114648, -0.00353572657, 0.00937508512, -0.0170189552, 0.008795687, -0.0105478438, -0.0230782069, 0.0277133938, -0.00234900694, 0.00871889945, -0.00257064425, -0.00245546247, -0.0165582299, 0.0215982981, -0.01953201, 0.00769971637, -0.0127746882, -0.00893530063, 0.0220869463, -0.00589171425, -0.0111970492, 0.0119370036, 0.00360204326, 0.000622155203, -0.0167955738, -0.0192807037, 0.00741350744, 0.0121952891, -0.00287255971, 0.0233434737, -0.00211515324, -0.00719710579, 0.0159578882, 0.00912378, -0.0137101021, -0.0134518165, 0.0144779794, -0.016530307, -0.0162650403, -0.00686203176, 0.0227989778, 0.020383656, 0.0195878558, 0.0121394442, -0.0113576055, -0.025353916, 0.0212353, 0.0124535756, 0.0128654372, -0.000698506657, 0.0100452332, -0.0237762779, -0.00335073774, -0.0134867197, 0.0189875141, -0.00864909217, 0.00220590248, 0.0345963687, 0.0182754826, -0.00665610097, 0.011343644, -0.00442576641, -0.0245860387, 0.0031133939, 0.0159578882, 0.0105338823, 0.0166280363, 0.00841174833, 0.0274062436, -0.0140521564, 0.00527043128, 0.00203313, 0.0108549949, -0.00124780077, 0.00722502824, -0.0100731552, -0.00626518158, 0.00873286091, 0.00920754857, 0.00394409755, 0.0148130534, 0.0271828603, -0.0180521, -0.0316086262, -0.0111830877, -0.00284289173, -0.0179962553, 0.0282439273, -0.00905397255, 0.012830534, -0.00542749744, 0.0134029509, 0.00918660592, -0.00645017, -0.0123698069, 0.00487253116, 0.010736322, 0.00965431333, 0.00373118627, -0.00142319105, -0.00875380263, 0.0155948922, 0.0116228722, 0.0126699777, -0.00417097053, 0.0130818393, -0.00151743053, 0.0229385924, 0.0347080603, -0.00143802504, -0.00538212247, 0.00659676502, -0.00828609522, -0.0090749152, -0.0136821792, -0.00366137922, 0.00287779514, -0.0115879681, 0.0018865352, 0.0199229289, 0.00381844491, 0.00431756536, -0.0109736668, -0.00651997747, 0.02250579, -0.00216925377, 0.0162510779, 0.00300868344, 0.0111202616, 0.0116228722, 0.027085131, 0.00608019298, -0.00413955748, 0.0126629965, 0.00571021577, -0.00771367783, -0.00263696094, -0.00119719072, 0.0180241764, -0.00581492623, 0.00356713962, -0.0126909195, 0.013465778, 0.0187780932, 0.0167257655, -0.00621980708, -0.000256540865, 0.0111063, 0.00245022704, 0.000997368, 0.00404182728, -0.00157065841, 0.00924245175, 0.0184290577, 0.00901906937, 0.0239019301, -0.00144238793, 0.00708192401, 0.0155390464, 0.0191271286, -0.00663864939, -0.00910283811, -0.015832236, 0.00905397255, -0.00683410885, -0.00549381413, -0.0143802501, 0.00246767886, -0.00930527784, 0.0150783202, 0.00872588, -0.0141010219, -0.0108759366, -0.0192248579, 0.0160975028, 0.00396154961, -0.00332630542, -0.0210538022, -5.64455331e-05, 0.00407673093, 0.00302264467, -0.0101010781, 0.0052494891, 0.00440133363, 0.00211864361, 0.0182475597, 0.0146734398, -0.00739256525, -0.0328093097, -0.0130608967, -0.00872588, -0.028844269, -0.00866305362, 0.000995622831, -0.00985675398, -0.00449906383, -0.00117799372, -0.00202265894, 0.00188828039, 0.0026491771, 0.0164325759, -0.00593708875, -0.0244464241, 0.00658629416, -0.00874682143, 0.000575035461, -0.0020837402, 0.0143523272, -0.00842571, 0.00788121484, -0.0217658337, -0.017409876, 0.00215005688, -0.01249546, 0.00505402964, -0.00317447516, 0.0124814985, -0.0157624297, -0.0105687855, -0.0148828607, -0.0148270149, -0.0138357552, 0.00225825771, 0.0107572647, 0.00454443833, -0.00152179343, -0.00744143035, -0.0104780365, -0.0034013479, -0.00994052179, 0.00441180496, 0.00986373425, 0.00532627711, 0.00587077206, 0.00831401814, 0.00469452329, -0.0158880819, -0.00630706595, -0.0165163446, 0.0214307606, -0.00141359249, -0.0299611799, 0.00696674222, 0.00609764457, 0.0123558454, 0.00279751699, 0.0160975028, -0.0036439274, -0.0238879677, 0.0082302494, 0.0246977303, -0.0124745173, 0.00839080568, -0.00358110107, -0.0207047667, -0.0324742347, -0.000376521726, 0.0116996597, 0.00283765607, 0.0208583437, -0.0177030656, 0.0129352445, 0.0125303632, -0.0132005112, 0.00674336, 0.0290676504, -0.023594778, 0.0151760504, -0.00550079439, -0.0114553347, -0.0186105557, 0.00419540284, 0.00725993188, -0.00112302077, 0.00522505678, 0.0157763902, 0.0295981839, 0.00536118075, -0.0174936429, -0.00508195255, 0.008886436, -0.00172510638, -0.00682014739, 0.0218496025, 0.00484460825, 0.00746935327, -0.0259402953, -0.0152179347, -0.0180102158, 0.0013062642, 0.00213958579, 0.000689780805, -0.0115181617, -0.00669100462, 0.0122720776, 0.00513081718, -0.0249211118, -0.0183871742, -0.000788383244, -0.0228269, -0.0134378551, 0.0289559588, 0.0157903526, 0.0305754822, -0.0114762774, -0.00162824919, 0.00762292836, 0.0192248579, -0.00438039145, -0.00502610672, -0.0389802493, 0.00668053376, -0.0126839392, -0.0262195226, 0.0333956853, 0.0129980706, -0.0214168, -9.09400296e-06, 0.010736322, -0.00556362094, 0.00971713942, -0.00323381112, -0.00619188417, 0.0199368894, 0.00360204326, -0.0131097613, 0.00582888769, -0.0180939846, -0.00440482423, -0.0102337115, -0.00428964244, -0.00195808732, 0.0130748581, -0.00321984966, 0.0260380246, 0.013375028, 0.00104797818, 0.012132463, 0.0128793987, -0.0165582299, 0.0100103291, 0.0144640179, -0.0154133942, -0.0141778095, 0.00156455021, 0.020774575, 0.021109648, -0.00209246599, 0.0174238365, 0.00491092494, 0.00248513045, -0.0138357552, -0.00400692411, 0.0251444951, -0.0026038026, 0.0258844495, -0.0197693538, -0.0217379108, 0.0174936429, -0.0159020424, -0.0106246313, 0.0129841091, -0.0104989782, -0.00553918863, -0.0254376847, -0.026722135, 0.00408720225, -0.0125652673, 0.0096892165, 0.00330536324, 0.00625820085, 0.0290118046, -0.00106804771, 0.0146315554, 0.0175355282, 0.0133331446, 0.00316400407, -0.00293189567, 0.00791611802, -0.00142929913, 0.0139404656, 0.00987071544, -0.00876776408, 0.00219368609, -0.00742048817, 0.0174657218, -0.00816044305, 0.0105897281, -0.0105269011, -0.00573115796, -0.0057521, -6.28263369e-05, 0.0128514757, 0.0218914878, -0.00785329193, -0.00994750299, -0.0116926786, -0.00748331426, -0.00961941, 0.00655488065, -0.00200171676, 0.00843967125, -0.0226314422, -0.0130888196, 0.000767877442, -0.00402786629, 0.00921452884, -0.00276959431, -0.0106385928, -0.0154413171, -0.00934018195, -0.0112249721, 0.00799988676, -0.0151900118, -0.00794404093, 0.00545192976, -0.0227152109, -0.0306034051, -0.0126560163, 0.0148409763, 0.00873984117, -0.00811855868, -0.0135076614, 0.0149666285, 0.0301845632, 0.00392664596, -0.0154413171, 0.00269804196, 0.00918660592, 0.00887945481, 0.0185547099, -0.00646413164, -0.00217099884, 0.00776952319, 0.00846061297, -0.018833939, -0.000593359815, 0.0103384219, 0.0201323498, 0.00446416, 0.00302788033, -0.00573464809, -0.0151760504, -0.0196576621, -0.0130539164, 0.00725993188, -0.00523552764, -0.0132772988, -0.0129701477, 0.0108480137, 0.00885153282, -0.0180102158, -0.0102895573, 0.000142340912, -0.0132005112, 0.00915868301, 0.00462122587, 0.00690391613, 0.0298774131, -0.00304184179, 0.00075129827, -0.0126420548, 0.00557060167, 0.00436643045, 0.0122092506, 0.0146036325, -0.0296261068, -0.00700862659, -0.00197379407, -0.0189595912, 0.015134166, 0.0220171399, -0.0114623159, -0.000524425355, 0.0323066972, 0.00654790038, 0.00558805326, 0.00908887666, 0.0204534624, -0.00310990354, 0.0117764473, -0.00923547149, 0.00762990909, -0.0014118473, -0.0113785472, -0.00485856971, -0.0116507951, 0.00355317816, -0.00401041424, 0.00332805049, 0.00348511641, 0.00443274714, 0.0189037453, 0.00297028944, 0.0105757667, 0.0116996597, 0.00693183905, 0.00284289173, -0.0208443813, 0.00502261659, 0.00490394421, 0.00747633399, 0.007748581, 0.00394409755, 0.0204953458, 0.0144779794, 0.00721804751, 0.00861418806, -0.0245301928, -0.0164325759, 0.0062896139, 0.0239996593, 0.00204534619, 0.015315664, 0.0135216229, 0.00970317796, 0.0164744612, 0.00825119205, -0.00310641318, 0.00706447242, 0.0187082868, 0.0103872875, -0.0075182179, -0.0174377989, 0.0035043133, -0.00802781, -0.0103244614, 0.0179683324, -0.00301740924, 0.0057521, -0.00632800814, 0.0021744892, 0.0174238365, -0.0108200908, 0.0034938422, 0.0147432461, 0.0153435869, -0.0162371174, -0.00584633928, 0.0193923954, 0.00821628794, 0.0173400678, -0.0137101021, -0.0125931893, -0.00676081143, 0.0104291718, 0.00636291131, 0.0265685581, -0.0176472198, 0.0068969354, 0.00256889896, -0.0202859249, -0.0142964814, 0.00431407476, 0.00376259931, -0.0153854713, 0.00355841382, 0.000734719099, -0.00791611802, 0.0100173103, -0.0272107832, -0.00503657758, -0.0114274118, 0.0157903526, -0.00450604409, 0.00871889945, -0.0145198638, 0.00363694667, 0.00610113516, -0.0028900113, -0.00130277383, 0.00640828628, -0.01498059, 0.0128793987, -0.00657931343, -0.0278809313, -0.00182545406, -0.00528090261, -0.00357063, -0.00408371165, 0.000400736026, -0.00501214527, 0.00461773574, 0.0085094776, 0.0302124862, 0.00837684423, -0.00271374872, 0.00659676502, -0.0128514757, -0.0108619751, -0.0101429624, -0.0037276959, -0.00148863508, -0.00203313, -0.000407716725, -0.0159160048, 0.0101010781, -0.0124605559, -0.0127397841, -0.00643969933, 0.0147851305, 0.00688995467, 0.0198531225, 0.00696325209, -0.00165529933, -0.00342054479, 0.0227570944, -0.00619188417, 0.00254970207, 0.00604179921, 0.00150957715, -0.00408720225, -0.0205791146, -0.00120155362, -0.00755312154, -0.029905336, 0.00499818381, 0.00316225877, 0.00659327488, 0.00896322355, 0.00790215656, -0.00455490919, 0.00886549428, -0.000113763657, -0.019504087, -0.0281880815, -0.0104082292, -0.0110295117, 0.0340379104, 0.015497162, -0.00913076103, 0.0226174798, -0.0118671963, -0.0111342221, 0.0105269011, 0.00598246325, 0.00961242896, -0.00169718359, 0.0224220213, 0.00419889344, 0.0141568677, 0.0061046253, 0.0146874012, -0.00909585692, 0.0197693538, -0.0346522145, 0.0129282633, 0.0167676508, -0.0225755963, -0.0288163461, -0.0161673091, -0.025353916, 0.0182894431, -0.00890737772, 0.0194622017, -0.00906095374, 0.00162563135, -0.020258002, -0.0126420548, -0.0126839392, -0.0175215658, -0.00848853588, 0.0107153803, 0.0090749152, -0.00486555044, -0.00954960287, -0.0255493764, 0.00255319243, -0.0199368894, 0.0124535756, -0.0127328038, 0.00716220215, 0.00297901547, -0.0143523272, 0.00578700332, 0.0113157211, -0.0179962553, -0.0147292847, -0.0185128264, -0.00596152106, 0.0300449487, 0.0106246313, -0.0055775824, -0.00145547674, 0.0104221907, 0.000887858274, 0.00633498887, -0.016013734, -0.0128933601, -0.0171585698, 0.0263032913, -0.00523901824, 0.0104501136, 0.00488649262, 0.00651648687, 0.00402786629, 0.0135076614, -0.0179264471, 0.0144500565, 0.00872588, -0.0126629965, -0.0245581158, -0.00137868896, -0.0012827043, 0.00442925654, 0.0217099898, -0.0213609543, 0.00871191826, 0.000316531281, -0.0090749152, -0.00880964845, 0.0179404095, 0.035210669, -0.00872588, 0.0150224743, 0.00328791142, 0.0231340528, 0.00553918863, -0.00696325209, 0.0194063559, -0.018833939, -0.0353782065, 0.00178007944, -0.008886436, 0.00364043703, 0.0198810436, 0.0204255395, -0.00757406373, -0.00202789437, 0.0184988659, 0.0113506243, 0.0159997735, 0.00891435891, -0.0047224462, 0.00671543693, -0.0127397841, 0.0172842219, -0.00564040849, 0.0107014189, -0.0248652678, -0.00542749744, 0.0186664015, -0.000522680173, 0.00558107253, 0.0301007945, 0.0152318953, -0.00816742331, -0.000267448224, 0.00927037466, 0.0213888772, 0.00322159473, 0.00137781643, -2.01376952e-05, -0.0176611803, 0.0383380242, 0.01100857, -0.0058079455, -0.00147990917, -0.0196576621, -0.0077066971, 0.00233330019, -0.0043978435, 0.0150783202, 0.00220764754, 0.0201323498, -0.0127328038, 0.0115600452, 0.0322787762, -0.0163348466, -0.0224778671, 0.00631404668, -0.012069637, 0.00583586842, 0.00976600498, -0.000656186137, 0.0045793415, 0.00109422533, -0.00135600171, 0.00404182728, -0.012069637, -0.0146036325, 0.0199229289, -0.0153994327, -0.0247396138, 0.00218321523, -0.00861418806, -0.0145059023, 0.0183871742, 0.0059021851, 5.17826411e-05, 0.00773462, 0.00553569803, 0.00663864939, -0.0141080022, 0.0292910337, -0.016711805, 0.0505402945, 0.0104152104, -0.00967525505, -0.0030680194, 0.00930527784, 0.01953201, 0.000398554548, -0.00739256525, 0.00388127123, 0.012223212, -0.014408173, -0.0270153228, -0.00434548827, -0.00358459144, -0.0024170687, 0.00252701482, 0.00739256525, -0.00337342522, 0.00970317796, 0.0127328038, -0.0127328038, -0.0226314422, 0.000854699931, -0.00664912025, -0.00352001982, 0.0273643583, -0.00490045408, 0.0145059023, 0.0179683324, 0.00738558453, -0.00336644449, 0.0125303632, 0.00565088, 0.00538561307, 0.0218635648, 0.0107433032, -0.015497162, -0.00306976447, 0.0136542562, 0.00980090816, 0.00104885071, -0.00134378544, -0.019015437, -0.00547636207, 0.0450395, -0.0196855851, -0.00834892131, -0.0179822929, 0.00651299674, 0.0135984113, 0.00170241913, 0.0110155502, -0.00399994338, -0.00233330019, -0.00292316964, 0.0235389341, -0.0103105, 0.0193644725, -0.0182894431, 0.0228269, 0.0319437, 0.0324742347, 0.00399994338, 0.0102895573, -0.000818051223, -0.0113715669, -0.0024170687, 0.0111412033, 0.0226035193, 0.000343363383, -0.00510289427, 0.00904699229, 0.00584284915, -0.0127537455, 0.00214656652, 0.0124465944, -0.0157484673, -0.00374514749, 0.0112668555, -0.00354794273, -0.0235249717, 0.0326417722, -0.0115042, 0.0195459705, 0.00510638487, -0.016013734, -0.0185686722, -0.0138846198, 0.00872588, -0.00057416287, -0.0144500565, -0.0131795686, -0.0190014765, -0.0119998297, 0.0152179347, 0.0153575484, -0.023050284, -0.00450255396, -0.00252876, -0.00255144713, 0.00345021277, -0.0238600448, -0.00295981835, -0.0186803639, -0.000581579865, 0.00286383368, -0.00678524422, -0.0149107836, -0.014617594, 0.00541353598, 0.00364043703, -0.0167257655, 0.0040243757, 0.00521109533, -0.0079859253, -0.0138985813, -0.00555315, 0.00233679055, -0.021626221, 0.00122162316, -0.0287046544, 0.00339611247, 0.0181498304, 0.00454792846, -0.00323555619, 0.0159020424, -0.00949375704, 0.00980788842, 0.00113698211, -0.00778348465, -0.0265545975, 0.00172248867, 0.00743444962, 0.0103244614, 0.0233155508, -0.000623464119, 0.0235249717, 0.00156542286, -0.018470943, -0.000102474551, 0.00718314433, 0.0179822929, 0.00156018732, 0.00203836546, -0.0124535756, -0.0111412033, -0.00631404668, 0.0035985529, 0.0172004551, -0.0112389335, -0.0127746882, -0.00994750299, -0.0147153232, 0.0234551653, 0.00549381413, 0.0167257655, -0.019196935, 0.00705749169, 0.00934018195, -0.0191829745, -0.0127537455, 0.00531929638, -0.00129666575, 0.00515175937, -0.0189316683, -0.0125513058, 0.0164744612, 0.00989863835, -0.0202859249, 0.00589171425, 0.0110225314, 0.018470943, -0.0112179909, 0.021319069, -0.0171027239, 0.0084187286, -0.000462907919, 0.015497162, -0.0652276948, 0.00224604155, 0.00539957453, 0.0284533482, 0.00964733306, -0.0133959707, -0.0228129402, -0.0131446654, 0.0152877411, 0.0101569239, 0.00492488639, 0.0113715669, 0.00695627136, 0.0253259931, 0.0181637909, -0.0250607263, 0.0187082868, 0.00313957152, -0.0132772988, -0.00799290556, -0.0086072078, -0.00755312154, 0.020565154, -0.00298948633, 0.00886549428, 0.00941696949, -0.00323730148, -0.00699466513, -0.00641526701, -0.0179264471, -0.00700164586, 0.012858456, -0.00308896136, -0.00198601023, -0.00643969933, -0.0112319523, -0.012223212, 0.000226872871, 0.000167318751, -0.0232736673, -0.0055775824, 0.00440133363, 0.00608717371, -0.00176524546, -0.0169491488, 0.0081395, 0.0110434731, -0.0195878558, -0.00706447242, -0.000562819245, 0.0018865352, 0.00588473352, -0.0135006811, 0.00783234928, -0.0327534638, 0.00693882, -0.00800686702, -0.0063873441, 0.00904001109, 0.0266523268, -0.000380448357, -0.0365230441, 0.0112319523, -0.00659327488, 0.00645366078, 0.0118183317, -0.0107084, 0.00287779514, 0.00657931343, 0.0239158906, -0.00603132788, 0.00221113791, -0.0140870605, 0.00197379407, 0.00337866065, 0.00369279226, -0.0208164584, 0.000175390189, 0.01100857, -0.0154832015, 0.026903633, 0.000932796567, 0.00757406373, 0.016195232, 0.00799290556, -0.00927735493, 0.0143802501, -0.00767877419, 0.0204395, -0.0149666285, 0.00870493799, 0.00984279253, -0.00797196385, 0.0271968227, 0.0155111235, 0.00936112367, -0.0278250854, -0.00769971637, 0.00914472155, 0.00126612512, -0.0145617481, 0.0103523834, 0.0207606126, 0.00953564141, 0.0200066976, -0.00949375704, -0.0280345064, -0.00976600498, 0.00727389334, -0.000343363383, 0.0181637909, -0.000714213238, 0.000219455877, 0.00612905808, -0.0185965952, 0.0169212259, -0.00818836596, -0.00432105549, -0.0143662887, 0.0131376842, -0.0155390464, -0.0221148692, -0.0169910323, 0.00583237782, 0.00542400684, 0.000407716725, -0.000333983044, 0.000604267174, -0.0171306469, 0.00745539181, 0.0134867197, -0.00102180056, 0.0162371174, -0.016013734, 0.00169980142, -0.0155530078, -0.00131237227, -0.00227047387, 0.00488300249, 0.00534023857, 0.00239438144, -0.00656186137, -0.0148409763, -0.0164744612, -0.0331443809, 0.00338564138, -0.0240415446, 0.02887219, 0.0142476168, 0.0120347338, -0.0188060161, -0.0118043702, 0.00556711107, -0.0107293418, -0.0170189552, 0.0068515609, 0.0249350742, -0.0065688421, 0.00295109255, -0.01249546, -0.0204953458, 0.0135216229, -0.00497375149, -0.0179124866, 0.0124116912, 0.0066630817, -0.0074274689, -0.00306452904, 0.00882361, -0.0248792283, 0.0190014765, 0.0129980706, 0.0174936429, 0.010464075, 0.00035318, 0.0035514331, 0.00641177641, 0.00281322375, -0.0168374572, 0.0227291714, 0.0130958008, 0.0107502835, 0.000406844134, -0.0095077185, -0.00172597903, -0.00877474435, 0.0029825056, -0.00241183327, 0.0145338252, 0.0049702609, 0.0187920555, 0.0159020424, -0.00728785479, 0.0147432461, -0.00235424237, 0.000407280429, 0.0141498866, 0.00193190982, -0.00568927359, 0.00202963967, -0.0249490347, 0.0114972191, -0.00670496607, 0.0149666285, 0.0103523834, -0.0205093082, -0.0344009101, 0.0128514757, 0.00234028092, -0.0155390464, -0.0111621451, -0.0294306464, -0.00558805326, 0.0130329737, -0.00262125419, 0.0151481275, -0.0267500561, 0.0178706013, -0.00747633399, 0.00515175937, 0.00799988676, -0.00868399534, 0.0120556755, -0.00843269, 0.0171585698, -0.0095984675, -0.00181672815, -0.00876776408, -0.000512209139, -0.0094099883, -0.00384985819, -0.0324463099, 0.0193923954, -0.0221567545, -0.0189735536, 0.00419191271, -0.0132772988, 0.0145059023, -0.00744841108, 0.0297098756, -0.00574162882, 0.00236820383, -0.0064780931, 0.0186803639, -0.000229490644, 0.006338479, 0.0181219075, -0.00759500591, -0.0035880818, 0.000447637634, -0.00746935327, -0.00806271285, -0.00252701482, 0.0217518732, -0.00202265894, -0.00865607243, -0.0260659475, 0.00946583413, -0.00280973339, 0.0226733256, 0.000544494891, -0.00830703788, 0.00643620873, -0.00732275844, 0.0169491488, -0.0201323498, 0.00285859825, -0.0269455165, 0.00674336, 0.000210948143, -0.00409767311, -0.00838382542, -0.0129561862, -0.00400692411, -0.00389872305, -0.000318276463, 0.00105670409, 0.00611160602, -0.0260659475, -0.010191828, -0.0309105571, -0.0156088537, -0.00511336559, -0.00119021, -0.0111202616, -0.00613254821, -0.00760198664, -0.0171166863, -0.00670147547, -0.0217239503, 0.00667355303, -0.0129492059, 0.00338389608, 0.00176350027, -0.00530882506, -0.0229385924, -0.0161673091, -0.00799988676, 0.00706098182, -0.0366905779, 0.00355492346, 0.01021975, -0.00427219085, 0.00667006243, -0.0205093082, -0.00701211719, -0.0161114652, -0.0205232687, -0.000855572522, -0.00551475585, -0.0536118038, 0.0236645862, 0.0204395, -0.00944489241, 0.00786725339, 0.00651299674, -0.0105408626, -0.00334724737, 0.00300344778, 0.00671543693, 0.0199089665, -0.00878172554, 0.0035985529, 0.00146594783, 0.00171987095, -0.0113366628, -0.010282577, 0.0113855284, 0.0127048809, -0.000340309314, -0.00624773, 0.0306592509, -0.00550777512, 0.00159858121, -0.00934018195, -0.00658280356, -0.0054833428, -0.0257448349, 0.0079859253, -0.00546589121, 0.00865607243, 0.0113994889, -0.018135868, -0.0126141319, 0.0156786609, -0.010464075, -0.00657582283, 0.0192807037, 0.0171725322, 0.00441878568, -0.00067058386, -0.00719710579, -0.00102092791, 0.0180381387, 0.0207885355, -0.0265825205, -0.0302404091, -0.0144221345, 0.0153854713, 0.00292666, 0.010373326, -0.00899114646, 0.0130888196, -0.0136263343, 0.0132284341, -0.00202265894, 0.0261776391, 0.00589869451, -0.0245720781, -0.00544843916, 0.0213330314, -0.00161603291, -0.0212911461, 0.0584703758, 0.0247535761, 0.00667006243, -0.00418842211, 0.000482104864, -0.0152737796, 0.00733672, 0.0393711701, 0.0128026111, 0.000559328881, 0.0030191543, -0.00180974742, -0.0143662887, 0.0137170833, -0.00982883107, -0.00501912599, -0.00355492346, 0.0137450062, 0.00544145843, -0.0125652673, -0.00403135642, -0.0150922816, -0.00643620873, 0.000330056413, 0.0117834285, -0.0022687288, 0.0102267312, -0.0182475597, -0.0140312146, 0.0115042, -0.00314306188, 0.0185826328, -0.00421634503, -0.00730181625, -0.025535414, -0.00764387054, -0.023050284, -0.000910981849, 0.0140381949, -0.000999985845, 0.00268408051, 0.0189177077, 0.00100173103, 0.015134166, 0.0102476729, -0.00603132788, 0.0161254257, 0.00135687436, 0.0118322931, -0.00480621448, -0.00842571, -0.0264289454, -0.00213435013, -0.0332560726, 0.0117415441, 0.00627565291, 0.024655845, 0.0217518732, 0.00984279253, 0.0372211114, 0.00282544, -0.00201393315, 0.00435595913, -0.00913076103, 0.00265441253, -0.0138566969, -0.00312037463, 0.0174936429, -0.0318878554, -0.0105687855, 0.0116647556, -0.0061046253, -0.00747633399, -0.0207326896, 0.00361600448, 0.00143627985, -0.0290397275, -0.0077974461, -0.00399994338, -0.010645573, 0.00164919125, 0.0203557331, -0.0127188424, -0.00424077734, 0.0111761065, -0.00474687852, 0.000229926925, -0.0207606126, -0.00277657504, -0.016013734, 0.0132074915, -0.0071307891, -0.00929131638, 0.00339785754, 0.00827911496, -0.0209421106, -0.00944489241, 0.0045374576, 0.0104780365, 0.000845101429, 0.0384776406, -0.0006736379, -0.0112947784, -0.00555664, -0.0177589096, 0.0220171399, -0.00404880801, -0.00134814845, -0.00481319521, -0.0137589676, 0.0142895011, -0.0147153232, 0.00350605859, 0.0285929628, -0.00150783197, 0.00343799661, -0.00480621448, 0.000882186461, 0.00604179921, -0.00309943245, -0.00995448325, 0.00539957453, -0.0332281515, -0.00206105271, -0.00259158621, -0.00216227304, 0.0205791146, 0.00904699229, 0.000664912048, -0.00865607243, -0.00512383645, 0.00309070665, 0.000912727031, -0.0178147554, 0.0129282633, 0.0140242344, -0.0270711686, 0.0103244614, -0.0106804771, 0.0124675371, 0.00401041424, 0.00688646408, -0.0188199766, 0.011860216, 0.0185826328, 0.0127328038, -0.0108829169, -0.0305475593, -0.00867003389, 0.00110905932, 0.0209979564, 0.0129910894, -0.000781402516, 0.0124814985, 0.0135425655, 0.0204255395, 0.0146874012, -0.0113994889, 0.020258002, -0.00502261659, 0.0109038595, -0.00627914304, 0.00176175509, -0.00600340543, 0.0102616344, -0.0310780928, 0.0147013618, -0.00616396125, 0.0246977303, 0.0123488652, 0.00554965949, 0.0268198643, -0.0064780931, 0.0324463099, -0.0122371735, 0.0114204315, -2.5468662e-05, -0.0115600452, -0.00612207735, -0.027085131, -0.00326871453, 0.00853042, 0.0120835984, 0.041940067, 0.007657832, -0.00595105, -0.00857928488, -0.0179962553, 0.0165721904, 0.000300388405, 0.00885153282, -0.0136751989, -0.000719012518, -0.0125094214, -0.00528788334, -0.016013734, 0.0134238936, -0.00918660592, -0.0216401815, -0.00286557898, 0.00144849601, -0.0012783414, 0.0146874012, 0.0164604988, -0.00408720225, -0.00791611802, 0.0169212259, 0.00256889896, 0.00846061297, -0.0241811574, -0.00719012506]
21 Jun, 2022
Difference between std::set vs std::vector in C++ STL 21 Jun, 2022 Vectors: Vectors are containers similar to dynamic arrays, with the ability to resize when a new element is inserted or deleted from it. It is a template of Standard Template Library or STL, which provides more flexibility to the program. Elements of vectors are placed in contiguous storage and are traversed using iterators. Examples: vector <int> v; v.push_back(1); v.push_back(2); v.clear(); Below is the implementation of vectors in C++: C++ // C++ program to demonstrate the // working of vector in cpp #include <bits/stdc++.h> using namespace std; // Driver Code int main() { vector<int> v; // Inserting elements in vector v.push_back(11); v.push_back(6); v.push_back(12); v.push_back(0); v.push_back(0); // Elements are stored in the // order of insertion with the // duplicate element cout << "Elements in vector are:\n"; for (auto it : v) { cout << it << " "; } return 0; } Output: Elements in vector are: 11 6 12 0 0 Time Complexity: O(N) // For N insertionsAuxiliary Space: O(1) Set: Set is also one of the templates of Standard Template Library or STL. It is a container of unique elements whose value can’t be modified once added to the set, but can be deleted or inserted. The elements of the sets are always stored in sorted form. Examples: set <int> s; s.insert(1); s.insert(12); int key = 1; s.erase(key); Below is the implementation of sets in C++: C++ // C++ program to demonstrate the // working of set in c++ #include <bits/stdc++.h> using namespace std; // Driver Code int main() { set<int> s; // Insert elements into the set s.insert(11); s.insert(6); s.insert(12); s.insert(0); // Duplicate elements s.insert(0); cout << "Elements in set:\n"; // The inserted elements get sorted // Print the elements of the set for (auto it : s) { cout << it << " "; } return 0; } Output: Elements in set: 0 6 11 12 Time Complexity: O(Nlog N) // For N insertionsAuxiliary Space: O(1) Tabular Difference between the vector and set: Vector Set Elements of the vector are unsorted. Elements of sets are always sorted. It can contain duplicate elements. It contains only unique elements. The vector is unordered. Set is ordered. The time complexity for insertion of a new element is O(1). The time complexity for the insertion of a new element is O(log N). Vector is faster for insertion and deletion of elements at the end of the container. Set is faster for insertion and deletion of elements at the middle of the container. Learn C++ Online – Master everything from basics to advanced concepts. Apply your knowledge with practical exercises and boost your skills. Take the Three 90 Challenge: finish 90% in 90 days for a 90% refund. Start now and level up your C++ programming!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum/Algorithm for Dynamic Time out timer Calculation/Difference between Round trip time (RTT) and Time to live (TTL)/Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms/Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm/Round Robin Scheduling Algorithm with Different Arrival Time/Selfish Round Robin CPU Scheduling/Find the order of execution of given N processes in Round Robin Scheduling/Calculate server loads using Round Robin Scheduling/set::lower_bound() Function in C++ STL/Implementation of lower_bound() and upper_bound() in List of Pairs in C++/Difference between std::set::lower_bound and std::lower_bound in C++/Difference between std::set vs std::vector in C++ STL
https://www.geeksforgeeks.org/difference-between-stdset-vs-stdvector-in-c-stl?ref=asr10
PHP
Difference between std::set vs std::vector in C++ STL
What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, jQWidgets jqxTreeMap width Property, Round Robin Scheduling Algorithm with Different Arrival Time, Difference between Flow and TypeScript, jQWidgets jqxTree destroy() Method, jQWidgets jqxTree collapseAll() Method, Find the order of execution of given N processes in Round Robin Scheduling, jQWidgets jqxScrollView buttonsOffset Property, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, jQWidgets jqxListBox enableHover Property, Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm, Selfish Round Robin CPU Scheduling, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxSlider buttonsPosition Property, Difference between Round trip time (RTT) and Time to live (TTL), jQWidgets jqxSlider rtl Property, Difference between std::set::lower_bound and std::lower_bound in C++, jQWidgets jqxTooltip opacity Property, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, jQWidgets jqxToolBar height Property, PHP, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, Node.js date-and-time Date.transform() Method, TypeScript Optional Parameters, jQWidgets jqxToolBar theme Property, Difference between std::set vs std::vector in C++ STL, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, Steps to Diagnose and Resolve a Slow Network, How to use Optional Chaining with Arrays and Functions in TypeScript ?, Calculate server loads using Round Robin Scheduling, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, jQWidgets jqxScrollView showButtons Property, Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms, jQWidgets jqxScrollView disabled Property, jQWidgets jqxSplitter destroy() Method, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, set::lower_bound() Function in C++ STL, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, jQWidgets jqxTree collapseItem() Method, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), jQWidgets jqxSortable opacity Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, jQWidgets jqxSlider height Property, jQWidgets jqxSwitchButton onLabel Property, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, jQWidgets jqxToolBar tools Property, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTree width Property, Implementation of lower_bound() and upper_bound() in List of Pairs in C++, jQWidgets jqxTree clear() Method, TLS Handshake?, Algorithm for Dynamic Time out timer Calculation, Adhoc TCP, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, jQWidgets jqxTabs position Property, Differences between Wireless Adhoc Network and Wireless Sensor Network, jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, Impact of Three-way Handshake and Slow Start Algorithm, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, How to Sort an Array Having Optional Properties in TypeScript ?
GeeksforGeeks
[-0.0208589807, 0.0247521605, -0.0183464512, 0.0580618493, 0.0216923449, -0.0325882696, -0.0303245056, -0.00596415112, -0.0053764428, -0.0258716047, -0.00159132131, 0.00682861079, -0.0126186265, -0.0348520353, -0.00995061733, 0.0100625614, 0.0123698609, 0.0198017284, -0.00354179787, -0.0180106163, -0.00881251507, 0.00375013892, -0.0297772214, -0.0305732712, -0.00451509235, 0.0149010494, -0.0128611727, -0.0203738883, -0.0102740126, 0.0370660499, 0.0129358023, 0.0124818049, 0.00138220296, -0.0184832718, -0.0412453078, 0.0196897835, -0.00332412799, 0.0310459249, 0.00640571, 0.0188812967, 0.0151000619, 0.0167419128, 0.0267422833, -0.0161697529, -0.0115178395, 0.0418672226, 0.0132840741, -0.0226127766, 0.018868858, -0.00763087953, -0.0188066661, -0.00246899691, 0.042315, 0.0253616348, -0.00431608036, 0.0091918828, 0.0280109867, 0.00905506127, -0.0280856173, -0.0235332102, -0.0103113269, -0.00381543976, -0.0141298762, -0.0302001238, -0.0194783323, 0.00546972966, -0.0522407405, 0.0482356176, 0.0254238266, -0.00871922821, -0.0180852469, 0.0469669141, 0.0381854922, -0.0197892897, -0.0129731167, 0.00778635778, -0.0158339199, -0.0200753696, -0.0343296304, 0.0263193827, 0.0109581174, 0.0365187638, -0.0132716354, -0.00570294727, 0.054927405, -0.0116173457, -0.0207221601, -0.0358222201, 0.0528875291, 0.0166672841, -0.0441807397, -0.0258467272, 0.027936358, -0.0370411724, -0.0228366666, 0.0184583943, 0.0126870368, -0.000721419754, -0.000706260616, 0.0443797521, 0.0180354938, -0.02123213, -0.0116297835, -0.0295533333, 0.0031359992, -0.00385586405, 0.0162319448, 0.0368919149, -0.020784352, -0.00286546675, -0.00195902772, -0.00388074061, -0.0197644141, 0.0602509864, -0.033011172, 0.00275507709, 0.0192171298, -0.0534348153, 0.0252123754, -0.0190305561, 0.00237415498, 0.00954637304, 0.0147144748, -0.00553192105, -0.0357973464, 0.0187693518, 0.0295284558, -0.00332412799, 0.00865703728, 0.0198266041, -0.0389069133, 0.0166424066, -0.0119780554, -0.0129358023, -0.00206475309, 0.00584909692, 0.014813981, 0.0413199365, 0.00404243823, -0.00530181313, -0.0270159263, -0.0336828381, -0.0178986732, 0.0454494432, -0.0424891338, -0.0342301242, 0.0109954318, 0.0228864197, -0.0233341977, 0.0196400303, 0.00252185948, -0.0440812334, 0.0331355557, -0.00390872685, 0.0419667289, -0.0238317288, 0.00118863233, -0.0345535167, 0.013296512, -0.0165677778, 0.0334589519, -0.0171772521, 0.00223888876, 0.00959612615, -0.0296777152, 0.0245904624, 0.0425637662, 0.00407664338, -0.0915456787, 0.0293294434, 0.00170870754, 0.0436085798, -0.014702037, 0.017513087, -0.0161448754, -0.0279861111, 0.0215804018, -0.00210051308, 0.0225257091, -0.0049597607, 0.00136121328, -0.00871922821, 0.0409965441, 0.0179359876, -0.00680373469, 0.0225630235, 0.0479619764, -0.00799159, 0.0196897835, 0.0275880862, 0.0126124071, 0.018980803, 0.0413696915, 0.0334589519, -0.0232968815, -0.00440625753, -0.0334589519, -0.0188315436, 0.0159085486, 0.0394293219, -0.0367675312, 0.00965831801, -0.012898487, -0.00101605128, 0.0394790731, -0.0189434867, 0.0117230704, 0.00545418216, 0.029180184, 0.0356729627, 0.00843314826, 0.0253740735, 0.00227775844, 0.0136945369, 0.00651143491, 0.000734246685, -0.0335584581, 0.0164682716, -0.0232346915, -0.00623779325, 0.00825901236, -0.0196773447, 0.022413766, -0.0569672845, -0.0599027164, -0.0353495665, 0.0264935177, 0.0346530229, -0.00562520837, -0.0175877158, 0.0296528395, 0.0163687654, -0.0128487349, -0.00768685155, 0.0135452775, -0.0314937048, -0.0130974995, -0.0353495665, -0.00281571364, 0.028110493, 0.00714578712, 0.0102677932, -0.0371158, -0.0123636415, -0.010759105, 0.0349764191, 0.0103859566, -0.0105476538, 0.0341554917, -0.0148637341, 0.00109534524, 0.00541064795, 0.00723907398, 0.00630931323, -0.00310334866, 0.0101745063, 0.0151871294, -0.0246526543, -0.0419667289, -0.0192420054, -0.0179111101, 0.0181225613, -0.00763087953, 0.0147891045, -0.0131721292, 0.0133089507, 0.0332599394, -0.00519608799, -0.0180976856, -0.0314688273, 0.00868191384, -0.0117417285, -0.0012407176, -0.0241178088, 0.0259462334, 0.029851852, -0.00336766196, 0.00820304, 0.00727638882, -0.0341057405, 0.0139308637, -0.0775153041, -0.0026571257, 0.031593211, 0.0543303713, -0.0194037035, -0.0142791355, -0.0271154325, -0.00435028551, 0.0105227772, -0.00240369607, -0.0156224687, 0.0347027779, -0.0103362035, 0.0263691358, 0.00447155861, -0.040225368, -0.00500640413, -0.0269412957, -0.0336828381, -0.0112193208, -0.0506983958, 0.0191549379, -0.00786098745, -0.0454245657, -0.0324887633, 0.0245531481, -0.0188564193, 0.00591750769, -0.0587583929, 0.0115054008, -0.00226376532, -0.0170155559, 0.0192295685, 0.031593211, 0.0154980859, 0.0262198765, 0.0147642279, -0.011318827, -0.0221898761, -0.00944686681, -0.0072266357, 0.00213316362, 0.0397775918, 0.017513087, -0.0146895982, -0.0213440731, -0.00564386556, 0.00431297068, -0.0187817905, -0.0136323459, 0.000828699849, -0.0478127152, 0.0113748, 0.0123325465, -0.00859484542, -0.0325136408, 0.00134488812, -0.0236202776, -0.0448524058, -0.00324638886, 0.0230481178, -0.0270408019, -0.00733236084, 0.0261452459, -0.0235207714, -0.0135577163, 0.00298673986, 0.0127741052, 0.012052685, 0.000643680571, -0.007885864, 0.00713956775, -0.032662902, 0.0374640748, -0.0242670681, 0.0077055092, -0.0264437646, -0.00103237655, -0.0383845046, 0.0396034569, 0.0204733945, -0.0194658954, -0.00534223765, -0.000128561194, -0.00759356469, -0.0231973771, -0.00445912033, 0.0197892897, 0.0104605863, -0.0105911884, -0.0382103696, 0.0455738269, -0.0351754315, -0.0276627149, 0.0132716354, 0.0142791355, 0.00327437487, 0.0115302773, 0.00659228396, -0.0305981468, 0.0540816039, 0.0173513889, 0.0101620676, 0.0218042899, 0.0137567278, -0.00594238425, -0.0297772214, -0.0109208021, 0.00496598, 0.0290806778, 0.00838961452, -0.00383098749, -0.00202121912, 0.00671666674, 0.0154234562, -0.0168787334, -0.0294787027, -0.0250755548, -0.0204733945, 4.18819909e-05, 0.00792939775, 0.00124149502, -0.0155727156, 0.0158090424, -0.00106735912, -0.0202495065, -0.0183340125, -0.0106844753, 0.000729582331, 0.0123823, 0.00733236084, -0.0223640129, -0.00024312934, 0.00986354891, 0.0201624371, -0.0253367592, 0.00976404268, 0.0129358023, 0.000431452529, -0.023943672, -0.0338818505, 0.0103735188, 0.00104714697, -0.005491497, 0.0420164801, -0.00922297873, 0.0135701541, 0.00778635778, 0.00949040148, -0.0284587648, 0.0046643517, -0.0157966055, -0.00370971439, 0.0145652154, -0.0198390428, 0.0345535167, -0.0112255402, 0.0118661113, -0.0228988584, 0.00938467588, 0.0393298157, 0.0445290133, -0.0553751849, 0.00211450621, 0.0425637662, -0.0396034569, 0.0292796902, -0.0236700308, 0.0112006636, -0.0056034415, -0.000676331, -0.0195778385, -0.0153363887, 0.0077739195, 0.00768063264, 0.0368421599, -0.0175379626, 0.0435837023, 0.00339564821, 0.0450514182, 0.0114680864, 0.0391805544, -0.00850155856, 0.0332848132, -0.000257511099, 0.0010751331, -0.0182966981, -0.00615383498, -0.014192068, -0.032787282, -0.0603504926, -0.00529559422, 0.0508476533, 0.00433162786, -0.025398951, 0.0146025307, -0.018644968, -0.0123512037, -0.0342798755, 0.00378434407, -0.00271620741, -0.0127989817, 0.0164558329, -0.00869435165, 0.00414816337, 0.00763087953, -0.00107435568, -0.0259213578, -0.00579623459, -0.0164433941, 0.0381854922, 0.0060356711, -0.048608765, 0.00756246923, 0.0192046911, -0.0382103696, -0.0332101844, -0.0141298762, 0.0378869735, 0.0247894749, -0.017513087, -0.0463947542, 0.0549771599, -0.00287479558, -0.016331451, -0.00311423209, 0.015883673, -0.0157095362, -0.0126061877, -0.00809109583, 0.0117541663, -0.0296030864, 0.0235332102, -0.0034951542, 0.00222334103, 0.00969563238, -0.00608542422, -0.0540318526, -0.00930382684, 0.0112815117, 0.00805378053, -0.0295782089, 0.0228491053, -0.0313195661, 0.00296963728, 0.0197022222, -0.0354490727, -0.00260426314, -0.0265930239, -0.0310708024, -0.00222023134, -0.0238192901, 0.0170901846, -0.000456717768, 0.00311423209, 0.0202743821, 0.0229734872, -0.0015952083, 0.029851852, 0.00231973757, 0.0347525291, 0.00149958907, -0.0148637341, -0.0196773447, -0.0109705552, -0.00270376937, -0.00278306333, -0.00363508472, -0.00957746897, 0.00586775457, 0.0382103696, -0.00557234557, -0.0162443817, -0.0335833319, 0.0406482704, 0.0165180247, -0.0034951542, 0.00690324046, -0.011381018, -0.00428498443, 0.0503252447, 0.0432105549, 0.0114929629, -0.0056874, -0.0277124681, 0.00323395059, -0.0031049035, -0.0223764498, 0.0116546601, 0.00556923589, -0.0151746916, 0.00720175914, -0.000657673576, -0.00716444431, -0.00597969908, -0.00963344146, 0.00968319457, -0.0384840108, -0.00830254611, 0.00172114582, -0.0298269745, 0.0114680864, -0.0218789186, -0.0112566352, 0.0228117891, -0.0415687039, -0.0202743821, -0.0261701234, 0.003252608, -0.0106036263, 0.0375884548, 0.0277124681, 0.0239312351, -0.0152990734, 0.000946086, 0.0024503395, -0.0230605546, -0.0353246927, 0.00190927461, 0.0339564793, 0.00622224528, 0.0168165434, 0.0168662965, -0.0361953713, -0.00916078687, 0.0233093202, 0.010728009, 0.0121273147, 0.0112877311, -0.0540816039, -0.0175379626, 0.0184459575, 0.00428187475, 0.00667313254, 0.0362202451, 0.0116546601, 0.0430612974, -0.0254487041, -0.0188066661, -0.00179266592, -0.00491000758, -0.00669800909, -0.00776770059, 0.0169284865, 0.0286329016, -0.0145652154, 0.0234958939, -0.0100065898, -0.0337325931, 0.0165180247, -0.00946552493, -0.00182998064, 0.00125004631, -0.014105, 0.00526138861, 0.00296341814, 0.0203241352, -0.0210579932, 0.0227247216, -0.0333843194, 0.00438449066, 0.0292796902, 0.0494048148, 0.00211761566, 0.010759105, -0.0224262029, 0.0119158644, 0.0303493831, 0.0196773447, -0.0103424229, 0.0200878084, 0.0172891971, 0.0122143822, -0.0207470376, -0.0220406167, -0.0165802166, 0.0145776542, 0.0248889811, 0.00277373451, -0.00918566342, 0.0199509878, -0.0111198146, -0.0173513889, -0.0143662039, 0.0125750927, -0.0262945052, -0.0183837656, -0.00413883477, 0.00621602638, -0.0434593186, -0.0332599394, -0.00416371133, -0.0137318512, 0.0191549379, -0.0253616348, -0.0252123754, 0.0270905551, -0.0131348148, 0.0156846605, -0.00916700624, -0.0150876231, 0.0074007716, 0.00125315588, 0.0215182099, -0.00117541663, 0.000839583343, -0.0138313575, 0.0134706479, -0.0113374842, -0.0117417285, 0.00130057673, 0.0299762338, -0.0121397525, -0.00639949087, -0.00915456749, 0.0182096288, 8.64848516e-06, -0.00534534734, -0.000748239749, 0.0128487349, -0.0335584581, -0.00836473797, -0.0103610801, -0.0114991823, 0.0321404934, -0.00963344146, -0.00957746897, -0.0376630872, -0.00406109542, -0.00331790885, -0.0296030864, -0.0157219749, 0.0027099885, 0.021965988, -0.0269412957, 0.0150129935, -0.00575581, 0.0115240589, -0.00755625, 0.0107715428, 0.0144657092, 0.0012228376, -0.00930382684, 0.0243416969, -0.00383098749, -0.0261701234, -0.0463698767, 0.00122516975, -0.0142791355, 0.00983867235, 0.00624401215, -0.0030147261, 0.00309868436, -0.00993817858, 0.0195902772, 0.0336082093, 0.00167294755, -0.0194658954, -0.0126994755, 0.00351070217, -0.00787964463, -0.0218789186, 0.0314439498, -0.0226127766, 0.00145216822, 0.0499520972, -0.00659850286, -0.00484159729, 0.0373894423, 0.0245282706, 0.0236327164, -0.000608697883, -0.0062719984, 0.0225381479, -0.0345286429, 0.027936358, 0.0159209874, 0.0165802166, 0.0214560181, 0.0431856774, 0.0131970057, 0.0216301549, 0.0232222527, -0.0205355864, -0.0025358526, -0.0210082401, 0.0157468524, 0.0262447521, 0.0199883021, 0.0325385183, 0.029180184, 0.0217545368, -0.00295253471, -0.0195778385, 0.0213316362, -0.0077739195, -5.73022908e-06, 0.0150627466, 0.0283095054, -0.0280856173, 0.0129731167, 0.00340808649, 0.0114494292, -0.00266023539, -0.0127305705, 0.0566190109, 0.00359155098, 0.0112504167, -0.0237073451, 0.00341741508, 0.0165304635, 0.0145527776, 0.0296528395, 3.14843746e-05, -0.028782161, -0.0471908, -0.0351008028, -0.0326380245, -0.0163812041, 0.0223764498, -0.0381854922, 0.0148512963, -0.00172270054, 0.0176250301, -0.0241426844, -0.00184241892, 0.0266676545, 0.0103175463, 0.0176001545, -0.0118225766, -0.0226003397, -0.012083781, 0.0316429622, -0.00659228396, 0.024503395, 0.0224635191, -0.0182345062, 0.0193912648, 0.0333843194, 0.00647412, 0.00404865714, 0.0390810482, 0.00365374214, -0.0330360495, -0.0215306487, 0.00334900455, 0.0258467272, 0.0466683954, -0.00704628089, -0.0210704319, -0.0147269135, -0.0125813112, 0.00948418211, -0.0130850617, 0.0202619433, 0.00786098745, -0.018246945, 0.0371406786, 0.00338010024, 0.0052551697, 0.00825901236, -0.0258716047, 0.00791074056, -0.00632175151, 0.00115442707, -0.0262945052, 0.031543456, 0.00843314826, -0.00349204475, 0.0179111101, -0.0222520679, 0.0108212959, 0.0139308637, 0.018135, 0.0460962355, -0.0330858, -0.0184459575, -0.0300757401, -0.0175877158, 0.0104916822, -0.00399268512, 0.0281602461, 0.0252372529, 0.0303742588, 0.0129855555, 0.00426321756, -0.00564697525, 0.00374391978, -0.030225, -0.00576513866, -0.0288816672, -0.0215679631, 0.0149508025, 0.0143413274, -0.0169906784, 0.0058459877, 0.0166921597, -0.0040579862, -0.0202495065, 0.0447529, -0.00612273905, -0.0213316362, -0.0467927754, 0.00574337179, -0.00565319415, -0.0197270978, -0.0349017903, 0.00117075234, -0.0436832085, -0.000714423193, 0.018756913, -0.0398273468, -0.00157033175, -0.0010891261, 0.00279705622, 0.0180728082, 0.0220033024, -0.00998171326, -0.0472156778, 0.0123138884, -0.00887470692, -0.0165304635, -0.00505304756, 0.0272646919, 0.0286080241, 0.0174384564, 0.0228366666, -0.00254673604, 0.00818438269, -0.00372526236, -0.0139806168, -0.0240183026, -0.0251377467, 0.0106969131, 0.0247024074, -0.0116981938, -0.046295248, 0.0336828381, -0.0036164273, -0.011461867, 0.0292548146, 0.0111073768, 0.0192171298, -0.00633419, 0.00334278541, 0.005618989, 0.0178986732, -0.0141547527, -0.0324887633, -0.0190181173, 0.0272895675, 0.017401142, -0.0171150621, -0.00104636955, -0.00274730311, -0.0110389655, -0.0124631478, -0.0587086417, -0.0192793198, 0.0188315436, -0.000195028202, -0.00561588, -0.0142293824, -0.00478251558, -0.00173824839, -0.0321156159, -0.0197892897, 0.0243168212, -0.00455862656, -0.0145776542, 0.0294289496, -0.0147891045, -0.0458972231, 0.0290309247, -0.0178862344, -0.0176001545, -0.00189217203, -0.0176374689, 0.0107404478, 0.0363446288, -0.0105663119, 0.044827532, 0.0130726229, 0.00340186735, 0.00417304, 0.0406980254, -0.0201873146, -0.0330609269, 0.0118536726, 0.0292548146, -3.7873564e-05, -0.00500951381, 0.0305483937, -0.0131721292, 0.0270656794, -0.0164060798, -0.0246526543, 0.021120185, -0.00150192133, -0.0035791127, 0.0241178088, -0.014105, 0.0136074694, 0.0223142598, -0.0154110184, 0.00692811701, -0.0240183026, -0.0338321, 0.0343545042, -0.0357475914, -0.00526138861, 0.0153861418, -0.0155105246, 0.021742098, 0.0322151221, -0.0020927391, -0.0279861111, -0.0237197839, -0.0209336113, -0.0116111264, 0.00827145, -0.0210455544, 0.0242421906, 0.0311703086, -0.0183837656, -0.00539820967, 0.0226376541, -0.0484097525, 0.0513451844, 0.00298207556, -0.0444543809, -0.00284680934, 0.0100376848, -0.0133089507, 0.0413199365, 0.00548838731, 0.0133338273, 0.0356480852, 0.00130290899, -0.0197146609, -0.0274637025, -0.0274139494, 0.0127492286, 0.00983867235, 0.0169284865, 0.0284587648, 0.00699030841, -0.00685970671, -0.0197644141, 0.00454929797, -0.00262603, 0.0215306487, 0.0371904299, -0.0304986425, -0.0162319448, -0.0250506792, -0.0405487642, 0.0157095362, 0.00106813654, -0.00911725312, 0.0154234562, -0.00236327155, 0.0114680864, 0.0097453855, -0.0333096907, -0.01374429, -0.0039367131, 0.00351381162, 0.00325882714, -0.0138189197, 0.0104108332, 0.00440625753, -0.00953393523, 0.00919810217, -0.00545107247, 0.00917944405, -0.00473276246, 0.00325571746, 0.0072204168, -0.0138064809, 0.00327748456, 0.0266179014, 0.0042476696, -0.0185827781, 0.0102366973, 0.0214933325, 0.0338321, 0.00845180545, 3.58329125e-05, 0.00973294768, -0.0192793198, 0.00331168971, 0.00259493431, -0.0189683642, 0.000423678634, -0.00990086421, -0.00893067848, -0.0131596914, -0.026866667, -0.00911725312, 0.0106036263, 0.0136447838, 0.00134955242, 0.0188066661, 0.00472032418, -0.00462392718, -0.00888714474, -0.00102071569, -0.0422154926, -0.0148512963, 0.0161573142, 0.0576140732, 0.00159365358, 0.0314937048, -0.00495043211, 0.035200309, 0.0504993834, -0.011461867, 0.0129233636, -0.0263940115, 0.0212196913, 0.015435895, 0.00822791643, 0.0256725922, 0.00954637304, 0.00987598766, -0.0142791355, 0.0226874072, -0.00426321756, 0.0242670681, -0.00174291281, -0.0110016512, 0.0178986732, 0.00577757694, -0.00332101854, -0.0336828381, -0.0338569731, 0.0115675926, -0.0160204936, -0.0112877311, -0.00333656627, -0.0151746916, 0.000316592865, -0.0284338892, -0.012083781, 0.000181229509, 0.0143164508, -0.018756913, 0.0185952149, -0.0120651228, -0.0157966055, -0.0101558482, 0.0197146609, 0.0109456787, 0.01503787, 0.0215306487, -0.0351754315, -0.00976404268, 0.0131970057, 0.00665447535, 0.00532358, 0.0167045984, -0.0200629327, 0.0182345062, 0.0160204936, 0.0139806168, 0.0231351852, -0.00433162786, -0.0129979933, -0.0123325465, 0.0012679263, 0.00785476808, -0.00614450593, -0.00409530103, -0.0171150621, 0.0142045058, -0.0151995681, -0.00752515439, 0.0215182099, 0.00820925925, -0.00398957543, -0.00449643517, -0.025125308, -0.0065674074, 0.00859484542, -0.00681617297, -0.00906128064, 0.00135577156, 0.0244660806, 0.00707115745, -0.00191860332, 0.0213689506, -0.0125129009, -0.0012858063, -0.00404243823, 0.00904262345, 0.00204143138, 0.0160951223, 0.00983867235, 0.0163438879, 0.00379056321, -0.0106533794, 0.0225257091, -0.0135577163, -0.00772416638, 0.00371282408, -0.0283343829, -0.00769929, -0.0167667903, -0.0203490127, -0.00166050927, 0.00197768514, 0.00206475309, 0.0476137027, 0.0136074694, -0.000289384159, -0.03649389, -0.00763709843, -0.0208465438, -0.00962722208, 0.0058024535, -0.0265930239, -0.0155602777, -0.00463636545, -0.0158090424, 0.00229019672, 0.0183837656, -0.0205480251, 0.0173016358, 0.0107404478, 0.0158090424, -0.0126061877, 0.0211699381, -0.0194783323, -0.00217825221, -0.0199261103, -0.00481050136, 0.0265681483, 0.0104170525, 0.00397402793, -0.0326877758, -0.0131223761, -0.00562831759, 0.00708359573, 0.00552259246, 0.00126714888, -0.00997549389, -0.0335087031, 0.00744430535, -0.0140303699, -0.0165429, -0.00914834905, 0.010137191, 0.0352500603, -0.0106658181, -0.00675398158, 0.0244536418, 0.0400014818, -0.0102366973, -0.0162319448, -0.00861972198, 0.00187817903, 0.0123512037, 0.00957125, 0.00940955244, -0.00270532398, -0.0176001545, -0.0272895675, -0.00505304756, -0.0222893823, -0.0194658954, -0.0170777459, 0.024279505, 0.013234321, 0.00972672831, -0.0243541356, -0.0253865123, -0.000590040523, 0.055872716, 0.0240804944, 0.00630931323, -0.000229330632, -0.0237073451, -0.029180184, -0.00879385788, 0.00291055557, 0.0237944126, -0.00667313254, 0.0142418211, -0.00938467588, 0.0161075611, 0.00526138861, 0.0122641353, 0.00484781619, 0.00756868813, 0.0361704938, 0.012276574, 0.00296497298, 0.0139184259, -0.00750649674, -0.0360461101, 0.0198141672, 0.000686437124, -0.0144035183, 0.00750649674, 0.0147517901, 0.00451198313, 0.00208030082, 0.00880629662, -0.0201251227, -0.0121646291, 0.0161324386, 0.0231227465, -0.021854043, -0.0277373455, 0.00738211395, 0.00273641967, 0.00553503074, -0.00961478427, -0.00493177446, 0.0232471302, -0.00890580192, -0.0357973464, 0.00151280477, 0.00836473797, 0.0146522839, 0.00432229927, -0.00972050894, -0.00290589128, -0.00504682865, -0.00939089525, -0.0135079632, -0.00417614961, 0.043882221, 0.00944064837, -0.0018097685, 0.0415687039, 0.00342052453, -0.0194783323, 0.00235394295, 0.00947796274, 0.0200007409, 0.0285333954, 0.00382476836, -0.00988842547, 0.000298324157, -0.0275383331, 0.00638705259, 0.0218416043, -0.00236482639, 0.0122454781, 0.0104916822, 0.0382352471, -0.0487082712, -0.0275880862, 0.0100439042, 0.0288319141, -0.000661949278, 0.014192068, -0.0127305705, 0.0326380245, -0.000192501684, -0.00283748074, -0.0287075303, 0.00825901236, 0.0200380553, -0.00191860332, -0.00916078687, -0.0050375, -0.00832120329, 0.0100687807, 0.00618804, 0.0238317288, 0.0199012347, -0.0160329323, -0.0392800607, 0.0303493831, 0.0147269135, -0.00641192915, 0.00853887293, 0.000351186813, -0.00785476808, -0.0121584106, -0.0228988584, -0.017861357, 0.0179111101, 0.0113748, 0.0124071762, 0.000170637533, 0.0139308637, 0.00962722208, 0.00627510808, 0.000292688084, 0.00888092536, -0.00362264644, -0.00813463, 0.00889336411, 0.0337325931, -0.0235332102, -0.00164029701, 0.0222023148, -0.00801646616, 0.00116842007, 0.00496287039, 0.00628754636, 0.000867569412, 0.00680373469, 0.0221774373, -0.0165926535, 0.0274139494, -0.0121895056, 0.0183215737, 0.00420724554, 0.000588485738, 0.0145652154, 0.0106720366, 0.00641814806, 0.0136945369, 0.0252248142, 0.0112255402, 0.00506237661, -0.0371655561, 0.0120962188, 0.00863216072, 0.00427876553, 0.000755236309, -0.00193259644, -0.00655496912, -0.0097453855, 0.0294787027, 0.00776770059, -0.0241675619, 0.000721808465, -0.0178862344, 0.011318827, -0.00350759248, -0.00659850286, 0.0259462334, 0.011971836, 0.0300508644, -0.00685348734, 0.0170031171, -0.00849533919, 0.0306727774, -0.0291055553, 0.0187071599, -0.00541997701, -0.0149010494, -0.0273393206, -0.00643680524, 0.0213440731, -0.0180728082, 0.0249884874, 0.0461211093, 0.00824035518, 0.00162785873, -0.00534534734, -0.00466124201, -0.00891202129, -0.0051867594, 0.0125439968, -0.00389006943, 0.0271900613, 0.0229486115, 0.000548838754, 0.0267671607, -0.000522018701, -0.025573086, -0.0300011113, -0.0271651857, 0.0155975921, -0.0112193208, -0.0144657092, -0.0123263272, 0.0133089507, 0.00119096448, 0.0241302457, 0.000368483801, 0.00971429, -0.0221525617, -0.0123947375, -0.0437578373, 0.0149383638, -0.0196649078, 0.0283592585, 0.0579125918, 0.017575277, -0.00157499616, -0.00402689027, 0.0120589044, 0.0285085179, -0.0109332409, 0.00564386556, 0.0100376848, -0.0152617591, -0.0308966655, -0.00813463, 0.00088622683, -0.0103299841, -0.0302001238, 0.0219908636, 0.0185952149, -0.00720797852, 0.0161448754, -0.00631242292, -0.0164682716, 0.0262945052, 0.00645546289, 0.0428622849, 0.0209958013, -0.00130601844, 0.022140123, 0.00532358, -0.0456982106, -0.00244722981, 0.0210704319, 0.0340311117, 0.0197146609, 0.0356232077, 0.00123760803, -0.00381854922, -0.0176623464, -0.00450265408, -0.0129606789, 0.00747540127, -0.019490771, 0.0193290729, 0.00856374949, -0.00371593353, 0.00673532393, -0.00469233794, 0.0150129935, -0.0128611727, 0.0387079, 0.0234585796, -0.020560462, -0.01612, -0.00183775462, -0.032787282, -0.0285085179, 0.0192171298, -0.0176374689, -0.00856996886, -0.00582422037, -0.00684104906, -0.0188191049, 0.020560462, -0.0279114805, -0.00894311722, -0.00987598766, -0.00104248268, 0.0206102151, 0.00809731428, -0.0106098456, -0.00871922821, 0.0138437962, -0.0115986886, -0.00877520069, -0.00113576965, 0.00392116513, 0.0014335108, -0.00707737636, 0.0248267893, 0.0104357097, -0.0125875305, 0.0101123145, -0.00272398139, 0.00881251507, -0.0222147536, 0.00115287234, -0.0214933325, -0.00121739577, -0.00597969908, 0.0224883948, 0.0237819757, -0.0117355091, -0.00110545137, -0.0187320374, 0.0244536418, -0.00247832551, 0.0241675619, 0.0156722218, 0.0214933325, 0.00628132699, -0.0127989817, -0.000506859564, -0.0118847685, 0.014590092, -0.0169409253, -0.0157592893, 0.0227371603, 0.0293543208, 0.00956503116, 0.000705483195, -0.0059237266, -0.021679908, 0.00897421315, 0.0190056786, -0.00156022562, 0.0325136408, -0.000754458888, 0.0609972849, -0.0170528702, 0.0276627149, 0.0158214811, 0.0047700773, -0.01064716, 0.00195280858, -0.0131223761, 0.00814706739, 0.0131970057, 0.0133213885, -0.00563142728, 0.00211295136, 0.0075749075, -0.0143537652, -0.0141547527, -0.00247055176, 0.00148637348, 0.00676020049, 0.031593211, -0.011014089, -0.00806, 0.0159707405, 0.0011645332, -0.000229524972, -0.00888092536, -0.0099879317, -0.00977026206, 0.000287635019, -0.00446533924, 0.00804756116, -0.00940955244, -0.0019668017, -0.00479806308, 0.0376382098, 0.0142418211, 0.010249136, -0.0170155559, 0.011014089, 0.0138313575, 0.0110638421, 0.0131596914, -0.0179608632, -0.00244722981, -0.0022077933, -0.00782367308, -0.00778013887, 0.00203676685, -0.00133789156, -0.00780501543, 0.00743186707, 0.0203863271, 0.00446533924, 0.00209118449, -0.0192295685, 0.00307536265, 0.00934736058, 0.00639949087, 0.0197146609, 0.00656118803, 0.0067415433, -0.00111167051, 0.0192046911, -0.0148637341, -0.00879385788, -0.00449954486, -0.00444046268, -0.0229734872, -0.0210455544, 0.00353557873, 0.0147393513, 0.00641814806, -0.00497841835, -0.0122268209, -0.00208807481, 0.00950905867, 0.00913591, -0.000179966242, 0.0105538731, 0.0190181173, -0.00472965278, -0.00821547862, 0.0177369751, 0.00646790117, 0.00987598766, 0.0131472526, 0.00912969094, 0.00416682102, -0.0102615738, -0.00645546289, -0.0032837037, 0.0171026234, -0.00983867235, 0.0158339199, 0.00871300884, -0.00126559415, -0.0215057712, 0.000700430188, -0.0109021449, -0.00965831801, -0.00743808644, 0.0184459575, -0.00735723739, 0.0133587038, 0.0147517901, -0.0191922523, 0.00323395059, -0.00807865709, -0.0200256165, -0.0362202451, -0.00321218371, -0.000737356255, 0.010759105, 0.010759105, 0.0221152473, -0.0122081637, -0.0207345989, 0.0336828381, 0.00289189816, 0.0018097685, -0.0344540104, 0.0115675926, -0.0143413274, -0.0192046911, -0.00109612267, -0.000997393858, -0.0110016512, -0.00863216072, -0.0125999693, 0.00922297873, 0.0152990734, 0.0107902009, 0.00375324837, -0.0235954, -0.0129979933, -0.000640571, -0.0112566352, -0.0104108332, -0.00542308623, 0.0133960182, 0.00220623845, 0.0195902772, -0.00779257715, -0.0226376541, -0.00485092588, -0.0104730241, 0.00376879633, -0.0448026545, 0.00387763116, -0.00676642, 0.00398335652, -0.0059237266, 0.00182065193, -0.00875654351, -0.00329925143, -2.67957294e-05, 0.00160764658, -0.00677885814, -0.0233715121, -0.00794183649, 0.00787342619, -0.00561277, -0.0189186111, 0.0150627466, 0.00456173625, 0.00343918195, 0.00125626544, 0.014813981, 0.00138531253, 0.0126870368, -0.0289811715, 0.0164433941, -0.00838961452, -0.0249884874, -0.00102071569, -0.00607298594, -0.000597814447, 0.0123698609, 0.00232595671, -0.0168662965, -0.00282037794, -0.0117852623, 0.00507170521, -0.0091918828, 0.00950905867, -0.00201033568, -0.0170279928, -0.0290806778, 0.014702037, 0.00265090656, -0.0025933797, 0.0152990734, 0.00190927461, -0.00659228396, -0.0120962188, 0.00814084895, -0.00679129642, 0.0344788879, -0.00456484547, 0.017065309, -0.000655341428, -0.0104605863, -0.0118785491, -0.0199261103, 0.031717591, -0.00713334884, 0.00470788591, -0.00173202925, 0.0256974697, 0.0144283948, -0.0251377467, 0.00115909136, 0.0143164508, 0.0172891971, -0.0185454618, 0.0111073768, 0.00842692889, 0.0178986732, -0.00570605695, -0.0105725303, -0.0148886107, 0.0134955244, 0.0058615352, 0.0109892124, -0.00203210255, -0.0123014506, 0.0153488265, -0.00945308618, 0.00296030869, -0.00813463, -0.0245655868, -0.0202495065, 0.000846579846, 0.0154732093, -0.00319974544, 0.0331604332, -0.0121024381, 0.0187195987, -0.00643680524, -0.00880007725, -0.00562209869, -0.00941577181, -0.0169409253, -0.00419169758, -0.00794183649, -6.82161481e-05, 0.0220157411, 0.00751893502, -0.0216674693, -1.91189829e-05, 0.00885604881, -0.000552337, 0.00710225292, -0.00145994208, 0.00185641204, 0.00430364208, -0.0093287034, -0.00576513866, 0.0113748, 0.00370660494, -0.00674776221, -0.0105165588, -0.00752515439, -0.00867569447, 0.012419614, -0.00174135796, -0.00287635019, 0.00852643512, -0.0181847531, -0.00389628857, 0.0274637025, -0.00497841835, -0.00838339515, 0.0181723144, -0.0126372837, -0.0192544442, 0.00667313254, 0.00401134277, -0.0125315581, 0.00837095641, -0.00241146982, 0.00820925925, -0.00983867235, 0.00159209874, 0.0120651228, 0.0226127766, -0.0033147994, 0.00785476808, 0.00789208338, -0.000872233766, -0.00300384266, -0.0109767746, -0.00921054, 0.0246899687, -0.00983245391, 0.00774282403, -0.000855131133, -0.00911103375, 0.00761222234, 0.0167667903, 0.0155229624, 0.0169782396, 0.00479806308, 0.0173389502, 0.0235207714, 0.0161573142, 0.0191798154, 0.018309135, 0.0122392587, -0.00342363422, 0.0115800304, -0.00694677467, 0.0354739502, -0.00116297835, -0.00887470692, -0.00235549756, -0.0153363887, 0.0119469594, -0.0198266041, -0.00284836418, 0.000269560667, -0.00938467588, -0.00684104906, 0.0135701541, 0.0184086412, -0.00118396792, -0.00669800909, -0.00855753105, -0.00821547862, -0.0017024884, -0.0205107089, -0.0125253396, -0.016393641, 0.00595793221, -0.0143537652, -0.00844558608, 0.0292796902, 0.0115054008, -0.00822791643, 0.0276129618, -0.00633729948, -0.00896177441, -0.000163349483, 0.0108834878, 0.00651765428, -0.0351754315, -0.00235549756, 0.0123449843, -0.0184335187, -0.0299513582, -0.0036786187, 0.00271620741, 0.0129233636, -0.0209584869, -0.00968941301, 0.0202495065, 0.00109767751, 0.00390561717, 0.00180665893, 0.0104916822, 0.000953859941, 0.0172270052, 0.0185205862, 0.0132591976, 0.00425077928, -0.00895555504, 0.000987287844, 0.00455240719, 0.00402378058, 0.00907371938, 0.0126061877, 0.0106782559, 0.00870679, -0.00244256551, -0.0209709257, -0.00952149648, -0.0032619366, 0.00325882714, -0.00374391978, 0.00515566347, -0.0051867594, 0.0182593819, -0.0123760803, -0.0222893823, -0.0126061877, 0.0149756791, -0.0171150621, -0.00469544763, 0.00264002313, 0.00687214499, 0.0224510804, 0.0107031325, 0.00689702155, -0.0138811106, 0.0118350154, -0.000379367266, 0.0123885181, 0.00771794748, -0.00305048609, -0.0145776542, -0.0022451079, -0.00152213348, 0.0145154623, 0.0162692592, -0.0105600925, -0.000292299374, 0.0341057405, 0.0320907421, 0.0143662039, 0.0151746916, -0.00171803625, -0.00613517733, 0.00775526231, -0.0118847685, -0.00644924352, -0.00863837916, -0.000384614686, -0.00817194395, 0.00789830275, -0.0111446911, 0.00257472228, 0.00660472224, 0.0011381018, -0.00231662812, 0.0170031171, -0.0322648771, -0.00105569826, 0.00316398521, 0.00392427482, -0.00199167826, -0.0147642279, 0.00651143491, 0.00163252314, -0.00457728375, 0.0198763572, -0.00278772763, 0.0106098456, 0.0180354938, -0.00499707554, 0.0177245364, -0.0202868208, -0.0153861418, 0.0152990734, 0.0291553084, 0.00715200603, 0.00223888876, 0.00951527804, -0.000391611189, 0.0056034415, 0.0350759253, 0.00802890398, -0.00753759267, 0.00554435933, 0.000327282, -0.010728009, -0.00413261587, -0.00611962937, 0.00358222215, 0.00843936671, 0.0262447521, -0.00233994983, 0.00774904294, -0.0177618507, -0.0167419128, 0.00658606458, 0.00435650442, -0.000577213534, 0.0267671607, 0.00462392718, 0.00942199, -0.00695921294, 0.00811597239, 0.00481983, 0.0090675, -0.0261701234, -0.016779229, 0.026020864, 0.00385897374, 0.0153861418, 0.0238939188, -0.0183962043, 0.013234321, 0.0121895056, -0.00295875384, -0.00672910502, -0.00216736877, -0.010982994, -0.0222520679, 0.0061569442, -0.014590092, -0.0122143822, 0.0126310643, 0.0238068514, -0.00667935191, -0.0123263272, -0.0143413274, 0.0205853395, 0.00265090656, -0.000763010234, 0.00306914351, 0.00807865709, 0.00260581798, -0.0155602777, 0.00170870754, -0.00932248402, -0.0158090424, -0.00226221071, -0.0154732093, 0.0102988891, -0.00120495749, -0.0113561414, 0.0145030245, -0.016393641, 0.0127492286, -0.00170559797, 0.000866014627, 0.0130726229, 0.00254984573, 0.00178644678, 0.0111322533, 0.00514944457, -0.00904884282, -0.0131721292, -0.00384964491, 0.00748162, 0.00484470651, -0.0102677932, -0.00208185567, 0.00899287, 0.0057247146, -0.0192668829, 0.00546972966, 0.0192668829, 0.00700896606, 0.0128736105, 0.00860728417, 0.0131970057, -0.00584287802, 0.00378123461, 0.0010797974, 0.016331451, 0.00631553214, 0.00198390428, -0.00844558608, 0.00178800151, 0.00942199, -0.00440936722, -0.0072204168, 0.0100376848, 0.0133587038, 0.00405176682, 0.0104605863, 0.00214715651, 0.00372215267, 0.00210517738, -0.00198856858, -0.00804756116, -0.0119220829, -0.00347960647, -0.00808487646, 0.0297772214, 0.0188439805, -0.0117292898, 0.0286577772, -0.00664203707, -0.00730126537, 0.0151746916, 0.0128238583, 0.00528004626, -0.00516188284, 0.0183464512, 0.00578379631, 0.0201624371, 0.00362264644, 0.00516499206, -0.0289065428, -0.00867569447, -0.0178986732, 0.0144532714, 0.0131596914, -0.0210455544, -0.00914834905, -0.0227496, -0.0372899361, 0.00392427482, -0.00144361693, 0.0248019136, 0.0107404478, -0.00850155856, 0.000666224922, 0.000122827929, -0.00312978, -0.000271504134, -0.0178489201, 0.00191860332, -0.0151746916, 0.00462081796, -0.019316636, -0.0175379626, 0.0104543669, -0.0139184259, 0.0184459575, -0.00886226818, 0.0348769128, -0.0127492286, 0.00530492282, -0.0235207714, 0.0187195987, -0.0288567897, 0.00987598766, -0.0248889811, -0.0215804018, 0.0266676545, 0.0194161423, -0.0222520679, 0.0018190972, 0.0253740735, 0.00122516975, 0.00502506178, 0.00863216072, -0.0103983954, -0.0130850617, 0.0202495065, 0.0105103394, 0.0150876231, 0.00294476072, 0.0119904941, 0.015995618, 0.00322151231, -0.0233590733, 0.0139059871, 0.00476074824, -0.00758112641, -0.0250009261, -0.0111198146, -0.013296512, -0.0206226539, 0.0154483328, 0.00651143491, 0.0107528856, -0.00258249603, 0.00918566342, -0.0153363887, 0.000146344042, 0.0136447838, -0.00517432112, 0.00968319457, 0.00127958716, 0.01612, 0.013520401, -0.0357973464, 0.00789830275, -0.0178489201, -0.0221898761, 0.0174757708, 0.0021502662, 0.0112317596, 0.0344042592, 0.00362886558, 0.00862594135, -0.000510357844, 0.0131348148, 0.0127492286, 0.0228491053, 0.0187444743, 0.00712712947, 0.00267733796, -0.00689702155, -0.0126559408, -0.0098511111, 0.00110389665, -0.0345286429, -0.016953364, 0.0278119743, -0.0226500928, -0.0208465438, 0.0262198765, 0.0172145683, -0.0031670949, 0.00939089525, 0.023483457, 0.026866667, 0.00562520837, -0.0337325931, -1.35436258e-05, -0.00557856495, 0.0147144748, 0.00577135803, -0.00774282403, 0.0192544442, -0.00593305565, 0.00294631557, -0.0320409872, 0.0148264198, -0.0109021449, 0.0194037035, 0.0111820064, -0.00330547057, 0.0107342284, 0.0214684568, -0.010728009, -0.00116297835, 0.00958990771, -0.00909237657, 0.00259027, 0.00772416638, -0.010280231, 0.00723907398, 0.0221152473, 0.00318730716, -0.0119469594, 0.00139775081, -0.0166921597, 0.00876276195, -0.0215057712, -0.0171648152, -0.0222520679, -0.00758734578, 0.0155975921, -0.000755236309, -0.00381854922, 0.00616316358, -0.017401142, 0.00538888108, 0.0224635191, -0.0022979707, 0.0106844753, 0.00341119594, 0.0395039506, 0.0146771604, -0.0206226539, -0.00664203707, 0.02015, 0.0014202951, 0.0221525617, -0.00084813463, -0.0234212652, 0.0260706171, -0.000835696352, -0.0158214811, 0.00602634251, -0.0196649078, -0.000937534729, 0.00396158965, -0.00498774694, -0.0148761729, 0.00754381157, 0.00750027783, 0.00113110535, -0.00105958525, 0.00926651247, 0.0175255239, -0.00926651247, 0.0104730241, -0.0109705552, 0.0199634265, 0.0216923449, -0.00122983404, -0.0123138884, -0.00891202129, 0.0121273147, -0.00252963346, -0.00864459854, 0.00820304, -0.00529248454, -0.00834608, 0.00712091057, -0.00257627689, -0.0028670216, 0.00832120329, -0.0282846298, 0.012276574, 0.0271651857, -0.0103051076, 0.0125875305, -0.00131068286, 0.0248267893, 0.00881251507, -0.0054293056, 0.0103983954, -0.00950905867, -0.00458039343, -0.0119096451, 0.0145030245, 0.00266179, -0.00700274669, -0.0212196913, 0.0136447838, 0.00716444431, 0.00575270038, -0.00627510808, 0.0187942274, -0.000838028558, -0.0154483328, 0.0181598756, -0.0114867436, 0.03029963, 0.00623779325, -0.000628910086, 0.00111089309, -0.00235705241, -0.021742098, -0.00245189434, -0.00838339515, -0.0141547527, -0.0146895982, 0.0129109258, -0.0173762646, -0.0251999386, 0.028558271, -0.0059765894, 0.0249262955, -0.00658606458, -0.0266925301, 0.0167916659, -0.0243043825, 0.0189434867, 0.00173980324, -0.0395039506, -0.0256228391, -0.0020289931, -0.0093287034, 0.0096085649, 0.0180479325, -0.0132591976, 0.00865703728, 0.00697787, 0.000903329463, -0.0142169446, -0.0280358642, -0.021854043, -0.0173140746, -0.00356978388, -0.0101558482, 0.00791696, -0.0311454311, 0.00449643517, 0.00659850286, 0.00255917432, -0.0100625614, -0.0148761729, 0.00303804781, -0.00189372688, -0.00751893502, -0.00840205234, -0.00882495381, -0.0232346915, -0.00297430158, -0.0216550305, 0.00731992256, -0.0120402472, 0.0142791355, 0.00521474518, 0.0131596914, 0.00348582561, 0.00915456749, 0.0299513582, 0.00242857239, -0.00164651615, 0.000308041577, -0.00583043974, -0.0139433024, -0.00298518525, 0.0107715428, 0.00735101849, -0.00939089525, -0.0329862945, 0.000246238895, 0.00395226059, 0.0147642279, 0.0143164508, 0.000101935519, -0.011094938, -0.0162692592, -0.0169160496, 0.00786098745, 0.00774904294, -0.00847668201, 0.0019403703, -0.0158463586, -0.0175877158, 0.0058459877, -0.013296512, 0.0145527776, -0.0224386416, -0.017401142, 0.00294165127, -0.0079542743, -0.0124755865, 0.000901774678, -0.0195280854, 0.0152368825, -0.00384653546, 0.00098962, 0.0135079632, 0.00953393523, -0.0255482104, -0.00125004631, 0.0063932715, 0.000551948324, 0.00370971439, 0.00616627326, -0.00328059401, 0.00249542831, 0.00533290906, 0.00982623454, -0.0361704938, 0.0106969131, 0.0114369905, 0.023147624, -0.00249698292, 0.00110778352, -0.00224977243, -0.0268169139, 0.00945308618, 0.018756913, 0.0110265277, 0.0205977783, 0.00649277773, 0.0324141346, -0.00509347208, -0.0101931635, 0.0191425, -0.00916700624, -0.000288218085, 0.00583976833, -0.0137194134, -0.00338010024, 0.000513467414, -0.000388695975, 0.0155229624, 0.00555368839, -0.00115986879, 0.00250475691, 0.00937845651, -0.00552570214, 0.022413766, 0.00373459095, 0.00634662807, 0.0098137958, 0.00150269864, 0.0101185339, -0.00692811701, -0.0217047837, -0.0059237266, -0.015883673, -0.00688458327, -0.00596104143, 0.0072266357, -0.00947174337, -0.0156224687, 0.0106222834, 0.0185952149, -0.0211575, 0.00338010024, 0.00669800909, -0.00441869581, 0.00743186707, -0.0106969131, -0.00844558608, -0.0367426537, 0.0203863271, -0.00180354936, -0.00720175914, 0.00848290138, 0.0153488265, -0.00968319457, -0.0331604332, 0.00938467588, -0.0135577163, -0.00843936671, 0.0117292898, -0.0342052467, 0.0194161423, 0.0129109258, 0.0132094445, 0.00533290906, 0.0129979933, -0.0336828381, -0.00560966041, 0.00164962572, 0.00526138861, -0.0134830866, -0.00634973776, 0.00603878079, -0.00893067848, -0.00659228396, -0.00356356474, 0.00871922821, 0.0188439805, -0.00555990729, -0.0142045058, -0.0022715393, -0.00648655836, 0.00196524686, -0.0202495065, 0.00631242292, 0.0147642279, 0.00658606458, 0.00458661281, -0.00289656245, -0.00482915901, -0.0180479325, -0.0189310499, -0.00470477622, 0.0118225766, -0.0113561414, 0.00486958306, 0.0260457397, 0.00384964491, 0.00799780898, -0.0116235651, -0.00767441327, -0.0147269135, 0.00336144282, 0.000711313623, 0.00950905867, 0.0272398144, 0.00959612615, 0.00290589128, -0.0186325312, 0.018756913, -0.0197768509, -0.0109892124, -0.00551326387, -0.00761844125, 0.00810353365, -0.00550393527, -0.0330609269, 0.0043596141, 0.00940333307, 0.00649277773, -0.00505304756, -0.00234461413, -0.00211761566, -0.00977648143, -0.0163812041, -0.0215306487, 0.00946552493, 0.00976404268, 0.022028178, -0.00482293963, -0.0196773447, 0.0163812041, -0.0217545368, 0.00342985336, -0.00463325623, -0.0208838582, -0.00962722208, -0.0331853069, -0.00825279299, -0.0183962043, -0.020224629, 0.00853887293, 0.00758734578, 0.0100128083, -0.0337574668, -0.00982001517, 0.0042912038, 0.00269755023, -0.0180354938, -0.016841419, 0.0240804944, 0.00475141965, 0.00326815573, 0.00217514276, 0.00116764277, -0.00109923223, -0.0143537652, -0.00666069426, 0.00121895061, 0.0279114805, -0.0134706479, -0.0181971919, 0.00302249985, -0.00985733047, -0.0018952816, 0.00368483784, 0.00829632673, 0.0031670949, -0.0181723144, 0.00245811348, 0.00608542422, -0.00298518525, 0.0117852623, 0.0214560181, 0.0398770981, -0.0145279011, -0.00474520074, 0.00392116513, 0.0207719132, 0.00727016944, 0.00268666656, -0.00618182076, 0.00290278159, 0.000782445, 0.0253865123, 0.0151746916, -0.0104357097, 0.000729971041, -0.0125937499, -0.00427254615, 0.0118474532, 0.00587708317, 0.00720797852, -0.0114058945, -0.0267422833, -0.00935979933, -0.00733858, 0.00158510217, 0.0115054008, -0.00881251507, -0.0151249385, 0.00282348762, 0.0076433178, -0.00481983, 0.00909237657, -0.0241551232, -0.00127492286, 0.034254998, -0.0143413274, 0.0277124681, -0.0227371603, 0.01374429, 0.00237415498, 0.0100003704, 0.00949662, -0.00375013892, 0.0164682716, -0.0136447838, 0.00897421315, 0.0067415433, -0.0164060798, -0.00462392718, -0.00853265449, -0.0108959256, 0.00350137334, -0.032787282, 0.0158587955, -0.0239809882, -0.0019310416, -0.00648033945, -0.0119096451, 0.0068783639, -0.019938549, 0.0377874672, -0.000608697883, 0.0165926535, -0.0171150621, 0.000362070306, 0.0185205862, -0.0142666977, 0.0289811715, 0.00531736109, 0.0264188889, 0.00545418216, 0.00415127305, 0.00917944405, -0.0196524691, 0.00183153548, -0.00790452119, -0.00705871917, -0.0139806168, 0.012276574, 0.00278928247, 0.000165098623, 0.00840205234, -0.00259493431, -0.0128860492, -0.00809109583, 0.0156971, -0.0213067587, 0.00230574468, -0.0283095054, 0.000502195209, -0.0116670989, -0.000798381574, 0.00182998064, -0.0249760486, -0.00946552493, 0.00259182486, -0.0147144748, -0.0171896908, -0.0129109258, -0.0172891971, -0.0278368518, -0.0147642279, -0.0204858333, -0.00851399638, 0.0306976531, -0.0279612336, 0.00641192915, 0.00251097605, -0.0250879936, -0.00494421273, -0.00819060206, 0.0159334261, -0.00686592562, -0.000216309316, -0.000245461502, -0.00782989152, -0.00753759267, -0.0320161097, 0.00341119594, 0.00755003095, -0.0427130237, -0.00672910502, 0.00430364208, 0.00322151231, 0.00854509231, -0.00960234553, -0.0162319448, -0.00127570017, -0.0294289496, -0.000282970665, -0.0103735188, -0.0433598161, 0.00994439796, 0.00455862656, -0.000268783275, 0.00892446, -0.00474209106, -0.00461459858, 0.00348893506, -0.013296512, -0.000879230327, 0.00196835655, -0.00180199463, 0.00631553214, 0.000405798608, 0.00443113409, -0.0254984573, 0.00406731479, 0.0333594456, 0.00147082563, 0.00613206765, 0.00816572551, -0.00195125386, -0.0126870368, 0.00918566342, -0.0154483328, -0.00449954486, -0.000217475404, -0.0147517901, -0.007295046, 0.0117230704, -0.0122703547, 0.0187071599, -0.0118412348, -0.00978891924, 0.00375013892, -0.0096769752, 0.00149958907, 0.0102864504, 0.0124133946, 0.00609164359, -0.0189310499, -0.0128487349, -0.00491000758, 0.000301045045, 0.00168227626, -0.0209460482, 0.00842692889, 0.000829477212, 0.00237104553, -0.015435895, 0.00183775462, -0.000951527792, -0.00396780856, -0.000229719328, 0.0034951542, -0.0179111101, 0.0385088883, 0.026866667, -0.0235083327, -0.00294320588, 0.0297523458, -0.00906128064, -0.0127989817, 0.00290433643, 0.00811597239, 0.00056633004, -0.0182966981, 0.00329925143, -0.020672407, 0.00187040505, 0.0306479, -0.00294631557, -0.0111695677, -0.0149134872, -0.0122454781, 0.00700274669, 0.0284836423, -0.0149010494, -0.00418236898, -0.0413199365, 0.00588330254, 0.025747221, 0.00101216428, -0.00324016972, -0.010535216, -0.0154234562, -0.00441869581, 0.0122268209, -0.000158976662, 0.00420102617, -0.0181225613, -0.016779229, 0.017239444, 0.00894311722, 0.0243292581, 0.0166548453, -0.0152368825, -0.0306727774, -0.016219506, -0.0477878377, -0.00139852811, 0.0179733019, 0.00254207174, 0.0045430786, 0.0101123145, -0.00887470692, 0.010168287, 0.0118909879, 0.00765575608, -0.00432540895, 0.00849533919, 0.0155975921, -0.00896177441, -0.0120340278, -0.0177120976, -0.0204485189, -0.0348022841, 0.016617531, 0.0236202776, 0.0259462334, 0.0331106782, -0.00185330247, 0.0544796288, -0.023147624, 0.00118940976, -0.0277124681, -0.0153363887, -0.00804756116, 0.00229175156, 0.00329303229, -0.00357600302, -0.0265183952, -0.0139308637, 0.00214093737, -0.00749405846, -0.0109767746, -0.0221774373, -0.00162319443, 0.00881873444, -0.000673610135, 0.0113001699, 0.0134706479, -0.0152368825, 0.00269599538, -0.00648033945, -0.00926651247, -0.00543863419, 0.00238348381, 1.28391139e-05, -0.00713956775, 0.00733858, -0.0113748, -0.0195032097, 0.0159831792, 0.00773660466, 0.00927273091, 0.0102988891, -0.0095401546, -0.00541997701, -0.0241551232, -0.00595793221, 0.0115613732, 0.00984489173, 0.030473765, 0.00725151226, 0.0038216589, -0.0198514815, -0.0163687654, 0.000599369232, 0.00946552493, -0.00201966427, -0.00370349525, -0.00888092536, 0.00604810938, -0.014080123, -0.00644302461, 0.0246899687, -0.00904262345, -0.00285302848, -0.0172891971, 0.00878142, 0.00764953671, -0.00657984568, -0.011094938, 0.00677885814, -0.0152120059, 0.00701518496, 0.00260115345, 0.00509969145, 0.0295284558, 0.01064716, -0.00659228396, 0.00641192915, 0.00669179, 0.00234461413, 0.0178737957, -0.0192793198, 0.0206972845, 0.00791696, -0.0208341051, 0.0159334261, -0.0138811106, 0.0365685187, -0.000716755399, 0.0236451533, -0.0184832718, 0.0133835804, -0.00190150074, 0.000649122288, -0.0229361728, -0.0215057712, -0.00561588, -0.00402378058, 0.0263193827, 0.00855753105, 0.006209807, 0.00548838731, -0.00141407596, 0.01064716, 0.0137940431, 0.00364130386, 0.0173762646, 0.0112566352, 0.0107155712, 0.00379678234, -0.0143040121, -0.0106409416, 0.00138531253, -0.0010751331, 0.00263691344, -0.00646790117, 0.0156224687, 0.0257223453, 0.0102242595, 0.036668025, -0.00208030082, 0.0218291655, 0.00516499206, 0.00693433639, 0.00178955635, 0.00251719519, 0.00234305928, -0.0219162349, 0.000330391573, 0.00396158965, 0.003548017, 0.00768063264, 0.0124942437, -0.00169315969, -0.0207345989, 0.0103051076, 0.0124258334, 0.0332599394, -0.000600146595, 0.0152120059, -0.00740699051, -0.00702140434, -0.00190927461, -0.0198141672, 0.0306230243, -0.00678507704, -0.00231351843, 0.00587708317, -0.0157095362, -0.0167294759, -0.0114805242, 0.00258249603, 0.00972672831, -0.010759105, 0.00895555504, 0.00846424326, 0.0232346915, -0.0041699307, -0.00987598766]
21 Mar, 2023
std::minmax() and std::minmax_element() in C++ STL 21 Mar, 2023 C++ defined functions to get smallest and largest elements among 2 or in a container using different functions. But there are also functions that are used to get both smallest and largest element using a single function, “minmax()” function achieves this task for us. This function is defined in “algorithm” header file. This article would deal in its implementation and other related functions. minmax(a, b): This function returns a pair, in which 1st element is of minimum of the two elements and the 2nd element is maximum of 2 elements. minmax(array of elements): This function returns similarly as 1st version. Only difference is that in this version, the accepted argument is a list of integers/strings among which maximum and minimum are obtained. Useful in cases when we need to find maximum and minimum elements in list without sorting. CPP // C++ code to demonstrate the working of minmax() #include<iostream> #include<algorithm> using namespace std; int main() { // declaring pair to catch the return value pair<int, int> mnmx; // Using minmax(a, b) mnmx = minmax(53, 23); // printing minimum and maximum values cout << "The minimum value obtained is : "; cout << mnmx.first; cout << "\nThe maximum value obtained is : "; cout << mnmx.second ; // Using minmax((array of elements) mnmx = minmax({2, 5, 1, 6, 3}); // printing minimum and maximum values. cout << "\n\nThe minimum value obtained is : "; cout << mnmx.first; cout << "\nThe maximum value obtained is : "; cout << mnmx.second; } Output: The minimum value obtained is : 23 The maximum value obtained is : 53 The minimum value obtained is : 1 The maximum value obtained is : 6 Time Complexity: O(n) where n is the number of elements from which we have to find the minimum and maximum element. Auxiliary Space: O(1) minmax_element(): This purpose of this function is same as above functions i.e to find minimum and maximum element. But it differs in return type and accepted argument. This function accepts start and end pointer as its argument and is used to find maximum and minimum element in a range. This function returns pair pointer, whose 1st element points to the position of minimum element in the range and 2nd element points to the position of maximum element in the range. If there are more than 1 minimum numbers, then the 1st element points to first occurring element. If there are more than 1 maximum numbers, then the 2nd element points to last occurring element. CPP // C++ code to demonstrate the working of minmax_element() #include<iostream> #include<algorithm> #include<vector> using namespace std; int main() { // initializing vector of integers vector<int> vi = { 5, 3, 4, 4, 3, 5, 3 }; // declaring pair pointer to catch the return value pair<vector<int>::iterator, vector<int>::iterator> mnmx; // using minmax_element() to find // minimum and maximum element // between 0th and 3rd number mnmx = minmax_element(vi.begin(), vi.begin() + 4); // printing position of minimum and maximum values. cout << "The minimum value position obtained is : "; cout << mnmx.first - vi.begin() << endl; cout << "The maximum value position obtained is : "; cout << mnmx.second - vi.begin() << endl; cout << endl; // using duplicated // prints 1 and 5 respectively mnmx = minmax_element(vi.begin(), vi.end()); // printing position of minimum and maximum values. cout << "The minimum value position obtained is : "; cout << mnmx.first - vi.begin() << endl; cout << "The maximum value position obtained is : "; cout << mnmx.second - vi.begin()<< endl; } Output: The minimum value position obtained is : 1 The maximum value position obtained is : 0 The minimum value position obtained is : 1 The maximum value position obtained is : 5 Time Complexity: O(n) Auxiliary Space: O(1) Learn C++ Online – Master everything from basics to advanced concepts. Apply your knowledge with practical exercises and boost your skills. Take the Three 90 Challenge: finish 90% in 90 days for a 90% refund. Start now and level up your C++ programming!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum/Algorithm for Dynamic Time out timer Calculation/Difference between Round trip time (RTT) and Time to live (TTL)/Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms/Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm/Round Robin Scheduling Algorithm with Different Arrival Time/Selfish Round Robin CPU Scheduling/Find the order of execution of given N processes in Round Robin Scheduling/Calculate server loads using Round Robin Scheduling/set::lower_bound() Function in C++ STL/Implementation of lower_bound() and upper_bound() in List of Pairs in C++/Difference between std::set::lower_bound and std::lower_bound in C++/Difference between std::set vs std::vector in C++ STL/std::minmax() and std::minmax_element() in C++ STL
https://www.geeksforgeeks.org/stdminmax-stdminmax_element-c-stl?ref=asr10
PHP
std::minmax() and std::minmax_element() in C++ STL
What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, jQWidgets jqxTreeMap width Property, Round Robin Scheduling Algorithm with Different Arrival Time, Difference between Flow and TypeScript, jQWidgets jqxTree destroy() Method, jQWidgets jqxTree collapseAll() Method, Find the order of execution of given N processes in Round Robin Scheduling, jQWidgets jqxScrollView buttonsOffset Property, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, jQWidgets jqxListBox enableHover Property, Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm, Selfish Round Robin CPU Scheduling, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxSlider buttonsPosition Property, Difference between Round trip time (RTT) and Time to live (TTL), jQWidgets jqxSlider rtl Property, Difference between std::set::lower_bound and std::lower_bound in C++, jQWidgets jqxTooltip opacity Property, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, jQWidgets jqxToolBar height Property, PHP, std::minmax() and std::minmax_element() in C++ STL, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, Node.js date-and-time Date.transform() Method, TypeScript Optional Parameters, jQWidgets jqxToolBar theme Property, Difference between std::set vs std::vector in C++ STL, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, Steps to Diagnose and Resolve a Slow Network, How to use Optional Chaining with Arrays and Functions in TypeScript ?, Calculate server loads using Round Robin Scheduling, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, jQWidgets jqxScrollView showButtons Property, Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms, jQWidgets jqxScrollView disabled Property, jQWidgets jqxSplitter destroy() Method, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, set::lower_bound() Function in C++ STL, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, jQWidgets jqxTree collapseItem() Method, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), jQWidgets jqxSortable opacity Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, jQWidgets jqxSlider height Property, jQWidgets jqxSwitchButton onLabel Property, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, jQWidgets jqxToolBar tools Property, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTree width Property, Implementation of lower_bound() and upper_bound() in List of Pairs in C++, jQWidgets jqxTree clear() Method, TLS Handshake?, Algorithm for Dynamic Time out timer Calculation, Adhoc TCP, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, jQWidgets jqxTabs position Property, Differences between Wireless Adhoc Network and Wireless Sensor Network, jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, Impact of Three-way Handshake and Slow Start Algorithm, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, How to Sort an Array Having Optional Properties in TypeScript ?
GeeksforGeeks
[-0.0168032832, 0.0280006453, -0.0108424639, 0.0253063254, 0.0173682217, -0.0386765227, -0.0447315, 0.0143334912, -0.0198597424, 0.018020073, -0.0120592536, 0.00784394704, 0.0298982561, -0.0467884541, 0.0201639403, 0.000267304393, -0.0119723398, 0.0336645097, 0.0121968668, -0.0243937336, -0.0398643427, -0.00509530632, -0.0377784185, 0.0480631851, 0.00703637535, 0.0221774373, -0.00181250938, 0.00322304363, -0.013305014, 0.00531983282, 0.0457744636, 0.00338238524, -0.019063035, -0.0406755358, 0.00938666239, 0.0102485549, 0.025856778, 0.0345915891, -0.0546106733, 0.027508134, 0.020555051, 0.0256829504, 0.0242054202, -0.0294781756, -0.00577250728, 0.0393718332, -0.0327374339, -0.0478024445, 0.00593909156, -0.0325346328, 0.0191064924, -0.0184980985, 0.036329858, 0.0402989089, 0.007025511, -0.00885793846, 0.0197438579, 0.0263927449, 0.0015961309, -0.0441231057, 0.0191209782, -0.0268997401, -0.00853925478, -0.0250600707, 0.0170495398, -0.0348813, -0.0498304293, 0.0492510051, 0.0197004024, 0.0213517584, -0.0480052456, 0.0382999, -0.0282613859, -0.0128414752, -0.0276529901, -0.0193527471, 0.00801777374, 0.00975604448, -0.0293912608, 0.0389952064, 0.00751802092, -0.00727538718, 0.00911867898, -0.0223222934, 0.0223222934, 0.00473678764, -0.00167942303, -0.0467015393, 0.00702188956, 0.0372859091, -0.0314627, 0.0220470671, -0.00288263243, 0.0291739777, 0.00909695, 0.0329981744, 0.0225106068, 0.0229886305, -0.0291015487, 0.0442679599, -0.00224345573, 0.033867307, 0.0263637733, -0.0234956257, 0.0451950394, -0.0130515164, 0.00802501664, -0.00601514103, 0.00785119, -0.00569645828, 0.00228148047, 0.0185705256, -0.020105999, 0.0150650134, -0.0392559469, -0.00105201593, 0.00424427772, -0.0314916708, 0.0139930798, -0.00925629213, 0.00341497781, 0.0299851708, 0.0319841802, -0.0059499559, -0.0759624317, 0.0112190889, 0.0236404818, 0.00614913274, 0.0223078076, 0.00664164266, 0.0238287952, 0.00906797871, 0.00670682779, -0.0407624505, -0.00318139768, 0.00933596212, 0.0197004024, 0.0225830339, -0.00573991472, -0.0124793351, -0.0339831933, -0.0215980131, -0.00158707739, -0.0023647726, -0.0540022776, -0.0367354564, -0.00391473062, 0.0580003, -0.0491061471, -0.0118057551, -0.0269287117, -0.00214205659, 0.0178172756, -0.0219601542, 0.0460062325, -0.0297244303, 0.0151229557, -0.0106034512, -0.00158979348, -0.037604589, 0.0346205607, -0.00865514, 0.0100529995, -0.00283555407, -0.0161224604, 0.00924904924, 0.0457165204, 0.012254809, -0.054407876, 0.0442100205, 0.0235245973, 0.0207288787, 0.00893760845, 0.00368477195, -0.0228148028, -0.00820608623, 0.0183966979, 0.0281310156, 0.011284274, 0.0286380108, 0.00756872073, -0.0114436159, -0.00970534515, 0.0123634506, -0.00471868087, -0.0232204, 0.035576608, -0.0412259884, 0.0136526683, -0.0237273965, -0.00242995773, 0.0250021275, 0.0252773538, 0.00500477105, 0.0400381684, 0.0328533165, -0.0160645191, 0.0229306892, -0.0100457566, 0.024741387, -0.01479703, -0.0115884719, 0.000506543, 0.0267259125, 0.0288697798, -0.0190340653, -0.0251469836, -0.00258567766, 0.029072579, -0.0349971838, -0.00675028469, 0.00359604764, -0.0173102804, -0.00138156314, -0.019888714, 0.00758320605, -0.0353158675, 0.0442969315, -0.0359532349, -0.0297823716, -0.0212503597, 0.0114436159, 0.0639104247, -0.0330561139, -0.0378653295, -0.0152243543, 0.00273596565, -0.0140003227, 0.0190775208, 0.0254801512, -0.00653300108, 0.0117188422, -0.0218877252, 0.00730797974, 0.0158762056, 0.010617937, -0.0282034427, -0.00575440051, -0.0164990872, 0.0398353711, 0.00715588126, 0.00842337, -0.0229741447, 0.0168467406, 0.0123779364, 0.0127690472, -0.00338419597, -0.0107483072, -0.00746732159, -0.0235245973, -0.00100222172, -0.0144421328, 0.0289277229, 0.0234956257, -0.0254222099, 0.00847407, 0.00127111049, -0.00461366028, -0.00774979033, -0.0168612264, -0.0186719242, 0.025335297, 0.0110090477, 0.0466725677, 0.0195700321, 0.0443259031, 0.0657645762, -0.00132181006, -0.0101181846, -0.0317234397, 0.0089013949, -0.0151953837, 0.00652575819, 0.00826402847, 0.0135585116, -0.0107700359, -0.0389082953, -0.0041646068, 0.0475996472, -0.018020073, 0.0201349687, -0.0187008958, 0.0251904409, 0.0146666598, 0.00777151901, -0.0141958781, -0.00272510154, -0.0153402397, -0.0425007194, -0.025118012, -0.0247848444, 0.0183677282, 0.0031850189, -0.0022688054, 0.0488454066, 0.00850304123, -0.0170060825, -0.0329692028, -0.0420951247, 0.0226844326, 0.0155720087, -0.00988641474, 0.0124503644, -0.0390531495, 0.0164556298, 0.00213481369, 0.00184329122, -7.32767148e-05, 0.0153112682, -0.0205840226, -0.00977777317, -0.0195845179, -0.0214676429, 0.00838715676, -0.0332299434, -0.0113784308, 0.0335775949, -0.00338781718, -0.0112697883, -0.0199176855, -0.00308362, -0.0296664871, 0.0098502012, 0.0266824551, 0.0251035262, -0.0432539694, -0.0301589966, -0.0114291301, -0.00854649767, -0.0352289528, -0.0428483747, 0.00133901171, -0.0395166874, -0.0367354564, -0.0268997401, -0.0298403148, -0.0354027823, -0.0111828754, -0.0356055796, 0.0268707685, -0.0165280569, -0.00965464581, -0.00962567423, 0.0185994972, -0.0093794195, -0.0470491946, -0.0265231151, -0.00596806267, 0.0050156354, 0.0342729054, 0.00135168654, 0.00292065693, 0.036764428, -0.00950979, 0.0102630407, -0.0268997401, -0.00775703322, -0.0131239444, 0.0160645191, 0.0061889682, 0.0198742282, 0.0330850855, 0.00112263323, 0.00108551385, 0.00159975234, -0.0427614599, -0.0183966979, -0.00586304255, -0.0137323393, 0.0157168638, 0.00507719908, -0.0306515079, 0.0279861595, 0.0503519103, -0.0263203159, 0.00239374372, 0.0390821211, 0.0184691269, -0.0244371891, 0.0104803238, -0.0423848368, 0.033114057, 0.00274683, 0.0334906839, 0.000720658107, -0.0255525801, -0.0230320878, 0.00478748744, 0.0191064924, 0.00719209528, -0.0394297764, 0.0187443532, 0.00833645649, -0.0114798294, -0.00828575715, -0.0140655078, -0.00963291712, 0.000533250743, 0.00320855808, -0.0303617958, 0.0172378514, 0.0156299509, 0.00774979033, 0.024219906, -0.00868411083, 0.0256250072, 0.00811193, 0.0258278064, 0.0145942317, 0.0192223769, 0.00493596448, -0.0293188337, -0.0550742112, 0.00476213777, 0.00198271498, 0.00518584112, -0.0210330766, 0.0218297839, 0.0254511815, -0.0131094586, -0.00782221835, -0.022800317, -0.0298113432, -0.00901727937, 0.0124938209, 0.0312888734, -0.0423848368, 0.0257408936, 0.0123706935, -0.00271966937, -0.0453978367, 0.0189616363, -0.0288118385, 0.0311729889, 0.00932871923, -0.0328533165, 0.0347364433, 0.0209606476, -0.00418271404, -0.0619403794, 0.0155575229, 0.0768315643, 0.0639683604, 0.0105020525, -0.0284931548, 0.0444417894, -0.021148961, 0.0211199895, 0.00769184809, 0.0150939841, -0.0632730573, -0.0223947223, -0.00512427744, -0.0185560398, 0.0619983226, -0.0132905282, 0.0200045984, -0.0113711879, 0.055769518, -0.0146883875, 0.0121534094, -0.0105237812, 0.000858271203, -0.0260740612, 0.0236115102, -0.0101688839, 0.00150559598, -0.00743835047, -0.0314627, 0.0131239444, -0.0171654243, -0.0234521702, 0.0356635228, 0.016890198, 0.0409942195, 0.0173247643, -0.0259581767, -0.0110090477, -0.0188892093, -0.0347364433, 0.0403568521, 0.00180798268, -0.0124141499, -0.00374814635, 0.00530172559, -0.0146376882, 0.0151953837, -0.000777695095, 0.0360111743, 0.00742386468, -0.014203121, -0.0058521782, -0.0058051, -0.00979950093, -0.0158472341, 0.0394587442, -0.0514817871, 0.00263999868, -0.0459482893, 0.0247993302, 0.0390531495, 0.00158345606, -0.0433119126, 0.056204088, 0.0168757122, -0.0326794907, 0.0174985919, 0.00660905, -0.0072138235, -0.022872746, -0.00170929951, 0.0142248487, 0.000451543, 0.00243901112, 0.00390748773, -0.0236549675, -0.010617937, -0.00952427555, 0.00224888767, -0.0090897074, 0.0285945535, 0.0152098695, -0.00290255, -0.00170477282, 0.000404464809, -0.00120773597, 0.0370541364, -0.0271749664, 0.0146594169, -0.0145073179, -0.0165570285, 0.00612378307, -0.0242343917, -0.0197873153, -0.0107265795, -0.0265955422, -0.007735305, 0.00552625256, -0.00621069642, 0.0277978461, -0.0395746306, 0.0041247718, 0.00365398987, -0.00258929911, -0.00369382533, -0.00202073972, 0.025494637, -0.000882715627, 0.00425152062, 0.0220470671, 0.0141886352, 0.00451226113, -0.00667061377, 0.00780049, -0.0323897786, 0.0136454254, -0.0279137306, -0.0498883687, -0.0290146358, -0.0241185073, -0.00168304448, 0.0153112682, 0.00537777506, 0.0274791643, -0.00190123369, -0.0263058301, 0.0082567865, 0.0105889663, -0.0252773538, 0.00574353617, 9.54577699e-05, 0.00315242633, 0.047976274, 0.0201494545, 0.0180055872, 0.038792409, -0.0151374415, 0.0173971932, -0.0267838556, 0.0065112724, -0.0170495398, -0.0332878865, 0.0471940525, -0.0296085458, 0.00287176808, -0.0164846014, -0.0176579338, -0.0203812253, -0.0447894447, 0.00216740626, 0.00627588155, 0.0154850949, -0.0363008864, 0.0317234397, -0.0112190889, 0.0100240279, 0.0149781, -0.0441231057, 0.0320421234, 0.0161079764, 0.0144711044, -0.000965102401, 0.00156534906, 0.0057181865, -0.0196424592, 0.00319045107, 0.0203377679, 0.0315206423, 0.0141741494, -0.0166149717, -0.00421892805, -0.0105744805, 0.0204536524, 0.0106034512, 0.0101543982, 0.0135874832, 0.00527999736, 0.00692773331, -0.0284062419, -0.0153836962, -0.00971983094, -0.0272618793, -0.007735305, -0.00399440154, 0.0147897871, 0.0414867289, -0.0173392501, -0.0283193272, -0.000168281811, -0.0431091152, 0.0166004859, -0.0517425276, 0.00489612948, -0.0147390878, 0.0229162034, 0.00640625181, -0.000445658225, -0.0130587593, -0.0254511815, 0.0508154482, -0.0372859091, 0.00175818847, 0.00766287697, 0.0883621, -0.0104948096, 0.0216994137, -0.00597892702, 0.0364457443, 0.00864789728, 0.00979225896, -0.00760493474, 0.0210185908, 0.0197293721, 0.0143769477, -0.00201711827, 0.00112625456, 0.0225830339, -0.00312526594, -0.000591193151, 0.0118781831, 0.0114653446, -0.0365036875, 0.00666337134, 0.00421892805, 0.0131384293, 0.000631933857, -0.00382057414, 0.000419855758, 0.0204971097, -0.0196859166, -0.000546378316, -0.0293188337, 0.012855961, 0.0211634468, -0.00944460463, -0.0220036097, -0.0191934053, 0.0338962786, 0.0168467406, -0.0210620463, -0.0100240279, -0.0336065665, 0.0287394095, -0.00167036953, -0.0159776062, -0.00959670264, 0.00638814503, -0.013232586, -0.00340411346, -0.0258278064, 0.00316691212, -0.0270156246, 0.0259726625, 0.0235825405, -0.000720658107, -0.00131004048, 0.0249731559, 0.0046860883, -0.0244082175, -0.0352868959, 0.033114057, -0.0179331601, -0.0353448391, 0.00373003935, -0.00533069717, 0.024741387, -0.0130660022, 0.017035054, -0.00542847486, 0.00969810225, 0.0458613783, -0.0125734918, -0.00983571541, 0.0109076491, 0.0086189257, 0.000102530816, -0.0272184219, 0.00470419507, 0.0220905244, -0.0220470671, 0.00530896848, 0.000852386409, 0.0158906914, -0.0163107738, 0.00956773199, -0.00838715676, 0.00952427555, -0.0255236086, -0.0120592536, -0.00971258804, -0.0128052607, 0.0265231151, 0.0239157081, 0.00434567686, 0.00883621, 0.0047766231, 0.0329981744, 0.00998057146, 0.00111086364, 0.0312309302, -0.00177267403, -7.96707391e-05, 0.00220362027, 0.0297534019, -0.0166004859, -0.0107120937, 0.0426745452, 0.00605497649, -0.00440724054, 0.0210765321, -0.000447468919, 0.0182518438, -0.000459464791, -0.0271459948, -0.00476213777, -0.0291160345, 0.0263348017, -0.00951703265, 0.0246979296, -0.000799876172, 0.00197547232, 0.0041465, 0.00529086171, 0.0234521702, -0.0269431975, -0.0316365287, 0.00061699556, -0.0064207376, 0.00527999736, 0.0044615618, 0.0195700321, -0.00346929859, 0.0366485417, -0.00176180981, -0.00893036555, -0.0223222934, -0.0124431215, -0.00642435905, 0.0135150552, 0.016890198, -0.0283772703, 0.0395746306, -0.0133629562, 0.00714139547, -0.004783866, -0.0274501927, -0.00837991387, 0.024886243, 0.0340411365, 0.000735143665, -0.00457020337, -0.00577612873, 0.0038676525, 0.0116174426, 0.0021529207, -0.0189761221, -0.0291739777, -0.0107772788, -0.0101109417, -0.0346495286, 0.0308543053, -0.011059748, 0.00491423625, -0.025118012, 0.0254801512, -0.0274646785, -0.000849670381, 0.0287683811, -0.00530896848, 0.0321000665, -0.00842337, -0.000717036659, -0.00836542808, 0.032592576, -0.0337224528, 0.000638723955, -0.000213888779, 0.0137975244, 0.0020479, 0.0150939841, 0.0257408936, -0.00410304312, 0.0185994972, 0.016441144, -0.0226264913, 0.0210330766, -0.00666337134, -0.00285728252, 0.0162673164, -0.0082567865, 0.0160355475, 0.00489250803, -0.0264362, 0.0180635303, -0.00999505725, 0.00826402847, 0.0405596495, 0.00309267337, 0.0165425427, 0.0321290381, 0.0211924184, 0.0118709402, -0.0300141424, 0.0176869053, 0.00703637535, -0.0190195795, -0.0185560398, 0.0347654149, 0.00845234189, 0.000508353638, 0.0271170232, 0.0089086378, 0.0162528306, 0.00105201593, -0.00164049305, 0.0369382538, -0.0717905834, -0.0312599, 0.011508801, 0.00506271375, 0.0201639403, 0.0251469836, 0.000726995524, -0.00606946182, 0.0262768585, 0.0125372773, -0.0289132372, -0.0249441843, 0.00953151751, -0.0567255691, 0.0124648502, 0.0100095421, 0.000304423709, 0.0291884635, -0.0231914297, -0.0162528306, -0.0142900338, 0.0301010553, 0.021525586, 0.00811917335, 0.0274501927, -0.00310172676, -0.0354317538, -0.0196134876, -0.0392269753, 0.00336971018, -0.023988137, -0.0190195795, -0.0144421328, -0.0075035356, 0.0299272276, 0.00599341281, 5.46038827e-05, -0.00196822942, 0.0263637733, -0.0037264179, -0.0220905244, -0.0019120978, 0.00979950093, -0.00694584, -0.00294238538, -0.011581229, -0.0042153066, 0.00170205673, 0.0313757882, -0.00111448509, 0.0236839391, 0.0109728342, 0.00457020337, 0.0325056612, 0.0287104379, 0.0169481393, 0.0059499559, -0.0332299434, 0.019135464, 0.0153692104, -0.0122837797, -0.00212757103, 0.00849579833, 0.0192078911, -0.0101036988, 0.0228872318, 0.0103716822, 0.0222064089, -0.0282034427, -0.0215545576, -0.0225975197, -0.00131728326, -0.0112987598, -0.0188457519, -0.0558854043, 0.0114943152, 0.0188167803, -0.00992262922, -0.00370650017, 0.00265267352, -0.00601151958, -0.0185994972, -0.0886518061, -0.000253724167, 0.0157313496, 0.00624691043, 0.0371700227, 0.00221629511, -0.014500075, -0.0202653389, -0.0384447537, -0.0172523372, 0.000688065484, 0.00347835221, 0.0233073141, -0.00169119262, 0.0103427107, -0.0152533259, -0.00775703322, -0.036764428, -0.0167598277, -0.0199901145, 0.0127183478, 0.01344987, 0.0226989184, 0.0147318449, 0.0154126668, -0.0159631204, 0.0304487087, 0.00312164449, 0.0257698633, -0.0304776803, -0.0081409011, -0.018020073, 0.0052401619, -0.00831472874, 0.00886518, 0.0221339799, 0.00147843547, 0.0207143929, -0.0151953837, -0.0315206423, -0.00122946443, 0.0119506111, 0.0148260007, 0.0245096181, 0.0298982561, 0.0132688, 0.0209461618, -0.00475489488, 0.0208882205, -5.63579961e-05, -0.0225395765, 0.0108931633, -0.00480921566, 0.00979225896, 0.0189471506, -0.0372569375, -0.0152967824, 0.0180345587, 0.0212069023, -0.0282469, -0.00723555218, -0.0263348017, -0.0100674843, -0.00322847581, -0.0172957946, 0.0139568653, 0.0248283, -0.00812641531, -0.00640263036, 0.0245675594, -0.0407045074, 0.00669234246, 0.00244625402, -0.0317813829, 0.0166584272, -0.00222897017, -0.00323209725, 0.00132995821, -0.000957859622, -0.00251143915, 0.0545237586, -0.0121678952, -0.00694946153, -0.0381260701, -0.0287394095, 0.0256539788, 0.016441144, -0.00370831089, 0.00437826943, 0.010690365, 0.00608394761, -0.00175547239, -0.00631933846, -0.0172957946, 0.00581596419, 0.0275950488, 0.00216378504, -0.0182808135, -0.000956048898, -0.0320421234, -0.00148296228, 0.00960394554, 0.0053886394, -0.00499028573, -0.0107410643, 0.00603324827, 0.00539950328, -0.0143769477, 0.00965464581, -0.00991538633, -0.0035399159, 0.00371193234, -0.000688970846, 0.0285221264, 0.0195410606, 0.0114001585, 0.00392197352, -0.0143117625, 0.0243357904, 0.0115595, 0.0177738182, 0.0160645191, -0.011436373, -0.0301879682, -0.0128125036, -0.0107265795, -0.00638090214, 0.0318682976, 0.0431960262, 0.0164556298, 0.023466656, -0.00418271404, 0.00883621, -0.0196424592, -0.00201892899, -0.0349102691, -0.0238867365, 0.0152243543, 0.00922007766, 0.00103753037, 0.00152822968, -0.0210765321, -0.0111104473, -0.0173102804, 0.0342729054, -0.0131384293, 0.00690962607, -0.0230465736, 0.0201204848, 0.00286814664, -0.0316655, -0.0107845217, -0.00240641856, -0.00122041092, 0.00628674589, 0.00105473201, 0.00102304481, 0.00184510194, 0.0322449207, 0.0620562658, 0.000189218015, 0.000570370117, -0.0396905169, 0.0168032832, -0.00664888555, -0.0213517584, 0.00494682882, 0.0100529995, 0.00962567423, 0.0117188422, 0.00341859902, -0.00201349705, 0.0289856642, 0.0022688054, 0.00260740612, 0.0410231911, -0.0214241873, -0.00221267389, -0.0358952917, -0.0172957946, 0.0128632039, 0.0144928321, -0.0161804035, 0.0162528306, 0.0108207352, -0.0182083864, 0.00335341389, -0.0378943, -0.0102702826, 0.0106396656, -0.0111756325, 0.0329112597, -0.0287683811, -0.00213662442, 0.0204391666, 0.0261899456, 0.00559868058, -0.0048671579, 0.0205260813, -0.0119795827, 0.00987917185, 0.00109185127, 0.00612378307, 0.00364493649, -0.0145942317, -0.0111249331, 0.0172088798, 0.0104730809, 0.00558781624, 0.00262551312, -0.0336934812, 0.0138771944, 0.00480559422, 0.00051695446, -0.0113132456, 0.00840164162, -0.0423848368, 0.00916937832, -0.017266823, -0.0184546411, 0.00228329096, -0.0109438626, -0.00707258889, 0.0206709355, -0.0057181865, -0.0240460783, -0.0274646785, 0.00660905, -0.0118419696, 0.0108279781, 0.00634830957, 0.0389372632, -0.00511341309, -0.0123199942, 0.00320493663, -0.00838715676, -0.0145362895, -0.00619983254, -0.0283482987, 0.0299272276, 0.0216704421, -0.00227785902, 0.0118419696, -0.0144204041, -0.0195555463, 0.00753974915, 0.00617448241, -0.0333168544, 0.00143226271, -0.0296664871, -0.0183242708, -0.00981398672, 0.0345626175, 0.00158979348, 0.00361777609, 0.0147028733, 0.025494637, -0.0089013949, -0.00345119182, -0.0184546411, -0.00612016162, 0.00482370146, -0.010241312, 0.018237358, -0.0298982561, 0.0115595, -0.0123706935, -0.022872746, 0.00967637356, 0.018541554, 0.00910419319, -0.00781497546, -0.00645695161, 0.0104730809, 0.0029079821, 0.00691324752, 0.0253063254, -0.0017962131, -0.0204391666, -0.0352289528, -0.0017437028, 0.0053958823, -0.00854649767, -0.0309701897, -0.00661991443, -0.0178172756, 0.0178317614, 0.0138989231, 0.0152098695, -0.016890198, 0.0125807347, 0.0138989231, -0.0129501168, -0.0215400718, 0.0115667433, -0.00848131254, 0.0128632039, 0.00924180634, 0.0122837797, -0.00318864034, 0.0133629562, -0.019656945, -0.0223222934, 0.00685892673, -0.00276674749, 0.0123924222, -0.00448691146, 0.0310860761, -0.0116536571, -0.0224092063, -0.0221484657, -0.0199611429, 0.00550090242, 0.000672221882, -0.0321869813, 0.0160645191, -0.0179476459, -0.00197185087, -0.0356055796, 0.000836090127, -0.00182156288, 0.037083108, 0.0383578427, -0.00892312359, -0.010914892, 0.00279390812, -0.050670594, -0.0245820452, 0.00298041012, 0.0170495398, 0.0101326695, 0.0168032832, -0.0112046031, 0.0214966144, 0.00470057363, 0.00565662282, 0.0216849279, 0.00933596212, 0.0258712638, -0.0190195795, -0.00897382293, -0.0100457566, -0.0163542312, -0.00788016059, 0.012486578, -0.0287394095, 0.00115975249, -0.00027794225, 0.00466435961, -0.00276674749, -0.00936493371, 0.0150794983, -0.0135947261, 0.0156878941, 0.0352868959, -0.0179186743, -0.00751077803, -0.0335196555, 0.0163252596, -0.0150650134, -0.00238469, -0.01928032, 0.0205260813, -0.00255670655, -0.000556789862, -0.0429642573, 0.0332878865, 0.0157892928, -0.015543038, -0.00591736333, -0.0102630407, 0.0170060825, -0.0178172756, -0.0326215476, 0.00709069613, 0.0179041885, -0.00905349385, 0.0107338214, 0.00692049041, 0.00669234246, 0.00180617196, 0.0028627147, -0.0112335747, -0.0181069877, -0.017411679, 0.0273777638, 0.0126604056, -0.00129283883, 0.000403785816, -0.0507285334, 0.00299127423, 0.00522929803, 0.0129428739, 0.0207578503, 0.000375719974, 0.0141958781, -0.0369092822, -0.0288408082, 0.00782221835, 0.0195700321, -0.00267078052, -0.0195265748, 0.00571456505, 0.0248283, -9.79474789e-05, 0.00511341309, -0.0206564516, -0.015543038, 0.0123417219, -0.000985925435, -0.0183242708, 0.0139423795, -0.0191064924, -0.00165497861, 0.00971983094, -0.00877102464, -0.00428049173, 0.0185705256, -0.04082039, 0.00822781492, 0.00911143608, -0.000456975074, 0.0181504432, -0.0122113517, -0.0104803238, -0.00964016, -0.00218189182, -0.0120230392, -0.00968361646, 0.00517859822, 0.0137323393, -0.00811917335, 0.0015300404, -0.0148187578, -0.0128921745, 0.00696756877, 0.0154995807, 0.000383641775, -0.0149636138, 0.0120447678, 0.0308253337, -0.0035399159, 0.0193092916, -0.00677925581, -0.00197547232, 0.00708345324, 0.0158762056, 0.00357794063, 0.00138337375, 0.0172378514, 0.0199901145, -0.0101399124, -0.020931676, -0.000943374, 0.00800328795, -0.0190340653, -0.0150650134, -0.0122041088, 0.0282613859, -0.0114870723, -0.00507357763, -0.000839258835, 0.000282695342, 0.0104151387, -0.0233797412, -0.000350822869, 0.00257481355, 0.00362682948, 0.00352724106, 0.0141306929, -0.0513659, -0.00279390812, 0.00938666239, -0.000928888447, -0.00517859822, -0.00309991627, -0.0181359574, 0.017788304, -0.00885069557, -0.00364131504, -0.0213227887, -0.0164701156, 0.00559868058, -0.000761851494, -0.0029007392, -0.0246689599, -0.00988641474, -0.0445287041, 0.0147897871, 0.00932147726, 0.00563127315, -0.010089213, 0.0110380193, 0.00781497546, 0.0115667433, -0.00505909231, -0.00550090242, 0.0127400756, -0.00451226113, 0.00837991387, -0.00916213542, -0.0173102804, -0.0081409011, 0.00388575951, 0.000914855511, -0.00189580151, 0.0242778473, -0.00869859662, 0.027363278, -0.0298113432, -0.0211344752, 0.00283012213, -0.0155864945, 0.00691324752, -0.00714863837, -0.0104368674, 0.0105672376, -0.00659094332, 0.00296773505, -0.0349102691, -0.027131509, -0.000612016185, -0.0212503597, 0.0215980131, -0.0269576814, 0.0179331601, -0.00775703322, 0.00370287872, 0.0112553034, -4.78137626e-05, -0.0160500333, 0.00345300231, 0.0179331601, -0.00270880526, -0.0162093751, -0.0107700359, 0.00259473128, -0.000526913325, -0.00582682854, -0.0162093751, -0.00146847661, 0.00532345427, 0.0169336535, 0.00084514363, 0.00904625095, -0.0116681419, 0.00805398822, -0.00894485135, -0.00960394554, 0.0234521702, 0.0114291301, 0.0446445867, 0.0153112682, 0.0182663277, 0.0193527471, 0.0107410643, -0.0217863265, 0.00317234406, -0.0129863312, 0.0196424592, 0.00454847515, -0.00520394789, 0.00901003648, -0.00391835207, 0.0142103629, -0.0318972692, -0.0258278064, 0.0298403148, -0.0312309302, 0.0135802403, 0.00582320709, -0.0254222099, -0.018020073, 0.0358952917, -0.00287357881, -0.00531983282, 0.0151374415, -0.0219166968, 0.0333168544, -0.0142827909, -0.00164501974, 0.00516049145, -0.00289530726, 0.0173102804, -0.0131963724, 0.00824230071, -0.0110452622, -0.0226699468, -0.0109583484, 0.00374090346, 0.00129102822, -0.00976328738, -0.00624691043, 0.0118709402, 0.0183532424, -0.00249152142, 0.0143986763, 0.00366666494, -0.00581596419, -0.0157458354, -0.0270445962, -0.00564213702, 0.00792361703, 0.0160065759, -0.00657283608, 0.0372569375, -0.00756147783, 0.0113204885, 0.00686616963, -0.00154452596, -0.000788106583, -0.00874205306, -0.00787291769, -0.0196279734, -0.012182381, -0.00495045027, 0.0177303609, 0.0335775949, 0.0139206517, -0.00566386571, -0.0161514319, -0.0183097851, 0.00424427772, 0.0125155495, 0.0248572715, 0.00415374292, -0.0083292136, -0.00223802356, -0.00903900806, 0.00208411412, 0.016368717, -0.00201349705, 0.001111769, 0.00956773199, -0.000554526458, -0.0137323393, -0.00769184809, 0.00192658335, -0.0116898706, 0.011211846, 0.0208882205, 0.00250238553, 0.00602238392, 0.00934320502, 0.0331430286, -0.0167163704, 0.0168467406, -0.00379522447, 0.00219999882, -0.00788740348, 0.00369020388, -0.0206854213, 0.0170785096, -0.00281744706, -0.000663168379, 0.0193237755, 0.0227278899, 0.0149636138, -0.00101218058, -0.00540312473, -0.0133412275, -0.00366485422, -0.00541398907, 0.00559868058, 0.002205431, -0.000805308227, 0.0131746437, 0.0200770274, -0.00586304255, -0.00756147783, -0.0281455014, -0.00205695373, 0.0141958781, 0.0116174426, 0.00683719805, -0.0256539788, 0.00530896848, 0.000861439912, 0.00461003883, 0.0212648455, 0.00679012, 0.0134788407, -0.00306008081, -0.00252230326, 0.0299851708, 0.0137468241, -0.00344757037, -0.0100747272, -0.000201666568, -0.0213227887, -0.00387127372, -0.0123272371, 0.00297678867, 0.00629036734, 0.0098429583, 0.00579785742, -0.00382781704, 0.0140075646, -0.00738765066, -0.00546468887, 0.0244082175, -0.0153547246, 0.0305645932, -0.00366304349, 0.00481645856, 0.00864065439, -0.00590649899, -0.0109221349, -0.0157603212, 3.40566953e-06, -0.0126966191, -0.0095604891, -0.00882896688, 0.000490699371, 0.0359242633, 0.00322666508, 0.00806847308, -0.0122041088, 0.0280585866, 0.0127690472, 0.00603324827, -0.00675390614, 0.00740213646, 0.00676114904, 0.015543038, 0.00478748744, -0.000480740506, 0.013906166, -0.00897382293, 0.00471143797, -0.00250238553, 0.0109366197, 0.0141306929, -0.00472230231, 0.0108569497, -0.0112480605, 0.0012186002, -0.00637003779, -0.022872746, 0.0126893762, -0.00353629445, 0.00691324752, -0.00250962842, -0.020410195, 0.0101036988, 0.0384737253, 0.00545382453, -0.00884345267, -0.00132181006, -0.0130949728, 0.00713415304, -0.0122041088, -0.0150215561, -0.016441144, 0.00803950243, -0.00190666574, -0.0102847684, -0.0160934906, -0.00227423757, -0.00856822636, 0.00263999868, 0.0143697048, 0.00101670728, -0.0131746437, -0.0167743135, 0.0037445249, -0.00253678882, -0.0428773463, -0.00512065599, -0.00965464581, -0.0071160458, -0.000739670417, -0.00293695321, -0.00354172662, -0.00591012044, 0.00186139822, -0.0169046838, -0.0066452641, 0.00137432036, 0.00123399112, -0.010835221, 0.00227423757, -0.0180490445, 0.01868641, -0.00126024627, 0.00941563305, 0.01098732, -0.0135005694, -0.00894485135, 0.0161948893, 0.0207868218, -0.00063691329, 0.0184111837, -0.0147173591, 0.0114798294, 0.00597530557, -0.0304487087, -0.00221629511, 0.00988641474, 0.0212503597, 0.0147463297, 0.00518584112, -0.0116609, -0.0138047673, -0.00212213886, 0.0142176058, 0.00593547, -0.0177593324, -0.00438551232, 0.00602238392, 0.0264362, 0.00240822928, -0.00943011884, 0.012109953, -0.0267114267, 0.0252483822, 0.00541761052, -0.0108207352, 0.0298982561, -0.00717760948, 0.00656559365, -0.00673579937, 0.0158182643, -0.00700378232, -0.00886518, 0.0126748905, 0.0174406506, -0.00267621269, 0.000467612932, -0.00956773199, -0.0141379358, -0.0157023799, 0.0144638615, 0.0254222099, 0.0146666598, 0.0346495286, -0.00508806342, 0.0134643558, 0.0143479761, 0.00448329, -0.0160934906, 0.0220905244, -0.0168032832, 0.00635917392, -0.0383288711, -0.00974880159, -0.00975604448, 0.0210910179, -0.0202798247, -0.00341135636, -0.0105599947, -0.00207325, 0.00431670574, 0.00435654121, -0.0245385878, -0.00598979136, 0.00664164266, 0.00356888701, 0.0068842764, 0.0134136556, 0.0251759551, 0.00669596391, -0.00859719701, -0.0270590819, -0.0200480558, -0.00118148094, 0.0101181846, 0.00325020426, -0.016890198, 0.00672855647, 0.0106541514, 0.00617448241, -0.0256105214, -0.0226844326, -0.00831472874, 0.00489975046, 0.00361777609, 0.00422979193, -0.00488888659, 0.00456658192, 0.00319045107, -0.0167163704, -0.00197366159, 0.00806847308, 0.0033172, -0.0233362839, -0.0167163704, 0.00131456729, -0.0212358739, 0.000232674778, 0.0112408176, 0.0110018048, -0.0107120937, -1.05105401e-05, 0.0156154651, -0.0120230392, 0.0267114267, 0.00169753, -0.0122258374, 0.0296085458, -0.0115739862, -0.00860444, 0.00929974858, 0.0108931633, 0.000850575685, 0.0140582649, 0.00145580177, -0.0066452641, 0.0169191677, -0.0102920113, -0.0120737385, 0.000164660407, -0.0136743961, 0.0124431215, 0.00218008133, 0.000985925435, 0.00638090214, 0.0224671494, -4.13914422e-05, -0.0147680584, -0.00687703351, 0.0118492125, -0.0181359574, 0.00442534778, -0.0118419696, 0.000668147812, -0.0115957148, 0.00238106889, -0.00399440154, 0.0266679712, -0.0233218, 0.01928032, 0.0131963724, -0.0137106106, 0.013609211, -0.00530534703, -0.0246110167, -0.00283193286, 0.0161804035, 0.0100674843, 0.00650765095, -0.0329112597, 0.0184836127, -0.00519308401, 0.00958221778, 0.00709431758, -0.0124503644, 0.00611291872, 0.0216849279, -0.0056276517, 0.0450212136, 0.00934320502, -0.0030872412, 0.0377784185, -0.00354896951, 0.00969085936, 0.0204246808, -0.0123924222, -0.0024372004, 0.012631434, -0.021525586, -0.00225975201, -0.0260595754, -0.00241909339, 0.000635555247, 0.00469695264, 0.0118347267, -0.00596806267, 0.00788016059, -0.00196098676, -0.0151808979, -0.0192223769, -0.00282106851, 0.0109076491, -0.0117985131, -0.013681639, 0.00223802356, 0.0280875582, 0.00202617189, -0.023625996, 0.0180345587, 0.00453398935, -0.013906166, 0.00455209659, 0.0170205683, 0.0233362839, -0.015543038, -0.00470781652, 0.0184401553, -0.00761942, -0.012254809, -0.0143045196, -0.0315496139, -0.0109076491, 0.0208737347, 0.00466798106, 0.0184546411, -0.00745283579, -0.000878641556, 0.0273922496, 0.0258133207, -0.0117550557, -0.0058521782, 0.0147608155, 0.0102485549, 0.00336608896, -0.00394732319, -0.00566024426, -0.0199901145, -0.00523291901, 0.0216124989, -0.0245241039, 0.00721020205, 0.0369382538, 0.0152098695, -0.00343489554, 0.0258278064, -0.0159631204, 0.00476938, -0.000301707682, -0.0282613859, 0.00175728311, -0.0129790884, -0.00551900966, 0.00621793931, -0.00142139848, 0.00417547114, -0.0213517584, -0.0294781756, -0.00275226193, -0.00795983151, -0.00338057452, 0.00043615204, 0.0282903556, 0.0205405653, -0.0131818866, -0.0223222934, -0.0286235251, 0.00593909156, 0.0172813088, 0.0157313496, -0.00370650017, -0.0241764486, -0.0130732441, 0.010914892, -0.00110452622, 0.00161242718, 0.00185234472, -0.00581958564, 0.0068842764, 0.0449053273, 0.0263637733, -0.00653662207, 0.0125445202, 0.00916937832, -0.00120502, 0.0146956304, -0.013906166, 0.0171799101, -0.00256576017, -0.00514600566, -0.0126748905, 0.00319769396, -0.002205431, 0.00504098507, 0.00682271272, -0.0162818022, 0.00180436124, 0.026610028, 0.0117260851, 0.023625996, 0.0120664965, 0.00483818678, -0.0177013911, -0.000599793915, -0.0106758792, -0.0157458354, -0.00852477, 0.00345662376, 0.00739127211, 0.0431091152, -0.0127980188, -0.0146376882, 0.0244371891, -0.000700740376, -0.00541398907, 0.0158617198, 0.00817711558, 0.0134933265, -0.0156734083, 0.0119795827, 0.00815538689, 0.00111086364, 0.00868411083, 0.0130225448, -0.00500477105, 0.00715226, 0.0214676429, -0.0107772788, -0.0295795742, 0.00315966923, -0.00581596419, 0.00692411186, 0.00165588397, -0.0148115149, 0.00574353617, -0.00378798158, -0.0119143976, 0.0135874832, 0.00922007766, 0.00190847646, 0.0194976032, 0.00158798276, -0.0144783463, -0.0150070712, 0.0188167803, 0.0160500333, -0.00785119, 0.00883621, -0.0137757957, -0.0064134947, -0.0050083925, 0.0101761268, 0.0193382613, -0.00612740451, 0.0196134876, 4.920008e-05, -0.0026943197, -0.00947357528, -0.022278836, -0.00661267154, -0.0179331601, 0.00906073581, -0.000883621, -0.0281165298, -0.0076773623, -0.00689876219, 0.0188602377, -0.0216414705, 0.00339506, 0.00764114829, -0.00472954521, -0.0192223769, 0.00666699279, 0.0131239444, -0.020250855, 0.00687703351, 0.0118347267, -0.0212358739, 0.00030487639, 0.0169915967, -0.0122837797, 0.0131963724, 0.00196460797, -0.0111466609, 0.0122041088, -0.0087999953, 0.0243213046, 0.012406907, 0.020555051, 0.016441144, 0.0072065806, -0.0122041088, 0.000192952575, 0.0149056716, -0.0142683061, -0.00195555459, -0.027580563, -0.0305356234, 0.0286814682, -0.00627226, 0.00512789888, 0.00968361646, 0.0141306929, -0.00239555445, -0.00446880423, 0.0196859166, 0.0377494469, 0.0222498663, 0.0106976079, -0.0183242708, 0.016586, 0.0102485549, -0.0153402397, -0.00493596448, 0.0135874832, -0.01031374, 0.0223802365, -0.00508444197, -0.00504098507, 0.00660180766, -0.023988137, -0.0054791742, 0.0200625416, 0.00945184752, 0.0185994972, -0.0142393345, 0.00488526514, -0.00646057306, -0.00716312416, -0.0215835292, -0.0180055872, -0.0197004024, -0.0160065759, 0.0261320043, 0.0254077241, -0.00629398879, 0.0115739862, 0.0296664871, 0.00370468944, -0.00361777609, 0.0119288834, -0.0180055872, -0.00731884409, 0.0206419658, 0.0193382613, 0.022423692, -0.00478024455, 0.00079127535, -0.00153818855, 0.000155946429, -0.00370287872, 0.00121588423, 0.0168322548, -0.0149925854, -0.018382214, -0.02062748, -0.0165425427, 0.0116609, -0.00185777689, 0.0152533259, -0.00989365764, 0.00107827107, 0.00646057306, -0.000475308421, 0.0188022945, -0.0181069877, 0.00193925831, -0.0163976867, 0.0111539038, 0.00383868115, -0.0026490523, -0.0239736512, 0.00329728238, -0.00710518146, 0.000966913125, 0.00726814475, 0.00891588069, -0.0161079764, 0.00150106917, 0.0058087213, 0.0098429583, -0.0135367839, -0.0165715143, 0.00262189168, 0.00244263257, 0.0171509385, 0.0322159529, -0.00836542808, 0.0027395871, -0.0111104473, 0.00692773331, 0.0079743173, -0.00206781784, -0.00698567554, -0.0127907759, 0.0248572715, -0.0194396619, 0.0234376844, -0.0128776887, 0.0217428692, 0.00849579833, -0.0157892928, -0.0033172, 0.0225250926, 0.0104585961, -0.0146666598, -0.0100674843, 0.0127400756, 0.0040813149, -0.0131601579, 0.0322449207, 0.00571456505, 0.0272618793, -0.0143045196, -0.0293188337, -0.0106251799, 0.0253208112, 0.00512065599, 0.00793086, -0.00982123, -0.00267078052, 0.0277833603, 0.00805398822, -0.0294347182, -0.00181522546, -0.00413201423, -0.0193672329, 0.00104386779, 0.0228292886, -0.0222353805, 0.0145507744, -0.00132814748, -0.000272283825, 0.00161242718, 0.00977053, 0.0318103544, 0.0007025511, 0.00388575951, 0.0054791742, 0.0317524113, -0.0272763651, 0.0102485549, -0.0150360418, -0.0119650969, -0.0255236086, -0.0198307727, 0.0169626251, 0.000754608656, -0.00565300137, 0.0209027063, 0.025639493, 0.0197004024, 0.0172813088, 0.0135802403, 0.011508801, 0.00364131504, -0.0174841061, -2.07947433e-05, -0.0151229557, -0.000722921453, 0.00476575876, 0.0178172756, -0.00492147915, 0.00060251, -0.0225395765, 0.0132832853, -0.005942713, 0.00748180691, 0.0155720087, 0.0264941435, 0.0084306132, 0.00392197352, 0.00160880585, 0.00930699147, -0.00944460463, -0.00648230128, 0.0076773623, 0.00264724158, -0.00574715761, -0.0251469836, -0.00767012, 0.0067937416, -0.00263818796, 0.0124720922, -0.00409942167, 0.00212213886, 0.012037525, -0.0222643521, -0.0322738923, -0.0008492177, -0.0254222099, -0.0112190889, -0.00781497546, 0.00224526646, -0.00895933714, -0.00630847411, 0.0147028733, -0.00152732432, -0.00709069613, 0.0170785096, 0.00436740508, 0.0178752169, 0.0181939, 0.00759044895, 0.00241909339, 0.0136164539, 0.0347074717, 0.0200625416, -0.016296288, 0.000638271275, 0.00533431815, -0.00929250568, -0.0136671541, -0.0101109417, -0.0159486346, -0.000730616914, 0.0111901183, 0.00746732159, -0.00353810517, 0.00450139679, 0.0151808979, -0.00279390812, -0.0240605641, -0.0104441103, 0.00786567479, 0.000844690949, 0.0287394095, -0.0164121725, 0.0202798247, 0.000197479327, -0.021902211, 0.00100855913, 0.00807571597, -0.00813365821, 0.00144222146, 0.0133484704, 0.00640263036, -0.0162238609, -0.0297244303, 0.00300757051, 0.0137033677, 0.00723555218, 0.0116826277, -0.0187298674, 0.00201168633, 0.0267838556, 0.0011660899, -0.00138156314, -0.021525586, 0.00365217938, 0.0280151293, 0.0115305297, 0.00957497489, -0.00739851501, -0.0212793313, -0.0151664121, 0.0169915967, -0.0228872318, 0.00426238496, -0.0018052666, 0.0179911014, 0.0149925854, 0.00360872247, 0.00541398907, 0.00645333, 0.0115957148, -0.0121534094, 0.0141089642, -0.0225395765, 0.0101036988, 0.00635917392, -0.00563489413, 0.00423341338, -0.0142103629, -0.0152678117, -0.00896658, 0.00300213834, -0.0274212211, -0.00140962889, 0.00313069811, -0.0117767844, -0.00961843133, 0.0244516749, -0.0191499498, 0.0217428692, -0.0142103629, -0.0188312661, 0.00184329122, -0.00801053084, -0.0133122569, 0.000279526605, -0.0280730724, -0.00495769316, 0.00157530792, -0.016586, 0.0299562, 0.0076846052, 0.0014051022, 0.0113856737, 0.00514600566, -0.00761942, 0.00400526542, -0.00764114829, 0.000539588218, -0.00424065627, 0.0090897074, 0.01928032, -0.0109800771, -0.00564938, 0.0111539038, 0.0104223816, -0.0118347267, -0.00708345324, -0.0122041088, -0.00400164397, 0.0063302028, -0.00246798224, -0.000727448205, 0.011733328, -0.00819884334, -0.00344575965, -0.0354896933, 0.0192513485, -0.0175420493, -0.00572180795, 0.00361777609, 0.0218008123, 0.00774979033, -0.0161224604, -0.000517407141, 0.00576888584, -0.0163252596, -0.0307094492, 0.000994073576, -0.001466666, 0.0111539038, 0.00612740451, 0.00496131461, -0.00453036791, -0.0069820541, 0.012703862, -0.0198742282, 0.0157313496, 0.00047485574, 0.015543038, -0.00109728344, -0.00618534675, -0.0188312661, 0.0115232868, 0.0192223769, -0.00487802224, 0.00455571804, -0.0137033677, -0.0191789214, -0.00194650108, 0.00594633445, 0.0268128254, 0.0152098695, 0.0167598277, -0.00899555068, -0.0149346432, 0.00914765, -0.0152098695, 0.00126386771, -0.00877102464, -0.0138482237, 0.0209171921, 0.00173555466, 0.00948806107, -0.00696756877, -0.0139278946, 0.00316148, 0.00972707383, -0.00260921684, 0.0151664121, -3.76568751e-05, -0.0150939841, -0.0179476459, 0.00708707469, -0.0573339649, -0.00498666428, 0.04050171, 0.0158037785, 0.00587752787, -0.00338419597, -0.0119940685, -0.00763390586, -0.00350008067, 0.0232348852, -0.00437826943, 0.0018758839, 0.00679012, 0.0156734083, -0.00786567479, -0.00833645649, 0.0214821286, -0.00147934083, -0.0161948893, -0.00038183108, 0.00192839408, -0.00664164266, 0.019888714, -0.0133991707, -0.00491423625, 0.000632386538, -0.000718847383, 0.000643250707, -0.00841612741, -0.00289349654, 0.00714139547, 0.0134860836, 0.000503826886, -0.0123127513, 0.00553711643, 0.0048671579, 0.00121588423, 0.000165678925, 0.00806847308, -0.0173827074, 0.0156444367, -0.00563489413, 0.00544296, -0.00258929911, 0.00254222099, 0.00847407, -0.0098502012, 0.00500477105, -0.0189326648, 0.00672131358, 0.000854649756, 0.0147535726, -0.00299851713, -0.0150070712, -0.0189616363, -0.00474040909, 0.000928888447, -0.00607670471, 0.0241040215, 0.0261899456, 0.0143697048, -0.0174261648, 0.00399802253, -0.00614189, 0.00875653885, 0.00357431918, 0.00149563712, 0.00332263205, 0.000572633464, -0.00613826839, -0.00878551, -0.0042225495, 0.000192273568, -0.013232586, -0.0107990066, 0.0114870723, -0.0125300353, 0.001868641, 0.00622518221, 0.00175909384, 0.00905349385, -0.00564938, 0.0112408176, -0.0240315925, 0.0138699524, 0.00198995788, -0.00714501692, 0.0012502874, 0.00612016162, -0.00811193, 0.00358156208, 0.00563489413, -0.0178172756, 0.016890198, 0.00878551, 0.0188167803, -0.0225250926, -0.0078584319, 0.00569283683, -9.16100398e-05, -0.00285366108, 0.00146847661, 0.0237418804, -0.00627588155, 0.036764428, -0.0259436909, -0.013609211, -0.0230610594, 0.00880723819, -0.00456296094, 0.0278992448, 0.00671044923, 0.00514238421, -0.0113494592, 0.0146594169, 0.0300720837, -0.000975061266, 0.0033968708, -0.00566748669, 0.022278836, -0.00971258804, -0.0254511815, 0.0143334912, 0.00294600683, 0.0048671579, -0.00508444197, 0.00683357706, -0.0195845179, -0.0371989943, -0.00400164397, 0.0148767009, 0.0312309302, 0.0102050975, -0.00337514235, -0.000639176636, -0.0244951323, -0.0218442697, 0.00835818518, -0.007362301, -0.00209678919, 0.0202073976, 0.000545925635, 0.00286452542, -0.00661629299, -0.00673217792, -0.0029532495, 0.000540946261, 0.023249371, -0.0147897871, -0.00373003935, -0.0342149623, -0.00950979, 0.00963291712, 0.00695308298, -0.00377349602, -0.0135078123, 0.0257843491, 0.0109366197, 0.00201711827, -0.0240895357, 0.000182314718, 0.0114508588, -0.0218442697, 0.00499028573, 0.00230683014, 0.0195265748, -0.00471143797, -0.00976328738, -0.00774254743, -0.0097343158, 0.0197873153, 0.00475851633, 0.0122258374, -0.0134136556, 0.000827489304, -0.00550090242, -0.00415736437, 0.00687703351, -0.0218442697, 0.0176724195, 0.0221339799, -0.00103662501, 0.00395094464, 0.0083292136, 0.0191209782, -0.0152388401, 0.00619621109, 0.0046353885, -0.00754699204, 0.0112625463, 0.027580563, 0.0157313496, 0.014203121, 0.0116536571, -0.0245096181, -0.001868641, 0.0110090477, -0.00578699308, -0.0151229557, 0.0226699468, -0.0286235251, -0.0129356319, 0.00274501927, -0.00677925581, -0.00320131518, 0.000789011945, -9.99420809e-06, 0.0167743135, -0.000607489434, -0.00769184809, 0.00133901171, -0.011059748, 0.00870583951, 0.0104441103, 0.0090897074, -0.000372551265, -0.0110525051, 0.0115957148, 0.000400843419, 0.00231588352, -0.00637003779, 0.0137395822, 0.023843281, -0.0199176855, -0.00577250728, -0.000180051356, -0.00458106771, 0.00846682675, -0.00592822768, -0.00264543085, 0.00705810357, -0.0347074717, 0.0145435315, -0.00971258804, -0.00790188927, -0.0111611467, -0.0065619722, 0.0284496974, -0.0006559256, 0.0233218, 0.0110018048, 0.0132398289, 0.00239555445, 0.019063035, -0.0107410643, -0.00870583951, 0.00815538689, -0.00588839222, -0.00431670574, 0.00383143849, -0.0291884635, 0.0122113517, -0.00537777506, 0.00876378175, 0.0131094586, 0.000420082099, -0.00679012, 0.0125879776, 0.0103064971, 0.0372569375, 0.0147390878, 0.0112263318, 0.00300757051, -0.0149781, -0.00201530755, -0.00378436036, 0.00966913067, -0.0186719242, -0.0106613943, 0.0103282258, 0.000574444188, -0.000325473084, -0.00174008147, -0.00499390718, 0.00361777609, -0.000264588336, 0.00634830957, -0.00392921595, -0.0212648455, -0.0198742282, -0.0107845217, -0.026639, -0.00644246582, -0.00305645936, -0.00104929984, -0.0051641129, -0.00366847566, -0.000267530733, -0.000326831127, -0.0122185946, 0.0179766174, -0.00201349705, 0.0041646068, -0.00979950093, -0.00560592301, -0.00833645649, -0.00408493634, 0.0129428739, 0.00939390529, -0.0307673924, 0.0167598277, 0.0075035356, -0.00335522462, 0.0145290466, -0.0298403148, -0.0107555501, -0.0212938171, -0.0212793313, 0.00392921595, 0.00545382453, -0.0528724, 0.00737678632, 0.0144928321, 0.00539950328, -0.00286090397, -0.000417366042, 0.00157078111, 0.00692411186, 0.0020442789, 0.0221919231, -0.0135874832, -0.0141958781, 0.012559006, 0.00893036555, 0.00693135476, -0.0145145608, -0.00667785667, 0.0130877299, 0.00941563305, 0.00990814343, -0.00435654121, 0.00697118975, -0.00182518433, 0.0216849279, -0.00267078052, 0.00069078157, -0.0079743173, -0.0307384208, -0.000553168473, -0.012928389, -0.0174261648, 0.0139713511, -0.0268707685, 0.000438189076, 0.0125662489, -0.00340592419, -0.00124395, 0.0118347267, 0.0262623746, -0.00160699512, -0.0173537359, -0.00321217952, -0.00567110814, 0.00493234303, -0.00276674749, -0.00318682962, -0.0169191677, -0.0201639403, 0.0277399048, 0.00392559497, 0.0140437791, 0.00312345522, 0.00619258964, -0.0382419564, -0.0061817253, -0.00690962607, 0.00830024295, 0.00842337, -0.0147318449, -0.00354353734, 0.00525826914, 0.0106106941, -0.00765563408, 0.0604338795, 0.0201784261, 0.0177448466, -0.0125662489, 0.00554798078, -0.0113929166, 1.69399345e-06, 0.0396036021, -0.0150215561, -0.0134788407, 0.000238559558, 0.0112480605, 0.00319588324, 0.000710246561, 0.00333711761, -0.0146232024, -0.0161224604, -0.0226120055, 0.00965464581, 0.0136671541, 0.0164846014, 0.0133919278, 0.0017437028, -0.014652174, 0.00873481, 0.00247703586, 0.008293, -0.00761217717, -0.0251324978, 0.0199032, -0.0045376108, 0.00165226252, 0.00798156, 0.00607308326, -0.0419502668, -0.00316329068, -0.0331430286, -0.0120809814, 4.07760854e-06, -0.00761942, 0.0148187578, 0.00892312359, 0.00820608623, 0.0125010638, 0.00990090054, -0.00492147915, -0.0114653446, 0.00350189116, 0.00725003751, -0.0162818022, 0.00644246582, -0.0223078076, -0.00073740707, -0.0297823716, 0.000329999835, 0.00190123369, 0.00686616963, -0.00293695321, 0.0104875667, 0.0313757882, -0.0234956257, 0.00386403105, 0.0152388401, 0.00309991627, 0.0039835372, 0.0303328242, -0.00130641914, 0.0122620519, -0.0249731559, -0.00503012119, 0.000824320596, -0.00840164162, -0.00277399039, -0.00476575876, 0.022800317, 0.000216038985, -0.0127907759, -0.00426238496, -0.00569645828, 0.00706534646, -0.00630123168, 0.000693497597, -0.020931676, -0.0184111837, 0.0109583484, 0.0177593324, -0.012406907, 0.00783670414, -0.00743835047, 0.0173102804, 0.00910419319, -0.0169771109, 0.0177593324, 0.00560230156, 0.00577612873, -0.011436373, -0.018382214, -0.0165280569, 0.0286524966, 0.00754699204, 0.0259581767, 0.0163976867, -0.0222064089, -0.00364131504, -0.0216414705, 0.0125155495, -0.0178462472, -0.0106976079, -0.0013824685, 0.00362501875, -0.00115884712, -0.00361234392, 0.0212793313, 0.022872746, -0.0014051022, -0.0103354678, -0.00707621034, 0.0113856737, 0.00764839118, -0.00466798106, 0.00391110918, 0.00314518367, -0.00629398879, 0.0275660772, -0.00808295887, -0.01868641, 0.00470057363, -0.0234521702, 0.00410666456, 0.00289349654, 0.00943736173, -0.0137757957, 0.00437464798, -0.0114146443, -0.00360510102, -0.00254222099, -0.0197728295, 0.00637003779, -0.00599341281, 0.0321290381, -0.000392921618, 0.00249514286, 0.00246979296, 0.0183966979, 0.0103644393, -0.000992262852, 0.0114581017, -0.030419739, 0.00588839222, 0.00258386694, -0.0115015581, 0.0244951323, 0.00279390812, -0.00687703351, 0.0128414752, 0.00803225953, -0.00693497621, -0.00752526382, 0.0134571129, 0.0105744805, 0.0030944841, -0.0147318449, -0.00732608698, 0.00975604448, 0.0152967824, -0.0227858331, 0.0131601579, 0.0110162906, 0.0202218834, 0.0276819617, 0.00489612948, 0.0217718408, -0.0098429583, 0.0152533259, -0.0200045984, 0.00307999854, -0.0143697048, -0.00348559488, -0.0126893762, -0.0230320878, 0.00371917523, 0.00925629213, -0.00739489356, 0.0487584956, 0.0226264913, -0.013978594, 0.0115739862, -0.00157983461, 0.00782946125, 0.0153836962, -0.00170477282, -0.000906254689, 0.0262768585, 0.0036286402, -0.0142103629, -0.00757596316, 0.000225658325, 0.00145489641, 0.0210910179, -0.00518946256, 0.0215111, -0.00271242671, 0.00165588397, 0.00831472874, -0.02900015, 0.0104006529, -0.0153112682, -0.0117912702, 0.0136961248, -0.0108062495, -0.00033565826]
05 Aug, 2017
std::rotate vs std::rotate_copy in C++ STL 05 Aug, 2017 rotate in STL:It rotates the order of the elements in the range [first, last), in such a way that the element pointed by middle becomes the new first element, i, e, to the left. Output: arr contains: 4 5 6 7 8 9 1 2 3 rotate_copy:It copies the elements in the range [first, last) to the range beginning at result, but rotates the order of the elements in such a way that the element pointed by middle becomes the first element in the resulting range, i.e, left rotate. // Illustrating the use of rotate_copy #include <bits/stdc++.h> using namespace std; // Driver Program int main() { int arr[] = { 10, 20, 30, 40, 50, 60, 70 }; // Use of rotate_copy vector<int> gfg(7); rotate_copy(arr, arr + 3, arr + 7, gfg.begin()); // prints the content: cout << "gfg contains:"; for (auto i = gfg.begin(); i != gfg.end(); i++) cout << ' ' << *i; cout << endl; return 0; } Output: gfg contains: 40 50 60 70 10 20 30 Learn C++ Online – Master everything from basics to advanced concepts. Apply your knowledge with practical exercises and boost your skills. Take the Three 90 Challenge: finish 90% in 90 days for a 90% refund. Start now and level up your C++ programming!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum/Algorithm for Dynamic Time out timer Calculation/Difference between Round trip time (RTT) and Time to live (TTL)/Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms/Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm/Round Robin Scheduling Algorithm with Different Arrival Time/Selfish Round Robin CPU Scheduling/Find the order of execution of given N processes in Round Robin Scheduling/Calculate server loads using Round Robin Scheduling/set::lower_bound() Function in C++ STL/Implementation of lower_bound() and upper_bound() in List of Pairs in C++/Difference between std::set::lower_bound and std::lower_bound in C++/Difference between std::set vs std::vector in C++ STL/std::minmax() and std::minmax_element() in C++ STL/std::rotate vs std::rotate_copy in C++ STL
https://www.geeksforgeeks.org/stdrotate-vs-stdrotate_copy-c-stl?ref=asr10
PHP
std::rotate vs std::rotate_copy in C++ STL
What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, jQWidgets jqxTreeMap width Property, Round Robin Scheduling Algorithm with Different Arrival Time, Difference between Flow and TypeScript, jQWidgets jqxTree destroy() Method, jQWidgets jqxTree collapseAll() Method, Find the order of execution of given N processes in Round Robin Scheduling, jQWidgets jqxScrollView buttonsOffset Property, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, jQWidgets jqxListBox enableHover Property, Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm, std::rotate vs std::rotate_copy in C++ STL, Selfish Round Robin CPU Scheduling, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxSlider buttonsPosition Property, Difference between Round trip time (RTT) and Time to live (TTL), jQWidgets jqxSlider rtl Property, Difference between std::set::lower_bound and std::lower_bound in C++, jQWidgets jqxTooltip opacity Property, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, jQWidgets jqxToolBar height Property, PHP, std::minmax() and std::minmax_element() in C++ STL, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, Node.js date-and-time Date.transform() Method, TypeScript Optional Parameters, jQWidgets jqxToolBar theme Property, Difference between std::set vs std::vector in C++ STL, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, Steps to Diagnose and Resolve a Slow Network, How to use Optional Chaining with Arrays and Functions in TypeScript ?, Calculate server loads using Round Robin Scheduling, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, jQWidgets jqxScrollView showButtons Property, Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms, jQWidgets jqxScrollView disabled Property, jQWidgets jqxSplitter destroy() Method, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, set::lower_bound() Function in C++ STL, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, jQWidgets jqxTree collapseItem() Method, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), jQWidgets jqxSortable opacity Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, jQWidgets jqxSlider height Property, jQWidgets jqxSwitchButton onLabel Property, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, jQWidgets jqxToolBar tools Property, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTree width Property, Implementation of lower_bound() and upper_bound() in List of Pairs in C++, jQWidgets jqxTree clear() Method, TLS Handshake?, Algorithm for Dynamic Time out timer Calculation, Adhoc TCP, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, jQWidgets jqxTabs position Property, Differences between Wireless Adhoc Network and Wireless Sensor Network, jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, Impact of Three-way Handshake and Slow Start Algorithm, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, How to Sort an Array Having Optional Properties in TypeScript ?
GeeksforGeeks
[0.000111256166, -0.00324647012, -0.0193297565, 0.0433740877, 0.00945688225, -0.00288074394, -0.0142962551, 0.0151559711, -0.0142269228, 0.015183704, -0.0113427127, -0.0202310719, -0.00084758352, -0.0379107296, -0.00820197351, -0.00419111829, -0.0093043521, 0.0443170033, -0.0274554659, -0.00788304675, 0.0261936225, -0.054467205, -0.00759185199, 0.0228656884, -0.00201062742, 0.0255835019, 0.000808584271, 0.00329500251, -0.0101710018, -0.0287311729, 0.0283706468, -0.00474577444, 0.0134296054, -0.0310884621, -0.00922115333, 0.0159740895, 0.0152530363, 0.0171943326, -0.0329188257, 0.0189969633, -0.00171423331, 0.00574762141, 0.0343609303, -0.0425143726, -0.012244028, 0.0235451423, 0.00204182696, -0.0167922061, 0.00897155888, -0.00638547586, 0.0221446361, 0.0379661955, 0.0472844131, 0.0278298575, -0.00140223932, 0.0394360311, 0.00730065769, 0.00615668, 0.0185116399, -0.0408504046, -0.0152946357, -0.000203012707, 0.0116339065, -0.0278853234, -0.0151975704, -0.0132354759, -0.0596255064, 0.0149618415, -0.00437138136, 0.0065276064, -0.0639518201, 0.0330297574, 0.0347491913, 0.0208273269, -0.0121608302, -0.0145735824, 0.0362190269, 0.00740465568, -0.0527477711, 0.0292858295, -0.0453708507, 0.046507895, -0.0670578927, -0.0122578945, 0.0351374485, -0.0013693067, 0.00282527832, -0.0380493924, 0.0199537445, -0.0232816804, -0.0448716581, -0.0123133603, 0.0089230258, 0.00532816304, -0.0242245942, 0.0360249, 0.0191772263, -0.00231222156, -0.011127783, 0.0351929143, 9.35981807e-05, 0.0383267216, -0.0311161932, 0.02947996, 0.0213958491, 0.0261936225, 0.017859919, 0.02074413, 0.00276981271, -0.00259128283, 0.0151698375, 0.00711346138, -0.0360803641, 0.0449825898, -0.0324751027, -0.015363967, 0.0250565782, -0.0104829958, 0.0335289463, -0.000288811047, -0.00291194324, 0.0415714569, -0.0085209, -0.00562282372, -0.0285925101, 0.0195932183, 0.0187473688, 0.00315287197, 0.00219089072, -0.00566788949, -0.0154194329, -0.0120984307, -0.00899235811, 0.00448924582, 0.0136930663, -0.0195377525, 0.00297260867, 0.0345827937, -0.0187335014, 0.015807692, -0.058571659, -0.0098936744, 0.0148093114, 0.0418487862, -0.00375432684, -0.0318095125, -0.00509590097, 0.0364963561, -0.00888142735, 0.02074413, -0.0505291484, -0.0320313759, 0.0292858295, -0.00660040462, 0.042431172, -0.028647976, 0.00978274271, -0.0116131073, 0.011932034, -0.10067004, -0.0046695089, -0.0139218625, 0.0156690273, 0.0140327932, -0.027815992, 0.0176380556, 0.0674461499, -0.0173884612, 0.0110723181, 0.0415437259, 0.00591055164, 0.0425143726, 0.0143378545, 0.0281210523, -0.0274277329, -0.0233371463, -0.0092072878, -0.00265368167, 0.00571988849, -0.0171943326, -0.00630227709, -0.0393805653, 0.0130274799, -0.014767712, 0.0119875, 0.0184977725, 0.0406285413, 0.00159290235, 0.0032447367, -0.00211809203, -0.000379375939, 0.00403165491, 0.0348601229, -0.022463562, -0.00437138136, 0.0181233808, -0.0262768213, -0.0367182195, -0.00146463816, 0.0462860316, -0.0108296555, -0.030700203, -0.0106424596, -0.0108851213, 0.0371896774, -0.0230459515, -0.029895952, -0.0239195339, -0.000577622093, -0.0382989869, 0.00412871968, 0.0329742916, -0.000113314461, 0.00714812754, -0.0248624496, -0.0185532384, -0.0192465577, 0.0331684202, -0.00487057166, -0.0154194329, 0.0340836, -0.0111000501, 0.0369123481, -0.0467020236, -0.0865263119, -0.036163561, 0.0117864367, -0.00192222919, 0.0115923071, -0.0503904857, 0.0125698885, 0.0102611333, -0.0237531383, 0.0157660935, -0.0257083, 0.00753638661, -0.0294244941, -0.0165148787, 0.029868219, 0.031532187, 0.0310607292, 0.0661704466, -0.00151577045, -0.0117656374, 0.0209937245, 0.0419597179, 0.00476310728, -0.00636120932, -0.0171111338, -0.0178460516, -0.00043115826, 0.0234064776, 0.00850703474, 0.0252784416, 0.00242488622, 0.0150311738, 0.00701639662, 0.00672173593, -0.00122024294, -0.00723825907, 0.00557775795, 0.00341460016, -0.0130829448, 0.00277154613, 0.0134504046, 0.00270048063, 0.0143933194, 0.0146290483, -0.0236560721, -0.055215992, -0.00895075873, 0.000657787197, 0.000354893098, -0.04795, -0.00974807702, 0.0227270238, -0.0144903846, 0.00606308179, 0.0345550589, -0.0388259105, 0.0346105248, -0.0242107287, -0.00727985799, 0.00214582495, 0.0107256575, -0.00836837, -0.0228656884, 0.0227824897, -0.00333140185, 0.0126530873, 0.0180263147, -0.035719838, 0.00483937236, -0.0357753038, 0.0537738875, -0.0205916, -0.0104829958, -0.0264016185, -0.0370787457, -0.0121053644, -0.0207857285, -0.036995545, 0.0240165982, -0.0237670038, -0.00137450651, -0.0196209513, 0.0133117409, -0.00867343135, 0.00722439261, -0.0122093624, 0.00556735834, -0.0320868418, -0.00757105276, 0.0341945328, 0.0309775304, -0.0146290483, 0.0302010123, -0.0207025297, -0.0289530363, 0.0132424086, -0.0555210523, -0.0217147768, -0.0324473679, -0.0419874489, 0.0433740877, 0.0038201923, 0.0293412954, 0.0213958491, -0.0271226726, -0.0387704447, -0.0317263156, 0.000430724933, -0.0341945328, 0.0110792508, -0.00896462519, -0.00135977357, -0.0264848173, -0.00665240362, -0.0278021246, -0.00390685722, -4.0976287e-05, 0.0342222676, 0.0315876529, 0.0320591107, 0.0264848173, -0.00439911429, -0.00335046812, -0.0154194329, 0.0282458495, 0.036579553, 0.000682486687, 0.00680840062, -0.00129650813, -0.0141714569, 0.0141090583, -0.0343332, -0.0141506577, -0.0214790478, 0.0340004042, -0.0240027327, 0.000509156729, 0.00716892723, -0.000536022882, -8.569e-05, -0.0503904857, -0.0111000501, -0.0216038451, -0.0265402831, 0.00302287447, -0.0105245952, -0.0371342115, -0.0143933194, 0.0138386637, -0.00727292523, -0.0248208493, 0.0019516953, 0.0302010123, -0.0115507087, 0.0432354249, 0.0141991898, 0.0259578936, 0.000719319331, -0.000352076488, 0.00532123, -0.00108504551, 0.0166258104, -0.023475809, -0.0076611843, 0.0128333503, -0.00348393223, -0.00278194575, -0.00600414956, 0.00794544537, 0.0121261636, -0.038243521, 0.025347773, 0.00586895226, 0.0269978736, 0.00466257567, -0.0417101197, 0.000297044229, -0.0135128032, 0.00915875472, 0.00447884621, 0.00257568317, 0.0422093123, -0.00978967641, -0.00945688225, -0.00167783396, 0.0293690283, -0.00649987347, 0.0472844131, -0.00336780096, 0.00836143736, 0.050279554, 0.0132285422, -0.0026606149, 0.0404344127, 0.00211635884, -0.0215622466, -0.00174196612, -0.0141991898, -0.0245296564, 0.0150866397, 0.00974114332, 0.0231568832, -0.0112803141, 0.00650680671, 0.00748785399, -0.0167644732, -0.0131384106, -0.00491217105, 0.0320591107, 0.0536906868, -0.029119432, -0.0183591098, 0.0223664977, -0.0205777325, -0.0198705457, 0.0142823886, 0.0147538465, 0.0715506077, 0.0137415994, -0.0243493933, -0.0145042511, 0.0028495444, -0.0416269228, 0.0167783406, -0.0138802631, 0.00733532384, -0.03405587, 0.0303119421, 0.016819939, -0.00585855264, 0.0288698375, 0.00537322881, 0.0024543521, -0.0242245942, 0.0445111319, -0.00430204952, 0.0295631569, -0.021368118, 0.0298127532, -0.0186503027, 0.0296186227, 0.00798704475, -0.00116564392, -0.011127783, -0.0219782386, -0.00303674093, -0.0267482791, -0.0387149788, -0.0304228738, 0.00809797551, 0.00954701379, -0.0267898776, -0.0182343107, -0.0200092103, 0.0130968112, -0.0468961522, -0.00531776296, -0.0241829958, -0.0312271249, -0.0280655865, 0.0126669537, -0.034444131, 0.0389645733, -0.0258192308, -0.0290362351, 0.0041044536, 0.0409890674, 0.0116200401, 0.00119857665, -0.00178009865, -0.00619827909, 1.42997214e-05, -0.0511670038, 0.0121954959, 0.0217425097, -0.0339449383, 0.0370787457, -0.00983127486, 0.00692626508, 0.0496417, -0.000661253813, -0.0443724692, -0.00236422056, 0.0251813754, 0.0126184206, -0.0287866388, -0.00735612353, 0.00377166, 0.000705452927, 0.0120706987, -0.0250981785, 0.015779959, -0.0109960521, -0.0284538455, -0.0268869437, -0.00927661918, 0.00155303639, 0.00993527286, 0.0173329953, 0.0252784416, 0.0307279341, 0.0134712039, -0.0129096154, -0.0109752528, -0.00743238861, 0.0231846143, -0.0234342106, -0.00367459515, 0.0020522268, 0.0114744436, 0.0121330973, -0.026984008, 0.0123133603, 0.00124190911, -0.0108643221, 0.0340004042, -0.0348323882, -0.00750172045, -0.0210214574, 0.0302287452, -0.0115923071, 0.00499190297, 0.0063196104, 0.0164732784, -0.0046695089, 0.0158215594, 0.00611161441, 0.0430690274, -0.0268730763, -0.000465390942, -0.0120221656, 0.00564015703, -0.0309775304, -0.0185671058, 0.00951928087, 0.0278991908, -0.003736994, 0.0268314779, -0.00706146238, 0.0244048573, -0.0117309717, -0.0288421046, 0.0315044522, 0.0159740895, -0.00543216104, -0.0183452424, 0.0112248482, -0.0010815789, 0.038659513, 0.00199329457, -0.00416338537, 0.0220753029, -0.0354979746, 0.0246544536, -0.0255419035, 0.0343609303, 0.0320313759, -0.0341113359, -0.0211323891, -0.00998380594, -0.0341945328, -0.0200369433, -0.0212017205, 0.00945688225, -0.00870116428, 0.0259994939, -0.00227235584, 0.0566580966, 0.0165148787, 0.0321977735, -0.0197734814, -0.00500230258, -0.00521376496, -0.0150727732, -0.0106909918, -0.0100808702, 0.0184145756, 0.0330297574, 0.00738385599, -0.0128402831, 0.000556389161, -0.00828517228, 0.00667667, 0.00459324382, 0.030339675, 0.0104691293, -0.0192604251, 0.0399629548, 0.0326969624, 0.00886756089, 0.0198844131, 0.00341286696, 0.00687426608, 0.0646174103, -0.0349710509, -0.029063968, 0.00565402303, 0.000661253813, -0.0069227987, 0.0242939275, 0.00646867417, 0.0617886633, -0.0283290483, -0.00650334, -0.0218257084, -0.0039623226, 0.0260272268, -0.0196070857, -0.0348601229, 0.00584815256, -0.028231984, -0.00393459, 1.86532827e-06, 0.0193852223, -0.00372312753, 0.0178183205, -0.0422925092, 0.00612201402, 0.011647773, 0.042431172, -0.0132701416, -0.000673820206, -0.0107187247, -0.00731452415, -0.00678413454, 0.0183591098, -0.02100759, 0.00429511629, -0.00354113104, -0.00345273269, 0.000244828552, 0.0112387147, 0.0138594639, -0.00182343111, 0.0198428128, 0.0148786437, -0.0191217605, -0.0088259615, 0.0187612344, -0.00167003414, -0.00327246962, 0.00771664968, -0.0393528342, -0.00116564392, -0.00911715534, -0.0126184206, -0.0145181175, -0.00273168017, 0.0138178645, 0.00942221656, 0.0383544527, -0.0217009112, 0.0186503027, 0.02636002, -0.00829210505, 0.0171666, 0.0219505057, -0.00432978244, -0.0120706987, 0.00628494425, -0.00192222919, -0.00430551637, -0.0144487852, -0.00864569843, 0.0138871958, -0.0288975704, -0.0122856274, -0.00517909927, -0.051555261, 0.0157522261, -0.0143517209, -0.0243355259, -0.000672520255, -0.00985900778, 0.0212571863, -0.0069227987, -0.00900622457, -0.0183175094, -0.0379384607, -0.0141575914, -0.0173052624, 0.0377165973, -0.00282181171, 0.0234480761, -0.0455095135, -0.0208134614, 0.00175149925, -0.00626414455, -0.0233094133, 0.0143794529, 0.00954701379, -0.0211323891, -0.00385485822, -0.000465390942, -0.00437138136, -0.00566442311, -0.0313103236, 0.020147875, -0.0137138665, -0.000462357653, -0.00404898776, 0.00635080971, 0.00367806177, -0.0475340076, -0.0222832989, 0.00868729781, -0.000124147584, -0.000534289575, 0.026803745, 0.0194684211, 0.00551535934, 0.00739772245, 0.00822970644, -0.00422578445, 0.0113149798, -0.0175964572, 0.0164316799, -0.0149618415, -0.012556022, 0.0192188248, 0.00370926107, -0.022463562, 0.0111832488, -0.0265818816, -0.00390685722, 0.00319620431, 0.00108417892, 0.0377443321, 0.0285370443, 0.00450657867, 0.0118419025, -0.0265402831, -0.0119181676, 0.0131176114, 0.017859919, 0.0184561741, -0.00582042, 0.00050612347, 0.0242245942, 0.0337508097, -0.00662467116, 0.00168476719, -0.0171111338, -0.00389299076, 0.03405587, -0.00879822858, 0.0226854254, 0.0190662947, 0.0396856256, 0.025139777, -0.0203836039, -0.00891609304, 0.0109475199, -0.00963021256, -0.00714119431, -0.0252923071, 0.0146151818, 0.0193713568, -0.0145042511, 0.00879129581, 0.0475894734, -0.0198566802, -0.000495723682, 0.00713426108, 0.0121469637, -0.0117379045, -0.00889529381, 0.0130066797, 0.00224808953, 0.0287589058, 0.00791771244, 0.000308310671, -0.0338062756, -0.00508896774, -0.0355534405, -0.0283567812, 0.0334457494, -0.0301178135, 0.0143101215, -0.00198982796, 0.0293135624, -0.0156412963, 0.0223387647, 0.0140258605, 0.00879822858, 0.0277050603, -0.0308111329, -0.0193713568, -0.000655620592, 0.0208827928, 0.00526576396, 0.0180540476, -0.0042743166, -0.0358585, 0.0465356261, 0.00718279323, -0.0051375, -0.0306724701, 0.0372728743, 0.00274381321, -0.0261104256, 0.0158215594, 0.000333876844, 0.0149063766, 0.0390200391, -0.0132077429, -0.020120142, -0.00997687224, -0.000538189546, 0.0226299595, 0.00201756065, 0.00874276273, 0.011023785, -0.0158770233, 0.00727292523, 0.0360803641, 0.00793851167, -0.026984008, 0.00922808703, -0.0105731273, 0.00901315734, -0.0084446352, -0.0152669027, 0.00877049565, 0.0156412963, -0.000955914729, 0.0366904847, 0.0225883592, -0.0254309718, 0.00458977744, 0.0117656374, 0.00751558691, -0.031171659, -0.0306447372, -0.00351859815, -0.00588975195, -0.0313103236, 0.0127362851, 0.00391379045, -0.00211289222, 0.0291748978, -0.00151143724, -0.029535424, 0.0124034919, 0.0136930663, -0.0306447372, -0.00226888922, -0.00088094949, -0.0231984816, 0.00348739885, 0.00548416, -0.0102334, 0.0360249, 0.0248901825, -0.00141610578, 0.00208342611, 0.0164732784, 0.0283706468, -0.00797317829, -0.0376888663, 0.00810490921, 0.00241275295, 0.0156412963, -0.0270949397, -0.0179708507, -0.0217009112, -0.00593828456, 0.0146845141, -0.0500022247, -0.0218257084, 0.0393805653, 0.0251813754, 0.0217009112, -0.00897849165, 0.0202033408, -0.0191494934, 0.00549455965, 0.0116963051, 0.0137485322, 0.00864569843, 0.0167090073, 0.00682573393, 0.0255280361, 0.0517493933, 0.0144903846, 0.0487265177, 0.0109544536, -0.00949848164, 0.003639929, 0.0068396, 0.0211323891, 0.0255973674, -0.0208689272, -0.0259024296, 0.00226022257, 0.00399005553, -0.0170972664, 0.0224219635, 0.00767505076, 0.0214374494, -0.00124624243, -0.00111451163, 0.00455857767, 0.0100739375, -0.00985207502, 0.00270741386, -0.0119805671, 0.0176241901, 0.0152669027, 0.000860583212, -0.0138802631, 0.00158770243, -0.0226160921, -0.00245781871, -0.0621214584, -0.0290362351, 0.00653453963, -0.0161404852, 0.0320591107, 0.0104829958, 0.012167763, 0.0376888663, -0.0328078941, -0.0226854254, 0.0244464576, -0.0103373984, -0.0152114369, -0.00551882572, -0.00169343373, -0.0331129543, 0.00817424059, 0.0233510118, -0.0154332994, -0.0344163962, -0.00458284421, 0.0178044531, 0.0137693314, 0.00234862091, 0.0473121442, -0.00453431159, 0.0117864367, -0.0208550598, 0.00827130582, -0.0049468372, 0.00819504075, 0.0101363361, 0.0170556679, -0.0350819826, -0.00183209765, 0.00978967641, -0.0279407892, 0.0347769223, -0.0203142706, -0.0181927122, -0.0148925101, 0.0218257084, -0.0106355259, 0.0577951409, -0.000440474745, 0.0274, 0.0203974694, -0.0286202431, -0.0167644732, -0.0096163461, -0.0262490883, 0.00237982022, -0.0305892713, -0.00761265168, 0.00706146238, -0.0169863366, 0.00295007578, 0.0513888672, 0.00390339061, -0.0238224696, -0.0246405862, -0.0262629557, -0.0166396759, -0.0305892713, -0.0219921041, -0.0107741905, 0.011439777, 0.012063765, 0.0158215594, 0.00665933685, 0.00331060216, -0.0168476719, -0.022435829, -0.0114120441, 0.0321423076, -0.00126010878, 0.0217009112, 0.0126738865, -0.0227547567, 0.00897849165, 0.0356089063, 0.0285370443, -0.0277327932, -0.0189692304, -0.0257083, 0.013284008, 0.0115368422, -0.00109544536, 0.0120568322, 0.000437441486, -0.00751558691, -0.00576495426, -0.015571963, -0.0149618415, 0.00211809203, 0.00324647012, 0.00807717629, -0.024515789, -0.000707619532, -0.0419597179, 0.0112733804, 0.000496590335, -0.000907382346, 0.0125005562, 0.00259301625, 0.00512363343, 0.0326969624, 0.000606221554, -0.00297087547, -0.0143378545, -0.00798011106, 0.0117795039, 0.00144643849, 0.000739252253, 0.0196070857, -0.0084446352, 0.0122162951, -0.0195654854, 0.00521723181, -0.0166674089, -0.010372065, 0.0198844131, -0.0221307687, 0.00448231259, 0.00177836535, 0.019731883, 0.0187751018, 0.00727292523, 0.00438524783, 0.0352206491, 0.00998380594, -0.017027935, 0.00390339061, -0.00945688225, -0.00403858814, -0.0334457494, -0.0126738865, 0.00124537572, 0.00323433708, -0.0101016704, 0.0113080461, 0.0117587047, -0.0134434719, 0.00865263119, 0.0115299085, -0.00589321833, -0.00705106277, -0.00257568317, 0.006901999, -0.00101138034, -0.0152946357, 0.00191009615, -0.0132077429, 0.0099976724, 0.0219366401, 0.00741852215, -0.00159290235, -0.00379939261, 0.0160295554, 0.0629534423, -0.016015688, 0.00303500751, -0.0268176105, 0.0357475691, 0.0168060735, -0.0156690273, 0.00549109327, -0.00407325383, 0.0153917, 0.0256112348, -0.0306170043, -0.0146013154, 0.0281765182, 0.0318927132, 0.00566788949, 0.0419874489, 0.00636814255, 0.00923502, -0.0254864376, -0.0440396741, 0.02204757, 9.67397791e-05, 0.0136722671, 0.0236422066, -0.0301732793, 0.00576842111, -0.0161543526, -0.0371619426, 0.00161716854, 0.0214374494, -0.00732145738, 0.0213819835, -0.0148925101, -0.0274831988, 0.0161543526, -0.00570602203, -0.00301420805, -0.00183383096, 0.00149583758, -0.00610121433, 0.0297850203, 0.0236283392, 0.00564709, -0.0120013664, 0.0154332994, 0.00752252, -0.00171769992, 0.0153085021, -0.00783451367, 0.00461057667, -0.0164871458, 0.0225190278, 0.0063196104, 0.0203836039, 0.00898542535, 0.000597988372, -0.0379107296, 0.00759185199, -0.0225883592, 0.00615321333, -0.00363646261, -0.0173191298, -0.00136584009, -0.000743585522, -0.00592095125, -0.0180263147, -0.00739772245, 0.0274554659, 0.00386179145, -0.0191633608, 0.00773744937, 0.0332516208, -0.00935981795, -0.00576148788, 0.00832677074, 0.011023785, -0.0255973674, -0.0237392709, 0.00966487825, 0.0223526321, 0.00541482773, 0.0130344126, 0.0305892713, 5.02115217e-05, 0.0117448382, 0.00285474444, -0.0262629557, 0.0020262273, -0.0227824897, -0.00582388649, -0.0019759615, 0.00385832484, 0.00598681672, 0.00751558691, -0.00843770243, -0.0216593109, 0.0206609312, 0.00299514178, -0.0364686213, -0.0285093114, -0.00895769242, -0.0127362851, -0.00620521232, 0.015363967, -0.03425, -0.0155580966, 0.00617748, -0.00141350576, 0.0116547067, 0.0100808702, -0.0129858805, 0.036579553, -0.0115992408, -0.0166535415, 0.031532187, 0.0287866388, -0.0140813254, 0.000486190518, -0.0121885622, -0.0257360321, 0.00549455965, 0.00929048564, -0.0151421055, -0.0163762141, -0.00562282372, -0.00126184209, 0.0275663957, 0.0354979746, 0.0145181175, -0.0325305648, -0.0177073888, 0.0191356279, -0.0322532393, 0.0032638032, 0.00474230759, 0.00382365892, 0.0111901825, -0.00189102988, -0.0326414965, 0.0302564781, 0.0254448373, -0.018483907, -0.0143933194, -2.33589199e-05, -0.0209105257, 0.0283429138, 0.00352379796, 0.0434295535, -0.000476224057, -0.0177073888, -0.0110723181, -0.00252368418, 0.00298127532, 0.0175271258, -0.0174161941, 0.0108227227, 0.011127783, -0.00579615356, -0.0343886651, -0.0140397269, -0.00296220905, 0.0215899795, 0.015363967, -0.0112733804, 0.0136168012, 0.00268834759, -0.0263184216, -0.0128264166, -0.00671133585, 0.0397410914, -0.00298300851, -0.00303154089, -0.0143655865, 0.0218811743, 0.00246648537, -0.00159463566, -0.0150034409, 0.0238363352, 0.0189830977, -0.0172636639, -0.0158492904, 0.0173191298, 0.00122890936, -0.0358030349, 0.0113080461, 0.00760571845, -0.00497110328, 0.00200196099, 0.000668620283, 0.0053038965, -0.000862316519, 0.0087219635, -0.00347526558, -0.00592788449, 0.0124450913, 0.0146845141, -0.0103859315, -0.0175964572, 0.00840996951, 0.00469030859, -0.00815344136, -0.00712039461, -0.00409752037, -0.00779984798, -0.00550149288, -0.0302010123, 0.00150103739, 0.0107325912, -0.00408712029, -0.00177229883, -0.00848623458, 0.0130621456, -0.00351859815, -0.0346937254, 0.000783018069, -0.0121192308, 0.0304506067, 0.0115299085, 0.0130690793, 0.00436098175, 0.000679886783, -0.018483907, -0.029895952, 0.000963714556, 0.00283221155, 0.0149895744, -0.00886062719, -0.00577882072, -0.0128472168, -0.0184145756, -0.00389645738, -0.00185809715, 0.0154887652, 0.01473998, -0.00356713054, 0.033196155, -0.034471862, -0.0163484812, 0.0377720632, 0.0221585017, -0.0169308707, 0.00887449365, 0.0103512648, 0.0338340066, -0.00032152707, -0.0046036439, 0.00335220131, -0.0107325912, 0.0100531373, 0.0119736334, -0.0186503027, -0.00863183197, 0.00707879569, -0.00972727686, 0.0197596159, -0.00532123, 0.0199814774, -0.00913795549, -0.0439010113, 0.0238224696, -0.030700203, -0.00548069319, 0.0188167, 0.00685, -0.0271504037, -0.011855769, -0.0171943326, -0.00222382345, -0.00776518229, -0.00345966592, 0.0450657904, 0.00270394725, 0.0119043011, -0.00176363229, -0.0138247972, 0.0113427127, 0.00812570844, 0.00285127782, -0.00926275272, -0.00432978244, 0.00596255064, -0.00543562742, -0.00383059215, -0.00238502026, -0.0143655865, 0.00672866916, -0.00611854764, 0.00677026808, 0.0092072878, -0.0111416494, 0.0158908907, 0.00349606527, 0.0290362351, -0.0277050603, 0.0173329953, -0.00661773793, 0.00997687224, -0.00271608052, 0.0146013154, -0.0209659915, 0.00225155614, 0.0219227728, 0.00827130582, 0.0263184216, 0.000584121968, 0.0139426617, 0.00908942334, 0.010788057, 0.0181788467, -0.0227547567, -0.0223942306, -0.0361080952, 0.0278437249, 0.0102888662, -0.0284538455, 0.00665933685, 0.00520683173, 0.00287207752, -0.0250149798, -0.0152114369, 0.00785531383, -0.0169447362, 0.0182897765, -0.0346659906, -0.00204529357, -0.0134504046, 0.0357475691, -0.00925582, 0.00475964043, -0.010711791, -0.00235902076, 0.00703719631, 0.00599028356, 0.0248208493, 0.0167228747, 0.010399797, 0.0262352228, 0.00262248237, -0.0107187247, -0.00988674071, 0.0313380547, -0.0242800601, 0.00245088572, 0.0199260116, -0.012348026, 0.00752252, 0.00565402303, -0.0121122971, 0.0109891193, 0.0130344126, 0.0141298585, -0.00470764143, -0.0339449383, -0.011439777, 0.0280655865, -0.0115853744, 0.0154610323, -0.0102472669, -0.00618787948, 0.0187335014, 0.00440258114, 0.00378205976, -0.00136757339, 0.001897963, -0.0244048573, 0.0275247972, -0.0126669537, 0.0112872468, 0.0253061745, 0.00956088, 0.0109059205, -0.00399698876, -0.0112872468, 0.0309775304, -0.0231707487, 0.0084446352, 0.0122648282, 0.0183175094, -0.0186641701, -0.0206886642, -0.00371966092, -0.00182343111, -0.0292026307, -0.00784144737, 0.0259301625, -0.0288975704, -0.00608734833, 0.0155026317, 0.0101918019, 0.0120845642, 0.00270914729, 0.0323364362, 0.0465910919, 0.0164316799, 0.024307793, -0.00974807702, -0.0467020236, -0.00797317829, -0.0119043011, -0.0105176615, -0.0173745956, 0.0393251, 0.00666627, 0.00292061, 0.0135544026, -0.00838223659, -0.0185116399, 0.0168338064, -0.00883982796, -0.0240165982, -0.011335779, -0.00912408903, -0.0122093624, -0.00336606777, 0.0197596159, -0.00332966843, 0.0130829448, -0.00144470518, 0.00380979246, -0.0111069838, -0.0205084011, -0.0614558682, -0.0077443826, 0.00168563379, 0.0064756074, 0.00778598152, 0.0153085021, -0.00130084134, -0.0287034418, -0.0128402831, -0.000353376439, -0.00133290736, -0.0347214565, 0.0193713568, 0.00430204952, 0.0158354249, 0.0139842611, 0.00907555688, 0.00252021756, -0.00622254563, -0.0283567812, 0.00368846161, -0.018067915, 0.00535242911, 0.0102542005, 0.0372451395, -0.00200196099, 0.0189553648, 0.00446497975, 0.014767712, -0.0150034409, -0.00504043512, 0.0110515179, 0.0165287443, -0.00163796812, -0.0248901825, 0.0164594129, 0.0292303637, 0.0124589577, 0.0169447362, 0.00668013655, 0.0197457485, -0.0150727732, 0.0222139675, 0.00970647763, 0.0202588048, 0.0100254044, 0.0129096154, -0.00496417, -0.00298474194, 0.00713426108, -0.00458977744, -0.0193436239, 0.0409058705, 0.0169170033, -0.00221342361, 0.0101571353, -0.0163762141, 0.0136861335, 0.0252368413, 0.0212571863, -0.00752252, -0.0018424975, -0.0204529352, 0.030700203, -0.0314212553, -0.000175496578, 0.0183313768, 0.00399005553, -0.0195100196, 0.00870116428, -0.0127154859, 0.0171111338, 0.00550495926, 0.0104275299, 0.0126738865, 0.0160295554, 0.0165564772, -0.00800784398, -0.00104171305, -0.00536976196, -0.00670786947, -0.000640887534, 0.00180956477, -0.0163346156, 0.0175687242, 0.00176969892, 0.00667320332, 0.00360179646, -0.00228275545, -0.00675986847, 0.00531082973, -0.0180956479, 0.00411485322, -0.000678153476, -0.0134573383, -0.0085833, -0.0212849192, 0.00221689022, 0.019731883, 0.00284087798, -0.000971514441, -0.00503696874, 0.0139773274, 0.0207163971, 0.0240304656, 0.0040663206, -0.0159047563, -0.00593481772, 0.00275074644, -0.0177351218, 0.000312210585, -0.00963714533, 0.0154610323, 0.00960248, 0.0140951918, -0.00240581972, 0.0057892208, 0.00988674071, 0.0103443321, 0.014011994, -0.00715506077, 0.0433740877, -0.00241101976, -0.0153501015, -0.0197734814, 0.0118765691, 0.00771664968, -0.0221862346, 0.00514443312, -0.0101224696, 0.0177073888, -0.00516523281, -0.00545642711, 0.00109457865, -0.00487750489, -0.0044996459, -0.00524149789, 0.0228379555, 0.00536976196, 0.0192188248, -0.00916568842, 0.0305060726, 0.00977581, 0.00025804498, -0.00596601702, 0.00555695826, -0.00582735334, -0.000647387409, -0.0099976724, 0.0348323882, 0.00618787948, -0.00353073119, 0.00206955965, 0.0171943326, -0.00936675072, 0.00822277274, 0.00920035411, -0.0155164981, 0.0195654854, 0.0101571353, -0.0131037449, -0.0344995931, -0.0260272268, 0.0139010623, 0.0343609303, -0.0212017205, 0.00963714533, 3.9540897e-05, -0.00255661691, -0.000911715557, -0.0144487852, -0.0215345137, -0.0322809704, -0.00987980794, 0.00577882072, -0.000959381345, 0.00175496587, 0.0162514169, -0.00922808703, 0.0192742907, 0.0111069838, 0.0069747977, -0.00498843612, -0.0308665987, 0.017125, 0.00319620431, -0.0381048582, 0.00582388649, -0.0187473688, -0.033612147, 0.0118765691, -0.0130898785, 0.00859023258, 0.0205084011, 0.0111069838, -0.000115264425, -0.00442338036, 0.0170556679, 6.32112715e-05, -0.011127783, 0.00757798553, -0.0158631578, -0.00414605252, 0.00705106277, 0.0180263147, -0.0323364362, -0.0231568832, -0.0102888662, -0.00234688772, 0.00727292523, -0.0309497975, 0.00720359292, -0.029923683, -0.00182516442, -0.00386179145, -0.00476310728, -0.00932515133, 0.0151698375, -0.00108764553, -0.0104344636, -0.0143101215, -0.015779959, -0.0020071608, 0.015183704, 0.0133117409, -0.0161820855, -2.52547161e-05, 0.000764818455, 0.0186087042, -0.00143777195, 0.0026606149, 0.0199953448, 0.00962327886, -0.00359486323, 0.0194545537, -0.000235512081, -0.0123896254, -0.0178321861, 0.0183175094, -0.00215102476, -0.0054460275, 0.0220891703, -0.0248069838, -0.00424658414, 7.7186e-06, -0.0028755439, -0.00765425107, 0.0117379045, -0.00204529357, -0.0196486842, -0.0111208502, -0.0053940285, 0.00598681672, 0.000970647787, 0.0103304656, 0.0144210523, 0.00931821857, -0.00553269219, -0.00318060466, -0.0018424975, 0.0354425088, -0.0140535934, -0.00877742935, -0.000751818705, 0.00765425107, 0.0139773274, -0.00507163443, 0.00333833508, -0.00715506077, 0.00117171055, 0.010399797, 0.00232608803, -0.0067148027, -0.0257776305, 0.0048567052, 0.0138386637, -0.00710652815, -0.0208966602, 0.0321423076, -0.0187196359, 0.00505776796, -0.0166535415, -0.0028166119, -0.0135197369, 0.0108573884, -0.000187846337, -0.000338643411, -0.00218742411, 0.0174993929, 0.0102195339, 0.0160850193, -0.0128402831, -0.0137415994, -0.0140397269, -0.00322740385, -0.00761958491, 0.0237670038, -0.0171527322, 0.00471110828, -0.00980354287, 0.00655533886, -0.00812570844, -0.00569562241, -0.00659347139, 0.00236075395, 0.00542176096, 0.00369886123, -0.00721745938, -0.00220302376, 0.0163484812, 0.00718972646, -0.0207302626, -2.24110227e-05, 0.0051340335, -0.0108296555, 0.0271088053, 0.00231222156, -0.00761958491, 0.0113149798, -0.0341945328, 0.00424658414, 0.0274, -0.0133602731, -0.00163103489, 0.000875749625, -0.00619481271, -0.00214235834, 0.015571963, -0.00967181195, 0.0191217605, -0.000899582461, -0.00688466569, -0.00587935233, 0.0199676119, 0.00419805152, -0.000130214132, 0.0142823886, -0.0139773274, -0.00129997462, 0.00763345137, -0.0134850703, -0.0007899513, -0.00124797574, 0.000480990624, 0.00944994949, 0.00597988348, -0.00659000501, -0.0143378545, 0.0392141715, 0.0125005562, 0.0247099195, -0.00564362342, 0.00248728483, -0.00222035684, -0.0168615375, 0.000920382096, 0.0102264676, 0.0119459005, 0.00267621456, 0.00551189249, -0.0120221656, 0.0233371463, 0.00434018206, 0.0117448382, 0.010164069, -0.0122786947, 0.0144903846, -0.00943608303, 0.0144349188, 0.0110931173, 0.00508896774, -0.00209555915, -0.00141263916, 0.010372065, -0.0149202431, 0.00249421806, 0.00895075873, -0.0241413973, 0.00670786947, -0.0232262146, 0.0172636639, -0.0257221665, 0.0197180156, 0.00938755088, -0.00738385599, 0.0076611843, 0.0153917, 0.0113149798, -0.000536022882, -0.0100184716, -0.00773744937, -0.00967181195, 0.00894382596, -0.0190940276, 0.00634734286, 0.00586201902, 0.0186087042, -0.0216593109, -0.00142650551, 0.00701639662, -0.00983127486, 0.0097203441, 0.00383059215, 0.00831983797, -0.0116547067, -0.0161404852, -0.0105245952, 0.0169724692, -0.0148509108, -0.012375759, -0.0107464576, -0.0186641701, -0.016195951, -0.0144071858, 0.0138525302, 0.0171666, -0.0364131592, 0.0027906124, 0.0115091093, -0.00489137135, 0.0060942811, -0.0104483301, -0.0149202431, -0.0304783396, -0.00672520231, -0.00199502776, 0.0137069328, -0.00958168, -0.00465910928, -0.0019759615, -0.0057372218, -0.00602148287, 0.0234342106, 0.0105592608, 0.00843076874, 0.000766118406, -0.0139357289, -0.00936675072, 0.000905649038, -0.00849316828, 0.0134850703, 0.0116339065, 0.0153223686, -0.0141506577, 0.0264709517, 0.00270221406, -0.010580061, -0.0343886651, -0.00875662919, -0.00130517455, -0.000961981248, 0.00298474194, 0.00442338036, 0.00768198352, 0.0174993929, -0.0109752528, -0.00758491876, 0.00180609815, 0.0146013154, 0.012036032, -0.0259301625, -0.00106857915, 0.0130829448, -0.00500230258, 0.00379939261, -0.00257395, 0.00487403851, 0.0137069328, -0.00384792499, 0.0139773274, 0.00328633608, 0.0223249, 0.0270949397, -0.00572335534, 0.00132597412, 0.0307834, 0.00944994949, -0.00561589049, -0.00794544537, 0.00659693824, 0.00767505076, 0.0153917, -0.0207579955, 0.0127778845, -0.0107533904, 0.00657267217, 0.0181788467, 0.0167090073, -0.0228934214, 0.0129442811, -0.00899235811, 0.0200924091, -0.0122232288, -0.0164594129, -0.0117448382, -0.0115784416, -0.0149895744, -0.00954008102, 0.0119389677, 0.0326692313, 0.012895749, 0.000454991125, -0.00790384598, -0.0012661753, -0.0222971663, 0.0120082991, 0.00582042, 0.00883982796, -0.00196036184, -0.00491217105, 0.00573375495, 0.00194822869, 0.012764018, 0.00190836284, 0.00337820081, 0.00798011106, -0.00585508579, -0.0047215079, 0.0023694206, -0.00438524783, 0.0169586036, 0.0112525811, 0.0106008602, -0.0116755059, 0.0193436239, -0.00607694825, -0.00150883733, 0.00727292523, -0.0140397269, -0.00541482773, 0.0146151818, 0.0134365382, -0.00768198352, -0.0113427127, 0.0010287133, 0.0115992408, -0.00600761641, -0.0121330973, 0.0139565282, 0.0134296054, -0.00365032884, 0.0186503027, 0.00552229257, -0.0200230759, 0.0411277339, 0.0068396, 0.0140327932, -0.00775824906, -0.016223684, -0.00714812754, 0.00144210528, -0.00235555414, -0.00917262118, 0.0109960521, 0.00288074394, -0.00188929657, -0.00572682172, 0.0152946357, -0.0144071858, 0.00924195349, -0.0207302626, -0.00723132584, -0.00305927382, 0.0165842101, -0.0216593109, 0.0187889673, 0.00275074644, -0.000149388754, -0.00750172045, 0.00657613855, 0.00502310228, 0.00894382596, -0.00453431159, -0.0119181676, 0.000974981, -0.0113149798, 0.0225190278, 0.0116893724, 0.00868729781, 0.00873583, 0.00181823131, -0.0235312749, 0.00320140435, 0.0149618415, -0.00656573894, -0.0120013664, 0.00414951937, -0.0101086032, 0.013076012, -0.0157383606, 0.00672520231, 0.000502656854, -0.00618787948, -0.00136584009, 0.0200924091, 0.00944994949, -0.00509590097, -0.0156690273, -0.0118904347, 0.0169586036, 0.000834150414, 0.0246128533, 0.00769585, 0.014531984, 0.00266928133, -0.0124936234, -0.00343539985, 0.0154748987, -0.00495030358, -0.00544256065, -0.0136861335, 0.00846543536, -0.0117864367, -0.0181649793, 0.00292580971, 0.00970647763, -0.00315633859, 0.0106701925, 0.0187612344, 0.00586895226, -0.0292026307, -0.0308943316, -0.000389775756, -0.000415558578, -0.00014483885, -0.0247376524, -0.00733532384, 0.023267813, 0.0026623481, -0.00558815803, -0.010399797, 0.00385485822, 0.000597555, 0.0261104256, 0.0149618415, 0.0155026317, 0.00480124, -0.00786918, -0.0281765182, -0.0130968112, -0.00773744937, -0.0201617405, 0.00914488826, -0.0178044531, -0.0128472168, 0.0183036439, -0.0245296564, -0.0193020236, -0.0107325912, 0.014323988, 0.0193020236, 0.00600068318, 0.00853476673, 0.00527963042, -0.00150103739, -0.0141298585, -0.012895749, 0.0212433189, -0.00136670668, -0.00797317829, -0.0326969624, -0.0153223686, -0.000173763285, -0.0189692304, 0.00329846912, -0.0173329953, 0.0139703946, -0.0119944327, -0.00662813755, -0.0210769232, 0.00183383096, -0.0109544536, 0.000536022882, 0.000972381036, -0.0113011133, 0.0178044531, 0.0190524291, -0.00863183197, 0.0181927122, -0.00783451367, -0.00924888626, 0.0124450913, -0.00206782646, -0.0125282891, -0.012244028, 0.0274831988, 0.00182343111, -0.00141957239, -0.003580997, -0.00293100951, 0.00255661691, -0.000883982808, -0.00390339061, 0.0211046562, 0.0208966602, -0.0203697365, 0.00359832984, -0.0141783906, 0.00197942811, 0.00187716342, 0.0296463557, -0.00633694325, 0.0311161932, -0.0140951918, 0.00703719631, 0.0117171053, 0.0121746967, 0.0117795039, -0.0231014173, 0.0119389677, 0.00209035934, 0.00496417, 0.000824183924, -0.0168754049, 0.033223886, -0.0154055664, -0.00335046812, 0.00576148788, 0.0130274799, 0.00264501525, 0.0169724692, 0.0103235319, -0.0100323381, 0.0047215079, -0.00400738884, 0.0184145756, 0.0207302626, 0.00073535234, 0.00504736835, 0.0427639671, -0.0279962551, -0.0112179145, -0.0333348177, -0.0140189268, 0.00683266716, -0.0127432188, 0.0192742907, -0.000133030742, -0.00934595149, 0.0114813764, 0.00129477482, -0.0103373984, -0.0155858295, 0.00928355288, 0.0151975704, 0.00314247212, -0.00255141687, -1.56944861e-05, 0.00169863354, 0.0272474699, -6.32044976e-06, -0.0084446352, -0.00552229257, -0.00853476673, 0.00326033658, -0.000993180671, 0.0105592608, 0.000920382096, 0.0149063766, -0.000558122469, -0.0293412954, -0.0109405871, 0.00841690321, 0.000298344181, 0.0234619435, -0.00331060216, -0.0110584516, 0.00998380594, 0.00397272268, -0.00470417505, 0.0196625497, 0.027815992, -0.0223664977, -0.000373742718, -0.00314420555, -0.0183313768, 0.0108088562, -0.0063196104, -0.0181649793, -0.0262213554, 0.00119424344, 0.0197873488, 0.0224219635, 0.018483907, -0.00387565792, -0.000679453427, 0.0117448382, 0.00982434209, 0.0106285932, 0.0119667007, -0.0191633608, 0.0208966602, 0.0184145756, -0.0221030358, 0.00512016704, -0.015779959, 0.0249595139, 0.0111347167, -0.00669746939, 0.00772358291, 0.00625027809, -0.0139981275, 0.00239542, -0.00439218106, -0.0165564772, -0.0208966602, -0.0225190278, -0.00510630058, -0.0198982786, 0.00852783397, 0.0169724692, -0.0039623226, -0.016819939, -0.0108781885, 0.019315891, 0.0101016704, -0.00647907378, 0.00687773293, 0.0165010113, 0.00152530358, -0.0389923081, -0.0032118042, -0.0144487852, 0.0112456474, 0.0102126012, 0.00694706477, -0.00352033135, -0.0105315279, -0.0104483301, 0.00703372946, 0.00174283271, 0.00300900801, -0.0111485831, 0.00507510127, 0.00543909427, 0.0334734805, 0.00942221656, 0.00732839061, -0.0221307687, 0.000483590586, 0.0125629557, -0.0286202431, 0.00643054163, 0.00173503289, -0.0178460516, -0.0133741396, 0.00366766192, -0.0206193309, -0.000335176795, 0.00710652815, 0.00593135133, -0.000683353341, 0.0049988362, -0.00675293524, -0.00788304675, -0.0180124491, 0.0120776314, 0.00380979246, -0.00974114332, 0.0179015175, 0.00370579446, -0.00120290986, 0.0167506076, 0.0028755439, -0.00668360339, -0.00574762141, 0.0180401821, -0.0221862346, -0.00372659415, 0.0136792, 0.00616361341, -0.0113912448, 0.0347214565, 0.00729372445, 0.0258053634, 0.0181095134, -0.0276911948, -0.00667667, -0.0241829958, 0.0193436239, -0.00398658914, -0.00954701379, -0.0136445342, -0.00643400801, -0.00235902076, 0.0214929152, -0.00669053616, -0.0137623986, 0.0127709517, -0.0146013154, 0.00461404352, -0.0115160421, -0.0491425097, -0.00181129808, 0.00463137636, 0.0160850193, 0.0076403846, 0.0137831978, -0.0283845142, 0.0127986837, 0.0109128542, 0.0204113349, -0.00507856766, 0.0139010623, 0.0152669027, -0.00593135133, -0.0163762141, -0.00654147239, -0.00636120932, -0.0183729753, -0.0134642711, -0.00644094124, 0.0127154859, -0.00967181195, 0.0108643221, 0.0042223176, 0.0334457494, 0.00232435483, -0.00428471668, -0.00104257965, 0.00740465568, -0.0154610323, -0.0108712548, -0.00232262141, 0.0169447362, -0.00132250763, -0.0339172073, 0.0102611333, 0.00382712553, -5.73072175e-05, -0.003580997, 0.00810490921, 0.00292580971, 0.00609774794, -0.00277847913, -0.00552575896, 0.00504390197, -0.0301732793, -0.00594868418, 0.0216038451, 0.00035185981, -0.000313510565, -0.00335393474, -0.0204668, 0.0193020236, 0.0107533904, 0.0210353229, 0.0380493924, 0.000146572143, 0.00822277274, 0.00841690321, -0.0172081981, -0.000300510816, -0.00841690321, 0.000820717367, -0.00789691322, -0.0226160921, -0.000274078, 0.0107325912, -0.00993527286, 0.0119667007, 0.000466690923, 0.00665587047, 0.0160434209, -0.00954008102, 0.0029015434, -0.0165703446, 0.015363967, -0.00161803514, -0.0199260116, -0.00161456852, 0.0132077429, 0.0193852223, 0.00135284034, -0.021368118, -0.00469377544, -0.0354979746, 0.00168476719, 0.017651923, -0.001868497, -0.00752252, 0.00602148287, -0.00188063, -0.00638200901, -0.00788304675, 0.00865956489, -0.00784144737, -0.0203974694, 0.0128333503, 0.00799397752, 0.00633347686, -0.015363967, -0.00559162442, 0.0109752528, 0.0333625488, 0.00544949388, -0.012479757, -0.00704412954, 0.0130482791, -0.0376888663, -0.00324820331, 0.0380493924, -0.00921422057, -0.0028946104, 0.0164871458, -0.0243493933, 0.00567828957, 0.00118991011, -0.0199260116, -0.00378552638, -0.0166951418, 0.00994220655, -0.00499536935, -0.0146151818, 0.0117171053, 0.00265714829, 0.0063716094, -0.0125074899, 0.023267813, -0.0232816804, 0.0283567812, -0.0267205462, -0.0054772268, -0.033639878, 0.00448231259, -0.000754851964, -0.00990754, 0.00493643712, 0.0214790478, -0.020536134, -0.043152228, -0.00458631059, 0.00751558691, 0.0107533904, 0.027192004, 0.0140674589, 0.0221862346, 0.0143101215, 0.0107949898, 0.00047145749, 0.00438524783, -0.016403947, 0.0221862346, -0.0118627027, -0.0139842611, -0.00543909427, 0.00634387648, -0.0032118042, 0.00633347686, -0.00343713304, -0.00227928883, -0.0107949898, -0.00131210778, -0.00350993173, -0.0176796559, -0.0193990897, 0.00530736335, 0.0294244941, -0.0137554659, 0.0239056684, -0.000302244123, 0.0143655865, 0.0294244941, 0.0202449393, 0.00446497975, -0.00344233285, -0.0247376524, 0.00340766693, 0.0249733794, 0.000209729245, 0.012791751, 0.0146290483, 0.0314212553, 0.0122370953, 0.00153917, -0.00896462519, 0.012167763, -0.00622947887, 0.0083406372, 0.0167228747, 0.00711346138, -0.0192465577, -0.00739772245, -0.0160572864, 0.0113912448, 0.0174300615, 0.000684653351, 0.00335393474, 0.0137693314, -0.00497456966, -0.0480886623, -0.0177489873, -0.00965101179, 0.00527963042, 0.00677720131, -0.0137207992, -0.027815992, -0.0190108307, -0.00809104275, 0.0243216604, 0.000129130814, 0.0267344136, -0.00780678121, 0.00431938237, -0.00786918, -0.00393459, -0.0099976724, -0.0116685731, 0.0165564772, -0.00519643212, -0.00819504075, -0.00208342611, -0.0185393728, -0.0127432188, -0.0110584516, -0.00139183959, -0.0022671558, 0.0295631569, -0.0165703446, -0.027815992, -0.0295076929, -0.00898542535, 0.0054078945, 0.00731452415, -0.0372174084, 0.00798011106, 0.0129304146, -0.00416685222, -0.00500576897, -0.0150727732, 0.00128697499, -0.00718972646, 0.0150034409, -0.00504736835, 0.00837530382, 0.0132909408, -0.0277327932, -0.00113097799, -0.00551535934, -0.00798704475, 0.00654147239, 0.00895075873, 0.0195100196, 0.00530043, -0.0109544536, 0.00890222657, 0.000977581, 0.00790384598, 0.0103096655, 0.036995545, -0.0305615384, -0.000523023133, -0.0241552629, 0.0028235449, -0.00471457466, -0.0160018224, -0.00893689226, 0.000561155728, -0.0149618415, 0.023891801, 0.0273306686, -0.00249248487, 0.0158492904, -0.00509243412, 0.00883289427, 0.00266408152, -0.0137415994, -0.0241829958, -0.0201894734, 0.00112491148, -0.0193436239, -0.00606308179, 0.00577535434, 0.00680146739, -0.00673213555, -0.0139911938, 0.0141645242, -0.00516869919, -0.00516869919, -0.00585855264, -0.0292858295, 0.000318710459, 0.00302287447, 0.00139270618, 0.0129234819, -0.0199260116, 0.0195932183, 0.0114189778, 0.0150034409, 0.0154610323, -0.00755025307, 0.0236283392, 0.000464090961, -0.0114675099, -0.00397965591, 0.00449271267, -0.011724038, 0.00818117429, -0.000177013222, -0.029951416, -0.0243355259, 0.0101432689, -0.0133949388, 0.00498150289, -0.00881209504, -0.00597988348, 0.0210491903, -0.0142407892, 0.00115784409, 0.0233371463, 0.00890222657, -0.0161266197, 0.025347773, -0.00504043512, -0.0284815785, 0.0146151818, -0.0175271258, 0.00145597162, 0.020328138, -0.00167176744, 0.0184977725, -0.0148370443, 0.00243875245, 0.00326033658, -0.0271088053, -0.0159463566, -0.0119944327, 0.0107533904, 0.025763765, -0.00199329457, -0.00341113354, 0.0163762141, -0.0194684211, 0.00241621956, -0.0095123481, 0.0159740895, -0.0195516199, -0.00434018206, -0.00583428657, 0.00656573894, 0.00373006077, -0.0278714579, -0.0139634619, -0.00906862319, 0.00261381571, -0.0179431178, 0.0116408402, -0.0133186737, -0.0184977725, 0.00704066269, -0.0232539475, -0.00761265168, 0.00491910428, -0.0359694324, -0.019523887, -0.00103131321, -0.014767712, -0.00498843612, -0.0138247972, 0.00290847663, -0.0329465568, 0.00158943573, -0.000587588584, -0.00181129808, -0.0259994939, -0.0182481781, -0.00204356015, -0.0115645751, -0.0188860316, -0.00990060717, 0.0257360321, 0.00905475672, -0.0019239625, 0.00581002, -0.00308354, -0.00234168768, -6.66237e-05, -0.0050127022, -0.0099907387, -0.0346382596, 0.00196556165, 0.00578575395, 0.0140743926, -0.000248728495, 0.0122925602, -0.00870809704, 0.00669053616, 0.00292927632, 0.0115091093, 7.97859466e-05, -0.00279407902, 0.0171943326, 0.0026623481, -0.00915182196, -0.011023785, 0.00978967641, 0.0176657885, 0.00958861317, 0.00500576897, 0.00701986346, 0.0152946357, 0.000599288323, 0.00712039461, -0.0215899795, -0.00486363843, -0.00357059715, 0.000212870858, 0.000127614185, -0.0255003031, -0.00877742935, 0.014323988, -0.0185809713, -0.0145458505, 0.0088190278, -0.00809797551, 0.0142407892, 0.011855769, 0.0089230258, -0.00986594148, -0.026984008, 0.00295874244, -0.00321353739, 0.0125144226, 0.0125074899, -0.0316431187, 0.00170123356, 0.00466257567, 0.00321527082, -0.0017410994, 0.0122925602, -0.00976887625, -0.000544689421, -0.00750865368, -0.00693319831, -0.0110307187, 0.0203420036, 0.010788057, -0.0297572874, -0.00147157139, 0.00442338036, -0.0129928133, -0.00737692323, 0.000254578365, 0.0106424596, 0.0102611333, -0.0241968613, 0.00417725183, -0.0092072878, 0.00586201902, 0.0433463566, 0.0169031378, 0.00324647012, -0.00164143473, -0.00424311729, -0.00190489623, 0.0136861335, -0.0183591098, -0.0193297565, -0.0356089063, -0.00985900778, 0.0260688253, 0.00556389149, -0.020120142, -0.0174577925, 0.000770451676, -0.00359139661, -0.00510283373, -0.00126704201, 0.0143794529, -0.0172636639, -0.00429165, 0.0148925101, 0.00403165491, -0.00285821105, 0.0213958491, 0.00721052615, -0.0136445342, -0.0122925602, -0.0406285413, 0.00776518229, -0.00165530108, 0.00108764553, 0.0096094124, 0.0216454454, -0.00227408903, 0.0183591098, 0.0101432689, -0.0116547067, 0.0196348168, 0.00384099176, 0.0096094124, -0.0116200401, -0.0197596159, -0.00852783397, -0.0332793519, -0.0149895744, -0.00303154089, 0.00722439261, 0.0208827928, 0.0278021246, 0.00638200901, 0.0429026298, -0.015571963, 0.0117379045, 0.0131106777, -0.0238640681, -0.0169170033, 0.00244395249, 0.0011847103, 0.024723785, -0.0304783396, -0.00228275545, -0.000790384598, -0.0136722671, -0.00543216104, -0.00806331, 0.00732145738, 0.00354806427, -0.00239542, 0.0125698885, 0.00103477982, -0.0133464066, 0.00443724683, -0.00721052615, 0.000533856277, -0.00274034659, 0.013388006, -7.44235513e-05, -0.00565055665, -0.00582042, -0.0118765691, 0.000411442, -0.00404552137, -0.00865956489, 0.0193574894, -0.0175687242, -0.0211739875, -0.0283013154, -0.0140882591, -0.00614974694, 0.0145874489, -0.00767505076, 0.0208689272, -0.00963714533, -0.00399352238, 0.00563669, -0.0206193309, 0.00725905877, 0.00335740135, 0.00450311229, 0.0255141705, -0.0188167, 0.0129442811, -0.0185116399, -0.00396578945, 0.018691903, 0.00255661691, 0.00689506577, 0.0267898776, -0.00791771244, -0.0085625, -0.00388259115, -0.0219089072, 0.0140189268, 0.00770971645, 0.0132909408, -0.0114744436, -0.00240581972, 0.00829903875, -0.0133741396, -0.0139010623, -0.00895769242, 0.00183036434, -0.0169586036, 0.0144071858, 0.00227582245, 0.0225051623, -0.0113496454, -0.0018996963, 0.00219782395, -0.0183175094, 0.0190662947, 0.0171943326, 0.0165010113, -0.017651923, 0.00818810705, 0.0170695335, 0.0042743166, 0.00034882655, -0.0076611843, 0.00746705476, -0.0198289473, 0.00338686747, -0.00978274271, 0.0118696354, -0.00462444313, -0.00851396751, 0.0186364371, 0.0142685222, -0.0231984816, -0.000443291356, -0.00393459, -0.0143655865, -0.0108227227, -0.00117777707, -0.0156690273, 0.0169170033, -0.0115784416, 0.00557082472, -0.000312210585, 0.0214513149, 0.023891801, 0.0250565782, 0.0151143726, 0.000588021881, 0.0257360321, 0.0186364371, -0.00321353739, 0.00172376644, -0.00817424059, 0.0172775295, -0.00272994675, -0.022671558, -0.000196296183, 0.00972727686, 0.00609081471, 0.0153362351, -0.0114813764, 0.00282701151, 0.0146567812, 0.0409058705, -0.0033470015, -0.00530043, -0.000658653851, -0.00120550988, -0.0016345015, -0.00355673069, -0.0122578945, 0.0430135615, -0.0161127523, -0.0130552128, -0.0124589577, 0.0142962551, 0.00706146238, 0.0153778335, 0.00778598152, -0.0107464576, 0.0220614374, 0.0170972664, -0.000683786697, -0.00795931183, -0.0227686241, -0.0032447367]
13 Aug, 2019
std::bitset::to_ullong and std::bitset::to_ulong in C++ STL 13 Aug, 2019 Bitset: A bitset is an array of bool but each Boolean value is not stored separately instead bitset optimizes the space such that each bool takes 1 bit space only, so space taken by bitset bs is less than that of bool bs[N] and vector bs(N). However, a limitation of bitset is, N must be known at compile time, i.e., a constant (this limitation is not there with vector and dynamic array) std::bitset::to_ullong This function Converts the contents of the bitset to an unsigned long long integer. The first bit of the bitset corresponds to the least significant digit of the number and the last bit corresponds to the most significant digit. Syntax: bit.to_ullong() Here bit is a number in bits (i.e., 101 for 5) Parameters: We are not passing any parameters Return: Return the converted integer. Exceptions: overflow_error will occur if the value can not be represented in unsigned long long. Examples: Input : 1010 Output : 10 Input : 10000001 Output :129 # CODE 1 : #include <bitset> #include <iostream> #include <limits> using namespace std; int main() { bitset<numeric_limits<unsigned long long>::digits> b(10); cout << b << endl << b.to_ullong(); return 0; } //Code is improved by Rajnis09 OUTPUT: 0000000000000000000000000000000000000000000000000000000000001010 10 # CODE 2 : #include <bitset> #include <iostream> #include <limits> using namespace std; int main() { bitset<numeric_limits<unsigned long long>::digits> b(20); cout << b << endl << b.to_ullong(); return 0; } OUTPUT: 0000000000000000000000000000000000000000000000000000000000010100 20 std::bitset::to_ulong This function Converts the contents of the bitset to an unsigned long integer. The first bit of the bitset corresponds to the least significant digit of the number and the last bit corresponds to the most significant digit. Syntax: bit.to_ulong() Here bit is a number in bits (i.e., 101 for 5) Parameters: We are not passing any parameters Return: Return the converted integer. Exceptions associated: overflow_error will occur if the value can not be represented in unsigned long. Examples: Input : 1010 Output : 10 Input : 10000001 Output :129 # CODE 1 : #include <bitset> #include <iostream> #include <limits> using namespace std; int main() { bitset<numeric_limits<unsigned long>::digits> b(10); cout << b << endl << b.to_ulong(); return 0; } OUTPUT: 0000000000000000000000000000000000000000000000000000000000001010 10 # CODE 2 : #include <bitset> #include <iostream> #include <limits> using namespace std; int main() { bitset<numeric_limits<unsigned long>::digits> b(20); cout << b << endl << b.to_ulong(); return 0; } OUTPUT: 0000000000000000000000000000000000000000000000000000000000010100 20 Learn C++ Online – Master everything from basics to advanced concepts. Apply your knowledge with practical exercises and boost your skills. Take the Three 90 Challenge: finish 90% in 90 days for a 90% refund. Start now and level up your C++ programming!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum/Algorithm for Dynamic Time out timer Calculation/Difference between Round trip time (RTT) and Time to live (TTL)/Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms/Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm/Round Robin Scheduling Algorithm with Different Arrival Time/Selfish Round Robin CPU Scheduling/Find the order of execution of given N processes in Round Robin Scheduling/Calculate server loads using Round Robin Scheduling/set::lower_bound() Function in C++ STL/Implementation of lower_bound() and upper_bound() in List of Pairs in C++/Difference between std::set::lower_bound and std::lower_bound in C++/Difference between std::set vs std::vector in C++ STL/std::minmax() and std::minmax_element() in C++ STL/std::rotate vs std::rotate_copy in C++ STL/std::bitset::to_ullong and std::bitset::to_ulong in C++ STL
https://www.geeksforgeeks.org/stdbitsetto_ullong-and-stdbitsetto_ulong?ref=asr10
PHP
std::bitset::to_ullong and std::bitset::to_ulong in C++ STL
What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, jQWidgets jqxTreeMap width Property, Round Robin Scheduling Algorithm with Different Arrival Time, Difference between Flow and TypeScript, jQWidgets jqxTree destroy() Method, jQWidgets jqxTree collapseAll() Method, Find the order of execution of given N processes in Round Robin Scheduling, jQWidgets jqxScrollView buttonsOffset Property, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, jQWidgets jqxListBox enableHover Property, Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm, std::rotate vs std::rotate_copy in C++ STL, Selfish Round Robin CPU Scheduling, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxSlider buttonsPosition Property, Difference between Round trip time (RTT) and Time to live (TTL), jQWidgets jqxSlider rtl Property, Difference between std::set::lower_bound and std::lower_bound in C++, jQWidgets jqxTooltip opacity Property, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, jQWidgets jqxToolBar height Property, PHP, std::minmax() and std::minmax_element() in C++ STL, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, Node.js date-and-time Date.transform() Method, TypeScript Optional Parameters, jQWidgets jqxToolBar theme Property, Difference between std::set vs std::vector in C++ STL, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, Steps to Diagnose and Resolve a Slow Network, How to use Optional Chaining with Arrays and Functions in TypeScript ?, Calculate server loads using Round Robin Scheduling, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, jQWidgets jqxScrollView showButtons Property, Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms, jQWidgets jqxScrollView disabled Property, jQWidgets jqxSplitter destroy() Method, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, set::lower_bound() Function in C++ STL, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, jQWidgets jqxTree collapseItem() Method, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), jQWidgets jqxSortable opacity Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, jQWidgets jqxSlider height Property, jQWidgets jqxSwitchButton onLabel Property, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, jQWidgets jqxToolBar tools Property, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTree width Property, Implementation of lower_bound() and upper_bound() in List of Pairs in C++, jQWidgets jqxTree clear() Method, TLS Handshake?, Algorithm for Dynamic Time out timer Calculation, Adhoc TCP, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, jQWidgets jqxTabs position Property, Differences between Wireless Adhoc Network and Wireless Sensor Network, jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, std::bitset::to_ullong and std::bitset::to_ulong in C++ STL, Impact of Three-way Handshake and Slow Start Algorithm, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, How to Sort an Array Having Optional Properties in TypeScript ?
GeeksforGeeks
[-0.00311176619, 0.00716076698, -0.0115209436, 0.0230270699, 0.0656730831, -0.0148105258, -0.00724226562, 0.0370152, -0.00275243144, 0.0279318057, -0.0159144625, -7.00957753e-05, 0.00508625619, -0.0242125057, 0.0078535052, -0.0285837948, -0.0199893937, 0.0171147138, -0.0280058961, -0.005101074, 0.019707853, 0.0211451929, -0.0238865111, 0.0106689129, -0.0300507713, 0.0411642231, -0.0063494849, 0.0243310481, -0.00865367334, -0.0171739869, 0.0314732939, -0.00146975392, -0.0255313013, 0.00225417828, 0.0124767013, -0.0166701768, 0.0674512386, 0.00476026163, -0.0764012709, -0.00493437238, -0.00414531725, 0.0202412978, 0.012209978, 0.0509144217, -0.0111208595, -0.00333588757, 0.00511959614, -0.0314140208, 0.00135769323, -0.0219009072, 0.00376931205, -0.00920934603, 0.00120580941, 0.00876480807, 0.0454614237, -0.0193966758, 0.0296655055, 0.017425891, 0.0161219127, -0.00411568116, -0.00749417, -0.0216638204, 0.0154699236, 0.00980206393, 0.00887594279, 0.00336181885, -0.0121729327, 0.0257239342, 0.0399195142, -0.00128916034, -0.031828925, 0.0606349893, 0.0476841144, -0.0120692076, -0.00390452566, 0.0338145271, 0.00123914971, -0.0226566214, -0.0195300374, 0.0338441618, -0.0110097257, 0.00920193736, 0.0121729327, -0.00148364564, 0.000307703682, 0.0337256193, 0.0122173866, -0.0392675251, 0.00315066334, -0.00232641562, -0.00909080263, -0.000552894198, 0.0187891405, -0.00419718, -0.00130583043, 0.0349703245, 0.00644209702, 0.00100669346, -0.0176481605, 0.00238198298, 0.0309398472, 0.0111134509, -0.0116468966, -0.0225825328, 0.0518035, 0.0120543893, 0.0358001292, 0.0400380604, 0.0170702599, -0.0277984459, 0.0139955394, 0.0124692917, -0.00392304827, 0.0416680314, -0.0159885511, 0.00735710468, 0.0301989503, -0.0347925089, 0.00587160653, 0.0193966758, -0.00522332173, 0.0557747036, -0.00270056864, -0.00509366486, -0.0412234925, 0.0242717769, 0.0274428148, 0.00872035418, 0.0133139137, -0.00467505818, -0.0282429829, -0.0290431511, -0.0217823628, -0.0149587048, -0.0237531494, 0.00755714672, 0.00243755, 0.0114542637, 0.0190706812, 0.0224639885, -0.01757407, 0.0324512757, 0.0328069068, 0.015588467, -0.0267019179, -0.00401566038, -0.0208043791, 0.0482768305, 0.0166849941, 0.0368077494, -0.0141289, -0.0160478223, 0.0287764296, -0.0305545814, 0.0248941295, -0.00830545183, 0.0267463718, 0.00439351751, 0.00469728513, -0.0611091629, 0.0103873722, -0.0167146306, 0.00279318076, 0.00794982165, -0.0139733125, 0.0465579517, 0.0283911619, 0.0271168202, -0.0311472975, 0.0490473621, 0.0158700086, 0.019856032, 0.00573824532, 0.0104021896, -0.00286541809, -0.00981688127, 0.000750620966, 0.0273094531, 0.0312658399, -0.000639949518, -0.0217230916, 0.0136917718, -0.000831656565, -0.00114931609, -0.000175731446, -0.0208932869, 0.0523962155, 0.0186261442, -0.00920934603, -0.003009893, -0.0253979396, -0.00419718, 0.0283763446, 0.0035970537, 0.0169813521, 0.0423200205, -0.0693479329, 0.0170998964, 0.00928343553, 0.0434165485, 0.0143511696, 0.0196041279, -0.0300952252, -0.0108615458, 0.0439796299, -0.023930965, -0.0321549177, 0.00502327969, 0.0182408765, 0.0289394259, 0.0312065706, 0.0646654665, -0.003860072, 0.010372554, -0.015588467, 0.0282281656, -0.0144919399, -0.0183890574, 0.00543818204, 0.00979465432, 0.00309694838, -0.016581269, 0.0145660294, -0.0287023392, -0.0358001292, -0.0393564329, -0.00633466709, 0.0242125057, 0.0322438255, -0.0332514457, 0.048454646, -0.0123211127, -0.0308213029, 0.00630873581, 0.042201478, 0.0107800476, 0.00612351159, 0.00653841347, -0.011595034, 0.00669029728, 0.0166257229, 0.0368966572, -0.0231011603, -0.0281244405, -0.0361557603, 0.00993542466, 0.00997987855, -0.0173962545, 0.0143956235, 0.0320660099, -0.00504550664, 0.0319474675, 0.00802391116, 0.0164182708, -0.0199153032, -0.0261240192, -0.0154106515, -0.00589383347, -0.0108170919, -0.0118247122, -0.0159885511, 0.036185395, -0.0168628097, 0.0312362053, 0.00395268388, 0.0352074131, 0.0170109887, 0.0126915611, -0.00999469683, -0.0682810396, 0.0235753339, -0.00141974329, 0.0104688704, 0.0406900495, 0.0167590845, -0.00656804955, -0.0686366707, -0.0120692076, -0.0152476542, 0.024923766, 0.0181075167, -0.015588467, -0.0253534857, 0.0110838152, -0.013032373, -0.0535223782, -0.023930965, 0.0112097673, -0.0254423935, 0.00647543743, -0.0334292613, -0.00939457, -0.0136102727, 0.0219601784, 0.00461949129, 0.0325401835, -0.0177518856, -0.0147957075, -0.0197967608, -0.0186409615, -0.00517145917, -0.0388822593, -0.0104836887, -0.0159885511, -0.00871294551, -0.00774237094, 0.0579084866, -0.0109949075, -0.00799427554, -0.0275909938, -0.0315622, -0.0143956235, -0.0263166521, 0.00138825527, -0.0270130951, -0.0128249219, -0.00983910821, 0.0101873297, -0.0296506863, -0.0119580729, -0.0105355512, -0.0123211127, -0.00317289028, 0.0354444981, 0.0667992458, 0.00524925347, -0.014047402, 0.0490473621, -0.027650265, -0.0336959846, -0.0290283337, 0.00420088461, -0.0297247767, 0.0142103992, 0.00755714672, -0.0185816903, -0.0072533791, 0.00268945517, 0.0157662816, 0.0110245431, 0.00808318332, 0.0293543283, 0.00203561364, -0.00368410884, 0.0244347733, -0.0126174716, -0.0119803, 0.00983910821, -0.0121284798, 0.0705926418, 0.00124655874, -0.0101651028, 0.0464690439, 0.0450168848, -0.00322660524, 0.0066791838, -0.0186557788, -0.0173369832, -0.0249978546, 0.0012493371, -0.0158700086, 0.0456985086, -0.0253090318, 0.0270427298, 0.0202264804, -0.0311176628, 0.0495808087, -0.0156032853, 0.00716817565, -0.0264351945, -0.0131731434, 0.00521591306, 0.0292209666, -0.00953534059, -0.0264648311, 0.0451650657, 0.0813801, 0.011491308, 0.0135954553, 0.00328587694, -0.0184186921, 0.0355630443, 0.0203450248, -0.024079144, -0.02805035, 0.00498993928, -0.00895003229, -0.00263388781, -0.0243310481, 0.042438563, 0.017722249, -0.0267760083, 0.0137954969, -0.0317992866, 0.0267463718, 0.0653767288, 0.00107800472, -0.0126619246, -0.0333107151, -0.0504106134, 0.0176926143, -0.0250571277, 0.00889076106, -0.032718, -0.0160478223, 0.0260054749, -0.0131212808, -0.0179889724, -0.0120321624, -0.0332810804, -0.00976501871, -0.0360372178, -0.0186854154, -0.003400716, 0.00541595509, 0.00517145917, -0.0268945508, 0.0339627042, 0.0278725345, 0.00841658656, -0.0189373195, -0.00780905131, -0.0101428758, -0.00380450464, 0.00167072215, 0.0159885511, -0.0128916027, 0.0399787873, 0.00647914177, -0.0207302906, -0.0161515493, 0.0192484967, 0.00905375835, 0.0543521829, -0.0336663462, -0.0150550213, 0.0267760083, -0.00690886192, -0.0460541397, -0.0257091168, 0.00846844912, 0.0518924072, 0.00810541, -0.039474979, -0.0167146306, 0.0219749976, -0.0386155359, -0.0142178079, -0.00566786, 0.0184038747, -0.0193225872, -0.00173555058, -0.00184761116, 0.00611239811, 0.0232937932, -0.0303471293, 0.000146905935, -0.0262277443, 0.0643098354, -0.000339423306, 0.0183001496, 0.0407196842, 0.0156921931, -0.000178741335, 0.0186854154, 0.0281688944, -0.0101799211, -0.00634207577, -0.0154699236, 0.00831286144, -0.0203450248, -0.0153810158, -0.00163089891, -0.00466764951, -0.00145030534, -0.00609017117, 0.00525295781, 0.000703851867, -0.0185668711, -0.017825976, 0.0562192425, -0.0368077494, -0.0267463718, -0.0370744728, 0.0300211348, -0.0228048, -0.00332662626, 0.0193818584, 0.0325698182, -0.0171147138, -0.00533445645, -0.010053969, -0.00654952694, 0.0104985069, -0.0175444353, -0.00689774845, -0.0360668525, 0.0354741365, -0.0136399083, 0.0399491526, 0.00333033083, -0.00439351751, -0.0338145271, 0.0652581826, 0.021545276, -0.0508255139, -0.0383488126, 0.0481286496, 0.0136769535, -0.018122334, -0.0033933071, -0.0222120844, 0.00197819434, -0.00803132076, -0.0186557788, -0.0182260592, -0.0223158095, 0.00710890396, -0.00877962634, 0.000584845373, 0.00397491083, 0.0144400774, 0.000340580969, 0.0524258539, 0.00400825124, 0.0081795, 0.000147253217, -0.0107355937, -0.0226121675, 0.00497141713, -0.0126026534, -0.00995765161, -0.0593013726, 0.00762382708, -0.0367188416, -0.00416754419, 0.00224676938, -0.00814986415, -0.00656434475, 0.0452539735, -0.00448242528, 0.00750157936, 0.00305434666, 0.023234522, -0.00889076106, 0.0146919824, 0.012313704, 0.00917971, 0.00558265671, 0.0138177238, 0.00729412818, 0.0268797334, -0.00689404411, -0.0136621352, -0.01047628, 0.0167739019, -0.0358297639, -0.0137954969, -0.0098317, 0.0185520537, -0.00932788942, 0.00825358927, 0.00961684, 0.00697924709, 0.0148846153, -0.0202116631, 0.00352481613, 0.0518627688, -0.0132768694, -0.0235605165, 0.0180926975, 0.0111208595, 0.0079720486, 0.0164182708, -0.0255905725, 0.0316511095, 0.0144178504, 0.00802391116, -0.0255757552, 0.0312954783, -0.00177537382, -0.04786193, -0.00593828736, 0.00240050536, -0.0369559303, -0.0337256193, -0.0586493835, -0.00694220234, -0.0140622202, -0.00670882, -0.00810541, 0.00324883219, 0.00854994822, -0.00405270513, 0.0259165671, -0.00638652965, -0.0142696705, -0.0128323315, -0.0115357619, 0.00938716158, -0.0117135774, 0.0206562, 0.0375190116, 0.0122173866, 0.0112690395, -0.0128767854, -0.00129656924, -0.0148475701, -0.00953534059, -0.0163738169, -0.0303767659, 0.00413049944, 0.0454021506, 0.000307240611, -0.00564933755, -0.0282578, 0.0098094726, 0.0133583676, -0.0317400172, -0.0138844047, -0.00699036056, -0.00378042553, -0.011913619, -0.00596421864, 0.0236049704, 0.0215008222, 0.00711631309, -0.00256720721, 0.00257832068, -0.0442463532, 0.0110986326, 0.00218934985, 0.0455503315, 0.00225603045, -0.0102391923, 0.0137436343, 0.00972056482, 0.0205376577, -0.00233197236, 0.0279169884, -0.0210414678, 0.00957238581, 0.00602349034, 0.0597162768, -0.019856032, 0.0164775439, -0.0108170919, 0.0346443318, -0.013032373, -0.021248918, -0.0154551053, -0.00495289452, 0.014195581, 0.0175147988, -0.0287171565, -0.00842399616, -0.0199153032, 0.0204191133, -0.00752751064, 0.0168628097, -0.00287653157, -0.00674586464, 0.00962424837, -0.00674586464, -0.0141140828, -0.049788259, -0.0338737965, -0.0328661799, 0.0109800892, 0.00951311365, -0.0283763446, -0.0119506642, 0.0483657382, -0.00743489852, -0.0123285213, -0.0291913301, -0.0475359336, 0.000477415335, 0.00418977113, -0.013602864, -0.0215600953, 0.00669029728, 0.0062124189, -0.024627408, -0.0126248803, 0.00120951387, -0.00254127569, 0.0113357203, -0.0194263123, -0.0283615272, 0.0414605811, -0.00477507943, 0.0122470232, -0.0242421404, 0.00614203373, -0.000420458877, -0.0012493371, 0.013158326, 0.0130471913, -0.00976501871, -0.00442315359, -0.0246422254, -0.0349110551, -0.0109949075, 0.00409715902, 0.0209821947, 0.000231414466, 0.00151050324, -0.00471210293, 0.0147142094, -0.0158107355, 0.0277688093, 0.00429720106, -0.00155958766, 0.00316733355, -0.0138325421, 0.0204635672, -0.0165368151, -0.0124174291, -0.032125283, 0.011595034, -0.0121803423, 0.0085647665, -0.0139659029, -0.00129193871, 0.0127952863, -0.0226121675, -0.020552475, -0.010076195, -0.00385266286, 0.0189817734, 0.0166257229, 0.0345850587, -0.00992060732, -0.00803872943, -0.0146030746, -0.00901671313, -0.00358038349, -0.0319474675, -0.0150105674, 0.0275169052, 0.01104677, -0.00957238581, 0.0206117462, 0.000425784092, -0.0304064024, 0.038082093, 0.0255164839, -0.0472395755, 0.0344961509, 0.00742008071, 0.0558932498, 0.0131435078, -0.00855735689, -0.0214415509, 0.00777200656, -0.00259128632, 0.0333699882, 0.0371041074, -0.0107800476, -0.00358594023, 0.00159755861, 0.00196893304, 0.0202116631, 0.00271723862, 0.00852031261, -0.0485139191, 0.00734599121, 0.0260202922, 0.00915007479, 0.0275909938, 0.00564563321, -0.00789795909, -0.00948347803, 0.00826099887, -0.0030080406, 0.0116691235, -0.0142326262, -0.00565304188, -0.00315807224, -0.00832027, 0.011172723, -0.00717928912, 0.0379635468, -0.0085647665, -0.00280799856, 0.00657545822, 0.015017977, 0.0294432361, -0.00160496752, -0.0224788059, -0.0180186089, 0.00975761, 0.0503217056, -0.00775718875, -0.026953822, 0.0138399508, -0.0177667029, -0.0125656081, -0.0523665808, 0.0421422049, -0.0221972652, -0.000900652551, 0.00809800159, 0.0457874164, -0.0325401835, -0.0183742382, 0.0187743232, 0.00661250344, 0.0103058731, -0.00869071856, 0.00343405642, 0.0158551894, 0.0136325, 0.0309398472, -0.00335996668, -0.00339701143, -0.00400454691, 0.0204635672, -0.00768309925, 0.0121136615, -0.00589383347, 0.0282133464, -0.0181816053, -0.00459726434, 0.0377857313, 0.00506032445, 0.00383784506, -0.00393416174, 0.00989097171, 0.0056863823, -0.00732005946, -0.0191299543, -0.0109356353, -0.00865367334, 0.0309694838, 0.0057604718, -0.0200931188, 0.00743860332, 0.0172628928, 0.0168628097, 0.0242717769, 0.0179148819, -0.00710890396, 0.0274428148, -0.00232456345, -0.00246348162, -0.0161515493, -0.0019707852, -0.0283911619, -0.0153958341, 0.0208784696, -0.00644950615, 0.0206265654, -0.00298766606, 0.00188558211, -0.00610128464, -0.0272946358, -0.00782387, 0.0060160812, 0.0281540751, -0.0190558638, -0.0341405198, -0.00918711908, 0.00149753748, -0.00860922, -0.0108911814, -0.0132990964, 0.0043157232, -0.0315029286, 0.0143511696, -0.0153069263, -0.00400454691, -0.00578269875, -0.00865367334, -0.0158255547, -0.0295321438, -0.00869071856, 0.0119877094, 0.00616055634, 0.0128323315, 0.00358779239, -0.00233197236, -0.0465579517, -0.00207821536, 0.00064411707, -0.0246570427, -0.00227825739, -0.00520850392, -0.0300211348, 0.0104392348, 0.0162108205, -0.0155143775, 0.00827581622, 0.0192781333, -0.00563822407, -0.00230789324, -0.0229529813, 0.00135121041, -0.022834437, -0.000315344165, -0.00148920238, 0.0184186921, -0.000719595933, 0.0305249449, -0.0275169052, 0.0129953288, 0.0423792936, 0.0170109887, 0.0242421404, 0.0165219977, -0.0238865111, -0.00948347803, -0.0204635672, 0.0271760914, 0.02015239, -0.0239606, -0.00171332364, -0.00509736966, 0.0206117462, 0.0104985069, 0.0171147138, 0.0115135349, 0.00829063449, -0.0188484117, -0.0186557788, -0.0117506217, 0.030184133, -0.00539743248, 0.0124544743, -0.0430016443, -0.00030353613, 0.0274724513, -0.0150476126, -0.0160181876, 0.00353037287, 0.0191447716, 0.00891298801, -0.0593013726, -0.0026098087, -0.0122692501, -0.0189817734, 0.00915007479, -0.030184133, -0.0216045491, 0.0171591677, -0.029635869, 0.00186891202, -0.012906421, -0.00732376426, 0.0267760083, 0.0312065706, 0.0115653975, -0.022982616, -0.011617261, -0.00476396596, -0.0204191133, -0.0152476542, -0.0323327333, 0.0207451079, -0.00717188045, -0.0012836036, 0.0127211967, 0.0130175557, 0.00231900671, 0.0319771022, 0.00407122727, 0.00581974396, -0.037578281, 0.00762382708, 0.00440092664, -0.00886112452, 0.0258572958, 0.0430312827, 0.00574194966, 0.0271020029, -0.0279466249, -0.00496771233, 0.0123729752, -0.0127137881, 0.0458763242, 0.0242421404, 2.12718387e-05, -0.00969833788, 0.0260202922, 0.038674809, 0.0135954553, -0.0488102771, -0.0177518856, -0.0289986972, 0.0118691651, -0.0359186716, 0.0157218277, -0.0475952066, 0.00423792936, 0.0309991185, -0.0068792263, -0.0319771022, -0.0116246697, -0.017722249, -0.0514478683, 0.0161070954, -0.0245977715, 0.00331180845, 0.0318881944, 0.0118173026, -0.0225528963, 0.00516775483, -0.0240495075, 0.0172628928, -0.014617892, -0.0415494889, -0.00205413625, 0.0231752489, 0.00632355362, 0.0165664516, -0.0149216596, 0.00297655258, 0.0439499952, 0.0135435918, -0.0244940463, -0.00689774845, 0.00939457, 0.00619389676, -0.000780719914, 0.0254868474, 0.00229307543, -0.0243458655, 0.00228010956, -0.00256350264, 0.0115505802, 0.00633837143, -0.00125489384, 0.0283615272, 0.0107874563, -0.030332312, 0.000785350509, -0.0135139562, 0.0156181026, 0.0101576941, 0.00356000871, -0.0171591677, -0.00573083619, -0.00562340626, -0.0144400774, -0.000508903409, -0.0092538, -0.000618185732, -0.0206265654, 0.0251608528, -0.00136695441, 0.00723485649, 0.019856032, 0.027205728, 0.0182853304, -0.0148772066, 0.00265055802, 0.000999284443, 0.0376968235, 0.0399491526, -0.00838695094, -0.0215749126, -0.0169961713, 0.00124192808, -0.000607535301, 0.0186557788, 0.0223009922, 0.0229233447, -0.00659027649, 0.00754973758, 0.00345813553, -0.0266871, 0.00241717556, -0.0182112418, -0.0325401835, -0.0250867624, -0.00940198, 0.00112894143, -0.0124470647, -0.00509366486, -0.000287329021, 0.00394897955, 0.0358594023, 0.0293246917, 0.00957979448, 0.0417273045, 0.000901115651, -0.0188187771, -0.0150327943, -0.0379635468, -0.0028820883, 0.00915007479, -0.0100465594, 0.00739785377, 0.0374301039, -0.0225232597, 0.0320660099, 0.0585012063, -0.000761271396, -0.0103651453, 0.000155935602, 0.0110319518, -0.0281688944, -0.0248644948, -0.00691256626, 0.0174851622, 0.0138844047, 0.0118395295, -0.0187743232, 0.0179445185, 0.0305249449, 0.0260647461, -0.000849252858, -0.00323030981, 0.00651618652, 0.0133509589, -0.0302582216, 0.00380450464, 0.00919452868, 0.0142400349, -0.0149883404, 0.0230270699, -0.0270723663, 0.00325994566, -0.00161145034, -0.0343479738, 0.0254423935, -0.00416013505, 0.000272974139, -0.00472692121, 0.00257276394, -0.0218564533, 0.00459355954, 0.00494178105, 0.0080461381, -0.0240939613, 0.0190410465, 0.00376375532, 0.0238865111, 0.0169961713, 0.0108170919, -0.00458615087, -0.0158255547, 0.000342201674, 0.000230372578, 0.00361557608, -0.023679059, 0.00495659886, -0.0047083986, 0.00382673158, -0.0017086931, 0.00865367334, -0.0174851622, 0.00711260876, -0.0272353627, 0.00236716494, 0.00889076106, 0.0164923612, -0.00498253061, -0.00391563913, 0.0161663666, 0.0107578207, 0.0135213649, -0.053314928, -0.024627408, -0.0305842161, -0.00150309422, -0.0225973502, 0.0121655241, 0.0312065706, 0.00375819858, 0.00921675563, 0.00554561196, 0.0241235979, -0.014721618, -0.00823136233, 0.0175888874, 0.0263018329, 0.0193225872, -0.0140918558, 0.0190558638, -0.0122025693, -0.00285800919, -0.0180037897, 0.0185668711, -0.0147364354, -0.0149290692, 3.56267119e-05, -0.00584197044, 0.00507514272, -0.0100836046, -0.00330995605, 0.0213081893, 0.00778682437, 0.0203598421, 0.0129582835, -0.00620130543, -0.00253757136, -0.0094908867, 0.00564192841, -0.00654211827, 0.000591791235, -0.0183742382, 0.0154699236, -0.00960943, -0.0193818584, 0.0165368151, 0.0144771216, -0.0166405402, 0.000687181717, -0.0114024, 0.0171591677, 0.00147716282, -0.00753862411, 0.00233567692, 0.00870553683, -0.000612629, -0.0182556957, -0.00874258112, 0.0164479073, 0.00166701758, -0.0049788258, -0.00246162945, 0.0085647665, 0.0315622, 0.000158135139, -0.00781646, -0.0131064635, -0.0114987176, 0.00918711908, -0.0164627247, -0.0103355097, 0.00474544335, 0.00355074764, 0.0492251776, -0.0245977715, 0.0170702599, 0.0293395109, 0.0224195346, 0.0108763641, -0.0011057884, -0.0216786377, -0.00506032445, 0.0179000646, 0.00111504958, 0.0172184408, 0.0298136845, -0.00138732907, -0.00918711908, -0.0260054749, 0.00152902561, 0.0126915611, -0.0266426466, 0.0350592323, -0.0184335113, 0.00833508838, -0.0451354273, 0.0115431705, 0.00591606041, 0.0302137677, 0.0169517174, 0.00554561196, -0.00511959614, -0.0102466019, 0.000817301683, -0.0263462868, -0.00564563321, 0.0289097894, 0.00141233439, -0.0278132632, 0.000228983394, 0.00564563321, 0.00540113728, 0.037281923, -0.014321534, 0.0390008, 0.0108911814, 0.0004419912, -0.00478989724, -0.00240791426, -0.00992801599, -0.00872776378, -0.00116228173, 0.0143882148, -0.0154847419, -0.00220972439, -0.00994283427, 0.00968352053, 0.0208636522, 0.0209377408, -0.00382302701, -0.00905375835, 0.0156921931, -0.00303767668, 0.0021504527, -0.000791833387, 0.00122525799, -0.02095256, 0.0181075167, -0.0158107355, -0.0152180186, -0.0019374449, 0.00401566038, -0.00400084211, 0.0128545584, -0.0251904894, 0.011595034, -0.00590865128, -0.0389415324, 0.0238420572, -0.00577158527, -0.00766828097, 0.021397097, -0.00441944879, 0.0166553576, 0.0318585597, 0.00919452868, 0.0156181026, 0.0267908257, -0.0127508324, -0.00275613577, 0.00782387, 0.0263166521, 0.0419643894, -0.000410271547, 0.00391934346, 0.0320363753, -0.00972797442, 0.00661620777, -0.00814245455, 0.00895003229, 0.00803132076, -0.0192929506, 0.0114172185, -0.0233530644, -0.0158107355, -0.00885371584, 0.00223380351, 0.00612351159, 0.00308027817, 0.000419995835, 0.016329363, -0.000174458022, -0.00129008642, -0.00299137062, -0.00625687279, -0.00483435113, 0.0152772907, -0.0113505377, -0.00463060429, 0.0110023161, 0.00352481613, -0.00118913921, 0.00541225076, 0.00977242738, -0.00257646828, -0.0139288586, 0.00151142932, 0.0459948704, -0.0256794803, -0.0251608528, -0.019559674, -0.00454910565, -0.0259758383, 0.0188928656, -0.0236049704, -0.00265981932, 0.0192336794, 0.0328365415, -0.00763123622, 0.0185372364, 0.00266352366, -0.00292283762, 0.0125063369, 0.024079144, 0.00535297859, -0.0111801317, -0.00514182309, 0.0501735248, 0.00300248386, -0.0010455905, -0.0166109037, -0.0208784696, 0.0088314889, 0.0144548947, 0.0122247962, -0.0135361832, -0.00511218747, 0.0137065891, 0.00377486879, -0.000502883631, 0.0137065891, 0.0170406252, 0.0159144625, 0.0107874563, 0.0144178504, -0.00603089947, -0.00900189485, 0.0114987176, -0.00399343343, 0.00404159166, 0.00106966961, 0.00487139588, 0.00912784785, -0.0104244165, 0.0113727646, -0.000876573438, -0.0216341838, -0.00727190124, 0.000334561162, 0.0118173026, 0.0101576941, -0.028346708, 0.0209377408, -0.00474173902, 0.00474914815, 0.0193670411, 0.00761641841, -0.00921675563, -0.0154551053, -0.00472692121, -0.0116765322, -0.00348777138, 0.00554561196, 0.0122914771, -0.0181075167, -0.000437592127, 0.0100687863, 0.00335996668, 0.0448687039, 0.00756085105, 0.00104373822, -0.000427173276, 0.0244644098, 0.00458244607, 0.00339515926, -0.0295765977, 0.00896485057, -0.00389341218, -0.0166109037, 0.00257461611, 0.00443426706, 0.0154254697, 0.026257379, -0.00246718619, -0.0147142094, 0.0106837312, -0.0165960863, -0.0143289426, -0.00463430909, -0.0314436555, -0.00255424157, 0.0172184408, -0.0128916027, 0.0422607474, -0.0135065475, 0.0178556107, -0.0229381621, 0.00374523294, 0.0130027374, -0.0268204622, -0.0191744063, -0.0122840675, 0.0309694838, 0.00456021912, 0.0115505802, 0.0243903194, 0.00298951822, 0.00859440211, -0.00787573215, 0.00434165495, 0.0227751657, -0.00473803468, 0.00173555058, -0.0117135774, -0.00641246093, -0.0152476542, -0.0135213649, -0.028450435, -0.00610128464, -0.0019707852, -0.00793500431, 0.0336959846, -0.00958720315, 8.74605394e-05, 0.00226158719, 0.010372554, 0.0291765127, 0.0152921081, 0.0373708308, 0.0300063174, -0.0205969289, 0.00518257264, 0.0014447486, -0.0410160422, -0.0103058731, 0.011913619, 0.018122334, -0.0163145456, 0.0172480755, 0.0210266486, 0.00980206393, -0.00382673158, 0.000536224, -0.0239161458, 0.0367781147, -0.0114246272, 0.00111875404, 0.0151365204, -0.0242125057, -0.0056863823, 0.0202116631, 0.00976501871, -0.00480471505, 0.00633466709, -0.0194559488, -0.0108689545, -0.00572713185, -0.0182112418, -0.026805643, -0.00525295781, -0.0152772907, -0.0131286895, 0.00225047371, 0.00952052325, -0.000102394246, 0.00987615343, 0.00745712547, -0.0237976033, 0.0101280585, -0.0202857517, 0.00561599713, 0.00884630717, 0.0111282691, 0.000633003656, 0.003723006, 0.0223009922, -0.0151735647, -0.00273761339, 0.00145308371, -0.0130620096, -0.0014623449, 0.00690886192, -0.00557524804, -0.00293765543, 0.0101502854, -0.00139473809, 0.00613462506, -0.00396379735, -0.0112245856, 0.0174851622, -0.0213526431, -0.0121062528, 0.0143659879, 0.0222713556, 0.0265241023, 0.0225677136, 0.00737192249, -0.0212341, 0.0129212392, -0.00218379311, 0.0187743232, -0.00778682437, -0.00372485816, -0.00947606936, -0.0292950571, 0.00734599121, -0.0145067582, -0.000792759471, -0.00141974329, -0.0131509164, 0.0280207135, 0.0158107355, 0.00767569, -0.00964647532, -0.00389341218, 0.0022856663, 0.0281540751, 0.00122525799, -0.00443797139, 0.0191151351, 0.0034673966, -0.0193966758, -0.00340442033, 0.00352481613, -0.00544559071, 0.00123729755, -0.00184668507, 0.00715335784, -0.0124322474, 0.0221972652, 0.00110393611, 0.0141807636, 0.0246570427, 0.00200412562, 0.00384525396, -0.00806095637, -0.0159589145, -0.00370077905, -0.0247904044, 0.0145438025, 0.0104095992, -0.00658657169, 0.00406752294, -0.0108911814, 0.0172480755, 0.010031742, 0.00765346317, -0.015588467, 0.023130795, -0.00335811451, 0.0315325633, 0.00126137666, -0.0170109887, -0.0108615458, -0.000796927, 0.00309880055, 0.0252497606, -0.0092982538, -0.00473803468, 0.0109726805, -0.0100984219, 0.0159292798, 0.00573083619, -0.0193966758, -0.00488991849, -0.00638282532, 0.0101058315, -0.0114542637, -0.0092538, -0.000767754216, -0.00623094151, 0.00955015887, 0.00662732124, 0.0101206489, 0.00367484777, -0.0313547477, 0.0145734381, 0.00135306269, -0.0161070954, 0.00827581622, -0.00726078777, -0.00278021488, -0.00694961147, 0.023130795, -0.020404296, -0.00385266286, 0.00436758623, 0.00297284801, -0.00575306313, -0.00524184434, -0.00604942162, 0.021797182, -0.00590124261, 0.00970574748, -0.0053715012, 0.0192040429, 0.00363224628, 0.0143733965, 0.0125211542, 0.0101132402, -0.00384895853, 0.00407863641, -0.000641338702, -0.00857217517, 0.00122247962, -0.00784609653, 0.00704222359, 0.004319428, -0.00447501615, -0.013180553, 0.00602349034, -0.00653100479, 0.0207895618, -0.00490103196, -0.0142844887, -0.0205376577, -0.00200968236, 0.0264648311, -0.038674809, -0.0162997283, 0.00400084211, -0.00133731856, 0.0139362672, 0.0365410261, -0.0196930356, 0.00871294551, 0.0195893086, -0.0190855, -0.0105800051, 0.00014841088, -0.0363335758, 0.0106096407, 0.0064865509, 0.010920818, -0.0171888042, -0.00643098354, -0.0287023392, -0.0233086105, 0.00818690844, -0.000108934968, -0.00895744096, -0.0237383302, 0.0119358459, 0.00841658656, -0.0286578853, -0.00137528952, -0.00189021276, 0.00303026754, -0.00873517245, 0.0174407084, -0.00215415726, 0.0062161237, 0.0149809318, 0.00225788285, -0.00435276842, 0.00510848314, 0.00569379143, -0.0136250909, -0.018611325, -0.00795723125, 0.00878703501, -0.00108078308, 0.00708297268, -0.0155588314, -0.00609387551, -0.0103947809, -0.0164182708, 0.00293209869, -0.0280207135, 0.0140029481, -0.00776459789, 0.020107938, 0.00363780302, -0.00620501, -0.0142178079, 0.00439722184, -0.000354472781, -0.00695331581, -0.00166794378, -0.0182112418, -0.003332183, -0.0035266683, 0.0152624724, 0.00678290939, -0.0154254697, 0.0296506863, 0.0127137881, -0.00682736328, -0.0198708493, -0.0133657772, 0.0196782164, -0.0134176398, 0.00363965519, 0.00155588309, -0.0382006355, 0.0273390897, 0.016877627, 0.0109134084, -0.00015871397, 0.0189076848, -0.00678290939, -0.0120321624, -0.0154995592, 0.0115283532, 0.0117728487, -0.0126841515, -0.00352111179, -0.0131879617, -0.0214563683, -0.00113635033, -0.00613092026, 0.0184631459, 0.0291913301, -0.00630132668, 0.00812022854, 0.00952052325, -0.00892780535, 0.00139288581, 0.0143289426, -0.02948769, -0.00453799265, -0.00206154515, -0.00357482675, -0.00937975291, -0.00717928912, -0.00210414664, 0.0170554426, -0.00394897955, 0.00493437238, -0.00220046332, 0.00819431804, -0.0221528113, -0.00583826611, 0.0125359725, 0.00503439317, -0.0101058315, 0.0061531472, 0.00826099887, -0.0172332581, -0.0123729752, -0.0104318261, -0.011343129, 0.00987615343, -0.0133657772, 0.0105133243, -0.0265833735, 0.00905375835, 0.0124026109, 0.00727190124, -0.0161515493, -0.0106689129, -0.0138844047, 0.00140029483, 0.0137288161, 0.0164034534, -0.00899448618, -0.0110245431, -0.000482509, -0.00823136233, 0.000533445622, 0.000643654, -0.0126767429, -0.0184335113, -0.0190410465, 0.00658286735, -0.0170109887, -0.00522332173, 0.0133435503, 0.00584197044, -0.0246570427, -1.20902187e-05, -0.00732376426, -0.0215304587, 0.00792759471, -0.0119877094, 0.0145141669, 0.0271316376, 0.0022263946, -0.00248385617, -0.0137065891, -0.00178926555, -0.0117506217, 0.0201820266, -0.00186891202, 0.00516775483, 0.00230048434, 0.0122025693, -0.00932048075, -0.00474544335, -0.0153810158, 0.0286875218, 0.00564933755, -0.0137214074, 0.0133213233, 0.00222454243, 0.00676809158, 0.00149938976, -0.0197226703, -0.00221713353, 0.011217176, -0.0195893086, 0.00500105275, 0.0220342688, 0.00265426259, 0.00749787502, -0.0172925293, 0.010906, -0.00343405642, 0.0203302056, 0.0133657772, -0.0192188602, 0.0217527281, -0.0253534857, -0.0230270699, 0.0026172176, 0.0198263954, -0.0128323315, 0.00437129056, -0.0154254697, -0.00806095637, 0.0109578623, 0.0079720486, -0.0189076848, 0.0056271106, 0.0127211967, -0.0158551894, -0.00749787502, 0.0206117462, -0.00257832068, 0.00284689572, 0.00311176619, -0.0104614617, -0.00763123622, 0.0121210702, 0.0222120844, -0.0113875829, 0.0132472338, -0.0147290267, 0.00433054147, -0.00557154324, -0.00774237094, -0.00213933922, 0.0222120844, 0.00237457408, -0.0152032012, 0.00643839268, 0.0111356778, 0.00409715902, -0.00855735689, -0.007720144, -0.00110301, 0.00483805547, 0.0305249449, 0.00650877785, 0.0127137881, -0.011217176, 0.0128323315, -0.0119877094, 0.0101725124, -0.00304693775, 0.0211600102, 0.00802391116, 0.0181371514, -0.016877627, -0.012906421, 0.0106392773, 0.00238568755, -0.0195893086, -0.0153958341, -0.0198412146, -0.0213822797, -0.00341738621, -0.00287838373, -0.00491214544, -0.0105800051, 0.0228937082, 0.0137288161, 0.0174110737, 0.00567156449, 0.0017253632, 0.0174703449, 0.00459355954, -0.00465653604, -0.000420227356, -0.000575584127, -0.0032043783, 0.00203746604, -0.00636059837, 0.0100095151, 0.00106318679, 0.0282429829, 0.0216786377, -0.023234522, -0.012187751, -0.00178278273, 0.0048751, -0.0170109887, 0.00999469683, 0.00696442928, 0.0195300374, 0.0163145456, -0.0293987822, -0.00420458894, 0.00169665355, 0.0090982113, -0.007720144, 0.000108298264, -0.021649003, 0.00417124853, -0.00435647275, 0.0309102107, 0.0243606847, 0.00438610883, -0.0142252175, -0.023679059, -0.00678661419, 0.0132398242, 0.0105800051, 5.86929127e-05, -0.0257239342, -0.0076608723, 0.000405640953, -0.00440463098, 0.0245533176, 0.00546411332, -0.0146401189, -0.00536038773, 0.0136399083, 0.0155440131, -0.000234077059, 0.0165960863, -0.00676438725, -0.00933529902, 0.0006547675, 0.00526407128, 0.00195967173, -0.00966129359, 0.00256350264, 0.00770532573, 0.00179760065, -0.00437499536, 0.0299915, 0.0194707662, 0.00937975291, 0.0123062944, 0.00756826, 0.00501216622, 0.0132398242, 0.0344368815, 0.0032117872, -0.00860922, -0.00213748706, -0.00684959, -0.00633466709, -0.0087573994, 0.00224121264, 0.00593458256, 0.0226714406, 0.00474173902, -0.00321919634, 0.0157218277, -0.0284652524, -0.0134546841, -0.00380820921, 0.0176185239, 0.00364335952, 0.00486769155, 0.0193522219, -0.0173221659, 0.00315992441, 0.0159144625, 0.00102151139, -0.00303026754, -0.00966129359, 0.00747564808, -0.00383784506, -0.0168035384, 0.00998728815, -0.00744601199, 0.000691349269, -0.00106966961, -0.00602349034, -0.00111968012, -0.012187751, -0.0160922762, -0.00142066949, -0.0284207985, 0.0141289, 0.0185668711, 0.00650507305, -0.00305990339, -0.00271538645, 0.0236938763, -0.000669585424, 0.00466394471, -0.0261684731, 0.010202148, 0.000218911824, 0.0188780483, 0.017277712, 0.00600496773, -0.00396750215, 0.00753862411, -0.00117895193, 0.0031969694, -0.0281688944, -0.0245385, 0.00513811875, 0.00037461592, -0.0158255547, -0.00319882156, -0.00154013908, 0.00158088841, -0.00720522041, 0.00281540747, -0.00246903836, -0.000545485236, -0.02015239, 0.00872035418, -0.0210266486, -0.0174703449, 0.00919452868, -0.0183594208, -0.00456762826, 0.00334700104, 0.00963165704, 0.0110245431, 0.0114616724, 0.0109652719, -0.00434165495, -0.0233975183, -0.0120173451, 0.00487880502, -0.01104677, -0.0124396561, -0.000594106561, -0.00525295781, -0.00138177234, -0.000753862434, -0.0233382471, 0.0115728071, -0.00569008663, -0.0156032853, 0.00714594871, -0.00449724309, -0.00349147571, 0.00180964021, 0.0073274686, -0.019707853, -0.0106540946, 0.0163145456, -0.0213230085, 0.00915748347, -0.000958535122, 0.00721262954, 0.0157070104, -0.000879351806, 0.00437499536, -0.00355445198, 0.0202412978, 0.0134695023, -0.00876480807, -0.000603367749, -0.0182408765, -0.00184668507, -0.000555672566, 0.0111282691, 0.0026098087, -0.0183446035, -0.0178407934, -0.0265537389, -0.000453104643, 0.00634578057, 0.000717743707, 0.00497512147, 0.0218860898, -0.0130471913, -0.00175222079, -0.0186854154, -0.00531593384, 0.00357482675, 0.0444538034, 0.0128101045, -0.0266871, 0.00011981689, -0.00129286479, -0.0185372364, 0.0048454646, 0.0174407084, -0.029784048, -0.0194411296, 0.0214711875, 0.0216934569, 0.0104318261, 0.00155866146, 0.003791539, -0.0150698395, -0.0150550213, -0.016729448, 0.000415828283, -0.0088314889, -0.0231159776, -0.00316733355, -0.00593087822, -0.0324809141, 0.0201672092, 0.0022875187, 0.0223454461, -0.00268019387, -0.0158403721, -6.67385902e-05, -0.0100984219, -0.0231900681, -0.00550856721, -0.00864626467, 0.00371930166, 0.0170850791, -0.00826840755, 0.00372671057, -0.0108911814, -0.0145363938, 0.00874999072, 0.0373708308, -0.00100021053, -0.00643839268, -0.00367484777, -0.00939457, 0.0138103152, 0.0158107355, -0.0398898795, -0.00183835, -0.0312658399, -0.00888335146, 0.0125878351, 0.0184186921, -0.00614203373, -0.0053715012, 0.0175592527, -0.00663102558, 0.00490844063, -0.00752751064, -0.0349703245, -0.0279910788, 0.0201820266, -0.0197523069, -0.00164571684, -0.0265833735, 0.0370448343, -0.00758678233, -8.25984098e-05, -0.0252793953, 0.00674956897, 0.0040490008, -0.00235049496, -0.0225084424, 0.00526407128, -0.0278429, -0.00482323766, 0.0128026949, -0.0220194515, 0.0244940463, 0.00148179347, -0.0179889724, 0.00189206505, 0.0152328368, 0.00883889757, -0.00408234075, -0.008364724, 0.0124915186, 0.0255757552, -0.00609758, -0.0404233262, 0.02015239, -0.0213378258, -0.0350888707, -0.013476911, -0.00533816079, 0.0130471913, 0.000467691047, -0.00309509598, 0.00888335146, -0.00316362898, -0.00780905131, -0.0174999814, 0.00213193032, -0.016329363, -0.0378153697, 0.00749046588, 0.00422681589, -0.0128249219, -0.0229233447, 7.74468572e-05, -0.0102984644, -0.0128175132, 0.042438563, 0.00323771872, -0.0147142094, 0.0116246697, 0.0250571277, -0.00258202502, -0.0143511696, 0.0107133668, 0.0135213649, -0.0166109037, -0.0161219127, -1.80593579e-05, 0.000127457388, 0.0153069263, 0.0151142934, -0.00325809326, 0.00297470042, -0.0118543478, 0.00636800751, 0.0125285638, -0.0114172185, -0.0024227323, -0.00403788732, -0.00461949129, -0.0216934569, 0.0102540106, 0.0206117462, -0.0144845312, -0.00137158507, -0.0113505377, 0.002804294, 0.0103132827, -0.000260934554, -0.0131509164, 0.00880185328, -0.00157718395, -0.0233086105, -0.00014852664, 0.0153958341, -0.00834249705, 0.0169961713, 0.00243199361, -0.0223009922, -0.00277095381, 0.0150846569, 0.0111208595, 0.00202635257, -0.00117895193, -0.00144382252, -0.00828322582, 0.0144623043, 0.00903894, -0.0162997283, 0.0174703449, -0.0184779651, 0.043238733, 0.00947606936, -0.0152772907, 0.00642727921, 0.00516405, 0.0258572958, 0.0324216411, 0.0101428758, -0.00385266286, 0.00670511555, 0.00589012913, -0.0092241643, -0.0170702599, -0.014892024, -0.0102614192, 0.0176926143, -0.00868331, -0.00732005946, 0.00570490491, 0.00161422871, -0.0136917718, -0.0184186921, 0.0137658613, 0.0206562, -0.015884826, -0.00746823894, 0.00167627889, 0.018670598, 0.00813504588, -0.00775718875, 0.00153736072, -0.0149661135, -0.0118098939, 0.0280207135, 0.019159589, 0.0247014966, -0.0194263123, -0.0170406252, 0.00717188045, 0.00377301662, 0.0139955394, 0.017722249, 0.00413420377, 0.00552708935, 0.026361106, -0.0102836462, -0.0142548531, -0.000765902, 0.00551597588, 0.0329847224, 0.000803872943, 0.00171702821, -0.0138844047, 0.00207265862, 0.00923157297, 0.0130397826, -0.00283578224, -0.00677920505, -0.0146549372, 0.0287171565, 0.00897966791, 0.000851105084, 0.0199153032, 0.0127434237, -0.00497141713, -0.0148327528, -0.0122840675, -0.00684218109, 0.0215600953, -0.0168628097, -0.027265, 0.00795723125, 0.000595032703, -0.00964647532, -0.00558636151, 0.00703111, -0.0261684731, -0.00637541618, 0.00299877953, -0.00166053476, -0.0155143775, 0.016181184, -0.0264944676, -0.00320623047, 0.00310806185, -0.0146104833, 0.00441204, -0.0187150519, -0.00684218109, 0.00486028241, -0.00435647275, 0.00285986136, 0.000133014109, 0.0121136615, 0.0171591677, -0.0106392773, -0.00138084625, 0.0230270699, 0.00686440803, 0.0190706812, -0.0155440131, -0.0512404181, -0.0225677136, -0.000469080231, 0.00921675563, -0.000810818863, -0.00757196452, -0.0154699236, 0.01563292, 0.00190595677, 4.45116857e-05, -0.0101576941, 0.0277688093, 0.0115283532, -0.00989838, -0.0121062528, -0.0128175132, 0.000785813609, -0.0263018329, 0.0274872687, -0.0191892255, 0.0166553576, 0.0123729752, -0.00849067606, -0.000976131414, 0.0152328368, -0.00533816079, -0.00722374301, 0.00979465432, -0.00219120202, -0.0201375727, -0.00264129671, -0.0105948234, 0.014299307, 0.0201227553, -0.00417865766, 0.00456392393, -0.0165368151, -0.0241976865, 0.0131509164, 0.0103281, 0.000429257052, 0.00655693607, 0.00874999072, -0.0169813521, 0.00827581622, -0.0312954783, 0.00814245455, 0.0121284798, 0.00281725987, -0.00395268388, 0.00335255777, -0.0209229235, -0.00371374493, -0.00538261468, 0.0206858367, -0.0102984644, 0.004182362, -0.012884194, 0.00151976442, -0.00234864256, -0.0107800476, -0.00606053509, 0.00342849968, -0.00373597164, -0.0113801733, 0.000844159222, 0.00336922775, 0.0072681969, -0.0137584526, 0.00714224437, 0.00715706218, 0.0087573994, 0.0116543053, 0.000921953353, -0.00341738621, 0.00393045694, -0.0018281627, -0.0795426741, 0.000264407514, 0.0188780483, 0.0317400172, 0.014173354, 0.00623094151, -0.00741267158, 0.0113060838, 0.0171591677, -0.00428608758, -0.016877627, 0.0138473595, 0.00366188213, 0.0206265654, 0.011172723, -0.00806836504, 0.0143585782, 0.00190225232, -0.0153513802, 0.00610498898, -0.0146401189, 0.00829804316, 0.00732376426, 0.0079720486, -0.0297988653, 0.00376560749, 0.00328958151, 0.00651618652, 0.000960387406, 0.0102243749, -0.00963906664, 0.0143289426, 0.00666066166, -0.00421940675, -0.0166553576, -0.0137880882, 0.01047628, -0.024523681, 0.0228048, 0.004319428, -0.014617892, 0.00295247347, -0.017277712, -0.00220602, -0.00789055, -0.00553449849, -0.000753399334, 0.00564192841, -0.0105429608, 0.0100391507, -0.00516405, 0.0212192815, -0.0192633141, 0.00717558479, -0.0370744728, 0.0219601784, -0.0184779651, -0.0321549177, 0.0144326678, 0.000396148214, -0.0146919824, -0.0500253476, 0.00179760065, -0.0126026534, -0.00304693775, 0.00583826611, -0.0230863411, 0.00427867845, 0.00692367973, 0.00839436, -0.00571601838, -0.00229863217, -0.0154995592, -0.00534557, -0.0154254697, 0.021397097, -0.00855735689, -0.00669400208, 0.010920818, -0.0175296161, 0.0189076848, 0.0114024, -0.0023467904, -0.00270427298, -0.00697183795, -0.0117135774, -0.00709408615, 0.00282652094, -0.00323030981, 0.0131953703, -0.0140103567, 0.0293395109, -0.0129656922, 0.00478248857, -0.0012159968, 0.0309102107, -0.0154106515, -0.035651952, 0.0264796484, -0.0130916452, 0.000760808296, 0.00198930781, 0.0196337625, -0.00200968236, 0.0302137677, -0.018122334, -3.6176596e-05, 0.00345257879, 0.00644580135, 0.0141363097, 0.0303767659, 0.00447131181, -0.0143511696, -0.019856032, 0.00223936024, 0.0170406252, 0.00230233651, -0.0112245856, -0.00485287374, 0.0217527281, -0.00756085105, -0.00328587694, 0.0120617989, -0.001954115, -0.00659768516, -0.0206710193, -0.0129212392, -0.00908339396, -0.00946125109, -0.013751043, 0.0170998964, -0.00185409409, 0.00214304379, -0.011068997, -0.00222083787, -0.0398306064, 0.0165664516, 0.00340997707, -0.0306434892, 0.00339145469, 0.00733487774, 0.00212266902, -0.0175592527, -0.0342294276, -0.00712001743, -0.0121284798, -0.00451947, 0.00456392393, -0.0139659029, 0.00168831844, -0.0213822797, -0.0113801733, -0.00403047819, -0.00379709573, -0.0113653559, 0.0192929506, 0.0171739869, 0.0121284798, -0.0047083986, -0.00862403773, 0.0181519706, 0.00698665623, -0.0116394879, -0.00768309925, 0.00239309645, 0.0155143775, 0.00448983395, -0.00778682437, -0.0125878351, -0.0176926143, 0.00157718395, 0.0193225872, -0.00293209869, 0.0133657772, -0.00154384354, -0.00681254547, 0.02015239, 0.00995765161, 0.01643309, 0.00928343553, 0.0136399083, -0.0269390047, -0.0102614192, -0.0107059572, 0.00325994566, -0.00446019834, 0.0185520537, -0.0141437184, 0.000258387736, -0.0191299543, 0.00475285249, 0.0290727876, 0.00542706857, 0.0104836887, -0.0123803839, -0.0205969289, -0.00487139588, 0.0306731239, -0.0132620512, 0.00676809158, 0.019707853, -0.00219120202, 0.00122711016, 0.0080461381, -0.00205969298, -0.00731265079, -0.0164034534, 0.0163441822, 0.000175615671, 0.00416013505, 0.00651248218, -0.0190706812, 0.0048454646, 0.0111801317, -0.00280058966, 0.0134991379, -0.0266426466, 0.015017977, 0.00247089053, 0.0191447716, 0.027902171, 0.0192484967, -0.00290987198, -0.004182362, 0.0131657347, -0.00639393879, -0.00105022115, 0.00493807672, 0.00405270513, -0.0064717331, 0.0171443503, -0.00968352053, 0.000277373212, -0.0122914771, -0.00963906664, 0.00505291577, 0.00106781744, -0.000656156684, -0.0109800892, 0.0215897299, 0.00709038181, 0.0191003177, -0.0203302056, 0.0113283107, -0.00421940675, 0.00172073266, 0.00319326483, -0.0295173246, 0.022686258, 0.00669770641, -0.00243755, 0.00716076698, -0.0064865509, 0.0106392773, 0.0245829541, -0.0158996433, -0.0169368982, 0.0147882989, 0.0158700086, 0.0283318907, 0.00710149528, -0.0139881298, -0.0049047363, 0.0113949915, 0.00712742656, 0.0150031587, 0.0125433812, -0.0165219977, -0.00937975291, 0.0120988432, -0.0032803202, -0.00530852517, -0.0018013051, -0.00653470913, 0.0125211542, -0.0199153032, -0.013306505, 0.0231456142, -0.00225973502, -0.0148846153, -0.00472692121, -0.00691256626, 0.00147531065, 0.0188780483, 0.0108615458, 0.0181519706, 0.00674956897, -0.011320902, 0.0200338475, 0.00749046588, 0.0150402039, -0.00684218109, 0.01901141, 0.0209081061, -0.0134917293, -0.0382006355, -0.00166053476, -0.00234308583, 0.000308166724, -0.0180037897, 0.0223898981, 0.00870553683, -0.0116098514, -0.0185520537, -0.0107800476, -0.0111504961, 0.00195967173, -0.0168035384, -0.00323957088, 0.0087573994, -0.0202857517, 0.0171591677, -0.0238420572, 0.00383414049, -0.0142474445, -0.000440833537, -0.00783127826, 0.00214860053, 0.00620501, -0.00946125109, -0.00148827629, 0.00336552341, -0.00189206505, 0.00635318924, 0.0104836887, -0.0204783846, 0.0138103152, 0.0210414678, -0.00428608758, 0.00345072639, -0.0213526431, 0.00602719467, -0.0185372364, 0.00848326739, -0.0200931188, -0.00736080902, -0.00570860924, -0.022982616, 0.00428608758, -0.00901671313, -0.0101576941, -0.0047676703, -0.0117802583, -0.00491585, 0.0128693758, -0.00443056226, 0.00823877193, 0.0117580313, 0.0192040429, 0.00953534059, -0.00313399313, 0.00126508111, -0.00969833788, 0.00655323174, 0.0119210286, -0.0132916868, -0.0218564533, -0.00530852517, -0.017825976, 0.0128397401, 0.0124026109, -0.0233975183, 0.0152328368, -0.00077238481, 0.0110541787, -0.0176629778, 0.0588864721, 0.00192447926, -0.0107652294, 0.00924639124, 0.0196189452, 0.00400825124, 0.00161978544, 0.0588272, 0.0097502, -0.00303397211, -0.00383414049, -0.00253201462, -0.00606794422, 0.0140548106, 0.0449576117, 0.0125285638, -0.0267611891, -0.0162256379, 0.00912784785, 0.0140103567, 0.00944643281, -0.0285689775, -0.0213822797, -0.0293395109, -0.0010455905, 0.0305842161, -0.00983910821, -0.0131509164, -0.0154847419, 0.0100465594, -0.0106392773, 0.00978724565, -0.0117506217, -0.0197967608, -0.00208006753, -0.0179889724, 0.0201968439, 0.00628650887, 0.0249385834, 0.00151420769, -0.0179593358, -0.0125656081, -0.0185224172, -0.013328732, 0.0420829356, 0.00814245455, 0.0032117872, 0.00208562426, 0.0319771022, -0.0144252591, -0.00983910821, 0.0127952863, 0.00597903645, -0.00207451079, 0.00808318332, -0.00862403773, -0.0261240192, 0.00682736328, -0.0210859217, -0.00527888909, -0.0150550213, -0.00290246285, 0.00454540132, 0.026953822, 0.0150031587, -0.014721618, 0.0170554426, -0.0124989273, -0.00650507305, -0.019159589, -0.0152476542, 0.0133361407, -0.0054937494, -0.000423931837, 0.0191447716, -0.0231011603, -0.00111504958, 0.011320902, -0.0173073467, 0.00307101686, -0.0246570427, 0.0158996433, -0.00177444762, -0.0352963209, 0.00179852685, -0.0281392578, 0.00373597164, 0.00827581622, 0.0238420572, -0.00253942353, -0.00591606041, -0.00837954227, 0.00230789324, -0.00158551894, -0.0118839834, -0.000323216198, -0.00255238917, -0.000253988663, -0.00111134513, -0.00306546013, 0.0174999814, -0.0092982538, -0.0105059156, -0.00730153732, -0.00689033931, 0.0261240192, 0.0161515493, 0.0260647461, 0.000138107775, -0.0121062528, 0.000488528749, -0.0170850791, 0.0224936251, 0.00524554867, -0.00196893304, -0.0232493393, 0.00235790387, 0.00794241298, 0.00438981317, -0.00418977113, 0.0182556957, -0.00229122303, -0.000605683075, -0.008512903, 0.00407863641, -0.0368373841, 0.0025579459, -0.0147808893, 0.0115505802, -0.0217379089, 0.00493807672, 0.00253942353, 0.0117728487, 0.0295173246, -0.00158181449, 0.00814986415, 0.00151791214, -0.00914266519, 9.37697405e-05, 0.000990023254, -0.0198412146, -0.00789795909, 0.0125359725, -0.00298210932, -0.00547893113, -0.0013178701, -0.000399389653, -0.0118321208, -0.00744230766, -0.00122062734, 0.00837213267, 0.00685699936, -0.00512330094, -0.00357482675, -0.00553079415, 0.0251756702, 0.00303212, 0.010772638, -0.00884630717, 0.00437499536, -0.00443426706, 0.0289246086, -0.0022949276, 0.0222713556, 0.000597348, -0.013432458, 0.00831286144, -0.00703851879, -0.012632289, -0.0062902132, 0.0331921726, -0.000363734, -0.0456688739, 0.0284652524, 0.00417865766, 0.00454910565, 0.0116246697, 0.0170702599, 0.00767569, 0.00816468149, 0.0335181691, 0.00305990339, -0.00317474245, -0.0214711875, -0.00813504588, -0.0166553576, -0.037578281, 0.000608461443, 0.00202635257, -0.00663843472, 0.0523962155, 0.000363270927, -0.0121655241, 0.00567897316, -0.00960202143, 0.0220787227, -0.00507884705, -0.00173091993, -0.00188095158, -0.028746793, -0.0101725124, -0.0114246272, -0.000686718675, -0.00441204, 0.0059568095, 0.00292468979, -0.0183446035, -0.00603460381, 0.00383414049, 0.0288505182, 0.0307620317, 0.00656434475, 0.00926120859, 0.00347480574, 0.00609758, 0.00502327969, -0.00338775036, 0.000271353434]
13 Feb, 2025
std::upper_bound and std::lower_bound for Vector in C++ STL 13 Feb, 2025 The std::upper_bound() and std::lower_bound() functions are used for binary search operations STL containers that provide random access. They both are defined inside <algorithm> header file. In this article, we will learn how to use the std::upper_bound and std::lower_bound for vector in C++ STL. lower_bound() for VectorsThe std::lower_bound() method can be used to find the first value that is greater than or equal to given value in the vector. It needs the vector to be sorted because it implements binary search to find the value. Syntaxstd::lower_bound(first, last, val, comp); upper_bound() for VectorsThe std::upper_bound() method can be used to find the first value that is greater than to given value in the vector. It needs sorted vector because it implements binary search to find the value. Syntaxstd::upper_bound(first, last, val, comp); ExamplesThe below examples demonstrate the use of std::upper_bound and std::lower_bound in a vector in different scenarios. Example 1: Finding Lower and Upper Bound in a Sorted Vector C++ // C++ Program to illustrate use of std::lower_bound() // and std::upper_bound() for vector #include <bits/stdc++.h> using namespace std; int main() { vector<int> v = {11, 34, 56, 67, 89}; // Finding lower bound of 56 cout << *lower_bound(v.begin(), v.end(), 56) << endl; // Finding upper bound of 56 cout << *upper_bound(v.begin(), v.end(), 56); return 0; } Output56 67Time Complexity: O(log n), where n is the number of elements in vector.Auxiliary Space: O(1) Example 2: Finding the Lower and Upper Bound in a Part of Unsorted Vector C++ // C++ program to find the upper and lower bound in // the part of a vector #include <bits/stdc++.h> using namespace std; int main() { vector<int> v = {89, 11, 56, 34, 67}; // Sorting v before finding upper and lower bound sort(v.begin(), v.end()); // Finding the lower bound of value 30 in the // first three elements of the vector v cout << *lower_bound(v.begin(), v.begin() + 3, 30) << endl; // Finding the upper bound of value 30 in the // last three elements of the vector v cout << *upper_bound(v.end() - 3, v.end(), 30); return 0; } Output34 56Time Complexity: O(log n), not considering time required for sorting.Auxiliary Space: O(1), not considering memory required for sorting. Explanation: As we know that std::upper_bound() and std::lower_bound() doesn’t works for unsorted vector, so we use std::sort() function to sort the vector. After that, we find the lower and upper bound in the desired range. Example 3: Checking if an Element Exists in Vector using lower_bound() C++ // C++ Program to check if the element exists // in a vector using lower_bound() #include <bits/stdc++.h> using namespace std; int main() { vector<int> v = {11, 34, 56, 67, 89}; int val = 56; // Cheking if val exists in the vector v auto it = lower_bound(v.begin(), v.end(), val); if (*it == val) cout << val << " is found."; else cout << val << " is NOT found."; return 0; } Output56 is found.Time Complexity: O(log n), where n is the number of elements in vector.Auxiliary Space: O(1) Explanation: The lower_bound() function will return the iterator to the given value if it is present in the vector. If it is not present, it will return iterator to the largest element smaller than the given value. We cannot use the upper_bound() function to find the given value in the same way. Example 4: Finding the Number of Elements Smaller and Greater than a Value C++ // C++ Program to count the elements smaller and larger than // a value in a vector using lower_bound() and upper_bound() #include <bits/stdc++.h> using namespace std; int main() { vector<int> v = {11, 34, 56, 67, 89}; int val = 50; // Finding lower and upper boud of val in v auto lb = lower_bound(v.begin(), v.end(), val); auto up = upper_bound(v.begin(), v.end(), val); // Finding the number of smaller elements cout << "No. of Smaller Elements: " << lb - v.begin() << endl; // Finding the number of larger elements cout << "No. of Larger Elements: " << v.end() - up << endl; return 0; } OutputNo. of Smaller Elements: 2 No. of Larger Elements: 3 Time Complexity: O(log n), where n is the number of elements in vector.Auxiliary Space: O(1) Explanation: The lower_bound() function will return the iterator to the first element just greater than or equal to the given value in the sorted vector. It means that all the elements previous to this will be less than the give value, so we can substract the vector.begin() iterator from the iterator returned by the lower_bound() to get the number of elements. Difference Between lower_bound() and upper_bound()Following are the main differences between the std::lower_bound() and std::upper_bound(): std::lower_bound std::upper_bound Finds the first position where the value is not less than the given value (≤).Finds the first position where the value is greater than the given value (>).Returns an iterator pointing to the first element that is greater than or equal to the specified value. Returns an iterator pointing to the first element that is greater than the specified value.Syntax:lower_bound(first, last, val, comp); Syntax:upper_bound(first, last, val, comp); Learn C++ Online – Master everything from basics to advanced concepts. Apply your knowledge with practical exercises and boost your skills. Take the Three 90 Challenge: finish 90% in 90 days for a 90% refund. Start now and level up your C++ programming!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum/Algorithm for Dynamic Time out timer Calculation/Difference between Round trip time (RTT) and Time to live (TTL)/Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms/Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm/Round Robin Scheduling Algorithm with Different Arrival Time/Selfish Round Robin CPU Scheduling/Find the order of execution of given N processes in Round Robin Scheduling/Calculate server loads using Round Robin Scheduling/set::lower_bound() Function in C++ STL/Implementation of lower_bound() and upper_bound() in List of Pairs in C++/Difference between std::set::lower_bound and std::lower_bound in C++/Difference between std::set vs std::vector in C++ STL/std::minmax() and std::minmax_element() in C++ STL/std::rotate vs std::rotate_copy in C++ STL/std::bitset::to_ullong and std::bitset::to_ulong in C++ STL/std::upper_bound and std::lower_bound for Vector in C++ STL
https://www.geeksforgeeks.org/upper_bound-and-lower_bound-for-vector-in-cpp-stl?ref=asr10
PHP
std::upper_bound and std::lower_bound for Vector in C++ STL
What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, jQWidgets jqxTreeMap width Property, Round Robin Scheduling Algorithm with Different Arrival Time, Difference between Flow and TypeScript, jQWidgets jqxTree destroy() Method, jQWidgets jqxTree collapseAll() Method, Find the order of execution of given N processes in Round Robin Scheduling, jQWidgets jqxScrollView buttonsOffset Property, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, jQWidgets jqxListBox enableHover Property, Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm, std::rotate vs std::rotate_copy in C++ STL, Selfish Round Robin CPU Scheduling, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxSlider buttonsPosition Property, std::upper_bound and std::lower_bound for Vector in C++ STL, Difference between Round trip time (RTT) and Time to live (TTL), jQWidgets jqxSlider rtl Property, Difference between std::set::lower_bound and std::lower_bound in C++, jQWidgets jqxTooltip opacity Property, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, jQWidgets jqxToolBar height Property, PHP, std::minmax() and std::minmax_element() in C++ STL, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, Node.js date-and-time Date.transform() Method, TypeScript Optional Parameters, jQWidgets jqxToolBar theme Property, Difference between std::set vs std::vector in C++ STL, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, Steps to Diagnose and Resolve a Slow Network, How to use Optional Chaining with Arrays and Functions in TypeScript ?, Calculate server loads using Round Robin Scheduling, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, jQWidgets jqxScrollView showButtons Property, Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms, jQWidgets jqxScrollView disabled Property, jQWidgets jqxSplitter destroy() Method, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, set::lower_bound() Function in C++ STL, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, jQWidgets jqxTree collapseItem() Method, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), jQWidgets jqxSortable opacity Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, jQWidgets jqxSlider height Property, jQWidgets jqxSwitchButton onLabel Property, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, jQWidgets jqxToolBar tools Property, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTree width Property, Implementation of lower_bound() and upper_bound() in List of Pairs in C++, jQWidgets jqxTree clear() Method, TLS Handshake?, Algorithm for Dynamic Time out timer Calculation, Adhoc TCP, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, jQWidgets jqxTabs position Property, Differences between Wireless Adhoc Network and Wireless Sensor Network, jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, std::bitset::to_ullong and std::bitset::to_ulong in C++ STL, Impact of Three-way Handshake and Slow Start Algorithm, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, How to Sort an Array Having Optional Properties in TypeScript ?
GeeksforGeeks
[-0.00901982747, 0.00645787455, -0.0110445367, 0.0158760659, 0.0255975965, -0.0418391339, -0.0191799235, 0.0243842322, -0.032541547, 0.0194138251, -0.0250859372, 0.0245304219, 0.0206856653, -0.0265770592, 0.00320152682, 0.00641767262, 0.0241210926, 0.0249836054, -0.0191945434, -0.0371611044, -0.0265332032, 0.00969229359, -0.0258168802, 0.0260800179, -0.031693656, 0.00886632875, -0.0251151752, 0.0124333268, 0.00258936291, 0.0264308713, 0.00593525078, 0.00667350227, -0.00276113418, -0.0114538651, 0.0105182584, 0.00652731396, 0.00684161903, -0.00250895927, -0.0354360789, 0.00338243507, 0.00998467114, 0.01227252, 0.0347928517, -0.0019150686, -0.00970691256, 0.0204079077, 0.00352131412, -0.0121701881, 0.00758718047, 0.010094312, 0.00607047509, 0.00174421084, 0.0484176129, 0.0223668329, 0.0381259471, 0.0220013615, 0.0279512312, 0.00449894927, -0.0272495262, -0.0225422587, 0.0171332862, -0.0371903405, -0.00467803, -0.0473650545, 0.00808422081, 0.0116439098, -0.0260654, 0.0662526041, 0.01012355, -0.00130381819, -0.0233755317, 0.0489438921, 0.0444412865, 0.00292925094, -0.0374534801, -0.00828888454, -0.0078357, 0.000273874903, -0.0217089839, 0.0304364339, 0.0128938211, -0.00632265024, -0.00564287417, -0.0103501417, 0.038184423, 0.0162415355, -0.0032563475, -0.0329508744, 0.0250128433, 0.0235509593, -0.0224984, -0.0266062971, 0.02023248, -0.00617280696, -0.0155105935, 0.0353483669, 0.0336818174, -0.00749215763, -0.00500695407, 0.0513121448, 0.0322199315, 0.00576347951, -0.0159637779, -0.00129011297, 0.0599957369, -0.0145018939, 0.023083156, -0.00174786558, 0.00129468145, 0.00191324123, 0.00708648469, -0.00515679736, -0.00494847866, 0.0447044261, -0.0255683586, 0.0132958386, 0.0290622637, -0.0466633514, 0.0243257564, -0.00608874857, 0.0148308175, 0.0520723239, 0.0366640612, -0.00132026442, -0.0439442471, 0.00215627952, 0.00479132636, 0.010781398, 0.00010947002, -0.00211607781, 0.00119600422, -0.00560998172, -0.0071413056, -0.00904175546, -0.0270741, 0.0246327538, 0.0392662175, 0.0378335677, 0.00314487889, -0.0308165234, -0.0444705263, -0.0224106889, -0.0338864811, 0.0584461391, -0.0506396778, -0.028886836, -0.00969229359, 0.0474235304, -0.0345004722, -0.0134931933, -0.0238725729, -0.000283696951, 0.0746145844, 0.000951138558, 0.0723925158, -0.0207441412, 0.00754332356, -0.00941453595, 0.023097774, -0.0283897966, 0.0400848724, -0.0133908615, 0.00730211288, 0.0193114933, -0.0143776331, 0.0517507084, 0.0298809186, 0.0104890205, -0.0592940338, 0.0408450514, 0.0340034328, 0.016607007, 0.00391054107, 0.00652731396, -0.0421022736, -0.00808422081, 0.0313135646, -0.00403480092, 0.0118924296, -0.00719247153, 0.00082231, -0.0119070485, 0.030319484, -0.00917332526, 0.00260580913, 0.00130473182, 0.0449968, -0.00826695655, 0.031693656, 0.00105712516, -0.0262554456, 0.0171332862, 0.0538558215, 0.0276149977, 0.0280681811, 0.0119728334, -0.0410204791, -0.00696222484, 0.0210072789, 0.0499672107, 0.0259045921, 0.000811345875, 0.000845151953, 0.0120532373, 0.0694102719, -0.00277027092, 0.00514948787, 0.00377897127, 0.00366750266, -0.00885171071, -0.0176303256, 0.0311089, 0.0163146313, 0.0253929328, 0.0056172912, 0.0230100621, -0.0349682756, 0.01593454, -0.0480959974, -0.0170894284, -0.00312843267, 0.0106790662, 0.0382136591, -0.0280681811, -0.0452599414, -0.0171479043, 0.0168116707, 0.0134712653, -0.00293290569, -0.0399094447, 0.049850259, 0.0236679092, -0.00843507331, -0.0117462417, -0.00604123762, -0.0283751767, -0.0457862206, -0.00487538474, 0.00216724374, 0.0372195765, -0.00273006922, 0.0283459388, -0.0188436899, 0.010796017, 0.0051348689, 0.00748484815, -0.00208135787, -0.00238287169, 0.00668812124, -0.0132958386, 0.0287552662, 0.00853740517, 0.0267378669, 0.0119216675, -0.0261238758, 0.00572327757, 0.000129171196, -0.0105474964, -0.0107887071, -0.0145530598, -0.00322345528, 0.0125722066, 0.00166197983, 0.0273518581, 0.021679746, 0.0069439509, 0.0650246218, 0.0115196491, -0.0158322081, -0.0575397722, 0.00629341276, 0.00848623924, 0.00363643747, -0.00211790507, 0.00922449119, -0.00360171776, -0.0105401864, 0.0291499756, -0.00272458722, -0.00472188694, 0.0223668329, -0.0166216269, -0.00100595923, 0.0209926609, 0.0111907255, -0.039792493, -0.0337987691, -0.0186097883, 0.000131341178, -0.00842045434, -0.0175279938, 0.015145123, -0.0192968752, -0.00740809925, 0.0413128547, 0.0440612, -0.0123309949, -0.0457569845, -0.0540312491, -0.0181419868, 0.00677948911, -0.0269571487, 0.0127403233, -0.0101747159, 0.0131569598, -0.0356699787, 0.0118705016, -0.0166654829, 0.0103428327, -0.00294935191, -0.0215043202, -0.026679391, 0.00425408361, -0.0322491713, 0.00503619201, -0.0236971471, 0.0438857712, 0.0443828106, -0.00143447414, -0.0183320306, -0.00450260425, -0.000476482965, -0.00668446673, 0.0190922115, 0.0423946492, -0.0333894417, 0.00428332156, 0.0330385901, -0.0338280052, -0.0549668558, -0.00181182299, -0.0237702411, -0.0457277447, 0.00215993426, -0.00948032085, -0.0361670218, -0.0345881842, 0.0111541785, 0.00408231234, -0.013727095, 0.00188765826, 0.00632630475, -0.00726922043, -0.0147504145, 0.0286236983, -0.0152328359, -0.0044697118, 0.0101966439, 0.0189898796, 0.0365178734, 0.00131021393, 0.00167294405, 0.0298516806, -0.0185220763, 0.0510782413, -0.0331555381, -0.0232001059, -0.014414181, 0.00616915245, 0.0162561554, 0.01087642, 0.0463417359, -0.0509320535, 0.0101820249, -0.00590966782, -0.0226738285, -0.00521161826, 0.00681238156, -0.000275245431, -0.0129011301, -0.0126818474, -0.0439150073, 0.0562825501, 0.00113844255, -0.0507858656, 0.00525912922, 0.0243549943, 0.00536877057, 0.00556247029, 0.00626417482, -0.0286967922, 0.0492070317, 0.030875, -0.0240626186, 0.0183612686, 0.0145530598, -0.0444120504, 0.0163877252, 0.0110079898, 0.00825964753, 4.11440524e-05, 0.00927565712, 0.0229515862, -0.0098896483, -0.0048461468, -0.012265211, -0.0338864811, -0.0247058477, -0.0349975154, -0.0188729279, 0.0652585253, -0.00269900425, 0.00471092248, -0.0106279, 0.008654356, 0.0276296157, 0.000920073537, -0.0165192951, -0.0141729694, 0.00980924442, 0.0107448511, -0.00312295067, -0.0280681811, -0.000430342247, 0.0294569712, 0.0334479176, -0.020978041, 0.0184928384, 0.0217382219, -0.0314889923, 0.00797458, -0.028916074, -0.0013540705, -0.0119143585, -0.00945839193, 0.0241795685, -0.0242088065, 0.0103574516, 0.00967767462, -0.004692649, -0.0379505195, 0.0128426552, -0.00441854587, 0.0349975154, -0.00379724475, -0.024501184, 0.0420730338, 0.017308712, -0.0234047696, -0.0335941054, 0.0280097052, 0.0665449798, 0.0337695293, -0.0342665724, -0.0247497037, 0.0196184888, -0.0251590312, 0.0097361505, 0.00285067456, -0.00160441815, -0.00153954711, -0.00256743445, -0.00924641918, 0.000404530845, 0.0522477515, -0.0198670104, 0.0436518714, -0.0233462937, 0.050522726, 0.0020210552, 0.00233536051, 0.0110664656, 0.0149550783, -0.00513121439, 0.0198816285, 0.01011624, 5.07376681e-05, -0.0146188447, -0.0298516806, -0.00685989298, 0.000592063181, -0.0383890867, 0.0470726788, 0.0256268345, 0.0124187088, 0.0138952117, -0.0108837299, -0.00994812325, -0.0241941884, -0.021679746, 0.0352898911, -0.0149843153, -0.0112565104, -0.0517507084, 0.00290366798, -0.018068891, 0.0167239588, -0.011556197, -0.0171625242, 0.00666619325, -0.0179811791, -0.00404576538, -0.0416637063, -0.027424952, -0.00673563266, 0.0291645955, -0.0561363623, -0.00577078899, -0.0135516692, 0.0437395833, 0.0249982234, 0.00295483391, -0.0372488163, 0.0825087577, 0.020188624, -0.0288137421, -0.023814097, 0.0235801954, -0.00189314038, -0.0323661231, -0.00556978, 0.000586581125, 0.00298224436, 0.0322784074, -0.00236642547, -0.0105182584, 0.0179811791, 0.000944742817, -0.0215627961, -0.0129230581, 0.0159637779, -0.00935606, 0.000860684493, 0.0448506139, 0.0272495262, 0.0219282676, 0.0036766394, -0.0158322081, -0.012294448, -0.0382136591, -0.0225276388, 0.00453184173, -0.0188290719, -0.0111030126, -0.00682700053, -0.0113369143, 0.0174402818, 0.00997005217, -0.0162415355, 0.0421899855, -0.0295593031, 0.0129742241, 0.00391419558, 0.0254952647, -0.024515802, 0.00184288807, 0.0292523075, 0.0124552557, 0.00448798528, 0.0107156131, -0.00285250205, 0.017308712, 0.0140706375, -0.0332432538, -0.00556247029, 0.0401725844, -0.0535634458, -0.0156275444, 0.00415175175, 0.00838390738, -0.000906825182, 0.0328924, 0.0230246801, 0.0160222538, -0.0102843568, -0.0705213, 0.00571231358, 0.0120093804, -0.0398509689, -0.0107083032, 0.00185019756, -0.0120020714, 0.0429794043, 0.00690009445, 0.0055661248, 0.0101747159, 0.00300965458, 0.0213727504, 0.00119691784, 0.00175517506, 0.00834005047, -0.0184636, 0.00538338954, -0.018814452, -0.0129522961, -0.0175279938, -0.0361670218, -0.0214750823, -0.0250420813, 0.00447336631, -0.0161245856, 0.0383306108, -0.00564287417, -0.0096703656, -0.00787955709, -0.00101783709, 0.0254952647, 0.00872745, -0.0358454064, -0.0019095866, 0.0349975154, 0.00221658219, 0.0118266456, -0.00661502732, 0.00379724475, -0.0164023433, 0.0301440582, 0.00862511806, 0.0253344569, 0.0123383049, -0.0412251428, 0.0200570542, 0.00648711203, 0.0139390687, -0.00412616879, -0.00998467114, 0.00561363623, 0.0270887185, -0.0185951702, 0.00574886054, -0.00506177498, -0.0218697917, -0.0185513142, 0.0182004608, 8.64424874e-06, 0.0109860618, -0.0321906954, -0.0280389432, -0.00319787231, -0.038272135, 0.036868725, -0.0259484481, -0.00120970933, 0.0117754797, -0.00745561067, -0.00191689597, -0.0223668329, 0.0337110572, -0.0186097883, -0.0031083317, -0.0312843286, 0.0251444131, -0.00903444551, 0.0737374499, -0.00936337, 0.0147284856, 0.00703166425, 0.00779915368, 0.00166654831, 0.0201155301, -0.0245304219, 0.0281120371, 0.0255391207, 0.00630437676, -0.0246766098, -0.0362254977, 0.00749946712, 0.0120678563, -0.00267890329, 0.00873476, 0.0242088065, -0.0224106889, 0.0162269175, -0.00358892628, -0.0207879972, 0.00816462468, -0.00613260549, 0.00478767138, 0.000873476, -0.00784301, -0.00827426556, -0.023097774, 0.0196331087, -0.0106205903, -0.000114495248, -0.00667350227, -0.0254660267, 0.0175279938, 0.0138952117, -0.0106279, -0.00454280572, -0.0201447681, 0.0287552662, -0.00915870629, -0.00704993773, -0.00972153153, 0.0228638723, -0.017352568, -0.0266940091, -0.00407500286, -0.00223668315, -0.0304364339, 0.0394124053, 0.0170017164, -0.0127403233, 0.010101622, 0.0204371437, -0.0185659323, -0.0199547224, -0.0085885711, -0.00261311838, -0.031079663, -0.0251590312, -0.0253344569, -0.000389683584, 0.0116073629, -0.00369674037, 0.0125210406, -0.0277319476, -0.00974345952, -0.00207587588, 0.00334954285, -0.0163584873, 0.00975076947, 0.00998467114, -0.022337595, 0.00650904048, -0.0149039123, 0.00373328733, -0.0301440582, 0.0228346344, 0.0249105114, 0.012944987, -0.0237263851, 0.00307909423, 0.00169487228, -0.00600103568, -0.00912946835, -0.00903444551, 0.000596174737, -0.0134931933, -0.00161995075, 0.0190337356, 0.0106205903, 0.0147723425, 0.00358709903, 0.0210365169, -0.0217674598, -0.0271618124, -0.0142460642, 0.0168555286, 0.00197537127, -0.00895404257, 0.00901251752, -0.00318142609, 0.00118047174, 0.0264601093, 7.012477e-05, -0.0230246801, 0.037541192, 0.0152620738, 0.0438565351, -0.00211790507, -0.027424952, 0.0335648656, -0.00422850065, 0.0287552662, 0.0132008167, 0.00316497986, -0.0089394236, 0.0249543674, -0.0101600969, 0.00266976655, 0.0396755449, -0.0252321251, -0.0254806466, -0.0340326689, 0.0361962579, 0.0213727504, -0.00445143832, 0.00914408732, 0.00532856863, 0.00568673061, -0.0180396549, -0.0224399269, -0.0215189382, 0.00395074254, -0.00202836469, -0.00718516205, 0.00627879379, -0.00472554145, 0.0339157209, -0.0126526095, -0.00517141633, 0.0097361505, -0.0254514087, 0.0282728449, 0.0204225257, 0.0279366113, -0.0138221178, -0.00915870629, 0.00259849965, 0.000306310481, 0.0306703355, 0.00358344428, -0.00990426727, -0.0423654094, -0.0335648656, -0.0264893454, -0.0365178734, 0.0316059403, -0.0401141085, -0.0141802793, -0.00490827719, 0.0166947208, -0.00891018566, -0.00975807849, 0.0395001173, 0.0323953591, 0.0241941884, 0.00053632888, -0.00551495887, -0.0221767873, 0.0235217214, 0.0150866471, -0.00276844366, -0.00569038512, -0.00815731566, 0.00599738117, 0.00415906124, -0.0116585288, 0.0241210926, 0.0213581324, -0.0430963524, -0.054089725, 0.00524085574, -0.0145457499, 0.0203640498, 0.0307872873, -7.7377088e-05, -0.0126087535, 0.0289306939, -0.00829619449, -0.0118558826, -0.00764565589, 0.010094312, -0.00481690932, -0.00356699806, 0.01732333, 0.0306410976, 0.00160076341, -0.0110226087, -0.0242819, -0.00115214766, 0.0259923059, 0.000508004858, -0.0297201108, 0.0218405537, -0.0127476323, 0.00602661865, 0.00886632875, 0.007923414, -0.0139975436, -0.00099499512, 0.000787590223, 0.0302317701, -0.0513706207, -0.0256268345, -0.0154813565, 0.00747753913, 0.0119655244, 0.000231731523, 0.00229515857, 0.00916601531, 0.00834005047, 0.0172209982, 0.003433601, -0.0213435125, 0.00837659743, -0.0166654829, 0.00318325334, -0.0278489, -0.0102989757, 0.0329216383, -0.00930489413, -0.0227907784, -0.017264856, 0.0372780524, 0.00901982747, -0.0127257043, 0.0224545449, 0.0133396955, -0.0304071959, -0.0400263965, -0.0131569598, -0.00102788745, 0.00119417685, -0.0148454364, -0.0128353452, -0.0349975154, 0.0127476323, 0.0190483537, -0.0161099657, -0.00137965346, 0.00109458598, 0.00488269422, 0.00899058953, 0.0216212701, 0.000141848475, -0.0284482706, -0.00433083251, -0.0053541516, -0.0134858843, 0.011534268, 0.025261363, 8.38727658e-07, 0.00506908447, 0.0253783148, 0.0222060252, 0.0390907899, 0.00811345875, -0.0196477268, -0.0238725729, -0.0488561764, 0.00487538474, 0.0140560186, -0.0273957141, -0.0135151213, 0.0337695293, 0.00890287664, 0.0112345824, 0.00684892852, 0.0215335581, 0.0279658493, -0.0156129263, -0.00457935315, -0.0135297403, 0.0343250483, -0.020963423, -0.0133762425, -0.0247789416, 0.00245413859, 0.0135224313, -0.0141071845, -0.000507548, -0.0253783148, -0.0172356181, -0.029617779, -0.0647907183, -0.0337695293, -0.00602661865, -0.00640305365, 0.0146188447, -0.031810604, -0.00623493735, 0.00240297266, -0.0192237813, -0.0048351828, -0.00761641795, 0.00583657343, 0.0143045392, 0.0136832381, 0.00124442915, -0.0384183228, -0.00898328, -0.0127476323, -0.032541547, -0.0152182169, -0.0151158851, 0.00732769584, 0.0279219933, 0.00967767462, -0.00109093124, -0.00944377389, 0.00371866859, -0.0140340906, 0.00318142609, -0.0327754505, -0.0128645832, 0.00449164, 0.0249836054, -0.0123236859, 0.0024833763, 0.0583876632, -0.00172776473, 0.0222791191, -0.0156567823, -0.028214369, -0.00668812124, 0.00664061029, 0.0134931933, 0.0424531251, -0.00740444474, 0.0102405008, 0.0316059403, 0.00797458, -0.00934144203, 0.00478036236, -0.0208172351, 0.0183612686, -0.000282098015, 0.00079033128, 0.0052006538, -0.00668081176, 0.0188875478, 0.061983902, 0.0248227976, -0.0228346344, -0.00860319, -0.0326585, -0.018098129, 0.0202909559, -0.00624224637, 0.0149989342, 0.0214312263, 0.0124844927, 0.0096703656, 0.0133104576, -0.0122067351, 0.0133323865, -0.0124552557, -0.0309627131, -0.0173379499, -0.0017670528, -0.0262408257, 0.0184197444, 0.0097361505, -0.0150866471, 0.0440904349, -0.00410058582, -0.0293400213, -0.0246181339, -0.0197208207, 0.0467510633, 0.00910023, 0.0165485311, 0.00999928918, 0.004327178, -0.00134219264, -0.00912215933, 0.0103647606, -0.0024230734, 0.00684892852, 0.00954610575, 0.0253929328, -0.0054089725, -0.00443316437, -0.0449675657, -0.00972153153, 0.0135955252, 0.00331299566, 0.000659218524, 0.00347563019, 0.0208026152, -0.012966915, -0.0153059298, -0.00401287293, -0.0199401043, -0.00164644734, 0.00296945288, 0.00163091486, 0.0269717686, 0.0234486274, 0.0103647606, 0.0169432405, -0.0120166903, -0.00941453595, -0.00455377, 0.0105474964, 0.0207002833, -0.00829619449, -0.0221914053, 0.0204371437, -0.00896135159, 0.00339157181, 0.0342665724, 0.0251151752, -0.0138952117, 0.0149843153, 0.0167970527, 0.00526278419, 0.0118558826, -0.00962650869, -0.00516410684, -0.0150720291, 0.0145092029, 0.0132958386, -0.0216066521, 0.0103135947, -0.0328924, -0.0121336412, -0.0279512312, 0.00305716577, 0.0278635174, 0.00377531652, -0.015130504, 0.0282289889, -0.0119216675, -0.00763103692, -0.0202909559, -0.00808422081, 0.013697857, 0.0168262906, -0.00416637072, -0.0186975021, -0.0155544505, 0.0345881842, 0.0776553, -0.00834736, -0.00873476, -0.0110737747, 0.000744190533, 0.00252175075, -0.00573424157, -0.00355237932, 0.0140267815, 0.00126453, 0.00210694107, -0.00227140286, 0.00896866154, 0.0104597835, 0.0121774971, 0.0254514087, 0.0323076472, -0.004692649, 0.0179519411, 0.00143081939, -0.012988843, 0.0136101441, 0.0117389318, -0.0159783978, 0.00901982747, -0.00912946835, -0.0117023848, -0.0226445906, -0.0111103216, 0.00272275973, 0.0283751767, -0.0174402818, 0.0189167839, -0.0180835109, 0.0116000529, 0.0351729393, 0.0299686305, -5.15085849e-05, -0.0161830615, 0.0285798404, -0.0161684416, 0.00418098969, 0.00213069655, 0.00702070026, 0.0128718922, -0.0207149033, -0.0300563443, 0.0333894417, 0.00149386318, -0.00615453348, -0.0118266456, -0.00559536275, 0.0113661513, -0.00196257979, -0.00713399611, 0.0135516692, 0.0225861147, -0.0404064879, 0.00364922895, -0.0195015389, -0.0219282676, -0.0035706528, 0.0179665592, -0.017352568, 0.0196184888, 0.00763103692, -0.031810604, -0.0199693423, 0.0134127894, -0.00436007045, -0.0261823498, 0.0057744435, 0.0362547338, -0.00510563143, -0.00641767262, -0.00991888624, 0.0184928384, -0.0214312263, -0.0192676373, -0.00117224862, 0.0213142745, 0.0117023848, -0.00554054184, -0.00395439751, -0.000863882364, -0.00237008021, -0.0139317587, 0.0168116707, 0.003961707, -0.00901982747, -0.00102788745, -0.0117389318, -0.0489146523, -9.71924746e-05, 0.000635462871, 0.00665157428, 0.00812807772, 0.0368979648, -0.000475569279, 0.0107887071, -0.0178934652, -0.00682700053, -0.00656386139, 0.015145123, 0.0191945434, -0.0341788568, 0.00982386339, -0.00173141935, -0.00836197939, 0.0198670104, 0.0128938211, -0.0153936436, 0.00854471419, 0.00554054184, -0.00687451148, 0.010861801, 0.023799479, -0.00258022593, 0.00630437676, 0.000484706048, -0.0172502361, 0.0274834279, 0.00290915, 0.0128134172, -0.0431840681, 0.00896135159, -0.00894673262, 0.00586946588, 0.0314597525, 0.023083156, -0.0334771536, -0.015203598, -0.00270265876, -0.0287552662, -0.0173818059, 0.0139244497, -0.0214750823, 0.0335941054, 0.00208135787, 0.0131569598, 0.0125429686, 0.0354068428, 0.00101235497, -0.0286236983, 0.00253088749, 0.00153863337, 0.0277319476, -0.0111395596, 0.0299978685, -0.00402383693, -0.0255829785, -0.0136174532, -0.00517872581, 0.0134931933, -0.0029566614, -0.00861780904, 0.0364301614, 0.00330568617, 0.00658213487, -0.045435369, 0.00336781633, 0.0163438674, 0.0385937504, 0.0364009216, -0.0269863866, -0.0121555692, 0.00768951233, -0.000135566937, -0.0247497037, 0.0113296043, 0.0256560724, -0.00857395213, 0.0089394236, -0.0114319362, 0.033944957, 0.00338974455, 0.0175279938, 0.0158175901, 0.0150866471, 0.0261969697, -0.0113588423, 0.00456107967, 0.00637747068, -0.0021288693, -0.0111395596, 0.00629341276, -0.00630072178, -0.0112857483, 0.00163091486, 0.0103501417, 0.00207770336, -0.00646883855, 0.00924641918, -0.0327462107, -0.00206491188, 0.0233024377, 0.00611067703, -0.0217528399, -0.0241064746, 0.0201009102, -0.00382282794, 0.00942915492, -0.0233462937, 0.00107174402, 0.017308712, 0.00384841091, -0.0248374175, 0.0127476323, 0.0046122456, 0.00907830242, -0.00797458, -0.0230246801, -0.00370953185, -0.0173964258, -0.0241064746, 0.00098585838, 0.00348476716, 0.0255829785, 0.0152913118, -0.00818655267, 0.02163589, 0.00926103815, -0.0159637779, -0.00830350351, 0.000751043146, 0.00804767385, 0.0295008291, 0.0128572742, -0.00246875733, 0.0093195131, -0.0343250483, 0.00929758511, 0.0199401043, 0.00337695307, 0.023097774, -0.00652731396, 0.0409035273, -0.049119316, -0.0210218988, 0.0171771422, 0.0416929461, -0.00986772, 0.0010105276, 0.00436738, 0.0152766928, -0.000130655928, -0.00853009615, -0.00291828671, -0.00949494, 0.00774798775, -0.0117316227, -0.0195453949, 0.02314163, -0.0138367359, -0.0133835524, 0.0193845872, 0.0082231, 0.0160368718, -0.000829619414, -0.0429794043, 0.00398363499, -0.00301330932, -0.00344456523, 0.0164169632, -0.00670274, -0.0140706375, -0.0233901516, -0.00935606, -0.00999198, -0.0049009677, 0.0173379499, 0.0140706375, -0.0139244497, 0.00615453348, -0.000242124617, -0.023843335, -0.000501609116, -0.015203598, 0.00784301, -0.0126891574, -0.00310467719, 0.0417514183, -0.00939991698, 0.0174695197, 0.0205540955, -0.00355786132, -0.00545648392, 0.0176888015, -0.0106936852, -0.0113442233, 0.00179994525, 0.00728018442, -0.0130546279, -0.00522258226, 0.0120751653, 0.0217966978, -0.00347928493, -0.0205394756, -0.00356882531, 0.00848623924, -0.0146188447, 0.0236240532, -0.0152620738, 0.00531760463, 0.00913677737, -0.0127987983, 0.00646518404, 0.0164754372, 0.00691105891, 0.0072070905, -0.0157298762, -0.0314305164, -0.00589139434, 0.0232439619, 0.00450260425, 0.0142460642, 0.0138001889, 0.00904175546, 0.0088078538, -0.00923911, -0.0278635174, -0.0155544505, -0.00502157304, 0.0234047696, -0.00614722399, -0.0126745384, -0.0167531949, 0.0200862922, -0.0235217214, 0.00896866154, 0.0129522961, -0.0069329869, 0.0117316227, 0.013719786, 0.0147723425, 0.00175974343, 0.000611250405, 0.0140852565, 0.0133762425, 0.00949494, -0.00989695732, 0.0277611855, -0.0138440458, -0.0138805928, -0.0148966024, 0.0058402284, -0.00667715725, 0.00797458, -0.00986772, 0.0104524735, -0.00999198, -0.00580368144, -0.00739348074, -0.0106498282, -0.00755063305, -0.0203055758, -0.00292925094, 0.0442658626, -0.00287991227, 0.0121555692, -0.00262773735, 0.0179811791, 0.011541578, -0.0433302559, 0.0135882162, -0.0110810837, 0.0221475493, -0.00321431854, 0.00735693332, 0.0449090898, 0.00274468795, -0.000744647405, -0.0157883521, 0.0177326575, 0.0336233415, -0.0013915312, -0.00519699929, -0.000910936738, -0.00479498086, 0.00238652644, -0.00990426727, -0.0295300651, 0.0104524735, 0.0105109494, -0.0067100497, 0.0133616235, -0.0107156131, 0.0164900571, -0.0103209037, 0.00526278419, 0.015159742, 0.0257730223, 0.0382136591, 0.0306995735, 0.00116768025, 0.0313135646, -0.00568673061, -0.0205394756, 9.02827887e-05, -0.00280681811, 0.0328339264, 0.0062020449, 0.0254221708, 0.0155544505, -0.00484980177, -0.004692649, -0.00520430878, -0.0227469224, 0.0422484614, -0.0123456139, 0.0335063897, 0.0283605587, -0.00915139634, -0.00510563143, 0.0247789416, 0.000436738, -0.00631534075, 0.0296908729, -0.00991888624, 0.0156129263, -0.0118705016, 0.00212704181, -0.00224947464, -0.0235655773, 0.0218405537, -0.0082231, 0.0143264672, 0.00897597056, 0.00423581, -0.00556247029, 0.0102478098, -0.0278196614, 0.00370222237, -0.0159637779, -0.0125429686, 0.0102405008, 0.00643960107, -0.00586946588, 0.00676852511, -0.00382648245, 0.000474655593, -0.0102039538, -0.00563921919, 0.00945108291, 0.00273189647, -0.000270905468, 0.028155895, -0.00394708803, 0.00427601207, 0.013018081, 0.00839852635, -0.00853740517, -0.0101600969, 0.0262993015, -0.00748119364, -0.0198816285, 0.00407865783, 0.0213727504, 0.0203494318, 0.0193553492, 0.0140852565, -0.0128792021, -0.0313428, 0.0196331087, 0.00729114888, 0.018814452, -0.00705724722, 0.00334406062, -0.0155690694, 0.00170949113, -0.00458666263, 0.0106059713, -0.00709744915, -0.00665888377, 0.0326585, 0.0256414525, -0.00408962183, 0.00151944614, -0.00409693131, -0.0104524735, -0.00607413, 0.028886836, 0.00632630475, 0.010108931, 0.00196988927, 0.024515802, -0.0229515862, 0.00726191094, 0.00398729, -0.00090179994, -0.00915870629, 0.00996274222, -0.0128645832, -0.0017880674, -0.0014070638, -0.00407865783, 0.0105255684, 0.00401652744, 0.016607007, -0.0199547224, -0.0185951702, -0.0200278163, -0.0107302321, -0.0113734612, 0.0213727504, -0.00399094447, 0.0157152582, 0.000699420343, 0.0125795156, 0.00440027239, -0.00342446426, -0.0360793099, 0.0147723425, -0.00058109907, -6.41287625e-05, 0.00146188447, -0.0129522961, -0.00915870629, 0.0227176845, 0.0184051245, 0.00902713649, -0.0106936852, 0.0149623873, 0.000200209644, 0.0186536461, 0.0330678262, -0.0088078538, 0.00128645834, 0.0251882691, -0.0142022073, -0.0035395876, -0.0190044977, -0.000409556058, -0.00451356824, -0.0150866471, 0.00991888624, 0.0156567823, -0.00710475864, 0.00755063305, 0.000420748605, -0.00293656043, 0.0140487095, -0.00969229359, 0.0203348119, -0.000765662, 0.00388861261, 0.0101820249, 0.0261384938, -0.00236825272, -0.00524451025, 0.013734404, -0.00908561144, 0.000473285094, -0.00971422251, -0.0023773897, 0.0214458443, -0.0169432405, 0.00109549961, 0.00635188771, 0.0213142745, 0.0235363394, 0.0197792966, -0.00434910646, 0.00840583537, 0.00875668786, 0.00563190971, 0.0108106351, 0.00383744668, 0.00217455323, 0.00770413084, 0.0139317587, 0.00478036236, 0.0143922521, 0.00760910846, -0.00480594533, 0.0205248576, 0.025977686, -0.000261540263, 0.00768951233, -0.0218697917, 0.00739713525, -0.00441854587, -0.0145603688, -0.00670274, -0.0124479458, 0.00528105767, 0.018010417, 0.0190483537, -0.0146115348, -0.0135882162, -0.0123309949, 0.0190191176, 0.0092318, -0.0264016334, -0.0384183228, 0.0106644472, 0.00186390267, 0.00051759847, -0.0330678262, 0.00409327634, 0.000310878851, 0.00340070878, 0.010072384, 0.00205577491, -0.0107156131, -0.0308457613, -0.0125941345, -0.00819386262, -0.0513413809, -0.0048461468, -0.00183009659, -0.0283605587, 0.0010790535, 0.00343542849, 0.00078896078, 0.0139829246, -0.00287808501, -0.00184197444, -0.00718150754, -0.019428445, -0.00236825272, -0.0132592916, -0.00898328, -0.0071413056, 0.0217966978, -0.00752139557, -0.00285250205, -0.00971422251, -0.0190191176, -0.000973066839, -0.00359623577, -0.0100650741, 0.00046643251, 0.00727653, -0.0208464731, -0.00340436329, -0.0098019354, -0.015145123, -0.0124771837, 0.000881242217, 0.00431986852, 0.000826421543, -0.00693664188, -0.0145311318, -0.0104597835, -0.00975076947, -0.00206491188, -0.0113003664, -0.00012505964, 0.0292084515, 0.0178203713, 0.00180725462, 0.00945839193, -0.0227615405, 0.00230064057, -0.014450728, 0.0220013615, -0.00545282895, -0.0358161703, 0.000552775047, 0.0173671879, 0.00646152906, 0.00280681811, 0.0174987577, -0.00427601207, -0.0276003778, -0.0048096, 0.0114684831, -0.00831812248, 0.00357796228, 0.00147284858, -0.0156421643, -0.0243988521, -0.00199181749, 0.00529567618, 0.00510197692, 0.0309627131, -0.00982386339, 0.018770596, 0.0128645832, -0.0126526095, 0.000347654393, 0.0270594805, -0.011556197, 0.0148600554, -0.0127841793, -0.0045354967, -0.0090709934, 0.00260215439, -0.0134347184, 0.0146553917, 0.00333309663, 0.0179811791, 0.0190483537, 0.0114831021, -0.0258314982, -0.0114392461, 0.0132300546, 0.00514217839, -0.00965574663, 0.0298224427, 0.0174549, 0.00311746867, -0.0147138666, -0.0205540955, -0.0248081796, -0.00791610405, -0.012988843, 0.00386668439, -0.00597910723, -0.00435641548, 0.00326731172, 0.00705724722, -0.015159742, -0.0100065991, -0.0225130208, -0.0176449455, 0.00573424157, 0.0151158851, 0.00620935438, 0.0151158851, -0.0185074564, -0.00888094772, 0.00568673061, -0.00427601207, -0.0124333268, -0.00796727, -0.0218113158, 0.0077918442, -0.00101418234, -0.00664426479, 0.0328924, 0.0119070485, -0.0221914053, -1.08856138e-05, 0.0128280362, -0.0174695197, 0.0070645567, -0.00847893, -0.0146042258, 0.0174402818, 0.0038959221, 0.000631351373, 0.0160222538, -0.0102331908, -0.00588774, -0.00321980054, -0.00130107719, -0.0112784384, 0.0123675428, 0.00557708926, 0.0104890205, 0.0134200994, -0.0201009102, 0.0085885711, 0.012235973, -0.0074300277, -0.00740809925, 0.011534268, -0.018755978, -0.00350669539, 0.00332944188, 0.00146919384, 0.00226226612, -0.00782108214, 0.00951686781, 0.00117864436, 0.000536785694, -0.00102423283, 0.00270814099, 0.0252321251, -0.0175864697, 0.0333602019, -0.0176888015, -0.0161976796, 0.00984579138, -0.0168262906, -0.0179519411, 0.0098896483, -0.000729114865, -0.00627513882, -0.000938347075, -0.0242965203, 0.0267963428, -0.000126201747, 0.00653462345, 0.00512390491, 0.000594804238, 0.0106279, 0.00922449119, 0.0107521601, 0.0228492543, 0.0170894284, 0.00874206889, 0.00509832194, 0.00573058706, -0.0116804568, 0.00721074501, 0.0142314453, -0.00877861585, 0.00035564907, -0.0225714967, 0.00639208965, -0.0157883521, 0.0176595636, -0.00753601454, -0.00889556669, -0.00603392813, 0.00293473294, 0.0140340906, 0.0221767873, -0.000546379306, -0.0190044977, -0.00894673262, -0.00106900302, -0.0190044977, 0.0126453005, 0.00352314161, -0.00283971056, -0.018755978, -0.00571596809, 0.0135151213, -0.0149477683, 0.00776260626, 0.000387856213, -0.00510563143, -0.0116146719, -0.028872218, -0.00802574586, -0.00414809724, -0.00159528141, -0.00430890452, 0.00160259078, -0.0119362865, -0.0220306, -0.0167239588, 0.012287139, 0.0171479043, -0.0255537406, -0.00196988927, 0.0104232365, 0.0370441526, 0.0012270693, -0.0203932878, -0.000792158651, 0.00489365822, 0.00888825767, 0.00481690932, -0.0220306, -0.00799650792, -0.00165649783, 0.0124552557, -0.00985310134, -0.0066333008, 0.0197354406, 0.00395439751, -0.00521527277, 0.000523080525, -0.00648711203, -0.0048461468, -0.0166947208, -0.0135443592, 0.00554054184, -0.012996153, 0.00320883631, -0.0162415355, 0.00921718124, 0.0167970527, -0.00670639472, -0.00531395, -0.000860684493, -0.0033166504, 0.00251444126, -0.0102405008, 0.00483883731, 0.0158760659, 0.00483152829, -0.00584753789, -0.0253344569, 0.00363278296, 0.00996274222, 0.0209926609, -0.00190044974, -0.0378335677, 0.00224399264, 0.00398729, -0.00641401811, 0.0133177675, 0.00889556669, -0.00456838869, -0.00943646394, 0.0278927553, 0.00836197939, 0.0164315812, 0.0102331908, 0.0130619379, -0.00171954161, 0.0237702411, -0.0127183944, 0.00647249352, -0.00749215763, -0.0109568238, -0.00552226836, -0.00144543825, 0.0120020714, -0.000986772, 0.00246510259, -0.00567942113, 0.0107156131, 0.0171332862, -0.0153936436, 0.023887191, 0.00839852635, 0.000964843726, -0.000657848, -0.0142899202, 0.00159619504, 0.0028123, 0.00490827719, 0.0161538236, -0.00623859186, 0.0335063897, 0.00681603607, 0.000552318234, 0.0211827047, -0.0116658378, -0.00812076777, 0.0103501417, 0.0213435125, 0.00596814323, -0.00278671714, 0.0227323025, 0.0110226087, 0.0145822978, -0.0057086586, -0.0189167839, 0.00862511806, 0.00957534276, 0.0184051245, -0.00268255803, -0.0321614593, 0.0114757931, -0.010861801, -0.000355420663, 0.00136777561, -0.00370953185, 0.011548887, -0.00610702205, -0.00175700232, 0.00379724475, -0.0111322496, 0.0185951702, 0.0201593861, 0.0121044032, -0.0182735547, 0.00728749391, 0.0344127603, 0.0121628782, 0.0161684416, -0.0026003269, -0.0219867416, -0.00520796329, 0.00123986078, 0.0118558826, 0.0284190346, -0.000231274695, 0.000554602419, 0.000377577351, -0.00410789531, -0.0168993846, -0.010803326, -0.00644325558, -0.0217674598, 0.00455377, -0.0226445906, -0.030319484, 0.00466706604, -0.021679746, 0.00126544375, -0.00869090296, 0.0192384, -0.0137417139, -0.00345918396, -0.0185366943, -0.00740809925, 0.00741175422, -0.0126306815, 0.000151213666, 0.00554785132, -0.00422850065, 0.0149039123, 0.000714952883, -0.0250859372, 0.0126672285, -0.0138001889, 0.00147741695, 0.00139335857, -0.0117900977, -0.00531395, 0.0131277228, 0.00213983329, 0.0219575036, 0.00276296167, -0.00298407162, 0.010145478, -0.00422484614, -0.00606682058, -0.0102624288, 0.000859313936, -0.00209414936, 0.012294448, 0.0171186663, -0.0175572317, 0.00918063428, 0.00203201943, -0.00174877932, 0.00498137111, 0.0109495148, 0.0262554456, 0.0201301482, 0.0174987577, -0.00846431125, 0.00286163879, 0.0134347184, -0.00138696283, 0.00126087538, 0.00966305658, -0.00115945714, -0.00859588, -0.00215993426, -0.00957534276, -0.0139902346, -0.0261238758, 0.00307543948, 0.00855933316, -0.00128919934, 0.0126233725, 0.00837659743, 0.0114611741, -0.0092902761, -0.0132519826, -0.0300563443, -0.0370149128, -0.0095387958, -0.00623128237, 0.0331847779, 0.0100577651, -0.0120970942, 0.0124260178, 0.00387399388, -0.0141144944, 0.0066990857, -0.00184288807, -0.00950955879, -0.00358527154, 0.0253198389, 0.00612164102, 0.0239018109, 0.00896135159, 0.000336690253, -0.0152620738, 0.00319969957, -0.0183174126, 0.0109056579, 0.0184343625, -0.0183758866, -0.0168847647, -0.0209049471, -0.0385937504, 0.0199108664, -0.00776991574, 0.00903444551, 0.004703613, 0.0106790662, -0.0159637779, -0.00981655437, -0.00361268199, -0.0152474549, 0.00847162, 0.00365471118, 0.00813538674, 0.00748484815, -0.00774067827, -0.015188979, -0.0131569598, -0.0106279, 0.0197646786, -0.0025601252, 0.0149843153, 0.0090709934, -0.00955341477, 0.00119417685, -0.00179354951, -0.0203494318, -0.00337329833, 0.000536785694, -0.00570500409, 0.0233755317, 0.00837659743, -0.00886632875, -0.00579271698, 0.0102770478, 0.00815000571, -5.1108851e-05, 0.0143045392, -0.0184636, -0.0314012766, 0.0244865641, -0.0172502361, 0.00321797305, 0.00612895051, 0.0126891574, 0.00824502856, 0.0176303256, -0.0192822553, 0.01012355, 0.00467437552, -0.00314853364, -0.0247204658, 0.00668081176, -0.00531395, 0.00920987222, 0.0124918027, -0.0227030646, 0.0182735547, -0.000947483873, -0.0163877252, -0.0104670925, 0.0199108664, 0.0275272839, -0.0105036395, 0.00557708926, -0.00723998295, 0.0277465675, -0.00471092248, -0.0261531118, -0.00489731273, -0.00539435353, -0.0282289889, -0.0151743609, -0.00853009615, -0.00917332526, 0.00206856639, 0.0101747159, -0.00489365822, 0.0125575876, 0.00463417359, 0.0117608607, 0.0120020714, 0.000813173247, -0.0169286225, 0.0047693979, -0.0176010896, 0.0297493488, -0.0134639554, 0.0152182169, -0.01593454, -0.021592034, 0.0202032439, -0.01011624, -0.00916601531, 0.0237702411, 0.0221621674, 0.0077260593, -0.00324903824, 0.0162269175, 0.0286236983, 0.00136686198, -0.00300782733, -1.96726251e-05, -0.00765296491, 0.0242672823, 0.0076383464, 0.00290001323, -0.00754332356, -0.0148381274, 0.00334040588, 0.00411155, 0.000459579926, 0.0106717562, 0.00192237808, 0.011534268, -0.00328924, 0.0228784923, 0.0257437844, -0.0123529239, -0.0070645567, 0.0117462417, -0.00337329833, 0.0124698747, 0.0204663817, -0.00653096894, 0.00866897497, -0.00432352303, -0.0134493373, 0.0102039538, -0.00795265101, -0.00395074254, 0.0169140026, -0.0119801434, -0.0225422587, -0.00698780781, -0.0117096948, 0.0142533733, 0.00950955879, 0.00793803297, 0.00111011846, 0.00683796452, 0.0136247631, 0.00254733372, -0.0174987577, 0.0357576944, 0.00823041, 0.046926491, 0.0200131983, -0.00532491412, 0.0138367359, 0.00166015257, 0.00741540873, 0.0219136477, -0.0141875884, -0.00280681811, 0.00291828671, -0.00460493611, -0.0172940921, -0.0154667376, 0.00503984652, -0.00173324673, 0.024515802, 0.0268548168, -0.0136393821, -0.0027373787, 0.0143922521, -0.0115196491, -0.0234486274, 0.00264418358, 0.00636285217, 0.000296260027, 0.00820117164, -0.0166947208, -0.00516776135, 0.0244280882, 0.0031741166, -0.00464513805, 0.0048461468, 0.0124040898, 0.0120020714, 0.012309067, 0.00460859062, -0.0063482332, -0.00847162, 0.0250859372, 0.00945839193, -0.00323076453, 0.0063482332, -0.0200570542, -0.00132117805, 0.0323076472, -0.0175718516, -0.0190483537, -0.012966915, -0.00173690147, 0.00619108044, 0.00912215933, 0.00566480216, -0.00334588811, -0.00406769337, -0.0197792966, 0.0218844097, -0.0077260593, 0.00905637443, -0.0210657548, 0.0244427081, 0.0289745498, 0.046838779, -0.00318873534, 0.0078357, -0.0132008167, -0.00692202291, -0.000352908042, 0.00934144203, 0.0121044032, -0.0062824483, -0.0171917602, 0.00150391366, 0.000915962, -0.0208026152, -0.0106059713, 0.0141291134, -0.0141071845, 0.00476208841, 0.0104305455, -0.00166289357, -0.0107229222, 0.014428799, -0.0149696963, 0.018814452, 0.00882978179, -0.0205248576, -0.00513121439, -0.0222060252, 0.0127257043, -0.00225312938, -0.00755794253, -0.0139244497, -0.00090819574, -0.0105255684, 0.0231562499, 0.0124918027, -0.011563506, 0.00226226612, 0.00212338706, 0.000859313936, -0.0185366943, -0.0347343758, 0.000630894501, -0.0136174532, -0.00442951, 0.00673197769, -0.0142679922, -0.0260215439, -0.00217820774, 0.0118193356, 0.010079693, -0.00492289569, 0.0115196491, 9.55364303e-05, -0.00178075803, -0.021723602, 0.00646883855, 0.00482787332, -0.0202909559, -0.00474016042, -0.0255829785, 0.0116512189, 0.0221475493, -0.00347563019, -0.0128572742, 0.0261823498, -0.00776260626, -0.00306813, -0.00928296614, -0.00412616879, -0.0274395719, -0.00366384792, 0.00502157304, 0.0170163345, 0.015846828, -0.0124552557, 0.0276149977, -0.0046122456, -0.0191653054, 0.00433448749, -0.0026715938, 0.000300828397, 0.00463417359, 0.0050435015, -0.00647249352, -0.0148892934, -0.0179811791, 0.0096045807, 0.0116000529, -0.0110957026, -0.00112199632, -0.00638843514, -0.0164754372, 0.0137855699, 0.00374607882, 0.0259045921, -0.0163877252, -0.00578906247, 0.0136540011, -0.0118705016, -0.0164169632, -0.0117243137, 0.00801112689, -0.0091879433, -0.0131788887, -0.00215262477, 0.0181127489, 0.0104524735, -0.0205394756, -0.0110079898, 0.0072984579, 0.0212850384, 0.00380089949, 0.0226884466, -0.00716688856, 0.0057744435, 0.00245231111, 0.00879323483, -0.0619254261, -0.00602661865, 0.0242234245, 0.0219428856, 0.0154228806, 0.0024943403, -0.0218844097, -0.0100358371, 0.0184051245, 0.0064359461, -0.00237373495, 0.019486919, 0.00240114518, 0.0308457613, 0.00501060905, -0.0132446727, 0.0138294268, -0.000292605313, -0.0161976796, 0.00630803127, -0.0118339546, 0.00148472644, 0.0227176845, 0.000925098779, -0.00231891428, 0.00311929593, -0.00998467114, 0.00287808501, 0.00440027239, -0.00782839116, -0.0138732838, 0.0188436899, 0.00920987222, -0.00745561067, 0.00722536398, -0.0119947623, -0.00679410808, -0.00683065504, 0.000721348624, -0.0094730109, -0.0156421643, -0.00659309886, 0.00531395, -0.00877861585, -0.0187121201, 0.0135516692, -0.000449301035, -0.0186828841, -0.0112053445, 0.00280499086, -0.00356699806, 0.0051348689, -0.0214019883, -0.00624955585, -0.0316059403, 0.00165558408, -0.00759448949, 0.00435641548, 0.0116804568, 0.0195453949, 0.00582926441, -0.0348220877, 0.00452453224, -0.000171543, 0.00779915368, 0.0152766928, -0.00675756065, 0.00825964753, 0.00112199632, 0.00725094695, -0.016563151, 0.00875668786, -0.0219721235, 0.00625686534, 0.0105401864, 0.0117535507, -0.027410334, -0.00334588811, 0.00157152582, -0.00619839, 0.0182443187, -0.00399825396, 0.000673837378, 0.0031795986, -0.00901982747, -0.00830350351, 0.0176888015, -0.0072984579, 0.0208757091, -7.1837916e-05, 0.0055661248, 0.00223668315, -0.0184489824, 0.0190191176, 0.00389957684, 0.00964843761, -0.0272495262, -0.00964843761, 0.00291280472, 0.00670274, -0.0110810837, 0.00237921695, 0.00132574642, 0.00752870506, 0.0171479043, -0.0184489824, -0.0096703656, -0.0129376771, -0.00169395865, 0.00469995849, 0.0319860317, 0.00525181973, -0.0011028091, -0.00892480463, -0.0103135947, 0.0136466911, -0.00208318536, -0.00908561144, -0.00862511806, 0.0219721235, -0.0316059403, -0.0201155301, 0.00236825272, -0.0049777166, 0.0150574101, 0.00360537251, 0.00508370297, 0.00192420545, -0.0174256619, 0.00854471419, 0.00357430754, 0.0113807702, 0.0199547224, -0.0147284856, -0.00644691056, -0.0249689855, -0.00444047386, 0.00442951, 0.00364557444, 0.00450991374, 0.0023116048, -0.00667715725, -0.0145092029, -0.0321322195, -0.0196477268, -0.00706090173, -0.0228346344, 0.0119509054, 0.00484980177, 0.00558074377, -0.0200278163, -0.00994081423, 0.00460128114, -0.000586581125, -0.0131788887, 0.00503984652, 0.0347343758, 0.00352679612, 0.00335502485, -0.0147796515, -0.0123383049, 0.0133104576, -0.00755063305, -0.00518969, 0.0145018939, 0.00550399488, -0.0136393821, -0.00541262701, 0.00469630398, -0.0208172351, 0.0112199634, 0.00768220285, 0.0166947208, 0.0101966439, 0.0164169632, 0.00540531753, -0.00316132512, 0.00212521455, 0.00213983329, 0.0091879433, 0.0295593031, 0.0043929629, -0.000428286468, 0.00491924118, 0.00152858288, -0.018770596, -0.0111687975, -0.00539069902, -0.00131295493, 0.00257839868, 0.016636245, 0.0164754372, 0.00282143708, 0.0183027927, -0.00967767462, 0.00617646193, 0.0126379915, -0.00411155, -0.00583657343, 0.0112711294, -0.0221183114, -0.00230246806, 0.00389226736, 0.015145123, 0.00459397165, -0.0199985784, -0.0266355351, 0.0248520356, -0.00161264127, -0.00963381864, 0.00277575315, -0.0217674598, 0.00266428431, 0.0205687135, -0.0164754372, 0.0117608607, -0.0276588537, 0.020890329, -0.00307909423, 0.00878592581, 0.0197646786, -0.00937798899, 0.0243111383, -0.0127622513, 0.0220452175, -0.00356882531, 0.0012855446, -0.00435641548, -0.00612164102, -0.00119326322, -0.00250347704, -0.0291061196, 0.00788686704, -0.025977686, -0.00782108214, 0.0157006383, -0.00962650869, 0.020188624, -0.00738982577, 0.0268986747, 0.00115397503, 0.00620935438, -0.00660040835, 0.00886632875, 0.00324721076, 0.00298772636, 0.0246619899, -0.024501184, 0.0146700107, -0.00438199844, 0.00429794, -0.00623859186, -0.00522989174, 0.0253198389, -0.00421388214, -0.00525912922, -0.0193845872, 0.0201009102, -0.00206856639, 0.0240041427, -0.00567576615, -0.000963016355, -0.00765296491, -0.00233170576, 0.0190044977, -0.0158322081, 0.00517141633, -0.0240041427, 0.00342629175, -0.00410058582, -0.00531760463, 0.00483152829, -0.0145822978, 0.00666253828, -0.00194978842, 0.0101674059, -0.00682334555, 0.0188436899, -0.0306410976, -0.0110006807, -0.0192822553, -0.016650863, -0.00387033913, -0.00836928841, -0.0180396549, 0.00362364599, 0.00684527401, -0.0271618124, 0.00285615679, -0.0230100621, 0.023843335, -0.00683065504, 0.000269763375, 0.00206856639, -0.010130859, -0.0117681697, -0.0203055758, -0.0124479458, 0.0165777691, -0.0263431575, -0.00499964459, 0.006490767, -0.0155252125, 0.00402018242, -0.0170309544, -0.00418829871, -0.0129376771, -0.0153644057, -0.00158157619, 0.0065565519, -0.0234047696, 0.0203640498, 0.0142460642, -0.00355420657, -0.00313756941, 0.00223668315, -0.0208172351, 0.00377166178, 0.00287991227, 0.000294661091, 0.00121427781, -0.0143118491, 0.0090709934, 0.00165192946, 0.00603758264, -0.0139829246, 0.00627513882, 0.0132812206, 0.00530298566, -0.00370039511, -0.0111907255, 0.0203932878, -0.015145123, -0.00582195492, -0.0125795156, -0.0212411806, -0.0132592916, -0.0243111383, 0.0057854075, -0.0149696963, -0.00994812325, -0.000420977041, -0.00760910846, -0.0220013615, 0.0139902346, -0.0124479458, 0.00709013967, 0.012243282, 0.0159637779, 0.00560267223, -0.0067904531, -0.0153205488, -0.00400921796, 0.00551495887, 0.00854471419, -0.021723602, -0.0342373326, -0.00695491536, 0.0106425192, 0.0024048, 0.0196915828, -0.0113588423, 0.00722901849, -0.0217674598, 0.0118339546, 0.00146736647, 0.0295008291, 0.0149185304, -0.0256560724, -0.00393612403, 0.0206856653, -0.00142442365, -0.0248081796, 0.066428028, 0.0422776975, 0.0254660267, -0.0241210926, -0.00334771536, -0.0228931103, 0.00942184497, 0.040435724, 0.0116073629, 0.00945108291, -0.00814269669, 0.00746657467, -0.0133031486, 0.0228200164, -0.00804767385, 0.00429063104, -0.00163000112, 0.0064249821, -0.0015687847, -0.0111395596, -0.00124168815, -0.0145896068, 0.00329472218, 0.00657117041, 0.00964843761, 0.0118193356, 0.0185951702, -0.0227761604, -0.0164754372, 0.00176339806, -0.00535049709, 0.0172940921, 0.00664426479, -0.000772057741, -0.0306995735, -0.00715592457, -0.0233755317, 0.00951686781, 0.0143045392, 0.000761550444, 0.0150427911, 0.0352314152, 0.0177911334, 0.013675929, 0.0113880802, 0.00108910387, 0.00446240231, 0.00042303282, 0.0189167839, -0.00255098846, -0.00517507084, -0.025919212, 0.00301330932, -0.0276880916, 0.00962650869, 0.000286666414, 0.0225422587, 0.0110518467, 0.0110883936, 0.027410334, -0.00158157619, 0.00325452024, 0.0105182584, -0.0104670925, 2.38127268e-05, -0.00268621277, -0.0188290719, 0.00339522655, -0.0324830711, -0.0082231, 0.0142314453, -0.0169432405, -0.0210072789, -0.0197500587, 0.00993350521, -0.0052006538, -0.00718881655, -0.0109056579, 0.00491924118, -0.00711206766, 0.00232074154, 0.0184636, -0.0217820778, -0.00343177374, 0.00886632875, 0.00287625776, -0.0131788887, 0.00252723275, 0.0154228806, -0.00666253828, 0.0166216269, -0.0138074988, -0.0026661118, 0.00824502856, 0.00339522655, -0.0190483537, -0.00812076777, -0.000582926441, 0.0156714, -0.00297858962, 0.0448798537, 0.00877861585, -0.00901251752, 0.0005130301, -0.0188290719, 0.0253636949, 0.00264418358, 0.0120386183, 0.00304985652, -0.00372780534, 0.00859588, -0.00689278496, -0.0036108545, 0.0434179679, -0.00427966658, 0.00340253604, -0.00371684111, -0.018010417, 0.0142679922, 0.00220196345, -0.00362181873, 0.00309005822, -0.0168409087, 0.00179720414, -0.0121117122, -0.0136832381, 0.0140048526, 0.00215993426, -0.00484249229, 0.00687085697, 0.00939991698, 0.00660771783, -0.0146407727, -0.0121994261, 0.00126544375, 0.02023248, -0.0186682642, 0.00676852511, -0.00790148508, 0.0164754372, 0.00769682182, -0.00431621401, -0.0158175901, 0.0229808241, 0.0156275444, 0.0171479043, -0.0239749048, -0.0299247745, -0.0104744025, -0.000471457723, 0.0140633285, 0.0118778115, -0.0024943403, 0.00138970395, -0.00156056159, 0.0140414005, 0.013734404, -0.017264856, 0.0209488049, 0.00717419805, 0.00958996173, -0.00939991698, 0.006125296, 0.00291280472, 0.0245304219, -0.0448506139, 0.0127549414, 0.00761641795, 0.0297639668, 0.0210511368, 0.00855933316, 0.0171479043, -0.00855202414, 0.0254660267, -0.0104744025, 0.00780646317, -0.0100285271, -0.0163731053, -0.00388130313, -0.0168555286, 0.00554785132, -0.00112108269, 0.0198523905, 0.0409327634, 0.00904175546, -0.00949494, -0.02314163, -0.00923911, 0.0105694244, 0.0093195131, 0.00522989174, -0.0225861147, 0.00380820897, -0.0130692469, 0.000977635267, -0.0161684416, 0.00704628322, -0.0135735972, -0.0280097052, 0.000827792042, 0.0031795986, -0.00797458, 0.0139244497, -0.00646883855, -0.0090052085, 0.000894033699, 0.00877861585, 0.000904084183, 0.00524451025, -0.0141218035, -0.0143703241]
06 Jul, 2017
std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++ 06 Jul, 2017 Formatting in the standard C++ libraries is done through the use of manipulators, special variables or objects that are placed on the output stream. There are two types of floating point manipulators namely, fixed floating point and scientific floating point. These all are defined in header <iostream>. Use of precision : In the default floating-point notation, the precision field specifies the maximum number of meaningful digits to display both before and after the decimal point, while in both the fixed and scientific notations, the precision field specifies exactly how many digits to display after the decimal point, even if they are trailing decimal zeros. std::fixed – Fixed Floating-point notation : It write floating-point values in fixed-point notation. The value is represented with exactly as many digits in the decimal part as specified by the precision field (precision) and with no exponent part. std::scientific – Scientific floating-point notation : It writes floating-point values in Scientific-point notation. The value is represented always with only one digit before the decimal point, followed by the decimal point and as many decimal digits as the precision field (precision). Finally, this notation always includes an exponential part consisting on the letter “e” followed by an optional sign and three exponential digits. std::hexfloat – Hexfloat floating-point notation : It outputs the desired number after the conversion into hexadecimal format after the precision of no. is initialized ( as discussed in prev. cases ). std::defaultfloat – defaultfloat floating-point notation : It outputs the desired number same as default after the precision of no. is initialized ( as discussed in prev. cases ). It is mainly used to distinguish among other used formats for understandability of code. // C++ code to demonstrate the // working of // std::fixed // std::scientific // std::hexfloat // std::defaultfloat #include <iostream> using namespace std; int main() { // Initializing floating point variable double a = 4.223234232; double b = 2323.0; // Specifying precision cout.precision(4); // Printing normal values cout << "Normal values of floating point numbers\na = "; cout << a << "\nb = " << b << '\n' ; // Printing values using fixed ( till 4 ) cout << "Values using fixed \n" << std::fixed; cout << a << "\n" << b << '\n' ; // Printing values using scientific ( till 4 ) // after 4, exponent is used cout << "Values using scientific are : " << std::scientific << endl; cout << a << '\n' << b << '\n' ; // Printing values using hexfloat ( till 4 ) cout << "Values using hexfloat are : " << std::hexfloat << endl; cout << a << '\n' << b << '\n' ; // Printing values using defaultfloat ( till 4 ) // same as normal cout << "Values using defaultfloat are : " << std::defaultfloat << endl; cout << a << '\n' << b << '\n' ; return 0; } Output: Normal values of floating point numbers a = 4.223 b = 2323 Values using fixed 4.2232 2323.0000 Values using scientific are : 4.2232e+00 2.3230e+03 Values using hexfloat are : 0x1.0e49783b72695p+2 0x1.226p+11 Values using defaultfloat are : 4.223 2323 Learn C++ Online – Master everything from basics to advanced concepts. Apply your knowledge with practical exercises and boost your skills. Take the Three 90 Challenge: finish 90% in 90 days for a 90% refund. Start now and level up your C++ programming!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum/Algorithm for Dynamic Time out timer Calculation/Difference between Round trip time (RTT) and Time to live (TTL)/Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms/Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm/Round Robin Scheduling Algorithm with Different Arrival Time/Selfish Round Robin CPU Scheduling/Find the order of execution of given N processes in Round Robin Scheduling/Calculate server loads using Round Robin Scheduling/set::lower_bound() Function in C++ STL/Implementation of lower_bound() and upper_bound() in List of Pairs in C++/Difference between std::set::lower_bound and std::lower_bound in C++/Difference between std::set vs std::vector in C++ STL/std::minmax() and std::minmax_element() in C++ STL/std::rotate vs std::rotate_copy in C++ STL/std::bitset::to_ullong and std::bitset::to_ulong in C++ STL/std::upper_bound and std::lower_bound for Vector in C++ STL/std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++
https://www.geeksforgeeks.org/stdfixed-stdscientific-stdhexfloat-stddefaultfloat-c?ref=asr10
PHP
std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++
What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, jQWidgets jqxTreeMap width Property, Round Robin Scheduling Algorithm with Different Arrival Time, Difference between Flow and TypeScript, jQWidgets jqxTree destroy() Method, jQWidgets jqxTree collapseAll() Method, Find the order of execution of given N processes in Round Robin Scheduling, jQWidgets jqxScrollView buttonsOffset Property, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, jQWidgets jqxListBox enableHover Property, Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm, std::rotate vs std::rotate_copy in C++ STL, Selfish Round Robin CPU Scheduling, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxSlider buttonsPosition Property, std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++, std::upper_bound and std::lower_bound for Vector in C++ STL, Difference between Round trip time (RTT) and Time to live (TTL), jQWidgets jqxSlider rtl Property, Difference between std::set::lower_bound and std::lower_bound in C++, jQWidgets jqxTooltip opacity Property, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, jQWidgets jqxToolBar height Property, PHP, std::minmax() and std::minmax_element() in C++ STL, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, Node.js date-and-time Date.transform() Method, TypeScript Optional Parameters, jQWidgets jqxToolBar theme Property, Difference between std::set vs std::vector in C++ STL, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, Steps to Diagnose and Resolve a Slow Network, How to use Optional Chaining with Arrays and Functions in TypeScript ?, Calculate server loads using Round Robin Scheduling, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, jQWidgets jqxScrollView showButtons Property, Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms, jQWidgets jqxScrollView disabled Property, jQWidgets jqxSplitter destroy() Method, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, set::lower_bound() Function in C++ STL, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, jQWidgets jqxTree collapseItem() Method, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), jQWidgets jqxSortable opacity Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, jQWidgets jqxSlider height Property, jQWidgets jqxSwitchButton onLabel Property, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, jQWidgets jqxToolBar tools Property, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTree width Property, Implementation of lower_bound() and upper_bound() in List of Pairs in C++, jQWidgets jqxTree clear() Method, TLS Handshake?, Algorithm for Dynamic Time out timer Calculation, Adhoc TCP, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, jQWidgets jqxTabs position Property, Differences between Wireless Adhoc Network and Wireless Sensor Network, jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, std::bitset::to_ullong and std::bitset::to_ulong in C++ STL, Impact of Three-way Handshake and Slow Start Algorithm, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, How to Sort an Array Having Optional Properties in TypeScript ?
GeeksforGeeks
[-0.0165103376, 0.0202916488, -0.0122580957, 0.021372024, 0.0570659339, 0.0157623868, -0.0276465062, 0.0170089733, -0.0235881768, 0.027369488, -0.0012483173, -0.00244469359, -0.0116209509, -0.0305275042, -0.0295025334, -0.00637490209, -0.023865195, 0.0080820322, 0.0135116065, 0.0129437177, -0.0183802173, 0.0133384699, -0.044849392, -0.0216767453, 0.0170228239, 0.0268985555, -0.0250009745, 0.00538455881, 0.00426263129, -0.000729772204, 0.0659305453, -0.00335193123, -0.0160809588, -0.0275634, 0.0274941456, -0.0149451802, 0.0181586016, 0.0138648059, 0.0130475992, -0.00918318331, -0.021510534, 0.0263168141, 0.0369266458, 0.0353199355, -0.0377854072, -0.00244123093, -0.0157900881, -0.0141071975, 0.0101042716, -0.0722465813, 0.00934939459, -0.00187161029, 0.00749336649, 0.0287268814, 0.0259566903, 0.0116555784, 0.0438244231, 0.0327713601, 0.021233514, -0.0318017937, -0.0116486531, -0.00837290194, -0.000342811138, -0.0203886051, -0.0379793197, -0.0267323442, -0.0390042886, 0.00793659687, -0.00759032322, 0.00831057318, -0.0298349578, 0.0662075654, -0.0118910447, 0.0374529809, -0.0200423319, -1.85445897e-05, 0.0581186078, -0.00803355407, 0.00241352897, 0.0427994505, 6.21669824e-05, 0.0324112363, 0.0179646891, -0.0168704633, 0.0476472862, 0.046373, 0.0127498042, -0.0403339826, 0.0317740925, 0.0342118591, -0.0123689026, 0.0489215739, 0.018865, -0.0236989837, -0.0211227071, 0.024987122, -0.0183802173, 0.000104531427, -0.0250009745, 0.0489215739, 0.000416394323, 0.0214966815, -0.00928706583, 0.00505559845, 0.0280204825, -0.0357077606, 0.0327990614, 0.0137401475, -0.016773507, 0.0148343733, -0.0204855632, -0.026109051, -0.0199453756, 0.0370928571, -0.0231449455, 0.00133748283, 0.0211919621, -0.0445169695, 0.0656535253, 0.0114547396, -0.0239621531, 0.0157900881, 0.0286991782, 0.0283944588, -0.0389488861, -0.00660690572, 0.0248763151, -0.0212196633, -0.00763187604, -0.0114062615, -0.00379169895, 0.0286437757, -0.00141885725, -0.00540187256, -0.0101873772, 0.0173136946, 0.0271478724, 0.0214828309, -0.0187264904, -0.0330760814, -0.0410819314, -0.0150144352, 0.0215797871, 0.0238790456, -0.0163579788, -0.049447909, -0.0124035301, 0.0410542302, -0.0263445172, 0.0101042716, -0.0415251628, -0.00436651381, 0.0197376106, -0.0157346856, 0.0470101424, -0.0223692916, 0.0295025334, 0.0364003107, -0.0373698771, -0.0564287901, 0.0183802173, -0.0402231738, 0.036428012, -0.0131722586, -0.0229648836, 0.0500850528, 0.0797815, 0.0460959785, -0.00382978912, 0.0336024165, 0.0303335916, -0.00723712379, -0.0237543881, 0.0174937565, -0.00698088156, 0.00728560239, 0.000739727577, 0.0396137312, -0.0082551688, -0.00370859331, -0.0252502915, -0.00229233317, 0.0189896598, -0.0340733491, 0.00450848602, 0.00775653496, 0.0330483802, -0.000627188536, 0.0356800593, -0.0252918433, -0.0106513845, -0.0226878636, -0.00839367881, -0.00876765419, -0.00205686688, 0.00645800773, -0.0194882937, -0.00559578603, 0.00639221584, 0.0437136143, -0.0306383129, -0.0180893466, -0.0244884882, -0.0177015197, 0.0238236431, -0.0160809588, -0.017756924, 0.0122580957, 0.0338794366, 0.0432980843, 0.0279373769, 0.0337963291, 0.032245025, -0.0124243069, -0.0264553241, -0.00327921356, -0.0253610983, -0.0143357385, 0.0285052657, -0.0256104153, 0.0329929739, -0.0537417047, 0.0199176725, -0.0159563, -0.0331037827, -0.00137211022, 0.0259705409, -0.0068804617, -0.00931476709, -0.0136570418, 0.0339071378, -0.0120503306, -0.0185602792, 0.0374252796, 0.0213581733, 0.0218429565, -0.0270093624, -0.00443230569, -0.0191835724, 0.0340456478, 0.00412412174, -0.00378131075, -0.00252087391, 0.00482013216, -0.0422731154, 0.00283078896, 0.0224662498, 0.00614289846, -0.0169535689, 0.00441499194, -0.00792967156, -0.0223000385, 0.0151113924, 0.0373975784, -0.026635386, 0.00369474222, 0.0316078812, 0.0159285981, -0.0289484952, -0.0242253207, 0.0258735847, 0.0196129531, 0.0543788485, -0.00173569785, 0.0139756138, -0.0212750677, 0.0259151366, -0.0191004667, 0.0018871926, -0.00490323827, 0.0331591852, -0.007597249, 0.0362064, -0.000114053961, 0.0191143174, 0.0144326948, -0.0207625814, -0.0161917657, -0.00461236807, -0.0120780328, 0.0137539981, -0.00826209504, 0.00074275746, 0.0169951227, 0.0170228239, -0.0182417072, -0.0514147468, -0.0186572373, -0.0221753791, -0.0455419421, 0.00516986893, -0.0371759646, -0.0240314063, 0.0274941456, 0.01610866, 0.00715401815, -0.0646562576, -0.0105405767, -0.0302227847, 0.0131445564, -0.0166626982, -0.00921781082, 0.0146820126, -0.0485060439, -0.0141210491, -0.0180477947, 0.0243915319, 0.000833654369, 0.010616757, -0.0273140837, 0.00103449321, -0.0184633229, -0.0499188416, -0.00916240644, -0.0135393087, -0.00099034328, 0.0198484194, -0.000984283513, -0.0554315224, -0.00386441639, 0.00752799399, -0.0156931318, -0.00946712773, 0.0129229408, 0.0134631284, -0.0159840025, 0.00929399114, -0.025513459, -0.0160809588, -0.0514147468, -0.0344888791, -0.0330206752, -0.0382286347, -0.0308599286, -0.0274525937, -0.0450156033, 0.00543303695, 0.019931525, -0.0246685501, -0.0218014028, -0.0211227071, 0.00928014, -0.0365942232, -0.000557068095, 0.0101527497, -0.0284221601, -0.00341772311, -0.0107483407, 0.0148620745, 0.0429656617, 0.000882132677, -0.0159285981, 0.0309707355, 0.0175491609, 0.01421108, -0.0557085425, 0.0216074903, -0.0545450598, 0.00790889561, -0.0486168526, -0.00614289846, -0.000193372325, -0.0305829085, -0.0296410434, 0.0192251261, -0.0150975408, -0.0279927794, -0.0177430734, 0.00260571088, 0.0107067879, -0.0130268233, -0.0173829477, -0.000456215843, 0.0183109622, -0.000267712981, -0.00975107215, -0.00948097836, 0.00759032322, -0.0216905959, 0.0130683761, -0.000265981624, 0.060777992, 0.0216490421, -0.0070501361, 0.00466777198, -0.0113993362, -0.0207210295, -0.00781886373, 0.0209980477, 0.0423839241, -0.00292947702, 0.0231449455, -0.00919703394, 0.0110669127, -0.041303549, 0.0284498613, -0.0308045242, -0.0209010914, 0.0152637521, -0.0170366745, 0.0107483407, 0.00960563775, -0.0284498613, -0.0168566126, -0.0121888407, 0.0154299643, -0.0219676141, -0.0002534292, 0.0276188049, 0.0431041718, -0.0203886051, 0.000345624605, 0.0137470728, -0.0164549351, -0.0109907333, 0.0208595376, -0.0048305206, 0.0468716323, -0.00835212599, -0.0501681603, 0.0361232907, -0.00335885654, 0.00327228825, -0.00608056923, 0.0202639475, 0.0256104153, -0.0375360884, 0.00253472477, 0.0452926233, -0.0294194277, -0.0201392882, 0.00829672255, 0.020914942, 0.00559924869, -0.0185879823, -0.0354584455, 0.0501958616, 0.000502097129, 0.00420722738, 0.000400162739, -0.0029987318, 0.0152360508, 0.0401400663, -0.00141452882, -0.00748644117, 0.0308876298, -0.0628833324, -0.0283667557, -0.0351537243, 0.0206102207, -0.013684744, -0.00828287099, 0.00403755344, 0.000226592965, 0.0474256687, 0.00173742918, -0.0190173611, -0.0320511088, 0.0473702662, -0.0267323442, 0.0282975, -0.00698088156, 0.00988958217, -0.00426263129, 0.0425778367, -0.0121888407, -0.0227294173, -0.017826179, -0.0136570418, 0.0188095961, -0.0288653895, -0.00503482204, -0.0154161127, 0.00555077, 0.0216767453, 0.0241976194, -0.00918318331, -0.00843523163, 0.00241006608, -0.053021457, 0.0649886802, 0.00623293, 0.0105128745, -0.00863607, 0.0199869275, -0.0303612929, -0.00421761582, -0.0100211659, 0.00777038559, 0.0329375714, -0.0295302365, -0.0115170693, 0.0603901632, -0.00344888773, 0.0129714198, 0.0262752622, -0.0267600454, -0.00616713753, 0.0106652351, -0.00372936972, 0.0281035881, 0.00781193888, 0.00105353829, 0.0443784595, -0.0274664443, -0.0246824026, -0.0110253599, 0.00541572366, -0.0171474814, -0.00306452392, 0.0219953172, -0.0294748321, 0.0096264137, 0.0202916488, -0.00897541922, 0.00958486088, -0.0243084263, 0.00622946722, -0.0156515799, 0.0158177912, 0.019931525, 0.0219676141, -0.0181309, 0.0195298474, 0.0136016374, 0.00108124013, 0.0134146502, -0.0114616649, -0.0308876298, -0.00123446633, -0.00686314842, -0.01203648, -0.0129160155, -0.0221476778, 0.0141487503, -0.0294194277, 0.00379169895, 0.00587973045, -0.00845600851, 0.0340733491, -0.0436582118, -0.0148343733, 0.0226463117, 0.0152360508, -0.0177015197, 0.0189342555, 0.0235743262, 0.0200423319, -0.00261783041, 0.0262337085, -0.00608403189, 0.00801277719, -0.0324389376, 0.0283252038, 0.0126528479, -0.015194498, -0.0131445564, -0.0241837669, -0.00491362624, -0.00216248026, -0.0164826363, -0.00119377917, 0.0308599286, 0.0188511498, -0.023865195, -0.0586172417, 0.0258320309, 0.0261506028, -0.0260951985, -0.0253472477, 0.0250286758, -0.0181724522, 0.0136224143, 0.0186849385, -0.014280335, 0.0165518913, 0.0161640644, 0.00489285, 0.0249594208, -0.01407257, 0.0140587194, -0.0357631668, 0.00399600063, 0.0054365, -0.00631603552, 0.0103605147, -0.0187957454, -0.0117456103, -0.0177292228, -0.00280135567, 0.00897541922, 0.0614428371, -0.0289761983, 0.00982032716, 0.00288446131, 0.00870532542, -0.0122857969, 2.48884353e-05, 0.0148205217, -0.0275911018, -0.0117317587, 0.00200838852, 0.0144188441, 0.00461929338, -0.00522873551, -0.00476819137, -0.00603555376, -0.00622946722, 0.0143357385, -0.00293640257, -0.028809987, -0.0168704633, 0.0700304285, 0.0223138891, -0.0355138481, -0.00397522422, 0.000551874, 0.0358462706, -0.00631949818, 0.0269124061, 0.033685524, -0.000979089411, 0.00348870922, -0.00359778549, 0.031829495, 0.030388996, -0.0173829477, 0.00244642491, 0.0100834956, -0.0272586793, 0.0200700331, -0.0297518522, -0.024987122, 0.0099657625, 0.0143634407, 0.031690985, 0.0130337486, -0.00255896384, -0.00076872803, -0.0225909073, -0.0295025334, 0.00276672817, 0.0229787342, 0.076789692, -0.00305759837, 0.00852526259, 0.010547502, 0.0293086208, 0.0210118983, -0.0126597732, 0.0103397379, -0.017687669, -0.00714709284, 0.0343780704, -0.00663460745, 0.0192389768, -0.00679389341, 0.0215520859, -1.0854875e-06, -0.0115170693, -0.0250979308, 0.00932861865, 0.0195159949, -0.00198934344, -0.00980647653, 0.0105752042, -0.00810280908, -0.010755267, 0.0263445172, 0.0240868106, -0.00253991899, -0.0450710095, 0.0171336308, 0.00443230569, 0.0241145119, 0.00480628153, 0.0102220047, 0.0174245015, -0.0171890352, -0.010547502, -0.00424878066, -0.00763880182, 0.00227848208, -0.00942557491, 0.0157485362, -0.00498288125, -0.0127636548, 0.00888538733, 0.00132016919, -0.0241145119, 0.00865684729, -0.0317186862, 0.0115032177, 0.0065168743, -0.0252779927, -0.00187161029, -0.0188511498, 0.0199869275, -0.0220922735, 0.0271201693, -0.0426609404, -0.0316078812, -0.0585618392, 0.00580008747, 0.00210534525, -0.00534300599, -0.000287190895, -0.00853911415, -0.00669693667, -0.0122788716, 0.00763187604, -0.00529106474, -0.00325324317, 0.0218291059, 0.00640260382, 0.00882998388, -0.0135531593, 0.00519064534, 0.0137886256, -0.0145019498, -0.0123204244, 0.00517333159, -0.017756924, 0.00366704026, 0.0244192332, -0.00391635764, -0.0186849385, -0.0194328893, -0.0422177128, -0.00234600552, 0.0069289403, 0.00468854839, 0.0117733115, -0.00321861566, -0.0145850554, -0.00673848949, 0.0127775064, 0.0172305889, -0.027230978, -0.0131030036, -0.0039198203, 0.0108383726, -0.00867069792, 0.0382563397, -0.00697049312, -0.0106583098, 0.0313585624, -0.0206102207, -0.0186987892, 0.0401677713, 0.0235604737, 0.0136985946, -0.00385056552, -0.0704182535, -0.0164410844, -0.0124173816, -0.0124797104, 0.00182832603, 0.0307491198, 0.0501404591, 0.00972337089, -0.00577238575, 0.0219676141, 0.00873302761, 0.00910700299, -0.00420722738, -0.039835345, -0.0179508384, 0.018214006, 0.000292385, 0.0271063186, 0.0222723354, 0.0412204415, -0.0258043297, -0.0122719463, -0.00455003884, -0.0236158781, -0.00993806, 0.00582778919, 0.0101319738, -0.014668161, 0.0359570794, -0.0193497837, -0.00813051, -0.0168012083, -0.0450987108, -0.0171059296, 0.00293293968, 0.0210673027, -0.0105752042, 0.00489285, 0.00245161913, 0.0181863047, 0.0632157624, 0.0391428, -0.0261644535, 0.00284810271, 0.0183663666, -0.0332976952, -0.0218568072, 0.0122580957, -0.0397522412, -0.00399600063, -0.0169812702, 0.0323835313, -0.0141279744, -0.010686012, 0.0253333971, 0.0113577833, -0.0203886051, -0.0201531388, 0.0129367923, 0.0278404206, -0.000229622863, -0.0124312323, -0.0124035301, 0.013615489, -0.0319957063, 0.0301396791, 0.054323446, -0.00269574206, -0.00455003884, 0.0195436981, -0.0182417072, -0.0275495499, 0.0216905959, 0.0116763553, -0.0206379239, 0.036566522, -0.00635758834, 0.00389211834, -0.0186295342, -0.0126043689, -0.020984197, 0.00840060413, -0.00971644465, 0.0141349, -0.0022698252, -0.00897541922, 7.47194135e-05, -0.0112677524, 0.00705706142, -0.00668308605, 0.00671425043, -0.00667962292, -0.0138994334, -0.0412481427, 0.00858759228, -0.00261263642, -0.0165518913, 0.0173552465, -0.0111292424, 0.0159978531, 0.0113993362, -0.0135116065, 0.0152776036, -0.0387549736, -0.0260259453, -0.0231033936, -0.0249732714, -0.0100142406, 0.0117594609, 0.00729945349, 0.00823439285, 0.0102704829, -0.0144326948, -0.0167873576, 0.00523912394, -0.0233665612, -0.00916933268, 0.00456388947, -0.0222446341, 0.00683890888, -0.01022893, -0.0145158013, -0.00551614305, -0.0261506028, -0.0110599874, 0.0105544282, 0.0225493554, -0.0011219274, 0.0132345874, -0.0130960783, -0.0086291451, -0.00968181714, 0.00181101239, -0.0177707747, 0.00364972674, -0.022355441, -0.0433257893, 0.0238513444, 0.0217321478, 0.00377784809, -0.0268154498, 0.0185325779, -0.00185949076, -0.023865195, -0.0222446341, 0.00119724195, -0.0137124453, -0.00634720037, -0.0424947292, -0.0159978531, -0.0291701108, 0.0213997252, -0.00988958217, 0.0261644535, 0.0418575853, -0.0170643758, 0.0248763151, 0.0165934451, -0.0180200934, 0.00496903, -0.0123273497, 0.0466223136, 0.0151529452, -0.0117733115, -0.00461929338, 0.0187680442, 0.00604247907, -0.00101458246, 0.010526726, -0.00941865, 0.0201392882, -0.0106513845, -0.0210396014, -0.006773117, 0.00249836594, 0.0150698395, -0.00986188, 0.00357008376, 0.00708822627, 0.0463452972, -0.0100765694, -0.00941172428, -0.00397868687, -0.0367604345, 0.00524604926, -0.0501681603, 0.000493440253, -0.00260397955, -0.00333115458, -0.00246547, -0.0111846458, -0.00819284, -0.028075885, -0.0319957063, -0.0075141429, 0.0133107677, 0.000672637, 0.0172721408, 0.0109630311, -0.0231587961, 0.00920395926, -0.0015521727, -0.0236020274, -0.0153053049, -0.0129852705, -0.0108037451, 0.0117248334, 0.0123481266, -0.0273971893, 0.0391150974, -0.0129575683, -0.0263583679, -0.0186849385, -0.00416567456, -0.0296410434, -0.016177915, -0.0178954341, -0.0282420982, -0.0512208305, -0.00409642, 0.0399184525, -0.0162748713, 0.0141071975, 0.00495517906, -0.0364834145, -0.00797122438, -0.0178815834, 0.0032653627, 0.0138994334, 0.0306383129, 0.0121819153, 0.0306937173, -0.0294471309, 0.0370651558, -0.0296133421, -0.0126944007, 0.0130614508, 0.010595981, -0.0173690971, 0.0397522412, -0.0173968, -0.0148897767, 0.046151381, 0.00528413942, -0.0364834145, -0.0240868106, -0.00199626898, -0.0200700331, -0.0252364408, -0.0141695272, -0.0131722586, 0.0176738184, -0.00654111337, -0.0138925081, 0.019474443, -0.0477580912, 0.0210950039, -0.0193636343, -0.0232557543, 0.0250563771, -0.00910007767, 0.00233215466, 0.0223000385, -0.0290039, -0.0389211848, 0.0237820894, 0.0167458039, -0.0238513444, 0.00906545, -0.013386948, -0.00115742045, 0.0153330071, -0.0116555784, -0.028671477, 0.0288376883, -0.0147789689, -0.0175630115, 0.0340179466, -0.000519843656, 0.00957793556, 0.0316632837, 0.00400292594, -0.0160117038, 0.00991728343, -0.0574537627, -0.0187403429, 0.00973722152, -0.0046608462, -0.00471971277, 0.0127705801, 0.00970259402, 0.0211365577, -0.0104643963, -0.00982032716, -0.0244469363, 0.0203886051, 0.00661383104, -0.00998653844, 0.0306383129, 0.041691374, -0.00438382709, 0.00443576835, -0.00163527834, -0.0112054227, 0.00491362624, 0.0277296118, 0.0187957454, -0.00697049312, -0.0405278951, 0.00671078777, -0.00473702652, 0.00033999767, 0.0241699163, 0.00750721758, 0.0196406543, -0.00378477341, 0.00817206316, -0.0078396406, 0.00595937343, -0.0112539008, 0.0162056182, 0.00130891521, -0.0253610983, -0.0143218879, 0.0117525356, 0.00257627759, -0.0197376106, 0.00480974419, 0.00918318331, 0.00356662087, 0.0208872408, -0.00148638058, 0.00866377261, 0.0233111568, -0.0124104554, -0.00533954334, -0.0136639671, -0.0164687857, -0.0114685912, 0.0117802368, 0.0224523973, 0.0162748713, 0.00339175272, 0.0122096166, 0.0976769328, -0.0085321879, -0.0163441263, 0.00156429224, 0.00483398326, 0.0126389964, -0.00179716141, 0.00343849952, -0.00610134564, 0.00539148413, -0.0085945176, 0.0126459217, -0.00533261755, 0.0405278951, -0.0176599678, 0.0127705801, 0.0306106098, -0.0019425964, 0.00220749597, -0.0278265681, -0.0157208331, -0.002671503, 0.026566131, -0.0154438149, 0.0158593431, -0.0134215755, 0.00982032716, -0.00968874339, -0.0360401869, -0.0101181222, 0.0168981645, -0.0231033936, 0.02000078, 0.00581393857, 0.00449117227, 0.0252918433, -0.0118217906, -0.0280481838, -0.00954330806, 0.0198899712, -0.0451541133, 0.00266111479, 0.0127705801, -0.0117940884, 0.00928014, 0.0257627759, -0.00453618774, 0.018144751, -0.00936324522, 0.00201877672, 0.00283598294, -0.00581393857, 0.0123342751, -0.000265981624, -0.0019425964, -0.00346447015, 0.00352333672, -0.0270093624, 0.00910007767, 0.00209668837, -0.00798507594, -0.00578969903, -0.00676272903, 0.00338309584, -0.00206725509, 0.0164133813, -0.0162194688, 0.0141833778, -0.0154022621, 0.035375338, 0.0245161913, 0.0147097139, 0.0118564172, 0.00746566476, -0.0101111969, 0.0282282457, 0.0422177128, -0.0206656251, 0.023865195, -0.0250979308, 0.010983807, 0.0131861093, 0.0229925849, 0.0209426433, 0.00241179764, -0.0265107285, 0.0117317587, -0.00884383451, 0.00865684729, -0.00200665719, 0.00346100749, -0.00446347, 0.0119256722, 0.0179646891, -0.0168289095, 0.0091139283, 0.00896156766, 0.017756924, 0.00117819686, -0.0083244238, -0.0136016374, -0.00961948838, -0.0117317587, -0.00798507594, 0.0342949629, -0.0250563771, 0.00252260524, 0.0086984, -0.0120711075, 0.00864992104, 0.00250702281, 0.00372244418, -0.0227432679, -0.0232003499, 0.010090421, -0.00860836823, 0.000741458964, 0.026953958, -0.0065653529, -0.00455696415, -0.0284775645, 0.0134492777, 0.0146543104, 0.00700512063, 0.00327228825, 0.0206240714, -0.0120918835, 0.0175214577, 0.0268154498, -0.00860144291, 0.00381247536, 0.0137539981, 0.0112677524, 0.00171145867, -0.00977184903, 0.00557847228, 0.00930784177, 0.0078396406, -0.00045318593, -0.00920395926, -0.00578277372, 0.0279373769, 0.00411719643, -0.0271755736, 0.0191835724, 0.0296964478, 0.00117386843, -0.00132190052, 0.027161723, -0.0126112942, -0.026953958, -0.0204024576, 0.0111084664, -0.0245715939, 0.0047093248, 0.0100419428, 0.0233665612, -0.0361786932, -0.0086984, -0.0243084263, -0.018144751, 0.0169951227, 0.0101873772, 0.0267184917, -0.012701326, 0.00248797773, -0.000365968212, -0.0172305889, -0.0278819725, -0.00507983798, 0.0157485362, -0.0086291451, -0.0123619772, -0.00320995878, -0.00497249281, 0.0213997252, 0.0267877467, -0.0171751846, 0.0105682788, 0.0121472878, -0.006361051, 0.000291519333, 0.00301085133, -0.00386441639, -0.0316078812, 0.00764572714, -0.00462275604, 0.0187957454, 0.0228540767, -0.01166943, 0.0020984197, 0.0276188049, 0.0126182204, -0.0117456103, 0.016634997, 0.0344334729, 0.0075626215, -0.0232003499, -0.0157208331, 0.0107137142, -0.0232834555, 0.00128381036, 0.00112106162, 0.00398907484, -0.0166072957, -0.0118287159, -0.0195298474, 0.00311300205, -0.0243361276, -0.0044530821, 0.00959871151, -0.0116832806, -0.00831749849, 0.0112192733, -0.0124589344, -0.0116832806, 0.0131861093, 0.00317706284, -0.0141487503, 0.00191662589, 0.00693932828, 0.0257073734, -0.00813743565, 0.0274110399, -0.00466430932, -0.0130753014, -0.00892694, 0.00512831612, -0.0148066711, 0.00306106103, -0.00502789672, 0.0143218879, 0.00224558613, 0.0104713216, -0.0007799819, -0.0104366951, 0.0208872408, -0.0221892297, -0.00244815624, 0.0127151767, 0.00514563, 0.00645800773, 0.00503482204, 0.0151667958, 0.0182555579, -0.000201704534, 0.0143634407, -0.00218845089, -0.016565742, 0.0228540767, 0.00163700979, 0.00504174782, 0.0213858746, -0.00625716895, -0.00486861076, -0.0172721408, 0.0137332221, 0.00871917605, 0.0150698395, -0.0246131476, 0.0148343733, -0.0350706168, -0.0475641787, 0.0141695272, 0.00199800031, -0.0167181026, -0.0445169695, -0.0192528274, -0.0406664051, 0.00322900387, 0.00863607, 0.0181170497, -0.0146127576, 0.00118165964, 0.00172704097, -0.0147512667, 0.0134700537, 0.0104436204, -0.00525990035, -0.0120226294, -0.00378477341, 0.0637143925, -0.00667962292, -0.00260917377, -0.0196960587, 0.00385056552, 0.00362548744, 0.00830364786, 0.00319610792, 0.00797815, 0.026635386, 0.0225909073, 0.00566850323, -0.0125420401, 0.0245023388, 0.0201115869, -0.014280335, -0.00553345634, 0.00805433, 0.0388380773, -0.0135947121, 0.00216248026, -0.00533954334, -0.000760936819, -0.0054365, -0.00459851697, -0.0187680442, -0.00613943581, 0.00125351141, 0.0075626215, -0.0120641822, -0.011302379, 0.0127636548, -0.0288376883, 0.0125351148, -0.0154438149, 0.0271755736, 0.0083244238, 0.0135323834, -0.0050867633, 0.0306937173, -0.0188234486, 0.0288653895, 0.00232349779, -0.00131497509, -0.00130198977, -0.00886461139, -0.00300738867, -0.0129644936, 0.0198484194, 0.00243603671, 0.00698780688, -0.00831749849, 0.0195714, -0.00857374072, -0.000679129618, -0.0108314473, 0.0138371037, 0.024599297, -0.0149174789, -0.0138648059, 0.0329375714, -0.0161225125, -0.00997961313, 0.0142526329, 0.0127359536, 0.0165241901, -0.0177430734, -0.00855989, 0.0207487307, -0.0156654306, 0.00271825, 0.0133453952, -0.00787426811, 0.0082551688, 0.0260813478, 0.0132068852, 0.00982032716, -0.00222480972, 0.00619483972, -0.00382632622, -0.0247378051, 6.05438217e-05, -0.0159424488, -0.00309741986, -0.012195766, 0.00885768607, 0.00162142748, 0.0202085432, -0.00601477735, 0.022355441, 0.00698434422, -0.0263999198, 0.0203886051, 0.0219814666, -0.00876765419, 0.0282420982, 0.00528760208, -0.00873302761, -0.0303612929, -0.000598621, -0.0130614508, 0.00839367881, 0.00819976535, -0.0220922735, -0.000808982353, -0.0122511694, 0.0348767042, 0.000353415788, 0.0147235654, -0.0113231558, 0.0281174388, 0.0218706578, 0.014598907, 0.0250286758, -0.0023546624, 0.00638529, -0.0152499015, 0.00205686688, 0.00989650749, 0.0236297287, -0.00967489183, -0.00742411194, 0.0174245015, 0.018865, -0.0134977559, 0.00951560587, -0.0291424096, -0.00860144291, 0.00544342538, -0.00977877434, -0.0190450624, 0.0229925849, 0.0024256485, 0.0273417849, 0.0170782283, -0.0122857969, 0.0170782283, -0.0210118983, 0.004588129, -0.0094532771, -0.0107137142, -0.010595981, -0.0157208331, -0.00617406331, -0.0146820126, 0.00157294911, 0.0096956687, 0.0048651481, -0.00461236807, -0.0154299643, 0.0206933264, 0.0180200934, 0.0105821295, 0.000451887405, 0.00964719057, 0.0101804519, -0.0153607093, 0.00878150575, 0.00234773685, 0.00488246186, 0.0128121339, -0.0112885283, 0.000754877052, 0.0219676141, 0.00137211022, 0.0158316419, -0.00735485693, -0.000469633931, -0.0036531894, 0.00572044449, -0.0112954536, 0.00385749107, -0.00655842712, -0.0276049543, 0.005194108, -0.00241352897, -0.0022334666, 0.00115742045, 0.0112400502, 0.00948790461, -0.0122927222, -0.0104159182, 0.00900312047, 0.0244884882, 0.00120070472, -0.0106790867, 0.0183802173, 0.0290316027, 0.0104920985, 0.00188373, -0.011350858, -0.000750981446, -0.0161363631, 0.00314243534, 0.000809415185, 0.0137193706, -0.0113993362, -0.00555423321, -0.0118564172, 0.00757647259, 0.00827594567, 0.013615489, 0.0178538803, -0.00522873551, 0.0433811918, -0.0261506028, 0.00268015987, 0.017618414, -0.0144742476, -0.00634373724, 0.0116417278, 0.0128190592, 0.011350858, 0.0052079591, 0.0260951985, 0.0082897963, 0.025374949, 0.00698088156, 0.0143911419, -0.0122373188, 0.000291302887, -0.0169951227, 0.0106236823, 0.0125004873, 0.0141833778, 0.011053062, -0.0209426433, 0.0157900881, -0.0135254581, 0.00600785157, -0.0395860299, -0.00176772813, 0.0137401475, 0.0132899918, -0.00285849092, -0.0073063788, 0.00233734865, -0.00292082014, -0.0124450829, 0.0286160726, -0.0070986147, -0.00909315236, -0.00824131817, 0.0143218879, 0.0123342751, 0.0191004667, -0.00299526914, -0.0141210491, 0.0278819725, 0.00756954681, -0.0108037451, -0.00973722152, 0.010595981, -0.0032411234, -0.000586068549, 0.0170782283, 0.01407257, 0.0108799255, -0.0238097925, 0.0112954536, 0.0356246568, -0.00179196731, 0.0224385466, -0.0108660739, 0.00054191862, 0.0141764525, 0.00886461139, -0.00427301973, -0.00992421, -0.00136345334, 0.00250356016, -0.0104851732, -0.00502097141, -0.0069427914, -0.00699126953, -0.0188095961, 0.00138509553, -0.0196960587, 0.0298903603, 0.00511446502, 0.0283390544, 0.00637490209, -0.0158593431, 0.0100280913, 0.0125074126, -0.00465738354, 0.0122927222, -0.0131584071, 0.00579662481, -0.0192528274, -0.00695664203, -0.00822746754, 0.00903082266, -0.00468162261, -0.0220645722, 4.62262096e-06, -0.00697395578, -0.00600785157, -0.00922473613, 0.000611606229, -0.000922819891, -0.011440889, -0.0200146306, 0.00925936364, 0.00398561219, 0.011281603, 0.00351294852, 0.00486168545, -0.0168289095, 0.00621561613, 0.0110876895, -0.0047439523, -0.00560963666, -0.0313031599, 0.00470239902, -0.00707437517, 0.0172444396, 0.00175820559, 0.00920395926, -0.00385056552, -0.00530837849, 0.0143772913, 0.012791357, 0.00192355143, -0.0374806859, -0.00855989, -0.0094325, -0.0329652727, 0.00745181367, 0.00190970046, -0.0358462706, 0.00171145867, -0.0034575446, -0.0129714198, 0.00225770567, 0.00225424301, -0.0161502138, 0.00402023969, -0.018075496, -0.00947405305, 0.0148066711, -0.00492747733, -0.016634997, 0.0209980477, 0.0172721408, 0.0179231353, -0.00959871151, -0.00948097836, -0.0042106905, 0.0234081149, 0.00249836594, 0.00269574206, 0.0131099289, -0.0159008969, 0.0109630311, -0.0040410161, -0.0116971312, -0.0120434053, 0.0192389768, 0.0203886051, -0.0157069825, 0.013317693, -0.0107483407, -0.000687786494, -0.000199756745, -0.0081789894, -0.00139808073, -0.00441499194, 0.00907237548, 0.000627188536, 0.00443230569, 0.0214828309, 0.00373975793, 0.0151667958, -0.0251533352, -0.00909315236, -0.0221615285, -0.0378962122, 0.00415528659, -0.00760417432, 0.0134285009, -0.0163441263, 0.016634997, -0.0116971312, -0.0207902826, 0.0196683556, 0.0139894644, -0.00889231358, 0.00542611163, 0.00638529, -0.0177430734, -0.0151113924, -0.0358185694, -0.0172444396, 0.0159008969, 0.0448216908, 0.00611519674, -0.00329999, 0.0114616649, 0.00107171759, -9.08968941e-05, 0.0218429565, -0.0141071975, -0.00139202096, 0.00132016919, 0.00547805289, 0.000525037758, 0.00329825864, -0.0214828309, -0.0145573542, 0.000934939482, 0.0114339637, -0.00573775824, -0.0157900881, -0.0406941064, -0.00912085362, 0.00488246186, 0.0223831441, -0.00430418411, 0.030111976, 0.0284221601, 0.00732715521, -0.0107483407, -0.0204163082, -0.00101631379, 0.0125420401, 0.0206517745, -0.0106444592, -0.00750721758, 0.00481666951, -0.00957101, -0.00344023085, -0.0306106098, -0.0148343733, 0.00621215347, 0.0236712825, 0.0167319532, 0.0270509161, -0.0101873772, 0.0164687857, 0.00355969556, 0.0137886256, -0.0274387412, -0.017618414, 0.0165518913, -0.0241560657, -0.0137817, 0.00164133823, -0.00690123858, -0.0169812702, 0.0208872408, 0.0150975408, -0.000276369828, -2.05329579e-05, 0.0200284813, -0.00758339791, 0.00792274624, 0.0351814255, -0.00671425043, 0.0148897767, 0.00258493447, -0.00997268781, -0.0137193706, -0.0126043689, -0.0170782283, 0.00189584948, -0.00526682567, -0.0085945176, 0.0171474814, 0.00211227057, 0.0102358554, -0.00224731746, -0.0132345874, 0.0133938733, 0.0164410844, -0.000838848471, 0.00217633136, 0.000528500532, -0.00716094393, 0.00373629504, -0.0112054227, 0.0132553643, -0.00705359876, -0.00870532542, 0.00534300599, 0.000103016479, 0.00411027111, -0.00442884304, 0.00493786531, 0.0177707747, 0.020845687, 0.0170089733, -0.00717479456, -0.00242737983, 0.0114685912, 0.00150369434, 0.0161917657, 0.00629179645, -0.00367050315, 0.0175353084, 0.0104713216, 0.0124797104, 0.0134354262, -0.00727867708, 0.000435872236, -0.00909315236, -0.0150282858, 0.00999346375, 0.0101319738, -0.016912017, 0.0450433046, 0.00271478714, -0.00609442033, 0.0238790456, 0.00895464234, 0.00968874339, 0.00886461139, 0.0160117038, -0.00606325548, 0.0128675373, -0.00634720037, 0.0156515799, -0.0261229016, 0.00230618403, 0.0195714, -0.0119464491, 0.00819976535, 0.000426566141, 0.00577238575, 0.00874687824, -0.00259532267, -0.0112746777, -0.0106375339, 0.00360817369, -0.00447732117, 0.00714016752, 0.0034471564, 0.0206933264, 0.00276326551, 0.0230618399, -0.00705706142, 0.00973722152, -0.0204855632, -0.00318225683, -0.0054365, 0.0260674972, -0.0143080363, 0.00769420573, 0.0117317587, 0.0198345669, -0.0259012859, -0.00516986893, -0.00763880182, -0.0131168542, -0.00738255912, 0.0114755165, -0.00165692053, -0.0115309199, 0.019931525, 0.0275218468, 0.00480974419, 0.0229233298, -0.00533608, 0.00322034699, 0.00699473219, -0.0239760038, -0.0202639475, 0.00246720132, -0.0147235654, -0.00972337089, -0.00877458, 0.0153191565, 0.0208595376, 0.0134492777, 0.0356246568, 0.0117179081, 0.00120070472, 0.0089338664, -0.00706745, 0.0022334666, 0.00268881675, 0.0089338664, 0.0249040164, 0.0229648836, -0.00544342538, 0.00626755739, -0.00741026085, -0.00997268781, -0.0215797871, 0.00612558471, -0.01624717, 0.00422454113, -0.0159008969, 0.0342395604, 0.00657920353, -0.0082897963, -0.0125281885, -0.0144880991, -0.000358177029, 0.00793659687, 0.00939787272, 0.00697395578, -0.0068804617, 0.00922473613, 0.0128536867, -0.00414143549, 0.0416636728, -0.0339902453, -0.0165241901, -0.000253862032, 0.00763187604, 0.00325670582, 0.012265021, 0.0050382847, -0.00815821253, 0.0235466231, 0.016427232, -0.0176045634, 0.00142405136, -0.00109855388, 0.00488938717, -0.00637143943, 0.00714709284, 0.00756954681, 0.0193220824, 0.012265021, 0.00498634391, -0.0114062615, 0.00454657618, -0.0252918433, 0.0156100262, -0.00355277, 0.0116001749, -0.00463660713, 0.00234600552, -0.00709168892, 0.00248797773, -0.0222307835, -0.00286541623, 0.0298072547, 0.0201946925, -0.012722102, -0.00718172034, -0.00492401468, -0.0133938733, -0.0141972294, -0.00427648239, 0.00247066421, 0.00881613325, 0.0139825391, 0.0168566126, 0.0288376883, -0.00426609395, 0.0296687465, -0.000352117262, -0.035375338, 0.0106652351, 0.00447039586, 0.00344023085, -0.0280204825, 0.0134215755, 0.00354411313, 0.0152221993, 0.00998653844, -0.0119464491, 0.00878150575, 0.0227986723, 0.00948790461, 0.00768728, -0.00729945349, -0.0127775064, 0.00621907879, 0.00372244418, 0.00876072887, -0.00497249281, 0.0119325975, 0.0118217906, 0.0151113924, -0.000919357117, 0.00395098515, 0.00302470243, 0.0235604737, 0.0354030393, 0.0112054227, -0.0131168542, 0.0170643758, -0.00977877434, -0.00694625406, -0.018352516, 0.00749336649, -0.0138994334, -0.00953638274, -0.0130753014, 0.0054988293, 0.0124173816, 0.00140846905, 0.0191004667, 0.0147928204, 0.00704667345, -0.00621215347, 0.00151841098, 0.0159147475, -0.0182417072, 0.0181724522, 0.00433534896, -0.00311646494, 0.013089153, 0.000947059074, -0.0170366745, 0.00762495073, -0.0049517164, 0.0143357385, 0.0199730769, -0.00558539759, 0.00253299344, 0.00860836823, -0.0157485362, 0.0126251457, 0.00136258767, 0.00502443407, 0.0339071378, 0.000599919469, -0.020845687, 0.00255550118, -0.0191697218, -0.0279235262, 0.00169760769, 0.0179092847, -0.0228956286, 0.0160948094, 0.00418991409, -0.00390943186, 0.0308322255, 0.000907237583, -0.011212348, -0.0246408489, 0.0394475199, -0.000504261348, 0.00396483578, 0.000590829819, -0.00136605045, 0.00171492132, -0.00940479804, 0.00448770961, 0.0149174789, 0.00381247536, -0.0164549351, -0.01421108, -0.00353891891, 0.0123204244, -0.00351294852, 0.00777731137, -0.00806818157, 0.0119187469, 0.0028169381, 0.00308010611, 0.0214828309, 0.00277019106, -0.00719557097, -0.0152637521, -0.00876072887, -0.00916933268, -0.00290523772, 0.000461842777, -0.00316148042, 0.0103674401, -0.026109051, 0.0232973062, -0.00126563106, 0.00472663855, -0.0141141228, 0.0123204244, -0.00898927, -0.00842830632, 0.0295856409, 0.0125074126, 0.0140379425, -0.000569187687, 0.00835212599, -0.000881267, 0.00264206971, 0.00584510295, 0.0178123284, 0.00066095026, -0.00955715869, -0.0134007987, -0.0350152142, -0.0312477555, -0.00126822805, 0.0159978531, 0.00635758834, 0.0252087377, -0.0080820322, 0.0229094792, -0.00694971671, 0.00378131075, -0.00471278746, -0.00888538733, 0.0107968198, 0.022286186, -0.00432149787, -0.022286186, 0.00543996273, -0.00903774798, 0.00204821, 0.0199453756, -0.0254996084, 0.00756954681, 0.00604247907, 0.00700512063, 0.00406525517, 0.00369820511, -0.0229233298, -0.00690470124, -0.0205963701, -0.0230341386, -9.39808961e-05, -0.00533954334, 0.0122373188, -0.00964026432, 0.0131722586, -0.00105094118, 0.00976492371, -0.00308183744, -0.002671503, -0.0205132645, 0.031829495, -0.0148897767, -0.00333981146, -0.00700512063, 0.0151806464, 0.0048443717, -0.00593513437, 0.0169674195, -0.0156100262, -0.00545381336, 0.000488679, 0.00243603671, -0.00367396581, 0.000518545159, 0.0109907333, 0.0167458039, 0.0236989837, 0.0115724728, 0.00189931225, 0.00312685315, -0.00931476709, 0.00839367881, -0.00309915119, -0.00231657224, -0.00047655942, -0.00957101, 0.0150282858, -0.00529452739, -0.0287268814, 0.00847678445, -0.0168566126, 2.25889598e-05, -0.0093216924, 0.00695317937, 0.0143080363, 0.00423839223, -0.0198761206, 0.0261506028, 0.015125243, -0.0111569446, 0.00669347402, 0.0203193519, -0.0116348024, -0.0056546526, 0.0401954725, -0.0276049543, -0.00361163658, -0.0124243069, -0.00912777893, -0.039973855, -0.0408880189, 0.00664153276, -0.012562816, -0.0187126398, 0.00867069792, 0.0132068852, 0.00327055668, -0.0165103376, 0.00971644465, 0.000212309169, 0.00603901641, -0.000483052048, -1.25524284e-05, -0.0125489654, 0.00529106474, 0.00702935969, 0.00914855581, -0.012057256, 0.00413451, 0.0254719071, -0.0255965646, 0.000970432535, 0.00373629504, 0.0128744626, -0.0029485221, -0.0156377275, 0.00732715521, 0.00922473613, -0.0144326948, 0.000687786494, 0.0127982823, 0.0139409862, 0.0165380407, -0.0229925849, 0.0139340609, 0.00415874925, 0.0211919621, -0.00896849297, -0.0135046812, 0.00200665719, -0.00916240644, 0.00341772311, -0.0254857577, -0.020984197, -0.00169068226, 0.0159701519, -0.000279399741, -0.00878843106, -0.0202085432, 0.00584510295, -0.0025866658, 0.0103397379, 0.0122165419, 0.000198566428, 0.00882998388, -0.0181586016, 0.00114270381, 0.0149174789, 0.0126944007, -0.0149313295, 0.0131584071, -0.0103674401, 0.0193774868, -0.0307491198, 0.00117559975, -0.00111500185, -0.0306937173, 0.00190623768, 0.000464439829, -0.00570659339, -0.0110392114, 0.000988612, 0.0186572373, -0.0153745599, -0.000380901271, 0.00914163049, -0.00574468356, -0.0156100262, 0.00790197, -0.0052425866, -0.00160844217, 0.0103397379, 0.022286186, -0.00750029227, -0.0128190592, -0.0243915319, 0.00419337675, 0.00875380356, -0.00284983404, 0.00786041655, 0.0317186862, 0.0175907128, -0.0223138891, -0.00113577826, 0.0111777205, -0.00378131075, 0.0104643963, -0.00389211834, -0.00136951322, -0.00278750481, 0.0284498613, 0.00672117574, 0.0131999599, -0.0113439318, -0.0380347222, 0.00473702652, -0.0138717312, -0.00476126559, -0.00536031974, 0.00188026717, -0.00493440265, -0.0094532771, 0.0011773312, 0.0160117038, 0.0250840802, 0.00873302761, 0.00344542507, 0.00349563477, 0.0144465463, 0.0123342751, -0.00815128721, 0.00940479804, -0.00711246533, -0.00552306836, 0.011738684, 0.00712631643, 0.00322900387, 0.00273036957, -0.00205859821, -0.012493561, 0.00389211834, 0.0179369859, -0.00474048918, 0.00592128327, 0.0139271356, 0.00384710287, -0.0110946149, 0.0308322255, -0.00246027601, 0.0147097139, 0.00709168892, -0.00686661107, -0.0129991211, -0.00323246652, -0.0135947121, 0.0110322861, -0.0178954341, -0.0104020676, -0.0179369859, -0.000645800785, 0.0176599678, -0.00907237548, 0.00148032082, 0.0184771735, -0.00447385851, -0.021372024, -0.00400985172, -0.0345719829, 0.0105059491, 0.0258735847, 0.0210950039, 0.0221061241, -0.00734100631, -0.00529106474, -0.011053062, 0.00983417779, 0.0112261986, -0.024142215, 0.00251567969, 0.00150282867, -0.00466777198, -0.0119118216, -0.00179023598, -0.0106583098, 0.00734100631, 0.00122840656, -0.00584510295, -0.0116555784, 0.0130753014, -0.00772190746, 0.00836597662, 0.0162194688, -0.00210707658, 0.0104436204, 0.00563041307, 0.00145521597, -0.0165241901, -0.0271894243, -0.00301604555, -0.020707177, 0.00793659687, 0.00590743218, 0.00375014613, -0.0218845084, -0.00361163658, -0.00878843106, -0.00354584446, 0.000477425114, 0.002597054, 0.031829495, -0.0154299643, 0.00659651728, -0.0373698771, 0.0127636548, 0.0166211464, -0.00468162261, -0.00840060413, 0.00330864685, -0.00809588283, -0.0102081541, 0.00339521538, 0.0201669913, -0.00736870803, 0.0108314473, -0.0172305889, -0.0183663666, 0.0188788511, -0.0140656447, 0.0104366951, 0.0054503507, 0.00101458246, 0.00909315236, -0.0073063788, -0.00614982424, -0.00250182883, 0.00114789791, -0.00285849092, -0.00219018222, -0.0068804617, 0.0211642589, 0.0247101039, -0.000895118, 0.0231865, 0.0208179858, -0.0115170693, 0.00431803521, 0.0156377275, 0.017687669, 0.00116261456, 0.0243638307, -0.00173136941, -0.00183352013, -0.00634027459, 0.000441282784, 0.00450502336, 0.00987573061, -0.0198761206, 0.0115447715, -0.0230064355, -0.0100627188, 0.0224801, -0.0081789894, -0.0223969948, -0.00159285986, -0.00458120322, 0.00499673188, 0.00321342167, -0.0139686884, 0.00830364786, 0.00515255518, 0.00615674956, 0.00750721758, -0.0127151767, 0.00482013216, -0.00304547884, 0.00163354701, 0.0143634407, -0.0235743262, -0.00904467329, 0.00473702652, -0.00753492, -0.00510061439, 0.00862222, -0.000365968212, -0.00862222, -0.00844908226, 0.0115447715, 0.00600092625, -0.00815821253, 0.028809987, 0.000182118412, 0.0104020676, -0.00725097489, 0.00419683941, -0.00735485693, 0.0189619567, -0.0120157031, -0.0370374545, -0.0435751043, -0.00343849952, -0.022424696, -0.0184494723, 0.0226047579, -0.0125489654, 0.00244642491, -0.0176738184, 0.0132207368, 0.0215659365, -2.95550171e-06, 0.0175076071, -0.000104531427, 0.000592561148, -0.0130268233, 0.0171197802, -0.00322207832, -0.00324978027, 0.00869147386, -0.000823266164, 0.00831749849, 0.0106583098, 0.0115655474, 0.00956408493, 0.00894079171, -0.0010085227, 0.0211642589, -0.00816513784, 0.0068943128, -0.0115932496, 0.00987573061, 0.0029744925, 0.00105007552, 0.00158160599, -0.000534560299, -0.0159978531, 0.0279512275, 0.0090516, 0.00915548112, 0.0155684734, -0.00360124838, 0.0212196633, 0.00130112411, -0.0207625814, 0.00608056923, 0.0180616453, -0.0154438149, 0.000382849044, 0.0213304702, 0.00632642396, 0.024599297, -0.0135808615, 0.0173690971, -0.00217113714, 0.00877458, -0.00867762323, 0.0250702295, 0.0243915319, 0.00115395768, 0.00747259, -0.0140864216, 0.0222584847, -0.00736178271, -0.0116555784, -0.0202916488, 0.00980647653, -0.000887326838, -0.00957793556, 0.000172054832, -0.00648571, 0.00848371, 0.00206032954, 1.84972475e-06, 0.00149676879, -0.00544342538, -0.0050729122, 0.00470586214, -0.0187403429, 0.02379594, -0.0242530219, -0.00156602357, -0.0287822839, -0.00977184903, -0.00858066697, 0.00912777893, -0.000465305522, 0.00661036838, -0.0344057716, 0.00580355, -0.00189758081, 0.0101319738, 0.00113231561, 0.00234946818, 0.00766650354, 0.0263860691, 0.0234773681, -0.0205409657, 0.00402370235, -0.00423839223, 0.022424696, -0.0152637521, -0.000996403, -0.00947405305, 0.00572390715, 0.0117663862, 0.00190104358, 0.0223831441, -0.0330483802, -0.0181032, 0.0116902059, -0.0125143379, 0.0277434625, 0.0212612152, -0.0182971116, -0.000940133585, 0.000368348847, 0.0146266082, 0.0199176725, 0.00275114598, -0.00443923101, -0.00988958217, -0.0108314473, -0.00100938836, -0.00643723132, 0.0138578806, -0.000204626223, 0.0239206, 0.00026035466, -0.0136916693, -0.00737563334, 0.0257073734, -0.0183663666, -0.00783271529, -0.00382286357, 0.00258147181, -0.00341945444, 0.025651969, 0.00519064534, -0.0112608261, 0.0196960587, -0.00671078777, 0.00621907879, -0.00399600063, 0.00901004672, -0.0208179858, 0.003763997, 0.00636797678, 0.00459851697, -0.00320303347, -0.0288376883, 0.00979262497, 0.00797815, 0.0192251261, 0.0160809588, -0.0172444396, -0.00560271135, 0.00670039933, -0.0131030036, 0.0110599874, 0.00710554, -0.0296410434, 0.00480628153, 0.00755569618, 0.0192251261, 0.0152360508, 0.0187126398, 0.0214135759, 0.00188026717, 0.0181170497, -0.0174522027, 0.0171336308, -0.00731330412, -0.0185602792, 0.00649956055, -0.00249663461, -0.0108591486, 0.00716094393, -0.016704252, 0.0170505252, -0.00167077151, 0.00923858676, -0.00306625525, -0.00119637628, 0.0271755736, -0.00046703688, 0.0044184546, 0.0216074903, 0.0010743147, 0.00637143943, 0.00858066697, -0.0168981645, -0.00521488441, 0.0222584847, -0.0252779927, 0.024987122, 0.00616713753, -0.00669693667, 0.00673156418, -0.0177292228, 0.0122996485, -0.000261869631, 0.00544688804, -0.00528760208, -0.0150421374, 0.00248451508, 0.0128744626, 0.00313724135, -0.00702589704, -0.00876072887, -0.00681120716, 0.0153191565, -0.0300842747, 0.0026109051, -0.0287545826, 0.00674541527, 0.0171059296, -0.000291735749, -0.010616757, -0.00213997252, 0.0122788716, 0.0203055, -0.00663114479, -0.0220507197, 0.00736870803, -0.00114616659, 0.0100627188, -0.00323939207, -0.0204994138, -0.01000039, -0.00469893636, 0.0148066711, 0.00543303695, -0.00149503746, 0.00937017146, -0.013615489, -0.0122927222, 0.00791582093, 0.0202085432, 0.00506944954, -0.0102843344, -0.0136778178, -0.0157346856, -0.0194882937, 0.0041275844, -0.0126251457, 0.00259359134, 0.00423146691, 0.0389765874, -0.0120018525, -0.000272474252, -0.0192528274, 0.0027926988, -0.0227848217, -0.0176322665, -0.00510061439, -0.0004005956, -0.0319403037, -0.0140794963, -0.00974414684, 0.0114824418, -0.00768035464, 0.00982032716, -0.0122927222, -0.00397176156, 0.000557933759, -0.0108383726, 0.00390943186, -0.00151494821, 0.00995191094, -0.00538109615, 0.00300392578, -0.00853911415, -0.00292601436, 0.012881388, 0.016565742, 0.00107171759, -0.00817206316, 0.0119118216, -0.0233388599, 8.52158337e-05, -0.0119533744, -0.0148759261, -0.00522527285, -0.0146958632, -0.0114547396, 0.0137817, 0.0013911553, -0.00530837849, -0.0175353084, -0.003763997, 0.0231587961, -0.00353372493, -0.0192943811, 0.00559578603, 0.008421381, 0.0106098317, -0.00185949076, 0.00212958432, 0.00624331785, 0.0020637922, 0.00393713405, 0.00402023969, -0.00885768607, 0.0221892297, -0.0122511694, -0.011510144, 0.0094532771, 0.00739641, -0.00415182393, -0.0294194277, 0.00478550512, 0.00392674562, 0.035375338, 0.0168981645, -0.0207348801, 0.0125905182, -0.0388380773, 0.00778423669, 0.0237266868, 0.00878150575, 0.0115032177, -0.00493786531, -0.00916240644, 0.00934939459, -0.0105544282, -0.00912085362, 0.0467608236, 0.0243361276, -0.00456042681, 0.0114893671, 0.010616757, -0.00724404957, -0.00303509063, 0.0186295342, -0.00471971277, -0.0318848975, -0.0188234486, -0.00826209504, 0.00486861076, -0.00513524143, -0.00851141196, -0.0100834956, 0.0070986147, -0.00328094489, -0.0112885283, 0.00460890541, -0.0119880019, -0.00927321427, 0.00906545, -0.00287234178, -0.00718864566, 0.0227709711, 0.024987122, -0.0345165804, 0.00995191094, -0.0121334363, 0.00592474593, -0.012881388, 0.0267877467, 0.00835212599, 0.0329098701, 0.00369820511, -0.00366704026, 0.00625716895, 0.00136518478, -0.0112677524, -0.0141487503, 0.0105682788, -0.0205686688, -0.0233665612, 0.00229060161, -0.0193636343, -0.0151390936, -0.00119810761, 0.00824131817, 0.0245715939, 0.0152083486, 0.00860836823, 0.00750721758, -0.00265938346, 0.0018162065, -0.00671425043, -0.00267323432, 0.00309222564, -0.000842744, -0.0160948094, 0.00940479804, 0.00234946818, 0.0109007014, 0.00534646865, -0.000283944566, -0.00807510689, 0.00275114598, -0.0032653627, 0.00793659687, -0.0196683556, 0.00950868055, -0.00788119342, 8.3754996e-05, -0.00184737111, -0.0213304702, 0.00205859821, 0.00663460745, -0.0121819153, 0.0260536466, -0.0224385466, 0.0128329098, -0.0142526329, -0.0070501361, -0.00276153418, -0.015194498, 0.0163856801, 0.00834520068, 0.00817206316, -0.0225078017, 0.00178504188, -0.00654111337, 0.014986733, -0.0102912597, 0.020914942, -5.33951606e-06, 0.00230791536, -0.000257974025, -0.00932861865, -0.00410334533, 0.0080820322, 0.0140864216, -0.0168150589, -0.0208179858, 0.0132068852, 0.00946020242, -0.00871917605, 0.0208318364, -0.0119533744, -0.0127636548, -0.00571005605, 0.0143357385, -0.00923858676, -0.0019425964, 0.0123758288, 0.0123065738, -0.0187403429, -0.00812358502, -0.0215520859, -0.00222654105, 0.0167458039, -0.0287268814, 0.00284983404, 0.00543303695, 0.0115586221, -0.0203193519, -0.00297276117, -0.0345996842, -0.00644761976, -0.0114962924, -0.00279096747, 0.00507983798, -0.00894771703, 0.0065307254, -0.00912085362, -0.013089153, 0.00444961945, 0.00846293382, -0.0174522027, -0.00234427419, 0.00769420573, 0.0168289095, 0.0198345669, -0.000917625788, -0.0104505457, -0.00966796651, 0.00717479456, -0.011350858, 0.00470586214, 0.000583471498, 0.00588319311, -0.0230341386, 0.0195159949, 0.00263168151, 0.0373421758, 0.00288619287, -0.0143080363, 0.0143080363, -0.00133228872, 0.00116867432, 0.00501404563, -0.000766131, 0.0273417849, 0.0128536867, 0.0155130699, 0.0195021443, -0.0050729122, -0.01384403, 0.0147374161, 0.013476979, -0.0104782479, 0.00718864566, -0.0225493554, -0.0332976952, -0.00664845854, -0.00919703394, 0.00953638274, 0.00326709403, 0.0255965646, -0.018214006, -0.0201808419, -0.00737563334, 0.021372024, -0.00131410931, 0.00246373867, -0.0136016374, -0.0064095296, 0.0112331249, -0.00398561219, -0.00138682686, 0.026884703, 0.0277296118, 0.00619137706, 0.00294679077, 0.00670386245, -0.0122026913, -0.01407257, 0.00745873945, 0.00476819137, 0.00781193888, 0.0090793008, 0.0122996485, -0.00729945349, -0.00394752203, 0.00951560587]
08 Nov, 2022
std::string::append vs std::string::push_back() vs Operator += in C++ 08 Nov, 2022 To append characters, you can use operator +=, append(), and push_back(). All of them helps to append character but with a little difference in implementation and application. Operator += : appends single-argument values. Time complexity : O(n) append() : lets you specify the appended value by using multiple arguments. Time complexity: O(n) push_back() : lets you to append single character at a time. Time complexity: O(1) Here are few standards we can have for comparison among these three: 1) Full String: += : We can append full string using +=. append() : We can also append full string using append(). push_back : doesn’t allow appending of full string. Implementation: CPP // CPP code for comparison on the // basis of appending Full String #include <iostream> #include <string> using namespace std; // Function to demonstrate comparison among // +=, append(), push_back() void appendDemo(string str1, string str2) { string str = str1; // Appending using += str1 += str2; cout << "Using += : "; cout << str1 << endl; // Appending using append() str.append(str2); cout << "Using append() : "; cout << str << endl; } // Driver code int main() { string str1("Hello World! "); string str2("GeeksforGeeks"); cout << "Original String : " << str1 << endl; appendDemo(str1, str2); return 0; } Output Original String : Hello World! Using += : Hello World! GeeksforGeeks Using append() : Hello World! GeeksforGeeks 2) Appending part of String: += : Doesn’t allow appending part of string. append() : Allows appending part of string. push_back : We can’t append part of string using push_back. Implementation: CPP // CPP code for comparison on the basis of // Appending part of string #include <iostream> #include <string> using namespace std; // Function to demonstrate comparison among // +=, append(), push_back() void appendDemo(string str1, string str2) { // Appends 5 characters from 0th index of // str2 to str1 str1.append(str2, 0, 5); cout << "Using append() : "; cout << str1; } // Driver code int main() { string str1("GeeksforGeeks "); string str2("Hello World! "); cout << "Original String : " << str1 << endl; appendDemo(str1, str2); return 0; } Output Original String : GeeksforGeeks Using append() : GeeksforGeeks Hello 3) Appending C-string (char*): += : Allows appending C-string append() : It also allows appending C-string push_back : We cannot append C-string using push_back(). Implementation: CPP // CPP code for comparison on the basis of // Appending C-string #include <iostream> #include <string> using namespace std; // Function to demonstrate comparison among // +=, append(), push_back() void appendDemo(string str) { string str1 = str; // Appending using += str += "GeeksforGeeks"; cout << "Using += : "; cout << str << endl; // Appending using append() str1.append("GeeksforGeeks"); cout << "Using append() : "; cout << str1 << endl; } // Driver code int main() { string str("World of "); cout << "Original String : " << str << endl; appendDemo(str); return 0; } Output Original String : World of Using += : World of GeeksforGeeks Using append() : World of GeeksforGeeks 4) Appending character array: += : Allows appending of character array append() : Allows appending of character array. push_back : Does not allow char array appending. Implementation: CPP // CPP code for comparison on the basis of // Appending character array #include <iostream> #include <string> using namespace std; // Function to demonstrate comparison among // +=, append(), push_back() void appendDemo(string str) { char ch[6] = { 'G', 'e', 'e', 'k', 's', '\0' }; string str1 = str; // Appending using += str += ch; cout << "Using += : " << str << endl; // Appending using append() str1.append(ch); cout << "Using append() : "; cout << str1 << endl; } // Driver code int main() { string str("World of "); cout << "Original String : " << str << endl; appendDemo(str); return 0; } Output Original String : World of Using += : World of Geeks Using append() : World of Geeks 5) Appending single character: += : We can append single character using += operator. append() : Allows appending single character. push_back : Allows appending single character. CPP // CPP code for comparison on the basis of // Appending single character #include <iostream> #include <string> using namespace std; // Function to demonstrate comparison among // +=, append(), push_back() void appendDemo(string str) { string str1 = str; string str2 = str; // Appending using += str += 'C'; cout << "Using += : " << str << endl; // Appending using append() str2.append("C"); cout << "Using append() : "; cout << str2 << endl; // Appending using push_back() str1.push_back('C'); cout << "Using push_back : "; cout << str1; } // Driver code int main() { string str("AB"); cout << "Original String : " << str << endl; appendDemo(str); return 0; } Output Original String : AB Using += : ABC Using append() : ABC Using push_back : ABC 6) Iterator range: += : Doesn’t provide iterator range. append() : Provides iterator range. push_back : Doesn’t provide iterator range. Implementation: CPP // CPP code for comparison on the basis of // Appending using iterator range #include <iostream> #include <string> using namespace std; // Function to demonstrate comparison among // +=, append(), push_back() void appendDemo(string str1, string str2) { // Appends all characters from // str2.begin()+5, str2.end() to str1 str1.append(str2.begin() + 5, str2.end()); cout << "Using append : "; cout << str1; } // Driver code int main() { string str1("Hello World! "); string str2("GeeksforGeeks"); cout << "Original String : " << str1 << endl; appendDemo(str1, str2); return 0; } Output Original String : Hello World! Using append : Hello World! forGeeks 7) Return Value: += : Return *this. append() : Returns *this push_back : Doesn’t return anything. Implementation: CPP // CPP code for comparison on the basis of // Return value #include <iostream> #include <string> using namespace std; // Function to demonstrate comparison among // +=, append(), push_back() string appendDemo(string str1, string str2) { // Appends str2 in str1 str1.append(str2); // Similarly with str1 += str2 cout << "Using append : "; // Returns *this return str1; } // Driver code int main() { string str1("Hello World! "); string str2("GeeksforGeeks"); string str; cout << "Original String : " << str1 << endl; str = appendDemo(str1, str2); cout << str; return 0; } Output Original String : Hello World! Using append : Hello World! GeeksforGeeks If you like GeeksforGeeks(We know you do!) and would like to contribute, you can also write an article using write.geeksforgeeks.org or mail your article to [email protected]. Learn C++ Online – Master everything from basics to advanced concepts. Apply your knowledge with practical exercises and boost your skills. Take the Three 90 Challenge: finish 90% in 90 days for a 90% refund. Start now and level up your C++ programming!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum/Algorithm for Dynamic Time out timer Calculation/Difference between Round trip time (RTT) and Time to live (TTL)/Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms/Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm/Round Robin Scheduling Algorithm with Different Arrival Time/Selfish Round Robin CPU Scheduling/Find the order of execution of given N processes in Round Robin Scheduling/Calculate server loads using Round Robin Scheduling/set::lower_bound() Function in C++ STL/Implementation of lower_bound() and upper_bound() in List of Pairs in C++/Difference between std::set::lower_bound and std::lower_bound in C++/Difference between std::set vs std::vector in C++ STL/std::minmax() and std::minmax_element() in C++ STL/std::rotate vs std::rotate_copy in C++ STL/std::bitset::to_ullong and std::bitset::to_ulong in C++ STL/std::upper_bound and std::lower_bound for Vector in C++ STL/std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++/std::string::append vs std::string::push_back() vs Operator += in C++
https://www.geeksforgeeks.org/stdstringappend-vs-stdstringpush_back-vs-operator-c?ref=asr10
PHP
std::string::append vs std::string::push_back() vs Operator += in C++
What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, jQWidgets jqxTreeMap width Property, Round Robin Scheduling Algorithm with Different Arrival Time, Difference between Flow and TypeScript, jQWidgets jqxTree destroy() Method, jQWidgets jqxTree collapseAll() Method, Find the order of execution of given N processes in Round Robin Scheduling, jQWidgets jqxScrollView buttonsOffset Property, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, jQWidgets jqxListBox enableHover Property, Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm, std::rotate vs std::rotate_copy in C++ STL, Selfish Round Robin CPU Scheduling, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxSlider buttonsPosition Property, std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++, std::upper_bound and std::lower_bound for Vector in C++ STL, Difference between Round trip time (RTT) and Time to live (TTL), jQWidgets jqxSlider rtl Property, Difference between std::set::lower_bound and std::lower_bound in C++, jQWidgets jqxTooltip opacity Property, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, jQWidgets jqxToolBar height Property, PHP, std::minmax() and std::minmax_element() in C++ STL, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, Node.js date-and-time Date.transform() Method, TypeScript Optional Parameters, jQWidgets jqxToolBar theme Property, Difference between std::set vs std::vector in C++ STL, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, Steps to Diagnose and Resolve a Slow Network, How to use Optional Chaining with Arrays and Functions in TypeScript ?, Calculate server loads using Round Robin Scheduling, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, jQWidgets jqxScrollView showButtons Property, Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms, jQWidgets jqxScrollView disabled Property, jQWidgets jqxSplitter destroy() Method, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, set::lower_bound() Function in C++ STL, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, jQWidgets jqxTree collapseItem() Method, std::string::append vs std::string::push_back() vs Operator += in C++, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), jQWidgets jqxSortable opacity Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, jQWidgets jqxSlider height Property, jQWidgets jqxSwitchButton onLabel Property, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, jQWidgets jqxToolBar tools Property, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTree width Property, Implementation of lower_bound() and upper_bound() in List of Pairs in C++, jQWidgets jqxTree clear() Method, TLS Handshake?, Algorithm for Dynamic Time out timer Calculation, Adhoc TCP, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, jQWidgets jqxTabs position Property, Differences between Wireless Adhoc Network and Wireless Sensor Network, jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, std::bitset::to_ullong and std::bitset::to_ulong in C++ STL, Impact of Three-way Handshake and Slow Start Algorithm, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, How to Sort an Array Having Optional Properties in TypeScript ?
GeeksforGeeks
[-0.0117549347, 0.0262705535, -0.0119825434, 0.0422325917, 0.0260502845, 0.00350408652, -0.0157417729, 0.0137887364, -0.0265936106, 0.013421624, 0.0133555438, 0.00892082788, 0.0253160615, -0.034156125, -0.0409697257, 0.00359219336, 0.00730186282, 0.0154187148, -0.0276508946, 0.000552503916, 0.0239357185, -0.0427318662, -0.071131669, -0.0141925598, -0.011358453, 0.0461093, -0.00545895891, 0.0136859445, -0.00643547764, 0.0240091402, 0.0333044231, 0.0187080409, 0.0191632602, -0.025683172, 0.00730186282, -0.00196955726, 0.0442296825, -0.0247580502, -0.0236126594, -0.0301913116, 0.0167696867, 0.026211815, 0.0216302536, -0.00385834975, -0.00251288339, 0.0513663441, -0.000573612866, -0.0221588947, 0.0208372921, 0.00318286312, 0.0240678787, 0.0090823574, 0.0327464119, 0.00520932302, 0.0295745619, 0.0204848628, 0.0145376455, -0.0261383913, -0.0144201694, 0.00886943191, 0.00191449036, -0.039119482, -0.00577467587, -0.0209253989, -0.00321590342, -0.0307786912, -0.0410578325, 0.0146257523, 0.016387891, 0.00463295681, -0.0338918045, 0.0249783173, 0.00958897173, -0.0133628855, -0.0303675253, 0.000309292082, 0.0338330641, 0.0446408503, -0.00448978273, 0.0796486735, 0.0216889922, 0.00946415402, -0.0272103604, -0.0394719094, -0.00657865172, -0.00110317231, 0.0189136229, -0.0290899742, 0.0402061343, 0.0215127785, -0.0079516517, -0.00389873213, 0.0501034781, -0.0313073322, -0.0208960287, 0.0666675866, 0.00509551819, 0.0253747981, -0.0199562218, 0.0334806368, 0.0103378808, 0.0410578325, 0.00289468, -0.0188842546, -0.00238990085, 0.0238182433, 0.0146698058, 0.0172542762, 0.00364909577, -0.00483119721, 0.000266844727, -0.0234805, -0.0188255161, 0.0321590342, -0.0265936106, -0.00232932717, 0.0302206799, -0.0593253411, 0.0457275026, 0.0267991945, 0.0207345, 0.0386789478, 0.00194385939, -0.0107343625, -0.0224966388, 0.0329519957, -0.0101543246, -0.0394425392, 0.0177535489, -0.00853903126, 0.000456366426, 0.0197800081, -0.0120339394, 0.0156096127, 0.0167550035, 0.0184290353, 0.0251985844, 0.016593473, 0.000245047413, 0.01389887, -0.0170780625, -0.0307199527, 0.032247141, 0.0367993303, -0.0425850227, -0.027063515, 0.0237595048, 0.0533928052, -0.00396114122, -0.0161088854, -0.0220414195, -0.0587379597, 0.0309549049, 0.0341854915, 0.0195450559, -0.00847295113, -0.00801773183, 0.00904564559, 0.00320121879, -0.0114245331, -0.00879600924, -0.010675624, -0.0226728525, 0.00708159525, -0.0279299, 0.0323646143, 0.0569758229, -0.0188255161, -0.0330107324, 0.039853707, -0.00955226086, 0.010249774, 0.0166375265, 0.0186786707, -0.0302794185, -0.010044191, 0.00460358756, -0.00550668361, -0.00772404158, 0.0252573229, -0.00621153926, 0.00369682023, 0.0121734422, -0.0311604869, 0.055272419, -0.00940541551, 0.0099414, -6.99807715e-05, 0.0366524868, -0.0171514843, 0.0253160615, -0.000414148497, 0.0173276979, 0.008135207, 0.0207638685, 0.0345085524, -0.0137373405, 0.00481651258, -0.00730186282, 0.0640243739, -0.0280180071, -0.0496335775, -0.0256978571, -0.00225590472, 0.0625559241, -0.0237007663, 0.00356282433, -0.0622622371, 0.0209547672, 0.00197873497, -0.010198378, 0.0491343029, 0.0309842732, 0.0184143502, 0.00667777192, 0.00850231946, -0.0234805, 0.0148166502, -0.035712678, -0.0354483575, -0.0129003245, 0.00259915483, 0.00757719669, -0.0491930395, -0.0521299392, -0.0295011401, -0.0195450559, 0.00310576963, 0.00435762247, -0.0156536661, 0.0371223912, -0.00996342674, -0.0293983482, 0.0115493517, -0.00653092703, -0.0175773352, -0.00816457625, -0.0201471206, -0.0148827303, 0.0564178117, 0.024200039, 0.0106022013, -0.0167403184, 0.00816457625, 0.0180031843, 0.0482238643, 0.02462589, -0.0100368485, 0.0161235705, -0.0100515336, -0.0103085116, -0.00814255, -0.00123166165, 0.00498171337, -0.0158298798, 0.012312945, 0.0220707878, -0.0164172594, -0.00722844, 0.00392075861, 0.0167696867, 0.015756458, -0.00741933845, 0.0172542762, -0.0124597894, -0.0120486245, 0.0237595048, 0.0119238058, -0.0344791822, -0.00148038019, 0.0342148617, -0.0197506398, 0.00308741396, -0.00131334411, -0.0121734422, 0.0296333, -0.00740098301, -0.00765061937, 0.0198534299, -0.0179885011, 0.01072702, 0.0488406122, -0.0121220462, 0.0378566161, 0.0340973847, -0.0573576167, -0.089869082, 0.00368580688, 0.00325077889, -0.0101543246, 0.010418646, 0.0100588752, 0.0300004128, 0.0232749172, 0.0117035387, 0.0219386276, 0.00395747, -0.0202499125, -0.0309255365, -0.00823065639, 0.000288642, -0.0390901119, 0.0116007468, -0.0400299206, -0.0606175736, -0.0267257709, 0.0138915274, -0.00678056339, 0.0132307252, -0.0222763717, 0.0411459394, -0.0466673076, -0.0161088854, -0.016696265, -0.0450520143, 0.0209253989, 0.0575338304, 0.0238329265, -0.0416745842, -0.0222176332, 0.00741933845, -0.00738262711, -0.0117255654, 0.0300738346, 0.0290899742, 0.0101690097, -0.0187374093, -0.0117989881, 0.00120963482, -0.0436716713, -0.0560947508, 0.00806178525, -0.0295451935, 0.0166815799, 0.0144054843, -0.010572833, -0.0320709273, 0.00655295374, 0.0327464119, 0.0106682824, -0.0251398459, -0.00891348533, 0.00247800769, -0.0287962854, 0.0356539413, -0.0131646451, -0.0108591802, 0.00612343242, 0.0122174956, 0.0128342444, 0.00145101117, 0.0148093086, 0.0420857482, -0.027166307, 0.00618584128, -0.0116668269, 0.0050294376, 0.0101763513, -0.034156125, -0.0240238253, 0.0379447229, 0.0220267344, -0.0353602506, -0.00347104622, -0.00578936, -0.0297214072, -0.0143320626, -0.0219092593, 0.0291340277, -0.014376116, -9.18354272e-05, -0.0235392377, 0.0171221159, -0.0301913116, -0.0249783173, 0.0135758109, 0.0364762731, 0.0290018674, 0.0270194616, 0.00762125, -0.0172836445, 0.0130912224, 0.0248167887, -0.0173570663, -0.0116668269, 0.0124891587, -0.0375041887, 0.0348022394, 0.0104994103, 0.0161529388, -0.0209694523, 0.0252132695, -0.0191485751, 0.0188402012, -0.037093021, -0.0205729697, -0.0401767641, -0.0378566161, -0.0044237026, -0.0115640359, 0.0399124436, 0.0201324355, 0.0114906132, 0.00753314327, -0.0128048752, 0.0222029481, -0.00127755059, -0.0158445649, 0.0104039609, 0.0335687436, 0.00637673959, 0.042056378, -0.023994457, -0.0120706512, 0.0162557308, 0.0106389131, -0.0300591514, 0.0272250436, 0.027371889, -0.0298976209, -0.0119091216, -0.045463182, 0.0036289047, 0.000653459807, 0.0102791432, -0.0146110673, 0.0239357185, 0.0115640359, 0.0213365648, -0.0209547672, -0.0060096276, 0.0270047765, 0.0404117182, 0.0266082957, 0.0080544427, -0.0526292138, -0.00809115358, -0.0199562218, -0.0193101037, -0.0418214276, -0.00451548072, 0.0174304899, 0.0234217606, -0.013216041, -0.00133904198, 0.0249048956, -0.0291927662, -0.00785620231, -0.0175626501, 0.0189723615, -0.0452869684, 0.00346370414, -0.00925122853, 0.0153746614, 0.0258300174, 0.00795899332, 0.00977987051, -0.0288697071, 0.00963302515, -0.0372398682, 0.0306318458, 0.0261824448, -0.0043025557, 0.0276655797, 0.0423207, 0.00840687, 0.0335393734, -0.00437597791, -0.024200039, 0.00338293938, -0.0343323387, -0.0239063501, 0.0175332818, 0.0222763717, -0.0106609398, -0.00612343242, -0.0140383728, -0.00994874164, -0.0212337729, -0.0331282094, 0.00335907703, 0.00550668361, -0.0355658345, -0.0220707878, 0.017445175, -0.0334512666, 0.0154921366, -9.02866668e-05, 0.0386202075, -0.0117622763, -0.0237007663, 0.0209547672, 0.0218798909, -0.00148129789, 0.0193835273, 0.0207491852, -0.0151397092, -0.0109399455, -0.00837750174, 0.0140163461, 0.0172102228, 0.0150809716, -0.0110867899, 0.0531284846, 0.0318653435, -0.0546263, -0.0528935343, -0.00296259578, 0.00321773882, -0.0247727353, -0.0073092049, 0.00759922341, -0.0104259877, 0.0272544138, -0.00206317077, -0.00328198355, -0.0362413228, 0.0410578325, -0.0360651091, -0.0129957739, 0.016064832, -0.0149194421, -0.0187080409, 0.0167990569, -0.00247250102, 0.0081719188, 0.0161529388, -0.0090676723, 0.0304262638, -0.0151690785, -0.0386202075, 0.00871524494, -0.00284695555, 0.0063987663, 0.00949352235, -0.0234658141, 0.0158445649, 0.0115787201, -0.0281648524, 0.0250370558, -0.0192807354, 0.00604266766, 0.00688702567, -0.008135207, -0.0133555438, 0.0106022013, 0.0188255161, -0.00786354393, 0.0138548166, 0.0234951843, -0.0201030672, 0.00500741089, 0.0281354822, -0.00433559576, -0.012841586, 0.0177241787, 0.00960365683, -0.0345966592, -0.00492664659, -0.00837015919, 0.00186584797, 0.0277683698, 0.0254188515, 0.0194569491, 0.00151066692, -0.0418214276, 0.019559741, -0.00345636182, -0.0338918045, 0.0135391, 0.00756985461, -0.026109023, 0.0296773538, -0.0234511308, -0.00468068104, 0.0133922547, 0.0223351084, -0.0167256333, -0.00746706314, -0.00329116127, 0.0101322979, -0.00118760811, -0.0194128957, -0.00853168871, 0.020191174, 0.017856339, -0.0427906029, -0.0213071946, -0.0231427569, 0.00815723464, 0.00464764098, 0.0218064673, -0.0236126594, -0.0125332121, -0.0174011197, 0.0135611268, -0.00738262711, -0.0173864365, -0.0229665432, 0.00957428757, -0.0111748967, 0.0220854729, 0.0395600162, -0.0105361212, -0.0295158252, -0.00847295113, 0.0200443286, 0.002430283, 0.00577467587, -0.000695218798, -0.0244056229, 0.00946415402, 0.0148753887, -0.00116925256, -0.00711096404, -0.00291854236, -0.0183556117, 0.0154187148, -0.0327170454, 0.0201471206, 0.000362523337, -0.0345085524, 0.00503678, -0.000375142816, 0.0128856404, 0.019662533, -0.00456320541, -0.000755333458, -0.0137079712, -0.0376804024, -0.0162851, -0.0127755059, 0.0222323183, -0.00277720415, 0.0222323183, 0.0123716826, -0.00218615355, 0.0399418138, -0.0403236076, 0.0201618038, -0.0243909378, -0.00189062813, -0.014001661, 0.0993258879, -0.00573796453, 0.0100809019, -0.0177829172, 0.014633094, 0.00969910529, -0.0294130333, -0.0218358357, -0.00433926657, -0.0112189502, 0.0190017298, -0.0238329265, -0.0540389232, 0.029486455, -0.00930996705, 0.0132380677, 0.0564178117, -0.010352565, -0.0114025064, 0.00954491831, 0.00708526652, -0.0184290353, -0.0268432479, -0.0274599958, -0.00263953698, 0.0160942, 0.0332750529, 0.00665574521, -0.046961, 0.0166815799, 0.0204701796, -0.0306612141, -0.0135023883, -0.0211016126, 0.0371223912, 0.0144935912, -0.0103599075, 0.0117696188, -0.00834813248, -0.00769467279, -0.0174745433, -0.0316597596, -0.00716236, -0.0103452234, -0.0146991741, -0.0102791432, 0.00950086489, 0.0154921366, 0.00737161376, 0.016490683, 0.0176213887, 0.0261824448, -0.0147652542, 0.00907501485, 0.0142072439, -0.016696265, 0.0208519753, 0.0142586399, -0.0234217606, -0.026417397, -0.0202939659, -0.0192807354, 0.0257272273, -0.0148680462, 0.0194128957, -0.0340680182, 0.0100221643, 0.00684297225, 0.0201618038, 0.00151433807, 0.0141117945, 0.00754048582, -0.0101102712, 0.0159620401, -0.0148680462, 0.000269598066, -0.0238035582, 0.0224966388, -0.0306905843, -0.0108004427, -0.0137153137, 0.00302867615, -0.00375739392, -0.0263292901, -0.00437964918, -0.0310430117, -0.00634369953, 0.000232542661, -0.00877398252, 0.0396481231, -0.0116374586, -0.0313660689, -0.0081719188, 0.00419242168, -0.0138841849, -0.0159326717, 0.00523869181, 0.00517995376, 0.00773872621, -0.00232565613, 0.00248902105, 0.0122909183, 0.00234951847, 0.0520418324, -0.000227839046, -0.0293249264, 0.0138841849, -0.00823065639, 0.0117696188, 0.0294717718, -0.00443471596, -0.0296333, -0.0213806182, 0.0316303931, 0.0268726163, -0.00990468822, 0.0354483575, 0.0062776194, 0.0052680606, -0.0144715644, 0.00281207985, -0.0284291729, -0.00808381196, -0.0291487128, -0.00261016819, 0.00393911451, 0.0011307057, -0.00914843753, 0.0308374297, 0.0426731296, -0.0220414195, 0.0264614504, 0.00546263, 0.00151342025, -0.00799570512, 0.00251655444, -0.00115732139, 0.0275481027, 0.00220083795, -0.00740832509, -0.0034967442, 0.0380915664, -0.00221368694, 0.0138695007, 0.00987532, 0.0271809902, -0.0327464119, -0.00225039804, 0.018076608, 0.0381796733, 0.0326289386, 0.016490683, -0.0125552388, -0.0186346173, -0.0238769799, -0.0305731073, -0.0312485956, 0.0207345, -0.0249048956, 0.00996342674, -0.027371889, 0.00466232561, -0.0161676239, -0.0010398454, 0.0134289665, -0.00917780586, 0.0153306071, -0.00923654437, -0.0321884, -0.00833344832, 0.0156536661, -0.0113144, 0.0167696867, 0.00291670673, 0.00849497784, -0.0171661694, 0.037093021, 0.00796633586, 0.00520932302, 0.0167109501, -0.0248608422, -0.00691639492, 0.0287375469, 0.0187374093, 0.00328381918, 0.00994874164, 0.0146110673, 0.00831142161, -0.0190751534, -0.011681512, 0.00793696661, -6.34415846e-05, 0.0130618541, 0.00508450484, 0.016490683, 0.00812052283, 0.0406466685, -0.0137299979, 0.00649421569, -0.0356833115, 0.00621153926, 0.0110941324, -0.00923654437, -0.02070513, 0.00827471, 0.0235392377, -0.0214246716, 0.00676955, 0.00398683921, -0.0111235008, 0.0245818365, -0.000431815773, 0.00382530969, -0.0167990569, -0.038473364, -0.0206757616, -0.0209253989, 0.0579743646, 0.00628863275, -0.0279739536, 0.00845826603, 0.01913389, 0.0335393734, 0.0153452922, -0.0259768628, 0.00563517306, -0.0261237081, 0.0133408587, -0.00439800462, 0.00137850654, 0.0223791618, 0.000769559061, 0.00870056, 0.0170927458, -0.0113951638, 0.017650757, -0.00487157935, 0.0209107138, 0.0113657955, -0.00831876323, -0.0169899557, -0.01432472, 0.00697513251, -0.0165347364, -0.0317478664, -0.0186493024, -0.0254482217, 0.0143173775, 0.014633094, -0.0158445649, -0.0347728729, 0.0238769799, -0.0217624139, -0.0190457832, -0.0188402012, -0.0183849819, -0.0116961962, 0.0163732059, 0.00840687, -0.0179003924, 0.00777543755, -0.00948618073, -0.0171221159, 0.0149855223, 0.0253747981, 0.00423280429, -0.000664932071, 0.008135207, 0.00481651258, -0.0280620605, -0.018928308, 0.00180986337, 0.0370049141, -0.0161823072, -0.0238476116, 0.0202939659, 0.000310898176, -0.00652358448, 0.0382384136, 0.00450813863, 0.00939073134, -0.0185465105, -0.0121147046, -0.0158445649, -0.00496335747, -0.00628496148, -0.0114171905, 0.0077460683, -0.00370049151, -0.00781949051, 0.00658232253, 0.00383265177, -0.044934541, -0.0342736, -0.013267437, -0.0555661097, -0.00734591624, 0.00308007188, 0.00554706622, 0.00897222292, -0.00836281665, -0.00234401179, -0.0245671514, -0.0122028114, 0.01553619, 0.0264467672, 0.0247580502, 0.00401253672, -0.00721742678, 0.00989734661, -0.0511901304, -0.000306309288, -0.0228637513, -0.0244790446, -0.011527325, -0.00409330148, 0.00739731174, 0.015638981, -0.00990468822, 0.00786354393, 0.0120486245, -0.00552503951, -0.00566087104, -0.00527540315, -0.013421624, -0.0203820728, 0.020073697, 0.0169605855, -0.0130398273, 0.00102883205, 0.0132013569, -0.00444940059, 0.0313660689, -0.0371811278, -0.0211016126, 0.00434660912, 0.0205582865, 0.0214834083, 0.0252866913, -0.0161969922, -0.00950086489, 0.0369755439, -0.0537452325, 0.00368213584, 0.000672274327, -0.0136859445, -0.00168320967, -0.00806912687, -0.000170477753, 0.0133041479, -0.0270928834, -0.00680259, 0.0344791822, 0.0291046593, -0.0397656, -0.00422179094, -0.0291193444, -0.0159914102, -0.0673724413, -0.0271956753, 0.0154040297, 0.00784151722, 0.0228637513, 0.0122028114, 0.0158151966, -0.0281354822, 0.0222616866, -0.0152278161, -0.0387964211, 0.0273572039, 0.0163291525, 0.00966973696, 0.0260796547, -0.0144054843, -0.0310136434, 0.0380034596, -0.00528274523, -0.00992671493, 0.00332970801, 0.0253307447, 0.0102938274, 0.0126947416, 0.0166081581, 0.00541857677, -0.00358485105, -0.00734224496, 0.00230913609, -0.00845092442, 0.00411532819, 0.00165200513, 0.0195891093, -0.00577467587, -0.0254041683, -0.00481284177, -0.030338157, 0.0165053662, 0.00718071545, 0.00360871339, -0.0181353446, -0.00343433511, 0.00571960863, 0.0267257709, -0.035947632, -0.0105067529, 0.00481284177, 0.00587379606, -0.0248902105, 0.000297590363, 0.0296333, -0.00782683305, 0.0235245526, -0.00989000406, -0.018928308, 0.00378125627, 0.00410798611, 0.0197065864, 0.0307493228, 0.000492389314, 0.00180619222, -0.0125478962, -0.0162116773, -0.0130178006, 0.0260356013, -0.00229078042, 0.00968442112, 0.0214980934, 0.0213953014, 0.0373867117, -0.013693287, -0.00975050125, -0.0246552583, -0.00913375244, -0.0212484561, -0.0159620401, -0.0296186171, -0.00608672109, -0.0218211524, 0.000544702809, -0.00522767846, 0.0328932591, -0.0107931, 0.00801038928, -0.0206170231, 0.0123716826, -0.0073606004, -0.0197212696, -0.0222470015, -0.00632167282, 0.0244056229, 0.00270561734, 0.00242477632, 0.010146983, 0.0148093086, -0.00669245608, 0.0691345781, 0.00191265484, 0.00716236, -0.010572833, 0.0204701796, 0.00967707857, 0.00895019621, 0.0262705535, 0.0202792808, -0.0129884314, -0.019442264, -0.0231868103, 0.0253013764, 0.0408522524, 0.0122174956, 0.0106095439, 0.0100001376, -0.0130031155, -0.00116925256, -0.0102718007, -0.0371517614, 0.00462561427, 0.00378125627, -0.0203527026, 0.00406393269, -0.0193247888, -0.0165494196, 0.00970644783, -0.0175039116, -0.0081719188, 0.0154627683, -0.0053341412, 0.0154187148, 0.00244863867, -0.00715501793, 0.00186034129, -0.0112189502, 0.0170633774, -0.0143614309, 0.00527907396, -0.000218546513, 0.00253491, -0.0130251423, 0.00861245301, 0.00812052283, 0.00950820744, -0.00122523715, 0.00122523715, -0.0257565957, 0.00398316793, -0.00569758192, -0.0313954391, 0.0163291525, -0.000703019963, 0.00112061016, 0.00616748584, -0.0160060935, -0.0229224879, 0.0162410457, -0.0176360719, -0.00342148612, -0.00738629838, 0.0265495572, -0.00866384897, 0.015433399, 0.00277353311, -0.025580382, -0.00269827503, -0.00144183333, -0.000647953129, -0.00161988277, 0.000822331465, 0.0131940143, -0.00884006266, -0.00548098609, 0.00955960341, 0.00412267074, -0.000996709801, -0.0116521427, -0.0137373405, 0.0180472378, 0.0112483194, 0.0152131319, 0.00223387801, -0.0228637513, -0.00684297225, 0.0122688916, 0.0209841356, -0.00549934153, -0.00992671493, -0.00959631428, -0.0390313752, -0.000799845788, -0.000684664352, -0.00194385939, 0.0160354637, -0.00845826603, 0.0206463933, 0.00203563739, 0.00591784948, 0.000863631547, 0.0232308637, 0.00317552104, -0.000384550076, -0.0070926086, -0.0180325545, 0.00815723464, -0.0135904951, -0.0135097308, 0.0241266172, 0.0158298798, 0.0276362095, 0.0225994308, -0.00717337336, 0.0247874185, -7.91012208e-05, 0.000206615368, -0.0346260257, 0.00041667241, -0.0164172594, -0.0098606348, -0.00471739238, 0.0141411638, -0.0263146069, -0.0117475921, -0.019559741, 0.0102718007, -0.0111602126, 0.0153012387, 0.0133261746, -0.00350408652, 0.00275517744, 0.000935218472, -0.0205876548, 0.00885474775, -0.00132894632, -0.0022962871, 0.0180619229, 0.00187777914, -0.00450813863, -0.0126506882, 0.0288256537, 0.0152718695, 0.00048091705, -0.0019236682, -0.0122395223, -0.00622622389, 0.00425115973, 0.0251398459, 0.0168577936, -0.0130691957, -0.0313660689, 0.0212190878, 0.0131499609, 0.000329253788, -0.0392956957, -0.00397582585, -0.0109619722, -0.00625926396, -0.0157711431, -0.00515792705, 0.00766530354, 0.0174745433, 0.0114539023, -0.0174745433, -0.0139576076, -0.00243395427, -0.0242440924, -0.0288403388, -0.0214099865, -0.0123937093, 0.00470270775, 0.00844358187, -0.0209253989, 0.0179003924, -5.91394892e-05, 0.00399418129, -0.0120192552, -0.00671081198, 0.0049303174, -0.032129664, 0.00144366897, -0.00130049512, 0.0127828484, -0.0210428741, 0.0188548844, 0.00263953698, -0.0219239444, 0.01511034, 0.00553605286, 0.0018043567, 0.00250554108, 0.00515792705, 0.0040676035, 0.0171808526, 0.00597658753, 0.000655295386, -0.00806912687, -0.00848763529, 0.000333383825, -0.00495601539, 0.0131059075, -0.0309255365, -0.0131940143, 0.00588113815, -0.00970644783, -0.0218211524, 0.00237338059, 0.00675119413, -0.00196955726, 0.0121734422, 0.0258006491, 0.00794430915, -0.00288733793, -0.00814255, 0.00448611146, 0.0101322979, -0.0134509932, 0.0117989881, -0.0323058777, 0.0125258695, 0.017547965, 0.0138254473, -0.0168724786, 0.00647953106, -0.0205582865, 0.0166228432, -0.0099781109, -0.00739731174, 0.00882537849, -0.0407641456, -0.00216779788, 0.0169018488, -0.00667777192, 0.0172983296, -0.010352565, 0.0365937501, -0.0326289386, -0.0123716826, 0.00595088955, -0.00393911451, -0.00322141, -0.00415938161, 0.00959631428, 0.0146257523, -1.38527512e-05, 0.0223938469, -0.00558010628, -0.0193541571, 0.000785161334, -0.0442003161, -0.00530110067, -0.00763593474, -0.0247139968, 0.0134803616, 0.018928308, 0.0165347364, 0.025154531, 0.010146983, -0.0200590137, 0.0101543246, -0.0114318756, -0.017019324, 1.53728251e-05, 0.00122064818, 0.00778277963, -0.0173570663, -0.0218358357, -0.0191926286, -0.0127755059, 0.00683930097, 0.0212925114, -0.0101616671, 0.0114759291, 0.0129150087, -0.00978721213, 0.0294717718, 0.00439066254, -0.0195010025, -0.0238035582, 0.00796633586, 0.027371889, 0.0233923923, -0.00271295942, 0.0263439752, -0.000255372463, -0.0319240801, -0.000206156474, 0.00756985461, 0.0115493517, 0.00667410064, -0.00110041897, 0.019236682, -0.0206757616, 0.0105581479, 0.0299710445, -0.00595823163, -0.011835699, -0.00588480942, 0.041645214, 0.0123716826, 0.00989734661, -0.00163364946, -0.00356649561, -0.00403823471, -0.0170486923, 0.00172909873, -0.0140310302, 0.0254188515, 0.000317552098, -0.0166375265, -0.0355070978, -0.00468802359, -0.0194275808, -0.000861796, -0.0122174956, 0.0260356013, 0.00447876938, 0.00542959, -0.0151250251, 0.038473364, 0.00914109498, -0.0140530569, 0.00290569337, -0.0103158541, -0.0202205423, -0.038590841, 0.0129810888, 0.00886208937, -0.00149873574, -0.00754048582, -0.0208372921, -0.0219386276, 0.00814989209, 0.010095587, 0.0106682824, 0.00201544631, -0.0020778554, -0.0129664047, -0.0132821212, -0.0313367024, 0.000957245182, -0.00382898073, 0.00534515455, 0.0254482217, -0.0120192552, 0.0323646143, 0.0377097689, 0.00985329319, 0.0248167887, -0.0345085524, -0.0143540893, 0.00290018669, 0.00631800201, 0.00969176367, 0.00830407906, -0.00310576963, 0.00773138413, -0.023891665, -0.00415571081, 0.00780480634, -0.0176067036, 0.00319387647, -0.0240385104, -0.0137593672, -0.0201324355, -0.0104920678, -0.00479815714, 0.0192513671, 0.0357420482, 0.00322875218, 0.00575264916, -0.00775341084, -0.000622255262, -0.00587746734, -0.0203820728, -0.0116374586, -0.0170046389, 0.00112428132, -0.0175773352, -0.0225113239, -0.0045411787, 0.00379594066, -0.0224819537, -0.00673651, 0.00540756341, -0.00865650643, 0.0349197164, -0.0104406727, -0.00252389675, 0.0194569491, 0.0136492336, 0.0518949889, 0.015756458, -0.00540756341, 0.0162851, -0.0437010415, -0.00845092442, 0.0015510493, -0.00684297225, -0.00803241599, 0.0100368485, 0.0199562218, 0.00332970801, 0.0147065166, 0.000423096877, -0.00542224804, -0.0226581674, 0.0220707878, -0.00397215458, -0.0033774327, 0.00876664091, -0.0174158048, -0.0129810888, 0.00739364047, 0.0165787898, 0.020073697, 0.0108151268, -0.00345819746, -0.0053157853, 0.00132343965, -0.0245671514, -0.00499639753, 0.00136382203, 0.00867119152, -0.00812052283, 0.0119898859, -0.0101176137, 0.000842981506, -0.00776075292, 0.00569024, 0.0247433651, -0.0382971503, -0.01432472, -0.00810583867, 0.00819394551, 0.0181059763, -0.000534607214, 0.0103158541, -0.0012573594, -0.00128581061, -0.00980923884, -0.0211309809, -0.00399418129, 0.000887493836, -0.0118797524, 0.00809115358, 0.00996342674, 0.00721742678, -0.00186584797, 0.010418646, -0.0190017298, -0.0128856404, -0.00605000975, -0.0143394042, 0.00484588183, -0.00663004722, 0.00165659399, 0.0184437186, -0.0118870949, 0.0223497935, -0.0229959115, -0.0104700411, -0.00236970955, 0.0106535973, 0.00686132815, -0.0027515064, -0.006923737, 0.00718438672, -0.00754048582, -0.0131499609, -0.0170486923, 0.0011729236, 0.00118210143, 0.018928308, 0.00010284879, 0.00623356597, 0.0089648813, 0.011681512, 0.00483486848, -0.00307823624, 0.017224906, 0.00343800616, 0.026109023, -0.00801773183, 0.0275481027, -0.0111161591, 0.0171808526, 0.0118797524, 0.00355181098, 0.0340680182, 0.00836281665, -0.0174304899, -0.00925122853, -0.00700450176, 0.00883272104, 0.0062776194, -0.0101616671, 0.0143320626, -0.00506247813, -0.00969176367, -0.00113254134, 0.0036784648, 0.00607203646, 0.00257529248, -0.0147212008, -0.000241835194, 0.00202462403, 0.014478907, 0.0228637513, 0.0217917822, 0.00644282, 0.00175296096, -0.00634369953, -0.0154187148, 0.0101763513, -0.00437597791, 0.000673192088, 0.00575999124, -0.00664840266, 0.0401180275, -0.006079379, 0.0310136434, -0.00126561953, 0.00925122853, 0.0210722424, 0.0212778263, 0.00748909, 0.0137887364, -0.00396481249, 0.00385100744, -0.00968442112, -0.0083921859, 0.012584608, -0.00288733793, -8.63861e-05, 0.0126286615, 0.00795899332, -0.00674018078, -0.00111143233, 0.00766530354, 0.0356245711, -0.0244937297, 0.0192807354, -0.0134069398, 0.00322691677, 0.00459991628, 0.0161088854, 0.00492664659, -0.00465498352, 0.00335724163, 0.0216449387, -0.0322765075, 0.0011720059, 0.00620052591, 0.00665207393, 0.00468435232, -0.00676587876, -0.00853168871, 0.0360063687, 0.00052084052, -0.00890614279, 0.0135464417, 0.00353529095, -0.000167839127, 0.00481284177, -0.000863631547, 0.0131866718, -0.00407494605, 0.0010389277, 0.00188328582, 0.00679891882, 0.00658232253, 0.0221295264, 0.00904564559, 0.0187374093, 0.00339395273, -0.0118797524, 0.000535983883, -0.0191192068, -0.010418646, -0.00265055033, -0.00205215742, -0.0142366132, -0.0183996651, 0.0143100359, 0.0343910754, 0.0265201889, -0.00443104468, -0.000924663967, -0.00875195581, 0.0144201694, 0.000259961351, -0.0116741695, -0.0516600348, 0.0126066348, -0.012944378, 0.0106829666, -0.0082526831, 0.0127094258, -0.0110941324, -0.00292772, -6.55639524e-05, 0.0133995973, 0.0121954689, -0.0296626706, -0.00621153926, -0.0193982106, -0.040793512, -0.00156573369, -0.00535249664, -0.0192954205, 0.00581138674, 0.000904013927, 0.00400152337, 0.0140677411, -0.01432472, -0.0280767456, -0.00596190291, -0.0150002064, -0.00173368759, 0.00653092703, 0.00601696968, -0.0246112049, 0.0261971299, 0.00187410798, 0.0301032048, 0.00792962499, -0.0144421961, 0.00928059779, -0.0130104581, 0.0112850303, -0.0289431289, -0.00617115712, -0.00740465429, 0.00060757075, -0.0290899742, 0.0087446142, -0.0322177708, 0.0109546296, 0.0206170231, 0.0121734422, -0.00449712528, 0.0015932672, -0.0126800574, 0.00307823624, 0.00284512, -0.00679157674, 0.00329116127, -0.0139135541, -0.00694943499, 0.028003322, -0.00340129505, -0.00488626398, 0.00308007188, -0.0209253989, 0.00727616483, -0.00216963328, -0.000736518938, -0.010095587, 0.00799570512, 0.00937604718, 0.00541490549, 0.0179591309, -0.0215421468, -0.00390974525, 0.0030048138, 0.00912641082, -0.0169165321, 0.0132086985, 0.00927325524, -0.0244937297, -0.0175773352, 0.00117017026, -0.0175626501, -0.0101763513, 0.029075291, -0.00245047431, 0.00390607445, 0.00773138413, -0.0209988207, -0.00166118296, 0.0233042855, -0.0149267837, 0.0147946235, -0.0325114615, -0.0178857092, -0.00241192756, 0.00408228813, -0.0238182433, -0.0106682824, 0.0175039116, 0.0132307252, 0.0206170231, -0.00172909873, -0.0222470015, -0.0394719094, 0.0164759979, 0.00254408782, -0.0178416558, 0.0285613332, 0.0144862495, 0.0236273445, 0.00894285459, -0.032540828, -0.00638041086, 0.00939807389, -0.00171166088, 0.0138548166, -0.00174561876, -0.010624228, -0.00569758192, -0.00803241599, -0.00831876323, -0.0177388638, -0.00903830398, -0.0152865537, 0.0145670138, 0.0125332121, -0.0150809716, 0.00370783382, -0.00741933845, 0.0118577257, -0.011050079, -0.0103599075, 0.00356282433, -0.021777099, -0.0273865741, 0.0140603995, -0.00977252796, -0.000306997623, 0.0052680606, 0.0143100359, -0.00938338879, -1.0956006e-05, 0.0167696867, -0.00409697276, 0.0166375265, 0.00274599972, -0.0145890405, 0.0269754082, 0.00194018823, -0.0102350898, 0.0188842546, 0.00181628787, -0.0290165525, 0.00271112402, -0.0202939659, -0.00519096712, 0.0363294296, 0.0023458472, -0.00558010628, -0.00237888726, -0.0104406727, 0.00756251253, -0.00371701154, -0.0109913405, -0.00594721828, -0.00582607137, -0.000478622591, -0.0158151966, 0.00554706622, -0.00372435385, -0.00436496455, 0.0188255161, -0.0151397092, -0.0153012387, -0.00104718772, 0.00755517, -0.00475777453, 0.00262668822, 0.00539655, 0.0192954205, -0.000228642093, -0.00559479045, 0.020514233, -0.0144935912, -0.0159473568, -0.00218982459, 0.00787088647, 0.0311604869, -0.000636939774, -0.0353896208, -0.00812052283, -0.00267441268, -0.00424381765, 0.00882537849, 0.000634645286, 0.0139649501, -0.0137153137, -0.0016226361, 0.0358888917, 0.0175332818, 0.00595823163, -0.00749276113, 0.00152994029, 0.004016208, 0.0177388638, 0.00618217047, -0.017650757, -0.00325445016, -0.00519463839, 0.00628496148, -0.0362413228, 0.00922920182, 0.00372802489, 0.0170633774, -0.0144348536, 0.00830407906, 0.0133335171, -0.00396114122, 0.00455586286, -0.00820863, -0.00667410064, 0.000401529018, -0.006685114, 0.0198240615, 0.00832610577, 0.0236567128, -0.0135904951, -0.0118503831, 0.0193982106, 0.0177388638, -0.000965505198, 0.00201728172, -0.0149267837, 0.00303051155, 0.0069531058, -5.90821292e-05, 0.0117916455, -0.00850231946, -0.0203380194, -0.0112850303, -0.0232014935, -0.0263146069, 0.0141485063, 0.0231427569, 0.0163291525, -0.00435028, -0.000766346813, 0.018076608, 0.0264761355, 0.00936136208, -0.00977987051, 0.0187374093, -0.0032434368, 0.00592886284, -0.0139576076, -9.47608496e-05, -0.006685114, 0.00835547503, -0.00989000406, -0.00766530354, 0.0155068217, 0.0343617052, 0.0111969234, 0.00237705186, -0.0312485956, -0.0217330456, -0.00802507345, -0.0153012387, -0.0276655797, 0.008135207, 0.0147505701, -0.0018328079, 0.0158445649, 0.0125405546, 0.0168137401, -0.0257272273, -0.0150956558, -0.0102938274, 0.00649421569, 0.00505146477, 0.021982681, 0.0066153626, 0.0044714273, 0.0215127785, 0.00645016227, -0.0304262638, -0.019442264, 0.00761390803, 0.00458523212, 0.0135391, -0.0131132491, -0.0168871637, 0.0165494196, 0.00285246223, 0.0156977195, 0.0199415367, -0.021777099, 0.0062776194, 0.0294570867, 0.00256611453, 0.0107196774, 0.0132307252, -0.00162538944, -0.0213953014, 0.0195450559, -0.0135978376, 0.00758453924, -0.0106535973, 0.00352794863, -0.014170533, 0.0174011197, -0.0111381859, -0.0115640359, -0.0069714617, 0.0132307252, 0.0142366132, 0.0112850303, 0.00358852232, 0.0054846569, 0.00182454789, 0.00996342674, -0.0121954689, -0.014001661, -0.00799570512, -0.0109839989, 0.00354997534, -0.0112483194, -0.00100588752, 0.0197506398, 0.0114685865, -0.0107784159, 0.010249774, -0.0254041683, 0.00844358187, -0.00633268617, 0.0288403388, 0.00931730866, -0.0230840184, 0.0161382537, -0.0207785536, 0.0108004427, 0.017445175, 0.0138107631, -0.00114814355, 0.000221414579, 0.0289284457, -0.0177241787, -0.0268285628, 0.00192733936, 0.0203673877, 0.0261237081, -0.00828205235, -0.0103011699, 0.0168577936, -0.00878132507, -0.012790191, -0.00556909293, 0.0270488299, 7.96604945e-06, 0.0215862, -0.000221758746, 0.00512488699, -0.0111381859, 0.0105581479, 0.00946415402, -0.000528182776, 0.000795256929, 0.00855371542, 0.0153599763, 0.0258447025, 0.0054552881, 0.0104920678, 0.011732907, 0.00768733071, 0.00442737387, 0.00403089263, 0.00860511139, -0.00460358756, -0.0156683512, 0.00372251822, -0.0180472378, -0.0301913116, -0.00872258749, 0.00281575089, 0.0146844899, 0.00974315871, 0.00339028169, -0.00479448587, 0.0178710241, -0.0143320626, -0.00650155777, -0.00968442112, 0.00376657164, 0.00529008731, 0.00528274523, 0.0135170734, -0.00795899332, 0.00748541858, -0.0109399455, -0.00886943191, 0.00279739522, -0.0058224, 0.0102938274, 0.0117769614, -0.00708893733, 0.00498538418, 0.00300848484, 0.0134803616, 0.00224856264, 0.028003322, -0.000669062079, 0.00609406317, 0.00558377709, -0.0249930024, -0.000723211153, -0.00397949666, -0.0131646451, 0.0138254473, 0.00632534409, 0.0111675542, 0.0135831535, 0.00564251514, -0.0157417729, 0.0154921366, 0.0136786019, 0.0273865741, -0.00116191024, -0.00379594066, -0.00513590034, 0.00919249095, -0.00432458241, -0.00422179094, 0.0104480144, 0.00988266151, 0.016270414, 0.000601146312, -0.00920717511, -0.002681755, -0.0173864365, -0.0350959301, -0.00506247813, 0.0146991741, 0.0217624139, 0.00626660604, -0.00395747, 0.00635104207, 0.0208372921, 0.00770935742, -0.0129590621, -0.0201324355, -0.0154627683, -0.0187961478, 0.00520932302, 0.00159969158, -0.0142880091, 0.0211603492, 0.00381429633, -0.0229812264, 0.0168871637, 0.0182381365, -0.0212631412, -0.00413001282, 0.02462589, 0.0130031155, -0.00237521622, 0.0158739332, 0.00197689957, -0.00284144888, -0.0187227242, -0.0116080893, 0.0214980934, -0.00554706622, -0.0268285628, -0.0120192552, 0.000318699313, -0.0369461775, 0.00251104776, 0.0366524868, 0.00758453924, 0.00846560858, 0.00527907396, -0.010146983, 0.0241706707, -0.0100368485, -0.000959998521, 0.0072100847, 0.00381429633, 0.0131573034, 0.0141191371, 0.0161676239, -0.0113804797, -0.016387891, 0.00492664659, 0.00360687776, -0.00994874164, 0.0160060935, -0.0299710445, 0.00637673959, 0.019765323, 0.00111785682, -0.0407641456, -0.0127828484, -0.00875929836, -0.00389873213, 0.0256244354, 0.018076608, -0.0175185967, -0.000633268617, -0.0155508751, -0.0137813939, 0.00472840574, -0.00814989209, -0.0047614458, -0.00916312169, 0.0187080409, -0.00564985769, 0.0180031843, -0.00474309037, 0.00633635744, -0.0170340091, 0.00297911582, -0.00515058497, 0.0140457144, 0.00498538418, -0.00870056, -0.00821597222, -0.0045411787, 0.00129498844, -0.00333337928, 0.0190017298, -0.00670347, 0.00490461942, 0.00457054749, -0.0143173775, 0.000119540928, -0.00889880117, 0.0116448, -0.00207418413, 0.00619685464, -0.00451548072, 0.00174011209, 0.00127020839, -0.0191045217, 0.0104553569, -0.0221588947, -0.0103305383, -0.00561681762, 0.000847570424, 0.0204261262, 0.0248461571, 0.0183262434, -0.000111452988, 0.00879600924, 0.00620052591, 0.00877398252, 0.0140090035, -0.00764327683, -0.0114539023, 0.0380328298, -0.00349123753, -0.0153452922, -0.00372986053, -0.0133555438, -0.0342442319, -0.0406466685, 0.0179003924, -0.0132380677, -0.00519463839, 0.00994874164, 0.00642079301, -0.00738996966, -0.0107637309, 0.00726148, 0.0086271381, 0.0161676239, -0.0237741899, -1.91873514e-05, -0.0143467467, 0.0192660503, -0.00955960341, 0.0103378808, -0.004254831, -0.0062776194, 0.00399785256, -0.0095228916, 9.85467e-05, 0.014376116, -0.00597291626, -0.00482385512, -0.00102699653, -0.00416305289, 0.0168871637, -0.0215274617, 0.0108077843, -0.012261549, 0.00475410372, -0.00191081921, 0.00107747444, -0.0268432479, -0.00307272957, 0.0172542762, -0.0167990569, 0.000300573156, -0.0151837626, -0.00467701023, -0.00502576679, -0.0243909378, -0.0160060935, -0.0238769799, -0.0025844702, 0.0142145865, 0.00849497784, 0.0102130631, 0.00723578222, 0.00206867745, 0.0299563594, -0.00727249356, -0.0168431103, 0.0239210334, -0.00443104468, 0.0296479855, 0.0214687251, 0.0106462557, -0.0213953014, 0.0293249264, 0.0147872809, 0.00960365683, -0.00651991367, -0.0409403592, 0.03107238, -0.0258006491, 0.0109179178, -0.0113511104, 0.00568289775, -0.0254188515, -0.0117255654, 0.0179003924, -0.00127387955, 0.00100680534, 0.00642446429, -0.00225590472, -0.0133995973, 0.0119898859, 0.0202352274, 0.00749643194, 0.0196184777, -0.0137079712, 0.00656396709, 0.00721742678, -0.0124671319, -0.022100158, -0.00162722508, -0.00384366536, 0.00527173188, 0.00999279507, -0.00778277963, -0.014001661, -0.00817926135, 0.0018814503, 0.00558377709, -0.0146624632, 0.0303968936, 0.00383999408, 0.0289871823, 0.0236713979, -0.00725413812, 0.0105067529, -0.00756985461, -0.00611976115, 0.0239210334, -0.00807646941, -0.00146661338, -0.00401253672, -0.00389506086, -0.0180031843, -0.00645750435, -0.0129810888, 0.00848763529, -0.00668878527, 0.0220854729, -0.0027515064, 0.0163585227, -0.00444940059, 0.00735692959, 0.00653092703, 0.00652358448, 0.0195450559, -0.0120486245, 0.0160795171, -0.0066153626, -0.00756985461, 0.00425850227, 0.0186199341, -0.0218798909, -0.0128269019, -0.00180986337, -0.0153452922, 0.0016712785, 0.0101396404, 0.00405659, -0.0183115583, 0.0209253989, -0.0177829172, -0.00378859835, -0.0102277473, -0.0136786019, -0.00034439718, -0.00949352235, 0.00581505802, -0.0102424314, 0.000827838143, -0.0380034596, 0.0024633233, 0.0090823574, 0.00412634155, -0.00217330456, -0.00197139289, 0.00616014376, 0.0238182433, -0.012584608, 0.0125332121, -0.0228490662, -0.0152718695, 0.016696265, 0.00789291319, -0.00341047277, -0.0105654905, 0.0132233836, 0.0041373549, 0.010829811, 0.002668906, 0.0177682322, 0.00354814, 0.00266523496, 0.00409330148, -0.0205289163, 0.00237154518, -0.00573062198, 0.018487772, -0.00200443296, 0.000744320103, 0.00575999124, 0.005840756, 0.0153012387, 0.0017979322, 0.034038648, -0.0208372921, 0.00594721828, 0.010572833, 0.000753039, 0.00500006881, -0.000696136616, -0.00342332176, 0.00685031479, 0.00284328428, -0.00700450176, 0.0265936106, -0.0208519753, -0.0139429234, 0.00207234873, -0.0143100359, 0.00890614279, 0.0153599763, -0.00302684051, -0.0186933558, 0.0176801253, -0.0450520143, -0.00297360914, 0.0261824448, -0.0202058591, -0.0111822393, -0.0157711431, -0.0215568319, -0.0191779435, -0.000502026, 0.00906033069, -0.014427511, 0.0200149603, -0.00687601231, -0.0285613332, 0.011835699, -0.00234217616, -0.000697513286, -0.00824534148, 0.00534148328, -0.00561681762, 0.0180619229, -0.00665941602, -0.0118724098, 0.00776809501, 0.0187667776, 0.026211815, 0.0217330456, 0.00821597222, 0.000905849447, -0.0282235891, -0.0140236877, -0.00633635744, -0.0601476692, -0.0115346666, 0.0158298798, 0.0358007848, 0.0234364457, 0.0147872809, -0.0152718695, -0.00748541858, 0.0103745926, 0.0330694728, 0.0185905639, -0.0128782978, 0.0138548166, 0.0113731371, -0.00880335178, -0.00376657164, 0.0286788084, -0.0122395223, -0.00195670826, -0.0140971104, -0.0013060018, -0.00692006573, -0.00209804648, -0.00291854236, 0.0152131319, 0.00575999124, -0.00297728041, 0.00656763837, -0.00384366536, -0.010352565, -0.00153544697, 0.011461244, 0.00590683613, -0.0123643409, 0.000829673663, -0.00701918639, -0.0116154319, -0.0228637513, 0.0169312172, 0.00370599818, -0.00175938546, -0.00856105797, 0.00727249356, -0.0156977195, -0.010146983, 0.0204114411, 0.00665941602, 0.0103892768, -0.0080471, 0.00555073703, -0.00680259, 0.0306612141, -0.0382677801, 0.00142623112, -0.0157270879, -0.00234034052, -0.00563517306, -0.0104700411, 0.020191174, 0.00556542166, 0.00535249664, -0.0121514155, 0.0148974154, 0.0087446142, 0.0066153626, 0.0165200513, -0.0126727149, 0.00249452773, 0.00193651707, -0.00235502515, 0.00611609, 0.00602431223, 0.0135097308, 0.0137373405, -0.00696779042, -0.00241192756, -0.00603165431, -0.000760381226, 0.0110060256, 0.018076608, 0.0113437688, -0.00616014376, -0.0159033034, -0.00551035488, 0.0113804797, -0.0133922547, -0.00467701023, 0.011358453, 0.0137373405, -0.0102938274, 0.0198093764, -0.0013271108, 0.017224906, 0.00752580119, 0.00601696968, 0.0187227242, -0.0109913405, 0.0090676723, 0.00739364047, -0.00223020697, 0.0123863677, 0.0172983296, 0.0185465105, 0.0037500516, 0.014170533, -0.0249048956, -0.00427685771, -0.00800304674, 0.0104480144, -0.0142659824, 0.00139686209, 0.00241009193, -0.0122688916, -0.00422546221, 0.00535616791, 0.00272947946, -0.00106462557, -0.0115860626, -0.0240825638, -0.00881803595, 0.0119531751, -0.0164466295, 0.00306171621, -0.00903830398, 0.00609039236, 0.0031241253, -0.0129664047, -0.0209107138, -0.00866384897, -0.0120412819, 0.00227976707, 0.000724128913, 0.00225039804, -0.0379153527, 0.0069531058, -0.00632901536, 0.0224819537, 0.00626293477, -0.0146991741, 0.00677689211, -0.00300664944, -0.0257419106, -0.00121881266, 0.00670347, -0.0166815799, -0.0312192254, 0.00277720415, 0.0108885495, -0.00227426039, 0.00989000406, -0.0119017791, -0.0171514843, 0.00725413812, -0.00398316793, -0.0265495572, -0.0230105966, 0.0176360719, -0.0120926779, 0.0109619722, -0.00795899332, -0.00419609295, -0.00364909577, -0.00809115358, -0.010675624, 0.0166522115, 0.0107637309, 0.00373353157, -0.0155949285, -0.00105820107, -0.0235979762, -0.00224856264, 0.0265789274, -0.00943478476, 0.0022962871, 0.00731654698, 0.0107563892, -0.0026340303, 0.00220267358, -0.00983860809, 0.00959631428, 0.0233777072, 0.00459991628, 0.00410798611, -0.0269607231, 0.0151397092, -0.0152865537, 0.00147579121, 0.0142366132, -0.0137740513, 0.0155949285, 0.0249195788, 0.0105581479, -0.00642446429, 0.0209400821, -0.0153893456, 0.00869321823, -0.0110867899, 0.0128195593, -0.0121367313, 0.00960365683, -0.0138548166, 0.0121147046, -0.00468068104, 0.00133720634, 0.00123349717, -0.000157169925, -0.0300004128, 0.0173570663, 0.0142512973, -0.0215715151, 0.00922920182, -0.00364542473, 0.0099414, -0.00798836257, -0.0102350898, 0.00601329887, -0.0114685865, 0.00724312477, 0.00984595064, -0.0129664047, 0.00186676579, -0.00209621084, 0.0514838211, 0.00586278271, 0.0397949666, -0.0153159229, 0.0200883821, 0.030485, 0.0150662865, -0.00707792398, -0.00208152644, -0.0202792808, 0.0263292901, -0.0212631412, 0.0071917288, 0.000741107855, -0.00681727426, 0.0127828484, -0.014170533, 0.0192807354, 0.0169899557, 0.0116521427, -0.00253858115, 0.00196772162, -0.000362982246, -0.00662270514, 0.000652083138, 0.00875929836, 0.0143908, -0.0110721057, -0.0169752706, 0.00194569491, -0.00572328, 0.0277390014, -0.0094201006, 0.00718438672, -0.0205729697, 0.00890614279, -0.00808381196, 0.013267437, -0.00848029274, -0.00374821597, 0.0120706512, -0.0213806182, 0.000952656264, -0.00116925256, 0.00744503643, -0.0298095141, 0.00161070505, -0.0165347364, 0.00933199376, -0.0135831535, -0.0174158048, -0.00663738931, -0.01913389, -0.00966973696, -0.00592886284, 0.028326381, -0.0299563594, -0.0166228432, -0.0269607231, -0.0191485751, -0.0201324355, 0.00740098301, 0.000949902926, -0.0151690785, -0.00126194838, 0.00390974525, 0.00048137593, 0.00279555982, 0.000796633598, -0.00510653155, 0.00646851771, -0.00648687361, -0.00553238159, -0.00784151722, 0.00135556201, 0.00485689519, 0.00505513558, -0.0218358357, 0.00848763529, 0.00955226086, -0.00294240471, 0.0138181048, -0.0227169059, -0.0255510118, -0.00368213584, -0.0195010025, -0.00941275805, -0.00387303415, -0.0461093, 0.0270194616, -0.00988266151, -0.00658966508, -0.0237888731, -0.0153746614, -0.0186639875, -0.00731287617, -0.00116099254, -0.010624228, -0.011461244, -0.00727249356, -0.0174304899, 0.0336862206, -0.0139869768, -0.0190898366, 0.012569923, 0.0154040297, 0.00934667792, 0.0263733435, 0.0199415367, 0.00153361144, -0.000240458525, 0.0103378808, -0.0209547672, -0.0089281695, -0.00143632665, -0.0346847661, -0.013950265, -0.000736518938, -0.00791494, -0.00950820744, -0.0188695695, -0.0318947136, 0.0212484561, -0.00820128806, -0.0254188515, 0.0298976209, 0.0363881662, -0.00400886592, -0.0185905639, -0.00195487263, -0.000117934811, 0.0153306071, 0.00373720261, -0.0189429913, -0.00423647556, -0.00609406317, -0.0149855223, 0.00979455467, 0.0169459023, -0.0101396404, 1.97322843e-05, -0.00422179094, 0.0161088854, -0.0321884, 0.022937173, -0.00280657317, -0.0179885011, 0.0103085116, -0.00200993964, 0.000651624228, -0.00947883818, 0.0763593465, 0.0126873991, 0.03107238, 0.0190017298, 0.0258593876, -0.0181500297, -0.00546263, 0.0419095345, 0.00132435746, 0.00606469437, -0.010249774, 0.00715501793, 0.00401987927, -0.012892982, -0.0105948597, -0.0114759291, -0.000125162333, -0.00216045557, 0.00527540315, -0.0134069398, -0.0095375767, -0.0239210334, 0.0143320626, -0.00395747, -0.00361972675, 0.00630331738, -0.000819578068, 0.000655754237, -0.00700817304, 0.00870056, -0.0108518377, 0.00964771, 0.0118870949, 0.0123569984, -0.0212631412, -0.00968442112, -0.00180252118, 0.00453750743, -0.00515425578, 0.0049486733, 0.0183702968, 0.019868115, 0.0168724786, -0.00299012917, 0.0157270879, 0.00348205958, 0.00605368102, 0.00350225088, 0.0120265977, -0.0279886387, -0.020719815, -0.0118577257, 0.0124451052, -0.016490683, -0.00249819877, -0.0177094955, 0.0352427773, 0.0192954205, -0.0095228916, 0.015007549, -0.00819394551, 0.00342148612, -0.00646117562, -0.0109105762, -0.00493398868, -0.0205876548, -0.0332163163, -0.0025000344, -0.00526071852, -0.00383999408, 0.011681512, -0.0113217421, 0.00102607871, -0.0141191371, 0.0246405751, 0.00743769435, -0.00603532558, -0.0080471, 0.0219092593, -0.0089648813, 0.00265605701, 0.017342383, -0.0155068217, 0.00339028169, -0.00399051, 0.0270194616, -0.0152278161, -0.000867302704, -0.0125405546, 0.0174011197, -0.000347609399, 0.0122395223, -0.00400152337, 0.0172689594, -0.0159620401, -0.000371930597, -0.00019801117, 0.0210575592, 0.0134289665, -0.00170340086, 0.024317516, -0.00409330148, 0.0104847262, -0.0115420092, 0.00180711, 0.0195156876, 0.013847474, 0.0117916455, 0.0106168864, 0.00202462403, 0.00131426181, -0.0023109715, 0.0130912224, 0.010352565, -0.00174378313, -0.000933841802, 0.0131940143, 0.000443058583, -0.0107857576, -0.0100148218, 0.0179885011, -0.00594354747, -0.010624228, -0.000418278505, -0.0131279342, -0.0122982599, 0.0193101037, 0.00715501793, 0.0124010518, 0.020396756, -0.00999279507, -0.0278711617, 0.00476511708, -0.0171514843, 0.0104920678, 0.0135464417, -0.00416305289, 0.01389887, 0.00547364354, 0.0175920185, -0.0151837626, 0.0197065864, -0.00889145862, 0.0267551411, 0.0202939659, -0.0198974833, 0.00898690801, -0.0108004427, -0.00385100744, 0.00328565459, 0.0244203061, 0.0113878222, 0.00246148766, -0.00134271302, 0.0103672501, 0.00768733071, -0.00428787107, -0.0255069584, 0.0325702, -0.00580037339, 0.00559111964, 0.00529008731, -0.0044714273, 0.0130765382, -0.0120559661, -0.0116154319, 0.0157417729, 0.00570492446, 0.0191485751, 0.0218505207, 0.0196037944, 0.0271809902, 0.00958897173, 0.0126653723, 0.00520932302, 0.0136125218, -0.0186933558, -0.0209547672, -0.0143394042, -0.0304556321, 0.00110133679, 0.000948985165, -0.0142366132, 0.0375041887, 0.00768733071, -0.0227903277, 2.51672664e-05, -0.00130875513, 0.0166522115, 0.0251251627, -0.010095587, -0.00899425056, -0.00823065639, -0.00715134665, -0.0209547672, -0.0137226563, 0.0234658141, 0.00558744837, -0.0169312172, 0.00137483538, 0.00304152491, 0.00459991628, 0.0067548654, 0.00989734661, -0.0257565957, 0.0347141325, 0.0194863174, 0.00940541551, -0.0114245331, -0.00264137262, -0.0211750343]
27 Dec, 2024
Vector push_back() in C++ STL 27 Dec, 2024 In C++, the vector push_back() is a built-in method used to add a new element at the end of the vector. It automatically resizes the vector if there is not enough space to accommodate the new element. Let’s take a look at an example that illustrates the vector push_back() method: C++ #include <bits/stdc++.h> using namespace std; int main() { vector<int> v = {1, 4, 6}; // Add an element at the end of the vector v.push_back(9); for (int i : v) cout << i << " "; return 0; } Output1 4 6 9 This article covers the syntax, usage, and common examples of the vector push_back() method in C++: Table of Content Syntax of Vector push_back()Examples of vector push_back()Initialize an Empty Vector One by OneAdd Elements Vector of Strings at the EndSyntax of Vector push_back()The vector push_back() is a member method of the std::vector class defined inside the <vector> header file. v.push_back(val); Parameters: val: Element to be added to the vector at the end.Return Value: This function does not return any value.Examples of vector push_back()The following examples demonstrate the use of the vector push_back() function for different purposes: Initialize an Empty Vector One by One C++ #include <bits/stdc++.h> using namespace std; int main() { vector<int> v; // Add elements to the vector v.push_back(3); v.push_back(7); v.push_back(9); for (int i : v) cout << i << " "; return 0; } Output3 7 9 Add Elements Vector of Strings at the End C++ #include <bits/stdc++.h> using namespace std; int main() { vector<string> v = {"Hello", "Geeks"}; // Add string to the vector v.push_back("Welcome"); for (string s: v) cout << s << " "; return 0; } OutputHello Geeks Welcome Vector push_back() in C++ – FAQsWhat happens if a vector’s capacity is exceeded while using push_back()?When the number of elements in a vector exceeds its current capacity, the vector reallocates memory, usually doubling its capacity, to accommodate new elements. Can we use push_back() to add elements to a specific position?No, push_back() always adds an element at the end of the vector. To insert at a specific position, use the vector insert() function. Does push_back() work for user-defined objects?Yes, as long as the user-defined object supports copying or moving, it can be added to a vector using push_back(). What is the time complexity of push_back() function?The amortized time complexity of vector push_back() is O(1). Learn C++ Online – Master everything from basics to advanced concepts. Apply your knowledge with practical exercises and boost your skills. Take the Three 90 Challenge: finish 90% in 90 days for a 90% refund. Start now and level up your C++ programming!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum/Algorithm for Dynamic Time out timer Calculation/Difference between Round trip time (RTT) and Time to live (TTL)/Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms/Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm/Round Robin Scheduling Algorithm with Different Arrival Time/Selfish Round Robin CPU Scheduling/Find the order of execution of given N processes in Round Robin Scheduling/Calculate server loads using Round Robin Scheduling/set::lower_bound() Function in C++ STL/Implementation of lower_bound() and upper_bound() in List of Pairs in C++/Difference between std::set::lower_bound and std::lower_bound in C++/Difference between std::set vs std::vector in C++ STL/std::minmax() and std::minmax_element() in C++ STL/std::rotate vs std::rotate_copy in C++ STL/std::bitset::to_ullong and std::bitset::to_ulong in C++ STL/std::upper_bound and std::lower_bound for Vector in C++ STL/std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++/std::string::append vs std::string::push_back() vs Operator += in C++/Vector push_back() in C++ STL
https://www.geeksforgeeks.org/vector-push-back-cpp-stl?ref=asr10
PHP
Vector push_back() in C++ STL
What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, jQWidgets jqxTreeMap width Property, Round Robin Scheduling Algorithm with Different Arrival Time, Difference between Flow and TypeScript, jQWidgets jqxTree destroy() Method, jQWidgets jqxTree collapseAll() Method, Find the order of execution of given N processes in Round Robin Scheduling, jQWidgets jqxScrollView buttonsOffset Property, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Vector push_back() in C++ STL, jQWidgets jqxListBox enableHover Property, Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm, std::rotate vs std::rotate_copy in C++ STL, Selfish Round Robin CPU Scheduling, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxSlider buttonsPosition Property, std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++, std::upper_bound and std::lower_bound for Vector in C++ STL, Difference between Round trip time (RTT) and Time to live (TTL), jQWidgets jqxSlider rtl Property, Difference between std::set::lower_bound and std::lower_bound in C++, jQWidgets jqxTooltip opacity Property, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, jQWidgets jqxToolBar height Property, PHP, std::minmax() and std::minmax_element() in C++ STL, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, Node.js date-and-time Date.transform() Method, TypeScript Optional Parameters, jQWidgets jqxToolBar theme Property, Difference between std::set vs std::vector in C++ STL, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, Steps to Diagnose and Resolve a Slow Network, How to use Optional Chaining with Arrays and Functions in TypeScript ?, Calculate server loads using Round Robin Scheduling, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, jQWidgets jqxScrollView showButtons Property, Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms, jQWidgets jqxScrollView disabled Property, jQWidgets jqxSplitter destroy() Method, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, set::lower_bound() Function in C++ STL, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, jQWidgets jqxTree collapseItem() Method, std::string::append vs std::string::push_back() vs Operator += in C++, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), jQWidgets jqxSortable opacity Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, jQWidgets jqxSlider height Property, jQWidgets jqxSwitchButton onLabel Property, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, jQWidgets jqxToolBar tools Property, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTree width Property, Implementation of lower_bound() and upper_bound() in List of Pairs in C++, jQWidgets jqxTree clear() Method, TLS Handshake?, Algorithm for Dynamic Time out timer Calculation, Adhoc TCP, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, jQWidgets jqxTabs position Property, Differences between Wireless Adhoc Network and Wireless Sensor Network, jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, std::bitset::to_ullong and std::bitset::to_ulong in C++ STL, Impact of Three-way Handshake and Slow Start Algorithm, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, How to Sort an Array Having Optional Properties in TypeScript ?
GeeksforGeeks
[-0.0413839035, 0.0369157828, 0.000789985759, 0.045278579, 0.0351237543, -0.033045, -0.0242043287, 0.0260919314, -0.00241475808, -0.0106386738, -0.0136074675, 0.0124247288, 0.00910947658, -0.0486237, -0.00546269957, 0.00256708032, 0.0114391139, 0.0308467783, -0.0241565406, -0.00519090844, -0.0144676408, -0.011170309, -0.0410016067, -0.0211459324, -0.0425785892, 0.0204530153, 0.0101488531, -0.000664917112, -0.00658271695, 0.0241207, 0.000427846739, 0.00560307503, -0.0040111565, -0.0091512911, -0.0119229611, 0.0066782916, 0.0249211397, -0.0169645343, -0.0270715728, -0.0247538835, 0.0399741754, 0.0314202271, 0.0199273545, -0.0231649522, -0.0019757112, 0.0266653802, -0.00353626907, -0.0258529931, 0.0106685413, 0.00878691208, 0.0395679846, 0.0139061389, 0.0227229185, 0.00566579588, -0.0226990245, 0.0340724289, 0.0537130609, 0.00518194819, -0.0259963553, -0.0153875491, -0.025781313, -0.00088705396, 0.0167853311, -0.0239773374, -0.00109089713, -0.00494599808, -0.00164717261, 0.0101488531, 0.018816296, 0.0172034707, 0.00226243562, 0.0477874205, 0.0149694094, -0.0199273545, -0.0252795443, 0.00144332938, 0.0156981666, 0.029317582, -0.0268326364, 0.0255662687, 0.0093066, 0.0118871201, -0.0192702767, -0.00843447912, -0.00458161859, 0.00483250292, 0.0179680698, -0.0248972457, 0.0262352936, 0.0225078743, -0.0246105213, -0.00206979248, 0.00943801552, -0.0299388189, 0.0186729338, 0.0578705631, -0.0247538835, 0.0177649725, -0.0225198213, 0.0414555855, 0.0106565943, 0.00371248508, 0.00990991574, -0.0386122353, -0.0420529284, 0.00814775471, -0.00222659507, 0.00377221941, 0.00160237192, -0.0231649522, 0.0129503906, -0.034168005, -0.0177530255, 0.0421724, -0.026545912, 0.0176574513, 0.0427458473, -0.0426741652, 0.00723979389, 0.00307034166, 0.00987407565, 0.0388750657, 0.0372264, -0.0346936658, -0.0164269246, 0.0124964099, -0.0251122881, -0.0348848142, 0.0157698486, -0.0100293849, -0.0321848281, 0.00526258955, 0.00400816975, -0.0023132097, 0.0266892742, 0.0170242675, 0.0282901525, 0.0280990023, 0.0148499403, 0.003306292, -0.0395440906, -0.0180158578, 0.0239056572, 0.0477157384, -0.016008785, -0.0052327225, 0.0142764915, 0.0214207098, -0.0254229065, 0.00985615514, -0.00684554782, -0.0273344032, 0.0448484942, 0.0091453176, 0.0322326124, -0.0395679846, 0.00556424772, -0.0111523885, 0.0339290686, -0.00303599448, 0.0252795443, -0.0263308678, -0.00642143423, 0.00637962064, -0.0327582769, 0.0410971791, 0.063987352, -0.0246822014, -0.0163313504, 0.018768508, 0.0145512689, 0.0615501963, 0.0153636551, 0.00341978716, -0.0662811473, -0.00157847814, 0.0151725058, 0.00965903234, 0.0230693761, 0.00448007043, 0.0152800269, 0.00119543215, 0.0126158791, 0.00039872629, -0.00381104671, -0.00578825129, 0.0197481513, -0.0340724289, 0.0701997206, -0.00839266554, -0.00530739035, 0.0197839923, 0.0373697616, -0.00940814801, 0.018792402, 0.0117497314, -0.00449201744, -0.013225168, 0.0157817956, 0.0324237645, -0.0419812463, -0.0336662382, -0.0110209733, -0.0310857166, 0.0265936982, 0.0140017141, 0.00847032, -0.0408343486, 0.0157220606, -0.0116362367, -0.00307332841, 0.0262591876, -0.020871155, 0.0143959597, -0.0163671914, 0.0107223019, -0.0139061389, 0.0065588234, -0.0412166491, -0.0294370502, -0.0285290889, -0.00563592883, -0.00428294763, -0.0611201078, -0.0608811714, -0.0346936658, -0.0203216, 0.0254468, -0.0249211397, -0.0150052495, 0.0372264, 0.0402847938, 0.00216088747, 0.00235502375, 0.0326627, -0.00507741328, -0.0327582769, -0.0223286711, 0.0145512689, 0.0305600539, 0.0343113653, 0.0273105092, -0.0242999028, -0.0176574513, -0.0335228741, 0.0691961795, -0.00181890861, -0.00248345244, 0.0144198537, -0.0305361617, 0.0139897671, -0.0022534756, 0.00524168275, 0.00915726461, -0.00733536901, 0.00844045263, -0.000150549036, -0.0227826517, -0.015339762, 0.00762806693, -0.045230791, 0.00952164363, -0.0126636662, -0.00904974248, 0.00111105747, -0.0052327225, 0.0380148925, 0.0130101247, 0.0161521472, -0.028576877, 0.0247299895, 0.00307332841, 0.0117855724, -0.0580139272, 0.0261636116, 0.0281467903, -0.0310379285, -0.015351708, 0.00332421227, -0.0293653682, 0.0171556827, 0.00521480199, -0.0175618771, 0.0518971384, 0.0343830474, -0.0374653377, -0.0554811954, 0.00498781167, 0.0079566054, 0.0128667625, 0.0253751203, -0.00817762222, 0.0278122779, -0.0144198537, 0.0514670499, 0.0297237746, -0.0519449264, -0.00259246747, -0.0392095782, -0.00476082182, -0.0112838047, -0.0296282, 0.013272956, -0.0201065559, -0.0310379285, -0.0351954326, 0.0217671692, -0.0107760634, 0.00678581372, -0.0502723642, 0.0266653802, -0.0238817632, -0.0121200839, -0.0122455265, -0.0103041623, 0.00971876644, 0.0224600863, 0.0326865949, -0.0537608452, -0.0355538391, -0.0308706723, -0.0298193488, -0.0197123103, 0.0560546443, 0.0232366323, -0.0265936982, 0.00447708368, -0.00977252703, -0.00226840912, -0.0105610192, -0.0258529931, -0.0029523666, -0.0428175293, 0.0356255211, -0.00121633918, -0.00829111692, -0.0333078317, 0.0127711874, -0.0103877904, -0.00718006, 0.00618249737, 0.0173826739, 0.00918713119, -0.018135326, 0.0248494577, -0.0140853422, -0.023714507, -0.0168450661, 0.0155786984, 0.00418438576, 0.000748545106, 0.00709643168, 0.0078192167, -0.00562696857, 0.031969782, -0.0196764693, 0.00451889774, 0.00182189536, -0.0189716052, -0.0449918546, 0.0368202068, 0.0358644575, -0.0116959708, -0.0133685302, -0.00558515452, -0.0189835522, -0.0253751203, -0.0174304619, -0.0145393219, -0.00323759764, -0.00937828142, -0.015315868, 0.0378237441, -0.0227348655, -0.00620639091, -0.0157101136, -0.00612276327, -0.000387152773, -0.00633780658, 0.0135477334, -0.0228184927, 0.0351715423, 0.0047697816, -0.020906996, 0.0158176366, 0.0217910632, -0.0454458371, 0.0284574088, 0.0144795878, 0.00155159773, 0.011146416, -0.00044352698, -0.0192224886, -0.026450336, -0.00740107661, -0.00341978716, -0.0301299673, -0.0288397074, -0.0368918888, -0.0164149776, 0.00194435066, 0.0414794795, 0.0244671591, -0.0273105092, 0.00717408629, 0.0415511616, 0.0344308354, -0.00995173, -0.00710240519, -0.0289591756, 0.0368202068, 0.0116899973, -0.00835682452, -0.0399263874, 0.027214935, 0.00548061961, -0.0319219977, -0.0124127818, 0.0184578914, 0.027191041, -0.00666634506, -0.0333078317, -0.0138702989, 0.00361691019, 0.00254468014, 0.0316352732, -0.0317547396, -0.0196167361, 0.00987407565, -0.0153994961, -0.0195570011, 0.0171915237, 0.0130698588, 0.0671413243, 0.0233680476, -0.0322804, 0.0301299673, -0.00227288902, -0.00343173393, -0.0290308576, -0.00283289794, 0.0404759422, 0.00665439805, -0.0400458574, 0.0103937639, 0.0344308354, 0.0116661033, 0.00255214679, 0.0121021643, 0.0290308576, -0.00389168784, 0.00687541487, -0.000863906927, -0.0046323929, 0.00839266554, 0.0194614269, 0.016713649, -0.00652895635, 0.0395201966, -0.0178844407, 0.0129862316, -0.00872120354, 0.000470780738, 0.00338095985, 0.0251122881, -0.0019697377, 0.0103161093, -0.00103116292, -0.0145034818, -0.0238339752, 0.0109433187, -0.00348250824, 0.00219374127, 0.0566280931, 0.00487133, -0.0186490398, -0.0307989921, -0.0387555957, -0.0115645556, -0.039783027, -0.0127950814, -0.0220777877, -0.0200109817, -0.0126517192, -0.0291025378, -0.0170003735, -0.00754443882, -0.0072577144, 0.0161163062, 0.0039454489, 0.0101906676, 0.0219941605, -0.0136433085, -0.0294609442, 0.0193897448, 0.0156623274, -0.0278839599, 0.011146416, 0.000986362225, 0.0128548155, 0.020859208, -0.0119588012, -0.0363662243, 0.0565803051, 0.0449201725, -0.029293688, 0.0180278048, -0.00881677866, -0.0368441, 0.0177052394, -0.0136313615, 0.0321609341, -0.0322326124, 0.0387078077, -0.00322565087, -0.00436060177, 0.0294370502, 0.00916921068, -0.0573449023, -0.0218746904, 0.021623807, -0.0133565832, -0.028552983, 0.0247777775, -0.0101548266, 0.0231291112, -0.00114241801, -0.0213729236, 0.0118871201, -0.0121439779, -0.0132968491, -0.00519389519, -0.0371786132, 0.0253512263, 0.0102742948, 0.00683360081, 0.0260441434, 0.0100054909, -0.00777142914, 0.00525362929, -0.0110807074, 0.0128906565, 0.0411688611, 0.00454279175, -0.016056573, -0.000125441977, 0.0195331071, -0.0223764591, 0.0126039321, 0.00380208646, -0.00133356766, 0.00330927875, 0.028576877, 0.00302106095, -0.00811788812, 0.0405715182, 0.00617652386, -0.0216835421, -0.00376325916, 0.023630878, 0.0053969915, 0.00804023352, 0.0123172076, 0.0108477445, -0.034144111, -0.0512759, 0.0166539159, -0.00206531258, -0.0500812158, 0.0158056896, 0.000294564641, -0.0093902275, 0.0267131664, -0.015303921, 0.0279078521, 0.0117855724, 0.0175260361, -0.0221614148, -0.0561980046, 2.06619916e-05, 0.0233202614, -0.00203245878, 0.00846434664, -0.0129981777, -0.00475783506, 0.0298910309, -0.050798025, -0.0390423201, -0.0580139272, 0.0183623154, -0.0177291334, 0.0228901729, -0.00513117434, 0.0154950703, -0.0107641164, 0.000953508366, 0.00639156718, -0.0240848586, -0.0337379165, 0.00212056679, 0.00148738339, 0.0107641164, 0.00576137053, 0.000355418917, -0.0186609868, -0.0252078641, 0.0654687658, -0.0187207218, 0.0184101034, 0.0128906565, -0.0567236654, 0.0244671591, 0.0268804226, 0.02370256, 0.000490567705, 0.0159132108, 0.0091453176, 0.0201423969, -0.0297237746, -0.00577331753, 0.00485042296, -0.00352432206, -0.0205724835, -0.000457340531, 0.0134163182, 0.0269282106, -0.0101906676, 0.00573449, -0.00462940615, -0.038397193, 0.0066305045, -0.0306795239, 0.012215659, -0.0189477112, -0.00222360832, 0.000119281882, -0.00199512485, 0.0381104685, -0.0560068563, 0.0104116844, -0.0251839701, 0.00246105203, -0.0179322287, 0.0686227307, -0.000848973345, -0.0272866171, -0.00569864968, -0.00876899157, 0.00412763841, -0.0122574726, -0.0211339854, 0.00434268173, -0.0053969915, 0.00348549499, -0.0121380044, -0.0197242573, 0.0352910087, 0.00983823463, 0.0203574412, 0.00850018673, -0.008010366, -0.0116541572, -0.00714421924, 0.00202797865, -0.0206919517, -0.0180158578, -0.0105490731, -0.0300582871, 0.0247299895, 0.0122096855, -0.013930033, 0.0071860333, 0.00155159773, -0.0120961908, -0.00565384887, -0.00440241583, -0.027214935, 0.0235114098, 0.0228184927, -0.00064737018, 0.0116661033, -0.00427996088, -0.0210862, -0.000799692585, -0.0351476483, -0.00184280239, 0.00550451316, -0.00928270631, 0.00692917593, 0.0239892844, -0.0116422102, 0.00872120354, 0.0426980592, -0.00525064254, 0.00339589338, -0.0178486016, 0.0158295818, -0.00652298285, 0.02302159, 0.0232366323, -0.00240281108, 0.000461073942, -0.0241445936, -0.0240370724, -0.0291742198, 0.0268326364, -0.0126875602, -0.00150082365, -0.0403325818, -0.00338992, -0.00803426, -0.00152471731, 0.00729355495, 0.0151486117, -0.0191388614, 0.015315868, 0.0270237848, -0.00651103584, 0.0208114218, -0.0059644673, 0.0170959495, 0.00884664617, -0.0196167361, 0.00154711772, 0.0282184705, -0.0127711874, -0.0203574412, -0.0361750759, 0.00638559368, -0.0133924242, 0.00118572533, -0.00195480417, 0.011194203, -0.00698293652, -0.00165762613, 0.00953359, -0.00427398738, -0.0115526086, -0.00909155607, 0.00743094366, -0.00819554273, 0.00907363649, -0.0143003855, 0.0164627656, -0.016032679, -0.000435686874, 0.0505113, -0.0195570011, -0.0196167361, 0.00848824065, 0.00383494049, 0.0124366758, 0.0196645223, 0.0190074462, -0.00604809541, -0.0450874306, 0.041885674, 0.0388272777, 0.00802828651, 0.0245627332, 0.0405715182, 0.0137030426, 0.0147185251, 0.013225168, -0.0304166917, -0.0225078743, 0.000365872431, 0.0102504017, 0.0150052495, -0.0107760634, -0.00793271139, 0.0100831455, 0.015984891, -0.00507144, 0.0146946311, -0.00541789876, 0.016737543, 0.0398786031, 0.03201757, -0.0178844407, 0.00139703532, 0.000883320579, -0.0129264966, 0.00488327676, -0.00893624779, 0.00185176253, 0.0304644797, -0.0020354453, 0.0193419587, -0.00373040535, 0.00677984, 0.0177649725, 0.0345980898, 0.0249928199, 0.00410971791, 0.00322863762, -0.02438353, 0.00772364158, -0.00918713119, -0.034168005, 0.0458759218, -0.028552983, -0.00290607242, -0.0198317785, -0.0114211934, 0.00316890329, 0.02161186, 0.0149933025, 0.0120185362, 0.0174782481, -0.0294131562, -0.0509891771, -0.0177888665, 0.0131654339, -0.0321609341, -0.00524466904, 0.000551048666, -0.0419812463, 0.0159132108, 0.0124008348, -0.00433670823, 0.0117019443, 0.0220777877, -0.00158893166, -0.0201185029, -0.00562099507, -0.00436657527, 0.0301299673, 0.0300582871, -0.000203843214, -0.0018637093, -0.00214446033, -0.0302494355, 0.00383195374, 0.00952761713, 0.0168809053, 0.024419371, -0.0144198537, -0.00874509756, 0.0317069516, -0.034168005, -5.63742215e-05, -0.0445856638, 0.0132968491, -0.000843746646, -0.0166539159, -0.0194375329, 0.0115824761, -0.00140002207, -0.00424710708, 0.000278137712, -0.000104441642, -0.00998757, -0.0109552657, 0.00542685902, 0.0456130914, -0.0364856943, -0.0311573967, -0.0239056572, 0.00844642613, -0.00778337568, 0.00784908328, -0.00715019275, -0.000408806431, 0.0260202494, 0.0200229287, 0.00963513833, -0.0204052273, -0.00726966094, -0.00288815214, 0.0109851332, -0.0148141, -0.00251033297, 0.00961721782, 0.02093089, -0.000583902525, 0.0304644797, 0.00613471, 0.00809996761, 0.00640351418, 0.0476918444, -0.00684554782, -0.00432177493, -0.0326865949, -0.00917518418, -0.0112718577, -0.0254468, -0.0296998806, -0.0166658629, -0.0384927653, 0.0245866273, 0.0289352816, -0.00912142359, -0.0280512143, -0.000914681063, 0.000784759, 0.0115645556, -0.00252974639, -0.0307989921, -0.0145393219, -0.00285380497, 0.0113375653, -0.00528648309, -0.0254229065, 0.00538504496, 0.00302255433, 0.0206561126, 0.0235950388, -0.00679776026, 0.00925881229, -0.012544198, -0.0101309326, -0.0248494577, -0.0218866374, -0.00152845075, 0.020966731, 0.0135118924, -0.0536174849, 0.0201065559, -0.0134521583, -0.00494301133, 0.00945593603, 0.0193897448, -0.0120663233, -0.0263547618, -0.00571657, -0.0242999028, 0.0186251458, 0.00337199983, -0.0107641164, 0.0036288572, 0.00321669062, 0.0122096855, 0.00128354016, -0.0141211823, -0.0155667514, -0.055098895, -0.0384210832, -0.0421962924, 0.00282393792, 0.0106028337, 0.00506546628, -0.0172990449, -0.00304346136, -0.0134760523, -0.0220061056, -0.0478113145, -0.0120603498, 0.015996838, 0.000677610689, 0.00761612, 0.00084748, 0.00416945247, -0.0629360303, -0.0206561126, -0.0148618873, -0.0179202817, 0.00347952149, -0.0263547618, -0.00741899665, 0.0504157282, -0.0257574189, 0.0312051848, 0.00339589338, 0.00669621211, 0.0140495012, 0.0207875278, -0.0136552546, -0.0117079178, -0.000226990247, 0.0189477112, -0.00923491921, -0.0334750861, 0.0266175922, 0.0173946209, 0.0331405737, -0.0162835624, -0.0214684978, -0.00440540258, 0.0108119035, 0.0168928523, 0.0374653377, -0.0252556503, 0.00347653474, 0.0350520723, -0.0210503582, 0.00780726969, 0.0163671914, -0.0339768566, 0.0282662585, -0.0197959375, -0.014670738, 0.00866744295, -0.0384927653, 0.0194733739, 0.0386122353, 0.0351715423, -0.0251122881, -0.00614068331, -0.0294370502, -0.00408881111, 0.00195480417, -0.00538803171, 0.0147424191, 0.00350341527, -0.0122813666, 0.0199034605, 0.0029239927, -0.049507767, 0.0551944673, 0.00107895036, -0.0439166389, 0.0189835522, 0.0186609868, -0.0391856842, 0.01080593, -0.00497586513, 0.0040708906, 0.045206897, 0.0282184705, -0.0222808849, 0.00451591099, -0.00621833792, 0.0335228741, 0.00107521692, 0.021599913, 0.0165583398, 0.00494898437, 0.00928270631, -0.00753249181, -0.00256558717, 0.000650730275, -0.0139061389, 0.039806921, -0.0231530052, -0.0123052606, 0.00839863904, -0.023714507, 0.0252795443, 0.0210623052, 0.014634897, -0.0110926544, -0.0339051746, -0.00292249932, 0.0147902062, -0.0434626564, 0.00521181524, -0.0203932803, -0.00701877708, -0.00548958, 0.00948580261, 0.0201185029, 0.0306795239, -0.0189118721, 0.00655285, -0.0247777775, -0.000545075221, 0.00987407565, 0.0336184502, 0.0182667412, -0.0202738121, -0.00288815214, 0.00528050959, 0.00127831346, -0.0252078641, 0.0102922153, 0.0327821709, 0.029222006, 0.000336191966, 0.0245149452, 0.00633183308, -0.0219583195, 0.00663647801, -0.018099485, 0.0065647969, 0.0117198648, -0.000686944171, -0.0222092029, -0.016032679, -0.0210503582, -0.0139897671, 0.015984891, 0.0165702868, 0.012203712, 0.0213968176, 0.0101548266, 0.018147273, 0.00124844629, -0.0073174485, -0.0395440906, -0.012215659, 0.0249450337, 0.027191041, 0.0140136611, 0.0189118721, 0.00324357115, 0.0213968176, 0.0486237, 0.000884067267, -0.000213923369, -0.016725596, 0.023714507, -0.00633780658, -0.00521181524, 0.0425308049, 0.0245866273, 0.00938425399, -0.00260142772, -0.0120722968, 0.00010266828, 0.0158893168, -0.0016919733, -0.00138956856, 0.0181831121, -0.00259993435, 0.0167017039, -0.026522018, -0.0223764591, 0.00409478461, -0.00562398182, -0.0141570233, 0.00477276836, -0.0226512365, 0.00287321862, -0.0245866273, -0.0252317581, 0.0040440103, -0.00878093857, 0.00601225486, 0.0223406181, 0.0112001766, -0.00830306392, 0.0116661033, 0.0223525651, 0.016080467, 0.00259246747, 0.0334989801, -0.00684554782, 0.00140972889, 0.0298432428, -0.0189955, 0.0065647969, 0.00315396977, 0.00342874741, -0.00882872567, -0.0200348757, -0.00256558717, 0.016713649, -0.00124247291, -0.00353925582, -0.000158295821, 0.00215342059, 0.00562696857, -0.0333795138, -0.0271432549, -0.00305690151, -0.00702475058, -0.0307512041, -0.000786252378, 0.0232366323, -0.00967695192, 0.00102369615, 0.0039723292, -0.0162596703, 0.0199273545, -0.00826125, -0.0163910855, -0.00292249932, 0.00560606178, 0.016092414, -0.00508338679, 0.00153815758, -0.00778337568, 0.00494002458, 0.00520285545, -0.0175379831, -0.00487730326, 0.0149694094, 0.01462295, -0.00689333538, -0.00677386671, 0.000322005071, 0.0131773809, 0.026450336, 0.00951567, -0.000521554903, -0.00330927875, -0.011474954, -0.00654687639, 0.00143436925, 0.00494002458, 0.0078132432, 0.0126517192, -0.0175260361, 0.0224361941, 0.00502066594, -0.00373637886, -0.0239056572, -0.00367365777, -0.0202021319, 0.011015, 0.0227109715, -0.0331405737, -0.00633183308, 0.00391558185, -0.00392155489, 0.0101369061, 0.0053969915, 0.00924089178, 0.0158773698, 0.00690528192, 0.0107999565, 0.00930062681, 0.00567774288, -0.0218149573, -0.0137986168, 0.000409179775, -0.00756833237, 0.0142645445, 0.0059704408, -0.000455473841, -0.0127353473, -0.00953956321, 0.00999951735, -0.00421425281, -0.0141809164, 0.0150530366, 0.000259284076, 0.00642740773, -0.00374832563, -0.0364618, -0.0198915135, -0.00301658083, -0.00164418586, 0.0333078317, 0.0164149776, -0.0066782916, 0.0344547294, 0.0221375227, 0.0236189328, 0.00288665877, -0.027167147, -0.00448007043, 0.0267370604, 0.0234158356, 0.00294489972, 0.0137508297, 0.00961124431, -0.021635754, -0.0100353584, 0.0261158254, -0.0207277928, -0.0485998057, 0.0141331293, -0.00150754373, -0.0046771937, -0.0210503582, -0.0199990347, 0.0191030204, 0.00832695793, 0.0219822135, -0.00852408074, -0.0113435388, -0.0121738454, -0.0300821811, -0.0014537829, -0.00315695629, 0.0218507983, -0.000379312638, -0.00886456668, -0.0199393015, 0.0227229185, -0.00105655, 0.0247299895, 0.0136433085, 0.0131295938, 0.0229379609, -0.00869133696, -0.0112061501, 0.0176335573, -0.00907961, -0.0124008348, 0.0177530255, -0.0248494577, -0.0199393015, 0.00283887144, 0.00818956923, 0.00430684118, -0.00410971791, 0.00684554782, -0.00499677192, 0.014658791, -0.0010714836, -0.0167972781, -0.0235950388, -0.00710240519, -0.00248345244, 0.00755638583, 0.00753249181, -0.0325671248, -0.0138105638, -0.00571955694, 0.000700757722, -0.00251929299, -0.0117138913, 0.00796855241, -0.0138702989, -0.0018472824, 0.0243118498, -0.00405595731, -0.000369232468, -0.0185654126, 0.00568670267, -0.00111852423, 0.0233561, 0.0143003855, -0.0128787095, 0.0270237848, 0.000368485809, -0.00546568586, -0.0103997374, 0.0148857813, 0.0154472832, 0.0105849132, -0.000909454306, -0.0179322287, 0.00217283424, -0.0248972457, -0.00247001229, 0.00361989695, 0.000904974237, 0.0161163062, 0.0119826952, 0.0562457927, -0.0213848706, -0.00150157034, 0.00390960835, 0.0199393015, -0.0124725169, -0.00524168275, -0.00570761, 0.00407387735, -9.6974858e-05, -0.00821346231, 0.00244462513, 0.00350042852, 0.00497885188, -0.00969487242, -0.0115466351, -0.0072577144, -0.00525661604, 0.000567102281, 0.0145990569, 0.024359636, 0.0255901627, -0.0166658629, -0.0176455043, 0.0166180748, -0.00307631516, -0.00293593947, -0.00862562936, -0.0127234, -0.00392752839, -0.00651103584, 0.000230350299, -0.00836279802, -0.0185056776, 0.0017084002, -0.00333018578, 0.0151605587, 0.0207994748, 0.00324954442, -0.0158654228, 0.00087884051, 0.020966731, -0.00992783625, -0.0119050406, 0.0174424071, 0.0168331191, -0.0059196665, 0.0092707593, 0.0247538835, 0.0134163182, -0.0149335684, -0.00162626558, -0.025829101, 0.0165583398, -0.0169645343, 0.0221255757, 0.0117557049, 0.00439644279, -0.0152322398, 0.0234516766, 0.0165344477, 0.0173109919, 0.00851213373, 0.0182906352, 0.0138225108, 0.0161402, 0.0141331293, -0.00459057884, -0.00793271139, -0.0217193812, 0.0292459, -0.00565384887, 0.00730550149, -0.00487431698, -0.0174663011, -0.00352730881, 0.0236069858, -0.00215491396, 0.00874509756, -0.0181831121, 0.0196167361, 0.0039723292, 0.0259963553, -0.0244552121, -0.00123575283, 0.0207038987, -0.00798049942, 0.0151127717, -0.029341476, -0.0159490518, -0.0315874852, 0.0224242471, -0.00269252248, 0.0125203039, 0.0126517192, -0.00867939, -0.0249450337, 0.00119169871, 0.00289561902, 0.00517298793, 0.00271492265, 0.0092767328, -0.00416049222, -0.025781313, -0.0128906565, 0.00291951257, 0.00324357115, -0.0142406505, 0.0143362256, 0.00931257289, 0.0234397296, 0.0103041623, -0.00671413261, 0.00892430078, -0.0158176366, 0.0078132432, -0.0126158791, 0.00383195374, 0.00747873122, -0.0230574291, 0.00213998044, 0.00228782278, -0.0131057, -0.00587785244, 0.0114450864, -0.0227109715, 0.018828243, -0.0165583398, -0.011015, -0.0181950592, 0.00112897775, -0.0123052606, 0.0424352288, 0.0361272879, 0.0246583074, 0.0207636338, 0.00833293144, -0.00635572663, 0.000815372856, -0.0241923817, -0.00825527683, -0.0206561126, 0.00487431698, 0.0203335471, -0.0107461959, -0.0179083347, -0.00139479525, -0.0219105314, -0.00509533379, 0.0238459222, -0.0124486228, 0.0415033735, -0.00851810724, 0.0169286933, 0.0361033939, 0.0240251254, 0.0462582223, 0.0174663011, -0.00376624591, 0.0257574189, 0.0065588234, -0.00598238735, 0.00614665681, 0.00433372147, 0.00280900416, 0.0066185575, 0.0252795443, 0.00259097409, -0.0131057, -0.0241326466, 0.0164986067, -0.0179441758, -0.0020742726, -0.0117497314, 0.00485042296, 0.00996367726, 0.0177291334, -0.00272388291, -0.0053312839, -0.00925881229, -0.000329285191, 0.0110986279, 0.0159490518, -0.00544179231, -0.00100577588, -0.0190791264, -0.0443945117, -0.0185773596, -0.010101066, -0.0139778201, -0.000627583242, -0.007311475, 0.00549854, -0.000701504352, 0.016080467, 0.0109552657, -0.000140282209, -0.0233441535, 0.0134043712, 0.0127472943, 0.0170840025, -0.00313604949, -0.00248643919, 0.0148021532, -0.0179083347, 0.00649908883, -0.00756235886, -0.0118094664, 0.00372443208, -0.0122574726, 0.0157459546, 0.00519688195, 0.0133207431, 0.0127472943, 0.00983823463, 0.00115809822, -0.0136552546, -0.000890787342, -0.00912142359, -0.00331525225, 0.00737120956, 0.0225676093, 0.0152202928, -0.0170362145, 0.0132968491, -0.0417662039, 0.00274030981, -0.00308228843, 0.0169884283, 0.00209965976, 0.015327815, -0.0248255637, -0.00567176938, 0.00181293522, -0.00436060177, 0.00197123108, 0.000602569489, -0.00491911732, 0.0218866374, 0.0212295614, -0.000697770971, -0.011463007, 0.000330218521, 0.0172751527, 0.00307332841, 0.0226751305, 0.0293653682, 0.0208353139, -0.00339589338, 0.0298432428, -0.0233680476, 0.0223884061, 0.00898403488, 0.00274479, 0.00103340298, 0.0168331191, -0.0211937204, 0.0105311526, -0.0121499514, -0.0145273758, 0.000393499533, 0.00487730326, 0.021599913, -0.00622431142, 0.00560008828, 0.00332122552, 0.0102026137, 0.0185415186, 0.0124605699, -0.0144676408, -0.00762209343, 0.00583902514, 0.0111882295, 0.00272089615, 0.0012200725, -0.00992186274, 0.0140017141, 0.0114570335, -0.0134282652, 0.0144437477, -0.00940814801, -0.00514610764, 0.00503559923, 0.0213490296, 0.0152919739, 0.00122679269, 0.0184698384, 0.023714507, 0.00235950388, 0.0138344578, 0.00321967737, -0.0112479636, 0.0157698486, 0.0122933136, 0.00111255085, -0.00205037906, 0.00623028493, 0.0152202928, 0.00514013413, -0.000439046911, 0.0146826841, 0.0156742744, -0.0200468227, -0.013272956, -0.0106028337, 0.0275016595, -0.001996618, 0.0149216214, 0.00172184047, -0.00512221409, -0.0191747025, 0.0165583398, 0.00652895635, -0.011158362, 0.0135477334, 0.00817762222, -0.00464135315, -0.00389766134, 0.00338693336, 0.00897806138, 0.0093902275, -0.0172751527, 0.00306138163, 0.0173826739, 0.00612276327, 0.00291951257, 0.00623028493, 0.00978447404, 0.00810594112, 0.0134999463, 0.000656703662, 0.00244761189, 0.0058599324, 0.0204171743, 0.00374235236, 0.0157340076, 0.00171885372, 0.0107342489, 0.00786700379, 0.0167494901, 0.0200826637, -0.0141092353, 0.00525064254, -0.00574942399, 0.00290159229, -0.00410673115, -0.00284484471, -0.00823138282, -0.0288397074, 0.0212773476, 0.0219463725, 0.000729878142, -0.00168599992, -0.0151963988, -0.0204530153, 0.0131295938, -0.0109074786, -0.0412166491, -0.0353149027, 0.00326447817, -0.0154114431, 0.0227707047, -0.0205246974, 0.015351708, -0.00703072408, -0.0158295818, -0.00591070624, 0.00504157273, 0.00890040677, -0.0421007164, 0.0104475245, -0.0166539159, -0.0392812602, 0.0204888564, -0.00741302362, -0.021587966, 0.00490717078, -0.0119946422, -0.00526856305, 0.03768038, -0.0119289346, -0.0207158457, -0.0186370928, -0.0147663122, -0.000934094714, -0.00319578359, -0.0134879993, 0.00126113987, 0.00471602101, 0.00362587045, 0.0187565628, -0.00955151, 0.00126860663, -0.00425606687, -0.0172034707, 0.0141689694, -0.0361750759, 0.00086316024, -0.0147663122, 0.0164388716, -0.00773558859, 0.0193061177, -0.0249450337, -0.0140972883, 0.0147065781, 0.00535219116, -0.00855992176, -0.00831501093, -0.00912142359, 0.0151008246, 0.0011648183, -0.0157220606, 0.00582110509, -0.00134028774, -0.00192045688, 0.0175977163, 0.00873912405, -0.00154562434, 0.0104893381, -0.0404281579, 0.022997696, -0.0312290788, -0.0183264744, 0.0183742624, -0.00178008131, 0.00802231301, 0.000411419809, 0.00669621211, -0.0284096207, 0.00519688195, -0.00679178676, 0.00278361724, -0.00575539749, 0.0145871099, 0.00201155175, -0.00586889219, 0.00129474036, 0.00665439805, -0.00603316166, -0.0254229065, 0.0313724391, 0.00202797865, 0.00666037155, -0.0110627878, -0.00841656, -0.00825527683, 0.0260202494, 0.0105251791, 0.00522376224, -0.0134521583, -0.0053044036, -0.0175857712, -0.0207994748, -0.0177769195, -0.00510728033, 0.00750262477, 0.011498848, 0.0176932923, 0.00361392368, -0.0167614371, -0.0137508297, 0.0124605699, 0.0120842438, -0.0218627434, 0.00993978325, 0.0198915135, 0.0252317581, -0.0133207431, -0.0311812907, -0.00543880556, 0.00558515452, -0.0145393219, 0.0123052606, 0.00897208788, 0.0167733841, 0.00988004915, -0.00319877034, 0.000791479135, -0.0247777775, -0.00384091376, -0.00721590035, 0.0105371261, -0.00577630429, -0.0251839701, 0.0227945987, -0.00553438067, -0.00313306274, -0.00238041091, -0.0100831455, -0.0199034605, -0.0277405977, -0.010477392, -0.00359301665, -0.00141644897, -0.000779532304, 0.0134402113, 0.0116183162, -0.0195211601, -1.45718959e-05, 0.0110627878, 0.014646844, 0.00218328764, 0.0171317905, -0.00484146271, 0.0014590096, -0.0175140891, -0.00586291915, 0.0137627767, 0.0130937528, -0.0144198537, -0.00789687131, -0.000509981357, -0.011815439, 0.0151127717, 0.0192105416, -0.0275016595, -0.0133924242, -0.0253751203, 0.00373040535, -0.0119110141, -0.0123888887, -0.0189477112, 0.00365872425, -0.0203335471, -0.00102220278, 0.00722187385, -0.0151605587, -0.0210264642, 0.00249539921, 0.0016367191, -0.0131654339, -0.000128335349, 0.00713227224, -0.00700085703, -0.00319578359, -0.0161282532, 0.00213550031, 0.0100054909, 0.0117795989, 0.00715616625, -0.00497885188, 0.0124247288, 0.00124247291, -0.0046533, 0.000702624384, 0.0213848706, -0.0218627434, 0.00983226113, 0.00194136391, -0.0078311637, 0.00643935474, -0.0322804, 0.0225915033, -0.00528648309, 0.0241445936, 0.0472617559, 0.0322565064, 0.00968292542, -0.0167733841, 0.0171437375, -0.00577929104, 0.0344786234, 0.00487730326, -0.0258768871, -0.00235502375, -0.000293257937, 0.00491314381, -0.0366051644, 0.000784012373, 0.0156145394, 0.00161133206, 0.00568072964, 0.00431580143, 0.0142525975, -0.00947385561, -0.0138583519, -0.00399024971, -0.00210712641, 0.00600628136, -0.0143959597, 0.00251779961, -0.00500871893, 0.000145882295, -0.00993381, -0.00644532824, 0.0337857045, 0.0157698486, -0.0163671914, 0.00036307238, -0.00238787755, 0.00304644788, 0.00916921068, 0.0121200839, -0.0133685302, 0.00458460534, -0.0185773596, 0.00677386671, -0.025805207, -0.013272956, 0.0162596703, -0.000667157175, 0.00610185601, -0.0184578914, -0.00440241583, -4.97007823e-05, 0.0151366647, -0.00716811279, -0.00735926256, 0.00870925747, -0.000151855726, 0.00959332474, -0.016044626, -0.0165463947, -0.0212056674, -0.00982628763, -0.0145034818, 0.00453681825, 0.0078132432, 0.0234994628, 0.00427100062, -0.0026133745, -0.0102922153, 0.0040320633, -0.0159132108, 0.00109164382, -0.0178486016, 0.0170123205, -0.00407985086, 0.0162835624, 0.00992186274, 0.0110986279, -0.011134469, -0.00398427621, -0.0349326022, 0.00856589526, 0.00020066982, -0.020859208, 0.0039335019, -0.000284297799, -0.000695157622, 0.0156384334, -0.0128667625, -0.000931108, -0.013225168, 0.00840461254, 0.0163671914, -0.00434268173, -0.0182786882, 0.00491314381, -0.00378715293, 0.00828514341, 0.0213609766, 0.0227468107, -0.00437553553, 0.00241923798, 0.0367007367, 0.0105251791, 0.00328239845, 0.0101488531, 0.00513714738, 0.00201155175, 0.0148141, -0.0144556947, -0.00314799626, -0.0158176366, 0.00490717078, -0.0101488531, 0.0124486228, -0.00465031341, 0.0148141, -0.00038043267, -0.011463007, 0.0109552657, 0.00117004511, -0.0307273101, -0.0164149776, 0.0137149896, 0.024431318, -0.00585097214, -0.0285051949, 0.00281647104, 0.0103340298, -0.00687541487, 0.000578675768, 0.000105094987, 0.00392155489, 0.00792076439, -0.0170720555, 0.0212056674, -0.00544179231, -0.0131415399, 0.0138702989, 0.0163313504, -0.0003703525, -0.0202499181, 0.00975460652, -0.01606852, 0.0218627434, 0.0119408816, 0.00639156718, -0.00148962345, -0.0182906352, 0.00983823463, 0.000804172654, -0.0247538835, 0.0144556947, 0.0103459759, 0.00873912405, -0.0121439779, -0.0151008246, 0.000905720924, -0.0163313504, -0.0196764693, -0.00953956321, 0.00688736187, 0.0125919851, 0.0273821913, 0.00665439805, -0.0135716274, -0.0124844629, 0.00740107661, 0.00779532269, 0.00545971282, -0.00203693868, -0.00395440916, 0.0122455265, 0.0130340187, 0.0108955316, 0.0184817836, 0.00314500951, 0.00402907655, 0.000550675322, 0.00236398401, -0.00793271139, 0.00454876479, -0.0186370928, 0.0013865818, 0.000205523233, -0.0235114098, -0.0201901849, 0.0191747025, 0.0129026035, 0.0101369061, -0.000128802028, -0.000957241748, -0.00915726461, -0.0134282652, 0.0118094664, -0.0132012749, -0.00899000838, 0.00944398902, 0.00285231159, 0.00498183863, -0.0152800269, 0.000696651, -0.00773558859, -0.0250645019, 0.0119349081, 0.0059584938, 0.00439046929, 0.0196167361, -0.00235950388, -0.00109015044, 0.0132968491, 0.0136194145, 0.00149933028, 0.0171676297, -0.00411270466, 0.0126636662, 0.0179800168, -0.012544198, -0.00863160286, -0.00318383682, -0.0078132432, 0.0250406079, 0.000537981803, 0.00290607242, 0.00493405107, 0.0151486117, -0.0278361719, 0.0172751527, -0.00703072408, 0.0165344477, -0.00454577804, -0.00308826193, 0.00659466395, 0.0166061278, -0.0141928634, 0.00102966954, 0.0325910188, 0.00970681943, 0.0127234, -0.0196764693, 0.0143003855, 0.00684554782, 0.00108641712, -0.0266892742, -0.00370053831, -0.00645727525, 0.00493703783, -0.00201752502, 0.0133207431, -0.000138695512, 0.0175738242, -0.0171795767, -0.015327815, -0.0171676297, -0.00833890494, 0.00182189536, 0.00318981032, 0.0155548053, -0.0133087961, 0.0282901525, 0.0145034818, -0.0199751407, 0.0200587697, 0.0189716052, -0.0183623154, 0.00284036482, 0.013918086, 0.0142287044, 0.00947385561, 0.0227826517, -0.00358405639, -0.0290308576, -0.0195928421, -0.00824930333, 0.00858381484, -6.15543e-05, -0.0175140891, 0.0173707269, -0.0232963674, -0.016725596, 0.0118930936, 0.0215521269, 0.0273582973, 0.00851213373, 0.00286575174, -0.0184101034, 0.0172990449, 0.00350341527, 0.00713824574, -0.0202499181, -0.0101309326, -0.00293444609, 0.0214446038, -0.00473394105, -0.00567475613, -0.0220538937, 0.00268356223, -0.0200229287, -0.00111852423, 0.0249928199, -0.0356494151, 0.00318085, -0.0179441758, 0.0104893381, -0.0317547396, -0.00384091376, -0.00855394825, -0.02370256, 0.0247060955, 0.0064931158, -0.0118034929, -0.0171795767, 0.0110448673, 0.00172781385, 0.00937230792, 0.0375131257, 0.0251600761, -0.000319391693, 0.0301299673, -0.00435761549, 0.00123276608, 0.00315695629, -0.000427100051, 0.0190910734, 0.00633780658, -0.014634897, -0.0117377844, 0.00793271139, -0.0183503684, -0.00679776026, 0.00225646212, -0.00981434155, -0.0352432206, 0.00385584729, -0.00545971282, 0.0215043388, 0.000403953018, -0.0115705291, 0.0012820469, 0.0130698588, 0.00932452, 0.0108238505, -0.00145228952, -0.0066305045, 0.0199393015, -0.000340298691, -0.0473095439, -0.00660661049, 0.00600329461, -0.0281228963, 0.00384688727, 0.0113495123, 0.00732939551, 0.00975460652, 0.0110807074, -0.00542685902, 0.01815922, -0.00272836303, 0.00158295827, 0.0172034707, -0.00455473829, -0.0197720453, 0.0229857489, -0.0172632057, -0.00402310351, 0.003661711, -0.00649908883, -0.0157101136, -0.0245627332, 0.0478113145, -0.0228184927, -0.016020732, 0.0156742744, 0.0259963553, 0.0126517192, 0.0161163062, 0.0333556198, 0.033045, 0.0194972679, -0.0185893066, -1.40702214e-05, 0.00791479088, -0.00802828651, -0.0186012536, -0.0185534656, 0.0109433187, -0.0128428685, -0.000145322294, -0.00364080397, 0.0165225, -0.00347056123, 0.00372144533, 0.00541192526, -0.00161282544, 0.000565608905, 0.000154002424, -0.00726966094, 0.00391558185, 0.0134760523, 0.00213102018, -0.0110926544, -0.0109492922, -0.0221494697, 0.0114092464, 0.0190193933, 0.00115809822, -0.000913187687, 0.00384091376, 0.00709045818, -0.00677386671, -0.00830306392, -0.0168331191, -0.035529945, -0.0225795563, 0.0295087323, -0.0172273647, 0.00902584847, 0.00956345722, -0.0175977163, 0.0370113552, 0.00564190233, -0.00666634506, 0.00810594112, 0.00162178557, 0.0149455154, 0.0112838047, -0.00852408074, 0.00143884937, 0.0211817734, 0.0137269357, 0.0356016271, 0.00917518418, -0.0284813, 0.0206441656, 0.00591667974, -0.00458759209, -0.0199631937, 0.00855992176, -0.0103877904, -0.012568091, 0.00644532824, -0.0104893381, 0.00337199983, 0.0165822338, 0.00485639647, 0.0053372574, -0.00748470472, 0.0266175922, -0.0091393441, 0.0223167241, -0.0192224886, 0.00899000838, 0.0159609988, -0.00931257289, -0.0150530366, -0.00531037711, -0.00952761713, 0.00949775, -0.00158146489, -0.00612276327, -0.024419371, -0.0110807074, 0.0119050406, -0.00241326471, 0.0117377844, -0.00160535856, -0.0111165484, 0.0238339752, 0.0204769094, -0.0079506319, -0.00640351418, 0.00480263541, -0.0134043712, 0.00779532269, -0.0123888887, -0.00343770743, -0.00468316721, -0.0152919739, -0.0147185251, -0.00545672607, -0.00243417174, -0.00433969498, -0.0091512911, 0.00996367726, -0.0135596804, 0.015351708, -0.0128189754, 0.0150769306, -0.000235203697, 0.00315695629, 0.0120065892, -0.0247777775, 0.00952164363, -0.00272238953, -0.00863160286, -0.00140226213, 0.00148439675, -0.0194494799, -0.0133207431, -0.0065588234, -0.0131654339, 0.00215192721, 0.00213998044, -0.00217432762, 0.000183402881, 0.0112300431, -0.0153994961, 0.0155906454, 0.0133087961, -0.0296282, 0.0115466351, -0.0143481726, 0.0319219977, -0.000667903863, -0.0199512467, -0.0332361497, 0.0165344477, -0.0155428583, 0.0231649522, -0.00713227224, -0.0219463725, 0.0148021532, 0.00222360832, 0.00309722219, 0.00109313719, -0.00159191841, -0.0134043712, -0.0122933136, -0.00495495787, -0.0111523885, -0.0156025924, -0.0245149452, 0.0116123427, 0.0223167241, 0.0256140567, -0.0206083246, -0.00693514943, -0.00480263541, 0.0191030204, -0.0201065559, 0.0105908867, 0.003661711, -0.0168092251, -0.0204888564, -2.79421056e-06, 0.00955151, -0.000549555349, 0.00039499288, 0.021623807, 0.0230932701, -0.00621833792, -0.000849720032, 0.0161282532, 0.00227139588, -0.0152919739, 0.00855394825, -0.0125203039, 0.00103414967, 0.0128428685, -0.0103937639, 0.00679178676, 0.00549854, -0.0124725169, -0.00648714229, 0.00374533888, -0.00314500951, 0.00789687131, 0.00943204202, -0.00874509756, -0.00925283879, -0.0396157689, 0.0126278251, 0.029317582, -0.0118453065, -0.000324245106, -0.0121678719, -0.0280751083, -0.0200229287, -0.0249928199, 0.00615263032, -0.00289113889, -0.0100592515, -0.0091453176, -0.0200109817, -0.00094380154, -0.0212654024, -0.0152441869, 0.00161581207, -0.00458759209, 0.00222958182, 0.0250883959, -0.000912441057, 0.00453681825, 0.0115944222, 0.0120961908, 0.0172393117, 0.0104236305, 0.0014702098, 0.00201752502, -0.0280034281, 0.01606852, -0.0123052606, -0.0276211277, 0.0026357749, 0.0192105416, 0.0256379507, 0.0182428472, 0.0295326244, -0.00223256857, -0.0147663122, 0.00644532824, -0.00578227779, 0.000925134576, 0.00575838378, 0.0112419901, 0.011510795, -0.0183981564, -0.00778337568, -0.00602121465, -0.0046652467, 0.0136791486, 0.0133685302, -0.0090139024, -0.000732864894, 0.000740705, 0.0111643355, 0.0111284954, -0.0157937426, 0.0036676845, 0.0100413319, -0.00102294947, -0.00481458241, 0.00937828142, -0.00450993748, 0.00437852228, -0.0177530255, -0.00480263541, -0.00080566603, 0.00673802616, -0.0274299793, -0.00291503267, -0.00554931397, -0.0106745148, -0.00968889892, -0.0092707593, -0.036342334, -0.0133446371, 0.026426442, 0.0234875157, 0.00330031873, -0.0132968491, 0.01145106, 0.0109194256, 0.00798647199, -0.0217910632, -0.00592564, -0.0216835421, -0.00771169458, -0.00499677192, 0.00574942399, -0.00555528747, 0.00232217, 0.000920654507, -0.0248016696, 0.0220419466, -0.00992186274, -0.00103638961, 0.0134879993, -0.0123649947, 0.0226751305, 0.00847629365, 0.018171167, -0.0112778312, 0.011815439, -0.0182309, -0.00768182753, -0.000388272776, -0.0172871, -0.000397232914, -0.00551048666, -0.00980239455, 9.47348235e-05, -0.0170601085, -0.014646844, -0.028552983, 0.00734134205, -0.011875174, -0.0166778099, 9.11881e-05, 0.00356314937, 0.0158773698, -0.0205963776, 0.0230335351, -0.00381403347, 0.0189596582, 0.00625417847, -0.000860173546, 0.00473394105, -0.0174424071, -0.0221494697, 0.00692320243, -0.000436060189, -0.000262270798, -0.00152845075, 0.014658791, 0.0201185029, 0.015315868, -0.0109492922, 0.01185128, 0.00312410248, 0.00558216777, 0.0108835846, 0.0110090263, 0.010853718, 0.0109253991, -0.0146826841, -0.00317786331, 0.00402310351, -0.0136552546, -0.00911545, -0.0161999352, 0.00577331753, -0.00123201939, -0.00470108725, -0.0064931158, -0.0152919739, 0.0163194034, 0.00396934245, -0.00219224789, -0.0199273545, 0.0020190184, -0.00505053299, -0.0261636116, -0.0019144835, 0.00454876479, -0.011486901, -0.0145990569, -0.0149335684, -0.000745185069, 0.0129742846, -0.00861965586, 0.00615263032, -0.0104236305, -0.0356255211, -0.0225317683, -0.00842253305, -0.00452487124, -0.0407148823, -0.0192941707, -0.00596745405, -0.000297738035, 0.0134879993, -0.0224123, -0.00262084138, -0.00707851164, 0.00651700934, -0.011182256, -0.0269759987, 0.0290786438, -0.00284185819, 0.0165702868, 0.00563294208, -0.00899000838, 0.0108776111, -0.00706059113, 0.0110926544, 0.00600926811, 0.0144676408, -0.00327045145, -0.0234277826, -0.00385286077, -0.00568072964, -0.0124247288, 0.0281706844, 0.00769377453, 0.00747873122, 0.0009072143, 0.0196406301, -0.0126278251, 0.00871523097, 0.00300015393, 0.00533427065, 0.0402370058, -0.0149694094, 0.00482652942, -0.0019309104, 0.04322372, -0.00271492265, 0.0078908978, -0.00237294403, -0.00651700934, 0.0137149896, 0.0126875602, 0.029317582, -0.0159371048, 0.0198676195, -0.0301538613, 0.0253512263, -0.00166061276, 0.00965305883, 0.00443526963, -0.00304346136, -0.018171167, -0.00281647104, 0.00343173393, 0.00259396085, 0.0148021532, -0.00560008828, 9.89348919e-05, 0.00753846532, 0.00799244549, -0.00222510169, 0.000123575286, -0.0264025498, -0.000425606704, 0.0167853311, -0.0280034281, 0.000931854651, -0.0216715951, 0.0316591635, 0.00276271021, -0.00670815911, 0.0168092251, 0.0072517409, 0.0442750454, -0.0131057, 0.0290308576, 0.00720395334, 0.0151605587, 0.0165225, 0.00943801552, -0.000325365138, 0.00747275772, -0.0338096, 0.0148618873, -0.00396336894, 0.00155607786, 0.0171437375, 0.00302255433, 0.0101667736, -0.0175499301, 0.0245866273, -0.00116407161, 0.0143720666, -0.0109791597, -0.010077172, 0.0336423442, 0.00277615036, 0.00945593603, -0.00488327676, 0.0366051644, -0.0175140891, -0.00269998913, -0.0236069858, -0.0165583398, 0.0222569909, -0.0113076977, 0.00734134205, -0.0235114098, 0.0110030528, -0.0176335573, 0.000605556183, -0.00609886926, -0.00281647104, -0.0107461959, -0.0212654024, 0.0103877904, -0.00203843205, 0.015327815, -0.0311335027, 0.00657077, -0.0198556725, -0.00204589893, -0.00639156718, 0.00223256857, -0.0147185251, -0.0178008135, -0.0035571761, -0.00324954442, 0.00820151623, -0.011194203, -0.0104893381, -0.0221614148, -0.00954553671, -0.0163552444, 0.0165463947, -0.0180636439, 0.0162716154, 0.00878691208, 0.0013201274, 0.0120961908, -0.0039185686, 0.0188999251, -0.00390064809, -0.00793271139, -0.00580019783, -0.0270237848, -0.000947534922, -0.0115585821, 0.013930033, 0.018828243, -0.0175260361, -0.00279556401, 0.0114928745, 0.00368560478, 0.0157340076, 0.000192083025, -0.0019757112, 0.00370053831, -0.0254706945, -0.0118572535, -0.00549256662, -0.0503679402, 0.0291503258, 0.00874509756, -0.000478994218, -0.0128787095, -0.00184130901, -0.0142645445, 0.00306138163, -0.00477874186, -0.0137866708, -0.0107999565, 0.0130937528, -0.00503559923, 0.00761014642, 0.0116183162, -0.00766988099, 0.0107043823, 0.0225915033, -0.00276719034, 0.0222092029, 0.00345264096, 0.0124247288, -0.0161879882, 0.0286963452, -0.0242640618, -0.0207158457, 0.0190432873, -0.0316830575, -0.00316890329, -0.00689333538, -0.0129264966, -0.0030180742, -0.00632585958, -0.0252317581, 0.0138941919, -0.0163791385, -0.00664842455, 0.00202200515, 0.00677984, -0.00474588806, -0.0270476788, -0.00558515452, -0.00961124431, 0.00102742948, -0.00464732666, -0.00760417292, -0.0144556947, 0.0123052606, -0.00757430587, 0.0114271669, 0.011182256, -3.19905048e-05, 0.0154711772, -0.00891235378, -0.000312858261, -0.0080760736, 0.0177888665, 0.0200229287, -0.00471900776, 0.0169525873, 0.0223167241, -0.01815922, -0.0147424191, 0.00578825129, 0.0309901405, 0.0196525753, 0.00997562334, 0.0066305045, -0.00554035371, -0.00932452, 0.0266892742, -0.00651700934, -0.0115585821, 0.0026357749, 0.00434865523, 0.00768182753, 0.0109970802, -0.00645727525, -0.0178844407, -0.00663647801, 0.00864355, 0.00334213255, -0.00841656, -0.018876031, -0.00356314937, 0.00569267618, 0.0105012851, 0.0220061056, 0.0177888665, 0.0026686287, -0.0133446371, -0.0178724956, 0.00874509756, 0.0166778099, 0.0284574088, 0.0206322186, 0.00754443882, -0.0296282, -0.0197720453, -0.029341476, 0.00217283424, 0.00847032, -0.000260404107, 0.0161521472, 0.0277405977, 0.0046652467, -0.00822540931, 0.013953926, 0.0225795563, -0.0170123205, 0.00116631167, 0.0340724289, -0.0222450439, -0.0250645019, -0.00528050959, -0.0191508085, -0.0246583074, 0.0136313615, 0.00379611319, 0.00941412151, 0.0137627767, -0.00357210962, 0.0261158254, -0.0191747025, 0.0131176468, -0.00862562936, -0.0298910309, 0.00405297056, -0.0102145607, -0.0239892844, -0.0123530477, -0.024431318, -0.0150291435, 0.0152202928, -0.0241087526, -0.0184339974, -0.00209816638, 0.0255184826, 7.63012e-05, 0.0215162858, -0.000848226715, 0.0239653904, -0.014646844, -0.000855693477, 0.0173109919, -0.0120065892, -0.000729504798, -0.0105192056, -0.002263929, -0.0162596703, 0.00260740099, -0.013261009, 0.000336938625, 0.00709045818, 0.00869731, 0.0080820471, 0.00651103584, -0.0137986168, 0.00212504668, -0.0146946311, -0.0129862316, 0.0164627656, 0.000707104453, 0.024431318, -0.0112539371, 0.00273134978, -0.00977850053, -0.00676191971, 0.00375728589, 0.0165822338, -0.00189208309, 0.0039663557, -0.00789687131, -0.0078908978, -0.00627209898, 0.00861368235, 0.0205963776, -0.0019921381, -0.00857186876, -0.00279108388, -0.00465031341, 0.00581513159, -0.00728160795, 0.00850018673, -0.00439942908, -0.0134760523, 0.0138105638, -0.0157817956, -0.0161999352, 0.0200109817, 0.00127906015, 0.000730251486, -0.00101100258, 0.00411569141, -0.00400219625, 0.011815439, -0.0263547618, 0.0190910734, 0.0045995391, -0.0183742624, 0.0109313717, -0.0177171864, 0.0175260361, -0.00493106432, 0.0205605365, -0.00455473829, 0.0152919739, 0.0121260574, -0.00388571457, -0.00433372147, -0.0230335351, -0.0282184705, -0.0090855835, 0.0212773476, 0.0136194145, 0.0140614482, -0.00860173535, 0.00646922179, 0.00951567, 0.00544776581, -0.0119468551, 0.0297237746, -0.0117795989, 0.0272627231, 0.00448903069, -0.0108596906, 0.00686346786, -0.00258500059, -0.000127402, 0.0233322065, 0.00746678421, 0.00711435219, 0.0185056776, -0.00149709021, 0.0402609, 0.0154950703, 0.0404042639, -0.000983375474, 0.0128309224, -0.00929465331, -0.0187565628, 0.0102742948, -0.0229379609, -0.00560307503, -0.00239683781, -0.00678581372, 0.00266116182, 0.00973668694, -0.00828514341, -0.0032077306, 0.00597641431, 0.0221494697, 0.0321848281, -0.00339290686, -0.0033510928, 0.000827319687, -0.00613471, -0.00615860382, -0.02647423, 0.0010991107, 0.00839863904, -0.0350520723, -0.008010366, -0.0201304499, -0.0113375653, 0.00287023187, -0.00128503353, -0.023009643, -0.0147304721, -0.000872867065, 0.00848824065, -0.00844045263, -0.00377520616, -0.0265698042]
09 Jun, 2022
vector :: cbegin() and vector :: cend() in C++ STL 09 Jun, 2022 Vectors are known as dynamic arrays which can change its size automatically when an element is inserted or deleted. This storage is maintained by container. vector::cbegin() The function returns an iterator which is used to iterate container. The iterator points to the beginning of the vector. Iterator cannot modify the contents of the vector. Syntax: vectorname.cbegin() Parameters: There is no parameter Return value: Constant random access iterator points to the beginning of the vector. Exception: No exception Time Complexity – constant O(1) Below program(s) illustrate the working of the function CPP // CPP program to illustrate // use of cbegin() #include <iostream> #include <string> #include <vector> using namespace std; int main() { vector<string> vec; // 5 string are inserted vec.push_back("first"); vec.push_back("second"); vec.push_back("third"); vec.push_back("fourth"); vec.push_back("fifth"); // displaying the contents cout << "Contents of the vector:" << endl; for (auto itr = vec.cbegin(); itr != vec.end(); ++itr) cout << *itr << endl; return 0; } Output: Contents of the vector: first second third fourth fifth vector::cend() The function returns an iterator which is used to iterate container. The iterator points to past-the-end element of the vector. Iterator cannot modify the contents of the vector. Syntax: vectorname.cend() Parameters: There is no parameter Return value: Constant random access iterator points to past-the-end element of the vector. Exception: No exception Time Complexity – constant O(1) Below program(s) illustrate the working of the function CPP // CPP programto illustrate // functioning of cend() #include <iostream> #include <string> #include <vector> using namespace std; int main() { vector<string> vec; // 5 string are inserted vec.push_back("first"); vec.push_back("second"); vec.push_back("third"); vec.push_back("fourth"); vec.push_back("fifth"); // displaying the contents cout << "Contents of the vector:" << endl; for (auto itr = vec.cend() - 1; itr >= vec.begin(); --itr) cout << *itr << endl; return 0; } Output: Contents of the vector: fifth fourth third second first Learn C++ Online – Master everything from basics to advanced concepts. Apply your knowledge with practical exercises and boost your skills. Take the Three 90 Challenge: finish 90% in 90 days for a 90% refund. Start now and level up your C++ programming!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum/Algorithm for Dynamic Time out timer Calculation/Difference between Round trip time (RTT) and Time to live (TTL)/Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms/Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm/Round Robin Scheduling Algorithm with Different Arrival Time/Selfish Round Robin CPU Scheduling/Find the order of execution of given N processes in Round Robin Scheduling/Calculate server loads using Round Robin Scheduling/set::lower_bound() Function in C++ STL/Implementation of lower_bound() and upper_bound() in List of Pairs in C++/Difference between std::set::lower_bound and std::lower_bound in C++/Difference between std::set vs std::vector in C++ STL/std::minmax() and std::minmax_element() in C++ STL/std::rotate vs std::rotate_copy in C++ STL/std::bitset::to_ullong and std::bitset::to_ulong in C++ STL/std::upper_bound and std::lower_bound for Vector in C++ STL/std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++/std::string::append vs std::string::push_back() vs Operator += in C++/Vector push_back() in C++ STL/vector :: cbegin() and vector :: cend() in C++ STL
https://www.geeksforgeeks.org/vector-cbegin-vector-cend-c-stl?ref=asr10
PHP
vector :: cbegin() and vector :: cend() in C++ STL
What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, jQWidgets jqxTreeMap width Property, Round Robin Scheduling Algorithm with Different Arrival Time, Difference between Flow and TypeScript, jQWidgets jqxTree destroy() Method, jQWidgets jqxTree collapseAll() Method, Find the order of execution of given N processes in Round Robin Scheduling, jQWidgets jqxScrollView buttonsOffset Property, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Vector push_back() in C++ STL, jQWidgets jqxListBox enableHover Property, Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm, std::rotate vs std::rotate_copy in C++ STL, Selfish Round Robin CPU Scheduling, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxSlider buttonsPosition Property, std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++, std::upper_bound and std::lower_bound for Vector in C++ STL, Difference between Round trip time (RTT) and Time to live (TTL), jQWidgets jqxSlider rtl Property, Difference between std::set::lower_bound and std::lower_bound in C++, jQWidgets jqxTooltip opacity Property, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, jQWidgets jqxToolBar height Property, PHP, std::minmax() and std::minmax_element() in C++ STL, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, Node.js date-and-time Date.transform() Method, TypeScript Optional Parameters, jQWidgets jqxToolBar theme Property, Difference between std::set vs std::vector in C++ STL, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, Steps to Diagnose and Resolve a Slow Network, How to use Optional Chaining with Arrays and Functions in TypeScript ?, Calculate server loads using Round Robin Scheduling, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, jQWidgets jqxScrollView showButtons Property, Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms, jQWidgets jqxScrollView disabled Property, jQWidgets jqxSplitter destroy() Method, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, set::lower_bound() Function in C++ STL, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, jQWidgets jqxTree collapseItem() Method, std::string::append vs std::string::push_back() vs Operator += in C++, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), jQWidgets jqxSortable opacity Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, vector :: cbegin() and vector :: cend() in C++ STL, jQWidgets jqxSlider height Property, jQWidgets jqxSwitchButton onLabel Property, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, jQWidgets jqxToolBar tools Property, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTree width Property, Implementation of lower_bound() and upper_bound() in List of Pairs in C++, jQWidgets jqxTree clear() Method, TLS Handshake?, Algorithm for Dynamic Time out timer Calculation, Adhoc TCP, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, jQWidgets jqxTabs position Property, Differences between Wireless Adhoc Network and Wireless Sensor Network, jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, std::bitset::to_ullong and std::bitset::to_ulong in C++ STL, Impact of Three-way Handshake and Slow Start Algorithm, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, How to Sort an Array Having Optional Properties in TypeScript ?
GeeksforGeeks
[-0.00553469686, 0.0039533549, -0.0107502891, 0.032052312, 0.00331869069, -0.0456390902, -0.0271451883, 0.0146220941, -0.0196710434, -0.00139165181, -0.0361368544, 0.00655583246, 0.00438591931, -0.0366474204, -0.00917603821, 0.00540705491, 0.0265637077, 0.0265920721, -0.000371624221, -0.00548151275, -0.0106013734, -0.01250182, -0.0148064662, -0.0290030874, -0.00174444, 0.0216424018, -0.0356262848, 0.00166909583, -0.00602753647, -0.00551696867, 0.0307758916, 0.00278507639, 0.0044639227, -0.0259964112, -0.00338783, 0.0217133146, 0.00220891484, 0.0142108034, -0.0484472103, -0.0359383, 0.0250178222, 0.00174000801, 0.0222806111, -0.0134378606, -0.0348037034, 0.0289605409, -0.0131613035, -0.0510851443, -0.00442492077, -0.0169196501, 0.0268473569, 0.00220182375, 0.03522918, 0.0174727645, 0.0283790603, 0.0144306319, 0.0378387459, 0.0173167586, -0.0130762085, -0.0186499078, -0.0136718713, -0.0234719366, -0.00288612628, -0.0240108687, 0.000658597, 0.0295562018, -0.0690968409, 0.0604171902, 0.010126261, 0.00552405976, -0.0354561, 0.0204368941, 0.0190753806, 0.0029534928, -0.0383493155, -0.0257553086, 0.0239115916, 0.0366757885, -0.00719404221, 0.0364488661, -0.011530323, 0.0195717663, -0.0247625392, -0.0111899441, 0.0281095933, -0.0228620917, -0.00673665851, -0.0348604359, 0.0442208461, 0.0120763471, -0.0267055333, -0.00155740906, 0.0105233695, -0.058374919, -0.0155439526, 0.0113246776, 0.0522764698, 0.00482202927, -0.0224791653, 0.0472558849, 0.0248759985, 0.0191321094, 0.00645301, -0.0184229873, 0.00543187419, 0.0290314518, 0.0304355137, 0.00744578056, -0.0140051581, -0.0164799932, 0.00380443921, -0.0042086388, 0.00281698699, 0.0499221832, -0.0364772342, 0.00135530927, 0.0250603687, -0.0193164814, 0.0385478698, 0.0117856069, -1.68277966e-05, 0.02395414, 0.0338676646, 0.0416963696, -0.0512553342, 0.012594006, 0.0180684272, -0.00897039287, -0.0142675331, 0.0212311111, 0.00274252915, -0.0356262848, 0.0117359683, -0.00448874198, 0.0348320715, 0.0101688085, 0.0207205433, 0.0362503156, -0.0080414433, -0.00738195935, -0.0326479748, -0.013473317, -0.00797053054, 0.0464616716, -0.0497803614, -0.0443910323, 0.000604083238, 0.0433698967, -0.0148490136, -0.0148490136, -0.031513378, 0.0139413374, 0.0506029427, -0.0210325569, 0.0337825678, -0.0541769154, 0.0364205, -0.00382216717, 0.0387180597, -0.0296696629, 0.0241952408, 0.00977879204, 0.00271770987, -0.00537869, -0.0057935263, 0.0277550332, 0.0380656645, -0.0183237102, -0.0633671358, 0.0490145087, 0.0134591348, 0.0364772342, 0.0106013734, -0.0140618877, -0.0355411917, -0.0270884577, 0.00923276786, -0.00283471495, 0.0168912839, 0.0117714247, -0.0116437823, -0.00413418096, 0.00971497, -0.00135619577, 0.00168682379, 0.0199830569, 0.0574956089, 0.000189025319, 0.00789961871, -0.0272586476, 0.0193590298, -0.00261134165, 0.0478515476, 0.0229188204, 0.0378103815, 0.00956605468, -0.0217842255, -0.00109027501, 0.0162530746, 0.0524466597, -0.0146079119, 0.01011917, 0.0311162714, -0.00967242289, 0.0579778105, 0.0184229873, -0.00826127082, -0.00749541912, 0.0109488424, -0.0123954518, -0.00870092586, 0.0127074653, 0.0317119323, 0.00751669239, 0.0129698403, 0.0127925603, -0.0497236326, 0.00530777778, -0.0430862494, -0.00694230385, -0.0118210632, -0.0102751767, 0.0445044935, -0.0527019426, -0.0410156138, -0.0582614578, -0.00208836421, 0.00643882714, -0.0137498742, -0.0031786391, 0.0216707662, 0.0361084901, -0.0117572416, -0.0091831293, 0.00143685832, -0.016550906, -0.0177280493, -0.0138562424, -0.0111899441, 0.0461496562, 0.0367892459, 0.0340094902, -0.0515673496, 0.00349597121, 0.0293576494, 0.0438804664, -0.011360134, -0.00340555818, -0.000470236497, -0.0270459112, 0.0128776543, 0.0174160358, 0.0492981561, 0.00667992886, -0.00833927374, 0.0132534895, 0.000155120419, -0.00782870594, -0.00365197798, 0.0134307696, 0.00656292355, 0.0285634324, -0.01761459, 0.0253723841, 0.00850946363, 0.00608781213, 0.0406185053, 0.00884984154, -0.0215856712, -0.05000728, 0.02395414, -0.00532550598, 0.0511135086, -0.0371863544, 0.00295881135, 0.00599208055, -0.0126791, 0.00785707124, 0.0179833323, -0.0105304606, -0.000865571958, -0.0242519714, -0.000603640045, 0.0175578594, 0.0219118688, -0.0315701105, -0.0463198461, -0.00159907, 0.0161963459, -0.0119628869, -0.0133244013, -0.00797053054, -0.00496739941, 0.012594006, 0.0207630899, 0.0352008119, -0.0336123817, -0.0493548885, -0.038462773, -0.0313431881, 0.0050454028, -0.0278684925, 0.00195363094, -0.0316552036, -0.00536805298, -0.0481919274, 0.00719049666, -0.0331869088, 0.0420651138, -0.0226635374, 0.00438946486, -0.0654661357, 0.0239825044, -0.0114735933, 0.0211885646, -0.00798471272, 0.037413273, 0.00558433542, -0.00187030912, -0.0155865, 0.0116579644, -0.0373849086, 0.0122678094, 0.0225642603, 0.0247909036, -0.0338109359, 0.0173309408, 0.0179975145, 0.00406326866, -0.0410439782, -0.0147639187, -0.00921858568, -0.0292441882, -0.00944550429, -0.0444477648, -0.0140547967, -0.0359666646, -0.0131471213, 0.00916185509, 0.0100908056, -0.00975751784, -0.00460929284, 0.00722595258, -0.00140406145, -0.00623672735, -0.0299816765, 0.0107006505, -0.00843146, 0.0208765492, 0.00641400786, 0.00119309768, -0.00863001402, -0.0122678094, -0.0482486561, 0.032846529, 0.00594244199, -0.0110977581, -0.0314282849, -0.00336301094, 0.0239825044, 0.00886402465, 0.041724734, -0.00754505768, 0.0288045332, 0.0103673628, -0.0313148238, -0.0365906917, -0.0235286653, 0.0207772739, 0.000865571958, -0.0137002356, -0.0398526527, 0.0222380646, -0.00836054794, -0.0408737883, -0.014537, 0.00467311358, 0.00541060045, -0.00557369832, -0.0163665339, -0.0256985798, 0.00985679496, -0.0162388925, -0.0159694254, -0.00148472411, -0.00431855256, -0.0231031924, 0.041469451, 0.00841018651, -0.0020032695, -0.0137286009, -0.00218232279, -0.00524395658, -0.00569070363, -0.0191179272, -0.00780034158, -0.0197703205, -0.0536947139, -0.0147071891, -0.0191462934, 0.0340378545, 0.0204510763, 0.0233726595, -0.0115232319, -0.00173646235, 0.0181960687, -0.0108779306, -0.0114877755, -0.000289188785, 0.0256985798, 0.0090625789, -0.00774361147, 0.0153453993, -0.0230890103, 0.0321090408, 0.0267197154, -0.0123387221, 0.0189619213, 0.00492485194, -0.00745287165, 0.0174444, -0.0389166139, -0.00445683161, 0.0179833323, 0.0285776146, 0.0207063612, -0.0339527577, 0.0152035747, 0.0023596033, 0.0226068068, -0.0429727882, 0.0116012348, 0.021926051, 0.0345200561, 0.00804853439, -0.0586018376, 0.0292725544, -0.00570843183, -0.0318821222, -0.0193164814, 0.0372998156, 0.0420651138, 0.0439088307, -0.0243370645, -0.00897748396, 0.0232592, -0.0310595408, -0.00479721, -0.000222819406, -0.0157141425, -0.0321657732, 0.0103319064, 0.00168505101, -0.00689266529, 0.0168771017, -0.00770815555, 0.031513378, -0.0315701105, 0.0446179546, 0.0127712861, 0.00560206315, -0.00323536899, -0.00631473074, 0.0050454028, 0.0538649037, 0.00646719197, 0.0175436772, -0.0284783375, -0.0285067018, -0.00131985324, -0.00883565936, -0.0288470816, 0.0472558849, 0.033640746, 0.0192881171, 0.00501349196, -9.97756724e-05, -0.00262729684, -0.0449866951, -0.0269891806, 0.0173025746, -0.0230039153, -0.0251171, -0.0218409561, -0.0204936247, -0.021387117, 0.00211141049, -0.0198270492, -0.00465538539, 0.00362538593, 0.00549569493, 0.0270459112, -0.0115515962, -0.032846529, 0.00245356187, 0.0138349691, -0.059509512, 0.0225075297, -0.0059353509, 0.0381791256, 0.0287336204, -0.0119628869, -0.037413273, 0.048163563, 0.00527586741, -0.0348320715, -0.0409872495, 0.0175720416, 0.00828254409, -0.00170011981, -0.037072897, 0.0180967916, -0.00806980766, -0.00343569578, -0.00909803435, -0.00866547, 0.0221955162, 0.0104099102, -0.0571552292, -0.00120196166, 0.0433982648, -0.00661256211, -0.00178876007, 0.0326763391, 0.00983552169, 0.0516240783, 0.00943132211, -0.00591407716, 0.00867965259, -0.0219827797, 0.0219969619, 0.0064352816, -0.0133456746, 0.0154730408, -0.000822581467, -0.0085307369, 0.00866547, 0.00126489624, -0.028265601, 0.00794216618, -0.0387180597, 0.0254007485, -0.00535032526, -0.00177723693, -0.0305206086, -0.00454901718, -0.00959442, 0.0251312815, 0.0109417513, -0.00100695319, -0.000420597964, 0.0384344086, 0.00515531655, -0.000740589225, -0.0153879458, 0.038462773, -0.0334989205, -0.00327437068, 0.00610199431, -0.024209423, 0.000484862132, 0.0317402966, 0.0378387459, -0.00298363063, -0.0113388598, -0.016026156, 0.00474402588, 0.00541060045, -0.0349738933, 0.0130549353, -0.00632891338, -0.0121968975, 0.0340662189, 0.00329919, 0.0380373, -0.00480075553, 0.0054744212, 0.0167069137, -0.0171891153, 0.0167069137, -0.00588571234, -0.0400795713, 0.00359524833, -0.0384911411, -0.0122819925, 0.0238548629, -0.0126932831, -0.0159694254, -0.033101812, -0.00748123648, -0.021387117, 0.00692812121, 0.0145157259, 0.0122749, -0.00547087565, -0.016281439, 0.00261843274, 0.00639628, -0.0372714512, 0.00137392373, 0.0182528, 0.0146646416, 0.0156574119, -0.0370161645, -0.0177989602, -0.0254574772, 0.0358815715, -0.0063040941, 0.00505603943, -0.0075805136, -0.0438804664, 0.0215005782, 0.00986388605, 0.00984970387, -0.00666929176, 0.00449937861, 0.0272444654, 0.0270459112, -0.0426891409, 0.0109701166, -0.00842436869, 0.00507376762, -0.011530323, -0.00799889583, 0.0108992048, 0.0091264, -0.0030634068, -0.0239683222, -0.0107786534, -0.0223089773, 0.00860874075, -0.0184513535, 0.00832509156, 0.0267197154, -0.00828963518, 0.00856619328, -0.0153028518, 0.0128989285, -0.0253156535, 0.0076514259, -0.00241101463, 0.00803435128, 0.0140051581, 0.0592825934, -0.0041377265, 0.00691039348, 0.00800598692, 0.0110835759, 0.00115143671, -0.00140406145, -0.00998443738, 0.00791380089, -0.00799889583, -0.00636082375, -0.0121188937, -0.0196001306, 0.0242661536, 0.0196001306, 0.0111686708, 0.0195859484, 0.0232024696, -0.0355695561, 0.00587152969, -0.00624736445, -0.0108141098, -0.0144519052, -0.0355128273, 0.00544960238, 0.00180382899, -0.00304567884, -0.0138775166, -0.0236279424, 0.0129060196, -0.0146079119, -0.0145795476, -0.0114877755, -0.029074, 0.0293009188, 0.0228479095, -0.000182598902, 0.0160403382, -0.0201248806, -0.0184088051, -0.0221671518, -0.000735714042, -0.0142817162, 0.00346583361, -0.016905468, 0.00559142651, -0.0196994077, -0.00967951491, -0.0119628869, 0.0271026399, -6.33223754e-05, 0.00608781213, 0.000167640857, 0.0203801654, -0.0148490136, 0.0166360009, -0.00708767399, -0.000739259645, -0.0247909036, -0.0383493155, -0.0116366912, -0.014877378, 0.0287336204, -0.00229223678, -0.00332223624, 0.00385407778, 0.00405972311, -0.00744578056, -0.0130407522, -0.0126861921, -0.00645655533, 0.00596017, -0.00516595319, 0.02395414, -0.00959442, -0.00900584832, -0.0382925868, 0.0169196501, -0.00426182291, -0.00543541973, -0.00565524772, 0.0288187154, 0.00201390637, -0.0103957281, -0.0172316637, 0.00656646909, -0.000943132211, -0.0289179925, -0.00026835833, 0.00763015216, 0.00765851699, -0.00836054794, -0.00533968816, 0.0103602717, -0.0122749, -0.000987452338, 0.0186924543, -0.00984261278, 0.00432564365, -0.0289747231, -0.0115870526, -0.00529714115, -0.00950223394, 0.0173309408, -0.00496739941, -0.0249894578, 0.0226209909, 0.0145157259, 0.0335556492, 0.0244079772, -0.012594006, 0.0166076366, -0.0277550332, 0.0153595814, 0.0134520438, 0.0111403055, 0.00851655472, 0.0403632224, 0.0131116649, 0.00246242597, 0.0324494205, -0.00962987635, -0.00549924048, -0.00600271719, 0.0327614322, 0.0285776146, 0.00137215096, 0.00372289028, -0.0113743162, 0.0247058086, 0.00783579703, 0.00791380089, -0.0115728704, 0.00310418126, 0.00731813861, 0.0380940326, -0.0101333531, -0.0184655357, 0.0282939654, 0.018735, -0.00272834674, 0.025188012, -0.0398242883, 0.0178840552, 0.0226209909, 0.041724734, -0.0254007485, -0.0260815043, 0.0110126641, 0.0286343433, 0.0207772739, -0.0145157259, -0.0264786128, -0.03522918, -0.0329316221, -0.037952207, -0.03522918, 0.0433698967, -0.0240392331, -0.000365862594, -0.00602753647, 0.0199405085, -0.0146362772, -0.013558412, 0.0254574772, 0.000754771696, 0.0194015764, 0.0141682569, -0.0166218188, -0.0158843324, 0.0375551, -0.00486457674, 0.0187066365, 0.000563751964, 0.00170011981, 0.00161857088, 0.0209332798, -0.00793507416, 0.0130691174, 0.0109842988, -0.0361652188, -0.0676218718, 0.0101049878, 0.0133102192, 0.0215289425, 0.0314566493, 0.0184513535, -0.0155723179, 0.0149341086, -0.00542123709, 0.024209423, 0.00589634897, 0.0273862891, -0.00983552169, -0.00382571295, 0.0156574119, 0.0194157586, -0.00529359514, -0.00274607469, -0.016281439, -0.00391789852, -0.00376189197, -0.0187066365, -0.0135938674, 0.0122039886, -0.023159923, -0.00575452438, -0.00962987635, 0.0106651941, -0.0216282196, 0.0140406145, -0.0110481195, 0.0323926918, -0.0540350936, -0.0146362772, -0.00855910219, 0.00208304566, -0.00699194241, 0.0153879458, 0.0159694254, 0.0192597527, 0.0262091476, 0.0253865663, -0.00437173666, -0.0154021289, 0.0171182044, -0.0207347255, 0.0127358297, 0.00928949751, -0.0198837798, 0.00904839579, 0.00443910342, -0.0398242883, 0.0227911789, 0.0407603309, -0.00301908678, -0.0466318578, 0.0361652188, 0.0039427178, -0.0336974747, -0.0142391687, -0.0162530746, -0.0113388598, 5.82809589e-05, -0.0192881171, 0.00352256326, -0.0194015764, 0.0399661139, 0.0120125255, -0.0233726595, -0.0104170013, 0.0189761035, 0.0225784425, 0.0161679797, 0.000744134828, -0.00856619328, -0.03627868, -0.00704512652, 0.00523686549, 0.00374061824, 0.0193590298, 0.0252589229, -0.0185364485, 0.0283932425, 0.0114026805, -0.0018020561, 0.018394623, 0.0188768264, -0.0328748934, -0.0197419543, -0.016820373, 0.00816908479, 0.0129060196, 0.00836763903, -0.0250320043, 0.0273579247, -0.0097717, 0.00770106446, 0.0213162061, 0.000717985968, 0.0193873942, 0.00280989567, -0.0113955894, 0.00040774513, 0.00442137523, -0.0220678747, -0.011799789, -0.0546591207, 0.000926290522, 0.0224224366, -0.0115515962, -0.00494612567, -0.0136293238, -0.0415545478, -0.0365339629, -0.0352575444, 0.00376898306, 0.00443910342, -0.019812867, 0.00753087504, -0.00875056442, -0.0068855742, -0.00409163348, -0.0342080444, 0.00355624664, -0.0111757619, 0.00213977555, -0.00416963687, -0.0109062959, -0.0176429544, -0.0465467647, -0.0183662586, -0.0198412314, -0.0278543103, -0.011267948, -0.00610554, -0.00560560916, 0.0365339629, -0.0243512485, 0.0139484284, -0.0162388925, 0.0376401916, -0.0330450833, 0.0180400629, -0.0204368941, -0.0192172043, 0.00698130578, 0.0219827797, -0.013296036, 0.0077223382, 0.0481919274, 0.0133173103, 0.0368459746, -0.0249610916, -0.0238123145, -0.00937459245, 0.0236279424, 0.031173, 0.0496101715, -0.022720268, 0.0229046382, 0.0265920721, 0.0223798882, -0.00248547248, 0.00480430108, -0.0349738933, 0.000430348387, -0.0177564137, -0.00571906846, -0.00011423511, -0.0189051908, 0.014437723, 0.0481919274, 0.0247625392, -0.00296058413, -0.0244221594, -0.0108992048, -0.0158843324, 0.0131329382, -0.00712313, 0.0218693204, 0.00159109232, 0.00251206453, -0.011445228, 0.0113175865, -0.031173, -0.00488939602, 0.00220891484, -0.032846529, 0.00794925727, 0.00142533507, 0.00745287165, -0.00659128837, 0.000829672674, -0.00608072057, 0.0363354087, -0.00218586833, -0.0031875032, -0.0263084248, -0.0268899035, 0.0183237102, 0.00367325172, 0.013381131, 0.00685011782, -0.0103389984, 0.00979297422, -0.019628495, 0.00812653732, -0.00728977378, 0.0219685975, 0.0251312815, 0.0075096013, -0.0073252297, 0.000686961866, -0.0389166139, 0.00761596952, 0.000340378523, 0.0109488424, 0.00973624457, -0.00782870594, 0.00888529792, 0.0149341086, -0.00479721, -0.0127854683, -0.015501406, -0.0214296654, -0.0160970688, 0.023159923, 0.0105800992, 0.00280103157, 0.0259964112, 0.00402781274, -0.00998443738, 0.00453128945, -0.0124947289, -0.0087222, 0.0115019577, -0.00220182375, -0.00644237269, 0.0117572416, -0.010651012, -0.012764195, 0.0318537578, 0.0122110797, -0.0109701166, 0.0126861921, 0.00862292293, 0.0144873615, 0.00351901772, -0.00050923822, -0.0276557561, -0.0183804408, -0.00723304367, -0.00161236606, -0.00218586833, 0.0311162714, -0.0170047451, -0.0312013663, 0.00870092586, 0.00598144345, 0.0184229873, 0.0296412967, -0.00969369709, 0.00933913607, -0.00441782968, -0.00260956865, -0.0188059136, -0.000795989356, 0.0159126967, 0.0205219891, 0.0025227014, -0.0126578268, -0.0154730408, 0.0168487374, 0.0537798069, -0.00584316486, -0.00996316317, -0.0336691104, 0.032846529, 0.00106545573, -0.00630054856, 0.0340378545, 0.0119203404, 0.000659040234, 0.00338605721, 0.00473338878, -0.00432918966, 0.0183804408, -0.00869383477, 0.0128705632, 0.0237272196, -0.0102468124, -0.0219544154, -0.00248724525, -0.0274997484, -0.00975042675, 0.00887111574, -0.0113317687, 0.0068749371, -0.00271593709, 0.00212913868, -0.0427175052, -0.00942423102, 0.00517659029, 0.0262800585, 0.00163275329, 0.0322225019, -0.00402781274, 0.0128776543, -0.013905881, 0.00371579896, 0.0361084901, -0.0127996514, 0.0110693937, -0.00723658968, -0.00798471272, 0.000781806943, 0.0160119738, 0.00463056611, -0.0291874595, -0.0213162061, -0.0133102192, -0.0106226467, 0.0197845027, 0.00253865658, -0.0148915611, 0.0082967272, -0.00904839579, -0.00682884455, 0.00351547194, 0.0303220544, -0.0173734874, 0.0130052967, -0.0181251578, -0.0230890103, -0.00710540172, 0.0108566573, -0.0130762085, 0.0249752756, 0.0102042649, -0.0201390628, -0.0151610272, 0.0156857781, 0.00295703858, 0.00140051579, -0.00789252762, 0.0143171716, 0.00209722808, -0.00813362841, 0.000222930204, 0.0215573069, 0.015756689, -0.0130052967, -0.0125089111, 0.00897748396, 0.028265601, 0.00944550429, 0.0298114866, -0.00600980828, 0.00552405976, -0.0195717663, 0.0117146941, -0.0112324916, 0.00206177216, 0.00660901656, 0.00553115131, -0.037413273, 0.00145015435, -0.000630232156, -0.00916894712, 0.00286839833, 0.0293009188, -0.0102680856, 0.000373175426, -0.0101900827, 0.00456674537, 0.0033506013, -0.0177138653, 0.0143455369, -0.0239966866, 0.00889948, 0.000422813959, -0.00423345808, 0.0136080505, -0.000953769, 0.00538578117, 0.0147071891, -0.00348533434, -0.0162530746, -0.00554178795, 0.021216929, -0.00718695112, -0.0111190323, -0.0167920068, -0.0240817815, 0.0127145564, -0.0044639227, 0.00335414684, -0.0340094902, 0.0126932831, 0.00331869069, 0.00880020298, 0.0375834629, 0.000834547915, -0.0146646416, -0.00317686633, 0.009154764, 0.00282762386, -0.0102893598, 0.00233478402, -0.0119203404, 0.0338676646, -0.007396142, -0.0136576891, 0.00693521276, 0.0255000256, -0.00901294, -0.0329032578, -0.00834636483, 0.0141257094, 0.0173876695, 0.00807689875, 0.0192739349, -0.0219685975, -0.0242661536, -0.0537230782, -0.00275493879, 0.0116012348, -0.020153245, -0.0137995128, 0.0122181708, 0.0389166139, -0.0159977917, -0.0630834848, 0.00438946486, 0.020607084, 0.0371863544, 0.026506979, 0.00293576485, -0.0117572416, 0.0123174479, -0.0361652188, 0.00669411104, 0.0128209246, 0.00954478141, -0.00130655721, 0.0305773374, -0.0217133146, 0.0246774442, -0.0033417372, 0.0122607183, 0.041724734, 0.00486103073, 0.0125443675, 0.00982133858, 0.0132251242, 0.00172493909, 0.00863001402, -0.0170331094, 0.0144235408, -0.0142746251, -0.002552839, -0.0137002356, 0.0180400629, -0.00405972311, 0.0200681519, -0.00488585, -0.0266629849, 0.0207347255, 0.009154764, 0.00650619389, -0.0126578268, -0.0182386171, -0.00748832757, -0.0204368941, 0.00430791592, -0.0409588851, -0.0041377265, 0.00807689875, -0.0308042578, -0.0139200641, -0.00291449111, 0.00909094326, -0.00459511, -0.0175578594, 0.00923276786, -0.00199440541, -0.00320168561, -0.011360134, -0.00491066929, 0.0116721475, 0.0177989602, 0.00667992886, -0.0201248806, 0.0351157188, -0.00416609133, -0.0131045738, -0.0197277721, 0.000705133134, 0.022720268, 0.0307758916, 0.0209758263, -0.0200823341, -0.00123653142, -0.0245356187, 0.00578288967, 0.0322508663, 0.0139555195, -0.00863001402, 0.00702739833, 0.0373565443, -0.0365623273, -0.0271451883, 0.0182669815, 0.0136647802, 0.00420154771, 0.00265388889, -0.0061090854, 0.0175436772, -0.00018581211, 0.0197986849, -0.01761459, -0.0101546263, 0.010388637, -0.00208481844, -0.00871510897, 0.0297263917, -0.0115445051, 0.0129840225, 0.0128209246, 0.00735359453, -0.0036661604, 0.00200149673, -0.0228195451, 0.00672602188, -0.00175153115, -0.00881438609, -0.000844298338, -0.000534500694, -0.0139697026, -0.0296129324, -0.00494967122, -0.0108141098, -0.0060169, 0.0353426374, 0.0325345136, -0.00408099685, 0.0067012026, -0.00671538478, -0.0369878, 0.00157336437, -0.00250851898, 0.00999152847, -0.0110693937, 0.0113743162, 0.0389449783, -0.0289889053, 0.00867965259, 0.00185789948, -0.0330167189, -0.0085307369, 0.0111332145, 0.00372643583, -0.00409517903, -0.0037902568, -0.0179975145, 0.00214686664, -0.00281875976, -3.26306908e-05, 0.0198554136, 0.00125425949, -0.0353993662, 0.0245072544, 0.000392011483, -0.00458447356, 0.0307475273, 0.0274572019, 0.0099206157, -0.00640691677, -0.0178840552, 0.00335237407, 0.00493548857, -0.0222522467, -0.0151042975, -0.0205078069, -0.0258262213, -0.0134236785, 0.0231457409, 0.0144731794, -0.00991352461, 0.0180967916, 0.0111190323, 0.0262233298, 0.00831090938, 0.0181960687, -0.00729686487, -0.0306907985, 0.0324210562, -0.00598853501, -0.0186782721, -0.000538046297, 0.013288945, -0.0411858037, 0.0172032975, 0.0111473966, -0.018394623, -0.0151326619, -0.0143100806, -0.0150475679, 0.00797762163, 0.0146646416, 0.0220111459, 0.0155297704, 0.00237024017, -0.0138987899, 0.0212452933, -0.0052297744, -0.0131754857, 0.00419091061, -0.00281698699, 0.00799180474, 0.029754756, -0.0226919018, 0.0122890836, -0.0193873942, 0.0110693937, -0.00273366505, 0.00997025426, 0.00404554047, -0.0116792386, -0.0177989602, 0.0244647078, 0.00702030724, 0.0216849484, -0.0152461221, -0.00291449111, 0.0119557958, -0.00381507608, -0.00270175468, -0.0171040222, 0.0211460162, -0.00110711658, 0.0412708968, 0.0589422174, -0.00831800047, -0.0115728704, 0.0171465687, 0.00358106592, 0.0193590298, -0.0091264, 0.000650176196, -0.00775779411, -0.0142888073, 0.0162247103, -0.025443295, -0.0342931375, -0.000608958479, -0.0199830569, -0.00150333857, 0.0238264967, -0.0141044352, 0.00743159791, -0.0178131424, -0.00307049812, 0.00654165, 0.00656292355, 0.0212311111, 0.0331869088, 0.0119628869, 0.0243087, 0.0106084645, -0.0268189926, -0.00182421622, 0.00370870787, 0.0129627492, -0.0125301844, 0.0198695976, 0.00775070302, 0.0208907332, 0.00314318296, -0.00238087703, -0.00797053054, 0.0527586713, -0.0206354484, 0.015146845, -0.00199795119, -0.0143171716, 0.00799180474, 0.0340945832, 0.00888529792, -0.012416725, 0.0282230526, -0.00385762332, 0.00951641612, -0.0171607509, 0.00595662417, -0.00868674368, -0.00936040934, 0.00920440257, -0.0371012613, 0.0253156535, 0.00111775345, -0.0172174815, -0.0102751767, 0.0164374467, -0.00850237254, -0.0239825044, -0.0133314924, 0.00530777778, 0.0213445704, -0.00357220182, 0.0116863297, -0.0179833323, 0.0208340026, 0.00499931, -0.0168487374, -0.00500640087, 0.000223262614, -0.00704158098, 0.000481759722, 0.00365906931, -0.0102964509, 0.0124734547, -0.00693166722, 0.00425473182, -0.000513670209, -0.00933204498, -0.0128351068, -0.00921858568, -0.0206496306, -0.00299072172, 0.0303220544, 0.0339811221, -0.00661610765, 0.00203695288, -0.0185222644, -0.017075656, 0.00421573, 0.0160119738, 0.0488159545, 0.0117359683, -0.0153312162, -0.012324539, 0.00653810427, -0.00314318296, 0.00648492, 0.00428309664, 0.00214863941, 0.0112041263, 0.0185931772, 0.00488939602, 0.000777374953, -0.0132322153, -0.00666220067, 0.00789252762, 0.0267906263, 0.00765851699, 0.0198695976, -0.000480430113, 0.0225217137, -0.0177705958, 0.0157708712, -0.00836763903, 0.0117501505, -0.0109772077, 0.0146504594, -0.0250887349, -0.0137711484, -0.000537603046, 0.0133669488, 0.0152744865, -0.00111066224, 0.0172883924, -0.0285917968, -0.016905468, -0.0131896678, 0.0066905655, -0.0131329382, 0.0152177569, -0.0175011288, 0.000623584085, -0.00263793371, 0.0056091547, 0.0174585823, -0.0127854683, -0.0236137602, -0.000944905, -0.00365197798, -0.00359524833, 0.0111048501, -0.00882856827, 0.00541060045, 0.024649078, 0.00823999662, 0.00843146, -0.00235605775, 0.0182102509, 0.00909094326, 0.00551342312, 0.0139838848, 0.0143739022, 0.00475111697, 0.000438990799, -0.00238442258, -0.0141611649, 0.00251206453, -0.0020121336, -0.0100269839, -0.00227450859, 0.00604171911, -0.00498512713, 0.000764522119, 0.00726140849, 0.00379734812, -0.0049142153, 0.0266346205, -0.0101333531, 0.034434963, -0.00643173605, -0.00726140849, -0.0172316637, 0.0216140375, 0.000128306754, -0.00619418034, 0.0182811636, 0.0125514586, 0.000520761416, 0.00587862078, -0.00157956919, 0.0128918374, -0.00790671, -0.0155581357, -0.0165934544, 0.015841784, 0.0320239477, 0.0163381696, -0.0120338, 0.02500364, 0.0165083595, 0.0179266036, 0.00581834558, 0.0135442289, 0.0101333531, -0.000789341342, 0.00474757142, -0.0156715941, 0.00626509218, -0.000238220659, 0.00750251, 0.0219118688, 0.00552051421, -0.0230748281, 0.0120479818, -0.0153312162, 0.0189477392, 0.015317034, -0.0114594102, -0.00591053162, -0.0271451883, -0.00509149535, 0.033101812, -0.0123599954, 0.023415206, -0.00882856827, 0.000159995645, 0.00711249327, 0.00213622977, -0.0226209909, -0.0326763391, -0.00661256211, 0.00380089367, 0.00685011782, -0.0190328322, 0.0114735933, -0.0134236785, 0.0175153129, 0.0263084248, 0.0128989285, -0.00132517167, -0.0511135086, -0.010565917, -0.00959442, -0.0235286653, -0.0132393064, -7.99978225e-05, -0.0159552433, 0.00310063572, -0.00714794919, 0.00514113391, 0.0205645356, -0.0145086348, -0.0307758916, -0.0238123145, -0.0209758263, -0.00212913868, 0.000440320408, -0.0100553492, -0.0156715941, 0.0150050204, -0.0123599954, 0.0107006505, -0.00267516263, -0.00217168592, 0.00135974132, 0.00895621, 0.0126152793, -0.0131045738, 0.0253582, -0.01011917, 0.00282939663, -0.00984970387, 0.00249788212, 0.0135938674, -0.00999152847, 0.0137427831, 0.025797857, -0.0195434, -0.0132534895, -0.0140689798, 0.00761596952, 0.0129769314, 0.00304036029, 0.00184371707, 0.0116437823, 0.0147071891, -0.00192172045, 0.017075656, -0.0155581357, -0.0164799932, -0.020607084, 0.0186924543, -0.00919022, -0.0193306636, 0.00270884577, 0.0143597191, 0.0220253281, -0.00753087504, 0.0247199908, -0.0158559661, -0.01866409, 0.00628282037, 0.0145653645, 0.00548151275, 0.0214863941, 0.00595307862, -0.0216140375, -0.00823999662, 0.00226032618, 0.0184229873, 0.00308468053, 0.0426040478, 0.00152993063, 0.0193590298, 0.00673311297, 0.015317034, 0.000590344, 0.00543541973, -0.00108584296, 0.015231939, -0.0237414036, -0.00834636483, -0.000185368903, 0.00845273398, 0.00099188427, 0.00901294, 0.00506667653, 0.0117714247, 0.0157425068, 0.00841018651, -0.0181677043, -0.0106368288, 0.0263651535, 0.0138846077, 0.00405972311, 0.0281237755, 0.014083162, 0.0203943476, -0.0143384458, -0.00995607208, -0.0115445051, 0.0168771017, 0.011530323, 0.015841784, -0.0100766225, -0.0145795476, 0.000673222647, -0.00850946363, -0.00516595319, -0.0269466341, -0.0257269442, 0.0105304606, 0.00899875723, 0.0098071564, -0.0183520764, -0.000214841784, -0.0136222327, 0.00443555787, 0.0108212009, -0.014877378, -0.00970787928, 0.00108672935, -0.0163239874, 0.0091264, -0.0128138335, -0.0173876695, 0.0259396806, 0.00854491908, -0.00557369832, -8.42774807e-06, 0.00919731148, 0.00116473285, -0.0113317687, -0.00898457505, -0.0107999276, -0.00435046293, -0.00950223394, -0.0037583462, 0.0104524577, 0.00458447356, -0.00550278649, 0.00475466251, 0.0108070187, -0.0140973441, 0.014437723, -0.0068146619, 0.0158843324, -0.000192238527, -0.00475820806, -0.00830381829, 0.00367325172, -0.0133669488, 0.0151326619, 0.0113104954, -0.0182244331, 0.000763635675, -0.00495321676, 0.0108141098, -0.00815490261, 0.00627927482, -0.00327259768, 0.020422712, 0.0053432337, 0.00931077078, -0.0190611985, 0.00692103, -0.00185967225, 0.0187066365, 0.0015848875, -0.00805562548, 0.000843411894, -0.0206638128, -0.0142746251, 0.00379380235, 0.0120408908, 0.00562333688, 0.00161857088, -0.0246632621, 0.0269324519, 0.0168771017, 0.0186924543, 0.00600271719, -0.0143384458, 0.0237414036, 0.00506667653, 0.0122678094, 0.0352859087, 0.000397108292, -0.00179585128, 0.0101120789, -0.00967242289, -0.000443201221, 0.0119841611, -0.00440719305, -0.0020334071, 0.00345165096, -0.0281379595, 0.0039533549, -0.0210751034, 0.00982133858, -0.00222487, -0.00317154801, -0.00599917164, 0.008275453, 0.00552051421, 0.00360233942, -0.00198731432, -0.00990643352, 0.00256702141, 0.00589634897, -0.0273721069, 0.0219402332, 0.00659838, 0.000912108109, 0.00157159148, -0.00367325172, 0.0276557561, 0.00787834451, -0.00360411219, -0.00153347617, 0.0119345225, 0.00604881, -0.0124025429, -0.00767269963, 0.0131967599, -0.0126152793, -0.0259254985, 0.0085307369, -0.00562333688, -0.00631473074, -0.016111251, 0.0334705561, 0.0312580951, -0.024649078, 0.000183042095, 0.0192172043, 0.028520884, 0.017345123, 0.000612504082, -0.00263616093, 0.0105233695, -0.00921858568, -0.00229400955, -0.0225217137, -0.0331869088, -0.00719049666, 0.0120763471, -0.0176287722, 0.0211034697, 0.00947387, 0.0270459112, -0.00267338962, -0.007130221, 0.00844564196, -0.00575097883, 0.00927531533, 0.0018330802, -0.00415900024, -0.0244221594, 0.0230748281, -0.0196568612, 0.0045880191, -0.00577934366, -0.0225926246, -0.0262233298, 0.00490003265, 0.00448165089, 0.0209900104, 0.0025758855, -0.0014537, 0.0156148653, -0.000377164222, -0.00970787928, -0.0129698403, 0.00440719305, 0.000391789887, 0.00379734812, 0.00888529792, -0.00865128729, -0.0101546263, -0.00705930917, -0.0134520438, 0.0215147603, 0.0109842988, 0.00366261485, -0.00840309542, 0.0347753391, 0.0107077416, -0.00454192609, 0.0174160358, -0.00175773597, -0.0122039886, 0.0227486324, -0.00640691677, -0.00377607439, 0.00572615955, -0.017260028, -0.0058148, 0.00909803435, -0.000833218277, 0.00875056442, -0.00355801941, -0.00202099746, 0.00736068562, 0.013820787, -0.010126261, 0.00321586803, -0.00216104905, -0.0076939729, -0.0109488424, -0.0187066365, -0.0166360009, -0.00937459245, 0.0251029171, 0.000408188323, 0.00304390606, 0.0350306258, 0.00318927597, -0.0208481848, 0.00940295681, -0.0216707662, -0.00811235514, 0.0166927297, 0.0242661536, 0.0155439526, 0.000817263033, 0.00584671041, 0.0108637484, 0.0138066038, 0.0104382746, 0.00644946424, 0.002861307, 0.0179833323, 0.0145795476, -0.00615872396, -0.0314282849, 0.00973624457, 0.0137002356, 0.00169923343, 0.00884984154, -0.00815490261, 0.0108992048, -0.0155439526, -0.0320239477, 0.00277621252, -0.0237272196, -0.00511276908, 0.0235853959, 0.0181251578, -0.00989934243, -0.00365197798, 0.0256276671, 0.0123032657, -0.00524395658, -0.0183237102, -0.0148915611, 0.0158843324, -0.00945968647, 0.0179975145, 0.0118210632, 0.0143668102, -0.0061090854, 0.00415900024, 0.0197419543, -0.00161591161, 0.00540705491, -0.00191817491, -0.0184655357, -0.0014155847, -0.00989934243, -0.018834278, 0.00361652183, 0.0141682569, 0.0117359683, -0.00327791623, -0.0111970352, -0.000694939517, -0.0114097726, -0.0023507392, -0.0127712861, -0.0106935585, 0.0054744212, 0.00401363, 0.00514468, -0.0152886687, 0.00927531533, 0.00605944684, -0.0312013663, 0.0143597191, 0.00539287226, -0.00225678063, 0.00760887843, -0.0107148327, -0.00148649688, 0.0215998553, -0.00526523031, 0.00654519536, 0.000243317467, -0.0156999603, 0.0166643653, 0.0123954518, -0.00299958582, -0.0151893925, -0.0151752094, -0.00724722631, 0.0150901154, -0.00171873427, -0.0244079772, 0.00212204736, -0.00422636699, -0.016905468, 0.0102468124, 0.0109275691, 0.00741741573, 0.00105481886, 0.010565917, 0.00899166614, -0.017075656, 0.0153453993, 0.00181535212, 0.00619772589, -0.0081407195, 0.00569779472, 0.00825418, 0.00775070302, 0.0041377265, 0.00145724555, -0.0149199255, 0.0013384677, -0.00043611, 0.00733232079, 0.0119628869, 0.00609490322, 0.00994898099, -0.00645655533, -0.0108921127, -0.0115161408, -0.00116207357, -0.0242236052, 0.00169746066, 0.014437723, 0.00877893, -0.0208481848, 0.0155865, 0.0139555195, -0.00972206146, 0.00745996274, 0.0212027468, -0.00423345808, 0.00247483561, 0.0188768264, 0.0124521814, 0.0331869088, 0.00896330178, 0.0113743162, -0.0194299407, -0.00720822439, -0.00987806916, 0.00480430108, 0.0015937516, -0.0250603687, -0.00407390576, -0.0205078069, -0.0415545478, 0.0191321094, 0.00753087504, 0.00365197798, -0.00300667714, -0.0029233552, 0.00355092809, -0.00408454239, 0.00618708879, -0.022181334, -0.000195451736, -9.28506561e-05, 0.00391789852, 0.00220891484, -0.0121756243, -0.0119203404, -0.0138349691, -0.011537414, 0.0150617501, -0.0168345552, 0.00680757081, -0.00681820745, -0.00465184, -0.0167778246, -0.0105162784, -0.016295623, -0.013296036, -0.0144802704, 0.00486103073, 0.0310028121, 0.0276841205, -0.00866547, -0.0141611649, -0.00261666, -0.00402781274, 0.0137782395, 0.000915653713, -0.0162247103, -0.0219685975, 0.0215998553, 0.0036661604, 0.0218693204, -0.0158276018, 0.0141186183, 0.0138846077, 0.00676502334, -0.0136364149, -0.00755214877, 0.00710185617, 0.00641400786, -0.0100269839, -0.0104170013, -0.0122749, -0.0227769967, 0.0118636098, 0.0144660873, 0.00494258, 0.0131896678, -0.0199972391, 0.00246597151, 0.0216282196, -0.00134289963, 0.0104524577, 0.00631827675, -0.00405617757, 0.0541485511, 0.0106439209, -0.0287761688, -0.00353851845, -0.00469438732, -0.0097717, -0.0202241577, -0.00904839579, 0.00253688381, 0.00931077078, 0.00331337238, 0.00110091188, 0.0188768264, -0.00763724325, 0.0382925868, 0.0205078069, -0.00170011981, -0.00282053254, 0.0286201611, -0.0118565187, 0.0158559661, 0.00314850151, 0.00600626273, -0.0312013663, -0.0113743162, 0.0247767214, -0.0212027468, -0.0215573069, 0.0152603043, 0.0192881171, 0.00610199431, 0.00723304367, -0.00634309603, 0.0164374467, 0.00244115223, -0.0192030221, -2.01379553e-05, -0.00518013583, 0.0137569653, 0.0178273264, -0.0103957281, -0.00880020298, -0.0134449517, 0.0122110797, -0.0114381369, -0.00820454117, 0.0072685, 0.0184513535, -0.00362184038, -0.00533259707, 0.0194441229, 0.0180684272, -0.0207347255, -0.015501406, 0.0190186501, -0.0157283247, 0.0222238824, 0.00276734843, -0.0149341086, 0.0116366912, 0.00025461911, -0.00276380288, 0.00467311358, 0.00288612628, -0.0113672251, 0.00587507524, -0.00383280404, -0.0231457409, 0.00748123648, -0.0244221594, 0.0147355543, -0.00416254578, 0.022720268, -0.00294640171, -0.00401717564, 0.00784998, 0.00539287226, 0.00327791623, 0.0147497365, -0.012764195, 0.0175862238, 0.0139271552, -0.00479366444, 0.00180648814, -0.00159641076, 0.0167494603, 0.0367041528, -0.0114168637, 0.00236846739, 0.0116437823, -0.00994189, -0.0154872229, -0.0216707662, -0.0135158645, -0.0068749371, 0.0103389984, 0.00296944822, -0.00643173605, -0.0087860208, 0.00485393964, -0.00360056665, -0.0322508663, 0.0169196501, 0.0263651535, -0.000640868966, 0.00474048033, -0.0203659814, 0.00863001402, 0.0189761035, -0.0174585823, -0.0250887349, -0.00851655472, 0.00942423102, 0.000179828887, -0.00243406114, -0.00329032587, -0.012856381, -0.0110835759, 0.00861583184, 0.00600271719, -0.0120479818, 0.012062164, -0.0133314924, 0.00117625599, 0.0298114866, -0.00119043852, -0.0186215416, -0.0269040875, 0.0234010238, 0.0210892875, -0.0192455705, 0.0108424742, -0.0144235408, -0.0197986849, -0.00863001402, -0.00042458676, -0.00717985956, -0.00830381829, -0.027201917, -0.000914767326, 0.0054850583, 0.0114665022, 0.00411290722, 0.00613035914, -0.00906967, -0.0149199255, 0.018848462, -0.0165367238, 0.0166218188, -0.0069990335, -0.00683239, -0.018834278, -0.0159977917, -0.0138633344, -0.01813934, 0.00187562755, -0.00844564196, -0.000138057178, 0.0165792704, -0.0175436772, -0.00159818353, -0.0014767464, 0.000416830735, 0.0266346205, -0.00186321791, -0.00040840992, 0.00256347586, -0.0140618877, 0.0248618163, -0.00997025426, -0.0120408908, -0.0174160358, -0.00520495512, -0.00755214877, 0.0218125917, 0.0168345552, -0.0069564865, 0.0301802307, 0.00608781213, -0.00196072226, -0.0048326659, -0.0324777849, -0.00365906931, -0.0175011288, 0.00487521337, 0.0149482908, -0.00490712374, -0.0258404035, 0.000290961587, 0.0220536925, 0.0142037123, 0.00120107527, -0.0171607509, -0.0114310458, 0.0105162784, -0.0188626442, 0.0131683946, 0.00785707124, -0.0122465361, 0.00252624694, -0.0228762738, 0.0115799615, -0.00186499069, 0.00625445554, 0.00133049011, 0.0310595408, -0.0171607509, -0.0061197225, 0.0245214365, 0.000850059907, -0.0251312815, 0.0041483636, 0.00605944684, -0.00302085956, 0.0176571365, -0.00129414757, 0.03925699, -0.0109772077, 0.00511276908, 0.0106864674, 0.004577382, 0.00716922292, 0.00230996474, 0.00698130578, -0.00833218265, -0.00192172045, -0.0363070443, -0.00800598692, 0.02447889, -0.00508085871, -0.00607362948, -0.00354915531, -0.0275848433, -0.000292069599, -0.00244647078, 0.015756689, -0.00822581444, 0.0181109738, -0.00250320043, -0.0327047035, -0.0295278374, -0.0114239547, -0.0133953132, 0.0141328005, -0.0194724891, -0.00141735747, 0.000748566876, 0.0258971341, 0.00085981033, -0.00383989536, -0.0045632, 0.012941476, 0.0100837145, -0.00283826049, 0.00921858568, -0.0251312815, 0.0159552433, -0.00744578056, -0.0690968409, -0.0117572416, 0.0213445704, 0.0264360663, 0.0161679797, 0.0185222644, 0.0072543174, 0.00532905152, 0.018578995, 0.0259113163, 0.0138066038, 0.00616226951, 0.000278995169, 0.0147781009, -0.0119557958, 0.00016343045, 0.0298114866, -0.0162388925, -0.0182811636, -0.0135938674, -0.007396142, -0.00356865628, -0.00538932672, 0.00875056442, -0.00511631463, 0.0111261234, -0.000774715736, -0.00428309664, 0.00647073798, -0.00754505768, -0.00860874075, 0.00696712313, 0.00847400725, -0.0184371714, 0.0049638534, -0.0164799932, -0.0165225416, -0.0217133146, 0.00834636483, -0.0117856069, 0.00319104875, -0.000814160623, 0.0195292179, -0.0146220941, -0.0336974747, 0.0126932831, 0.00483621145, -0.0240676, -0.00185789948, 0.0155723179, -0.0187491849, 0.00318573043, -0.0128847454, -0.0269891806, -0.030634068, 0.00848109834, 0.00361829484, -0.0126791, 0.0028081229, 0.0246348958, 0.00322473212, -0.0517942682, 0.000871333585, 0.0134024052, 0.0104950052, 0.0129627492, -0.00802726, 0.0124521814, 0.0160828866, -0.00539641781, -0.0150475679, -0.0217700433, -0.0145795476, 0.0100695314, 0.0115232319, -0.0228479095, -0.0112821301, 0.00167175499, 0.00801307801, 0.0162530746, 0.00541060045, -0.00659483392, -0.00491776085, -0.0120834382, -0.0121330768, -0.0109346602, 0.00180826092, 0.0095518725, 0.0231741052, 0.00845273398, 0.0243937951, -0.00302085956, -0.00921858568, -0.00100695319, 0.0181960687, 0.00111952622, -0.0215431247, -0.020692179, 0.0160970688, 0.0111970352, 0.0184797179, 0.0115728704, 0.0149057433, 0.00648137461, 0.0156148653, -0.0156432297, -0.0126720089, -2.54563693e-05, -0.00860164873, -0.00143863109, 0.0300951358, 0.00123475865, -0.0101120789, -0.00604526466, 0.00279216771, 0.0120479818, -0.00630054856, -0.0112254005, 0.00806980766, 0.0174302179, -0.0150901154, -0.0205929019, -0.00919731148, -0.000549569493, 0.0102964509, -0.00521559175, 0.00640691677, -0.00190399238, -0.00884984154, -0.00956605468, -0.00266275299, -0.00250851898, 0.0217842255, -0.0184371714, 0.0109346602, 0.00146345038, -0.00507376762, 0.0112324916, -0.00669765659, 0.00650973944, -0.0109133869, 0.000762749289, -0.0155297704, -0.0303504188, -0.00327614346, -0.0443910323, -0.017075656, 0.0119983433, -0.00028143276, 0.00159818353, -0.0130478442, -0.0237272196, -0.0059247138, -0.00215218519, -0.00736068562, -0.0251171, 0.0271593705, -0.00823999662, -0.00397108309, -0.0101688085, -0.00297299377, 0.00575097883, -0.00189335563, -0.00206177216, 0.0119274314, 0.0202383399, -0.0025439749, -0.0121118026, -0.00276734843, -0.00880020298, -0.00202631601, 0.0118777929, -0.00179053296, -0.00735359453, 0.00609490322, 0.00385762332, 0.00935331825, -0.0104311835, -0.000520318223, 0.0100978967, 0.033640746, -0.00286662555, -0.00425827736, -0.0049142153, 0.00725077186, -0.00485039409, -0.00991352461, -0.00357929291, 0.0104028191, 0.0034427871, 0.024918545, 0.0189761035, -0.0109488424, 0.00191640202, -0.0229613688, 0.00811235514, 0.00901294, 0.00602044538, -0.0189051908, 0.0118210632, -0.0129911136, -0.0032477784, -0.00696003204, 0.00637146086, 0.00676856888, -0.0112892212, -0.0125656407, 0.0361652188, 0.00662674475, -0.010388637, -0.00247483561, -0.0266913492, -0.0171040222, 0.011799789, -0.00624381891, 0.00784998, -0.0258545857, -0.0129556581, 0.00777906785, 0.0151893925, -0.00152549858, 0.00692812121, 0.0182669815, 0.000302041619, 0.0187633671, 0.00164516293, 0.00344810542, 0.0118707018, -0.00353142736, -0.00319636706, 0.0152177569, -0.0228479095, 0.020692179, -0.0212311111, 0.00250320043, 0.00694939494, -0.0136151416, 0.0298965815, 0.00315913837, 0.0100553492, -0.0119557958, 0.00710894773, -0.0116579644, -0.00251029176, 0.000807955803, 0.000658153789, 0.0225075297, -0.00454901718, 0.0114806844, -0.00203517987, -0.00823999662, 0.00223727967, 0.00435400894, 0.00857328437, 0.0013996294, 0.000702030724, -0.0114026805, -0.00577934366, 0.00630763965, 0.0310311764, -0.0076514259, -0.00745996274, -0.0046482943, 0.00198908709, 0.0121685322, 0.00527232187, -0.000897039252, -0.0355695561, -0.00329387141, -0.00258297659, 0.0066905655, -7.52888081e-05, -0.000936040946, -0.00353142736, 0.00662319874, 0.0164232645, -0.0011913249, 0.0133385835, -0.016820373, -0.00887111574, -0.0182953458, -0.0181960687, -0.016026156, 0.0200397857, -0.00952350814, 0.0066905655, 0.00880020298, -0.0223798882, -0.00253511104, -0.027996134, 0.0327614322, -0.00239151367, -9.60638645e-05, -0.00972915348, 0.00712313, -0.0286627095, -0.00566233881, -0.0010362044, -0.007396142, -0.0193590298, -0.0192739349, 0.0104028191, -0.017075656, 0.0017098703, -0.0102397213, -0.0159126967, -0.0119841611, -0.00894911867, 0.0020334071, -0.0130903907, -0.027996134, 0.00950223394, 0.00738195935, 0.00995607208, -0.00145635917, -0.0131400293, -0.0230039153, -0.00127907866, -0.00106279657, 0.00901294, -0.00780743267, -0.0100128017, 0.00672602188, 0.00548860384, -0.0112395827, -0.0129556581, 0.00129680673, 0.0192597527, 0.0265211612, 0.00251915562, 0.0153453993, 0.0255709365, -0.0236988552, 0.0264077019, -0.0141398916, -0.00659483392, -0.006559378, -0.0329316221, -0.00215750351, -0.00551342312, -0.0122607183, 0.0112537649, 0.000193900531, -0.0055382424, 0.00674729515, -0.0158985145, 0.0102751767, 0.00765851699, -0.00301731378, 0.00038846588, -0.015756689, 0.0083960034, 0.00159995642, 0.00564815616, -0.0068749371, -0.00439655595, -0.0176996831, -0.00437528221, -7.20202e-05, -0.0107077416, 0.00299072172, 0.0102326293, -0.00899166614, -0.00522622885, 0.00589989452, -0.00976460893, 0.0330734476, 0.00465184, -0.0307475273, -0.00507376762, 0.0209900104, -0.0324777849, -0.0113672251, 0.0529004969, 0.021216929, 0.0127783772, 0.0010432956, 0.00981424749, -0.0240108687, -0.00627927482, 0.0348037034, -0.0100057106, -0.00301731378, -0.00797053054, 0.018309528, 0.0162105281, 0.013473317, 0.00468375, -0.00375480065, -0.0113672251, 0.0103319064, 0.00519431848, -0.0142462598, 0.0131825767, -0.0151184797, 0.00580770895, 0.000141048789, 0.020153245, 0.0157850552, -0.0143384458, -0.00970078819, -0.00485748518, 0.0149482908, -0.00248724525, 0.00412354432, -0.00780743267, 0.00831800047, -0.0101049878, -0.0130974827, -0.057835985, 0.0135371378, 0.0124876378, -0.00537159853, 0.0342647731, 0.0204510763, 0.00674729515, 0.00982133858, 0.00990643352, -0.00396399153, -0.0113388598, 0.0172742102, 0.0146646416, -0.00807689875, -0.0155723179, -0.00884275, -0.0045632, -0.0321374051, -0.00501703797, 0.00240392331, 0.0122749, 0.0232733823, -0.00237378571, 0.0298114866, 0.00803435128, 0.00436464557, 0.0094100479, -0.0311446358, -0.000509681413, 0.00950223394, -0.00713376654, 0.0151184797, -0.0242377874, -0.01250182, 0.0129982056, -0.0226493552, -0.0218693204, -0.0156999603, 0.00590344, -0.0029942675, -0.00849528052, -0.00550987758, 0.0205787197, -0.0106651941, 0.00294994726, -0.0102184471, -0.00504185725, -0.0246774442, -0.00480075553, 0.00106368295, -0.0278968569, -0.00902003143, -0.00245888042, -0.00559142651, 0.004268914, 0.00848109834, 0.0129272928, 0.00999862, -0.0121968975, -0.00899875723, -0.0199546907, 0.00571197737, 0.0156715941, -0.00632891338, 0.0210325569, 0.00924695, -0.0217984095, -0.0179691501, -0.0132180331, 0.0151184797, -0.00429018773, 0.00707703689, 0.00289499038, -0.0273862891, -0.00749541912, -0.00159109232, 0.00657356065, 0.022181334, 0.00648492, -0.0251171, 0.00364843244, -0.00526168477, -0.0006922803, -0.00240215054, -0.0081407195, -0.0085307369, 0.0132605806, 0.00882147718, -0.0107148327, 0.000873106415, 0.00142356229, 0.00329387141, -0.00441428414, 0.0131967599, 0.00488939602, -0.00467665913, -0.00404199492, -0.0217416789, 0.0204652585, 0.00982133858, -0.00542832864, 0.00196781335, -0.000866901595, 0.0332152732, 0.00677211443, -0.00127287384, -0.00626863819, 0.004577382, 0.00406326866, 0.00403490383, 0.0140689798, -0.0357397459, 0.0107006505, -0.00792089198, 0.00702739833, 0.0177422315, 0.00460220128, -0.0170614738, 0.00779325, 0.0160828866, 0.00741032418, -0.00108938862, 0.0429727882, -0.00340733095, 0.00456674537, -0.000518102199, -0.0138633344, -0.0105446437, 0.00813362841, -0.0210609213, -8.95820485e-05, 0.00194831251, 0.0180684272, 0.0198270492, 0.00460929284, 0.0408454239, 0.0109630255, 0.0259822272, 0.00123209937, -0.009154764, 0.000113404109, -0.012324539, 0.00612681359, -0.021401301, 0.0182811636, -0.000592116849, 0.00247129, 0.0507731326, 0.0141044352, -0.0330734476, -0.0086441962, 0.00343569578, 0.0202099755, -0.000422370766, -0.0193590298, -0.00413418096, -0.0064991028, 0.000372953829, -0.0170189273, -0.0209900104, 0.0253582, -0.00902003143, -0.00538223563, -0.00887820683, 0.00932495389, -0.00283471495, 0.0132322153, 0.00999862, -0.0181960687, 0.00617290661, 0.00334705552, 0.018848462, -0.00717631401, -0.0111190323, -0.0255993027]
02 Aug, 2018
unordered_multiset cend() function in C++ STL 02 Aug, 2018 The unordered_multiset::cend() is a built-in function in C++ STL which returns a constant iterator pointing to the position immediately after the last element in the container or to the position immediately after the last element in one of its bucket. Syntax: unordered_multiset_name.cend(n) Parameters: The function accepts one parameter. If a parameter is passed, it returns a constant iterator pointing to the position immediately after the last element in the bucket. If no parameter is passed, then it returns a constant iterator pointing to the position immediately after the last element in the unordered_multiset container. Return Value: It returns a constant iterator. It cannot be used to modify the content of the container. Below programs illustrate the above function: Program 1: // C++ program to illustrate the // unordered_multiset::cend() function #include <bits/stdc++.h> using namespace std; int main() { // declaration unordered_multiset<int> sample; // inserts element sample.insert(10); sample.insert(15); sample.insert(15); sample.insert(13); sample.insert(13); cout << "\nElements: "; // prints all element till the last for (auto it = sample.cbegin(); it != sample.cend(); it++) cout << *it << " "; return 0; } Output: Elements: 13 13 10 15 15 Program 2: // C++ program to illustrate the // unordered_multiset::cend() function #include <bits/stdc++.h> using namespace std; int main() { // declaration unordered_multiset<char> sample; // inserts element sample.insert('a'); sample.insert('b'); sample.insert('b'); sample.insert('b'); sample.insert('z'); cout << "\nElements: "; // prints all element for (auto it = sample.cbegin(); it != sample.cend(); it++) cout << *it << " "; return 0; } Output: Elements: z a b b b Program 3: // C++ program to illustrate the // unordered_multiset::cend() function #include <bits/stdc++.h> using namespace std; int main() { // declaration unordered_multiset<char> sample; // inserts element sample.insert('a'); sample.insert('b'); sample.insert('b'); sample.insert('b'); sample.insert('z'); // prints all element bucket wise for (int i = 0; i < sample.bucket_count(); i++) { cout << "Bucket " << i << ": "; // if bucket is empty if (sample.bucket_size(i) == 0) cout << "empty"; for (auto it = sample.cbegin(i); it != sample.cend(i); it++) cout << *it << " "; cout << endl; } return 0; } Output: Bucket 0: b b b Bucket 1: empty Bucket 2: empty Bucket 3: z Bucket 4: empty Bucket 5: empty Bucket 6: a Learn C++ Online – Master everything from basics to advanced concepts. Apply your knowledge with practical exercises and boost your skills. Take the Three 90 Challenge: finish 90% in 90 days for a 90% refund. Start now and level up your C++ programming!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum/Algorithm for Dynamic Time out timer Calculation/Difference between Round trip time (RTT) and Time to live (TTL)/Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms/Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm/Round Robin Scheduling Algorithm with Different Arrival Time/Selfish Round Robin CPU Scheduling/Find the order of execution of given N processes in Round Robin Scheduling/Calculate server loads using Round Robin Scheduling/set::lower_bound() Function in C++ STL/Implementation of lower_bound() and upper_bound() in List of Pairs in C++/Difference between std::set::lower_bound and std::lower_bound in C++/Difference between std::set vs std::vector in C++ STL/std::minmax() and std::minmax_element() in C++ STL/std::rotate vs std::rotate_copy in C++ STL/std::bitset::to_ullong and std::bitset::to_ulong in C++ STL/std::upper_bound and std::lower_bound for Vector in C++ STL/std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++/std::string::append vs std::string::push_back() vs Operator += in C++/Vector push_back() in C++ STL/vector :: cbegin() and vector :: cend() in C++ STL/unordered_multiset cend() function in C++ STL
https://www.geeksforgeeks.org/unordered_multiset-cend-function-in-c-stl?ref=asr10
PHP
unordered_multiset cend() function in C++ STL
What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, jQWidgets jqxTreeMap width Property, Round Robin Scheduling Algorithm with Different Arrival Time, Difference between Flow and TypeScript, jQWidgets jqxTree destroy() Method, jQWidgets jqxTree collapseAll() Method, Find the order of execution of given N processes in Round Robin Scheduling, jQWidgets jqxScrollView buttonsOffset Property, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Vector push_back() in C++ STL, jQWidgets jqxListBox enableHover Property, Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm, std::rotate vs std::rotate_copy in C++ STL, Selfish Round Robin CPU Scheduling, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxSlider buttonsPosition Property, std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++, std::upper_bound and std::lower_bound for Vector in C++ STL, Difference between Round trip time (RTT) and Time to live (TTL), jQWidgets jqxSlider rtl Property, Difference between std::set::lower_bound and std::lower_bound in C++, jQWidgets jqxTooltip opacity Property, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, jQWidgets jqxToolBar height Property, PHP, std::minmax() and std::minmax_element() in C++ STL, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, Node.js date-and-time Date.transform() Method, TypeScript Optional Parameters, jQWidgets jqxToolBar theme Property, Difference between std::set vs std::vector in C++ STL, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, Steps to Diagnose and Resolve a Slow Network, How to use Optional Chaining with Arrays and Functions in TypeScript ?, Calculate server loads using Round Robin Scheduling, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, jQWidgets jqxScrollView showButtons Property, Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms, jQWidgets jqxScrollView disabled Property, jQWidgets jqxSplitter destroy() Method, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, set::lower_bound() Function in C++ STL, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, jQWidgets jqxTree collapseItem() Method, std::string::append vs std::string::push_back() vs Operator += in C++, unordered_multiset cend() function in C++ STL, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), jQWidgets jqxSortable opacity Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, vector :: cbegin() and vector :: cend() in C++ STL, jQWidgets jqxSlider height Property, jQWidgets jqxSwitchButton onLabel Property, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, jQWidgets jqxToolBar tools Property, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTree width Property, Implementation of lower_bound() and upper_bound() in List of Pairs in C++, jQWidgets jqxTree clear() Method, TLS Handshake?, Algorithm for Dynamic Time out timer Calculation, Adhoc TCP, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, jQWidgets jqxTabs position Property, Differences between Wireless Adhoc Network and Wireless Sensor Network, jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, std::bitset::to_ullong and std::bitset::to_ulong in C++ STL, Impact of Three-way Handshake and Slow Start Algorithm, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, How to Sort an Array Having Optional Properties in TypeScript ?
GeeksforGeeks
[-0.0281204879, -0.000597651175, -0.0118004326, 0.0270160139, 0.0217552297, -0.0583627298, -0.0232230183, 0.0235572662, -0.0118149649, -0.00520992, -0.0217988286, -0.000606734073, -0.0159858074, -0.0114080533, 0.00861053728, -0.0280478261, 0.0250395872, 0.0164363161, 0.0220313482, -0.0178605057, 0.00354230963, -0.00606007408, -0.00322985975, -0.00894478615, 0.00125343259, 0.0279024988, -0.039731998, 0.00556233432, -0.00370580074, -0.00122709235, -0.0114589175, 0.00483933976, 0.0351687744, -0.00691386173, 0.0166688375, 0.0544970706, 0.0399063863, 0.0251267832, -0.0100855911, -0.0258243456, 0.0125779239, 0.0159567427, 0.0215663072, 0.00748426421, -0.028803518, -0.00038216071, 0.00974407606, -0.0674891695, -0.0235136691, 0.023164887, 0.0150121264, 0.00175662222, 0.0158986114, -0.011306325, 0.0208251476, 0.0127232494, 0.0367964208, 0.0212756563, -0.00504642865, 4.62089738e-05, -0.0133772139, -0.0278153047, 0.0322622657, -0.00507186074, 0.00591111556, 0.00848701, -0.0279606301, 0.046678558, 0.0315647, -0.0300242528, -0.0214500464, 0.0286145955, 0.00409817975, 0.0165961739, -0.0432198085, -0.0237897877, -0.0155788958, 0.00871953089, -0.012410799, 0.0124689294, -0.0269433521, 0.0296754707, -0.00229251012, -0.0355466232, 0.0264783092, -0.0139585165, -0.00183927605, -0.0264928415, 0.0474633165, 0.024138568, -0.00966414716, -0.00622719852, -0.0167415, -0.0343549512, -0.0343840197, 0.0289924406, 0.0512708426, 0.018296482, -0.0186452642, 0.0337155201, 0.00831261929, -0.00576942321, 0.0199531931, -0.00433796691, -0.00309361704, 0.0538576357, 0.0379008949, 0.0125997225, -0.00433433382, 0.0026322084, 0.0333086103, 0.0173518676, -0.00747699803, 0.046882011, -0.0179912988, -0.0139948474, 0.00111900654, 0.000972772716, 0.0315065719, 0.0091991052, -0.0116696395, 0.0155788958, 0.0384821966, 0.0233538114, -0.0443533473, 0.00849427655, -0.00682666618, 0.0184418093, 0.00727717532, -0.000218215355, 0.00448329234, -0.0384240672, 0.00530801481, -0.0326982401, 0.000802923518, 0.0269578844, 0.0247489363, 0.0356338173, -0.000586297654, -0.0220458806, -0.0389763042, 0.00170666655, -0.00013170125, 0.00325165852, -0.0570548, -0.0249378588, -0.0106886923, 0.0549621098, 0.0120910835, -0.017918637, -0.0131010953, 0.0278443694, 0.0392669551, -0.00381116173, -0.00235609, -0.0370289423, 0.0266236346, 0.00753512839, -0.00415630965, -0.026216723, 0.0251703802, 0.0175698549, 0.0052862158, -0.0176134538, -0.00342604914, 0.0306055546, 0.0351978391, -0.022787042, -0.0417665541, 0.0439755023, 0.00954062, 0.014358161, 0.00341696618, -0.0142201018, 0.00579848839, -0.0213337857, 0.0114661837, 0.0245018825, 0.0392378904, 0.0400517136, 0.00982400496, 0.00648515113, 0.0147360079, -0.00530438125, 0.0230486281, -0.0156079605, 0.0427547693, -0.00233610766, 0.0400226489, 0.0140384454, 0.00303003704, -0.0209850054, 0.0468238816, 0.0356919467, 0.0590893552, 0.0258679427, -0.023252083, 0.0231358223, -0.0132464208, 0.0341805629, -0.009402561, -0.0100201946, 0.0399645194, 0.0125924563, 0.0285128672, 0.0260859299, -0.0107904198, -0.00594744692, 0.0121782785, -0.0166397728, -0.0283239447, -0.00590748247, 0.0419409461, 0.015331842, 0.00308090099, 0.0280478261, -0.068244867, -0.000603555061, -0.0019564447, -0.0281931516, 0.0106886923, -0.0281204879, 0.0350234509, -0.0450509116, -0.0363895111, -0.0239351131, 0.0381334163, 0.0198224, 0.0103108454, -0.0146633452, 0.0244873501, 0.0259115398, -0.0349943861, -0.00745519903, 0.0275391862, -0.0256790202, -0.0354594253, -0.0219005551, -0.00386202568, 0.0430163555, 0.00808009878, 0.0508929975, -0.0415630974, 0.00673583802, 0.0188777857, 0.0494688079, 0.0120111546, -0.042987287, -0.00695019308, -0.0155207654, -0.00870499853, 0.0314193778, 0.0323785245, -0.00204000692, 0.0036930847, 0.0199677255, -0.00374939851, -0.0239060484, -0.0204908978, -0.0224818587, 0.0187469926, 0.0394704118, -0.0126433205, -0.00945342518, 0.00879219361, 0.0165380444, 0.00818909332, 0.00742250076, -0.0096496148, -0.0705119446, 0.0265655052, -0.0182819497, 0.0338899121, -0.0294138845, 0.00173664, 0.00602374272, -0.0182674173, 0.00708825234, -0.00505732791, -0.0288180504, -0.00055405352, -0.0345002785, 0.00224527926, -0.00714274915, 0.0221621413, -0.0203455724, -0.0164508484, -0.0127450479, -0.012454397, -0.021726165, -0.0239060484, 0.0028247647, 0.000772950123, 0.00033016142, 0.0263765827, 0.0323785245, -0.0388019122, -0.0297045354, -0.0239351131, -0.0220604148, 0.00304093654, -0.0315065719, 0.01016552, -0.0383950025, -0.0164508484, -0.0190521758, 0.0138204573, -0.0143436287, 0.0258679427, -0.0216971, -0.00992573332, -0.0539739, 0.000561773952, -0.00204727333, 0.00932989828, -0.0286000613, 0.0335120633, -0.000206067052, -0.0223365314, 0.00541700888, -0.00455958815, -0.0298498608, 0.0114007872, 0.0225835852, 0.0161601976, -0.0278443694, -0.012280006, 0.0324366577, -0.0315356366, -0.0525206439, -0.00946069136, 0.00624173088, -0.0227289107, -0.0184127428, -0.0278007723, -0.0186888613, -0.00861780345, -0.0157096889, 0.011139201, 0.0410980582, -0.00172392395, -0.00649605086, -0.00396012049, 0.0108776148, 0.00820362568, 0.00671040593, 0.0124471309, -0.0240513738, 0.00987486914, 0.0233247466, 0.00124162494, -0.023339279, -0.00967141334, -0.0274229255, 0.0546714589, 0.0245018825, -0.0271613393, -0.0262893867, -0.00783304591, 0.0152591793, -0.0222638696, 0.0347037353, 0.0103980405, 0.0066413763, -0.00808009878, -0.00994026568, -0.0145398183, -0.0108485501, 0.0285128672, -0.00616180198, 0.00596924592, -0.0307218153, 0.0230631605, 0.0023906047, -0.0234410055, -0.0121201482, 0.015753286, 0.0364476405, 0.00292104296, -0.0164653808, 0.00624173088, 0.0430744849, 0.00492290175, -0.00405094866, 0.00964234862, -0.00346056395, -0.00717544742, 0.0483643338, 0.00590748247, -0.022322, -0.029224962, 0.00413451111, -0.00924996939, -0.00386565877, -0.00670677284, -0.00983127113, 0.00464678369, -0.0380171575, -0.0476958342, -0.0581883378, 0.00621266617, -0.00695745926, 0.0208832771, -0.0343258865, -0.0115824435, -0.018892318, 0.00572219212, -0.0203746371, -0.0158695467, 0.0430163555, -0.00164036185, -0.0293266904, 0.0138567882, -0.0163200554, 0.0134644089, 0.0199386608, -0.0108630825, 0.0101800524, -0.0125779239, -0.0152882449, -0.00789117534, -0.032611046, 0.00563863, 0.0189504474, 0.0171920098, 0.0162619259, -0.0347328, -0.00386929186, -0.0211157985, 0.0173082687, -0.0248215981, 0.0131810242, 0.0267980266, 0.0299951881, 0.00496286666, -0.0889392197, 0.0105070351, -0.0184272751, -0.0311287269, -0.0138713205, 0.0259696711, 0.0155207654, 0.0239787102, -0.0258098114, 0.0077894479, 0.0171484109, -0.0270450786, -0.0174099971, 0.00204000692, 0.00871226471, -0.0258534104, -0.00550420396, 0.0316228345, 0.00729897432, 0.0382206105, -0.012919439, 0.0213483181, -0.0248506647, 0.0551946312, 0.0243274923, -0.00635435851, 0.0121274143, -0.022830639, -0.00200730865, 0.0290360395, 0.00583845284, 0.0194590874, 0.0166543052, -0.0176279861, 0.00398191903, 0.0143363625, -0.0226707812, 0.0141547052, 0.00639432296, 0.0369708128, 0.012069284, -0.0086032711, -0.0128395101, -0.030838076, -0.0158695467, 0.0060310089, -0.0166397728, -0.0381043516, -0.0079129748, -0.0200258568, -0.00975134224, -0.00247235037, -0.0184127428, -0.0347909294, -0.00387292518, 0.0052644168, 0.0168868247, -0.0425222479, -0.0402551703, 0.0244582854, 0.0172501393, -0.0442952178, 0.0105578993, -0.00274301926, -0.00723721087, 0.0406330153, -0.0065396484, -0.0384240672, 0.0233538114, 0.0222638696, -0.0551946312, -0.0278153047, -0.00579848839, -0.0410980582, 0.00521355309, -0.00836348347, 0.0477830321, 0.00622356543, 0.0141547052, 0.00194009568, 0.00989666767, 0.0297045354, 0.0498757176, -0.0435395241, -0.0121855447, 0.0377265066, -0.0032698242, 0.00390562345, 0.0422897264, 0.0103399111, 0.0364476405, -0.0124180652, 0.00632166024, 0.0159276761, -0.0600485057, 0.00822542422, 0.00854514074, -0.0190231111, 0.00947522372, -0.0221185442, -0.0110011417, 0.00285746297, 0.00548240542, -0.0158986114, -0.0118512958, -0.0410980582, 0.0026322084, -0.00305728568, 0.029312158, -0.0352559723, 0.00863233581, -0.00402551703, 0.0134862084, -0.0140893087, -0.018383678, 0.00363132148, 0.0259696711, -0.0159858074, -0.00912644248, -0.0110447397, 0.0161020681, -0.0150266588, -0.0100056622, 0.0245164149, -0.0191248376, 0.0198224, 0.0300533175, 0.0415340327, 0.00140329951, -0.0102599813, -0.00183927605, 0.0119312247, 0.00477757631, -0.0289779082, 0.012367202, 0.00375666469, -0.0329598263, 0.0353141, 0.00730987359, 0.0205199625, 0.0346165374, 0.026638167, 0.0136969304, -0.00897385087, -0.02083968, 0.00864686817, -0.0131374272, 0.00476304395, -0.0324366577, -0.00847247802, 0.0162183288, -0.0152737116, -0.00854514074, -0.0239205807, -0.00423260592, 0.0166833699, 0.00652874913, 0.0132900188, -0.00479937531, 0.00479210913, -0.0086832, -0.00763685582, -0.0056931274, -0.0243420247, 0.011560645, 0.0160875358, 0.0067213052, -0.00509729283, -0.056880407, -0.0161311328, -0.0110738045, 0.0406039506, -7.26627622e-05, 0.00608550617, -0.0144380899, -0.0298789274, 0.0123308701, 0.0266527012, 0.00846521184, 0.00367673556, 0.0189649798, 7.18112424e-05, 0.0150266588, -0.019226566, 0.00855240691, -0.030111447, -0.00688842963, -0.0156079605, 0.0162619259, 0.0132827526, 0.0283239447, -0.00463225087, -0.011306325, -0.01685776, -0.0173518676, 0.00341514964, -0.0228015743, 0.00967141334, -7.48199382e-05, -0.00418174174, 0.0222638696, -0.00945342518, 0.00798563752, -0.0182383526, 0.0255482271, -0.0068448321, 0.0258534104, 0.00895931851, 0.0357500762, 0.000892843644, 0.0160003398, 0.0117205027, 0.0573745146, 0.017279204, -0.00990393385, -0.018805122, 0.00369853457, 0.00903198123, -0.00385112618, -0.0146197472, -0.0316228345, 0.00310451631, 0.00611457136, 0.00090238062, -0.000431435124, -0.00118621951, -0.0720233247, 0.0084797442, 0.0100056622, 0.0032807237, -0.0195317492, -0.0349362567, -0.00360952248, -0.0145180197, 0.00568949431, -0.0395285413, -0.0035386763, 0.0139657827, 0.0280478261, -0.0111246686, -0.0121710123, -0.0224818587, 0.0324075893, -0.00540610915, -0.0176425185, 0.00980220642, -0.0260859299, -0.00730987359, -0.0299661215, -0.0230340958, 0.00301187136, 0.0181802232, 0.00501009729, 0.0287744533, -0.0358663388, -0.0113353906, -0.0228742361, 0.0300242528, 0.0338608474, 0.00237607234, -0.00564226322, 0.00970774516, 0.00272848667, 0.00639432296, -0.00427257037, 0.0137695931, 0.00233610766, -0.0229904968, -0.0264783092, 0.00581665384, 0.0311577916, 0.00192374655, 0.015753286, 0.00989666767, 0.0111101363, -2.06918558e-05, -0.00126705691, -0.0156951565, 0.0113571892, 0.010717757, 0.00386202568, 0.00703012198, -0.0140457116, -0.013849522, -0.0600485057, 0.00178659556, -0.0048248074, -0.0239932425, 0.00615090271, 0.0291958973, -0.0149249304, -0.00412361184, -0.0200258568, 0.0129339714, 0.00299370568, -0.0187905896, 0.00737890322, 0.00703738816, 0.00838528294, -0.0242984276, -0.00139149185, 0.0205780938, -0.0416212305, -0.0112045975, 0.0120474854, -0.00961328298, 0.00494470075, -0.00461408542, 0.0095260879, 0.00429800246, -0.0104997689, 0.00491563557, -0.00134335272, -0.0275682509, 0.026812559, 0.0173082687, 0.0359825976, 0.0208251476, -0.00996206421, 0.0102890469, -0.0318262875, 0.0278443694, 0.00905378, 0.0142709659, -0.00339516741, 0.0320297442, 0.0104489047, -0.0047812094, 0.00822542422, -0.0133336168, 0.0273793284, -0.00733167259, 0.0137477946, 0.0180930272, 0.0077894479, -0.0134426104, -0.0347328, 0.0266236346, 0.0126578528, 0.00146778778, -0.0196334776, -0.0072844415, 0.013805924, 0.0214500464, 0.00448692543, -0.0262312554, 0.0319425501, 0.0187760573, 0.00281204889, 0.00111809827, -0.0128467763, -0.00187469926, 0.0104997689, 0.0360697955, -0.0164799131, -0.0165961739, -0.0212901887, 0.0311577916, 0.0223801304, -0.00106905086, -0.0338608474, -0.0211303309, -0.0245745461, -0.0362151191, -0.0363313816, 0.0299079921, 0.00668497384, -0.0139585165, 0.00390925631, 0.00720814569, -0.017918637, 0.00110901531, 0.00377483037, 0.00584208593, 0.0245454796, 0.0153027773, -0.00637615705, -0.00900291558, 0.0327563733, 0.0153173096, 0.0170757491, 0.00834168494, 0.00829082076, -0.0138858538, -0.000964598148, 0.0300242528, -0.00792024098, 0.00192011346, -0.00792750716, -0.0858583152, 0.00885032397, 0.045283433, 0.0109793432, 0.00990393385, -0.00548240542, -0.0196189452, 0.0241095033, -0.0162764583, 0.029224962, -0.0028847116, 0.0209414065, 0.00668134075, -0.00213265209, 0.00082653889, 0.0501082391, 0.00330978865, 0.0042943689, -0.0157096889, -0.0176425185, -0.00843614619, -0.0131955575, -0.0316809639, 0.00405094866, -0.0244146865, -0.0104779704, -0.005929281, 0.0130574983, -0.0189504474, 0.00951882172, 0.0017820542, 0.033163283, -0.030111447, -0.022699846, 0.0118876277, 0.0172210746, -0.00708461925, 0.00148958655, -0.0036658363, 0.0170321502, 0.0152446469, 0.0571710579, 0.00909737777, -0.0201130528, -0.0030772679, -0.022278402, 0.0157678183, 0.00742250076, -0.0224527922, -0.00826175604, 0.0141692385, -0.0200694539, 0.00275936839, 0.0270160139, -0.00179840333, -0.028803518, 0.0197352059, -0.00821089186, -0.0154626351, -0.0510673858, -0.0130574983, -0.00516995555, 0.00853060838, -0.00672493828, -0.0200839862, -0.0349943861, 0.0268852208, -0.00566769531, -0.0179912988, -0.00416357629, 0.0147287417, 0.0211739279, 0.0126287872, -0.00838528294, 0.00306091877, -0.0245745461, -0.00489020394, -0.016944956, -0.00554416841, -0.0104125738, 0.0104125738, -0.0111682657, 0.0389181748, 0.0124398647, 0.0168722924, 0.014016646, 0.0205344968, -0.0225835852, -0.0398191921, -0.0445858687, -0.00613637, -0.0119820889, -0.0252285097, -0.013297285, 0.026216723, -0.0115751773, 0.0191393718, 0.00208178815, -0.0172065422, -0.00424713828, 0.0192992296, -0.00945342518, 0.00636525778, 0.00679396791, -0.0384531319, 0.00625263061, -0.0335411318, 0.00175843877, 0.0169885531, -0.00587115111, 0.00238152198, -0.0115679111, -0.0255336929, -0.0194881521, -0.0513580404, -0.00300097209, 0.00480664149, 0.0031190489, 0.0166397728, 0.0299661215, -0.0233683437, -0.00485023903, -0.0393250845, 0.00465041678, -0.00397465285, 0.0144235576, -0.0259260722, 0.00675400347, -0.0152737116, -0.0177006479, -0.0244437531, -0.0378718302, -0.021638969, -0.00191103062, -0.0133626815, 0.012280006, 0.0179622341, -0.00934443064, -0.00359680667, -0.0104489047, 0.0343549512, -0.00910464395, 0.0185290035, -0.0248361304, -0.0329598263, 0.00499193138, 0.0216680355, -0.0142273679, 0.0374939851, 0.0491200238, 0.0214500464, 0.0368545502, -0.00368036889, -0.0211448632, -0.0055696005, 0.00229251012, 0.0394122824, 0.0333958045, 0.00104634371, 0.013849522, 0.026812559, 0.0317681581, 0.0053116479, -0.0204037037, -0.0260859299, 0.0112845264, 0.00342423259, -0.012708717, 0.0260132682, -0.00250686519, 0.0189359151, 0.0648151785, 0.0327563733, -0.014656079, 0.00957695208, -0.0170466825, -0.00709915161, 0.0148014044, -0.0243856218, 0.0255191606, -9.7583812e-05, -0.0149685284, -0.0197933353, 0.0318262875, -0.0207234193, -0.0115388464, 0.0174826607, -0.026173126, -0.00704828789, 0.00717544742, 0.0138131911, -0.00741886767, 0.000402597099, -0.0114443842, 0.0188341867, 0.00640522223, -0.00203274074, -0.021769762, -0.0348490588, 0.0287889857, 0.0014496221, 0.0165671092, 0.02380432, -0.00379299605, -0.00933716446, -0.00581665384, -6.02873843e-05, -0.0279606301, 0.00842888, 0.025286641, -0.0041163452, -0.0367092267, 0.0126869176, -0.0251413155, 0.0114952484, -0.00695019308, 0.00222529704, -0.00140239124, -0.0243856218, -0.00965688098, -0.0153027773, 0.0120329531, 0.00545334024, -0.0164944474, -0.000604009198, -0.00898838323, -0.00310088322, 0.00863960199, -0.0143218301, 0.0244582854, 0.00587115111, -0.0109502776, 0.0265073739, -0.0303439684, -0.00152046827, 0.00447239308, -0.00461045234, -0.00863960199, 0.0132827526, -0.0207815487, -0.00260314345, 0.0250686519, 0.0093081, -0.0068993289, 0.0263620485, 0.014147439, 0.0109793432, 0.00422897283, -0.00156134099, -0.00951882172, -0.0124907279, 0.00302095432, 0.00716091506, 0.00818909332, 0.0574326441, -0.0286872573, -0.00943162665, 0.0110447397, 0.0268561561, 0.029690003, 0.0212611239, 0.00702648889, 0.0093226321, -0.0166107062, -0.0067213052, -0.00260496, 0.000841525558, 0.00891572051, 0.017831441, 0.00914097484, 0.00619813334, 7.04488193e-05, 0.0171774756, 0.0408655368, -0.0158986114, 0.00372033333, -0.0304602291, 0.032058809, 0.00194917852, 0.00268125581, 0.00882125925, 0.0142128356, 0.00695745926, 0.0146197472, 0.0234846044, 0.00365312025, 0.0353141, -0.0135516049, 1.87333681e-05, 0.0223801304, -0.0253738351, -0.0211157985, -0.00591111556, -0.0182674173, -0.0125197936, 0.0061545358, -0.00909011159, 0.0236153975, 0.0144308237, 0.0258098114, -0.0464751, -0.0268561561, 0.00272848667, 0.0108340178, 0.00639069, 0.0152446469, -0.0174099971, 0.00435613235, 0.00921363756, 0.0263184514, 0.0208687447, 0.0058747842, 0.0216244366, 0.00313358149, 0.000462543889, 0.000582664507, 0.00498829829, -0.00818909332, -0.0200113244, -0.00688479654, -0.0259551369, -0.00206180592, 0.00212538568, 0.00519175408, -0.0162764583, 0.0245890785, -0.02778624, -0.00427257037, -0.0181656908, 0.00279206643, -0.0274810549, -0.00190558087, -0.019313762, -0.00334067037, -0.0152446469, 0.0183691457, 0.0112554617, 0.00069529179, 0.0135152731, -0.00967867952, -0.00938802864, 0.0200113244, 0.00222529704, -0.00539884297, -0.00161674642, 0.0213337857, -0.0027066879, -0.0127377817, 0.00552600296, 0.0134789422, -0.00519902026, -0.0216535032, 0.000215036358, 0.0275246538, 0.0376974382, -0.0103035793, 0.0198224, -0.00147323741, 0.0260423329, -0.0223510657, 0.00731350668, -0.0133118173, 0.0147723388, -0.0136242677, -0.0112627279, -0.0110374736, -0.00452325679, -0.0175698549, -0.00612910371, 0.0131664919, 0.0300533175, -0.0275246538, 0.00969321188, -0.000408273889, 0.0148595348, 0.0160730015, -0.00150411914, -0.000949157286, -0.0408364721, 0.0135225393, -0.00812369678, -0.00611457136, 0.00967141334, 0.0120474854, 0.00031880787, 0.0124035329, -0.0181802232, -0.0271177422, -0.00946069136, -0.000559503271, -0.013340883, -0.026391115, -0.0244437531, -0.014656079, 0.00454142271, 0.0142273679, 0.011735036, -0.0424641185, 0.0339480415, 0.0103907743, 0.0112409294, 0.0121637462, 0.0248506647, -0.0101001235, -0.00358409062, -0.0131156277, -0.0181656908, 0.00461771851, 0.000593109755, -0.0113571892, 0.0392669551, -0.0202147793, -0.00863233581, 0.0256499536, 0.0208832771, -0.0245018825, -0.0352269076, 0.0162909906, -0.0136751318, 0.0132682202, 0.0157823507, 0.0238769837, -0.00345511432, -0.0308090094, -0.0230340958, -0.00169395062, 0.00447239308, 0.0115315802, -0.00595108, 0.00692839408, 0.0207379516, 0.0146197472, -0.0485677868, 0.00608913926, 0.0183255486, 0.0326401107, 0.0137187289, -0.0116696395, -0.0186888613, 0.0202147793, -0.0313321836, -0.00748426421, 0.00892298669, 0.0154335704, 0.00148686173, 0.0168722924, -0.00543517433, 0.0105361, 0.0120910835, 0.0161601976, 0.0339480415, 0.00726990914, 0.0280768909, 0.000367628149, 0.0114080533, -0.0143654272, 0.0130139, -0.0061545358, 0.0300533175, 0.00557686668, 0.000385793828, -0.0213773847, 0.00809463114, -0.0115461126, 0.00955515262, -0.00706645334, -0.00987486914, 0.0118440297, 0.0228015743, 0.0142927645, -0.0209123418, -0.00837801583, 0.00414904347, -0.0118222311, 0.0222929344, -0.019313762, -0.0206943545, 0.0209414065, -0.0233538114, 0.00643065432, -0.0216099042, 0.0139803151, 0.00155498309, -0.00822542422, -0.00903924741, 0.000795203086, 7.97587345e-05, -0.0162764583, 0.00474124495, 0.00248143333, 0.026303919, 0.00078475778, 0.00361133926, 0.0188341867, 0.0256208889, -0.000125002654, -0.0210140701, -0.00924996939, 0.028251281, 0.0257226173, 0.0147505403, -0.0150993215, 0.00042167108, -0.0189795122, 0.014060244, 0.00888665579, 0.0211593956, -0.0165235121, 0.00307908445, 0.0141765047, -0.0179767665, -0.0299951881, -0.00954788644, -0.0139439832, -0.00731350668, -0.00870499853, -0.0202293117, 0.0229759645, -0.000204136944, 0.0128177106, -0.0137550607, 0.00048502392, -0.00128885568, 0.0104634371, -0.0224382598, 0.00509729283, -0.0289343111, 0.0116333077, 0.0116260415, 0.0183110163, -0.003451481, 0.0103907743, -0.0254174341, -0.00532254716, 0.00888665579, 0.00213991827, 0.0300242528, -0.00792024098, -0.0163636543, -0.0145325521, -0.00624899752, -0.0194154903, -0.00522445235, 0.0241967, 0.0290069729, -0.00476667704, 0.00644155359, -0.0172937363, -0.0194009561, -0.00168214284, 0.000741160125, 0.0216971, -0.000957331853, -0.00895205233, 0.0421153344, -0.0275391862, 0.0108412839, 0.0123381363, -0.0210867338, 0.0147432741, 0.0206943545, 0.022191206, -0.00773131754, 0.00320079457, -0.0129485037, -0.00157133222, 0.0030772679, 0.0212465916, 0.0148958657, -0.000718453, -0.0417374894, 0.0406330153, -0.00347509654, -0.00616180198, 0.0218278933, 0.0256354213, 0.00138240901, -0.00830535311, 0.00469764741, -0.00528984889, 0.00813822914, 0.00625263061, -0.0186452642, -0.00902471505, -0.0133990133, -0.031215921, 0.0230195615, 0.0197933353, -0.0259987358, 0.0089956494, -0.000179613256, -0.00241785333, 0.024269361, 0.00419627456, -0.0447602607, -0.0304892939, 0.0144671556, -0.00636162469, -0.0166543052, 0.000702558085, 0.0220604148, -0.0343258865, 0.0205199625, 0.0259696711, -0.00818909332, 0.000780670496, -0.00498103211, 0.00322441, 0.0213773847, 0.0180930272, -0.000589476665, 0.00644155359, 0.0063579916, -0.00881399307, 0.0386856534, -0.0186016671, -0.00943162665, 0.00622719852, 0.0137332613, -0.00788390916, 0.0291087013, -0.0105070351, -0.00171029975, -0.0325529166, 0.0122872731, 0.00478847604, -0.0114661837, -0.0144308237, -0.00539521, -0.00129975507, 0.0318844207, 0.0156224938, 0.0353431664, -0.0184272751, -0.0171920098, 0.0144090252, 0.0168432277, -0.00666680839, -0.015419038, 0.00060945889, -0.00313176494, 0.0410108604, 0.0433070064, -0.00537341088, -0.000717544754, -0.0177297127, 0.00257589482, 0.0291232336, 0.00572582567, 0.00364222075, -0.0237025917, -0.0161892623, -0.00501009729, -0.00770225236, -0.0343549512, -0.0251703802, -0.00536251161, -0.0055696005, 0.0250395872, -0.00677580247, 0.0174099971, -0.00243420247, -0.00146778778, 0.00378209655, 0.017918637, 0.0267834924, 0.00256681209, 0.00409454666, 0.0139875812, -0.00226344494, -0.00999113, -0.00838528294, 0.0141547052, 0.00624536397, 0.0012779563, 0.0145034865, 0.0213337857, 0.00582028693, 0.0116623733, 0.0224673245, -0.0248361304, 0.0533925965, -0.0196044128, 0.027611848, 0.0114661837, -0.0268852208, -0.00774585037, 0.0104852365, 0.0269869491, -0.00515542272, 0.0293412227, 0.00453415606, 0.000485932193, -0.00598377828, -0.0122945393, 0.00512272445, -0.0212611239, 0.0345002785, -0.0560665838, 0.00576215703, 0.00134516938, -0.0119239585, -0.0187615249, 0.00331160519, -0.0197206736, -0.0221040118, 0.00712821679, 0.025199445, 0.0364476405, -0.0208978094, -0.00421444, -0.0137550607, 0.011604243, 0.00357319112, -0.018717926, 0.0131083615, 0.00428346964, -0.0086032711, -0.000802923518, 0.00906104594, -0.00351506099, 0.0172356069, -0.00663411, 0.00153863395, -0.00624173088, -0.00635072542, -0.0114952484, -0.0155352978, -0.00479937531, 0.00218351604, 0.0214355141, 0.0353431664, -0.00893751904, 0.021217525, -0.0142782321, 0.00813096296, 0.0194300227, 0.0170757491, 0.0274229255, 0.0171484109, -0.00465768296, -0.00744793285, 0.0108340178, -0.0134862084, 0.0061327368, 0.00906104594, -0.00357682444, 0.00977314077, 0.0156806242, 0.00885759, 0.00540247606, -0.00796383806, -0.0221185442, 0.0143654272, 0.0279024988, 0.0123817343, 0.0328726321, -0.021391917, 0.0145180197, -0.0174971931, 0.0131955575, -0.00137332617, 0.00412724493, 0.000511818333, 0.0141837709, -0.00642702123, -0.00166488544, -0.00226344494, 0.0193718914, 0.00571129285, 0.00133517815, 0.000489565369, -0.0203455724, -0.0320878737, -0.00844341237, -0.0233538114, 0.00486477185, 0.0178895723, -0.00527168345, 0.00737890322, -0.00421080692, 0.00580938766, 0.00882125925, -0.00119166926, -0.00435613235, 0.0113353906, -0.00130611309, 0.0162473936, -0.00571129285, -0.0122872731, -0.00603464199, 0.00605644099, 0.0064161215, 0.0112990588, -0.00169849198, 0.0143508948, 0.0305183586, -0.00765865482, 0.0241821669, 0.0123962667, -0.00130157173, -0.0196625423, -0.0177878439, -0.0020581726, 0.00116623729, -0.00762958964, 0.00596197927, 0.00383659382, 0.00831261929, -0.00816002768, 0.000309725, 0.0012007521, 0.00956968591, -0.000748880557, 0.0308962055, -0.00653238222, 0.039731998, 0.00324802543, -0.00386929186, -0.00909737777, 0.0168722924, 0.00882852543, -0.0201566499, 0.0134353442, 0.00708098616, -0.0137550607, 0.00878492743, 0.00920637138, 0.0210140701, 0.0020690721, 0.00389109086, -0.00436703209, 0.0208106153, 0.00483207358, 0.0108340178, -0.0164944474, 0.0148958657, 0.0111028701, 0.0269869491, 0.00760779111, 0.0177878439, -0.00255046296, -0.00430163555, 0.0180058312, -0.0388309807, 0.0259115398, -0.00241058716, 0.0225254558, 0.00530438125, 0.00560593186, -0.0107831536, -0.0175553225, 0.000726173457, 0.000121483048, -4.39950281e-06, 0.00969321188, -0.0108630825, -0.0347618647, -0.0138131911, 0.0116260415, -0.010761355, 0.0185435358, -0.00749153038, 0.000609913, 0.00630712742, -0.00521718618, -0.019778803, -0.021391917, -0.0248070657, -0.0160439368, -0.00759325828, -0.0082762884, 0.00607824, -0.0110592721, 0.0166397728, 0.0181075595, 0.0240223091, 0.00423260592, -0.0365057699, -0.00444696099, 0.00582392, -0.00650695, -0.0106959585, 0.0106886923, 0.00031426645, 0.00469764741, -0.00732440641, -0.0123381363, 0.00665954174, 0.000625808, -0.0239351131, -0.0207815487, -0.0311868563, -0.00141238235, 0.00598014519, -0.0141692385, 0.0102599813, 0.0113862548, -0.00699015753, 0.00189104828, -0.000793386484, -0.0139512494, 0.00103635259, -0.0112263961, 0.0111246686, -0.0139294509, 0.0192846972, -0.00916277431, 0.00420717383, -0.0171920098, 0.00043075392, 0.00804376788, -0.00184835889, 0.0168432277, 0.0055478015, -0.00921363756, -0.00773858372, -0.0189795122, 0.00841434766, 0.00869773235, 0.0160730015, -0.00858873781, 0.00707371952, 0.00343694864, 0.0102527151, -0.0171774756, -0.0171774756, -0.00487203803, -0.0254900958, 0.0296754707, -0.00298462296, -0.0119820889, 0.0118876277, 0.0281350203, 0.0111973314, -0.00118167815, 0.00631076051, -0.0108630825, -0.0174099971, 0.0144308237, 0.0325529166, -0.0120329531, 0.019691607, 0.00414541038, -0.00943889283, -0.0160875358, 0.0111246686, 0.0150121264, 0.0167269669, 0.0343549512, 0.0150121264, 0.0178023763, -0.00407274766, 0.00539884297, -0.00105179346, -0.0152591793, 0.0150993215, 0.0121419467, -0.0280332919, -0.019691607, -0.0141111081, 0.00833441876, -0.00847247802, -0.00153681741, 0.00659051212, 0.00606734026, 0.00563499704, 0.0145979486, -0.00236153975, -0.000320851512, 0.00852334127, 0.00587841729, -4.73443288e-05, 0.02033104, 0.00793477334, 0.0248361304, -0.00892298669, -0.0177151803, -0.0139875812, 0.0145398183, 0.0170466825, -0.00394558767, -0.0115461126, -0.0258098114, 0.0116260415, -0.0120765511, -0.0135152731, -0.0248797294, -0.0204327684, 0.0222202726, 0.00954788644, 0.018296482, -0.00970047805, 0.00130429654, -0.0170902815, 0.0192992296, 0.00661594421, -0.00673220446, 0.00578758866, -0.00489747, -0.0337155201, 0.00912644248, -0.0128177106, -0.00812369678, 0.0170176178, 0.0118730953, -0.00074161432, -8.77062212e-06, 0.00393105531, -0.00529348198, -0.00754239457, -0.0129775684, 0.00863233581, 0.0102745146, -0.0214936435, -0.015971275, 0.00590748247, -0.00990393385, -0.0274955891, 0.000243647315, 0.00669950666, 0.00227979408, 0.0156370252, 0.00432343408, 0.00706282025, -0.00183836778, -0.00698289135, 0.00696835853, 0.0182092879, -0.0182383526, 0.015884079, 0.0291813649, -0.000987305306, 0.0121637462, -0.00681576692, 0.002583161, -0.0142782321, 0.0103399111, 0.0222348049, 0.0148014044, 0.0103253778, -0.00457775407, -0.0349071883, 0.0164508484, 0.00217806618, 0.0201857146, 0.00962781534, -0.0112118637, 0.0242112316, -0.00844341237, -0.0259115398, 0.00624536397, 0.00655418076, 0.00536977779, 0.00562409777, -0.0244582854, 0.0186743289, 0.00199822593, 0.00506822765, -0.00425440446, -0.00263765827, 0.0143145639, 0.00433070026, 0.000706191175, 0.0297626667, -0.000590384938, 0.0166979022, 0.0214064494, 0.00023569983, -0.00360043976, 0.0276263822, -0.0137477946, 0.00306455186, 0.0170030855, -0.0206507556, 0.0113426568, -0.0200113244, 0.00450509088, 0.0209995378, -0.00106995914, 0.0097295437, -0.0151574519, 0.0145543506, -0.00460681878, -0.00244146865, 0.00509365927, 0.0158114173, 0.0132900188, 0.00114897988, 0.0213192534, 0.00191829691, 0.0148813333, 0.00564226322, -0.0251267832, 0.0273066647, 0.00489020394, 0.00325529161, 0.000407138519, 0.00399281876, -0.0115315802, -0.00643428741, -0.0133481491, 0.00939529482, 0.00163582037, -0.022191206, -0.00640885532, 0.00901018176, -0.00700469, -0.0146633452, 0.0214500464, 0.0125270598, -0.0189795122, -0.00082653889, 0.0175262578, 0.0191539042, 0.0131592257, -0.0120038884, 0.00436703209, 0.0175553225, -0.0282658134, 0.00573309185, -0.0246472079, -0.0169304237, -0.00217624963, 0.0120838173, -0.0355756879, 0.0205780938, 0.0142201018, 0.0350234509, -0.00335338642, 0.00687389728, 0.000797019631, -0.000960965, 0.00165126123, 0.00305365259, -0.0175843872, -0.00640158914, 0.00959875062, -0.00195462815, 0.0086832, 0.00123526691, -0.0156806242, 0.0110302074, 0.000459591945, 0.000544516544, 0.0245745461, -0.00872679707, -0.000221394352, 0.0185435358, -0.0159858074, -0.00520265382, -0.00302640395, 0.00363313803, 0.00165216951, 0.0249814559, 0.0050282632, -8.94660261e-05, -0.0102890469, 0.00406548148, 0.000352641451, 0.0181220919, 0.0171338785, -0.0093081, 0.0011308142, 0.0321460031, 0.0191539042, -0.00529711507, 0.00931536593, 0.00441062963, 0.00148777, 0.0116405739, -0.0199386608, -0.0110592721, 0.00527168345, -0.00871953089, 0.00184745062, 0.00570402667, 0.00948249, 0.0103617096, -0.0103544435, 0.00971501134, 0.000550420431, 0.0142419012, 0.000700287346, 0.00798563752, -0.00213991827, 0.00447965926, 0.000603100925, -0.00823269, 0.00376029778, -0.000348554167, 0.0292685591, -0.000713911606, -4.23203819e-05, 0.0353141, 0.0140965758, -0.011945758, 0.0234264731, -0.0331923477, -0.0191975012, 0.0191975012, 0.0176861156, 0.00213810173, 0.00588205038, 0.00479210913, -0.00363495457, 0.0100928573, 0.00840708148, -0.00287562865, 0.0138713205, 0.0177297127, 0.0175698549, -0.0081963595, -0.0435976572, 0.00237788889, 0.00331342174, -0.00794203952, -0.00323894247, -0.0159858074, 0.0125197936, -0.00954788644, -0.0290069729, -0.0024778, -0.0130720306, -0.0149103981, 0.0131374272, 0.0100855911, -0.00606734026, -0.0161601976, 0.0214500464, 0.0319716148, 0.00314811408, -0.0230050292, -0.00992573332, -0.0121928109, 0.00415630965, 0.0240513738, 0.0250686519, 0.00169758371, 0.0130938292, 0.011735036, 0.0137695931, -0.0136388, -0.0126796514, -4.66347337e-05, -0.0301405136, -0.0190231111, -0.0234846044, -0.0146488128, 0.00554053532, 0.0122872731, 0.01215648, -0.0127813797, -0.00810916442, 0.00348962913, -0.00679033482, -0.0266236346, -0.0086832, -0.00129248889, 0.00602374272, 0.0106814252, 0.00202910765, -0.021304721, -0.00788390916, -0.0049846652, -0.0217552297, 0.0150702568, -0.00370580074, 0.00743340049, 0.0154771674, -0.013849522, -0.0120547516, 0.0237897877, -0.00370943383, 0.0184272751, 0.00637615705, 0.000528621604, 0.018296482, 0.0200113244, -0.00321896025, -0.017918637, 0.00573672494, -0.0202147793, 0.018340081, 0.00514089037, -0.0239496455, 0.00230522617, -0.00498829829, -0.0134062795, 0.00275028544, -0.00458138715, 0.00861780345, 0.0144889541, 0.0120983496, -0.00327164074, -0.0225254558, 0.0100565264, -0.00647425186, 0.0200113244, -0.00946069136, -0.00694656, 0.0111028701, 0.00649605086, 0.0360988602, 0.0244292207, -0.0203891713, 0.00629986124, -0.00239423802, 0.0132173561, 0.00686663063, -0.00894478615, 0.00680486765, -0.00866140053, -0.00554053532, -0.0183110163, -0.0107686212, -0.0133045511, -0.00634709187, 0.0241676345, 0.000345148117, -0.0170176178, 0.0146488128, 0.0138422558, -0.0150993215, -0.00675763655, 0.0158259496, 0.0173082687, 0.0182383526, 0.0362732485, 0.013595202, 0.0348781236, 0.00193464593, 0.017744245, -0.00226526149, 0.00414177729, -0.00901018176, 0.0179331694, 0.0128395101, -0.0155062331, -0.00303912, 0.0066413763, -0.0342677571, 0.0242402963, -0.00698652444, 0.0107540889, -0.00047367037, -0.00134335272, -0.00265764049, -0.00584571902, 0.00656508049, -0.0131228948, -0.0119820889, 0.00127704802, 0.00639069, -0.0115461126, -0.00741160149, -0.0120474854, -0.0168432277, -0.0289488435, 0.021638969, -0.0129267052, 0.00805103406, 0.00829808693, -0.0110084079, -0.0136533324, 0.00348054618, -0.0128613086, 0.00185925839, -0.0112554617, 0.0011689621, 0.0315065719, 0.027611848, -0.00540247606, -0.00543154124, -0.00781124691, -0.00829808693, 0.011858562, 0.0188341867, -0.0172065422, -0.011306325, 0.0232811477, -0.0159567427, 0.0177297127, -0.0149975941, 0.0104707032, 0.00207452173, 0.0062562637, 0.00318626198, -0.00327527383, 0.00946795754, -0.00946795754, -0.0221040118, -0.00694292691, -0.00934443064, -0.0198224, 0.00588931656, 0.0048030084, 0.00339153432, -0.00260496, -0.00608550617, -0.00145053037, 0.039731998, -0.00608187309, 0.00654691458, -0.0063143936, 0.0333086103, 0.0415921621, 0.00439246371, -0.0205490291, -0.00169758371, -0.0109066805, -0.0104416385, -0.0229033027, -0.0157678183, 0.000382387778, 0.02431296, -0.000832442718, -0.00304638618, 0.00482117431, 0.00783304591, 0.0214064494, 0.00614363654, -0.0037312326, -0.00367855211, 0.0133118173, -0.0169740207, -0.00474851113, 0.0231212899, 0.0297917314, -0.0319425501, -0.0172501393, 0.0154045047, -0.0092863, -0.0129703023, 0.0287453886, 0.0235136691, 0.00355684198, 0.00515178964, 0.0083198864, 0.00378572987, -0.00148232025, -0.0453415625, -2.22387789e-05, -0.00135879358, 0.0253738351, 0.00851607509, -0.0102599813, -0.00640522223, -0.0127232494, 0.0016276458, -0.0184854064, -0.000321305648, -0.00209995382, 0.0149249304, 0.00645245286, -0.00970774516, 0.0022198474, 0.00997659657, -0.0109357452, -0.0149249304, 0.0157968849, -0.00533707952, 0.0376974382, -0.0129485037, -0.0150121264, 0.014612481, 0.0180058312, -0.00462861778, 0.0146270134, 0.0148740672, 0.00135061902, 0.00702648889, -0.0123308701, -0.0196044128, 0.00724811, -0.0181366242, 0.00378572987, -0.00644518668, 0.0247925334, -0.000240922469, -0.0170321502, 0.0119166924, 0.00299370568, 0.00699015753, 0.0260859299, -0.00521355309, 0.0212611239, -0.000656689692, 0.00673220446, -0.00362405507, 0.00364585407, 0.0257807467, 0.037988089, -0.0167850982, 0.00886485633, 0.00749879703, -0.0038329605, -0.0239351131, -0.0358954035, -0.00413087802, -0.0028465637, 0.00443606125, 0.00041940037, -0.0126723852, -0.0131228948, 0.0246181432, -0.0183546133, -0.0232666153, 0.0123454025, 0.0176570509, 0.00453778915, 0.00190013112, -0.018892318, 0.0140457116, 0.0068993289, -0.0122436751, 0.00325529161, -0.00512999063, 0.0125997225, 0.00684119901, 0.0211884603, 0.0197352059, -0.0255482271, -0.0102018518, 0.014191037, -0.0106087625, -0.013297285, 0.021304721, -0.00177387963, -0.0008978392, 0.0192120336, -0.0115243141, -0.0261876583, -0.0160003398, 0.00554416841, 0.0116987042, -0.00919183902, 0.00781124691, -0.0219005551, -0.0187760573, -0.00324802543, 0.00366401975, -0.0100710588, -0.0150121264, -0.0101945857, -0.0131083615, 0.00649605086, 0.00680123409, 0.00384386, 0.0107322894, -0.009358963, 0.000772950123, 0.0274519902, -0.00147051259, 0.00663047703, -0.0102454489, 0.0038329605, -0.00376756419, -0.0123454025, -0.0121056158, -0.0223801304, 0.0126287872, 0.00202184124, -0.0092863, 0.0144380899, 0.00797110517, -0.0177878439, -0.0103835082, -0.0121855447, 0.0276554469, -0.0223801304, 0.00703738816, 0.00855240691, -0.00783304591, 0.0147868712, -0.0112699941, -0.0162037946, -0.00753512839, -0.0104779704, 0.00333340419, 0.0239932425, -0.00806556642, 0.00719724642, 0.0181220919, -0.00824722368, -0.00014078409, 0.00758599211, -0.0188487191, 0.00077113352, 0.00145779666, 0.00595471309, 0.0130792968, -0.00710641779, 0.00199822593, 0.010884881, 0.0180639625, 0.0254174341, -0.00769498618, -0.00185835012, -0.00667770766, 0.00531528099, -0.0184272751, -0.00681213383, -0.00200730865, -0.0152301146, -0.00264492445, -0.0301695783, 0.00765865482, 0.0139803151, 0.00638705678, 0.0116987042, 0.0178750381, -0.00593291456, -0.00403278321, 0.00727354223, 0.00898111705, -0.0159276761, 0.00418174174, 0.0122727398, -0.019226566, 0.02033104, 0.00595471309, 0.0173228011, -0.0211012661, 0.00418900792, 0.0193718914, 0.0214355141, -0.00716091506, -0.0160875358, 0.0174535941, -0.0210867338, -0.00164853642, -0.0122218765, 0.010630562, 0.0347618647, -0.0164217837, 0.00123072544, -0.00854514074, -0.0142709659, -0.022365598, -0.0130356988, 0.0219586864, -0.00622356543, 0.0211448632, -0.00910464395, -0.0340643, -0.0310705956, -0.0212756563, 0.00248688296, 0.0125270598, -0.014147439, 0.013042965, -0.00730987359, 0.0369417481, 0.0011762284, -0.00660504494, -0.0100347269, 0.00970774516, 0.00310269976, 0.0081963595, 0.0169304237, -0.0100056622, 0.0113862548, -0.00237970543, -0.0834168494, -0.00519175408, 0.0192556307, 0.0318553522, 0.0172937363, 0.022917835, 0.0184999388, 0.0100637926, -0.000599921914, 0.00893025286, 0.00901018176, -0.0111755328, 0.020752484, 0.00107540889, -0.0111319348, -0.00708461925, 0.0146197472, -0.0127232494, -0.0168286953, -0.00158677297, -0.00610367162, -0.00697199162, 0.000720269629, -0.00336428569, 0.0077676489, 0.00332250469, -0.000422579353, -0.0119094262, -0.01190216, -0.00170666655, -0.00219078222, 0.000550874567, 0.00300278864, 0.00550420396, -0.010209118, -0.0219732188, -0.0169885531, -0.0137986578, -0.0015577079, -0.00654691458, 0.00187106605, 0.0028738121, 0.00866140053, 0.000238424676, -0.00781124691, 0.00514815655, -0.000466404075, -0.0195172168, -0.00962781534, 0.00828355458, -0.0104997689, 0.0109357452, -0.0139512494, -0.0149539961, -0.0205635615, 0.00120256864, -0.000213673935, -0.0209704731, -0.00538431061, 0.0257662144, 0.0161311328, -0.0424059853, 0.00253411382, 0.021769762, 0.0189359151, 0.0124761956, -0.0143072978, 0.0150557235, 0.00679396791, 0.00216535013, -0.014191037, -0.0224237274, -0.0136605985, -0.00231975853, 0.0197206736, -0.00795657188, -0.0113862548, 0.00847247802, 0.00257226173, 0.00633255951, 0.022787042, -0.00297190691, -0.0097295437, 0.00189104828, 0.00542790815, 0.0079129748, 0.030111447, 0.00720814569, 0.0231794212, -0.00227979408, 0.0250977166, 0.00829082076, -0.0199822597, -0.00123617519, 0.00585661829, 0.0195026845, -0.0127668465, -0.0211303309, 0.0107758874, 0.0243565571, 0.0133263506, -0.00834168494, 0.00882852543, 0.00910464395, 0.0114661837, -0.0128249768, -0.0122218765, -0.0106014963, 0.0188196544, -0.0149103981, 0.0379590243, -0.0147723388, -0.00994026568, -0.00558776641, 0.013130161, 0.0150411911, -0.0108776148, 0.000881490123, 0.0102599813, 0.0249814559, -0.00414177729, 0.0127813797, -0.0211593956, 0.00262494222, -0.00680486765, -0.0111755328, -0.000215604028, -0.00497013284, -0.0124834618, -0.000787028519, 0.00206180592, -0.00892298669, 0.0096060168, -0.0195317492, 0.00645608641, -0.0132173561, 0.0056931274, 0.000264764938, 0.0033079721, 0.0186743289, -0.00754966075, 0.00578395557, 0.00749153038, -0.0185290035, -0.019357359, -0.024778001, -0.00715364888, 0.0270160139, -0.00306273531, 0.00248688296, -0.0247925334, -0.00555870123, 0.0159858074, -0.0055805, 0.0025141316, -0.0369708128, 0.0182383526, -0.00343694864, -0.00965688098, -0.0080583, -0.0110302074, 0.0156660918, 0.00499919802, -0.0058275531, 0.00481754076, 0.0221185442, -0.000973681, -0.0174535941, -0.00484660594, -0.0079493057, 0.0126069887, 0.0232084859, 0.0175989196, -0.00371851679, 0.00697925827, -0.0124907279, 0.00459591951, -0.0153463753, 0.00695382617, -0.00774585037, 0.0189940445, -0.000946432468, 0.00153045938, -0.00596561236, 0.0187615249, -0.00292467605, 0.00421444, 0.00116169592, 0.0083998153, -0.00656508049, 0.0315065719, 0.0129267052, -0.0253593028, 0.0191539042, -0.0315065719, -0.00376756419, 0.00929356739, 0.00896658469, -0.00725901, 0.00200004247, -0.0174099971, -0.00534434617, 0.00711005088, 0.0062562637, 0.00458138715, -0.0132609541, -0.00637615705, 0.00979494, -0.00536251161, -0.0211303309, 0.0119166924, -0.0139803151, -0.00826175604, 0.0283820741, -0.000611275493, 0.00898838323, -0.009358963, 0.00174663111, -0.00817456, 0.0204763655, 0.00826175604, 0.0103835082, 0.0149685284, 0.00260677654, 0.0155062331, 0.0044433279, 0.000534525432, 0.00798563752, -0.0325238518, 0.00122709235, 0.000373986142, -0.0145906825, 0.0296028089, -0.0102745146, 0.00354230963, 0.00302458741, -0.0105578993, 0.0153173096, -0.00116987037, 0.0163491201, -0.00647061877, 0.0113353906, -0.0163781866, -0.00290469383, -0.000578123087, -0.0142854983, 0.00912644248, 0.00587841729, 0.0106087625, -0.00859600492, -0.0111973314, 0.00538431061, 0.0179622341, 0.0103181116, 0.0111174025, 0.00363495457, -0.0349071883, -0.00157042395, -0.00138967531, 0.0310705956, 0.00775311654, -0.00906831212, -0.01016552, -0.0162328612, 0.012919439, 0.00520265382, -2.16001408e-05, -0.0190957729, -0.00282839802, 0.00707735261, 0.0116333077, -0.00283384765, 0.0114080533, -0.0119675566, 0.012875841, 0.00953335408, 0.00198187679, 0.0116551062, -0.0225254558, -0.0160294045, -0.017279204, -0.00311178272, -0.0108485501, 0.009402561, -0.00736800395, -0.00537704444, 0.0165816415, -0.0134498766, 0.0157387536, -0.00986033678, 0.0231212899, 0.0072844415, 0.00486840494, 0.00733893877, 0.00469764741, -0.0180784948, -0.00866866764, 0.0209414065, -0.00515905581, -0.0219296217, -0.00757872593, 0.00163763692, -0.0136605985, -0.0124035329, -0.0132464208, -0.00118531124, 0.000834259321, -0.000988213578, -0.000112854352, -0.00213810173, -0.0339189768, 0.0189213827, -0.00690659555, 0.00762232346, -0.00254319655, -0.0261149965, -0.0177151803, -0.00417447556, 0.0140384454, -0.00223437976, 0.00490836939, 0.00629259506, 0.00315174717, 0.0154917007, -0.00400008494, 0.00107995025, -0.00945342518, 0.00953335408, 0.00965688098, 0.0164653808, 0.00530074816, 0.0143436287, -0.0225545205, 0.0269288179, 0.00442879507, 0.0033079721, 0.0053116479, -0.0123381363, 0.0146924099, 0.00142146519, 0.005060961, -0.00149957766, -0.00517358864, -0.00950428937, 0.0132173561, 0.00226344494, -0.000473216234, 0.0119966213, 0.00604554173, -0.0127232494, -0.0156224938, 0.0130502321, 0.00608913926, 0.0169013571, 0.00661231112, -0.0106232958, -0.012621521, -0.00317354593, -0.00122800062, -0.0151283862, 0.0133263506, -0.00849427655, -0.00747699803, 0.00660141185, 0.0147578064, -0.0172501393, 0.0375230499, 0.00682303309, -0.0288180504, -0.00116169592, 0.0206362233, -0.0305183586, 0.00268125581, 0.0567350835, 0.00862507, -0.00327345729, 0.00194372877, 0.018340081, -0.0190667082, -0.00308453408, 0.032058809, -0.0282222163, -0.0128976395, 0.00216171704, 0.00861053728, 0.0185290035, 0.00486113876, 0.0206216909, -0.0102163842, -0.00333885383, -0.0137913916, 0.00418900792, -0.0182238203, 0.0124325985, 0.00785484444, -0.000526350865, -0.0292976256, 0.0180348977, 0.00295919087, -0.00354957581, -0.000230817794, -0.0119748227, 0.030285839, -0.0016803263, 0.00858147163, -0.0184127428, 0.00294284173, -0.0015122937, -0.0217552297, -0.0246762726, 0.00197461061, 0.0215081777, -0.0042180731, 0.0282658134, 0.00596197927, 0.0248797294, 0.0032062442, 0.0149975941, -0.0189504474, 0.00608187309, 0.0111319348, 0.0112191299, -0.0120474854, -0.00229432667, -0.0115025146, 0.00533707952, -0.0335701965, -0.0150557235, 0.0173082687, 0.0125125274, -0.0137768593, -0.00895931851, 0.0141837709, 0.00244691852, 0.0171193462, -0.00435613235, -0.0351978391, 0.012497995, -0.0014105658, -0.00323712593, 0.0216244366, -0.0157678183, -0.0139149185, 0.0194009561, -0.0182092879, -0.012497995, -0.0190085787, -0.00348417927, -0.00163854519, -0.0132246222, 0.00168305112, 0.0109866094, -0.00797110517, 0.00800743606, -0.00433070026, -0.00156951556, -0.0104125738, -0.00184745062, 0.00215445086, -0.0105651654, -0.00896658469, -0.00690659555, 0.000182905787, 0.00576579, 0.0149539961, 0.00863233581, 0.0245454796, 0.0083198864, -0.0183691457, -0.00427257037, 0.0129921017, 0.00217988272, -0.0091991052, 0.0326691754, 0.00737527, -0.00598014519, -0.0261004642, -0.0201130528, 0.00687753037, 0.00661231112, -0.000243874383, 0.00430163555, -0.0150411911, -0.00409091357, 0.00966414716, 0.0249814559, 0.0164944474, 0.0154481027, -0.0207088869, 0.00768045383, -0.00693929335, -0.00396738667, 0.00119076099, 0.00499919802, 0.00736437086, 0.000553145248, 0.0134135457, -0.000606279878, -0.00938076247, 0.0180639625, -0.0197642706, 0.0194300227, -0.00207270519, -0.00131428766, -0.0185144711, 0.00424350519, -0.0268852208, 0.00938802864, 0.0131083615, -0.015884079, 0.0119748227, -0.00689569581, 0.0370870717, 0.0011099237, 0.000472762069, -0.00703012198, 0.00419990765, 0.00689569581, -0.0160148721, 0.0164799131, -0.0335701965, 0.0100928573, -0.0061545358, -2.39134283e-06, 0.0191539042, -0.00648515113, -0.00970774516, 0.0142491674, 0.00503552938, 0.0167996306, -0.00351869408, 0.0383950025, -0.00821815804, 0.0199967921, 0.000886939815, 0.0096496148, -0.00191829691, 0.00307363481, -0.0339480415, -0.00316264667, -0.000117168704, 0.0189068504, 0.00939529482, 0.000640794693, 0.0302567724, 0.00977314077, 0.037784636, 0.00893025286, -0.0068448321, 0.0170612168, -0.00735347113, 0.00615090271, -0.0383950025, 0.0154335704, 0.00303185359, -0.0118876277, 0.0373195931, 0.0120256869, -0.0250977166, -0.00524988445, -0.00307545136, 0.000485478056, -0.00384386, -0.0114661837, 0.00844341237, -0.0135225393, -0.00704828789, -0.0175117254, -0.0416212305, 0.0346746705, 0.00107995025, -0.00289561087, -0.0171484109, 0.0132536869, -0.00866140053, 0.0149394637, 0.0246762726, -0.0137259951, 0.00145416346, 0.00679396791, 0.00658324594, -0.00137060136, -0.00361678889, -0.0234991368]
02 Aug, 2018
unordered_multiset bucket() function in C++ STL 02 Aug, 2018 The unordered_multiset::bucket() is a built-in function in C++ STL which returns the bucket number in which a given element is. Bucket size varies from 0 to bucket_count-1. Syntax: unordered_multiset_name.bucket(element) Parameters: The function accepts a single mandatory element which specifies the value whose bucket number is to be returned. Return Value: It returns an unsigned integral type which signifies the bucket number in which the element is. Below programs illustrates the above function: Program 1: // C++ program to illustrate the // unordered_multiset::bucket() function #include <bits/stdc++.h> using namespace std; int main() { // declaration unordered_multiset<int> sample; // inserts element sample.insert(10); sample.insert(15); sample.insert(15); sample.insert(13); sample.insert(13); for (auto it = sample.begin(); it != sample.end(); it++) { cout << "The bucket number in which " << *it << " is " << sample.bucket(*it) << endl; } return 0; } Output: The bucket number in which 13 is 6 The bucket number in which 13 is 6 The bucket number in which 10 is 3 The bucket number in which 15 is 1 The bucket number in which 15 is 1 Program 2: // C++ program to illustrate the // unordered_multiset::bucket() function #include <bits/stdc++.h> using namespace std; int main() { // declaration unordered_multiset<char> sample; // inserts element sample.insert('a'); sample.insert('a'); sample.insert('b'); sample.insert('b'); sample.insert('c'); sample.insert('c'); sample.insert('e'); for (auto it = sample.begin(); it != sample.end(); it++) { cout << "The bucket number in which " << *it << " is " << sample.bucket(*it) << endl; } return 0; } Output: The bucket number in which e is 16 The bucket number in which a is 12 The bucket number in which a is 12 The bucket number in which b is 13 The bucket number in which b is 13 The bucket number in which c is 14 The bucket number in which c is 14 Learn C++ Online – Master everything from basics to advanced concepts. Apply your knowledge with practical exercises and boost your skills. Take the Three 90 Challenge: finish 90% in 90 days for a 90% refund. Start now and level up your C++ programming!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum/Algorithm for Dynamic Time out timer Calculation/Difference between Round trip time (RTT) and Time to live (TTL)/Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms/Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm/Round Robin Scheduling Algorithm with Different Arrival Time/Selfish Round Robin CPU Scheduling/Find the order of execution of given N processes in Round Robin Scheduling/Calculate server loads using Round Robin Scheduling/set::lower_bound() Function in C++ STL/Implementation of lower_bound() and upper_bound() in List of Pairs in C++/Difference between std::set::lower_bound and std::lower_bound in C++/Difference between std::set vs std::vector in C++ STL/std::minmax() and std::minmax_element() in C++ STL/std::rotate vs std::rotate_copy in C++ STL/std::bitset::to_ullong and std::bitset::to_ulong in C++ STL/std::upper_bound and std::lower_bound for Vector in C++ STL/std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++/std::string::append vs std::string::push_back() vs Operator += in C++/Vector push_back() in C++ STL/vector :: cbegin() and vector :: cend() in C++ STL/unordered_multiset cend() function in C++ STL/unordered_multiset bucket() function in C++ STL
https://www.geeksforgeeks.org/unordered_multiset-bucket-function-in-c-stl?ref=asr10
PHP
unordered_multiset bucket() function in C++ STL
What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, jQWidgets jqxTreeMap width Property, Round Robin Scheduling Algorithm with Different Arrival Time, Difference between Flow and TypeScript, jQWidgets jqxTree destroy() Method, jQWidgets jqxTree collapseAll() Method, Find the order of execution of given N processes in Round Robin Scheduling, jQWidgets jqxScrollView buttonsOffset Property, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Vector push_back() in C++ STL, jQWidgets jqxListBox enableHover Property, Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm, std::rotate vs std::rotate_copy in C++ STL, Selfish Round Robin CPU Scheduling, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxSlider buttonsPosition Property, std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++, std::upper_bound and std::lower_bound for Vector in C++ STL, Difference between Round trip time (RTT) and Time to live (TTL), jQWidgets jqxSlider rtl Property, Difference between std::set::lower_bound and std::lower_bound in C++, jQWidgets jqxTooltip opacity Property, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, jQWidgets jqxToolBar height Property, PHP, std::minmax() and std::minmax_element() in C++ STL, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, Node.js date-and-time Date.transform() Method, TypeScript Optional Parameters, jQWidgets jqxToolBar theme Property, Difference between std::set vs std::vector in C++ STL, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, Steps to Diagnose and Resolve a Slow Network, How to use Optional Chaining with Arrays and Functions in TypeScript ?, Calculate server loads using Round Robin Scheduling, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, jQWidgets jqxScrollView showButtons Property, Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms, jQWidgets jqxScrollView disabled Property, jQWidgets jqxSplitter destroy() Method, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, set::lower_bound() Function in C++ STL, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, jQWidgets jqxTree collapseItem() Method, std::string::append vs std::string::push_back() vs Operator += in C++, unordered_multiset cend() function in C++ STL, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), jQWidgets jqxSortable opacity Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, vector :: cbegin() and vector :: cend() in C++ STL, jQWidgets jqxSlider height Property, jQWidgets jqxSwitchButton onLabel Property, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, jQWidgets jqxToolBar tools Property, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTree width Property, Implementation of lower_bound() and upper_bound() in List of Pairs in C++, jQWidgets jqxTree clear() Method, TLS Handshake?, Algorithm for Dynamic Time out timer Calculation, Adhoc TCP, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, jQWidgets jqxTabs position Property, Differences between Wireless Adhoc Network and Wireless Sensor Network, jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, std::bitset::to_ullong and std::bitset::to_ulong in C++ STL, unordered_multiset bucket() function in C++ STL, Impact of Three-way Handshake and Slow Start Algorithm, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, How to Sort an Array Having Optional Properties in TypeScript ?
GeeksforGeeks
[-0.0116849607, 0.011425727, -0.00720021687, -0.00658129621, 0.0315487459, -0.0165131893, -0.0168372318, 0.0248086676, -0.0191444121, 0.00832788367, -0.0330782235, -0.00612439681, 0.0086648874, -0.000422469981, -0.0265455339, -0.0202591158, 0.000811320555, 0.0120284455, -0.0133764604, -0.0116136717, 0.0281009376, 0.0152170202, -0.0302525759, -0.00556056341, -0.0304599628, 0.00830844138, -0.0383147448, -0.00556380395, 0.00625401363, 0.00536613818, -0.0179648977, 0.0217626728, -0.0125274705, -0.0289304852, -0.012708934, 0.0234736148, 0.00211113482, 0.0369408056, -0.0290082544, 0.00127348572, -0.011419246, 0.000329915434, 0.0286712516, 0.00346401078, 0.000169615829, 0.0197924953, 0.00829547923, -0.0201683845, -0.0119636366, 0.0212442037, 0.0154503305, 0.000743271725, 0.0305377338, 0.0179519355, 0.00938426144, -0.0052268, 0.00589756761, 0.0366815738, -0.0166428052, -0.0317302085, -0.0211405102, -0.0290341787, 0.0233958438, -0.0147115141, -0.0145300506, -0.00516199181, -0.0223070625, 0.0593645237, 0.0456251353, -0.00992217101, -0.0255604461, 0.0448733605, 0.032196831, 0.0265196115, -0.0324042179, -0.00101425196, 0.00308488146, -0.0248345919, -0.0307451207, 0.0469731539, -0.0250290167, 0.0325856805, -0.00601746282, -0.0183537491, 0.00554112112, -0.00348021276, -0.00730391033, -0.0252882503, 0.0134412693, 0.0410885476, -0.02198302, -0.00437456928, -0.0107193151, -0.00222292915, -0.0166039206, 0.0300192665, 0.0399479195, 0.00758258672, -0.0158262197, 0.0427994877, -0.0159428753, -0.0237198863, -0.0170446187, -0.0102138091, 0.0103952726, 0.0175371617, 0.0298637263, 0.0159299131, 0.00853527058, -0.0148152076, 0.0625271797, 0.0240439288, -0.00784182083, 0.0368889607, -0.0122876791, -0.00131723145, 0.0046759285, -0.0271676946, 0.0237846952, 0.00697338721, 0.0166557673, 0.00919631682, 0.00942314602, -0.0210627411, -0.0607125387, -0.0106480252, 0.0102915792, 0.0222811401, 0.00706411945, -0.0210497789, 0.0104860049, -0.0340114646, -0.0146207828, -0.0663119927, -0.029267488, 0.0324042179, 0.0290082544, 0.0193388369, -0.00939722266, -0.0325079113, -0.0676081553, -0.0189370234, -0.00565777626, 0.0100712301, -0.0171612725, -0.014776323, -0.0118016154, 0.0256771017, -0.00520087685, 0.0222292934, 0.0150225945, 0.0223329868, 0.030771045, 0.0222941, 0.0135708861, 0.000177514346, 0.0142578557, -0.0036551957, 0.0073752, -0.0225792583, 0.0407256186, -9.29596e-05, 0.00456899451, -0.00755018229, 0.0017433468, 0.0465843, 0.0109461443, 0.00688913651, -0.032326445, 0.024847554, 0.0269603077, 0.0212442037, 0.0163187627, 0.00816586241, -0.00554760173, -0.0129292822, 0.0434216522, 0.0262214914, 0.0181982089, 0.0243031625, 0.00125485333, 0.0154632926, 0.0403886139, -0.00484443037, -0.00612439681, 0.00810105447, 0.00701227272, -0.00585544202, 0.0528836809, 0.037251886, 0.00136826804, 0.0107646808, 0.0258844886, 0.0421514064, 0.0574980415, 0.0170964655, -0.0226959139, 0.00363575318, -0.024549434, 0.0326893739, -0.00745297, 0.00344132772, -0.0243938938, 0.0167594608, 0.0197665729, 0.0126506062, -0.0187814832, -0.00312052597, 0.0256641395, -0.00182273716, 0.00240763323, 0.0213219747, 0.00426439475, 0.00071086752, -0.0283342469, 0.0136097707, -0.0560463332, 0.0428513363, 0.0209720097, -0.0391183719, 0.0237976573, -0.00291962, 0.0229421854, -0.0480100885, -0.0168372318, -0.0227866452, 0.0474916212, 0.0253919438, -0.00419634627, -0.0408293121, 0.0366038047, 0.0174723528, -0.0425143316, -0.0120543689, 0.0476730838, -0.0338818505, -0.0487359427, -0.00763443345, -0.00507126, 0.0163965337, -0.00805568788, 0.0855471343, -0.025340097, -0.019623993, -0.00114548905, 0.0223718714, -0.011775692, -0.0442771204, -0.00983792, 0.0038269381, 0.0245883204, 0.0123654492, 0.0289564077, -0.0193777215, 0.0370185785, 0.00697986828, -0.025340097, -0.0289564077, 0.0135708861, -0.0323005244, 0.00071410794, 0.056461107, -0.0321449824, -0.0179130509, 0.00220348663, 0.00194587326, 0.0305895805, -0.0279194731, -0.037407428, -0.0448733605, -0.00426439475, -0.0169798099, 0.0154373692, -0.00717429351, 0.00525920419, 0.0168761164, -0.0202331934, 0.00300387084, -0.0220737532, -0.01506148, 0.0207386985, -0.0213349368, 0.00775756966, 0.0215941705, 0.0229421854, -0.00936481822, -0.0124691427, -0.0223329868, 0.00103207433, -0.0398701467, -0.0177704729, -0.00377185084, -0.013778273, -0.0126376441, 0.00978607312, 0.0271158479, -0.00190050725, -0.0302785, -0.0271676946, -0.0297341086, -0.0163965337, -0.0323005244, -0.0345817804, -0.0259492975, 0.00218890491, -0.0150485178, 0.0139856599, 0.00550871668, 0.00655861339, -0.0349447057, 0.0219052508, -0.0337003842, -0.0479323156, -4.76443238e-05, -0.00927408691, -0.0387295187, 0.0342966244, 0.021412706, -0.0441215821, -0.0153984837, -0.0294489525, 0.00774460798, -0.0207646228, 0.0372259654, 0.0178741664, -0.00750481663, 0.00335059594, 0.0613347031, -0.0152559048, -0.0359038711, 0.00636418816, 0.00329874922, -0.0438105, -0.00663638348, -0.0012192087, -0.0447437428, -0.0152818291, 0.0307969674, 0.0129292822, 0.0473360792, 0.019701764, 0.0295267217, -0.0267269984, 0.00388526567, -0.0139338132, 0.0125469128, 0.00187782431, -0.0322227515, 0.00344780856, 0.0363964178, 0.000706006889, -0.0104536, 0.0173038524, -0.00365195516, 0.0296822619, -0.0256641395, -0.0196499173, -0.0453659035, -0.00417690352, 0.00679840473, -0.0388591364, 0.0152947903, -0.0071678129, 0.0133375758, 0.0114581306, -0.0165391117, -0.00830844138, -0.0465324558, 0.0322227515, -0.0244975872, -0.0043907715, -0.000786207325, 0.042047713, -0.00176765, -0.0102397325, 0.00190374767, 0.00237036846, -0.00385610177, -0.00158942677, 0.00172390428, 0.0118145775, 0.0405700803, 0.00423847139, -0.010920221, 0.027556546, 0.00148411316, -0.0152559048, 0.0128839165, -0.00911854673, 0.0113155525, -0.024056891, -0.0156836417, 0.0229551475, -0.0319116712, -0.00780293532, 0.000300954154, -0.0388332121, -0.0399997644, -0.0488396361, -0.0568758808, 0.0195203, -0.0026944105, -0.018625943, -0.0149448244, -0.0283083245, -0.0180815533, 0.0130977845, -0.0192869902, -0.00747889327, 0.0274528526, 0.0251586344, -0.0467139184, 0.0276083928, 0.0390146784, 0.0150485178, -0.00615356071, -0.0306673516, 0.020298, 0.00983792, -0.00562213175, -0.0196628794, 0.0129681677, -0.0404404625, 0.00106528867, -0.0123913726, 0.0285675582, 0.00404404616, 0.00767979957, -0.00658777729, -0.026986232, 0.00531105092, 0.0326893739, -0.001490594, 0.0458325222, 0.00709004281, -0.0371741168, 0.0301488824, -0.0192869902, -0.0146207828, -0.0156058706, 0.0409330055, 0.0599348396, -0.00202526362, -0.0323005244, 0.00398247829, 0.0235902704, -0.0146207828, -0.0173297748, -0.00467916904, 0.0215164, -0.0393776037, -0.000378116703, -0.0117692119, 0.033337459, 0.0144004337, -0.0165002272, -0.001106604, -0.00827603694, 0.0469472297, 0.00813345797, -0.0388591364, 0.00780293532, -0.00463704346, 0.0311858188, 0.0020382253, 0.0200646911, 0.00902781449, 0.0358261019, -0.00297146663, -4.08596934e-05, -0.00315131014, -0.0387554429, -0.0208294298, 0.00491247931, 0.0216849018, -0.0324560627, -0.00568045909, -0.0147115141, -0.0147892842, -0.00752425892, 0.0244327802, -0.0125080273, -0.0296563394, -0.00389498682, 0.0109007787, -0.0169668477, -0.0120478878, -0.011710884, -0.0115423817, -0.00202202308, -0.0276602395, -0.0240180045, -0.0189499855, -0.0320153646, 0.0170316566, 0.00648732437, -0.0403367691, -0.0102980603, -0.00388850598, 0.00168339908, 0.0311080478, -0.00791959092, -0.0283342469, 0.0167853851, 0.0158521421, -0.0332596898, -0.00550223608, 0.0320672132, -0.0348928608, -0.0243161246, 0.00658453675, 0.0505246557, -0.00140148238, 0.00166233629, -0.0184574425, 0.0090667, 0.0512764342, -0.017563086, -0.0267269984, -0.00773812691, 0.0160984155, 0.018625943, -0.00175144791, 0.0382888243, 0.0162280314, 0.0206609294, -0.0313154347, 0.00973422639, -0.00157808536, -0.0217626728, -0.00899541099, -0.00211599539, -0.0358001776, -0.00966293737, 0.00312052597, 0.00200096029, 0.00884635095, 0.0135449627, -0.0107582, 0.00876858085, 0.00667526852, -0.00601422274, 0.0381073579, 0.0146596674, -0.0306155048, 0.00850286614, 0.0114451693, -0.00517171295, -0.0387813672, -0.00677248137, 0.011490535, 0.00884635095, -0.0170835033, -0.0103628682, -0.00856119394, 0.0205831584, -0.0197665729, -0.0149707478, 0.0360334888, -0.00318047381, -0.00587488431, 0.0309265852, 0.0419180952, 0.0254308283, -0.000947823341, -0.0143356258, 0.0075372206, 0.0313672833, -0.0266751517, 0.00447826274, 0.00787422433, -0.0258585643, 0.0291378722, -0.00197989773, -0.00879450422, 0.0145818973, -0.00353854056, -0.000631072093, -0.0153725604, -0.0060595884, 0.0234217681, -0.0191832967, 0.0100323455, -0.0173168126, -0.0244975872, -0.00245786, -0.0394294523, -0.0120997345, -0.0393776037, 0.00365195516, -0.0232662279, 0.0138690043, -0.00428707805, 0.00561565068, 0.0155281005, -0.0291897189, -0.00145089882, 0.000424495229, -0.0181982089, -0.00872969627, 0.0296822619, -0.00471157301, -0.0138041964, -0.019701764, 0.00203984533, 0.0177963953, 0.0271936189, 0.0119765988, -0.00639011152, 0.0056610168, -0.0498765707, -0.00494812382, 0.0490470231, -0.00117465283, 0.0159558356, 0.0134412693, -0.0092352014, 0.0348669365, -0.00167529797, -0.000254575629, -0.0149448244, -0.0174982771, -0.0157484487, 0.0181982089, 0.0211793967, 0.00526568526, -0.0243938938, -0.0227736831, 0.0162280314, -0.0129681677, -0.00409265235, -0.0243938938, 0.0101295579, -0.0134023838, 0.010136039, 0.00555084227, -0.0415810905, 0.0207257364, -0.00219052495, 0.0184315182, -0.0149448244, 0.0235254616, 0.0245235115, 0.026908461, 0.000280093955, 0.0114451693, -0.00185352121, 0.0212960504, 0.0109331831, 0.00540826377, -0.023058841, 0.0225144494, 0.024199469, -0.00736871874, -0.00519439578, -0.0331559964, -0.0325597562, 0.00981199648, 0.0153725604, -0.0111600123, -0.0430846475, -0.0518726707, 0.00848342385, -0.0157484487, 0.0115877483, -0.0075372206, -0.0303821936, -0.0140763922, 0.00416394183, -0.00415422069, -0.026338147, 0.00383665925, 0.0131496312, -0.018561136, 0.003373279, -0.018703714, -0.0190277565, 0.0112248203, 0.0104276771, -0.0195980705, -0.019623993, -0.0316524394, -0.00440697325, -0.0233699214, -0.00363575318, -0.0017433468, 0.019844342, 0.0216200929, 0.0040472867, -0.0444585867, -0.0163576491, -0.0229940321, 0.0332337655, 0.0280231666, -0.0035158575, -0.00141444406, 0.0391442925, 0.0116590373, -0.0296304151, -0.0145818973, -0.0193777215, -0.00369408075, -0.0103434259, -0.0395849906, 0.022553334, 0.0370185785, -0.00927408691, -0.00573554635, -0.00465000514, -0.0332596898, -0.000183995187, -0.00465972628, -0.0265714582, -0.0016007683, -0.0168890785, -0.0100517878, -0.00245461939, -0.0203109626, 0.023771733, -0.0408293121, -0.0146467062, 0.00308650173, -0.000129009291, -0.00464028399, 0.0377444327, -0.0165520739, 0.0199091509, -0.0218274798, 0.0211405102, -0.00618272461, -0.0181074757, -0.0218015574, 0.00980551634, 0.00422550971, -0.0290860254, 0.0347891673, 0.00730391033, -0.0136745796, -0.0270380788, -0.0158780664, -0.013635694, 0.00844453927, 0.00732983369, 0.0218793266, -0.0226570275, 0.0254697148, 0.0153595991, 0.00311890594, -0.0283083245, 0.0464028381, 0.0080168033, 0.0608162321, 0.0294489525, -0.00247892248, -0.00811401568, -0.0222811401, 0.0260400288, -0.00861304067, -0.0278935488, -0.00856119394, 0.0307191983, 0.0067660003, 0.00766035682, 0.0339077711, -0.0284638647, -0.00666230684, -0.0168113075, 0.0354372524, 0.0192092191, 0.0119830789, -0.0265325718, -0.0126506062, -0.0154503305, 0.00036616766, -0.00288397539, -0.0127154142, 0.00423523132, 0.00901485328, -0.0076149907, 0.0285416339, -0.0180685911, 0.0252493657, 0.00815938134, 0.025767833, -0.0283860937, -0.00296336552, 0.0369926542, 0.0149318632, 0.0367074981, -0.0165909585, -0.0195851084, 0.0181204379, 0.0132403625, 0.0316524394, 0.0281527843, -0.0270899255, 0.000726664555, -0.0306414273, -0.0197924953, -0.0346077047, 0.0333115347, -0.00764091453, -0.0132986903, -0.00601098221, 0.00395007385, -0.0170835033, 0.024627205, 0.0230199564, 0.0291119479, 0.0431105681, -0.0149059398, 0.00593645265, -0.0116201518, 0.0381073579, 0.00410885457, -0.0140504688, 0.00175144791, -0.00398571882, 0.0272713881, 0.0108035654, 0.0249512475, -0.0160336066, 0.015916951, -0.00784830097, -0.0303562693, 0.0100517878, 0.0581202023, 0.00147034135, 0.021412706, -0.0204665028, 0.00745945051, 0.00974718854, 0.0027154733, 0.00534669589, -0.00724558299, 0.0121645434, 0.0316265151, -0.0187425986, 0.00288235513, 0.0548538566, 0.00758906733, -0.014348587, -0.0292415656, -0.0101684434, -0.00575822918, -0.00917687453, -0.00880746637, -0.00437132875, -0.0140375067, 0.0031399685, -0.00420282688, 0.0139338132, 0.00364871486, -0.0102138091, 0.00659749843, 0.0234347302, -0.0303821936, -0.029552646, 0.000400192075, 0.0403886139, 0.00930649135, -0.00458195619, 0.00709004281, 0.0354372524, 0.0310821254, 0.0412700102, -0.00354502141, -0.0201813467, -0.0125857973, -0.0167464986, 0.00896300655, 0.00232176203, -0.0243420471, -0.0145948594, 0.00863248296, -0.0201165378, -0.00635122648, 0.0304858871, -0.0016866395, -0.00982495863, 0.0133116525, -0.0209460855, -0.0303044226, -0.0572906546, 0.0131042656, -0.00125647348, 0.0111988969, -0.00209655287, -0.0325338319, -0.0391961411, 0.012702453, -0.00237036846, 0.00118761451, -0.00469861133, -0.00619568629, -0.000993189286, 0.00909910444, 0.00471805409, 0.0123006403, -0.0390665233, 0.00450742664, -0.0116071906, -0.0172131192, -0.0100388266, 0.039403528, 0.0209590476, 0.0365778804, 0.0393257588, 0.0111276079, 0.00996753667, 0.0198702663, -0.00326310471, -0.0431624167, -0.052676294, -0.00592673104, -0.00548927439, -0.00339920237, -0.0206868518, -0.00946203154, 0.00981199648, 0.0254826769, 0.0133764604, 0.0204535425, -0.00190860836, -0.00256803422, -0.0348669365, 0.0034866936, 0.00400840165, -0.00664286455, -0.00185190095, -0.0261566844, 0.00213381764, -0.0035936276, 0.00203498476, -0.00738168042, -0.00391442934, -0.0186389051, -0.0106545063, -0.0542835444, 0.0130005721, 0.0132209202, 0.00520411739, 0.00719373627, -0.000437051873, -0.0502913445, 0.0114775738, -0.032196831, -0.0301488824, -0.0147115141, -0.00749833556, -0.0441734269, -0.00440373318, -0.000852230878, -0.0271417722, -0.0372259654, -0.0156447552, -0.00729742972, 0.0104536, 0.00600774167, 0.012423777, 0.0126700485, -0.0111924168, -0.0120349256, 0.00143226632, 0.00529808924, -0.00973422639, -0.00421578856, -0.0111859357, -0.0146726295, 0.0194943771, -0.0069085788, -0.0260789134, 0.0287230983, 0.0382369757, -0.0214645527, 0.0326375253, -0.0111276079, -0.00917039346, -0.0173297748, 0.00356446393, 0.0285157114, 0.0105378516, 0.0159687977, 0.0183796715, 0.00452362886, 0.0291897189, 0.0222033691, 0.00163398264, -0.0399738401, 0.0378222, 0.000415179034, -0.0027478775, 0.021412706, -0.0239531975, 0.042047713, 0.0456510596, 0.0241735447, -0.0194166061, -0.00722614024, -0.0508098118, -0.020920163, 0.0140504688, -0.000684539089, 0.0035126172, 0.0318598263, -0.0186907519, -0.00768628, 0.0251845568, -0.0318079777, 0.00819178578, 0.0155669861, -0.0317042843, -0.00514903, 0.0275306217, 0.0177186262, 0.0190018322, -0.0211534724, -0.00681136642, 0.0278935488, 0.0281009376, -0.017705664, -0.00079552352, -0.0352039412, 0.0297859553, 0.00139581168, 0.013778273, 0.0306673516, -0.0240050443, 0.0356446393, 0.0036551957, 0.0135190394, -0.0216849018, -0.00459167734, 0.0307969674, -0.00803624559, -0.00922872126, -0.00111308484, -0.0333893038, 0.00842509605, -0.00517171295, -0.00448150327, -0.00167205755, -0.033622615, -0.00490923878, -0.0130264955, 0.0047828625, 0.0115423817, -0.0342707, -0.00618596515, 0.0330004543, 0.00292286044, 0.0102267712, -0.00751129724, 0.0200517289, 0.0197536107, -0.0118016154, 0.00910558458, 0.00574850803, 0.0181334, 0.00123946124, -0.00263122236, -0.0185870584, 0.014348587, -0.00555732334, 0.0040764506, -0.00585220149, 0.0244587027, 0.0292934123, 0.0223070625, 0.0067660003, -0.000265107, -0.0114970161, -0.00740112318, 0.0116719985, -0.000893546268, -0.0281787068, 0.00166233629, -0.00793255214, 0.0194295682, -0.031989444, -0.00361631066, -0.0126506062, 0.00662666233, 0.061023619, 0.00946851168, 0.0125145083, 0.0121839857, -0.00259395759, -0.00414773962, -0.0330523, -0.0182111692, 0.0148929777, 0.0407256186, 0.00758906733, 0.0159558356, 0.00214191875, 0.0307969674, 0.0427735671, -0.00166071614, -0.00344456825, -0.0154244071, 0.0151781347, -0.00196693605, 0.00624105195, -0.0121126967, 0.00703171501, 0.0166946519, -0.0142967403, 0.0373815037, 0.0017433468, 0.0366297252, 0.0119571555, 0.00673359632, 0.0411403924, -0.00664934516, -0.0173038524, -0.0214386303, -0.0339077711, 0.00354178087, -0.000598262879, -0.0138171576, 0.0116266329, -0.0151651734, 0.0213219747, -0.0245623961, 0.00142821588, 0.0117497686, 0.00205280702, -0.0128579931, 0.010848932, -0.0050388556, -0.00825659465, 0.0216071308, 0.0251067877, 0.0146855908, -0.00810753461, 0.0193647593, -0.00430003973, 0.00475693913, 0.0216849018, 0.011205378, -0.0155021772, -0.0131237078, 0.0152947903, 0.000276043429, 0.00749833556, 0.0012702453, 0.0118275387, -0.0111016845, 0.0374333523, -0.0126311639, 0.00242707576, -0.0219700597, 0.00754370168, -0.0476212353, -0.00584248034, 0.000670767273, 0.00610819506, -0.00816586241, 0.0331300721, 0.0011762731, -0.0164613426, 0.0181982089, -0.0326893739, -0.0148800164, -0.00604014611, 0.0100582689, -0.0189629477, 0.00664934516, 0.0333893038, -0.00485739205, -0.0153725604, -0.0289304852, -0.0196758397, -0.019351799, -0.0331300721, -0.00124675222, 0.0162280314, 0.00959164836, -0.0304599628, 0.0251327101, -0.0113349948, 0.0221515223, 0.0123460069, -0.00508098118, -0.0228903387, 0.0250679012, -0.0258715264, 0.00764739513, -0.00629613921, 0.013207959, -0.0116784796, 0.0318079777, -0.00624429248, 0.00994809438, -0.00617300346, -0.0128515121, -0.0103952726, 0.0117951352, 0.0132986903, 0.00984440092, 0.0208812766, -0.0455214418, -0.0212571658, -0.00360334897, -0.0254956372, 0.00842509605, -0.00304599642, 0.0012030066, -0.00510042394, -0.0126052406, -0.0096564563, 0.00870377291, -0.0138949277, -0.000627021596, 8.31877e-05, -0.0120932534, 0.0181593224, 0.0219700597, 0.0132144392, 0.00177089043, 0.00254049059, 0.000196551831, 0.019274028, 0.00698634889, -0.00825659465, 0.0189888701, -0.0148152076, -0.00406996952, 0.00723910192, -0.0244068559, 0.00116898213, -0.0114840548, 0.0138949277, 0.0217626728, -0.0120738111, 0.00888523646, 0.0423847139, 0.0376666598, -0.00584248034, -0.0207905453, 0.0132209202, -0.00607579062, 0.0242513157, 0.0220348667, 0.0176667795, 0.00202526362, -0.0114386883, -0.0117238453, -0.0261048377, 0.00268630963, -0.00408617174, -0.0370963477, 0.0244846269, -0.00592997158, 0.00347049162, -0.0225662962, -0.00621188851, 0.00157079438, 0.0224626027, 0.0177834332, 0.0145559739, -0.000245056901, -0.00619568629, -0.0253012124, -0.0421254821, 0.00720669795, 0.0334929973, -0.00140310253, -0.00677248137, 0.0191962589, -0.000552896934, 0.00934537593, 0.02812686, 0.00479582418, -0.0105119282, 0.0189370234, -0.0155929094, -0.00381721673, 0.00846398156, 0.00759554841, -0.0171483122, 0.00981847756, -0.000807270058, 0.00406996952, -0.0241605844, 0.0159299131, 0.00498376833, 0.0283083245, -0.0122358324, 0.0104082348, -0.00250808639, 0.0218793266, 0.00469537079, 0.00381397619, -0.0150744412, 0.0121775046, 0.00152299821, 0.0145559739, 0.0101165967, -0.0140893534, 0.0304599628, 0.000904077664, 0.0163706094, -0.0112377824, -0.00490599824, 0.0197795331, 0.0120802922, -0.0106091406, -0.00701875333, 0.000589351694, -0.00709652342, 0.00400516111, -0.023771733, 0.00448150327, 0.0157614108, 0.0118793854, 0.0182370935, 0.0305118095, 0.0044458583, -0.0125274705, -0.0164613426, 0.0217885952, -0.0137264263, 0.00767979957, -0.0154244071, 0.00558972731, 0.004248193, 0.0108359698, 0.00626373524, 0.0132338824, -0.0143356258, 0.00363899348, 0.0145300506, -0.0207127761, -0.0129357632, -0.0270380788, -0.0065164878, -0.00549899554, -0.0119312322, 0.000925140397, 0.0257159863, -0.000271182798, -0.00713540846, 0.00543742767, -0.00249188417, -0.00161859067, -0.00647760276, -0.00562537182, 0.00539530208, -0.0057452675, -0.0152170202, 0.00686321314, 0.0119506754, -0.00639659259, 0.00510042394, -0.0392479859, 0.0314191282, 0.0309525076, -0.00172876497, 0.0312635899, -0.0310562011, -0.029267488, 0.00490275817, 0.0194943771, -0.0242642779, -0.0172779281, 0.0130329756, 6.65805419e-05, 0.00864544511, 0.0201813467, -0.00667526852, -0.00885283202, -0.0118469819, 0.00946851168, 0.0262733381, -0.0101101156, -0.0118793854, 0.0371741168, 0.00657157507, 0.026480725, 0.0124367382, 0.000848990458, 0.0221515223, 0.0288008675, 0.00931945257, -0.00675951969, -0.00949443504, 0.0125857973, -0.0183667094, -0.00501617277, 0.0216460172, 0.0216200929, -0.00427411636, -0.00933889486, 0.00767979957, 0.00432920316, -0.00877506193, -0.00598829938, -0.00397923775, 0.0141412, -0.0122876791, 0.00378805283, 0.00509070233, 0.016915001, 0.0251456723, 0.00233310368, -0.0096564563, -0.0135190394, -0.0256641395, 0.0305377338, 0.00729742972, -0.015916951, -0.00790662877, -0.0157873351, 0.00341540435, 0.00636418816, 0.0154244071, -0.0252752881, 0.0217756331, -0.0136616174, 0.0109396633, -0.0137134641, -0.00578091247, 0.0223848335, -0.0216071308, 0.01306538, -0.00780941639, -0.000891926058, 0.0059753377, 0.0157873351, 0.00853527058, 0.000816586253, -0.000533049344, 0.00531753199, 0.0128061464, 0.000340446801, 0.0117238453, 0.0171223879, -0.00430652034, -0.0144263571, 0.0172649659, 0.033622615, 0.022488527, 0.00146791106, 0.00150031527, 0.00244813855, -0.0304340404, 0.00881394651, -0.0190925635, -0.0293452591, -0.0186518673, -0.0289304852, 0.00287101371, 0.0429291055, 0.00241897488, -0.00357418507, 0.0071094851, -0.0260529909, 0.0176538173, -0.00840565376, -0.0181463622, -0.0175501239, 0.0116007095, -0.0152818291, 0.0329226851, 0.0191573724, 0.00121029746, 0.00249836501, -0.0165520739, 0.00210141344, 0.0219052508, -0.00899541099, -0.0117238453, -0.0409070849, -0.00546011049, -0.0314709768, -0.00860656, 0.00285481149, -0.033830002, 0.00211113482, 0.00183731911, 0.0362149514, -0.00159590773, 0.0316005908, -0.00972774625, 0.0195851084, 0.0266751517, 0.0167464986, 0.041192241, 0.0321449824, -0.00684377039, 0.00191832962, 0.0128191086, -0.0255215615, 0.00501617277, 0.00511338562, 0.0195980705, 0.0389369056, -0.0121191768, 0.0074724122, -0.0110952035, 0.0158132575, 0.0409848541, -0.0241476223, -0.00445882045, -0.0253141746, 0.000191286148, 0.0161373, 0.00354502141, -0.00239467155, 0.0159687977, 0.0059753377, -0.0161243379, 0.00561889121, -0.0173168126, -0.000257410982, -0.00639659259, -0.0209072, -0.0280750133, -0.00725854468, -0.00764091453, -0.0378481261, -0.00808161125, 0.0210627411, 9.73139104e-05, -0.00847046264, 0.0151133267, -0.0397923775, 0.0266233049, -0.00298118801, 0.00754370168, 0.00401164219, -0.0227866452, -0.0144782038, 0.0277639329, 0.0202202313, -0.00189078599, -0.0149577865, -0.00683080871, -0.0122163901, -0.00893708318, 0.000443937781, 0.0154244071, -0.00112523639, 0.02098497, 0.0145430127, 0.00652296888, -0.015916951, 0.00446206052, 0.0151003646, -0.00749185495, -0.00283212843, -0.00943610817, -0.00288559543, 0.00809457339, -0.00627993699, 0.0118080964, -0.0276602395, 0.00850286614, 0.00602394389, 0.0141671235, -0.000144502555, 0.0228384919, 0.00772516523, -0.0354113281, 0.00473425584, -0.00867136847, 0.0162798781, -0.00714837, -0.0114451693, 0.0213738214, 0.0370963477, 0.0121580623, -0.00270575215, -0.0160465688, -0.0202331934, 0.019844342, 0.0245105494, 0.0128968786, 0.0295267217, -0.0344521627, 0.0137523497, -0.0392220654, 0.0114322072, 0.00232662284, -0.00157079438, -0.00694098324, 0.00614059903, 0.0169020388, 0.0153207136, 0.00729094865, 0.00448150327, -0.00960461, -0.00701227272, -0.0138819665, -0.00615356071, -0.0166039206, 0.0142448936, -0.0274528526, 0.0177963953, 0.0121645434, 0.000573149591, 0.0164224561, 0.000538720109, 0.000337003847, 0.00917039346, -0.00855471287, -0.0162798781, 0.0216849018, -0.00685025146, 0.0338818505, 0.00356446393, -0.00361631066, -0.0139726978, 0.00430976087, 0.0244587027, 0.012773742, -0.00795199443, 0.00977959298, 0.0316524394, 0.0040764506, 0.0246920139, -0.00400516111, -0.0198832266, -0.00372000411, -0.0103693493, 0.00534993596, 0.00396627607, -0.00479906471, 0.00341540435, -0.0020382253, 0.000402217353, -0.0127413385, 0.00338948099, 0.0176667795, -0.0180167444, 0.00625725416, 0.00150679611, 0.00714188954, 0.0244457405, 0.00301521225, -0.00253076921, -0.00423199078, 0.00990921, 0.00784830097, -0.012495066, 0.00465648575, -0.00449770549, -0.00520411739, 0.00455279229, 0.00377833168, 0.0109007787, 0.014206009, 0.0147374375, -0.0123006403, 0.0233180746, 0.00358714676, 0.00845101941, -0.00917039346, 0.011633114, 0.0156447552, 0.0109785488, 0.00712244678, 0.0195721462, -0.0118534621, 0.00639011152, 0.0120543689, -0.0133116525, 0.00950739719, -0.0260789134, 0.0163058024, 0.0123265637, 0.0180685911, -0.00121434801, -0.00992217101, -0.000816181186, -0.0106221018, 0.000633907504, -0.000341864477, 0.00407969067, -0.00457547558, -0.0296044927, 0.00389174651, -0.0175371617, -0.00890467875, -0.00830844138, -0.00577767193, -0.000738411094, 0.00614708, -0.00230880035, -0.0325856805, -0.0194684528, -0.0129033588, 0.000255385734, -0.012708934, 0.00457223505, -0.0148281697, 0.00542770652, 0.00907318108, -0.00653269, -0.00638039038, -0.0274269283, 0.0129098399, 0.00433892477, -0.0207516607, 0.00735575706, -0.00590728875, 0.00229421863, -0.00936481822, -0.011419246, 0.00183407869, 0.00521383854, 0.00262150122, -0.00775756966, -0.00666878792, -0.0139597366, -0.000501455273, 0.0113803605, -0.0171223879, 0.00711596617, -0.0167076141, -0.000401407247, 0.0232791901, -0.0111146467, -0.00217918353, 0.00609847344, -0.0169798099, 0.00435512653, -0.011205378, 0.0163187627, -0.0142189702, 0.00619244576, 0.0146726295, 0.000276651, -0.00305733783, 0.00503237499, 0.00241573434, -0.0182500556, -0.0226440672, -0.000338016485, -0.00581007591, 0.00968238, -0.00527216587, 0.00419634627, -0.0217108261, 0.000748537423, 0.0225792583, 0.00743352715, -0.020414656, -0.0137264263, 0.00442641601, -0.0235773083, 0.00771868462, 0.00229907921, -0.00277542113, 0.00887875538, -0.00460463902, -0.00258261617, 0.00375888916, -0.00681784702, -0.0141800856, -0.0153595991, 0.0145559739, 0.0213090125, -0.0125857973, 0.0151651734, -0.00511014508, 0.005887846, -0.0240309667, 0.00434864592, 0.0141541623, -0.012780223, 0.00740112318, 0.0223459471, 0.0164354183, -0.019559186, -0.00656185392, 0.00259881816, -0.0016704374, 0.0122358324, -0.00967589952, -0.00738168042, -0.0212053191, -0.00166233629, -0.00915743131, 0.00721317856, -0.00899541099, 0.0124302572, 0.000911368581, 0.0136227328, 0.000821446883, -0.024627205, 0.0174593925, -0.00922872126, 0.0123719303, 0.0117692119, 0.0276861619, 0.0150355566, 0.0150874034, -0.00264094374, -0.0140375067, -0.0255863704, 0.00376537, -0.00630910089, 0.0160854533, -0.0134153459, 0.00257613533, 0.021840442, -0.00841861591, -0.0132986903, -0.002213208, -0.0115294205, 0.0185481738, -0.00620540744, 0.0304340404, 0.00100939139, 0.00537261926, -0.00326796528, 0.00304599642, -0.00147601205, -0.00207873061, -0.0166298449, -0.0111729736, -0.0308747385, -0.00873617642, -0.00669471128, -0.0103758303, 0.0047893431, 0.0103563881, -0.00243517687, -1.3493318e-05, 0.00558972731, 0.00102478336, -0.00509394286, -0.00993513316, 0.0186907519, 0.0058035953, -0.0181982089, 0.00154001045, 0.00251618749, -0.0148152076, -0.0187425986, -0.00783534, -0.00347697246, 0.0103175025, 0.0243679713, 0.0140245454, -0.00736223813, -0.0217108261, -0.000996429706, -0.00289045624, 0.011918271, -0.0303044226, 0.0071094851, 0.0254049059, -0.0152818291, 0.00365843601, -0.0179000888, -0.0122487936, -0.0118469819, 0.0100777112, 0.0199998822, -0.00518791517, -0.00717429351, -0.0208812766, -0.0232921503, 0.0198961888, 0.0210108943, 0.00655537285, 0.0229421854, -0.0183278248, 0.0212571658, -0.00591701, -0.0238106176, 0.00885283202, 0.0218793266, -0.000745702, 0.00758258672, -0.0260270666, 0.0111859357, -0.00924168248, -0.0112507436, -0.0185870584, -0.00652944949, 0.00983792, 0.0243161246, 0.00823715143, 0.026195569, 0.0159558356, 0.0228644144, 0.0205831584, -0.0100906733, -0.000441102398, 0.0272454657, 0.0013067, 0.00961109065, 0.0135449627, -0.0123071214, 0.00112847681, -0.0174464304, 0.0107452385, 0.0208812766, -0.0131042656, 0.0105508128, -0.00337975984, 0.0105896983, -0.000883825, -0.00670119189, 0.0151392501, 0.00948147383, 0.0159299131, -0.0101101156, -0.00359686813, 0.000658210658, 0.0112118591, -0.00437456928, -0.0151522113, 0.0286712516, 0.00706411945, 0.000518062443, 0.00664286455, 0.00602718443, -0.0203628093, -0.00955276284, -0.0259233732, -0.00398247829, -0.011704403, -0.0224366803, 0.000456899463, -0.00113414763, -0.00813993905, 0.0192869902, 0.0262474157, -0.00468240911, -0.00729742972, -0.00952683948, 0.0138819665, 0.00172876497, 0.0193906836, -0.00543418713, 0.0196499173, 0.0341410823, -0.018846292, 0.0236939639, -0.00222941022, -0.0190925635, -0.00661694119, 0.0181463622, -0.0113673992, -0.00672063464, 0.0287749451, 0.0245883204, -0.00358390645, -0.0130200144, -0.0092352014, -0.00172390428, -0.0188203696, 0.00352557888, -0.0108294897, 0.0180037823, -0.00911206566, -0.0138819665, 0.00819178578, -0.000616085192, -0.000376091426, 0.0086648874, 0.0186777897, -0.0296563394, 0.0182241313, 0.0153595991, -0.00758906733, 0.01298761, 0.00755666336, -0.00608551176, -0.00753074, -0.00542122545, 0.0164613426, 0.0165520739, -0.00921575911, -0.00632854365, 0.013350537, 0.00358066591, 0.00461436063, 0.0183667094, -0.00210951455, 0.00154082046, -0.0131949969, 0.0344003178, 0.0366815738, 0.00451714778, 0.0106739486, 0.00340244267, 0.00685673207, 0.0080751311, -0.0192351434, -0.00611143513, -0.0106545063, -0.0117692119, -0.0120997345, 0.00226829527, 0.00771220354, 0.0055540828, 0.0040181228, 0.000968886074, 0.00499673, 0.00331657147, 0.0155281005, 0.0092352014, 0.00127510598, 0.0216460172, 0.0101814047, -0.026908461, 0.0215034373, 0.0182500556, 0.00692154048, 0.00552167837, 0.000187033089, 0.0114581306, 0.0249253232, -0.00571286352, 0.0157484487, -0.0385999046, -0.0170705412, 0.0050680195, -0.0034510491, -0.0057452675, 0.00139176112, 0.0154244071, -0.00343484688, -0.00171418302, 0.0282824, -0.00459815841, 0.000433406385, 0.0030832612, 0.0099999411, 0.00521707907, -0.0358520262, 0.0222681779, 0.0165391117, 0.00727798697, 0.000785397191, -0.0245753583, 0.00252752891, -0.00593645265, -0.0173427369, -0.00635446701, -0.00718725519, 0.0151392501, 0.021840442, 0.0052268, -0.00517819403, -0.00935185701, -0.00217756326, 0.0276861619, -0.00039614155, -0.000664286432, 0.00706411945, -0.0199869201, 0.0108424509, 0.000392091024, 0.0277898554, 0.00600774167, 0.0158262197, -0.00433892477, 0.00751777831, -0.0200776532, -0.0152947903, -0.00588460593, -0.0209720097, -0.00771868462, 0.00127105543, 0.00114710932, 0.01506148, 0.00282240729, -0.0209979322, -0.0126894908, -0.0086648874, -0.010777642, 0.00596561609, -0.0191703346, 0.00102721364, -0.00108230079, 0.00631234143, -0.00641279435, -0.0256641395, 0.015916951, -0.00845101941, 0.00885283202, -0.00822419, -0.00874265749, 0.0205442738, -0.00664286455, 0.00775756966, -0.0164224561, -0.00490923878, 0.0218274798, 0.00262798206, 0.0319375955, -0.000381559657, -0.00972774625, -0.0026620063, 0.0112377824, 0.000830358069, -0.00387230399, 0.000854661223, -0.000920279766, 0.00585868256, 0.0111794546, -0.0288008675, 0.0111081656, -0.0119765988, -0.00331495143, -0.0125987595, 0.00163074222, -0.00388526567, 0.00869729184, -0.00326148444, -0.00573554635, -0.00148168276, -0.00685673207, -0.00766683789, 0.00883339, 0.00974718854, -0.0310821254, -0.00511662569, -0.00344780856, 0.0370445, 0.021490477, -0.00899541099, 0.00882690866, 0.0105054472, -0.00365195516, 0.00817234349, -0.00516523235, -0.0010579977, 0.0105767362, 0.00938426144, -0.010207328, -0.0114775738, 9.45798092e-05, 0.0115164584, 0.024199469, 0.00974718854, -0.0181982089, 0.0184055958, -0.0178871285, -0.00400192058, -0.0196758397, 0.00105556741, 0.0110044722, -0.000893546268, 0.0302525759, 0.00609199284, 0.0164483804, -0.0027478775, -0.00860656, -0.00200744113, -0.00885283202, -0.00919631682, 0.0153336758, 0.00677248137, -0.0130459378, 0.0106998719, 6.69855945e-05, -0.0108294897, 0.0147504, -0.0147374375, 0.0148281697, -0.00740760379, 0.00677896198, 0.0111859357, -0.00381073589, -0.000109262968, -0.0130135333, -0.0213608593, 0.00335059594, 0.000306017319, 0.00284509, -0.00500645163, -0.0162409935, 0.00166881713, -0.0168501921, 0.021840442, -0.0229681097, 0.017485315, 0.0106933918, -0.0139726978, -0.016059529, 0.0116525562, -0.0321190581, 0.0165779982, -0.00869729184, -0.0135060772, 0.0253660213, 0.00996753667, -0.00793903321, 0.00490275817, 0.00298604858, 0.0052397619, -0.00720021687, 0.0157095641, -0.00825011358, -0.00538882101, 0.0346336253, -0.00812697783, 0.00327768642, -0.0114062838, -0.0040181228, 0.00472453469, -0.0038269381, -0.0102591747, 0.00499997055, 0.0115359016, -0.0272973124, -0.0194036458, -0.0117886541, -0.0137912342, -0.0152947903, -0.00211437512, -0.0187166762, 0.00472129416, -0.0111016845, -0.00240277266, -0.00201230193, 0.0337781571, 0.00696042553, 0.00725854468, -0.00252428837, 0.0345817804, 0.0158132575, 0.00604338618, -0.0348150916, 0.0148800164, -0.00804920774, -0.00988328643, -0.00703171501, 0.0149448244, 0.00666878792, 0.00959812943, -0.00238333014, -0.0010741998, -0.0035353, 0.0102656558, -0.0141282389, 0.0122293513, -0.00318371435, -0.0123006403, 0.0114840548, -0.0268047675, -0.0146985529, 0.0147244763, 0.0403886139, -0.0088917166, -0.00510366401, 0.0249512475, -0.0074724122, 0.00558648678, 0.0531947613, 0.0232532658, -0.000115946335, 0.00446854159, 0.0263640713, 0.00598181831, 0.00882042758, -0.0352298655, -1.58983185e-05, 0.0156317949, 0.0183148626, -0.006461401, -0.0321190581, 0.0117497686, -0.00907966122, 0.00771220354, 0.0125922784, -0.00272843498, -0.000482012721, -0.0034510491, -0.0149448244, -0.0194814149, -0.00249026413, 0.0038269381, 0.00462408178, -0.00253725, 0.00924816355, -0.0169538856, 0.0243938938, -0.028982332, -0.00736223813, 0.0122876791, 0.0209331233, -0.0152559048, 0.00997401774, 0.0090667, -0.0122358324, 0.0243161246, -0.0151781347, -0.00586840371, -0.000143996236, -0.000641603488, 0.0169538856, 0.00136016705, 0.0148411309, 0.0134153459, 0.0114062838, 0.0111859357, 0.00433892477, -0.00909262337, 0.0346077047, 0.00193291157, 0.01006475, -0.00527216587, 0.00941018481, -0.00686969375, 0.00104665617, 0.0100517878, 0.0287490208, 0.00304923672, -0.0146596674, 0.0071678129, 0.0146467062, -0.0142837791, -0.00384314, 0.0167205762, -0.00142578548, 0.0121969469, -0.00782237761, -0.0186907519, 0.0174075458, 0.0266751517, -0.00178385212, -0.0279713199, 0.00451390725, 0.0167983454, 0.00507774064, 0.0211145878, -0.00643547764, 0.0257159863, 0.012994091, -0.0127413385, -0.00330847059, -0.0108100465, -0.00223913137, 0.0387554429, 0.0252752881, 0.0109785488, -0.0166168828, -0.0111276079, 0.0218793266, 0.0115553439, -0.0127348574, 0.0255474839, -0.0150225945, -0.0097147841, 0.0102202902, -0.00877506193, -0.0148540931, -0.0189240631, -0.000383989973, 0.00170608202, 0.0121839857, 0.00237522903, -0.0119830789, -0.0087621, 0.00187134347, -0.00130507979, -0.022631105, -0.00726502528, -0.00313834846, 0.00208197092, 0.0126246829, -0.0103110215, 0.0210627411, 0.0149318632, -0.00505829835, -0.0103110215, 0.00880098529, 0.0145430127, -0.00972126517, -0.00243679713, 0.0106998719, 0.00211923569, -0.00382045726, -0.0246401671, 0.000365965127, 0.000579630432, -0.00834732596, -0.0208553541, 0.00406672899, 0.0106869107, -0.0280231666, 0.00859359838, -0.00733631477, 0.0255604461, -0.0100323455, -0.0384702869, 0.0132986903, -0.00509394286, 0.0182889402, 0.00484443037, -0.0243679713, 0.0112831481, -0.0101554813, 0.0105443317, 0.0292934123, -0.00227639615, -0.0171871968, 0.0226570275, 0.00525272358, 0.00282888813, -0.00412829733, -0.0234606527, -0.0140115833, -0.00384962093, 0.00900189113, 0.00499349, 0.00613735849, -0.00240763323, 0.0132274013, -0.0024060132, 0.0252104811, -0.020194307, 0.00772516523, -0.00185838179, 0.00474721752, -0.013493116, -0.0142708169, -0.00711596617, 0.0062313308, 0.010920221, -0.0341670066, 0.00356446393, 0.033830002, -0.0138301197, 0.00195397437, 0.00421254802, 0.00948147383, -0.0117173651, -0.00579063362, 0.0129033588, -0.0150874034, -0.0244975872, -0.0141412, -0.000631072093, -7.12386463e-05, 0.00530457031, 0.00419310573, 0.00193291157, 0.010563775, 0.00127753627, 0.0240698513, -0.0162280314, -0.0185740963, 0.00606606947, -0.00465000514, -0.00248054275, -0.016487265, 0.0231495723, 0.0148022464, -0.00302169309, 0.0128774354, -0.0193129126, -0.00827603694, -0.0253789816, -0.0257030241, 0.0380814336, -0.0180167444, 0.00795199443, -0.0194554925, -0.0118469819, -0.01913145, -0.00663638348, -0.011425727, 0.0149707478, -0.00079714373, 0.00940370373, 0.0147633608, 0.0389369056, 0.00327768642, 0.00321125798, -0.0032307005, 0.014776323, 0.000138933072, 0.0261048377, 0.0100323455, 0.0251327101, 0.00131804147, 0.00793255214, -0.0475953147, 0.00188106473, -0.00346077024, 0.00996753667, -0.00386258261, 0.00714188954, 0.00629613921, -0.00760851, 0.000814561, -0.00138366, 0.00549251493, 8.37446496e-05, 0.0118469819, -0.00789366756, 0.00326958555, 0.000874103745, 0.0272454657, -0.0131237078, 0.00417366298, 0.00990921, -0.0139467744, 0.0101814047, 0.0154373692, -0.00148087274, -0.00327768642, -0.0074724122, 0.00168987992, -0.00473101577, -0.0120090023, -0.00493192161, -0.000947823341, 0.0156317949, 0.0125404317, 0.0201554224, -0.0161761846, -0.0184574425, 0.00992865209, -0.0156577174, -0.0118469819, -0.00565129519, -0.00890467875, -0.0199998822, -0.00812049676, -0.00198961888, 0.00321449828, 0.0161243379, -0.0051263473, -0.00757610565, -0.0152299814, 0.000557352556, 0.00981199648, 0.0149059398, -0.013493116, -0.00276245945, -0.0321190581, 0.0193388369, -0.00124999264, -0.00517495349, -0.0014476584, 0.0137653109, 0.000993999303, -0.0594163723, -0.0105896983, 0.00911206566, 0.0093712993, 0.0295008, -0.00113819807, 0.00490923878, 0.0204535425, 0.0204016957, -0.0172520056, -0.0192610659, -0.0141282389, 0.00724558299, 0.000630262, 0.0112831481, -0.0129746487, -0.000981847756, 0.00426115468, -0.0261566844, 0.0162280314, 0.00399219943, -0.00308488146, 0.00703171501, 0.00893708318, -0.00289855711, 0.00884635095, 0.00436484814, 0.0153855225, -0.0187555607, 0.031341359, 0.0176797397, -0.011918271, 0.00661046, 0.0111859357, 0.0113738803, -0.0206609294, -0.0120090023, 0.0147115141, 0.0256900638, -0.000650109607, -0.00671415357, 0.00295688468, -0.0042190291, 0.0138301197, -0.00614059903, 0.00156593381, -0.000569099037, 0.0169279631, 0.00104179559, 0.0253789816, 0.00464028399, -0.00900189113, -0.00979255419, 0.00603690557, 0.0184185561, 0.00601422274, -0.00813345797, -0.00413477793, 0.0105184084, 0.0041607013, -0.000520087662, -0.0174982771, -0.00178871281, 0.00175306818, -0.0173168126, -8.85546469e-05, 0.00457547558, -0.015774373, 0.00356770423, 0.00284671038, -0.000541555462, 0.00306867925, -0.00804920774, -0.00140634296, -0.0312117413, -0.00583599927, 0.00572906528, -0.00367463822, 0.0220219065, 0.00452362886, 0.000124452446, 0.0211534724, -0.0371481925, 0.000819016597, 0.00582627812, -0.0173168126, 0.0116590373, 0.0164743029, 0.00727150636, -0.0342447758, -0.00642575603, 0.00591701, 0.00152704876, 0.01713535, -0.0352039412, 0.00922872126, 0.00511662569, -0.00272519467, -0.0131949969, 0.00145981, 0.0171223879, 0.00346401078, 0.00364871486, -0.00357742561, 0.0145559739, -0.021490477, -0.0146985529, 0.0122876791, 0.00219376548, 0.0284638647, 0.0226959139, 0.0344521627, -0.00607255, -0.0111016845, -0.0289564077, 0.0190018322, -0.0136097707, 0.000498619862, 0.00622160966, 0.01114057, -0.0163317248, -0.00795199443, -0.0104860049, 0.00674655801, 0.00596237602, 0.0133375758, -0.00521707907, 0.00712244678, -0.00621836912, 0.0162409935, 0.00415422069, -0.0092352014, 0.0201035757, -0.0204016957, -0.00370704243, 0.00823715143, -0.00418338459, 0.00188106473, -0.00233796425, -0.00630586036, -0.00980551634, 0.0158780664, 0.0172001589, 0.00609523337, -0.0160336066, 0.0134801539, 0.000638363068, 1.27338444e-05, -0.00918335468, -0.011704403, -0.0221256, -0.0103239836, 0.0298118796, -0.00610819506, 0.00255507254, 0.00246434077, -0.00312700681, 0.00645492, 0.00985736307, 0.0196888018, 0.00828251801, 0.017990822, -0.0176797397, 0.0174464304, 0.0216200929, -0.00932593364, 0.00325338333, -0.0329486057, -0.008496386, -0.00278028171, -0.0195462238, 0.0310562011, -0.0232403036, -0.00225533359, 0.00772516523, -0.00165342516, -0.00814642, -0.0154632926, 0.0191703346, -0.00783534, 0.0230458789, -0.0067660003, -0.00289045624, -0.00188430515, -0.0159558356, 0.0369926542, -0.000958354736, 0.0337263085, -0.000556137355, 0.00736223813, 0.00630586036, -0.00742704654, 0.0296044927, 0.0164483804, -0.00522355968, -0.028904561, 0.00446530106, -0.0145818973, 0.0197924953, 0.00132209202, -0.0119053088, -0.00648408383, -0.00689561712, 0.00895652547, -0.0246920139, 0.00445558, -0.0353854038, 0.00283212843, 0.00500645163, -0.00217918353, 0.00516523235, -0.00621188851, -0.00941018481, 0.0174334683, 0.00438753096, -0.00672711525, 0.00745297, -0.00246434077, -0.00722614024, -0.0335189216, -0.000923520187, -0.0173168126, 0.0158262197, -0.0112442635, 0.00410561403, 0.0173557, -0.00653269, 0.0193388369, -0.0248994, 0.00792607106, -0.00790662877, 0.0129616866, 0.0101684434, -0.00441021379, -0.00576471025, 0.00684377039, 0.00621836912, -0.00140715309, -0.040596, 0.0101814047, 0.0235643461, -0.00578739308, -0.00289531681, -0.000186222984, -0.000960785, -0.00526568526, -0.0216589794, -0.0114386883, 0.00612763735, -0.025197519, 0.0278935488, -0.0154632926, -0.00644843932, -0.00340244267, -0.00825011358, -0.0154244071, -0.00814642, -0.00489951763, 0.0107452385, -0.00444261823, 0.00854175165, 0.0138301197, 0.00222292915, 0.0151003646, -0.0230199564, -0.0297859553, 0.00846398156, -0.00630910089, 0.00664934516, -0.000830358069, 0.00397599721, -0.00964349508, 0.0151651734, -0.00640631374, 0.0039111888, -0.00391767, -0.0238624644, 0.0141671235, 0.0307451207, 0.00641603488, 0.00948147383, -0.0317820571, -0.00880746637, -0.000181362353, 0.010349907, 0.0103563881, 0.00515551073, 0.018846292, -0.00506153842, -0.00276083918, 0.000102427701, 0.0141282389, 0.0210238565, 0.012423777, -0.0133634992, -0.0164613426, -0.0136875408, -0.00468889, 0.00580683583, 0.0107646808, -0.00883987, -0.00304599642, -0.0227607209, 0.0261826068, -0.0137523497, 0.0227347985, -0.00328416727, -0.0232403036, -0.00575174857, 0.0191832967, -0.00600774167, -0.0168631542, 0.00609199284, 0.011639595, -0.0105248895, -0.00668823, 0.0165131893, -0.0189888701, 0.00148168276, 0.0312635899, -0.0088917166, -0.0137653109, -0.0254956372, 0.00347697246, 0.0227347985, 0.00304437615, 0.0103563881, 0.000582465786, -0.00996753667, -0.0192092191, 0.022553334, -0.0114840548, 0.000620540755, 0.000541555462, -0.00915743131, -0.025910411, 0.00941018481, -0.0128450319, 0.0177834332, 0.00806216896, -0.0130783422, 0.0252104811, 0.00764739513, 0.0249642078, -0.0153595991, -0.0299414955, 0.00627669692, -0.0159558356, -0.00322421966, 0.00148654345, 0.00505181728, 0.00979903527, 0.00941666495, 0.0102526946, 0.00812697783, 0.00543418713, 0.0145818973, -0.0126182018, 0.00763443345, 0.00541798491, 0.0214386303, -0.0177575108, 0.0199480355, -0.0120090023, -0.0088917166, -0.00428707805, -0.0019150892, 0.0130394567, 0.0191703346, 0.00935833808, -0.000437456911, 0.0235125, -0.025340097, -0.00461112, -0.0224366803, -0.00623781187, -0.00195397437, 0.0115164584, -0.010349907, 0.0028872157, -0.0206479672, -0.00447826274, 0.00321287801, -0.0134671926, 0.00428059697, -0.0281527843, 0.00397599721, -0.00931945257, -0.00211761566, -0.00346401078, 0.0182889402, -0.00417366298, 0.0187944453, -0.00190698809, -0.0134801539, 0.0017271447, -5.28593773e-05, 0.00156755396, -0.0104276771, -0.0137523497, -0.0168761164, -0.013272767, 0.00291313906, 0.00103450462, 0.0112183401, 0.0420217887, 0.00226019416, -0.0176667795, -0.0068243281, -0.01114057, -0.0110368766, -0.00662018126, 0.0331041478, -0.0127348574, 0.0151003646, -0.0137264263, -0.0320412889, -0.00608551176, 0.0184963271, 0.000277663639, -0.010706353, -0.000234930572, -0.0104536, -1.73919507e-05, 0.0193777215, 0.0232662279, 0.0163058024, -2.32399e-05, -0.0286712516, -0.0114062838, -0.0342707, 0.00719373627, -0.00228611752, 0.00709652342, -0.0311858188, 0.0153077524, 0.0183537491, -0.0147244763, 0.0189888701, 0.0023233823, 0.00219214521, -0.0138949277, 0.0134283071, 0.00184055953, 0.00677896198, -0.0427735671, 0.00972774625, 0.0206868518, -0.0139726978, 0.0122163901, 0.00171580329, 0.0321709067, -0.00365195516, -0.0123395259, -0.0234347302, 0.00650676666, -0.00361955096, 0.00943610817, -0.00330685033, -0.0135968095, -0.0166039206, -0.0141412, 0.00287263375, -0.00656509446, 0.0152818291, 0.000281714165, 0.0281527843, -0.00158051564, 0.0246660896, 0.0220996756, 0.015204058, 0.0132274013, 0.0223977938, -0.0122552747, 0.0189370234, 0.00692154048, 0.00956572499, -0.0113349948, 0.0163058024, -0.00149464444, 0.0255604461, -0.00614383956, -0.0024627205, 0.010149, -0.018625943, 0.0348669365, -0.00745297, 0.000686564366, 0.0157614108, -0.000191286148, -0.0101101156, -0.0390146784, -0.00381397619, 0.00132695271, 0.00472777523, 0.00214515906, 0.0102267712, -0.00578739308, -0.0187555607, 0.00397275714, 0.0141541623, 0.0170705412, 0.00281916675, -0.0155540239, 0.000437051873, -0.00842509605, -0.0189370234, -0.00848990493, 0.0191832967, 0.0109591065, 0.00622485, -0.00191994989, -0.00288397539, -0.00868433, 0.0099416133, 0.0187425986, -0.0253012124, -0.0231625345, -0.0188074075, 0.00275273831, 0.000322421954, -0.0178223196, -0.0111081656]
23 Jun, 2022
unordered_multiset emplace_hint() function in C++ STL 23 Jun, 2022 The unordered_multiset::emplace_hint() is a built-in function in C++ STL which inserts a new element in the unordered_multiset container. It starts searching from the position provided in the parameter for the insertion point of the element. The position only acts as a hint, it does not decide the position at which the insertion is to be done. The insertion is done automatically at the position according to the container’s criterion. It increases the size of the container by one. Syntax: unordered_multiset_name.emplace_hint(iterator position, val) Parameters: The function accepts two mandatory parameters which are described below: position: it specifies the iterator pointing to the position from where search operation for insertion is to be started. val: it specifies the element which is to be inserted in the container. Return Value: It returns an iterator which points to the newly inserted element. Below programs illustrates the above function: Program 1: CPP // C++ program to illustrate the // unordered_multiset::emplace_hint() #include <bits/stdc++.h> using namespace std; int main() { // declaration unordered_multiset<int> sample; // inserts element using emplace_hint() // fast insertions as the search starts // from the previously inserted positions auto it = sample.emplace_hint(sample.begin(), 11); it = sample.emplace_hint(it, 11); it = sample.emplace_hint(it, 11); // slow insertions as the search starts from the // beginning of the containers sample.emplace_hint(sample.begin(), 12); sample.emplace_hint(sample.begin(), 13); sample.emplace_hint(sample.begin(), 13); sample.emplace_hint(sample.begin(), 14); cout << "Elements: "; for (auto it = sample.begin(); it != sample.end(); it++) cout << *it << " "; return 0; } Output: Elements: 14 11 11 11 12 13 13 Time Complexity: O(n) Auxiliary Space: O(n) Program 2: CPP // C++ program to illustrate the // unordered_multiset::emplace_hint() function #include <bits/stdc++.h> using namespace std; int main() { // declaration unordered_multiset<char> sample; // inserts element using emplace_hint() // fast insertions as the search starts // from the previously inserted positions auto it = sample.emplace_hint(sample.begin(), 'a'); it = sample.emplace_hint(it, 'a'); it = sample.emplace_hint(it, 'a'); it = sample.emplace_hint(it, 'b'); // slow insertions as the search starts from the // beginning of the containers sample.emplace('b'); sample.emplace('c'); sample.emplace('d'); cout << "Elements: "; for (auto it = sample.begin(); it != sample.end(); it++) cout << *it << " "; return 0; } Output: Elements: d a a a b b c Time Complexity: O(n) Auxiliary Space: O(n) Learn C++ Online – Master everything from basics to advanced concepts. Apply your knowledge with practical exercises and boost your skills. Take the Three 90 Challenge: finish 90% in 90 days for a 90% refund. Start now and level up your C++ programming!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum/Algorithm for Dynamic Time out timer Calculation/Difference between Round trip time (RTT) and Time to live (TTL)/Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms/Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm/Round Robin Scheduling Algorithm with Different Arrival Time/Selfish Round Robin CPU Scheduling/Find the order of execution of given N processes in Round Robin Scheduling/Calculate server loads using Round Robin Scheduling/set::lower_bound() Function in C++ STL/Implementation of lower_bound() and upper_bound() in List of Pairs in C++/Difference between std::set::lower_bound and std::lower_bound in C++/Difference between std::set vs std::vector in C++ STL/std::minmax() and std::minmax_element() in C++ STL/std::rotate vs std::rotate_copy in C++ STL/std::bitset::to_ullong and std::bitset::to_ulong in C++ STL/std::upper_bound and std::lower_bound for Vector in C++ STL/std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++/std::string::append vs std::string::push_back() vs Operator += in C++/Vector push_back() in C++ STL/vector :: cbegin() and vector :: cend() in C++ STL/unordered_multiset cend() function in C++ STL/unordered_multiset bucket() function in C++ STL/unordered_multiset emplace_hint() function in C++ STL
https://www.geeksforgeeks.org/unordered_multiset-emplace_hint-function-in-c-stl?ref=asr10
PHP
unordered_multiset emplace_hint() function in C++ STL
What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, jQWidgets jqxTreeMap width Property, Round Robin Scheduling Algorithm with Different Arrival Time, Difference between Flow and TypeScript, jQWidgets jqxTree destroy() Method, jQWidgets jqxTree collapseAll() Method, Find the order of execution of given N processes in Round Robin Scheduling, jQWidgets jqxScrollView buttonsOffset Property, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Vector push_back() in C++ STL, jQWidgets jqxListBox enableHover Property, Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm, std::rotate vs std::rotate_copy in C++ STL, Selfish Round Robin CPU Scheduling, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxSlider buttonsPosition Property, std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++, std::upper_bound and std::lower_bound for Vector in C++ STL, Difference between Round trip time (RTT) and Time to live (TTL), jQWidgets jqxSlider rtl Property, Difference between std::set::lower_bound and std::lower_bound in C++, jQWidgets jqxTooltip opacity Property, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, jQWidgets jqxToolBar height Property, PHP, std::minmax() and std::minmax_element() in C++ STL, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, Node.js date-and-time Date.transform() Method, TypeScript Optional Parameters, jQWidgets jqxToolBar theme Property, Difference between std::set vs std::vector in C++ STL, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, Steps to Diagnose and Resolve a Slow Network, How to use Optional Chaining with Arrays and Functions in TypeScript ?, Calculate server loads using Round Robin Scheduling, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, jQWidgets jqxScrollView showButtons Property, Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms, jQWidgets jqxScrollView disabled Property, jQWidgets jqxSplitter destroy() Method, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, set::lower_bound() Function in C++ STL, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, jQWidgets jqxTree collapseItem() Method, std::string::append vs std::string::push_back() vs Operator += in C++, unordered_multiset cend() function in C++ STL, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), jQWidgets jqxSortable opacity Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, vector :: cbegin() and vector :: cend() in C++ STL, jQWidgets jqxSlider height Property, jQWidgets jqxSwitchButton onLabel Property, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, jQWidgets jqxToolBar tools Property, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTree width Property, Implementation of lower_bound() and upper_bound() in List of Pairs in C++, jQWidgets jqxTree clear() Method, TLS Handshake?, Algorithm for Dynamic Time out timer Calculation, Adhoc TCP, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, jQWidgets jqxTabs position Property, Differences between Wireless Adhoc Network and Wireless Sensor Network, jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, std::bitset::to_ullong and std::bitset::to_ulong in C++ STL, unordered_multiset emplace_hint() function in C++ STL, unordered_multiset bucket() function in C++ STL, Impact of Three-way Handshake and Slow Start Algorithm, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, How to Sort an Array Having Optional Properties in TypeScript ?
GeeksforGeeks
[-0.0306925178, 0.0215823706, -0.0138414577, 0.00487026805, 0.035057798, 0.00721219927, -0.0160918813, 0.0243479516, -0.0103438124, 0.00516173849, -0.00675465865, 0.0278455969, -0.0168781728, 0.0008820371, -0.00328412652, -0.0195081867, 0.00787648093, 0.00198945543, 0.00131246436, -0.0246326439, -0.0028486154, -0.0173391029, -0.0190472566, -0.0114419106, 0.0051075113, 0.00938806, -0.0266390443, 0.00659536663, 0.0130619435, 0.0142074907, -0.00197589863, 0.0255816169, 0.0170679688, -0.0272897687, -0.00322820479, 0.048777245, 0.0448186658, 0.0159427561, -0.00585991191, -0.0149666695, 0.0140176956, 0.00240124203, 0.00794426445, 0.00359254284, -0.00869666506, -0.000137897732, 0.0239683613, -0.0203622617, 0.00168103899, 0.00626661489, 0.0534136556, 0.00585652282, 0.0151157938, 0.00148361851, -0.0399111174, 0.0314517, 0.0150073394, 0.00638862606, -0.00869666506, -0.00151581585, -0.0533865429, 0.0181796234, 0.0219077338, -0.0263950229, 0.00538203586, -0.0179491583, -0.0120858569, 0.0390977114, 0.0401551388, -0.0179898273, -0.021826392, 0.0286318902, 0.013678777, -0.00596836628, -0.0251071304, -0.00761212409, -0.0339461416, -0.0477469303, -0.0128247, 0.0234260913, -0.0111707747, 0.00898135733, 0.022097528, -0.0161596648, 0.0809067786, -0.0369286314, -0.00162342272, -0.0189388022, 0.035057798, 0.0240225885, -0.0327531472, -0.0403449349, 0.00309602637, -0.0208367482, -0.0543355159, 0.0377149209, 0.0277235862, 0.0240768157, -0.0190065857, 0.0473673381, 0.0163494591, -0.0151835773, -0.00256561791, 0.0128653711, -0.01462775, 0.0354916118, 0.0594328605, 0.002196196, -0.0129128192, -0.00910336804, 0.0289301388, 0.00347392121, -0.00919826515, 0.0491568334, -0.0078832591, 0.00692072883, 0.00679871812, -0.0290385932, 0.0212570094, -0.0129941599, 0.0136042144, 0.0391790532, 0.0140041392, 0.00241818815, -0.0179491583, 0.00115401973, 0.0110826558, 0.00251816935, 0.0357627496, -0.0135703227, -0.0168239456, -0.00682244217, -0.0236701127, -0.0174204446, -0.00647335546, 0.0386910103, 0.0206605103, 0.0443848521, 0.00856787618, -0.0169052873, -0.0800933689, 0.00134042522, -0.0292555, 0.015576724, -0.0208638627, -0.0324277841, -0.0248088818, 0.0108047426, -0.00887968205, 0.0152784754, -0.0351662487, -0.0338105746, 0.0124451108, -0.0075578969, 0.00921860058, -0.0149802258, 0.0268830657, -0.0337021202, 0.00102099392, -0.0379589424, 0.0390977114, -0.0200504567, 0.00179627142, -0.0168917309, -0.0308552, 0.031289015, -0.00859499, 0.0115639213, -0.0370099694, 0.0363863595, 0.0178407039, 0.0178678166, 0.0183016341, -0.0155496104, -0.0218941774, -0.00756467553, 0.040616069, 0.0314517, 0.0437612385, 0.0293097273, 0.0235074311, 0.0174475573, 0.0347595476, 0.0158478599, -0.00206401758, 0.000888815441, 0.0524917953, -0.00585991191, 0.0696275458, 0.0133466357, -0.00887290295, 0.0463641398, 0.0203622617, 0.0390706, 0.0449542366, 0.00145650504, -0.0380131714, -0.0165528115, 0.000145205675, 0.0565046, 0.00513801444, -0.0367388353, -0.00252325297, -0.00808661059, 0.00804594066, -0.00122180348, -0.00617849594, -0.0141532635, 0.0177458059, -0.00641573919, 0.0224635601, 0.0126620196, 0.0252833683, -0.0219484046, 0.0199148897, 0.0031451697, -0.0299604516, 0.0440052599, 0.0269915201, -0.0441679433, 0.000912539777, -0.00859499, 0.0194810722, -0.0676211491, -0.0309907664, -0.0114215752, 0.0343528427, 0.0469877496, -0.00156072271, -0.0285505485, 0.0301502477, 0.0279811639, -0.0151835773, 0.00213857973, 0.0544439703, -0.0284963213, -0.042432677, -0.0137804523, 0.0100726774, 0.0348408893, 0.00651402585, 0.0124722244, -0.0269644074, 0.00799849164, -0.000140015967, 0.0414023623, 0.0249851197, -0.0165121406, 0.00396196498, -0.00787648093, 0.00913048163, 0.0308280848, 0.0316143781, -0.0195353, 0.0145599665, 0.0392061658, 0.0308280848, -0.034190163, -0.00581246335, -0.0523291156, -0.0159427561, 0.0159292, -0.0180576127, -0.0106556183, 0.0073681022, -0.0235074311, 0.0510276668, -0.00625305809, -0.0233989786, -0.0253782663, 0.0204571597, -0.00246224762, 0.0287945699, 0.00522613339, 0.0173255466, -0.000158762443, -0.0280082785, -0.00597853353, -0.0160376541, -0.082099773, 0.01068951, -0.00898135733, 0.019833548, 0.00673771277, 0.0134550901, -0.0309094265, -0.0426224731, 0.0089610219, -0.0299875662, -0.0186541099, -0.0244835187, 0.00341630494, -0.0170950815, 0.0152242482, 0.0541457236, 0.0363592468, -0.0520037524, -0.00855431892, -0.0310992207, -0.0345697515, -0.0064259069, -0.0292012729, 0.00188100128, -0.00573112257, -0.0271813162, -0.0141668199, 0.00416531647, 0.00329090492, -0.00872377865, -0.031560149, 0.0141939335, -0.0193726178, -0.0221788697, 0.0380131714, -0.0156309512, -0.0207147375, 0.0175966825, -0.00826284848, -0.0420802, -0.00270288019, -0.0236972272, -0.0215417016, -0.0159156434, 0.0243343953, 0.0179084875, -0.0233854204, -0.0119841807, 0.0353831574, -0.0131703978, -0.0593244061, -0.0371726528, 0.000504142256, -0.0401822552, 0.00193522836, -0.0170815252, -0.0296079759, 0.00173696061, 0.0185727682, 0.014356615, 0.0189388022, -0.0162681192, -0.0273711104, -0.0161732212, 0.00709018856, 0.0394501872, 0.0353018194, 0.0073681022, -0.0213112365, 0.00519563071, 0.0083102975, 0.000754942419, -0.0161596648, 0.00153021992, -0.00407719752, 0.0220704153, -0.0545795374, -0.0109809805, -0.0364134721, -0.0390706, 0.0181796234, 0.00743588619, 0.0117808292, -0.00648013409, 0.0329429395, 0.00638184743, -0.00698851282, -0.031424582, 0.00441272743, -0.00128365622, -0.017122196, -0.00178949314, -0.0108657479, 0.0322651044, -0.00601581484, -0.0326718055, 0.0106285047, 0.0223686639, 0.031424582, -0.000720203156, 0.00901524909, 0.00320278597, 0.0301502477, -0.00609376607, -0.00188100128, 0.0463099107, -0.0128992628, 0.00999133661, -0.00620899862, -0.0188981313, -0.0101201255, -0.011184332, -0.013631328, -0.0513801426, -0.0416734964, 0.0171764214, -6.2064566e-05, -0.0295537487, -0.0143430578, -0.024090372, -0.050810758, -0.010506493, -0.0136245498, -0.00215722038, -0.00314347516, 0.0195895266, -0.00314347516, -0.000524477393, -0.00711730216, 0.000731218082, 0.0200911276, 0.0137397824, -0.0102895852, -0.0128857056, 0.00347731053, 0.0204029325, 0.0245648604, -0.0316686034, 0.0301231332, 0.0482078604, -0.00177085248, -0.0141668199, -0.0173797738, -0.00664620427, 0.0236972272, 0.0137940096, 0.0406431854, -0.0100930119, 0.0204164889, -0.00103963446, -0.0185998827, 0.0225720145, 0.00700206961, 0.00985576864, 0.016213892, -0.00298079383, -0.0626322553, 0.052627366, 0.0272897687, -0.0229516048, -0.0106962882, 0.0183016341, 0.0051210681, -0.00540576037, -0.0324548967, 0.00302654807, 0.0467437282, -0.00547015481, -0.011367348, 0.0181660652, 0.0333225317, -0.0162816755, 0.0196030829, -0.000150819018, 0.0201453548, 0.0282794125, -0.0199691169, 0.0361694507, -0.0100252284, 0.0541186072, 0.0128043657, -0.0266797151, 0.016756162, 0.0202809218, -0.0111165475, 0.00787648093, 0.00683938852, 0.0128111439, 0.058239866, 0.0339190289, 0.00983543321, -0.00294012367, -0.0348408893, -0.022504231, 0.000108083434, 0.0367659479, -0.021826392, -0.0260289907, -0.0123976627, -0.0145328529, 0.00134805089, -0.0187896769, -0.00847975723, -0.0172035359, -0.00130992255, -0.00200131745, -0.0233989786, 0.0111233266, -0.0311534479, -0.00857465435, 0.0289030243, -0.033186961, -0.021785723, 0.00342986174, -0.0230329446, 0.00672754506, 0.0168917309, -0.040616069, -0.00908303261, -0.000795189058, 0.0174746718, 0.0128382575, -0.00311297225, -0.0323193297, 0.0277371425, 0.0197115373, -0.0389350317, -0.00925249234, -0.0205656141, -0.0379589424, 0.0113605699, -0.00877122767, 0.0426495858, 0.0222873222, -0.00104895479, -0.00167849706, 0.0103302551, 0.0249444488, 0.0120858569, -0.0471233167, 0.00605648523, 0.0141803771, 0.00660892343, 0.00734098861, 0.0142346043, -0.0400195718, 0.00922537874, 0.00433138665, -0.0110148722, -0.0112317801, -0.0439510345, -0.0229109339, 0.0128247, -0.0265034772, 0.0178000331, -0.00187930663, -0.0183965303, 0.0144108422, -0.0130551653, -0.0334852114, 0.00321803731, -0.0147768743, -0.00983543321, 0.0286047757, 0.00601920392, -0.0124790026, 0.00586669054, 0.0119367326, -0.0106013911, -0.0275880191, -0.000174013796, 0.00469403, 0.00655808533, -0.0126416842, -0.0151971346, -0.0344884135, -0.00138956844, -0.0142481606, -0.0363592468, 0.00568706309, 0.0133669712, 0.0136448843, 0.00342308334, 0.012858592, -0.0122824302, 0.0130687226, -0.007463, 0.0189388022, -0.00795104355, -0.0251206867, 0.0160376541, 0.00287911808, -0.0101540172, 0.0273846667, 0.00832385384, -0.0270186346, 0.0228973776, 0.0205113869, 0.0266932715, -0.00121841428, -0.0078629246, -0.00382639724, 0.00483298721, 0.000139698241, -0.00355526176, 0.0231007282, -0.0119502889, -0.0472317711, -0.0327260308, -0.0200911276, 0.0186269954, 0.0164579134, 0.0300417934, -0.00835774653, 0.0105200503, 0.0100455638, -0.000126035564, 0.025269812, 0.0136109926, -0.0192234945, 0.0189388022, 0.00337902387, 0.0163901299, 0.0114622451, -0.000465590187, 0.00671059918, 0.0180847254, 0.00732743181, -0.00278252619, 0.00213519065, -0.00123366574, -0.0435443334, 0.0102082444, 0.0409143195, -0.0172984339, -0.0050227819, -0.0038535106, -0.0115978131, 0.0288487971, -0.0108182989, -0.00017157782, -0.0190065857, -0.0272762123, -0.0112724509, 0.0140312528, 0.00792393, 0.00969986618, -0.0340817086, 3.70692796e-05, 0.00542948488, -0.0166612659, 0.016525697, -0.0127230249, 0.0128721492, -0.00814083777, -0.00333665893, 0.00672076643, -0.00144210097, 0.0239276923, 0.00226398, 0.0301502477, -0.0180847254, 0.00721219927, -0.00835774653, 0.0383656472, -0.00470080832, 0.0144108422, -0.00108538859, 0.0263272393, 0.0332954153, 0.00431444077, -0.0361694507, 0.0238463506, 0.0265848171, 0.00510073313, -0.00307569117, -0.0242123846, -0.0149937831, 0.00154716591, -0.000657926779, 0.011726602, -0.00219450146, -0.0239954758, 0.0171493087, -0.0124654463, -0.00211485545, -0.00308246957, -0.0353831574, -0.0250529032, -0.00357220788, 0.0143430578, -0.0286047757, -0.0174611136, 0.000452880719, 0.0113063427, 0.0187083371, -0.0295537487, -0.0213925764, 0.0139092421, -0.0143701714, -0.00898813549, 0.0281980727, -0.00961852539, -0.023005832, -0.0339190289, 0.00663264748, -0.0108521907, -0.0108589698, 0.0161596648, 0.0138821285, -0.0347866602, -0.00549387932, -0.0245648604, 0.0120723, 0.0130822789, -0.0250393469, -0.00920504425, 0.0136652198, -0.00218094466, 0.0057243444, -0.00225550681, 0.00784936734, 0.00450423546, -0.024361508, -0.0385012142, 0.00240293681, 0.0514072552, -0.00734776724, -0.0165799242, -0.0397755504, -0.0284149814, 0.00740199396, -0.00108877779, 0.00388062419, 0.00379250525, 0.010323477, -0.0106827319, -0.0159834269, -0.0191828236, 0.0151835773, -0.0286590029, 0.00451440318, 0.0341088213, -0.0102828071, -0.0114283534, 0.0368472897, -0.0182202924, -0.000690547749, -0.00713085895, -0.03324119, -0.000321549538, -0.0304213818, 0.00978798512, -0.00193861756, 0.0137126688, -0.0422699973, -0.00765957264, 0.0279269367, -0.0189930294, -0.016756162, -0.0126484623, 0.00315364264, 0.0328616, -0.012045186, 0.0191014837, -0.00474825734, 0.0252562538, 0.0346239805, -0.00643268554, -0.0270593036, 0.0444119647, 0.0201453548, 0.0146819772, 0.0216365978, -0.0173255466, -0.0029621534, -0.0348137729, 0.0256629568, 0.00522952247, 0.0167426057, -0.0279811639, 0.0225720145, 0.0136042144, 0.0107844071, 0.0247139838, -0.032373555, 0.0121129705, 0.00791715086, 0.0371726528, 0.00194878504, 0.0182202924, 0.00913726, -0.00492110616, 0.00547693344, -0.00768668624, -0.00608020928, -0.0259205364, 0.0149802258, 0.0207282957, -0.00151666312, -0.000385520514, -0.00605648523, 0.0342443921, 0.0156173939, 0.0195488557, -0.000451609754, 0.0213925764, -0.000608359871, -0.00648691226, 0.0144108422, -0.0512445755, 0.0169730708, 0.00822895672, 0.0461743437, 0.0423242226, 0.0102692498, -0.0266119316, -0.003407832, -0.0235345457, -0.0388808027, -0.0297164302, 0.0162952319, 0.00535492226, 0.0221653115, 0.0145599665, 0.00840519462, -0.0297977719, 0.0161054377, 0.0190065857, 0.0350849107, 0.0283065271, -0.0132517386, 0.0189523585, -0.00596836628, 0.00855431892, 0.0222873222, -0.00415514875, -0.00428393809, 0.0104319314, 0.0166341513, -0.00432121893, 0.0474486798, -0.0251071304, 0.0464725941, -0.00820862129, -0.0457676426, 0.021595927, 0.0329429395, 0.011096213, 0.00400941353, -0.0353831574, 0.00578873884, 0.016756162, -0.00531764142, -0.0173255466, -0.0265848171, 0.00244191242, 0.00489060348, -0.00950329285, -0.0248224381, 0.032237988, -0.0126213487, -0.00198776089, -0.0643675253, -0.0228838213, 0.0171899796, 0.00277574779, -0.0270864181, -0.00576840388, 0.00484654354, 0.0168510601, 0.038718123, 0.00571417669, -0.00594125269, -0.00996422302, -0.00227753655, 0.0232769661, -0.0364677, -0.0536034517, 0.0150480103, 0.0028486154, -0.00495499792, 0.0198877752, -0.00436188933, 0.0456049591, 0.00561927957, 0.0108521907, -0.0143837286, -0.0275066774, 0.0279269367, -0.0268152822, 0.0272219852, 0.0181253962, -0.0277100299, -0.0108860834, -0.00242835563, -0.0151157938, -0.00876444951, 0.0138685713, -0.0195081867, -0.00563283637, 0.03215665, -0.0112792291, -0.0249715634, -0.0452253707, 0.0077070212, 0.00186913903, 0.0114961378, -0.0169595145, -0.0393146202, -0.0347324349, 0.028577663, 0.0104861585, -0.0081815077, 0.00615138235, 0.00973375794, -0.0113809053, -0.0171764214, 0.027533792, -0.00712408032, -0.0151835773, 0.00287911808, -0.0344612971, -0.014763318, 0.0123095438, 0.011726602, 0.00129721302, 0.0521664359, 0.0180304982, 0.00961174723, 0.0269508511, 0.0010913196, 0.00873733591, -0.0183016341, -0.0646386594, -0.0122824302, -0.00135652383, 0.000590566604, 0.00190811476, 0.00167680252, -0.0157394055, 0.0135228736, 0.0193048343, 0.0238327943, -0.0105471639, -0.0115232505, -0.0195624139, 0.0165663678, 0.0523291156, -0.0165121406, 0.0133059658, -0.0147090908, 0.00999133661, -0.00542270625, 0.0117401592, 0.00855431892, -0.0413752496, -0.0179084875, -0.0129331546, -0.0671331063, -0.0171357524, 0.00209113117, 0.0190336984, -0.0189116877, -0.000699444383, -0.0348137729, -0.00369421858, -0.0327802598, -0.0160105396, -0.0124654463, 0.0175017845, -0.0293368418, 0.00130822789, 0.00204198784, -0.0183558613, -0.00511767901, -0.0290385932, -0.00717830751, -0.0037111647, -0.00409753248, 0.0114419106, 0.0248088818, -0.00500244647, 0.00802560523, -0.00776802702, 0.00121333054, 0.000541423331, -0.0104387095, -0.0191421527, -0.0286590029, -0.0031383913, 0.0207689647, -0.0272355434, 0.0281980727, 0.0258527528, -0.0194132887, 0.00429749489, -0.0120045161, 0.00835774653, -0.0042432677, 0.0134822037, 0.0294452962, 0.016078325, 0.0360609964, 0.0108657479, 0.021785723, 0.00609376607, 0.0368472897, -0.043517217, -0.0368472897, 0.0186812226, -0.0176102389, -0.00862888154, 0.023141399, -0.0176373515, 0.0348680019, 0.068976827, 0.0119367326, -0.0107911853, 0.00532780914, -0.0243208371, -0.00778158335, -0.0326446928, -0.0383385345, 0.0158614162, 0.00893390831, -0.0264492501, -0.000772735628, 0.0464997068, -0.0213790201, 0.00856787618, 0.0383114219, -0.00461268937, 0.00902880635, -0.00220805826, -0.0108318562, 0.00765957264, -0.0172442067, -0.017976271, 0.0319668539, 0.0276151318, -0.000792223494, 0.016620595, -0.0234260913, 0.0105336066, 0.00431783, 0.01236377, 0.0166477077, -0.000882884371, 0.00119045353, -0.000792223494, -0.00280455593, -0.013949912, 0.0034349456, 0.0149531122, -0.0268288404, -0.0217179395, -0.0315872654, -0.0335665531, -0.000594803074, -0.0111707747, 0.0285505485, 0.0137058906, -0.022233095, -0.023548102, -0.0106962882, 0.0160512105, 0.0269915201, 0.00265034777, 0.024049703, 0.00735454541, 0.0174068864, 0.00974731427, 0.000874411373, 0.00383656472, -0.000844755967, -0.00765279448, 0.0116249267, -0.00813406, 0.0314788111, -0.00958463363, -0.00573451212, -0.00939483847, 0.000778666756, -0.0265983753, 0.00451101363, 0.0311263334, 0.00828996208, 0.0249715634, 0.0229380485, 0.00272321538, 0.019020142, -0.0228295941, -0.0220297445, 0.011455467, 0.0228431504, 0.00693767471, 0.0128924847, -0.00262492872, 0.0244428478, -0.0350849107, -0.00044610232, 0.0154276, 0.000270711666, 0.0400195718, 0.0220433, -0.0104319314, 0.00720542111, 0.0132449605, -0.0237514544, -0.0130619435, -0.0224500038, 0.0121536404, 0.0233583078, 0.00280963979, 0.0288759116, 0.00120316294, 0.0197928771, 0.0361965634, -0.0191828236, 0.000728252518, -0.00255375565, 0.013041609, 0.0160918813, 0.00481265178, -0.00250630709, -0.00125061162, 0.00865599513, 0.00643607462, 0.0150480103, 0.00411786744, 0.0350849107, 0.0151157938, 0.0448457822, 0.0471504331, -0.0230736155, -0.0186947808, -0.0239141341, -0.0265712608, 0.000606241636, -0.00309602637, -0.00644285278, 0.016525697, -0.0290657058, 0.0184914283, -0.0106149474, -0.024456406, 0.00983543321, 0.0144379558, -0.0221653115, 0.019928446, -0.00370099698, 0.00452457042, 0.0133737493, 0.0223551076, 0.0243750643, -0.00603615, 0.0184372012, -0.0176780224, -0.0147362044, 0.00431105169, 0.0115978131, -0.00396874314, -0.00868988689, -0.00302146422, 0.00169798487, -0.000818066066, 0.00602598256, 0.0130822789, -0.0170408543, 0.0103302551, -0.012180754, 0.0134754255, 0.00417209463, 0.00648691226, -0.030882312, 0.0062903394, -0.00412803516, -0.00434833253, -0.00130314415, -0.00145481038, 0.015170021, -0.00483298721, 0.000397594529, -0.00507361954, 0.0084865354, -0.00845264364, 0.00577179296, -0.0152784754, -0.0122620948, 0.0276422463, -0.000616409176, -0.0173526611, -0.0133669712, 0.012499338, -0.00595819857, -0.0353560448, -0.00966597442, 0.00322989933, 0.03776915, -0.0132110687, -0.000520664558, -0.00662586931, -0.0231685136, 0.0243886225, -0.00433816528, -0.00973375794, -0.00403313804, -0.0129941599, -0.0205927268, -0.0136109926, -0.0200504567, 0.00717152888, -0.0059005823, -0.0045821867, 0.0162410047, -0.0383385345, -0.00272152084, -0.00228431495, 0.0100116711, 0.0254324917, 0.0186812226, 0.018884575, -0.0418904051, 0.0107708508, -0.0174746718, -0.0122146457, 0.00982187688, -0.00760534545, 0.0150751239, 0.0156987347, -0.0205927268, -0.0233718641, -0.000307357288, 0.00234362599, 0.00579890655, -0.00563283637, 0.0050092251, 0.0150615666, 0.0294724088, 0.013949912, -0.00636490155, 0.00915081706, -0.00179966062, -0.0106352828, -0.00044525502, 0.00601920392, 0.0229651611, -0.00413142424, -0.0129331546, -0.00807305425, -0.0261510015, 0.0115435859, 0.000357559707, 0.0214603599, 0.025947649, -0.00484315446, 0.00120739941, 0.026761055, 0.0201453548, 0.00436188933, -0.0203215927, 0.00906947628, -0.0306654051, 0.0107030664, 0.0360338837, 0.0223144367, 0.00234023668, -0.00176746328, -0.00458557624, -0.0151429074, -0.0116655966, 0.00515496032, -0.0131636197, 0.0340003669, -0.000302697154, 0.0180304982, -0.0384198725, -0.00934061129, -0.00605987431, 0.0156309512, 0.0109538669, -0.0199420024, -0.0243750643, 0.0151835773, -0.0241717137, -0.0127026895, 0.00239107455, 0.023005832, 9.07667854e-05, -0.0130687226, 0.00311975065, 0.0247546546, 0.00506345183, 0.0288216844, -0.00124637515, 0.00156157, 0.0478011556, -0.0175017845, 0.0127026895, 0.00584635511, -0.00366710522, -0.00995744485, 0.0384198725, -0.00897457916, 0.00265712617, -0.0112182237, 0.0194132887, 0.00475842459, -0.0059005823, 0.0120587433, -0.0161732212, 0.0328073725, 0.0334852114, -0.00444323, -0.0127433594, -0.00687666936, 0.0252291411, -0.0171764214, 0.00891357381, 0.0170679688, 0.00466691656, 0.0145735228, 0.00584974466, -0.00925249234, -0.0131703978, 0.0103912614, 0.00180135528, 0.0184643157, -0.00881867576, -0.0102692498, -0.00825607, 0.00418565143, -0.00967275258, 0.0132585168, 0.0323193297, 0.00221822574, 0.0417006128, 0.0124044409, 0.00900847092, 0.00283166952, 0.00154208206, -0.0138617931, 0.0142074907, 0.0120180724, -0.0209045336, -0.0181389526, 0.0045415163, -0.0142481606, 0.00512784673, -0.00837130286, 0.0140041392, -0.0123908836, -0.00328243198, 0.0216365978, -0.0370370857, 0.00183355261, 0.00947617926, -0.0116927102, 0.00393824046, 0.0032383725, 0.0126145706, 0.0213654637, -0.000330446172, 0.00096083578, -0.0181253962, -0.0108996397, -0.0118418345, -0.0264899209, -0.0112046665, -0.0170408543, 0.00634456659, -0.00496516563, 0.00682244217, 0.0118689481, 0.0141668199, -0.0212705657, -0.0374437869, 0.00688683707, 0.00273168832, -0.00401280262, -0.00868988689, -0.0257307421, -0.0138211232, -0.0120790787, -0.0254460499, -0.0262730122, 0.0122892084, 0.00467369519, 0.0167019349, 1.76608646e-05, -0.00990321767, 0.00759178866, -0.0202809218, -0.000146582533, -0.00338919135, 0.0257578548, -0.00151496858, -0.00670043146, 0.0490754917, -0.0136584416, -0.00463980297, 0.000666823413, -0.0199826732, 0.0097405361, 0.0126213487, 0.00665976107, -0.0039179055, 0.0241446, 0.0185592119, -0.0222059824, 0.021284122, 0.0125806788, 0.0144379558, -0.0011514778, 0.00138617936, 0.0234396476, 0.0145192966, -0.000365609041, -0.0255816169, 0.0160647668, 0.00127518328, 0.003294294, 0.00472114375, 0.0174882282, 0.00743588619, 0.00610393379, -0.0278455969, -3.98759548e-05, -0.0164579134, 0.000541846966, 0.0166748222, 0.0385825559, 0.0102218017, -0.0108454125, -0.0277913697, -0.00295537501, 0.00649030181, -0.00250800163, -0.023005832, 0.0166612659, 0.0146955345, -0.00742910756, -0.024903778, -0.00265373685, 0.0345968679, -0.00512445765, 0.0145735228, 0.00919826515, -0.00177763088, 0.00274355058, -0.00345697533, 0.0088118976, 0.00543287396, -0.00908981171, 0.0121265268, 0.01186217, 0.017027298, -0.0296893176, 0.0200097859, -0.00817472953, -1.33184631e-05, 0.00327734812, 0.0198471043, -0.0190336984, 0.0256358441, -0.00946940109, -0.00543965213, -0.0260696597, 0.00862210337, 0.00484654354, -0.0378504917, 0.0121604186, -0.0191285964, 0.017027298, 0.0157665182, -0.00680888584, -0.000466437486, -0.0268423967, -0.0373082198, 0.00822217856, 0.00630728528, -0.0237921234, -0.00898135733, 0.00886612479, -0.017162865, 0.0029689318, 0.0346239805, 0.01462775, 0.0334581, -0.00214874744, -0.00179796608, 0.025947649, -0.0150480103, -0.00432460848, -0.0378776044, -0.0193183906, -0.0162545629, 0.00683261, 0.00945584383, -0.00962530356, 0.0329429395, -0.00981509872, 0.0176237952, -0.0190608129, 0.02871323, -0.0174611136, 0.0170408543, -0.0127569167, 0.0108454125, 0.0467979573, 0.0112453373, 0.0196166392, 0.00669026375, 0.0186812226, -0.00391451595, 0.0029689318, -0.00439578108, 0.00880511943, -0.00105403853, 0.0114622451, 0.00287403446, -0.0177729204, -0.00618866365, 0.0181660652, -0.0344341844, -0.00998455845, 0.0123569919, 0.00462624617, 0.0258256383, 0.012546787, 0.00194200675, -0.00359254284, 0.00781547558, -0.0297164302, 0.00680888584, 0.00284014246, -0.0064665773, -0.00465674885, -0.0108793043, -0.023954805, -0.0074087726, 0.0102895852, -0.0223279931, 0.0206876248, -0.0123502137, -0.00395518634, -0.00814083777, 0.0141261499, -0.0301231332, 0.0078832591, 0.000505836797, 0.0254189353, 0.0216501541, 0.0128111439, -0.0235887729, 0.0157800745, 0.00658519892, -0.00948295742, -0.00318583986, 0.0105810557, -0.00129128189, -0.00242157723, 0.000544388895, 0.0185592119, 0.0161732212, 0.016118994, 0.00578873884, -0.00236226642, -0.00931349769, -0.0191557109, 0.00588024734, -0.0136855552, 0.0242530536, 0.000987102, 0.0316686034, 0.0106623964, -0.0190743692, 0.0377962627, -0.0123366565, 0.0160240978, -0.0197522081, 0.0380673967, 0.00529052783, 0.00882545486, 6.31766452e-05, -0.00663942611, -0.00378572685, 0.0136448843, -0.00430088397, -0.018884575, 0.00543287396, 0.00354170497, 0.0307467449, -0.00487365713, 0.00545998756, 0.0167968329, -0.0315330364, 0.00838485919, 0.0144108422, 0.0202809218, 0.0457676426, -0.00261137192, 0.015034453, -0.0239276923, 0.0210265443, -0.00468047336, 0.00573451212, 0.00064606464, -0.0132924085, 0.00858821068, 0.0163223464, -0.00248258281, 0.00229787175, 0.0025723963, -0.00749689154, 0.00684955576, -0.00648352318, -0.0178949311, -0.0101065692, 0.00122688734, 0.00978120696, 0.023683669, -0.000706222781, 0.00195556344, 0.00578534976, 0.000690124114, -0.000351416791, 0.0112114456, -0.0233989786, 0.01186217, -0.0100794556, 0.00096507225, 0.0122214239, -0.0109674232, -0.0160376541, -0.0232362971, 0.0154547133, 0.00556505239, -0.0107505154, -0.00915759522, 0.0379860587, 0.0176237952, 0.0268152822, -0.0135567654, -0.0104929367, 0.0005808227, 0.00620899862, 0.00641573919, 0.0142074907, -0.00795782171, 0.0109470887, 0.0059514204, 0.00352137, -0.0162274484, -0.00962530356, 0.00850687083, -0.016213892, 0.012451889, 0.00919826515, 0.00298248837, 0.0250935741, 0.000779090391, -0.00084941613, 0.0103031415, -0.00195556344, 0.00618527457, -0.0261916723, -0.00423987862, 0.00154716591, -0.00943550933, 0.0102963634, 0.000144252466, 0.0184914283, 0.00415175967, -0.000940500642, 0.0040297485, 0.0121536404, 0.000164481695, 0.0171357524, -0.00828996208, 0.0102556935, 0.0056599495, 0.00107776292, 0.00972020067, 0.00610393379, 0.01186217, 0.0153462589, -0.00323667773, -0.0237107836, 0.0101675745, 0.0179491583, 0.00250969618, 0.0070562968, 0.011414797, -0.00980832, -0.0178407039, 0.0192099363, 0.00508378725, -0.0101269037, 0.0299875662, -0.00136923336, -0.0246190876, -0.00820862129, -0.00242496654, -0.0255545042, 0.0164443571, 0.0140041392, -0.00177932554, 0.0202131383, -0.00413481379, -0.0132856304, -0.0113266781, -0.016756162, -0.0153869288, 0.00480248407, 0.00318075623, 0.0204842724, -0.0116520403, 0.005185463, 0.00113876828, 0.0131839551, -0.00798493531, -0.03215665, 0.0050092251, 0.00079264713, -0.0270593036, 0.000884578971, -0.0152920317, -0.00280794501, 0.00641235, 0.0162816755, -0.0172577631, -0.0041077, 0.000274736318, -0.00339596975, -0.00847297907, -0.0196437538, -0.00437205704, 0.0144650694, -0.0111911101, -0.00136923336, -0.00761212409, 0.0109538669, 0.0107640717, 0.00240463135, -0.00456863, 0.00357898627, -0.0233311933, 0.00974731427, -0.0110826558, 0.0137465606, -0.0115639213, -0.00442628423, 0.00225042319, -0.00318414532, -0.00143701723, -0.0074087726, 0.00764601585, 0.00274355058, -0.0171357524, -0.0116317049, -0.0122078676, 0.0073952158, 0.00323667773, 0.00810016785, -0.00874411408, -0.00759178866, 0.0114961378, 0.00647335546, -0.0105742775, -0.00603276072, 0.00761212409, -0.0342715047, 0.0174475573, -0.0325904638, -0.0316414908, 0.0111775538, 0.00732743181, -0.0219755173, 0.0075307833, -0.0173255466, 0.00426699221, -0.016485028, 0.0250393469, 0.0291741602, -0.0210129861, 0.0172306485, 0.0324006714, -0.000651148381, -0.01186217, -0.000663434213, -0.0143837286, 0.014356615, 0.0022961772, 0.0196166392, 0.0166070387, -0.0199555587, -0.0138007877, -0.0122010894, 0.00421615411, 0.0112385591, -0.00359254284, -0.0169595145, -0.0138007877, -0.00828996208, -0.00822895672, -0.00593108498, -0.0171357524, -0.0111911101, -0.0102150226, 0.0141125936, -0.00204537692, -0.0156580638, -0.0117672728, -0.0102489153, -0.000871022174, 0.000249529228, -0.00360271055, 0.0108793043, 0.0129399328, -0.00417887326, -0.0328073725, -0.00076002616, 0.00792393, -0.00137262256, -0.0104658231, 0.00192167156, -0.00341799948, 0.0167019349, -0.00541253854, -0.0186269954, -0.00605987431, -0.0296893176, 0.00457540853, 0.0146413073, 0.00689700479, 0.00950329285, 0.0241174866, -0.0221517552, -0.00364338071, 0.00780191878, -0.004392392, -0.00305366144, -0.00396535406, -0.0233311933, -0.00288759102, -0.0218941774, 0.00173187687, 0.0136855552, 0.00551760383, -0.00488043576, -1.4258434e-05, 0.0184372012, 0.0184236448, 0.0115639213, -0.00906947628, 0.0111233266, 0.00656147441, -0.00292995595, -0.003860289, 0.00363999163, -0.0103505906, 0.0067783827, -0.00359254284, 0.00350442389, -0.00372133218, 0.00582940923, 0.00613782555, -0.00167680252, -0.0110284286, -0.0221517552, -0.0110148722, 0.0116249267, -0.0014175293, 0.00126501569, 0.021555258, 0.000712153851, -0.00860854611, -0.0174068864, -0.0136516634, -0.0068427776, 0.0186405536, 0.0233718641, -0.00762568088, -0.0103641478, -0.0125400079, -0.0407787524, 0.00442967331, 0.0111436611, 0.0290114786, 0.0137397824, 0.004392392, -0.00502956, -0.00378911593, -0.0140719227, 0.00109386153, 0.0177186932, 0.0204842724, 0.0127230249, -0.00427038129, 0.000663010578, 0.00012592964, -0.00441272743, 0.00458896533, -0.0191963799, 0.0125535652, 0.00940839574, 0.00990321767, 0.0371726528, 0.0229244903, 0.0210265443, 0.0140583664, -0.00183185795, -0.00124044402, 0.013312744, -0.0186269954, 0.00585652282, 0.00734098861, 0.00918470882, 0.0132314032, -0.0157936327, 0.0062123877, 0.0153191453, -0.0143701714, 0.00751044834, 0.0124247754, 0.0159292, -0.00916437339, -0.0062259445, 0.00951007102, 0.0243479516, 0.00359593215, -0.00653436128, 0.0146548636, -0.000267534313, 0.0174068864, -0.0235074311, -0.0335394368, 0.00546676572, 0.00688005844, -0.0101404609, 0.0104658231, -0.0163087901, -0.0178678166, 0.0044059488, 0.00845942181, 0.0187083371, 0.0137736741, -0.0161325522, -0.00515496032, -0.0168103892, 0.00514818169, -0.00163867406, 0.0164985843, -0.00644624233, -0.034190163, -0.034190163, 0.018342305, -0.00203182036, 0.013766896, 0.00580907427, 0.0177051369, 0.0263950229, -0.0218535066, 0.00862210337, 0.00292995595, -0.031289015, 0.00544643076, 0.0146819772, -0.0244699623, 0.0200369, 0.00919148698, 0.0229516048, -0.0163494591, -0.00356204016, -0.011367348, 0.000895593839, 0.00521935476, -0.00315025356, -0.0138956849, 0.00393824046, 0.0117604947, -0.0126620196, 0.0177051369, 0.0199962296, -0.0100387847, -0.0196030829, -0.00649708, -0.0102760289, -0.00389418099, -0.00124637515, 0.00894746557, 0.0182880778, 0.00834418926, -0.000612172706, 0.00232667988, -0.0243479516, 0.0186812226, 0.0188167915, 0.0149395559, -0.0164443571, -0.00433138665, -0.00656825304, 0.00448728958, 0.0147362044, -0.0117672728, -0.000220297443, 0.00759856729, 0.0434358791, 0.00497533288, -0.00776802702, -0.0110284286, 0.0193319488, -0.0120655214, 0.00471097603, -0.0038670674, 0.00418226235, -0.00244530174, -0.000771464722, -0.00587685779, -0.000787139696, -0.00289098034, 0.0154547133, -0.0215010308, 0.0051075113, 0.00660892343, 0.0225720145, -0.0168917309, 0.024456406, 0.00381961884, 0.0191014837, 0.00307230209, -0.0173391029, 0.0149531122, 0.00100065873, 0.0154953832, 0.00661231251, -0.00656147441, 0.0192370508, -0.00115740893, 0.00112775341, 0.0185456555, -0.0176915787, -0.0136245498, 0.0190879256, -0.00357559696, 0.000270076183, -0.00340444292, 0.0159156434, 0.00222669868, -0.000810440397, 0.0235345457, -0.00410092156, 0.0039890781, 0.000864667469, 0.0137058906, -0.00918470882, -0.00932027679, 0.00980832, 0.016078325, 0.00827640574, 0.00311975065, -0.00346883736, 0.007381659, -0.00338071841, -0.0270864181, 0.000970156048, 0.00535831181, 0.00713763712, 0.0165934805, 0.00808661059, -0.0083102975, -0.00802560523, 0.0105810557, 0.0232769661, 0.0202266946, -0.0122892084, 0.00720542111, -0.00374166737, -0.00196912023, 0.0102285799, 0.0164308, -0.00780191878, 0.0294452962, 0.0300960205, 0.00255545042, -0.0144650694, -0.0153598152, -0.00635134475, -0.0191557109, -0.00401280262, -0.0225855727, 0.00580229564, 0.0215281434, -0.00565656042, -0.00289098034, -0.0152378045, -0.00780869694, 0.00540237129, -0.00348069961, -0.021826392, -0.00569723081, 0.00323328865, 0.0123231, 0.0072460915, -0.00139719422, -0.00579212839, -0.0187083371, -0.00805271883, -0.00770024303, 0.00634795567, 0.0147768743, 0.0100658983, 0.0089610219, -0.00610393379, -0.0017174728, 0.01073018, 0.00758501049, 0.00915759522, -0.00635473384, 0.0117876083, 0.0169730708, -0.00197420409, -0.0141668199, -0.00850009173, 0.00318922917, -0.0202538073, 0.0159698706, -0.0126755759, -0.0322108753, 0.0188032333, -0.0134686464, 0.00450762454, 0.00489738164, -0.00201487425, 0.000394628965, 0.0139227984, 0.002309734, 0.0148039879, 0.0102556935, 0.00148531317, -0.0133059658, 0.00708341, -0.00306382915, -0.008784784, 0.00253003137, -3.17736703e-05, 0.0159698706, 0.0250529032, -0.015170021, 0.00592769589, -0.00919148698, -0.0102624716, 0.0112182237, -0.00435850024, -0.00520918705, -0.00290453713, 0.00183185795, -0.00643607462, -0.0113266781, 0.000417717849, 0.0159020871, 0.0142346043, 0.0385283269, -0.0239276923, 0.00346205896, -0.0146684209, -0.0125603434, -0.0170137417, 0.00320617505, 0.0361694507, 0.0137940096, 0.0164172426, 0.0159834269, 0.00841197278, 0.0173119903, -0.00117350754, -0.00585313374, -0.0102828071, -0.0104997149, 0.0183965303, 0.0104387095, -0.013719447, 0.00691395067, 0.00601581484, -0.0278998241, -0.0123773273, -0.00537186861, 0.0057379012, 0.0143023878, -0.00693089655, -0.00208096346, -0.00670382055, 0.00426699221, 0.00608698791, -0.0276829153, 0.0023792123, -0.00266898819, 0.0103166988, 0.00710374536, -0.0152920317, -0.00588024734, -0.0217721667, 0.0172170922, 0.0171899796, 0.0352204777, -0.00960496813, -0.00395857543, -0.00237582321, 0.0137804523, -0.0432731956, 0.00820862129, -0.0148446588, -0.0290385932, 0.0210672133, 0.0043788352, 0.00492449524, -0.0112046665, -0.00632084208, 0.00558199827, 0.0177458059, 0.0175017845, -4.76869827e-05, -0.00104132912, 0.0185863264, -0.0119299535, 0.00407719752, 0.00712408032, 0.0132042896, 0.00201487425, -0.00064437004, -0.00797137804, 0.0120655214, 0.00282150181, 0.00314008584, -0.0239412487, -0.00860854611, -0.0114351315, -0.0238870215, 0.0103302551, 0.00308755343, 0.0145328529, -0.0168917309, 0.00442628423, 0.00698173419, 0.030340042, 0.00239785295, -0.00405008392, -0.00683599897, 0.0320481956, 0.0281167328, 0.00287911808, -0.0212976784, 0.0127501385, -0.0176373515, -0.0200233422, -0.00943550933, 0.0128857056, -0.000174755187, -0.000676143682, 0.0192234945, -0.00763245905, 0.000707917381, -0.000798154564, 0.0145057393, 0.0143972849, -0.0111368829, -0.00990999583, 0.0269237366, -0.0290657058, -0.0142752742, 0.0184507575, 0.0210536569, -0.0143430578, -0.0362236798, 0.0115842568, -0.0165392552, 0.00238599069, 0.0443577394, 0.0147226481, -0.00291470462, 0.00179118768, 0.0346510932, -0.00592091726, 0.00473470055, -0.0237514544, -1.8799421e-05, 0.00752400514, 0.0219890736, -0.0140176956, -0.0179084875, -0.00629372848, 0.0106556183, 0.0132991876, -0.0178949311, 0.0162003357, -0.00541931717, 0.00638862606, 0.0059005823, -0.0194810722, 0.00267746113, 0.00655808533, -0.0020199581, -0.0114622451, 0.0228973776, -0.0133534139, 0.0125603434, 0.00265882071, -0.021595927, 0.0040941434, 0.0273304395, -0.0042432677, 0.0126552405, 0.00554471742, 0.00460930029, 0.000856194471, -0.0260561034, -0.0112792291, -0.0120112943, -0.00163867406, 0.0122349812, -0.0245241895, 0.0182202924, 0.0035281484, 0.0120384078, 0.0269508511, 0.00932705496, -0.0141261499, 0.00639540423, 0.000697749783, 0.0276422463, -0.00614460418, -0.0104115959, 0.0132517386, 0.0127026895, 0.0213519055, 0.0317499451, -0.0246462, -0.00670721, 0.0185049847, -0.015034453, -0.0389350317, -0.0202538073, 0.0127501385, -0.00152089971, 0.00972020067, -0.00142854417, -0.0142481606, 0.0114215752, 0.0151429074, 0.00563961454, -0.0215417016, -0.00685294531, 0.00759856729, -0.0112521155, 0.0116113694, -0.03215665, 0.00473808963, 0.000468979357, -0.00211316091, 0.0104658231, -0.00967275258, 5.79869493e-06, 0.00717152888, 0.000788834295, 0.00970664434, -0.00925927144, -0.00639201514, 0.0270050783, 0.0182880778, -0.00114893587, 0.00539559266, -0.00534136593, 0.000991338515, 0.0151293511, -0.00698851282, -0.014356615, 0.00155224965, 0.00159291993, 0.0251071304, 0.00791037269, 0.0108047426, -0.0129331546, -0.00817472953, -0.0014709091, 0.0100591201, -0.0242530536, -0.00147938204, -0.00797815621, 0.00765279448, -0.00996422302, 0.0131839551, -0.00214535813, 0.00814083777, -0.00805271883, -0.0112724509, 0.0242937244, 0.00132178469, 0.0125061162, -0.00245377468, -0.00148700771, 0.0110690994, -0.0258798655, -0.0203622617, -0.00368744018, 0.0132110687, -0.0107234018, -0.0143159451, 0.020877419, 0.0130755007, -0.0134686464, 0.0137736741, -0.0170001835, 0.0123773273, -0.0168510601, -0.0159292, -0.00180982822, 0.00599209033, 0.00209960411, -0.00937450398, -0.0180033855, 0.00139041583, -0.00907625444, 0.00186744449, 0.0109538669, -0.00650724769, 0.00304179941, 0.0172577631, -0.00172340381, 0.000818066066, -0.00449067866, -0.0285505485, 0.0050092251, 0.009916774, -0.00927282777, 0.0049719438, 0.0080120489, -0.0103166988, 0.00520918705, 0.00870344322, 0.0152649181, -0.0136991115, 0.00700884778, -0.00755111873, 0.0135364309, -0.00105064933, -0.0040297485, -0.0135635445, -0.0110419858, -0.00616493914, -0.0145599665, 0.0147090908, 0.022599129, 0.0106556183, 0.00810694601, 0.0196844246, -0.00904236268, -0.0092863841, 0.0108182989, 0.00935416855, -0.0121129705, -0.0066936533, 0.000891357369, -0.00526680332, 0.000745622092, 0.00835096743, 0.0106962882, -0.00799171347, -0.0222873222, 0.00719186431, 0.0165934805, -0.0177593641, 0.00643268554, 0.0132314032, -5.02421153e-06, 0.0034281672, -0.0119231753, 0.0113809053, 0.0120858569, 0.0122417593, 0.0189252459, -0.00388401351, -0.0116045913, -0.0142888315, -0.0262323413, 0.0280625056, -0.0166070387, 0.0109742023, -0.0100252284, -0.00428732717, -0.0028553938, 0.00187083369, -0.000434240152, 0.00925927144, 0.00693767471, 0.01073018, 0.00898813549, 0.0300960205, 0.000737996423, -0.00611749059, 0.000332352589, -0.00133703602, 0.00144633744, 0.0198064353, -0.0156309512, 0.00585652282, 0.0100794556, 0.0110080941, -0.0531967506, -0.0290928185, 0.000410727633, 0.0356271788, -0.00313330744, -0.0117333811, -0.00583957694, -0.00855431892, -0.0294452962, -0.00113453181, -0.00191658782, -0.004619468, 0.0149395559, -0.00622933405, 0.00695462106, -0.0102828071, 0.0123366565, -0.0116655966, 0.00366710522, 0.0286047757, -0.00412125699, -0.00341122109, 0.014763318, -0.00738843717, 0.00652080448, -0.0176237952, 0.00474147871, 0.00418904051, -0.0156173939, 0.00263340166, -0.000971003377, 0.0238056816, 0.0136719979, 0.00596158765, -0.0123231, -0.00538881449, 0.00552099291, -0.00936772488, 0.0173662174, -0.0213112365, 0.00291470462, -0.00383317564, -0.0232227389, -0.0111775538, 0.0198064353, 0.00798493531, 0.0195217431, -0.0174068864, -0.00899491366, -0.00220127986, -0.0153327025, 0.0129128192, -0.0190336984, -0.0165121406, -0.0113402344, 0.00914403889, 0.0150480103, -0.0181253962, 0.00526341423, 0.0150208967, -0.00189625262, -0.0524104573, 0.0144650694, 0.0156309512, 0.000912539777, 0.0356000662, -0.032292217, -0.00241140975, 0.010913196, 0.0209180899, -0.0091101462, -0.0149802258, -0.0135635445, -0.0111165475, 0.00365354843, 0.00631067436, -0.0271135308, -0.00220127986, 0.0273575541, 0.0024656367, 0.0125671215, -0.0159427561, -0.0223008804, -0.00526341423, -0.00406703, 0.0114961378, 0.0262730122, 0.00649369089, 0.00926605, -0.0139227984, 0.00200979062, -0.00417548371, -0.0204436034, 0.0119435107, 0.0123773273, 0.00381622952, -0.00990321767, -0.00446356507, 0.00164629973, 0.0207554083, -0.0246326439, 0.00327734812, 0.00561927957, 0.000602428801, 0.0181525089, -0.00392468367, 0.00451101363, 0.000463471923, 0.0280625056, 0.00155648612, 0.0405889563, -0.00877122767, 0.0227075834, -0.0236701127, -0.0138685713, 0.0199691169, 0.00187930663, 0.0106962882, -0.00317906146, 0.00603615, -0.0118079428, 0.00706307497, -0.0239005778, 0.0137804523, 0.0091101462, 0.000404796563, 0.0097405361, 0.0202538073, 0.00367388362, 0.0112588936, -0.0040941434, -0.00270965858, 0.00877800584, -0.0115571432, -0.0202538073, -0.0205791704, -0.00957107637, 0.0101336828, 0.00376200257, 0.00523291156, 0.0042297109, -0.00765279448, 0.00969986618, -0.0203622617, -0.00252664229, 0.0110216504, 0.0146413073, 0.00789003726, 0.0150886802, -0.00343833468, -0.0399382338, 0.00725286966, 0.017528899, -0.00019286618, -0.000666823413, -0.0276964717, 0.0139770256, -0.012133305, -0.00334174279, -0.0115571432, 0.013949912, -0.00282828021, 0.0122485375, -0.00222161505, -0.00229278812, 0.0210265443, -0.0104319314, -0.0173255466, 0.0112046665, 0.00543287396, 0.0156309512, -0.00445000827, 0.0336750075, -0.0122824302, -0.00110063993, -0.00454490585, -0.00315364264, -0.00095321011, 0.0169188436, -0.000796883658, 0.00499905739, 0.00127603055, -8.95487901e-05, -0.00561589, 0.0228567068, 0.00675804773, 0.00843230821, 0.00449406775, 0.00433138665, -0.00076002616, 0.000689276785, 0.0237378962, -0.007381659, 0.00459574349, -0.00393485138, 0.00753756193, 0.00470080832, 0.018884575, -0.00191319862, 0.0115503641, -0.0272491, -0.0112792291, 0.0045415163, 0.000798154564, 0.00854754075, 0.00635473384, -0.0108928615, 0.0156851783, 0.00930671953, -0.0117943864, -0.000987949315, -0.0282794125, -0.00634795567, 0.0329700559, -0.016525697, -0.00772735663, 0.0162816755, 0.0130280517, 0.00124552788, -0.00183016341, 0.0168917309, 0.0213925764, 0.0142481606, 0.00654791808, 0.0118892835, 0.026313683, -0.00884578936, -0.0173391029, -0.0336478911, -0.0204029325, -0.0239412487, -0.0311534479, 0.022192426, -0.00807305425, 0.0223686639, 0.00936094671, -0.010052342, 0.003860289, -0.00526680332, 0.0100455638, 0.0039890781, 0.0243072808, -0.0151157938, -0.00965241715, -0.000502023962, -0.00152598345, 0.00717152888, 0.000407973916, 0.0251071304, 0.0276286881, -0.0172306485, 0.002309734, -0.00895424373, 0.0170137417, -0.00245546922, 0.00181491207, -0.0144243985, 0.00393485138, -0.0027554126, 0.0251884703, -0.00217925012, -0.00226736907, -0.0317228325, -0.0257849693, 0.00554132788, -0.0218806192, 0.00641912874, -0.0144108422, 0.01408548, -0.00828318391, -0.00871022232, -0.00951007102, -0.0167154931, -0.00214366359, 0.0264492501, -0.00908303261, -0.00120401022, 0.000716814, -0.00803916249, -0.001760685, -0.00999133661, 0.00189286342, -0.00662248, 0.0215417016, -0.0228024796, 0.0156173939, 0.0289301388, 0.00725286966, 0.000942195242, -0.0262594558, 0.00585313374, -0.00571756577, 0.00268085045, -0.00337224547, -0.0097405361, 0.0084865354, -0.0273168832, 0.0220026299, -0.00280286139, -0.0292012729, -0.00369421858, 0.023046501, 0.00921182241, 0.0145192966, -0.0204978306, 0.00290453713, -0.00631067436, -0.0016708714, -0.0194132887, 0.00399585674, -0.0302044749, 0.0224906746, -0.00736132404, 0.0186134391, -0.00172255654, -0.0280625056, -0.00899491366, 0.0133940848, 0.00226398, -0.0128992628, -0.0108725261, -0.00689700479, -0.00542609533, -0.0042331, 0.0107708508, -0.00226398, -0.0226533562, 0.0122553166, -0.0196844246, 0.00161494967, -0.0191692673, -0.00190472556, -0.0059005823, 0.0153733725, -0.0246733129, -0.00936094671, 0.0174611136, -0.0225449018, -0.000919318176, 0.00953040645, -0.0119028408, 0.00448728958, -0.0331327356, 0.00363999163, 0.00176576874, 0.0219348464, -0.00270457473, 0.00514479261, 0.026218785, 0.000658350415, 0.00442289468, -0.0260561034, 0.00130653335, 0.0170408543, 0.0223415494, -0.00986932591, -0.00527019287, -0.00675804773, -0.007720578, 0.0126755759, 0.0350306816, -0.00102353585, -0.0101811308, 0.00556844147, 0.0218941774, -0.0218670629, 0.0314517, 0.00145650504, -0.0124722244, 0.008784784, 0.023005832, -0.0184914283, -0.0253782663, 0.00106081693, 0.00533797638, 0.0175153408, 0.00794426445, 0.00474147871, 0.00230465014, 0.00854754075, 0.0383656472, -0.0212705657, -0.0132517386, -0.0233989786, -0.0127298031, 0.00515834941, 0.00629711756, 0.0153869288, -0.000268593431, 0.00909659, -0.0242530536, -0.00569723081, -0.0150208967, -0.0177864768, -0.0140583664, -0.016525697, -0.00680888584, 0.0252155848, -0.00685294531, 0.0185321, 0.00337055093, -0.0276422463, -0.00304857781, 0.0189659148, 0.00982865505, 0.0100252284, -0.00959819, -0.0333767571, -0.0130144954, -0.0178949311, -0.00764601585, 0.000448220555, 0.0201724675, 0.00241988269, 0.0174068864, 0.000263509632, -0.00923215784, 0.0217450522, -0.0068292208, -0.0106962882, 0.000729947118, 0.0234803185, -0.0089406874, 0.0112792291, -0.0326446928, -0.0213654637, -0.0264899209, -0.00897457916, 0.014356615, 0.0115842568, 0.0063038962, -0.0050363387, 0.0196030829, -0.0179898273, -0.00389418099, -0.0040161917, -0.0257171839, -9.48973611e-05, -0.00859499, -0.00560572278, 0.0128924847, -0.0121739758, 0.0030248533, 0.0150480103, -0.0155496104, -0.012770473, -0.018749008, -0.00345019693, -0.00992355216, -0.00514479261, -0.00582602, -0.0112860072, -0.00845942181, 0.0140176956, -0.00433138665, -0.0142888315, 0.00564300362, -0.0129195973, -0.00195556344, -0.00706985313, -0.00169544306, -0.0345697515, -0.0132856304, 0.00921182241, -0.0078832591, 0.0147226481, 0.0207011811, -0.00776124839, -0.0198199917, -0.0133805275, 0.00135737122, 0.00453473814, -0.0176237952, 0.0161461085, -0.00634795567, 0.016213892, 0.00112860079, -0.0239005778, 0.00146413071, 0.00978798512, -0.00342477788, 0.00921860058, -0.00488382485, -0.0151564637, -0.0115774777, 0.0221246425, 0.0174746718, -0.0207282957, 0.000671483576, -0.00903558452, 0.00468047336, -0.0102218017, -0.00892713, -0.0026130667, -0.00635134475, -0.0286861155, 0.0107369581, -0.00704951817, -0.018477872, 0.0273982231, -0.00130992255, 0.00199792837, -0.00447373278, 0.0168375038, 0.0101201255, -0.00716475071, -0.0278184842, 0.0152242482, 0.00692072883, 0.00136499689, 0.0255273897, 0.00215213653, 0.0207011811, -0.00675804773, -0.00532103051, -0.0248495508, 0.0141261499, -0.000559216598, 0.00482281949, -0.00942873, -0.0225313455, -0.0151293511, 0.00174543355, 0.0139092421, 0.0153598152, 0.00533119822, -0.00791715086, 0.0210401, 0.0125671215, 0.0201860238, -0.0157665182, 0.026720386, 0.0128247, 0.0095914118, -0.000646488275, -0.0037315, -0.0195353, 0.00303332624, -0.00875089224, 0.007463, 0.00836452469, 0.00342308334, 0.0257849693, -0.0105878338, 0.0232498534, 0.00270288019, 0.00322989933, 0.00793070812, 0.00452118134, 0.0290385932, 0.002728299, -0.00144972664, -0.0188439041, -0.00648352318, 0.00927960593, 0.00680888584, 0.0164036863, 0.0206605103, -0.00696139922, -0.01186217, 0.0132314032, 0.00204198784, 0.0254189353, -0.000943042513, 0.0194539595, -0.0189388022, -0.0115435859, -0.0130280517, -0.0313161276, 0.0248902217, 0.0321837626, -0.0167426057, 0.00565656042, -0.00464997068, -0.0133940848, -0.0128247, 0.0114758024, -0.0286590029, -0.0132924085, -0.016078325, -0.00791715086, -0.00680549629, -0.00139973604, -0.0168510601]
02 Aug, 2018
unordered_multiset end() function in C++ STL 02 Aug, 2018 The unordered_multiset::end() is a built-in function in C++ STL which returns an iterator pointing to the position immediately after the last element in the container or to the position immediately after the last element in one of its bucket. Syntax: unordered_multiset_name.end(n) Parameters: The function accepts one parameter. If a parameter is passed, it returns an iterator pointing to the position immediately after the last element in the bucket. If no parameter is passed, then it returns an iterator pointing to the position immediately after the last element in the unordered_multiset container. Return Value: It returns an iterator. Below programs illustrates the above function: Program 1: // C++ program to illustrate the // unordered_multiset::end() function #include <bits/stdc++.h> using namespace std; int main() { // declaration unordered_multiset<int> sample; // inserts element sample.insert(10); sample.insert(11); sample.insert(15); sample.insert(13); sample.insert(14); cout << "\nElements: "; // prints all element till the last for (auto it = sample.begin(); it != sample.end(); it++) cout << *it << " "; return 0; } Output: Elements: 14 13 15 10 11 Program 2: // C++ program to illustrate the // unordered_multiset::end() function #include <bits/stdc++.h> using namespace std; int main() { // declaration unordered_multiset<char> sample; // inserts element sample.insert('a'); sample.insert('b'); sample.insert('c'); sample.insert('x'); sample.insert('z'); cout << "\nElements: "; // prints all element for (auto it = sample.begin(); it != sample.end(); it++) cout << *it << " "; return 0; } Output: Elements: z x c a b Program 3: // C++ program to illustrate the // unordered_multiset::end() function #include <bits/stdc++.h> using namespace std; int main() { // declaration unordered_multiset<char> sample; // inserts element sample.insert('a'); sample.insert('b'); sample.insert('c'); sample.insert('x'); sample.insert('z'); cout << "\nElements in first bucket: "; // prints all element for (auto it = sample.begin(1); it != sample.end(1); it++) cout << *it << " "; return 0; } Output: Elements in first bucket: x c Learn C++ Online – Master everything from basics to advanced concepts. Apply your knowledge with practical exercises and boost your skills. Take the Three 90 Challenge: finish 90% in 90 days for a 90% refund. Start now and level up your C++ programming!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum/Algorithm for Dynamic Time out timer Calculation/Difference between Round trip time (RTT) and Time to live (TTL)/Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms/Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm/Round Robin Scheduling Algorithm with Different Arrival Time/Selfish Round Robin CPU Scheduling/Find the order of execution of given N processes in Round Robin Scheduling/Calculate server loads using Round Robin Scheduling/set::lower_bound() Function in C++ STL/Implementation of lower_bound() and upper_bound() in List of Pairs in C++/Difference between std::set::lower_bound and std::lower_bound in C++/Difference between std::set vs std::vector in C++ STL/std::minmax() and std::minmax_element() in C++ STL/std::rotate vs std::rotate_copy in C++ STL/std::bitset::to_ullong and std::bitset::to_ulong in C++ STL/std::upper_bound and std::lower_bound for Vector in C++ STL/std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++/std::string::append vs std::string::push_back() vs Operator += in C++/Vector push_back() in C++ STL/vector :: cbegin() and vector :: cend() in C++ STL/unordered_multiset cend() function in C++ STL/unordered_multiset bucket() function in C++ STL/unordered_multiset emplace_hint() function in C++ STL/unordered_multiset end() function in C++ STL
https://www.geeksforgeeks.org/unordered_multiset-end-function-in-c-stl?ref=asr10
PHP
unordered_multiset end() function in C++ STL
What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, jQWidgets jqxTreeMap width Property, Round Robin Scheduling Algorithm with Different Arrival Time, Difference between Flow and TypeScript, jQWidgets jqxTree destroy() Method, jQWidgets jqxTree collapseAll() Method, Find the order of execution of given N processes in Round Robin Scheduling, jQWidgets jqxScrollView buttonsOffset Property, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Vector push_back() in C++ STL, jQWidgets jqxListBox enableHover Property, Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm, std::rotate vs std::rotate_copy in C++ STL, Selfish Round Robin CPU Scheduling, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxSlider buttonsPosition Property, std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++, std::upper_bound and std::lower_bound for Vector in C++ STL, Difference between Round trip time (RTT) and Time to live (TTL), jQWidgets jqxSlider rtl Property, Difference between std::set::lower_bound and std::lower_bound in C++, jQWidgets jqxTooltip opacity Property, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, jQWidgets jqxToolBar height Property, PHP, std::minmax() and std::minmax_element() in C++ STL, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, Node.js date-and-time Date.transform() Method, TypeScript Optional Parameters, jQWidgets jqxToolBar theme Property, Difference between std::set vs std::vector in C++ STL, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, Steps to Diagnose and Resolve a Slow Network, How to use Optional Chaining with Arrays and Functions in TypeScript ?, Calculate server loads using Round Robin Scheduling, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, jQWidgets jqxScrollView showButtons Property, Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms, jQWidgets jqxScrollView disabled Property, jQWidgets jqxSplitter destroy() Method, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, set::lower_bound() Function in C++ STL, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, jQWidgets jqxTree collapseItem() Method, std::string::append vs std::string::push_back() vs Operator += in C++, unordered_multiset cend() function in C++ STL, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), jQWidgets jqxSortable opacity Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, vector :: cbegin() and vector :: cend() in C++ STL, jQWidgets jqxSlider height Property, jQWidgets jqxSwitchButton onLabel Property, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, jQWidgets jqxToolBar tools Property, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTree width Property, Implementation of lower_bound() and upper_bound() in List of Pairs in C++, jQWidgets jqxTree clear() Method, TLS Handshake?, Algorithm for Dynamic Time out timer Calculation, Adhoc TCP, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, jQWidgets jqxTabs position Property, Differences between Wireless Adhoc Network and Wireless Sensor Network, jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, std::bitset::to_ullong and std::bitset::to_ulong in C++ STL, unordered_multiset emplace_hint() function in C++ STL, unordered_multiset bucket() function in C++ STL, Impact of Three-way Handshake and Slow Start Algorithm, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, unordered_multiset end() function in C++ STL, How to Sort an Array Having Optional Properties in TypeScript ?
GeeksforGeeks
[-0.0360187516, -0.00313960621, -0.00884894654, 0.0206145067, 0.0148945469, -0.0438341424, -0.024819525, 0.0250602178, -0.0050049643, -0.00556067796, -0.0157298874, 0.0214356892, -0.0111142769, -0.0102930944, 0.0109868525, -0.0316013582, 0.0138963861, 0.0230780523, 0.00709685544, -0.038992, -0.00357320462, -0.00301572098, -0.02218608, -0.0116098179, -0.0181651171, 0.0176554192, -0.0350276716, 0.00703668222, 0.0144981146, -0.00110080896, -0.000598188781, 0.0128061958, 0.0300722606, 0.00890558, 0.0206994563, 0.0718109757, 0.044655323, 0.0215631127, 0.000839322573, -0.0168625526, 0.00671812054, 0.0181509592, 0.0303271096, 0.00838880148, -0.0351975709, 0.0101019572, 0.0131247574, -0.0487046, -0.0251310095, 0.0239275526, 0.0198641159, 0.00358205358, 0.0214356892, 0.00934448745, 0.0230780523, 0.0066402494, 0.0279768296, 0.013450399, -0.0303554274, -0.0158431549, -0.0167209692, -0.0435509756, 0.0413989127, 0.000391123438, 0.000304182555, -0.00223524403, -0.0106612109, 0.0538015962, 0.0360753872, -0.0342914388, -0.00954978354, 0.0354524218, 0.00430412777, 0.0157723632, -0.0412290134, -0.0176837351, -0.0183916502, 0.000634027, -0.0098895831, 0.0153900879, -0.0333003551, 0.0450517572, 0.000148662308, -0.0324508585, 0.0137548028, 0.00551820314, -0.00792865641, -0.0297324602, 0.0395016968, 0.031884525, -0.0269857477, -0.000761894335, -0.00914627127, -0.00724551734, -0.0246496256, 0.0451933406, 0.0595215559, 0.0181934349, -0.0166077036, 0.0205720309, 0.00803484395, -0.00859409664, 0.00921706297, 0.00751806516, 0.0154750384, 0.0301005766, 0.0421068296, 0.0146255391, 4.759074e-05, -0.00761009427, 0.0439474098, 0.0161121618, -0.00867196731, 0.0425598957, -0.0109797735, -0.0131318374, 0.00676413486, -0.00921706297, 0.0363302343, -0.00239983434, 0.00930201262, 0.0211383644, 0.0255840756, 0.000270556542, -0.0545095131, 0.00886310544, 0.00217861077, 0.0221294463, -0.00615532743, -0.0116239768, 0.00695881154, -0.0217471719, 0.00227594911, -0.0360753872, -0.0122327842, 0.0430412777, 0.0134928739, 0.0156449378, -0.0102081448, -0.0265326817, -0.0488178693, -0.00224763248, -0.00124416186, -0.00945067499, -0.0485063866, -0.0159281045, -0.00312367827, 0.0343480706, 0.00756761944, -0.0164519623, -0.00424395502, 0.0237576514, 0.0287413783, 0.0118646678, 0.00810563564, -0.028571479, 0.0311199762, 0.0113620479, -0.00738356123, -0.0429280102, 0.017004136, 0.00200871099, 0.0148520721, -0.00906132162, -0.012282338, 0.0376328, 0.0282033626, -0.0127637209, -0.0269715898, 0.0411440618, -0.00530936802, 0.0228090454, 0.000109118577, -0.0123956045, 0.00939404219, -0.0198499579, 0.0195809491, 0.0334136225, 0.0198924318, 0.0225541946, 0.00899053, 0.00521026, 0.0329039246, -0.00389353652, 0.00273432443, -0.0154325627, 0.0403511971, -0.00244584889, 0.0472604558, 0.0159281045, -0.00436784, -0.01016567, 0.0421068296, 0.0325358063, 0.0570580065, 0.0263769403, -0.0277219806, 0.0229647867, -0.0229647867, 0.0340932235, 0.000128530955, 0.00758885685, 0.0263910983, 0.0228232034, 0.0358771682, 0.00183173199, -0.0119779343, 0.0140592065, 0.0177686848, -0.0140167316, -0.0348294526, -0.0136061404, 0.0283874217, 0.0372363664, -0.0116098179, 0.0219029132, -0.0681298077, 0.00584030477, 0.00324048428, -0.0428996943, 0.00565978652, -0.0420785099, 0.0173156187, -0.0309783928, -0.02646189, -0.0307518598, 0.0352542028, 0.004874, 0.0164802782, -0.00525627425, 0.0204729233, 0.0313181914, -0.0365850851, -0.00359444204, 0.0233329032, -0.0390769504, -0.047940053, -0.0186181832, 0.00385814067, 0.022667462, 0.0095143877, 0.0357922204, -0.0395866483, 0.00999577064, 0.012289417, 0.0546510965, 0.0134362411, -0.0456747226, -0.0119566964, -0.0101727489, 0.0219170712, 0.0200057, 0.0187456086, -0.00867904723, 0.0166218616, 0.0241399258, -0.0160272121, -0.0346312374, -0.0162962209, -0.0287696961, 0.0241682436, 0.0516495332, -0.0179102682, -0.00281750457, 0.00985418726, 0.0223842952, 0.0346029215, -0.00138663, -0.00737648178, -0.0655813143, 0.0180376936, -0.00398202613, 0.0121761505, -0.0239983443, 0.00837464351, 0.00516424514, -0.017712051, 0.0279060379, 0.0043466026, -0.0166077036, 0.00163086085, -0.0321960077, -0.00233081263, -0.00616240641, 0.0291378126, -0.0118151139, -0.00310244062, -0.0127354041, -0.0213224217, -0.0377460681, -0.0196234249, 0.000939758145, 0.00386875961, -0.0144414809, 0.0290245451, 0.0486762859, -0.0152060296, -0.0292227622, -0.0281892046, -0.0291944444, 0.0153759299, -0.0232054777, -0.010618736, -0.0529237799, -0.0263486244, -0.0316863097, 0.0119425384, -0.00207950245, 0.0262636747, -0.0494691506, 0.000934448792, -0.0568881072, -0.00797821, 0.0150502883, 0.00901884679, -0.0266176313, 0.0376894325, 0.00772336079, -0.0285006873, -0.0076525691, -0.0213365797, -0.0301005766, 0.00624381658, 0.0240266602, 0.0261504073, -0.0172731448, -0.0148095973, 0.0474020392, -0.0374629, -0.0668272451, -0.0107320026, -0.00370593881, -0.0285148453, -0.0104700737, 0.000589339877, -0.0444287919, -0.0149511807, -0.0142503437, 0.0297324602, 0.0438341424, -0.00935864635, -0.00342277251, -0.014413164, 0.0038722991, 0.0208976734, 0.00726321526, 0.00058801251, -0.0196517408, 0.0126362955, 0.0496390499, 0.00115744222, -0.0175987855, -0.00794989336, -0.0234178528, 0.0389636829, 0.00947191287, -0.013464557, -0.0272405967, -0.00954270456, 0.02596635, -0.0135778235, 0.0361037031, 0.00530582853, 0.0118434299, -0.00218038051, -0.0117797181, -0.0225400366, -0.0320261084, 0.0376894325, -0.00770212337, 0.00567748444, -0.0241116099, 0.02881217, -0.00776583562, -0.0329039246, -0.0219029132, 0.0194818415, 0.0294492953, 0.0140733644, -0.0168059189, 0.00632522721, 0.042531576, 0.000803926785, 0.00619780226, 0.0168625526, -0.00703314273, -0.00704376167, 0.0256123915, 0.000882682449, -0.00995329488, -0.015828995, 0.0119071426, -0.00834632665, -0.0103284903, -0.0056951819, 0.00487753935, -0.0185049176, -0.0364718176, -0.059974622, -0.0471188724, 0.0216197465, 0.00517486408, 0.00063668174, -0.0181509592, -0.0289679114, -0.0225825123, -0.00276441104, -0.0180235337, -0.00970552489, 0.0334419385, 0.0052881306, -0.0119425384, 0.00161050831, 0.0023272729, 0.0127991168, 0.0123460507, -0.0198357981, 0.0132734198, -0.00372009724, -0.0179952178, -0.0144627187, -0.0209684633, -0.0102010658, 0.0246496256, 0.0101373531, 0.0307518598, -0.0243806187, -0.00769504393, -0.0337817408, -0.00219099922, 0.00132026291, 0.0104983905, 0.0399547629, 0.032365907, -0.00409883214, -0.0881779864, 0.0117655592, -0.0140238106, -0.0321960077, -0.020529557, 0.0342914388, 0.0218038056, 0.0342348032, -0.0159847382, 0.0222427119, 0.0295625608, -0.0260937735, -0.00615178794, -0.00513946824, 0.0124380793, -0.0296475105, 0.00296970643, 0.0152485054, 0.00956394151, 0.0573411733, -0.0282883123, 0.033498574, -0.0145830642, 0.0596348234, 0.0253009088, -0.004251034, 0.0226957779, -0.00902592577, 0.0271698069, 0.0327623412, 0.0074614319, 0.0274529718, 0.0261220913, -0.00891973823, 0.00163794006, -0.00226710015, -0.0266317893, 0.015347613, 0.00855870079, 0.0523857661, 0.0202463903, -0.0240691341, -0.00575181516, -0.02646189, -0.0148095973, 0.00845251419, -0.0169333443, -0.0342914388, -0.0109089818, -0.0176554192, -0.0127070872, 0.0244797263, -0.027622873, -0.0318278931, -0.00632168772, -0.0101302741, 0.00560669275, -0.0599179864, -0.0253292248, 0.0234461688, 0.0176695772, -0.0343763866, 0.0189863, -0.000490231672, -0.0052881306, 0.038992, -0.00748266932, -0.0408608951, 0.0322526395, 0.0309500769, -0.0352542028, -0.039416749, -0.00279449741, -0.0517061651, -0.00679245172, -0.00316792284, 0.0384823, 0.012983175, 0.0052208784, -0.00390415522, 0.00921706297, 0.0291094948, 0.0380575508, -0.0305536427, -0.00536954077, 0.0418236628, 0.00266530272, 0.00395017, 0.0631460845, 0.00182465278, 0.0455331393, -0.0209259894, 0.00507221604, -0.0022317043, -0.0403228812, 0.000309049472, 0.00397494668, -0.0241965596, 0.00993205793, -0.0187880844, -0.00998161174, -0.00811271463, 0.0161263198, 0.00122292445, 0.00368824089, -0.0185615513, -0.00160165934, 0.00101408933, 0.02596635, -0.0359054878, 0.00688802032, 0.0104488367, 0.0047501144, -0.020770248, -0.0202747062, 0.0126362955, 0.00885602552, -0.0117867971, -0.0150361303, -0.0140025737, 0.0216197465, -0.0292227622, -0.0055748364, 0.0175987855, -0.011800955, 0.0133512905, 0.0227948874, 0.0366700366, -0.00313429697, 0.0118859056, -0.00309182191, 0.00648096856, 0.00876399688, -0.0311482921, 0.0149087058, 0.020303024, -0.0111213559, 0.0292510781, -0.000538900844, 0.00866488833, 0.0304120593, 0.037094783, 0.00324048428, -0.00676059537, -0.0294776112, 0.0286139548, -0.01394594, 0.00178040809, -0.0336684734, -0.00748266932, 0.00347763603, -0.0389636829, -0.0033873769, -0.0253717, 0.000424085767, 0.0298457276, 0.00691633672, 0.00818350632, -0.0046970211, 0.00493417261, -0.0140450485, -0.00467932317, -0.0242815092, -0.0307235438, 0.0119496174, 0.0117018474, -0.00506867655, 0.00361037022, -0.0513946824, -0.0130114909, -0.00316969282, 0.0464392714, 0.00459083356, 0.0147671225, -0.00614470849, -0.0355373695, 0.0249327924, 0.0414555445, 0.00954270456, 0.00712163234, 0.00792865641, -0.00231665419, 0.025272591, -0.0171740353, 0.00479258969, -0.0323375911, -0.0175987855, -0.0171598773, 0.0254708081, 0.00535184285, 0.0355090536, -0.0144202439, -0.00228479807, -0.0126929292, -0.019609265, -0.0018830559, -0.0292227622, 0.00889142137, -0.0182217509, 0.0106824487, 0.0132663408, -0.0180235337, 0.0199207496, -0.0176554192, 0.0217471719, 0.00693757413, 0.0252867509, 0.0158148371, 0.0428430587, -0.00591463596, 0.0108381901, 0.0202180743, 0.0613904521, 0.0162254293, -0.000320331863, -0.0255274419, 0.0138397524, 0.0181226432, -0.00109284488, -0.0158573128, -0.0360470675, -0.00800652709, 0.00984710827, 0.000778707326, -0.00121053588, -0.00857286, -0.0493842028, 0.00149016257, 0.00957102049, 0.00592171494, -0.0220020209, -0.0391902141, 0.00176978938, -0.00326526142, 0.00873568, -0.0300439447, -0.00643849373, 0.0138893072, 0.0130468868, -0.0135565866, -0.0091887461, -0.0148945469, 0.0215631127, -0.00921706297, -0.00210604933, 0.00942235813, -0.0328189731, 0.00323517481, -0.0190146174, -0.0175421517, -0.00128840667, 0.0115248682, 0.00241576252, 0.0296475105, -0.0357922204, -0.00786494371, -0.021025097, 0.0402662456, 0.0284015797, 0.0052633537, -0.00820474327, 0.0184624419, -0.00267061219, 0.00564562809, -0.00652344339, 0.0252442751, -0.00168749411, -0.0198641159, -0.0253433827, 0.0293077119, 0.0212941058, -0.00154502608, 0.00627213344, 0.0025856623, 0.00937280431, 0.00364930555, -0.00964181218, -0.0224550869, 0.0133442115, -0.00014445906, -0.000417449075, 0.00208658166, -0.0231205281, 0.00728445314, -0.061616987, -0.0127141662, -0.000774282846, -0.0152343465, -0.000447756698, 0.0253575426, -0.0204870813, -0.0246071517, -0.0155175133, 0.0147104887, -0.00574119668, -0.0126292165, 0.0034121538, 0.0104275988, 0.009202905, -0.0376611166, 0.0187456086, 0.0236727018, -0.0435226597, -0.0277644545, 0.00747559033, -0.00533414492, 0.0130893616, -0.00267946115, -0.00261220918, 0.00665440783, -0.008742759, 0.00151316985, 0.00694111362, -0.0317712575, 0.029052861, 0.0138822272, 0.0314597748, 0.0191561989, -0.011107198, 0.00719596352, -0.029052861, 0.0374629, 0.01016567, 0.00765964808, -0.0129053043, 0.0194535237, 0.00583322579, -0.0124451583, 0.0178536344, -0.024564676, 0.0119354594, -0.0095143877, 0.0119000636, 0.0173580945, 0.0220444966, -0.00195030787, -0.0391052663, 0.0205153972, 0.00691279722, 0.0149087058, -0.0198216401, -0.011319573, 0.00779415248, -0.00149724178, 0.0132875787, -0.0468923375, 0.0373496339, 0.0157723632, 0.00775875663, -0.00627921242, 0.00191314227, -0.000496868335, 0.00690925773, 0.0298457276, -0.0250743758, -0.0158856288, -0.00201756, 0.0413422808, 0.0237293355, -0.00711455336, -0.0348011367, -0.0125938207, -0.029760778, -0.0406909958, -0.0274671298, 0.021010939, 0.00202286919, -0.0172023531, 0.00761717325, -0.0106116571, -0.0333569907, 0.0104417568, 0.0126858503, 0.0129123833, 0.0301855262, -0.00138043566, 0.00714286976, -0.0098895831, 0.0301572103, 0.00718534458, 0.0143282143, 0.0114965513, 0.00464392733, -0.0246213097, -0.00918166712, 0.0522725, -0.0124593172, 0.00799944811, -0.0112912562, -0.0626363829, 0.0145972222, 0.0358771682, 0.0103709651, 0.0113054141, -0.0136273783, -0.0249044765, 0.0178677924, -0.0261079315, 0.0409741625, -0.0220303386, 0.0210675728, 0.00848083, -0.0089480551, -0.01226818, 0.0597480871, 0.00803484395, -0.00591817545, -0.0201472826, -0.0159281045, -0.0145547474, -0.0155316712, -0.02881217, 0.0130114909, -0.0212233141, -0.00525981374, -0.00612701057, 0.0217471719, -0.00961349532, 0.0068703224, 0.00854454283, 0.0216905382, -0.033045508, -0.0135919824, 0.0146680139, 0.0407759473, -0.000790210965, -0.00161670253, -0.00292546186, 0.0121336756, 0.0275096055, 0.0421917774, 0.00369178061, -0.0242107175, -0.00608099625, -0.0343763866, 0.0115531851, 0.00222639507, -0.0299589932, -0.000198548238, 0.00870028418, -0.00347763603, -0.0165369119, 0.0106612109, 0.0139813358, -0.0243381429, 0.0086365724, -0.00277679949, -0.0260088239, -0.0619567856, -0.0189296659, 0.00530228904, 0.00979755353, -0.00879231375, -0.0275237635, -0.0216480624, 0.015588305, -0.00345108914, -0.0138255944, 0.00691633672, 0.00426873192, 0.0137052489, 0.015347613, -0.0112770973, 0.0084454352, -0.0248761587, 0.00799236912, -0.0156449378, 0.00216268259, -0.00846667215, 0.0153900879, 0.00424395502, 0.0372363664, 0.0112275435, 0.0107178446, 0.0158714708, 0.0201331228, -0.0263203066, -0.0378027, -0.0481665879, -0.00622965861, -0.017258985, -0.0181651171, -0.0146821728, 0.0230638944, -0.0170324519, 0.0208976734, 0.0106682898, -0.00882771, -0.00334844133, 0.014880389, -0.0173864104, 0.00204764633, 0.00325110299, -0.0278352462, 0.00565270707, -0.0238284431, 0.00603498146, 0.00587570062, 0.00684908498, -0.00228656782, -0.00703314273, -0.0123956045, -0.0112204645, -0.0467224382, 0.00402804045, 0.00443155272, 0.0164519623, 0.00980463251, 0.0263061486, -0.0232337937, -0.0173297767, -0.0448818579, 0.00992497895, -0.00449526496, 0.00288121705, -0.0212941058, 0.0134079242, -0.0174996778, -0.0153051382, -0.0230922122, -0.032365907, -0.019382732, -0.012749562, -0.0185049176, 0.0127424831, 0.0102010658, -0.00470763957, 0.00358559331, -0.00891973823, 0.0354524218, 0.000860560045, 0.0119637763, -0.0166926533, -0.0358205363, 0.00467224373, 0.0110718021, -0.00433598366, 0.0316013582, 0.0388504155, 0.0114540765, 0.028104255, -0.0269999057, -0.0159564205, -0.0118717467, 0.0024564676, 0.0308934432, 0.0253150668, 0.0180660095, -0.00510761188, 0.00970552489, 0.030468693, 0.0106045781, -0.017230669, -0.0153334551, 0.01747136, -0.00688802032, -0.00697297, 0.00689863879, -0.00704730116, 0.0239417106, 0.0621833168, 0.0376044847, -0.0301855262, 0.000709243061, -0.0267308988, -0.00383690326, 0.0230497364, -0.0316013582, 0.029987311, 0.0176271014, -0.0147671225, -0.0267592147, 0.0326207578, -0.0167351272, 0.00884186756, 0.0284440536, -0.0481949039, -0.00540139712, 0.00783662684, 0.00638186047, -0.00346170785, -0.0114469975, -0.00539785763, 0.0208410397, 0.00880647171, -0.0180376936, -0.00794989336, -0.0247770511, 0.0301288944, 0.00954978354, 0.0206286646, 0.0320827402, -0.0105550233, -0.000706145947, -0.00360506098, 0.00443155272, -0.0230355784, 0.000808793702, 0.0396432802, -0.00433952361, -0.0166926533, -0.0010848809, -0.02218608, 0.0258813985, -0.00811271463, 0.00580844842, -0.0015184792, -0.0173014607, -0.0019963223, -0.0129406992, 0.00407759473, 0.0119779343, -0.0240125023, 0.00536954077, 0.00583676528, 0.00502266223, 0.0109231398, 0.0020193297, 0.0133442115, 0.0135919824, -0.0112841772, 0.0176271014, -0.0411157459, 0.00981879141, -0.00072163163, -0.00770920236, -0.00664378935, 0.0097550787, -0.0103426492, 0.00751098618, 0.0290811788, 0.018660659, 0.00340861431, 0.0306385923, 0.00467224373, 0.000906132162, -0.0231346861, 0.000930024311, -0.00315022492, 0.00481028762, -0.000606152869, 0.00713579077, 0.00128132745, 0.0416820794, -0.0326490737, 0.00596065028, -0.00679599121, 0.0258247666, 0.0342914388, 0.0175279938, -0.00219453871, 0.00550758466, -0.0112063065, -0.0169758201, -0.010399282, 0.00365992426, 0.00677121384, 0.0242673513, 0.00903300475, 0.00265999348, 0.00656237872, 0.0369532, 0.0460428409, -0.0135353487, 0.00164059468, -0.0277219806, 0.0322243236, 0.0019715454, -0.000517220935, 0.00727029471, 0.0107461605, 0.00581198838, 0.00855162181, 0.0300156269, 0.00366700348, 0.0301572103, 9.15866e-05, 0.00444571069, 0.0178819522, -0.0232337937, -0.0172731448, -0.0129336203, -0.0160272121, -0.0108806649, 0.00570580084, -0.0161971115, 0.022893995, 0.0042758109, 0.0273538642, -0.0360753872, -0.0209543053, 0.00323517481, -0.00333428313, -0.00744727347, 0.0171740353, -0.0134999529, 0.00354488799, 0.0280334633, 0.0311482921, 0.020798564, -0.00221577636, 0.0260229819, 0.0137264859, -0.00454481924, 0.0150078135, 0.00780831045, -0.00744727347, -0.0252442751, -0.00313252723, -0.0179102682, -0.000671192596, 0.00106895273, 0.000494213658, -0.0253575426, 0.0179244261, -0.0218038056, -0.000572526827, -0.0117301634, 0.00568456342, -0.0371514186, -0.0109019028, -0.0136202984, 0.00671104109, -0.00727737369, 0.0195951071, 0.00192376098, 0.0178536344, 0.0118575888, -0.0100594824, -0.0129194623, 0.0186181832, -0.000147224346, -0.0178961102, 0.000257725565, 0.0265893154, 0.000794192951, -0.0284157377, 0.00671104109, 0.00933032949, -0.00688094087, -0.0229789447, 0.00610223366, 0.0208835136, 0.0347161889, -0.0204162896, 0.0166501775, -0.0010034705, 0.0179244261, -0.00889142137, 0.00865780935, -0.00278033898, 0.0108169522, -0.02125163, -0.00780123146, -0.00590047752, 0.00523149734, -0.0183633342, -0.00183881109, 0.00744727347, 0.0250177421, -0.0185615513, 0.00625089603, -0.00196269643, 0.00317323231, 0.015106922, 0.00665440783, 0.0150502883, -0.0378876515, -0.00435722154, -0.0063854, -0.000922060222, 0.0118929846, 0.0120345671, 0.00629337085, 0.0139954938, -0.0128769875, -0.016777603, 0.000215471853, -0.00133707584, -0.0220444966, -0.0239558686, -0.0234744865, -0.00445279, 0.0116947675, 0.0104700737, -0.00132999674, -0.0305536427, 0.0217330139, 0.0155033544, 0.0173439346, 0.00407759473, 0.0254849661, -0.0155458292, -0.00160873856, -0.015588305, -0.0262636747, 0.0102506196, 0.000481382711, -0.0140167316, 0.0447969064, -0.0117797181, 0.00687386189, 0.0218745954, 0.0235311184, -0.00565978652, -0.0277361386, 0.0143423732, -0.0238567609, 0.0181226432, 0.0149087058, 0.0192411505, 0.0105054695, -0.0216197465, -0.0138397524, -0.0103426492, -0.000369222311, 0.00695173256, -0.0194110498, 0.0218745954, 0.0314880908, -0.00120345678, -0.0604276881, -0.00312544801, 0.00400326354, 0.0341498554, 0.00501912273, -0.0112912562, -0.0241116099, 0.0165652279, -0.0234461688, -0.0213507395, 0.00571288, 0.00737648178, -0.0117230844, 0.0172165111, 0.00533414492, 0.0183491763, 0.0140733644, 0.0104842316, 0.0310067087, 0.00532706594, 0.0267308988, -0.00679599121, 0.0120770428, -0.0029272316, 0.0158431549, -0.00473595643, 0.0391902141, 0.00625797501, -0.000809678633, -0.00573057774, 0.0195951071, -0.0071782656, 0.00984002836, -0.0086365724, -0.00528459111, 0.00662609143, 0.029052861, 0.0242673513, -0.0222851876, -0.020770248, 0.0231063701, -0.017258985, 0.0166643374, -0.0155458292, -0.0214215294, 0.014639697, -0.0275237635, 0.00901884679, -0.0143352933, 0.00947191287, 0.00524565578, 0.00683846604, -0.00310775, -0.00110788818, -0.0074614319, -0.0162537452, 0.00786494371, -0.00256619463, 0.0209118314, 0.0154325627, 0.0260513, 0.0272830725, 0.0260371417, -0.00347055681, -0.0174005684, -0.0188588761, 0.032365907, 0.0182925425, 0.00241930201, -0.00928077567, 0.00102382316, -0.0201614406, 0.0165793858, 0.0140096527, 0.0183491763, -0.00275733182, 0.00721366145, 0.0198074821, -0.0241682436, -0.015828995, -0.0167351272, -0.0169333443, -0.00615532743, -0.00706145959, -0.0204021316, 0.0219878629, -0.000209056365, -0.00227240962, -0.01369817, 0.00290776393, -0.00780831045, 0.00409529265, -0.0276653469, 0.0102576986, -0.0232762694, 0.00379796792, 0.0194818415, 0.0238284431, -0.0146538559, 0.00554298, -0.0156590957, 0.0131601533, 0.0134787159, 0.0117655592, 0.0241116099, -0.00756761944, -0.0124451583, -0.0102081448, -0.00293785031, -0.0301855262, -0.0104346778, 0.0289395954, 0.0162679031, -0.00409883214, 0.00734816538, -0.00451296289, -0.0239558686, 0.000271220226, 0.00220338767, 0.0088135507, -0.00517132459, -0.00504389964, 0.0463826396, -0.0125584248, 0.012275259, 0.0127424831, -0.00891973823, 0.0195951071, 0.0202747062, 0.0234036949, -0.0130610457, 0.00235735951, -0.00697297, -0.0129336203, -0.00119106821, 0.0180235337, 0.0109302187, 0.0048173666, -0.0319977924, 0.0364435, 0.00261928816, -0.0068703224, 0.0276511889, 0.0153617719, -0.00365638477, 0.000742426608, -0.00200163177, 0.00357320462, 0.00451296289, -0.00610223366, -0.0185332336, -0.0120133301, -0.0143777682, -0.0296475105, 0.0126504544, 0.0171598773, -0.0277786143, 0.0141158402, -0.0061128526, 0.00261928816, 0.0229364689, 0.00514654722, -0.0398131795, -0.016763445, 0.0137689607, -0.00830385182, -0.0217896458, -0.00445632963, 0.0225966703, -0.0280051474, 0.00334667158, 0.0271414891, -0.00551112415, -0.00288652652, -0.00164236454, 0.00605267938, 0.0214498471, 0.0117655592, -0.00371301803, 0.0136840111, 0.00941527914, -0.00299271382, 0.0297890939, -0.0113974437, -0.00223347405, 0.01369109, 0.0143565312, 0.00431474624, 0.0152768213, 0.00253610802, -0.00175297633, -0.0294209775, 0.0116452137, 0.0142857395, -0.00618364383, -0.0282741543, -0.0264052562, 0.00706853857, 0.045334924, 0.0192694664, 0.0367549844, -0.0233187452, -0.0193968918, 0.0277927723, 0.00613762951, -0.0129406992, -0.00608099625, 0.0142432647, -0.000517663371, 0.0393317975, 0.0327057056, 0.0131743122, -0.000604825502, -0.0258389246, 0.0143423732, 0.018887192, -0.0145405894, -0.000278078136, -0.0262778327, -0.00861533452, -0.00685262447, -0.00454127928, -0.0134857949, -0.0286139548, 0.00274671311, -0.00229187729, 0.021039255, -0.0043430631, 0.0137335649, -0.00202286919, 0.00501912273, -0.00411299057, 0.0273113884, 0.0294209775, -0.00264937454, 0.00310598034, -0.00489169778, 0.00289006601, -0.0120770428, -0.0131743122, 0.00683846604, 0.00719242403, 0.0178961102, 0.00238921563, 0.015347613, 0.000543325325, 0.0182500668, 0.0347445048, -0.0191703588, 0.043692559, -0.0225541946, 0.0228515193, 0.0217471719, -0.0326207578, -0.00647388957, 0.0163245369, 0.0252301171, -0.0060456004, 0.0215064809, 0.00532352645, -0.00450942339, -0.00659069559, -0.0191561989, -0.000707473315, -0.00399972405, 0.0161687955, -0.0496390499, 0.0056951819, 0.0103143323, -0.00408113422, -0.00549696572, 0.00216268259, -0.0169475023, -0.00667564524, -0.00721366145, 0.020557873, 0.0324508585, -0.0101231951, -0.0079357354, 0.00273786415, 0.0089338962, 0.00895513408, -0.0181651171, 0.0137689607, -0.0063854, -0.00993205793, 0.00476781232, 0.020529557, 0.00527751166, 0.019496, -0.00551466364, -0.00657299766, -0.0124947131, -0.000499080576, -0.00517840357, -0.0213224217, -0.00555005949, 0.00563854864, 0.0171032436, 0.0489877686, -0.00833216868, 0.0181934349, -0.0250743758, 0.013938861, 0.0255699158, 0.033498574, 0.0107390815, 0.0193119422, 0.00974092074, -0.00748266932, 0.0102010658, -0.0160130542, 0.011560264, -0.00224763248, 0.00232196366, 0.0129406992, 0.0334702544, 0.00695173256, -0.00164590403, -0.00455897721, -0.0187314507, 0.00675705587, 0.0236160681, 0.00370593881, 0.0335552059, -0.0177403688, 0.0104700737, -0.0180376936, 0.0142432647, 6.88005603e-05, 0.00287767756, -0.00745435292, 0.0116098179, 0.00375903258, 0.00918166712, -0.00105213979, 0.0106966067, 0.00674289744, -0.00180872472, 0.00103267212, -0.0115248682, -0.0334419385, -0.00241222279, -0.0131035205, 0.0114894724, 0.0235735942, 0.00139636383, 0.00765964808, -0.000336038764, 0.00587570062, 0.000766318757, -0.00290245446, -0.00741187762, 0.00369532, 0.00274317339, 0.0236727018, -0.000707473315, -0.0146255391, -0.019496, 0.00451650238, 0.00760301482, 0.0134928739, -0.00586508168, 0.00688448036, 0.0285148453, -0.00980463251, 0.0227665696, 0.00973384175, -0.00219807844, -0.0127637209, -0.025046058, -0.000104196348, 0.00156449375, -0.00802068505, 0.0104346778, 0.00485630194, 0.00773044, -0.00576951308, 0.00627921242, 0.00081012107, 0.00501558278, 0.00625443552, 0.0282599963, -0.00480674766, 0.0244089346, -0.0045342003, -0.000930024311, -0.00545449089, 0.00677829329, -0.00722782, -0.0220869705, 0.0152201885, -0.00199278281, 0.00256796437, 0.00261751842, 0.00196977565, 0.0169050284, 0.00560669275, 0.0197083745, 0.00217507104, 0.0157157294, 0.00900468789, 0.0108381901, -0.0111284358, 0.0116027389, 0.013457478, 0.0205720309, 0.0014229106, 0.0212091561, -0.00392185338, -0.00750390673, 0.0174005684, -0.0366983525, 0.020784406, -0.0131672323, 0.0154750384, -0.00188128604, 0.011808034, -0.0173439346, -0.0188164, -0.0104842316, 0.00549696572, -0.00456959615, 0.00737648178, -0.00853746384, -0.0348577723, -0.0152343465, 0.0211808383, -0.00959225837, 0.0171598773, 0.00410237163, -0.000496868335, 0.00173527841, -0.0042793504, -0.00467578322, -0.0242673513, -0.026702581, -0.0160696879, -0.000180297284, -0.00248478423, 0.00325641246, -0.00898345094, 0.0136273783, 0.0147954393, 0.0099462159, 0.00662255194, -0.0211525224, -0.00535538234, 0.00359798176, -0.00877107587, -0.0076525691, -0.00269538909, 0.00798528921, -0.00229718653, -0.0083675636, -0.00344401016, 0.00285997964, 0.00288652652, -0.00819766428, -0.0239700265, -0.0252442751, -0.0010848809, 0.000618983817, -0.0105337864, 0.0110788811, -0.000559253443, -0.00770920236, 0.0128061958, -0.00227594911, -0.0175138358, -0.0116735306, -0.0213365797, 0.0134999529, -0.0163386948, 0.012997333, -0.00301218149, 0.00761009427, -0.00913919229, -0.0058544632, -0.00132822688, 0.00480674766, 0.0112275435, -0.00262990687, -0.00833924767, -0.00777999405, -0.0171457194, 0.010632894, 0.00123088853, -0.000660573889, -0.0149370218, 0.0108381901, -0.00186712772, 0.0256548654, -0.022412613, -0.0162395872, -0.0133371325, -0.0272689145, 0.035594, -0.0108027942, -0.0217046961, 0.0113832848, 0.0128132747, 0.00162289687, 0.00506159756, 0.00551820314, -0.00794281438, -0.0116664516, 0.00750390673, 0.0284723714, -0.00807731878, 0.0142291067, 0.00676059537, -0.005787211, -0.0150361303, 0.0173722524, 0.0134716369, 0.0210817307, 0.0340932235, 0.00756761944, 0.018632343, -0.00268477038, 0.00507221604, 0.00274494337, -0.00652698288, 0.00205472554, 0.00104329083, -0.0210958887, -0.0174005684, -0.0120204091, -0.00479258969, -0.00833924767, -0.00407759473, 0.0022653304, 0.0136556942, 0.0133583704, 0.0228373613, 0.000694642309, 0.00533414492, -0.00364576606, 0.00736232381, -0.00035351541, 0.0234886445, 0.00064243353, 0.0216055885, -0.0166077036, -0.0287838541, -0.0152485054, 0.017230669, 0.00671458058, -0.00684554502, -0.00973384175, -0.0195809491, 0.0215489548, -0.0102364616, -0.014186631, -0.01251595, -0.0106470529, 0.0170466118, 0.0054509514, 0.0237576514, 0.000770743238, 0.00459083356, -0.00704376167, 0.00631460827, 0.00883478858, 0.00538723869, 0.000638451485, -0.00209720037, -0.0461561047, 0.00760301482, -0.00712517183, -0.00300333253, 0.00650928542, 0.00851622596, -0.0037661118, -8.24058134e-06, 0.0106045781, -0.00436076103, -0.00756054, -0.0135565866, 0.0088985, 0.0124593172, -0.0166360196, -0.0122327842, 0.0031183688, -0.00918166712, -0.0208410397, 0.00227063964, -0.00209366088, 0.00133530609, 0.0145122726, 0.0183208585, 0.00563854864, 0.00394663028, -0.0135990614, 0.00713933026, 0.0165652279, -0.0210534148, 0.0130256498, 0.0267592147, -0.0163386948, -0.00570934033, -0.00479258969, -0.00686678244, 0.000570314587, 0.00825429708, 0.0160130542, -0.00168306963, 0.00923122093, -0.00616240641, -0.0219878629, 0.0149653386, 0.000491116545, 0.0209118314, 0.0128345126, -0.00800652709, 0.0270565394, -0.0175421517, -0.0201331228, 5.91773314e-05, 0.00980463251, 0.00211312855, 0.00922414195, -0.0168483946, 0.011100119, 0.00505097862, -0.00236974796, -0.00382274506, -0.00618010433, 0.0221011285, -0.00525273476, -0.00537662, 0.0243947767, -0.00379442843, 0.0211525224, 0.0204021316, -0.00567394448, -0.0129760951, 0.0298457276, -0.00756761944, 0.00956394151, 0.0198357981, -0.0203171819, 0.0119142216, -0.0160413701, 0.00611639209, 0.0246779434, -0.00252725929, -0.000724286307, -0.00914627127, 0.00912503339, -0.00549696572, 0.00201402023, -0.000690660265, 0.0122398632, 0.0146113811, -0.0111992266, 0.00916750915, 0.000749063329, 0.00483506452, 0.00449172547, -0.0232337937, 0.0255132839, 0.00646327063, 0.00663671, 0.0119283805, -0.00553236157, -0.0144344019, 0.000449084037, -0.0126858503, -0.000217905312, 4.69547231e-05, -0.025980508, -0.00404573837, 0.00527397217, -0.0115248682, -0.00686324295, 0.0188164, 0.00513238925, -0.0123460507, -0.00521733891, 0.0110080894, 0.011319573, 0.0163386948, -0.0191845167, 0.00552528212, 0.0336967893, -0.0152343465, 0.0171598773, -0.019496, -0.00899760891, 0.00868612621, 0.0155458292, -0.0300439447, 0.00996037479, 0.0166501775, 0.026674265, -0.0029272316, 0.00416962383, -0.00352719, -0.00245292811, -0.00573411724, 0.0119000636, -0.015588305, 0.00365638477, 0.00285997964, -0.0119283805, 0.0077445982, 0.0107461605, -0.0123389717, 0.0232621115, 0.00420501968, -0.00778707303, 0.0277502965, -0.00643849373, -0.00428289035, 0.0259238742, -0.0156024629, -0.0019414589, -0.000348869711, 0.00130344986, 0.00978339557, 0.024862, 2.11268598e-05, -0.00496602897, -0.00940112118, 0.00425457349, -0.0109231398, 0.0138326734, 0.0136698531, -0.0141016813, -0.00364576606, 0.0294492953, 0.029760778, -0.00650574546, 0.00512531, 0.00796405226, -0.00153883186, 0.0153192962, -0.0204021316, -0.00864365138, 0.00114416878, -0.0144414809, -0.00642079581, 0.00365638477, 0.00646681, 0.0189155079, -0.0102647785, 0.00471117906, 0.00385106169, 0.0158856288, -0.00828261394, 0.0149653386, 0.0138397524, 0.00247416552, -0.0026918496, -0.00239629485, 0.00800652709, 0.00337852794, 0.0192411505, 0.00418732176, -0.0049377121, 0.0361886509, 0.00552882208, -0.00708977599, 0.0306102764, -0.0278210882, -0.0206852984, 0.0219737049, 0.0143848481, 0.0051677851, -0.00523857633, 0.0115956599, -0.0102576986, 0.0170749277, -0.00301218149, -0.0114540765, 0.010392203, 0.0186889749, 0.018419968, -0.00022940895, -0.0404644646, 0.0126292165, 0.00177775335, -0.0017830627, -0.00261574867, -0.0183350183, 0.00428996934, -0.00588631956, -0.0274812896, -0.00250956137, -0.0135919824, -0.0114965513, 0.0113832848, 0.0122115463, -0.00320154894, -0.0156874135, 0.0270848554, 0.0323092751, 0.0127637209, -0.0265043657, -0.0154750384, -0.0109514566, 0.00414130697, 0.0202322323, 0.0230355784, -0.00464392733, 0.0196658988, 0.0102647785, 0.0172873028, -0.0192128327, -0.0209826231, 0.0100736413, -0.0277927723, -0.0230214205, -0.0145405894, -0.0192836244, 0.0104346778, 0.00807024, 0.0104913116, -0.0155175133, 0.00343870069, -0.00234674057, -0.0135990614, -0.0260937735, -0.0133300535, -0.00495894952, 0.00371655752, 0.00388291781, 0.0109797735, -0.0178111605, -0.016763445, -0.00802068505, -0.0201897565, 0.0232479535, -0.000347321155, 0.00164501916, 0.0147671225, -0.0164094865, -0.0124522382, 0.0252301171, 0.0062331981, 0.0327340253, 0.0119142216, -0.00178571744, 0.013464557, 0.0261220913, -0.0105833402, -0.0187031329, 0.00794989336, -0.00998869073, 0.00662963092, 0.000228966499, -0.00899760891, -0.00195030787, -0.00699774688, -0.0139671778, -0.00341569353, -0.0109656146, 0.0190854091, 0.0233329032, 0.0144414809, -0.00327588012, -0.00253079878, 0.00736232381, -0.0046014525, 0.0205153972, -0.00763133168, -0.000865426962, 0.019127883, 0.00770212337, 0.0291661285, 0.0263203066, -0.0232196357, 0.0112558603, 0.00751098618, 0.00123088853, 0.0114753144, -0.00210958882, 0.00702252425, -0.00166625669, -0.00804192293, -0.0277786143, -0.00396078872, -0.00679245172, -0.00692695566, 0.0310067087, 0.000101209829, -0.0215206388, 0.0161404796, 0.0112346224, -0.0225258786, -0.00465100631, 0.0212374721, 0.0150786052, 0.00971968286, 0.0386238843, 0.0139671778, 0.0291094948, 0.00242638122, 0.0185332336, -0.00673935795, -0.00913919229, -0.0159988962, 0.0277078226, 0.00399972405, -0.0157723632, 0.00195915671, 0.0111638308, -0.030468693, 0.0210675728, -0.0159139466, 0.0128769875, -0.0031997792, 0.00129548577, -0.00397848664, 0.00049731083, 0.00689863879, -0.0195809491, -0.0156024629, 0.00308297295, 0.010632894, -0.00419086125, -0.00519964099, -0.0154325627, -0.00640309788, -0.0230072606, 0.0160838459, -0.0197650082, 0.0148237552, 0.00324048428, -0.00858701766, -0.0154042467, 0.00439615687, -0.0125796627, 0.00782954786, 0.000679599121, 0.00111762201, 0.029760778, 0.020543715, -0.0111779897, -0.00185473927, -0.0105621032, -0.00497310795, 0.0174572021, 0.0197225325, -0.0130964415, -0.0181226432, 0.0217613298, -0.00845251419, 0.0195243154, -0.0120274881, 0.0165935457, 0.0107178446, 0.0021733013, -0.00392893236, -0.00167068117, 0.0083675636, -0.0128274327, -0.0225117207, -0.0105762612, -0.00356966513, -0.0120770428, 0.0137618817, -0.0152768213, 0.002125517, -0.00957102049, -0.00395017, 0.00373425544, 0.0366134, -0.00370947854, 0.00989666209, -0.00277502974, 0.0336967893, 0.0292510781, -0.00713579077, -0.0147671225, -0.00104240596, -0.0158431549, -0.0162112713, -0.0223418213, -0.0107886363, -0.00149635691, 0.0157865211, 0.00535538234, -0.00467578322, 0.0227524117, 0.00301926071, 0.0171881933, 0.0144556398, 0.00421209866, -0.00473241648, 0.0179810598, -0.0173439346, -0.00365638477, 0.019368574, 0.0299023613, -0.0276795048, -0.0164378043, 0.00317146257, -0.00643141428, -0.00508283498, 0.0339233205, 0.0223984532, 0.00121230574, 0.0180235337, 0.024578834, 0.00879231375, 0.00136008312, -0.0358771682, -2.06567602e-05, -0.0040882132, 0.0230638944, 0.00538015971, -0.0152626634, 0.00120345678, -0.0126504544, -0.00199101306, -0.00628275238, 0.00279449741, -0.00205826503, 0.0159281045, 0.00194322865, -0.00638186047, 0.000149436586, 0.000915866, -0.00431474624, -0.0124947131, 0.0150644472, -0.000835340586, 0.0357922204, -0.00598896714, -0.0204446074, 0.00539785763, 0.0148237552, -0.00493417261, 0.00965597108, 0.00891973823, 0.00179722102, 0.00612347107, -0.00818350632, -0.0213365797, -0.00544033246, -0.0171315614, 0.00925953779, -0.0106116571, 0.0256690253, 0.00424749451, -0.0108240312, 0.016763445, -0.00159192551, 0.000161714503, 0.0205012392, -0.00455189822, 0.0291378126, -0.00555359898, 0.00747559033, 0.00442801276, 0.00502620172, 0.0215347968, 0.0316296741, -0.0121973883, -0.00144326326, 0.0122044673, 0.00563146966, -0.0243806187, -0.0306385923, -0.00276441104, 0.00248124474, 0.00786494371, -0.00409529265, -0.0163245369, -0.0100099286, 0.0241399258, -0.0127424831, -0.0253717, 0.00857286, 0.0172731448, -0.00117160054, 0.00666502677, -0.0152201885, 0.0161971115, 0.0137194069, -0.0221577622, 0.0111850686, 0.000163263074, 0.00860825554, 0.00777999405, 0.0155458292, 0.0262353569, -0.0131389163, -0.00709685544, 0.0216197465, -0.00430058828, -0.0162962209, 0.0280051474, 0.00432890467, -0.000465897057, 0.0168200787, -0.0113620479, -0.0370098352, -0.0195809491, 0.00328295934, 0.00332720391, -0.000742869102, 0.00372009724, -0.0209826231, -0.0253433827, -0.00206888374, 0.00371655752, -0.0172873028, -0.0151918717, -0.0161121618, -0.0032245561, 0.0140804444, 0.0119991722, 0.00552528212, 0.0123106549, 0.0028458212, -0.00615178794, 0.0166643374, -0.00148042873, 0.00403158, -0.0103214113, 0.00168483949, 0.000356612552, -0.00929493364, -0.0158148371, -0.00702960324, 0.0128628286, -0.00158307655, -0.0173722524, 0.0128557496, 0.0107957153, -0.0213648975, -0.012055805, -0.0124168424, 0.0236019101, -0.0235594362, -0.000564562797, 0.00848083, -0.00959933735, 0.0145830642, 0.00877107587, -0.0145689063, 0.00477489177, -0.0125938207, -0.00719950302, 0.0275945552, -0.0140025737, 0.00234674057, 0.0216763802, -0.00634646462, 0.00056323543, -0.000870293938, -0.0221436042, 0.00259982049, -0.00161404791, 0.00390415522, 0.00908255856, 0.00270246831, 0.00683138706, 0.00808439776, 0.0146255391, 0.0210534148, -0.0142220268, -0.00192553084, -0.0109160608, 0.0149087058, -0.0109868525, -0.00997453276, -0.0100665614, -0.0150219724, -0.00445279, -0.0278777219, 0.00723843835, 0.0241540857, 0.00184412044, 0.0140946023, 0.0101302741, -0.00282989326, -0.00234674057, -2.95057071e-05, 0.0118221929, -0.0236302279, 0.00186535798, 0.00484214351, -0.006611933, 0.0102860155, 0.000264362287, 0.00562439067, -0.0189863, 0.00303341891, 0.0226957779, 0.0246779434, -0.0107320026, -0.0190995671, 0.00948607083, -0.0171881933, 0.00379796792, -0.00841711834, 0.0186748169, 0.0311199762, -0.0133300535, 0.0111638308, -0.010158591, -0.0207419302, -0.0269432738, -0.00946483295, 0.0238001272, -0.0167209692, 0.0168625526, -0.0112204645, -0.0261645652, -0.0241116099, -0.0167209692, 0.0118505098, 0.0076525691, -0.0056951819, 0.0131035205, 0.00352542032, 0.0326773897, 0.00706499908, -0.00228833756, 0.0043182862, 0.00367762218, -0.00739064, 0.00862949248, 0.00827553496, 0.00826137699, 0.012749562, -0.00896929204, -0.0865356177, -0.00849498902, 0.00991789903, 0.0232196357, 0.00617302535, 0.0227240957, 0.00606683781, -0.00579783, 0.000282502617, 0.00880647171, 0.00501912273, -0.0120770428, 0.0269857477, 0.00311659905, -0.00882771, -0.01109304, 0.0159564205, -0.0138255944, -0.018873034, 0.006141169, -0.00174324249, -0.00923122093, -0.00022653304, -0.0020193297, 0.00765964808, -0.00117337028, 0.00302810967, -0.0159422625, -0.00996745378, 0.00151936419, -0.00130964408, -0.00184589031, -0.00908963848, 0.017797, -0.0162820611, -0.0136415362, -0.00094595243, -0.00623673759, 0.00428996934, -0.00484214351, -0.00204941607, -0.0151635548, -0.0105762612, 0.000772513042, -0.00216976181, 0.0141299982, 0.00135919824, -0.0242107175, -0.0150644472, 0.0016697963, -0.0081905853, 0.0172023531, -0.0133937653, -0.014639697, -0.0202888642, -6.75285264e-05, -0.0109726936, -0.0111638308, -0.00431120675, 0.0319694765, 0.0173156187, -0.0376328, 0.00234143133, 0.00898345094, 0.024083294, 0.0149936555, -0.0144981146, 0.0181368012, -0.00155122031, 0.00559253432, -0.010866507, -0.0217754878, -0.00753222359, -0.0103638861, 0.00870028418, 0.00381212635, -0.00757469842, 0.00289537525, 0.00907548, 0.00154414121, 0.0214215294, -0.00419086125, -0.0172165111, 0.0110647231, 0.0060456004, 0.0129053043, 0.0189438257, 0.000782689312, 0.0230214205, -0.00201048073, 0.0220020209, 0.0100240866, -0.0173014607, 0.00838172249, 0.00110611832, 0.0302704778, -0.0103497282, -0.0255699158, 0.00789326057, 0.028330788, 0.00570226135, -0.00173350866, 0.0107249236, 0.00755346101, 0.0136840111, -0.0134291612, 0.00980463251, -0.0139600979, 0.0264760479, -0.00969844591, 0.0293926615, -0.0097550787, -0.0172165111, -0.0105550233, 0.00552528212, 0.0100877993, -0.000773397915, -0.00402804045, 6.60905716e-05, 0.0226108283, -0.0095002288, 0.0116522927, -0.0147812804, -0.00239452487, 9.18769547e-06, -0.0140662855, 0.00164236454, 0.00111142767, -0.0185757093, 0.0120133301, 0.00867196731, -0.0114186807, 0.00228125835, -0.0124026835, 0.00154856569, -0.0213932134, 0.00121761509, 0.00751098618, 0.00122911867, 0.0109585356, -0.00662255194, 0.00561731122, 0.0064915875, -0.0149653386, -0.000292236451, -0.0125725837, -0.0114186807, 0.0289962292, -0.00748266932, 0.00744019449, -0.0206286646, -0.00247239578, 0.0161829535, -0.000787998724, 0.00419794, -0.0316296741, 0.0120982798, -0.00399972405, -0.0181368012, -0.01747136, -0.0047041, 0.0140946023, -0.000427625346, -0.0129619371, 0.0106682898, 0.0208976734, -0.00969136599, -0.00933032949, -0.00676767435, -0.0164944362, 0.0213932134, 0.0220020209, 0.01890135, -0.00128221232, -0.00121319061, -0.0169333443, 0.00848791, -0.00945775397, 0.0100665614, 0.0026104392, 0.0133583704, -0.0017246597, -0.00799944811, -0.00147600425, 0.0278918799, -0.00655883923, 0.00721366145, 0.00606683781, 0.000859675172, -0.00541909505, 0.0230497364, 0.0291944444, -0.0105337864, 0.0246496256, -0.0235877521, 0.00269007985, 0.00265645375, 0.00613055, -0.0062155, 0.00224940223, -0.0121407546, -0.00993913691, 0.0108806649, 0.0173014607, 0.00656591868, -0.0145972222, 0.00707915751, 0.00840295944, -0.00706853857, -0.0171881933, 0.00600312557, -0.020543715, -0.00843835529, 0.0274671298, -0.00152467354, 0.00507221604, -0.000698181917, 0.0014521121, -0.0050332807, 0.0136769321, 0.0217613298, 0.00991789903, 0.0155033544, -0.0151777137, 0.0244372506, 0.0128982244, 0.00758885685, 0.00380150741, -0.0332437232, 0.00188128604, 0.0100170076, -0.0208976734, 0.0235594362, -0.0140096527, -0.00532352645, 0.000575624, -0.00451650238, 0.0168059189, -0.00761009427, 0.012983175, -0.00814103056, 0.00910379644, -0.0157865211, -0.00409883214, -0.00630399, -0.00966305, 0.00367762218, -0.00216268259, 0.0167917609, -0.00208658166, -0.0132804988, 0.00862949248, 0.014186631, 0.00671812054, 0.0127849579, -0.00318031153, -0.0336401574, -0.000935333665, 0.00238921563, 0.026929114, -0.00083268591, -0.00385460118, -0.00897637196, -0.0205861889, 0.010618736, -0.0115248682, 0.00170253729, -0.0260088239, 0.00324756349, 0.002537878, 0.00802068505, -0.00724905729, -0.00549696572, -0.0109089818, 0.0132026281, 0.00160519895, 0.000277414481, 0.0189155079, -0.0172873028, -0.00784370676, -0.0112417024, -0.0091887461, -0.0135282697, 0.00826845597, -0.0130327288, 0.00556775741, 0.00791449752, -0.0225400366, 0.00448110653, -0.0157015715, 0.0213224217, 0.00400680304, 0.00455897721, 0.00713933026, -0.00109107513, -0.0149087058, 0.00061986869, 0.018632343, 0.00843127631, -0.0269999057, 0.00721366145, 0.000795520318, -0.0088135507, -0.0204870813, -0.0174288861, -0.00556421792, -0.00770920236, -0.0135211907, -0.00540139712, 0.00216799183, -0.0345179699, 0.0135495076, -0.00929493364, 0.00504036, -0.00129017641, -0.0208410397, -0.0163811706, -0.00267592142, 0.0181934349, -0.00392539287, 0.00701898476, 0.00599250663, -0.000122336685, 0.0203313399, 0.00700482633, 0.00200340152, -0.00730569055, 0.00679245172, 0.00554652, 0.0160413701, 0.00299448357, 0.00674997643, -0.030468693, 0.0238850769, -0.00113443495, -0.00459437305, -0.0125513459, -0.018419968, 0.00780123146, 0.00281750457, -0.00120168692, 0.00313960621, -0.0105974982, -0.0147104887, 0.00657653715, 0.00127513323, 0.00583676528, 0.0140308896, 0.0190995671, -0.00142379547, -0.0187456086, -0.00345462887, -0.00051102665, 0.0168625526, 0.0116168968, -0.00150786049, -0.0136273783, -0.0119213006, -0.0020777327, -0.00414484646, 0.0190712493, -0.0128486706, -0.00676059537, -0.000888876675, 0.0176837351, -0.0214498471, 0.0324791744, 0.00894097611, -0.0203171819, 0.00108576578, 0.0237151776, -0.0282033626, -0.0112063065, 0.0537449643, 0.0115531851, -0.00625797501, -0.00938696228, 0.0234178528, -0.0185332336, -0.0044138548, 0.0290245451, -0.0270423815, -0.00763841067, -0.00712163234, 0.00824721809, 0.0156874135, 0.00800652709, 0.0086224135, -0.0134150032, 0.00331304572, -0.0193968918, 0.00865780935, -0.0260513, -0.0055748364, 0.00518194307, -0.0124876332, -0.0341215394, 0.0148379141, -0.000807908829, 0.00562085118, 0.00143264444, -0.0122611, 0.0288404878, 0.00523857633, 0.0134008452, -0.004721798, -0.00553944055, 0.00417316332, -0.0180660095, -0.0252584331, -0.00282635354, 0.0213648975, 0.00104329083, 0.0276087131, 0.00369178061, 0.0283024721, 0.00328649883, 0.0108948229, -0.0138397524, -0.00601020455, 0.0132663408, 0.0107178446, -0.00602436299, 0.00318385102, -0.0141158402, -0.00299448357, -0.0179385841, -0.0154184047, 0.00995329488, 0.00685262447, -0.0128699085, -0.0107744774, 0.0122186253, -0.00988250412, 0.00398556562, -0.00845251419, -0.0311199762, 0.00454127928, 0.0109656146, -0.00574473618, 0.0297890939, -0.0125513459, -0.0150786052, 0.0144414809, -0.0131176785, -0.00352896, -0.00352542032, 0.0091887461, 0.00506513705, -0.00505805807, 0.00412360905, 0.00143175956, -0.00645265216, 0.00528459111, -0.00186358823, -0.00764549, -0.00950730871, 0.00331658521, 0.000571199518, -0.0142928185, -0.0130610457, -0.00390415522, 0.00337852794, 0.0116947675, 0.0134787159, 0.00513238925, 0.0386522, 0.00367762218, -0.0195384752, -0.00919582509, 0.00408113422, 0.00890558, -0.0110293273, 0.0345179699, -0.00416254438, -0.00554652, -0.0176129434, -0.0174572021, 0.00900468789, 0.0120062511, -0.00962765422, 0.000198548238, -0.00281219534, -0.000910556642, 0.00188128604, 0.0119283805, 0.0113124931, 0.0137831196, -0.0139600979, 0.00690217828, -0.00477843126, -0.0028458212, -0.00484214351, 0.00300156279, 0.00213259622, -0.00846667215, 0.0103426492, -0.00195207761, -0.00947899185, 0.0169616602, -0.0157723632, 0.017485518, -0.00896221306, -0.00296262745, -0.00529167, -0.00267769117, -0.0329322405, 0.00926661678, 0.0118646678, -0.0201331228, 0.00971260387, -0.00560315326, 0.0380575508, -0.0138539113, 0.00211843778, -0.00449880445, 0.00230957498, -0.000773397915, -0.00337852794, 0.00466162525, -0.0365567692, 0.00662963092, -0.00761717325, 0.00607745675, 0.0143706892, 0.00403865939, 0.0051961015, 0.0242248774, -0.00138574501, 0.0278918799, -0.00667210575, 0.0289112795, 0.00154414121, 0.0202463903, 0.000162267563, 0.0120841218, 0.00495541, 0.00552528212, -0.0290811788, -0.00553590106, -0.000344002794, 0.0166077036, 0.00740479864, -0.00637124153, 0.0164802782, 0.0050332807, 0.0390486307, 0.00719242403, -0.00839588, 0.0088772634, -0.00950730871, 0.00152467354, -0.0512531, 0.0110151693, 0.0103568071, -0.00397140719, 0.0380292349, 0.0239275526, -0.0217471719, -0.0151352389, -0.00262105791, 0.0131955491, 0.00523149734, -0.00152024906, 0.0100807203, 0.00199809228, -0.00609161472, -0.0201614406, -0.0287413783, 0.0311766099, 0.0127778789, -0.00460853148, -0.0146821728, 0.0106045781, -0.00965597108, 0.0143494522, 0.0121761505, -0.0145405894, -0.0059783482, 0.0140450485, -0.00338914664, 0.000229851386, 8.66090631e-05, -0.0109231398]
04 Oct, 2018
unordered_multiset size() in C++ STL 04 Oct, 2018 The size() method of unordered_multiset is used to count the number of elements of unordered_set it is called with. It takes the number of elements in the container and counts the number of elements. Syntax: size_type size() const; where size_type is an unsigned integral type. Return Value: This function returns the length of the controlled sequence or in short, it returns the number of elements in the container. Below program illustrate the unordered_multiset size() function :- Example : #include <iostream> #include <unordered_set> using namespace std; int main() { // Define the unordered_set unordered_multiset<int> numbers{ 1, 2, 3, 4, 5, 6 }; // Calculate and print // the size of the unordered_multiset cout << "The container has " << numbers.size() << " elements in it"; } Output: The container has 6 elements in it Complexity : It takes constant(O(1)) time of complexity to perform an operation. Learn C++ Online – Master everything from basics to advanced concepts. Apply your knowledge with practical exercises and boost your skills. Take the Three 90 Challenge: finish 90% in 90 days for a 90% refund. Start now and level up your C++ programming!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum/Algorithm for Dynamic Time out timer Calculation/Difference between Round trip time (RTT) and Time to live (TTL)/Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms/Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm/Round Robin Scheduling Algorithm with Different Arrival Time/Selfish Round Robin CPU Scheduling/Find the order of execution of given N processes in Round Robin Scheduling/Calculate server loads using Round Robin Scheduling/set::lower_bound() Function in C++ STL/Implementation of lower_bound() and upper_bound() in List of Pairs in C++/Difference between std::set::lower_bound and std::lower_bound in C++/Difference between std::set vs std::vector in C++ STL/std::minmax() and std::minmax_element() in C++ STL/std::rotate vs std::rotate_copy in C++ STL/std::bitset::to_ullong and std::bitset::to_ulong in C++ STL/std::upper_bound and std::lower_bound for Vector in C++ STL/std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++/std::string::append vs std::string::push_back() vs Operator += in C++/Vector push_back() in C++ STL/vector :: cbegin() and vector :: cend() in C++ STL/unordered_multiset cend() function in C++ STL/unordered_multiset bucket() function in C++ STL/unordered_multiset emplace_hint() function in C++ STL/unordered_multiset end() function in C++ STL/unordered_multiset size() in C++ STL
https://www.geeksforgeeks.org/unordered_multiset-size-in-c-stl/?ref=next_article
PHP
unordered_multiset size() in C++ STL
What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, jQWidgets jqxTreeMap width Property, Round Robin Scheduling Algorithm with Different Arrival Time, Difference between Flow and TypeScript, jQWidgets jqxTree destroy() Method, jQWidgets jqxTree collapseAll() Method, Find the order of execution of given N processes in Round Robin Scheduling, jQWidgets jqxScrollView buttonsOffset Property, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Vector push_back() in C++ STL, jQWidgets jqxListBox enableHover Property, Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm, std::rotate vs std::rotate_copy in C++ STL, Selfish Round Robin CPU Scheduling, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxSlider buttonsPosition Property, std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++, std::upper_bound and std::lower_bound for Vector in C++ STL, Difference between Round trip time (RTT) and Time to live (TTL), jQWidgets jqxSlider rtl Property, Difference between std::set::lower_bound and std::lower_bound in C++, jQWidgets jqxTooltip opacity Property, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, jQWidgets jqxToolBar height Property, PHP, std::minmax() and std::minmax_element() in C++ STL, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, Node.js date-and-time Date.transform() Method, unordered_multiset size() in C++ STL, TypeScript Optional Parameters, jQWidgets jqxToolBar theme Property, Difference between std::set vs std::vector in C++ STL, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, Steps to Diagnose and Resolve a Slow Network, How to use Optional Chaining with Arrays and Functions in TypeScript ?, Calculate server loads using Round Robin Scheduling, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, jQWidgets jqxScrollView showButtons Property, Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms, jQWidgets jqxScrollView disabled Property, jQWidgets jqxSplitter destroy() Method, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, set::lower_bound() Function in C++ STL, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, jQWidgets jqxTree collapseItem() Method, std::string::append vs std::string::push_back() vs Operator += in C++, unordered_multiset cend() function in C++ STL, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), jQWidgets jqxSortable opacity Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, vector :: cbegin() and vector :: cend() in C++ STL, jQWidgets jqxSlider height Property, jQWidgets jqxSwitchButton onLabel Property, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, jQWidgets jqxToolBar tools Property, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTree width Property, Implementation of lower_bound() and upper_bound() in List of Pairs in C++, jQWidgets jqxTree clear() Method, TLS Handshake?, Algorithm for Dynamic Time out timer Calculation, Adhoc TCP, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, jQWidgets jqxTabs position Property, Differences between Wireless Adhoc Network and Wireless Sensor Network, jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, std::bitset::to_ullong and std::bitset::to_ulong in C++ STL, unordered_multiset emplace_hint() function in C++ STL, unordered_multiset bucket() function in C++ STL, Impact of Three-way Handshake and Slow Start Algorithm, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, unordered_multiset end() function in C++ STL, How to Sort an Array Having Optional Properties in TypeScript ?
GeeksforGeeks
[0.00761652505, 0.0354715884, -0.0127664031, 0.0293109883, 0.0399957821, -0.0116714528, -0.00654563913, 0.0223562457, 0.0146434614, 0.00265014172, -0.0179042481, 0.0404770784, -0.0327281952, -0.00587182352, -0.00511678867, -0.0123813655, -0.0163761303, 0.0176034383, 0.00274940906, -0.00708709843, -0.00326981163, 0.0145953316, -0.00510475645, 0.0216343012, -0.0145231374, 0.0157143474, -0.0264954, 0.0181328654, 0.0114488527, -0.0132837975, -0.0121948626, 0.0244619194, -0.00717734173, 0.00870546, -0.0128867272, 0.0308511388, 0.0251718331, 0.0112202363, -0.00821213052, -0.0131995706, 0.0218147859, 0.0297682192, 0.0271692164, -0.0115270633, 0.00640726648, 0.022344213, -0.0126821762, -0.0439183526, -0.0097823618, 0.0181448963, 0.0205032527, 0.0110818632, 0.00956577808, -0.00383834355, -0.0135605428, 0.00672612572, 0.0260141026, 0.0213695876, -0.0227653477, -0.0236677807, 0.00397671666, -0.0381187238, 0.030225452, 0.00842269789, -0.0410546362, -0.0100651234, -0.0220795, 0.0429798216, 0.052316986, -0.0190834254, -0.00238843635, 0.0276505128, -0.00847684313, 0.000213763546, -0.00972821563, 0.00410606526, -0.0286853015, -0.0353512652, -0.00895814, 0.0361935347, -0.0353272, 0.0372042581, 0.000893407559, 0.00139049708, 0.00577556388, 0.000805420452, -0.00439785141, -0.0169777516, 0.0357844308, 0.0291425344, -0.0527982824, -0.012321203, 0.0356641077, -0.00246363902, -0.0209604837, 0.0134883486, 0.0502474084, 0.0298885442, 0.012730306, 0.0207559336, 0.0280114859, -0.0136207053, 0.0255809352, -0.0244258232, 0.0122730732, 0.0210086145, 0.0409343094, 0.00703896862, 0.00778497895, -0.0150525635, 0.0383112431, 0.00399476523, -0.0124294953, 0.0434370562, -0.0140418401, 0.00292688748, -0.0226931535, 0.013103311, -0.00343525736, 0.0127182733, 0.0183013193, 0.0279152263, 0.0208521932, -0.010534388, -0.0488997772, 0.00267871865, -0.0140779372, 0.0427632406, 0.00812790357, -0.0190352965, 0.0191556215, 0.0236076172, -0.00669002859, -0.0540977828, -0.0240046885, 0.0143065536, 0.0177598596, 0.0309714619, 0.00207559322, -0.0317656025, -0.0473355614, 0.0086693624, -0.00736986054, 0.0417765789, -0.0188548099, -0.00559808593, -0.00675019063, 0.0228134785, 0.0315249525, 0.0169175901, -0.0204310585, -0.0321265757, 0.00980041, 0.00703896862, -0.0153533742, 0.0118519384, 0.019877566, -0.00188157044, 0.0257012602, -0.0430038869, 0.041608125, -0.0018214084, 0.013716965, -0.0193601716, -0.00434671342, 0.0535683557, -0.012116652, 0.0120625058, -0.00847684313, 0.0176636, 0.0155579261, 0.0267119836, -0.0279392917, 0.00498142419, 0.0249311849, -0.00942138862, 0.0465895496, 0.0329447798, -0.00365484902, 0.0343405418, 0.0164483245, 0.0068825474, 0.0360491462, 0.0357844308, -0.00874757301, 0.00233880267, 0.0222359225, 0.00205002446, 0.0598252192, 0.061317239, -0.0225728303, 0.0186743233, 0.0185299348, 0.0155458935, 0.0251718331, 0.00992073491, -0.013307862, 0.00778497895, -0.00278099417, 0.0353512652, -0.00820009783, -0.00968610216, -0.0108532477, 0.00217335671, 0.0153413424, 0.0218147859, -0.00124686, 0.0107329236, 0.0317415372, 0.00211770693, 0.00268774293, -0.00740595767, -0.00925895106, 0.00791132, -0.0192037504, 0.0235474557, -0.0740716085, 0.036843285, 0.0347255804, -0.0239565577, 0.0228616074, -0.032078445, 0.0222359225, -0.0589588843, -0.0571299531, -0.0427391753, 0.0284927823, 0.0280355513, 0.0107569881, 0.00430760812, 0.00310135749, 0.0196489505, -0.0157624763, 0.0197211448, 0.0593920499, -0.0201302469, -0.0106908102, -0.0231985152, 0.0112443017, 0.00302615482, -0.0185058694, 0.0634830743, 0.0115451124, -0.025460612, 0.0260141026, 0.0138733862, -0.0079053035, -0.0584294572, 0.00821213052, -0.0232947748, 0.000401582191, 0.0118519384, 0.0118579548, -0.0238603, 0.010432113, -0.00169356389, -0.0165566169, -0.0236196499, -0.0258456487, -0.0302976463, 0.0158587359, 0.0320543796, -0.0451456606, 0.00330891693, -0.0108051179, -0.00392858684, 0.052076336, -0.0361694694, -0.0200339872, -0.0184818059, -0.00702693639, -0.000121546298, 0.00282160379, -0.00107615, -0.00369696273, 0.0496217199, -0.0134161543, -0.00338712777, -0.0209965818, -0.023535423, -0.00971016753, -0.0209123548, -0.0114067392, -0.0106005669, 0.0435573794, -0.0245461464, -0.0398513936, -0.0101673994, -0.0315490179, -0.0248349253, -0.00934919436, -0.0215139762, 0.00752628176, -0.018890908, -0.00404289505, 0.0204791874, -0.0160632879, -0.0134883486, -0.0257253256, -0.0149202067, -0.00664791511, -0.0187465176, -0.0230902247, -0.0261103623, -7.29935782e-05, -0.000926496752, 0.0331373, -0.0190593619, -0.00917472411, -0.030105127, 0.00197181362, -0.0222720187, -0.0225607976, 0.00359468698, -0.0112503171, -0.0327522606, 0.0369154811, 0.0110397497, -0.0722426772, -0.00972219929, -0.0119060846, -0.0138011919, -0.00205002446, 0.0610765889, 0.0251958985, 0.00658775261, -0.025460612, 0.0211650357, 0.00115962501, -0.0587182343, 0.00225006347, 0.0324394181, -0.0186382271, -0.00120925868, 0.0370117389, -0.0357363038, 0.0134281861, -0.000540331064, 0.00673214206, 0.0189270042, 0.00606133416, 0.000226172, -0.0233549364, 0.0161234494, 0.0227051862, 0.0331132337, 0.0074781524, -0.00536345365, -0.000101805599, 0.0327041298, 0.000445199723, -0.0294072479, 0.00607336638, 0.0129950196, 0.0141982613, 0.00143637077, 0.00131153432, -0.0171823036, 0.0134161543, -0.0351828113, -0.0225968938, 0.0359288231, -0.0242934655, 0.0171462055, 0.0118338903, -0.034460865, -0.0037781815, -0.0258456487, 0.0226329919, -0.00263058883, 0.00496939151, -0.0169055574, 0.0261103623, 0.00713522825, -0.019961793, 0.0187826157, 0.014294521, 0.0491885543, 0.00940334052, 0.00183644891, -0.00603426108, 0.0488997772, -0.0101373186, -0.00360371126, 0.00127242901, -0.00989065319, -0.0102997562, 0.00352850859, -0.00463549187, 0.0455788262, -0.0111420257, -0.00939732417, -0.00946350209, -0.0175192114, -0.00462345919, 0.0251718331, -0.0320062526, -0.0442552604, -0.0676703602, -0.0246905368, 0.0229217689, -0.00739392545, -0.00155669497, 0.0193240754, -0.00275091315, -0.0383593701, -0.00380826253, -0.0189631023, -0.0079233516, -0.0144870402, -0.00598913943, 0.00540255895, -0.0104200803, -0.00524012093, 0.0108351987, -0.00865733, -0.0317174718, 0.0209604837, 0.0148359798, -0.0242814347, -0.005318332, -0.0208762567, 0.0192157831, -0.00752026588, -0.00254034577, 0.0200941507, -0.0262306873, 0.0220193379, 0.00283363601, -0.0495735928, -0.00585678313, 0.0323912874, -0.000817452907, 0.0149202067, 0.0136929, -0.0607396811, 0.0213695876, -0.00587784, -0.0306345541, -0.0317174718, 0.0305623598, 0.033762984, 0.000460616284, -0.00887391344, 0.0110818632, 0.0290222093, -0.001812384, -0.0251237042, 0.000745634374, 0.0250755735, -0.0160632879, 0.0169175901, 0.0128385974, -0.00201543118, 0.0667559, -0.00993878301, 0.0643975362, -0.0155579261, 0.0268563721, 0.00239144452, -0.00815196801, 0.033762984, -0.00290282257, 0.0081820488, 0.0230902247, 0.00847082771, -6.18071863e-05, 0.00768872, -0.00189961912, 0.0102877235, 0.00651555834, -0.0180606693, -0.0244017579, -0.0354715884, 0.00235685124, -0.016508488, -0.0141501315, -0.00183494482, -0.00176124624, -0.0176756326, 0.0168092977, 0.00258546742, -0.0492848121, 0.00352850859, -0.0187585503, -0.00952968094, 0.00921082124, -0.0154616665, -0.0150164664, -0.0100891888, -0.0172184, 0.000171086038, 0.0047618323, -0.0408139862, 0.0150886616, 0.0409343094, -0.0140779372, -0.0122068953, -0.00488215638, -0.0142223267, 0.0082602594, -0.0286612362, -0.0420894213, 0.0471189767, 0.0239806231, -0.0477206, 0.0310436562, 0.0054476806, -0.0566967875, 0.0068825474, 0.00517695071, 0.0513062626, -0.0099508157, 0.00157173548, -0.0296478961, 0.00175071787, 0.0595845692, -0.00539955078, 0.00507768337, 0.0250274446, 0.0196008198, 0.0130912783, 0.00175222196, 0.0396107435, -0.0139335487, 0.00276444969, -0.0288056266, -0.00552889938, -0.00972821563, -0.0322469, -0.0416562557, -0.00201392709, -0.0208642259, 0.00972219929, -0.027722707, -0.0354956537, -0.00646141218, 0.00797148142, -0.00783310831, 0.0152210174, 0.0166889746, -0.0012611486, 0.0283483937, 0.00922285393, -0.0420653597, 0.0121707981, 0.0227172188, -0.00397671666, -0.0377577506, -0.00925293472, 0.0108893448, 0.0142704565, -0.00363980862, -0.01024561, -0.0100530908, 0.0342683457, 0.0108773122, -0.0289259497, 0.0159309302, -0.00670206081, -0.0117556797, 0.0313565, 0.024149077, 0.0257253256, 0.011539096, 0.00222148653, 0.00777294673, -0.00692466088, 0.0017401895, 0.0194564313, 0.0104621937, -0.00194474077, 0.0186382271, -0.0279392917, 0.0014980369, 0.0104982909, 0.0264954, -0.00664791511, -0.0107329236, -0.00729164947, -0.00678027142, -0.0184818059, -0.00371801946, -0.000564395916, -0.0199136641, -0.000491825398, -0.0396348089, -0.0172304325, -0.0274098646, 0.00328786019, 0.0269045029, 0.00892204326, 0.00680433633, -0.00296298461, -0.00611848803, -0.0057454831, -0.0208642259, 0.0025222972, -0.00468061352, -0.0105885342, 0.0238001365, 0.0083505027, -0.00439183507, -0.00738790911, -0.00906041637, 0.0139937103, 0.0267119836, 0.0275301896, -0.000350820395, -0.00644336361, -0.07416787, -0.0305623598, 0.0414156057, -0.00339013571, -0.00916269142, 0.020575447, -0.00981244259, 0.0287093669, -0.0168453958, -0.000982898753, -0.0164723899, -0.0079955468, -0.0142704565, 0.0364582464, -0.00149352476, 0.0186021291, -0.0144629749, 0.0114608845, -0.00022636, -0.0257975198, 0.00930106454, -0.0242573693, 0.0176756326, -0.00262006046, 0.0090965135, 0.0298644789, 0.00696075801, 0.00665393099, -0.0130070513, 0.0475521423, -0.004220373, 0.0106125986, 0.0361935347, 0.0232105479, 0.00932513, 0.00986658875, -0.0477446616, 0.0228736401, 0.00706303352, -0.00765262218, -0.00971618295, 0.0405733362, 0.00637116889, -0.0031254224, 0.000524162548, -0.0096139079, -0.0179523788, 0.0227051862, 0.0182892866, -0.00419931626, -0.033305753, -0.0254124813, -0.00409403257, -0.00380224641, 0.0113706421, -0.0216944627, -0.0111540584, -0.0458435379, -0.0205874797, 0.0114247873, -0.00847082771, -0.0115090143, 0.0105825178, -0.0132958302, -0.0140779372, -0.0160031263, -0.00259148353, -0.00686449837, -0.0183735136, 0.000587332761, -0.014908175, -0.0152571155, 0.0080135949, 0.000465128425, -0.00507768337, 0.00233429042, 0.00151683763, 0.0376133621, 0.0215019435, -0.0481537655, 0.0186261944, -0.0152210174, 0.028998144, 0.0427151099, 0.00427151099, -0.023162419, 0.0121226683, 0.0183855463, 0.0178440865, -0.0145832989, -0.0111179613, 0.0134642841, -0.0176756326, -0.0310677215, 0.00694270944, 0.0342202187, -0.0168333631, 0.0105765015, -0.00763457362, -0.0019417326, 0.00972821563, -0.00238242024, -0.0249071196, 0.00628092606, 0.00479191309, -0.0232947748, 0.0028200997, -0.0111059286, 0.0205634143, -0.0383112431, 0.0191917177, -0.00924090296, -0.00140704168, 0.0241009481, 0.0447606221, -0.012934857, -0.00664189877, -0.0126099819, 0.0108953612, 0.000553115562, -0.0235474557, 0.0272895396, 0.00288928603, 0.0128746945, -0.046854265, 0.0335223377, -0.00282461173, -0.0153654069, -0.0342442803, -0.0147397211, -0.00541759934, 0.0207198355, 0.00429858407, 0.009036351, -0.0374449082, -0.00303367525, 0.0227773804, 0.0155338608, -0.0199256968, 0.0213214569, -0.00140027353, 0.0161715802, 0.00751424953, -0.00263961335, 0.000670431706, -0.0302976463, 0.058236938, 0.00477085635, 0.00647344487, 0.0080737574, 0.0173266921, 0.0154255694, -0.0198053718, 0.00977634545, -0.0256290659, -0.0093552107, -0.0350384228, 0.0239204615, 0.00478589721, 0.00505662663, 0.0143185863, -0.00131980667, 0.0219110455, 0.00459037, 0.00329989265, -0.0291665979, -0.020779999, 0.0117917769, 0.00120474654, 0.0257253256, 0.00386842457, 0.0209484529, 0.00577556388, 0.0340998918, 0.0117316144, 0.00957781076, 0.00744807115, -0.00180035166, 0.00146795588, -0.0237038769, 0.00277347397, -0.00640726648, 0.00479191309, 0.052316986, -0.00786319, -0.0164001957, 0.0067682392, -0.0302013867, 0.00640125, -0.0161956437, 0.0249071196, 0.0131514408, -0.00222750264, 0.0261103623, -0.00353753287, -0.0206837393, 0.0059530423, 0.025917843, 0.0425707214, 0.0345089957, -0.00010960787, -0.000696000585, -0.0233429056, -0.00737587642, 0.0183133502, 0.00619068276, 0.0328003913, 0.00459638657, 0.0144870402, 0.00952968094, 0.0530389287, -0.020370895, 0.021068776, -0.00713522825, -0.0404048823, 0.00283213216, 0.0607396811, 0.0193120427, 0.00982447527, -0.0153293097, 0.00940935686, -0.00499345642, -0.0146675259, 0.0159910936, -2.90470271e-05, 0.0185179021, 0.0210326798, -0.000451591943, -0.0267119836, 0.0287093669, -0.0082602594, -0.00724352, -0.0275301896, -0.0121286847, -0.0118639711, -0.0302013867, -0.0237881038, 0.0178561192, -0.00634710444, -0.0096921185, -0.0177839249, -0.00878367, 0.0180967674, 0.00841668155, 0.012441528, -0.00515288627, -0.0149924019, -0.043533314, 0.00175823807, 0.0184818059, 0.00388346519, -0.00731571438, 0.0316934064, 0.00735782785, 0.0160993841, 0.0199256968, 0.004722727, -0.0172665305, -0.00284717255, -0.0051889834, 0.0231142882, 0.00894009229, 0.0108592641, -0.0179042481, 0.00797749776, -0.00543564791, -0.0247386657, -0.00205453648, -0.0106486967, 0.00445199711, 0.00096109, -0.0104140639, -0.0216102358, -0.0574187338, -0.0197933391, 0.00988463685, 0.0207679663, -0.0157384127, 0.00381728681, -0.0303698406, 0.0146915913, -0.0155579261, 0.0231142882, -0.0152811799, -0.0196970794, -0.00998089649, 0.0160753205, 0.00729164947, 0.00918074, -0.0292147286, 0.0163520649, -0.0550122485, 0.00284266053, -0.00993878301, -0.0033269655, 0.0163280014, 0.0376855545, 0.0167250708, 0.00069938472, 0.0138493218, 0.013223635, -0.000602749293, -0.0366988964, -0.0465173572, -0.00868139509, -0.00455427309, -0.0205634143, 7.1442526e-05, 0.0249071196, 0.0251718331, 0.0226931535, -0.00437077833, 0.0247867964, -0.00468061352, 0.00287123746, -0.0170499459, -0.00213876367, 0.00569133693, 0.0149803692, -0.00567328837, -0.00333598978, 0.0263750758, 0.00821213052, -0.0121226683, -0.0134642841, -0.00887993, -0.00206055283, -0.0139335487, -0.061606016, 0.013512413, -0.000167231905, 0.0147156557, 0.017001817, 0.0167732015, -0.0460119955, 0.0045272, -0.0410065055, -0.00369696273, 0.00150630926, -0.0196609832, -0.0232586786, 0.0425947867, 0.014908175, -0.00913261063, -0.0191676524, -0.00267571048, 0.000706528954, 0.007700752, -0.00913862698, -0.000591092859, 0.00669002859, -0.00907846447, 0.0164001957, -0.00950561557, 0.00508069154, 0.0168574285, -0.0110457661, -0.00520402379, -0.0282040052, 0.0269526318, -0.00222148653, -0.0366026387, 0.0386481509, 0.00804367661, -0.0204430912, 0.0274579935, -0.039225705, -0.0180125404, 0.013512413, 0.00583271822, 0.0212131664, 0.0176034383, 0.00229067286, -0.0167010054, -4.81179495e-06, 0.0218629166, 0.0156180877, -0.0371320657, -0.02743393, 0.00288026175, -0.0101914639, -0.0155458935, 0.0375171, -0.026158493, 0.0222238898, 0.0391535126, 0.033714857, -0.0270488914, 0.0211770684, -0.0377577506, -0.0212372299, 0.0137771266, -0.0307548791, -0.000474528759, 0.0248589907, -0.0147156557, -0.00999894552, 0.0280355513, -0.025605, -0.000224291929, 0.015810607, -0.0479612462, 0.00678027142, 0.0161234494, 0.00543263974, 0.0383112431, -0.0190834254, -0.00693067675, 0.038479697, 0.0164603572, -0.0294794422, 0.00821814593, -0.0506324433, 0.0341720879, 0.00910253, 0.0124535598, 0.014823948, -0.00374509231, 0.0163400341, 0.0139816776, 0.0134883486, -0.0275301896, 0.00351948431, 0.02743393, 0.00263810926, -0.0150886616, -0.0144268777, -0.028300263, 0.0310677215, -0.00724352, 0.0115270633, 0.021189101, -0.0252680928, 0.00880171917, 0.00600718847, 0.0152811799, 0.00172063685, -0.0187826157, 0.0101673994, 0.0220795, -0.0137530621, 0.0211770684, 0.00706905, 0.0160632879, 0.0269045029, -0.00709311478, 0.0311399158, -0.00857310276, 0.00588987209, -0.0053032916, -0.00473776739, 0.0119722635, 0.0137771266, 0.00166498683, -0.000877615, 0.0072194552, 0.0305382945, 0.00947553478, 0.0214177165, 0.00148374843, -0.0022244947, -0.0193361063, -0.00136116811, 0.00158527202, 0.00322769815, -0.00797749776, -0.00807977375, 0.00128596544, 0.011418771, -0.0140779372, 0.0100169936, -0.00700287148, 0.0138011919, 0.0281318091, 0.0129228244, -0.00285168481, -0.0091867568, -0.00350143574, -0.0126460791, -0.0242212713, -0.0111660901, 0.00517093483, 0.0280355513, 0.00393460318, 0.0342442803, 0.00332395756, 0.0453622416, 0.040164236, -0.0058236937, -0.00133484718, -0.00556499651, 0.0147276884, 0.00108141417, -0.0141982613, -0.00221847836, 0.00345029798, 0.00922285393, -0.0147998827, 0.0217546243, -0.0122911222, 0.0231022555, -0.000721945486, -0.010636664, 0.0227653477, -0.0169296227, -0.00308030075, -0.0158707686, -0.0155699579, 0.0126220137, 0.00326680345, -0.00844074599, 0.0157745089, -0.0124535598, 0.0221396629, -0.00387744908, -0.0194443986, 0.00353452493, -0.00934317801, -0.00450915145, 0.00863326527, -0.0160993841, -0.00157775171, -0.00226660818, 0.0144750075, 0.0271932799, -0.0225126669, 0.0418247096, 0.00501150498, 0.00350444391, 0.0149442721, -0.0128265657, 0.00297652115, -0.00340517634, 0.000830237346, -0.00939130783, 0.0160031263, -0.00841066521, -0.00553491572, -0.0106005669, 0.00288327, -0.00680433633, 0.00765863853, -0.00121978705, 0.00162437744, -0.0324634835, -0.00993276667, -0.0254124813, 0.0418969058, 7.00794772e-05, 0.0163640976, 0.0071953903, -0.012730306, 0.0340998918, -0.0146193961, -0.0259659737, 0.00101974804, -0.012032425, -0.00936724339, -0.000954321702, 0.0346293189, -0.00827830844, -0.00617865, -0.00457232166, -0.013921516, -0.00724953599, -0.0280596148, 0.0159910936, 0.00155067875, 0.0160993841, -0.0306345541, 0.0184818059, 0.000683592167, -0.00320664141, 0.00720742252, -0.00145141128, -0.0113586094, 0.0190112311, -0.0453141145, -0.0152450828, 0.00113029592, 0.0179283135, -0.00685246615, -0.00167250715, 0.0140779372, 0.000382969534, -0.0153293097, 0.00698482292, -0.0366507657, 0.015485731, 0.0315971486, -0.000298178522, 0.00695474166, -0.0291425344, -0.0322950296, -0.0103178043, 0.00108818244, 0.023571521, -0.00341720879, 0.0148119153, 0.00838660076, -0.0204190258, -0.00270278356, -0.017001817, -0.0069366931, -0.000346684246, -0.0191917177, 0.00527922669, 0.0345811881, 0.00125137216, 0.0165325515, 4.36645423e-05, -0.0196730159, 0.00678027142, -0.00211319467, 0.00335704652, 0.00257193088, -0.00823619496, -0.0142704565, -0.0171702709, -0.000952065631, -0.00242302963, 0.0169416554, -0.0224886034, 0.0100109773, 0.0319581218, -0.00549280224, 0.00139952148, 0.0385037586, 0.0295035057, -0.00446703797, -0.0429076292, -0.00774286548, -0.0268563721, 0.0302495174, 0.00947553478, 0.0284446534, 0.0164964553, -0.0126220137, 0.0192879774, -0.0153293097, -0.00800757855, -0.018193027, -0.0442552604, 0.0216944627, 0.00253432966, 0.00945147, -0.0372283235, -0.0376614891, -0.000133860725, 0.014823948, 0.0125738839, 0.0102335773, -0.0246664714, -0.00836855173, -0.0370117389, -0.027313605, 0.0120805549, 0.0197572429, 0.00265615783, -0.0111420257, 0.00517394301, 0.0177718922, -0.000201731134, 0.0293350518, 0.0179283135, 0.00354054105, 0.0290462747, -0.0244980175, 0.0269045029, -0.00469264574, -0.0153654069, -0.0183013193, 0.0207559336, -0.00750823319, -0.0234752614, -0.013019084, 0.00517394301, -0.0160392225, 0.00977634545, 0.0100109773, -0.000970114255, 0.00155669497, 0.0291906632, 0.00981845893, -0.0105885342, -0.020575447, 0.0182531886, -0.0138493218, 0.00638320157, 0.00194474077, -0.0168213304, 0.0116714528, -0.0166528765, 0.00972821563, 0.00853098929, -0.0173026267, 0.0189270042, 0.00738189276, 0.00403387053, -0.0060282452, -0.00449411059, -0.0183855463, 0.00442793267, -0.00800156314, 0.0303698406, -0.00397070032, -0.00564922346, 0.0202265065, 0.0278911609, -0.0111420257, -0.00889797881, -0.0167852324, 0.0279874206, -0.00292839156, 0.0219351109, -0.0283965226, -0.00257794699, -0.0051498781, 0.0093552107, 0.00339615205, 0.00689457962, -0.0181208327, 0.0223562457, 0.0250033792, -0.0155819906, 0.000787371828, -0.0236316826, -0.0188548099, 0.00555597246, -0.00595605047, 0.000953569717, 0.0181689616, -0.000252116908, -0.00993276667, 0.0118880356, 0.00806774106, -0.0127182733, -0.00751424953, -0.0255087409, -0.0121587655, -0.00558304507, 0.00592596922, 0.00161986519, 0.0124174627, 0.00932513, -0.00732173072, -0.0180366058, 0.0115270633, 0.000866334594, -0.010227561, 0.0411990248, -0.00248018373, -0.0208401605, -0.0229097381, -0.00817603245, -0.0228736401, -0.00804367661, 0.0126340464, 0.0018770583, -0.0116112903, 0.0306104887, 0.00135515188, -0.0130551811, -0.00206205691, 0.0104501611, 0.0128385974, -0.00638921792, -0.00896415673, 0.0184577405, -0.00922285393, 0.00303066708, 0.00659376895, -0.0215741377, 0.0302013867, -0.00239746063, 0.0138733862, 0.000696000585, -0.00908448081, -0.00874155667, -0.0350384228, 0.0171582382, 0.027024826, 0.0242814347, 0.0183975771, -0.0135846082, -0.00149352476, -0.0234151, 0.00128671748, 0.000608013477, 0.0152450828, 0.0123693328, -0.0122610414, 0.0073638442, 0.0146554941, 0.0164362919, -0.005913937, -0.00542963203, -0.0235474557, -0.0446403, -0.0255568717, 0.0339555033, 0.00228315266, -0.0123693328, -0.00151758967, -0.0291665979, -0.00684645, 0.0169416554, 0.00506865932, -0.0118639711, 0.0218268186, -0.00537548587, 0.00210567447, -0.00967406947, -0.0114909662, 0.014126067, -0.024149077, 0.0200580526, -0.00681636902, -0.00617865, 0.0205273181, 0.00247115921, 0.00697880657, 0.00934919436, -0.0111239767, 0.00162437744, 0.0100470753, 0.0211650357, -0.00341420062, 0.00453622406, -0.00440687593, 0.0147878509, 0.0157745089, 0.0359528847, -0.00493931072, 0.0108833285, 0.00382931926, 0.0113706421, -0.00928301644, -0.0117376307, -0.0064553963, -0.0344127342, -0.0208281279, -0.021886982, 0.0162317418, 0.0258215852, 0.00664791511, 0.00641328283, -0.00388647337, -0.0218027551, 0.0138493218, -0.00777896307, -0.017459048, -0.0372042581, 0.0130912783, -0.0119241336, 0.0269285683, 0.0202144738, 0.00972219929, 0.0280836802, -0.0281077456, 0.000930256851, 0.0307067484, 0.0140418401, -0.00809782185, -0.0304901656, -0.00267270254, -0.00588686392, 0.0105885342, 0.0115932412, -0.0241611097, 0.00986057241, 0.000919728482, 0.033305753, -0.00488516456, 0.0416321903, -0.00641328283, 0.0116654364, 0.0121106356, 0.0147397211, 0.0291906632, 0.00451516733, 0.0239806231, -0.0284687188, 0.0140538728, -0.0288778208, 0.00826627575, -0.00388647337, 0.0109555228, 0.0229097381, 0.00969813485, 0.00620873133, -0.0090183029, 0.00148074026, 0.0336426608, -0.0331373, -0.000486937206, -0.0299366731, 0.0255809352, 0.0236437153, -0.0103117879, -0.00316753588, 0.0152450828, 0.010618615, -0.00511678867, 0.0143787479, -0.0185299348, -0.0226690881, -0.0305382945, -0.0127062406, -0.0204671547, -0.0182531886, 0.0451215953, -0.0405011438, 0.000727585691, 0.00126641279, 0.0194804966, -0.00438581873, -0.000762554933, -0.0153413424, -0.00598613173, 0.00607035868, 0.0207078028, 0.0215380415, 0.00901228655, -0.009631956, -0.000177948285, 0.00915667508, -0.00459037, -0.019877566, 0.0202626046, 0.00922285393, -0.00492427, 0.0110999122, 0.00382631109, 0.0139094833, 0.0079053035, 0.0112984469, 0.000758794835, -0.00673214206, 0.00337208714, 0.00628092606, -0.000194962893, 0.0181088, 0.0134281861, 0.0159670282, 0.0225487649, 0.0144389104, 0.0129829869, 0.00325777917, 0.00808579, 0.00779701164, 0.0206356086, -0.0049844319, 0.00809782185, 0.00510174828, -0.0104802419, 0.0194564313, -0.0195647236, 0.0327281952, -0.0106005669, -0.00763457362, 0.0255809352, 0.0375892967, 0.032367222, 0.0040910244, -0.00609141542, -0.0342442803, 0.00626287749, 0.00404289505, 0.00768872, 0.0427151099, -0.0165566169, 0.0162558071, -0.0333779491, 0.0170619786, -0.00283664418, 0.00351948431, 0.0121768145, -0.000677199918, 0.0119782789, 0.0119121009, 0.0102034966, 0.0151247587, 0.00228616083, -0.0151247587, 0.00642531505, -0.0190112311, -0.0127664031, -0.0114729172, -0.0230180286, -0.0153172771, 0.00887391344, -0.00564320758, 0.00572743453, 0.00226811203, -0.0105765015, 0.00972821563, -0.00181088, -0.0190593619, 0.0178801846, 0.0113706421, 0.0322469, -0.0140177757, -0.00203498383, -0.00575450715, -0.0157023147, 0.0101974802, 0.015810607, -0.0154255694, -0.0022636, 0.0244137906, -0.0162919033, 0.0343646072, 0.028420588, -0.0177598596, 0.00497841602, -0.0209484529, 0.00305774, 0.0130551811, -0.00893407594, -0.00492126169, -0.00475581596, 0.0104381284, 0.00397370849, -0.00569133693, 0.0113104796, -0.0215500742, 0.0119241336, -0.00248619984, -0.0194323659, 0.0328244567, 0.00873554, -0.00589588843, 0.0166769419, 0.00211319467, 0.00652759057, -0.0221155975, 0.00514386175, -0.015810607, 0.00198535016, 0.0115090143, -0.00923488662, 0.0102576427, 0.0137891592, 0.0194564313, 0.0013980174, 0.0284927823, -0.00924090296, 0.011743647, -0.00197181362, 0.00819408149, -0.00637116889, -0.00662385, -0.00172063685, 0.0119782789, -0.0196970794, 0.0167611688, 0.0134402188, -0.0324394181, 0.0169296227, -0.0129709542, 0.0276505128, -0.00294042379, 0.0163520649, -0.00823619496, -0.0141020026, 0.0011280399, -0.0184457079, -0.0100891888, -0.00585076679, 0.0181448963, 0.00437077833, -0.0108051179, 0.0175673403, 6.90454399e-05, 0.0132597322, 0.0024907121, 0.0120083606, -0.0114428364, 0.00939732417, 0.00123557961, -0.0303698406, -0.0156421531, -0.0215982031, -0.00629295828, 0.00421435712, 0.00662986608, -0.0117135663, -0.00699685514, 0.0212131664, -0.00885586534, 0.00640726648, -0.00744807115, 0.00152360578, 0.0106426803, 0.00575751532, -0.00132356677, -0.00977634545, -0.00347737083, -0.00328485202, -0.00540255895, -0.00372704375, 0.00651555834, 0.00733977929, 0.0103599178, 0.0024726633, -0.0222720187, -0.00652157422, 0.020455122, -0.000794892083, 0.000392181857, 0.00202896772, 0.0143546835, 0.00676222285, 0.00934919436, 0.00141757, -0.000600493222, -0.0128987599, 0.0155579261, -0.0267841779, 0.00718937395, -0.0157985743, 0.0110337343, 0.0180967674, 0.00384736783, -0.0106547121, 0.0026411172, -0.0117797442, -0.0155579261, -0.0028667252, -0.0022711202, -0.00789928716, 0.00577857206, -0.00208010548, -0.0106667448, -0.0202265065, 0.0227773804, 0.00611848803, 0.0140177757, -0.0183013193, -0.0102696745, 0.0116052739, -0.0330891684, 0.0091145616, -0.0210086145, -0.0223081168, 0.000442943652, -0.00378419762, -0.0045031351, -0.0125498194, -0.0139455805, 0.00021583162, -0.00711717969, 0.0118399067, 0.0359047577, -0.0217064954, -0.0150525635, -0.00386240846, 0.00284115644, -0.0341480225, 0.00620873133, 0.00896415673, 0.00922887, 0.013716965, 0.0314527601, 0.00883781631, -0.0186021291, -0.00075353065, 0.00507768337, 0.01359664, 0.0141741969, 0.00366086536, -0.00352550065, -0.0140659045, -0.00368793821, -0.0030607481, -0.00703295227, -0.0228977054, 0.0123693328, -0.00332997367, 0.00184848136, 0.0048009376, -0.0110999122, 0.011232269, -0.00692466088, -0.00164543418, 0.00903033465, 0.0171221402, -0.0148841096, 0.0134402188, -0.0196850467, -0.0181569289, -0.00329989265, 0.000381089456, 0.00137320056, -0.00820611417, -0.00907846447, 0.0113826739, 0.0267601144, -0.00550483447, -0.0270729568, 0.0037390762, -0.0159790609, 0.0129107926, 0.0119361654, 0.0165325515, 0.0106607284, -0.00649751, 0.00288627809, 0.000615533732, -0.0127904676, 0.00185600156, 0.00742400624, -0.028540913, -0.0360491462, -0.0133800572, -0.00505061029, -4.67666541e-06, -0.00144313904, 0.00964398868, -0.00833847094, -1.51110335e-05, 0.00549881812, -0.0106246313, -0.0219832398, -0.00474077556, -6.8763431e-05, -0.00576052349, -0.0166528765, -0.0130070513, -0.00249973638, -0.00908448081, -0.0214538146, 0.00348338718, -0.0132837975, 0.00965000503, 0.0256531313, 0.0177357942, -0.00757441157, -0.00340818451, -0.0200941507, 0.0197211448, 0.0149803692, -0.0248589907, 0.0147517528, 0.0241009481, -0.00707506575, -0.00513182953, -0.00904838368, -0.0122369761, -0.0108652795, -0.00142057822, 0.00351647614, -0.0031254224, -0.00271932804, -0.0090183029, -0.00297351298, 0.00587182352, 0.00715327682, 0.0173988864, 0.014210294, -0.0379983969, 0.0200580526, -0.00933114532, -0.0103899995, 0.00913862698, 0.0104501611, 0.00694872532, 0.0079233516, -0.00985455606, 0.0135485111, -0.000707657, -0.0107810525, -0.00731571438, -0.00730969803, 0.0191676524, 0.00417825952, 0.00785115734, 0.0304901656, 0.0164723899, 0.0278670974, 0.0236437153, -0.00967406947, -0.00987260509, 0.0181689616, 0.00303217117, 0.0174109191, 0.0192879774, -0.0198895987, 0.00669002859, -0.00749620097, 0.014210294, 0.0391775779, -0.000929504866, -0.00399476523, -0.0091145616, -0.00776693039, -0.00380826253, -0.00658173673, 0.0142704565, 0.011623323, -0.00744807115, -0.0109314583, 0.00571841, 0.0101012206, 0.0305623598, 0.00176575838, -0.00732774707, 0.024642406, 0.0170980766, 0.0101012206, 0.0196369179, 0.00417224364, -0.010227561, 0.00305473199, -0.0180366058, -0.0140418401, -0.0114308037, -0.0359047577, 0.00939732417, -0.0189270042, -0.021068776, 0.00994479936, 0.0138974506, 0.00127919717, -0.0342924111, -0.0139576131, -0.00765262218, -0.0021026663, 0.0241009481, -0.0108351987, 0.0171943363, 0.00910253, -0.0198535, 0.016508488, 0.00161535305, -0.0101072369, -0.0114067392, 0.0188427772, -0.0132717649, 0.0121647818, 0.0290703382, 0.0167250708, -0.00897017308, 0.00608840724, -0.00365484902, 0.00559206959, -0.0195526909, 0.0161595475, 0.00727961725, -0.0112443017, 0.00644938, -0.00984854, -0.0131273754, 0.00602222886, -0.00582971, 0.0126220137, 0.0166047458, -0.0238242019, -0.00709913066, 0.00291635911, 0.00355558167, 0.0144028133, -0.0143306181, -0.011027718, 0.00765863853, 0.000462120341, 0.0185780637, 0.0217185281, 0.000542587193, -0.0205995124, -0.000998691306, 0.0117015336, 0.0124174627, 0.0280355513, 0.0114488527, 0.00672612572, -0.00576654, 0.0147758182, 0.0430038869, -0.00165445847, 0.0119241336, 0.0143787479, 0.00845879503, 0.0109795881, -0.0105103236, 0.0031254224, -0.0206356086, -0.00606434233, -0.00232827431, -0.000800156267, -0.00886188075, 0.0144509422, 0.0157985743, -0.000168829967, 0.0149442721, 0.0127543705, -0.00157474366, -0.000844525814, 0.00839863252, 0.0123573, -0.0183013193, -0.0276023839, 0.0245581791, -0.012218928, 0.0172424652, 0.000735481968, -0.0192278158, 0.0189871676, 0.00568231288, -0.0166167784, 0.0268563721, -0.0179162808, -0.0285890419, 0.00699685514, -0.0114247873, -0.0127062406, -0.0124535598, 0.00795945, -0.0225126669, 0.00179884757, 0.0170740113, -0.0201422796, 0.0157023147, -0.00962594, 0.0151488231, -0.0073638442, -0.0244137906, 0.0100049619, 0.00954772905, -0.005318332, 0.0146314288, -0.0114127556, 0.000843021786, -0.0174229518, -0.00223502307, -0.00540857529, -0.00980642624, 0.00338111143, 0.0136207053, -0.00283514, 0.0104200803, -0.0139937103, 0.00994479936, 0.0241611097, 0.00187104207, 0.00492427, -0.0124896569, 0.00223051081, -0.00189661107, 0.00644336361, 0.0170258824, -0.0103418697, 0.0389850587, 0.00664189877, 0.0194083024, -0.014414845, -0.0249311849, 0.0130672138, -0.00754433079, 0.00539654261, -9.11362222e-05, 0.000456856127, 0.0279633552, 0.0179283135, -0.00999292918, -0.018890908, -0.0083324546, 0.003480379, 0.0222479533, -0.0126220137, -0.00218388508, 0.0057454831, -0.00271631987, 0.00581466965, 0.0059530423, -0.00960789155, -0.0175192114, 0.00474077556, -0.00174319756, -0.00126039656, -0.0161234494, -0.0156662166, 0.0157504454, -0.00924691837, 0.0136688352, 0.00513784541, 0.0159429628, 0.0441108719, 0.00041662273, -0.00523410505, 0.00777896307, 0.00311038201, 0.00543263974, -0.0371561274, 0.00312843057, -0.00916870777, -0.0168333631, 0.0166047458, -0.0109856045, 0.00576052349, -0.012441528, -0.00732173072, -0.0160993841, -0.022344213, 0.0100591071, 0.00209965813, -0.0028200997, 0.00480695395, 0.0163640976, 0.00262457272, -0.00224555144, 0.0210086145, -0.00354655739, -0.0225367323, -0.005411583, -0.0127182733, 0.0244258232, 0.0289740805, -0.00477386452, 0.0141140344, 0.0236437153, 0.00789327081, 0.00822416227, -0.0241731424, 0.00281107542, 0.00638320157, 0.00145065924, -0.010552437, -0.00588987209, 0.00635312032, 0.0142223267, 0.0287093669, 0.0157985743, -0.00641328283, 0.0207559336, -0.0198414698, -0.0085911518, -0.0167732015, 0.00202144752, 0.01193015, -0.00777896307, 0.0447365567, -0.0110337343, 0.0114247873, -0.0161354821, 0.0103899995, -0.0200941507, -0.0145832989, -0.00318859261, 0.0281318091, -0.00211921078, -0.00563117489, 0.0147276884, 0.0131153436, -0.0187585503, 0.0138372891, -0.0153172771, 0.0131153436, 0.00833847094, 0.0113044633, -0.00043391934, 0.00761050871, -0.0250996388, -0.0161234494, -0.0103117879, 0.00614255294, -0.000397822063, 0.00681636902, 0.0129107926, -0.0164122283, -0.0025222972, -0.0242814347, 0.00791733619, 0.0108833285, 0.0177718922, -0.0193120427, -0.0137771266, 0.00307278056, 0.0155458935, -0.0249552503, 0.0307548791, -0.0118038086, 0.00119497022, 0.0175432749, 0.0230902247, -0.00213124324, 0.0104501611, 0.00599515578, -0.00604629377, 0.00945748575, 0.0246905368, -0.0035525735, 0.00385338417, 0.0329929106, -0.0230059978, 0.00649149343, -0.0034412737, 0.0166047458, 0.0159309302, 0.000619293889, 0.00588084757, 0.0208642259, 0.0139335487, -0.030225452, -0.00701490371, -0.00965000503, 0.0013814728, -0.0111360094, 0.0149683366, -0.0249311849, 0.0174710806, -0.0173146594, 0.00616661785, 0.00294192787, 0.0341239572, 0.000627190166, 0.0093552107, 0.0103117879, 0.0318618603, 0.013921516, -0.00330290059, -0.0500067584, 0.0150405318, -0.0126460791, -0.0340998918, -0.0129950196, 0.0151849203, -0.0019417326, 0.00974626467, 0.0257493891, -0.0112563334, -0.0074420548, 0.00139651331, 0.000930256851, 0.00887391344, 0.0185660329, -0.0140659045, -0.00833847094, -0.0140779372, -0.0303939059, 0.013512413, 0.00913862698, -0.0104982909, -0.00767067121, 3.54392505e-05, -0.00262908498, -0.0218629166, 0.0473836884, 0.0236316826, 0.0116774682, -0.00520703197, 0.0226450246, 0.0160271898, 0.00751424953, -0.0410786979, -1.06987527e-05, 0.0188548099, 0.0182170924, 0.000193458836, -0.0126099819, 0.00387444091, -0.0111781228, -0.000341796083, -0.00413915422, -0.00332395756, -0.00197783, 0.00258997944, 0.0164362919, -0.00787522271, -0.00290883868, 0.0072194552, -0.00100545958, -0.00708709843, 0.0113706421, -0.00863928162, 0.0169055574, 0.00498142419, 0.0142704565, 0.0332576223, 0.0221757591, 0.0120083606, -0.00741197402, 0.0206356086, 0.00194022851, 0.0045572808, -0.0142223267, 0.0026982713, -0.0105584534, 0.0069908388, 0.0204190258, -0.0092048049, -0.00281257927, 0.0142704565, -0.0119000683, 0.0162197091, 0.0158226397, -0.0113766575, 0.0231142882, -0.0163400341, 0.0325597413, -0.00544467242, -0.021189101, 0.00272835232, 0.00966203772, 0.0149322394, 0.0240528174, -0.0115150306, -0.0102576427, 0.025460612, 0.00113104796, -0.0226209592, -0.00416923547, 0.0105584534, 0.00358867086, 0.0209243875, -0.00801961124, -0.0300088674, 0.00871147588, 0.0181328654, 0.00805570837, -0.0213094242, 0.0117496634, 0.00818806514, 0.0118338903, 0.0186983887, 0.015401504, 0.0240167212, 0.0116774682, 0.00755034667, -0.00115285674, -0.0122369761, -0.0095236646, 0.032078445, 0.021850884, 0.014126067, -0.017615471, 0.00172514899, 0.00801961124, 0.00373606803, -0.00419330038, 0.0291665979, -0.00711717969, -0.0020710812, 0.0112082036, -0.0137891592, -0.0203949604, -0.00256140251, -0.013019084, 0.00679832, 0.00334501429, 0.00101373182, -0.019179685, -0.0144028133, 0.00717132539, 0.0212251972, -0.0167130381, -0.0106908102, -0.0038112707, 0.0144870402, 0.0203468315, -0.0200460199, 0.019961793, 0.0206356086, -0.00485809147, -0.00715929316, 0.00394663541, -0.00616661785, 0.022957867, -0.0130311167, 0.00924090296, 0.00359468698, -0.00739392545, -0.0191917177, 0.0090544, -0.00735181198, -0.0129228244, -0.0174349844, 0.00801961124, 0.00688856328, -0.0155579261, 0.00406094361, -0.0169175901, 0.0126460791, -0.0193361063, -0.0389369279, -0.0115691768, -0.00261404435, 0.0132477, 0.0102034966, -0.0146193961, 0.00156571937, 0.00350745185, -0.00114007224, 0.0271932799, -0.000695248542, -0.0103960149, 0.0242212713, 0.00400679745, -0.00115511287, -0.00786319, -0.019588789, -0.00835651904, -0.000241024522, -0.00243807025, 0.00437077833, 0.000982898753, -0.0165927149, 0.0201783776, -0.00265615783, 0.0178681519, -0.0206717066, -0.00756237935, -0.0032938763, 0.00858513545, -0.00214177161, -0.00823017862, -0.0214899108, -0.00469866209, 0.00286371727, -0.00733376294, 0.0138252564, 0.0318859257, -2.0516225e-05, 0.00684043346, -0.000558003725, 0.00787522271, -0.000722321507, -0.0160271898, 0.0102395937, -0.016303936, -0.01240543, -0.000192894819, 0.0072194552, 0.00292237522, -0.0153413424, 0.00694872532, 0.00616661785, 0.0127062406, 0.0329688452, 0.0092649674, -0.0137650948, -0.017988475, 0.00152887, -0.0270007625, -0.0101854475, -0.0234752614, 0.0213575549, 0.0101673994, -0.0107750371, 0.0222720187, -0.0210326798, -0.0145111047, -0.0177117307, -0.0238242019, 0.0160632879, -0.0127904676, 0.00717132539, -0.0107329236, -0.0135605428, 0.0167852324, -0.012934857, 0.00252680923, 0.0403808169, 0.00573345041, 0.0017567341, 0.0282762, 0.0144870402, -0.00649751, 0.0150645962, -0.000670431706, 0.00514386175, -0.00457232166, -0.00243355799, 0.00979439449, 0.0181689616, -0.0104080476, 0.0027554254, -0.0677666217, -0.00274489704, 0.00988463685, 0.026158493, -0.00409403257, 0.0153533742, -0.00532134, -0.0168694593, 0.000586580718, -0.0332816876, -0.0324634835, 0.00210417039, 0.0161715802, 0.00549280224, 0.0106908102, -0.0384315662, 0.00200490281, -0.0118338903, -0.00984252337, 0.00912057795, 0.00179283135, -0.0134041216, 0.0175071787, -0.0106787775, 0.0142343594, -0.0139455805, 0.0130551811, 0.0132958302, -0.0214056838, 0.00469866209, -0.0115992576, 0.0113465767, -0.00447004614, 0.0288056266, -0.00903033465, -0.0198053718, 0.00603426108, -0.0248108599, -0.0012483641, -0.0162437744, 0.00612751255, -0.00823017862, -0.00922887, -0.00428655138, 0.00741799, 0.0209364202, -0.00708108209, -0.00471069431, -0.0132356677, 0.00711717969, -0.00706303352, 0.00483402656, -0.00854903832, -0.00210116222, -0.0155579261, 0.0116413711, 0.01359664, 0.0104742264, -0.0184457079, 0.0262306873, 0.00778497895, -0.063242428, 0.00620873133, 0.010841215, 0.0218147859, 0.00294042379, -0.0149442721, 0.00562816672, 0.00448207837, -0.00972821563, 0.000591092859, -0.00619669911, -0.00467760535, -0.00759847648, 0.00444598123, 0.00780904386, -0.0252199639, -0.00391053827, -0.0119662471, -0.00836253539, -0.000873102865, 0.0139937103, -0.0145351691, 0.00893407594, -0.00886188075, 0.0216944627, 0.00517995888, 0.0144389104, 0.014823948, -0.0165806822, 0.0158587359, 0.014210294, -0.00772481691, 0.00844676234, -0.00662986608, 0.00897017308, -0.00429858407, -0.0158346724, 0.00951764826, 0.0178681519, -0.0108532477, -0.00205002446, 0.0105584534, -0.00831440557, 0.00659376895, -0.010841215, -0.00508069154, -0.0247146, 0.00598011538, 0.00762254139, 0.0171462055, 0.00809782185, -0.011725598, -0.00406395178, 0.0093732588, 0.022753315, -0.0106426803, 0.00208912976, -0.00381427887, 0.0181569289, 0.0113285286, 0.000473776745, -0.0183013193, 0.00107690203, -0.00101222773, -0.0209364202, 0.000995683135, 0.00123257155, 0.0208401605, 0.00950561557, 0.0169175901, 0.00611247215, -0.0120444577, 0.00330891693, -0.00516792666, -0.0273376703, 0.0192278158, -0.0117195817, -0.00130551809, 0.0106727611, -0.0182892866, -0.0261103623, 0.0218027551, -0.00751424953, -0.01143682, 0.00552288303, -0.0134161543, 0.0250755735, 0.0146915913, -0.00109795877, -0.0465414189, 0.00791132, 0.0102576427, -0.014908175, 0.0203227662, -0.0411268286, -0.00547174551, 0.0111420257, -0.00886789709, -0.00218839734, -0.0158587359, 0.010823166, -0.00741197402, 0.00789928716, -0.0181208327, -0.00200039078, -0.0100530908, -0.00584775861, 0.00144088292, -0.0209484529, 0.0157263801, 0.00586881535, 0.0328725837, -0.00743002258, -0.00527922669, -0.0334501415, 0.030225452, -0.0207559336, -0.0119181173, 0.00712319557, -0.00171311654, 0.0100831725, -0.0101854475, -0.00438281102, 0.00291936705, -0.00305322791, 0.00502353767, -0.0172184, -0.000195150889, -0.0201904085, 0.0292387921, 0.0246664714, -0.00357062207, 0.0151006933, -0.0269526318, -0.00675019063, 0.00995683204, 0.00778497895, -0.0131755052, 0.000271481578, 0.0067682392, -0.0162558071, 0.00395866809, 0.0075322981, -0.00767067121, -0.0061726342, 0.0294553768, 0.00549581, -0.00209965813, -0.000800156267, -0.018890908, -0.0136447698, -0.0186021291, 0.0174229518, 0.0118760038, 0.00122805941, -0.000310963, -0.00025249293, -0.00839863252, 0.0133439591, 0.034460865, 0.0066779959, -0.00149578089, -0.0119722635, 0.0230059978, 0.0402845591, -0.0135485111, -0.00574849127, -0.0504399277, -0.00487012416, -0.0201182142, -0.0105765015, 0.0155218281, -0.00542662386, 0.0135003813, -0.0116534038, 0.00152210181, 0.012441528, -0.0214297492, 0.00542662386, -0.00172815705, 0.0277949013, -0.00916269142, 0.00431663264, -0.00675620651, -0.00117842562, 0.0188788753, -0.00781506, 0.0222238898, 0.00436777, 0.00254786597, 0.00173116522, -0.0101673994, 0.0255087409, 0.00370297884, -0.0125498194, -0.025460612, 0.00426549464, -0.00687653106, 0.00139200117, 0.0250274446, -0.0149683366, -0.0288537554, -5.19838359e-05, 0.00950561557, -0.020779999, -0.00250124047, -0.0122309597, -0.00638320157, 0.0120685222, 0.00153037405, 0.00686449837, -0.0202024411, -0.00527922669, 0.00864529703, -0.0180847347, 0.00206506485, 0.0032156657, -0.00278550643, -0.0115029989, -0.015401504, -0.00820009783, -0.0166769419, 0.0281558745, -0.00212973915, 0.0198655333, 0.0119241336, -0.0147637855, 0.00391354645, -0.0179042481, -0.000456104113, 0.000924240681, 0.00194624474, 0.0197692737, 0.0102877235, -0.0244619194, -0.0184697732, 0.00498142419, 0.00950561557, -0.0264232047, 0.00205754465, 0.015690282, 0.00527321035, -0.00772481691, -0.00969813485, -0.00163039356, -0.00970415119, -0.000883631234, -0.000216207642, -0.00607637456, -0.0221396629, 0.0072736009, -0.0047618323, -0.00233278633, -0.00175823807, 0.00361574371, -0.0107569881, -0.000103497659, -0.0107930852, 0.00336306286, 0.00535142096, 0.0106246313, 0.0117195817, 0.0014905167, 0.00312843057, -0.00839261618, -0.00424142973, 0.0170619786, -0.0014980369, 0.00659978529, 0.00496337516, -0.00521004, -0.00326680345, 0.0122249443, -0.00690661184, -0.00970415119, 0.000772331259, -0.0113706421, 0.00473175105, 0.0287093669, -0.000505737844, 0.00556800468, -0.034701515, -0.0171221402, -0.00182892859, 0.0144268777, -0.00273888069, 0.00179433543, 0.017086044, -0.00487614051, -0.00915667508, 0.00472874288, -0.0146434614, 0.0127543705, 0.0182892866, 0.0152330501, -0.0178320538, 0.00401883, -0.0155338608, -0.00591092883, 0.0154977636, -0.0159790609, 0.00196730159, -0.0131394081, 0.0156541858, -0.0111901555, 0.034749642, 0.000315851154, -0.0305623598, -0.00527922669, 0.0236798134, -0.018554, -0.00652759057, 0.00074262626, -0.00345932227, 0.00386842457, -0.00863928162, 0.0232105479, 0.00475581596, 0.00390753, 0.0192398485, -0.0110156853, 0.0106246313, -0.0174710806, 0.010841215, 0.0183855463, 0.0103178043, 0.00198835833, -0.00810383819, 0.000982898753, -0.0168694593, 0.0324875489, -0.00770676835, -0.022837542, 0.00702092, -0.00640726648, -0.0137771266, 0.00573645858, -0.0248108599, 0.0112021882, -0.00729164947, -0.0117135663, 0.0250755735, 0.0030216428, 0.0227051862, -0.00755636301, -0.0276986435, -0.00241550943, -0.0139094833, -0.0055258912, 0.024353629, 0.00651555834, 0.0215260088, 0.0201061815, 0.0254365467, 0.0192037504, 0.0185660329, 0.00844676234, -0.0241009481, -0.0033119251, 0.00915667508, -0.00224404735, 0.00546873733, 0.0166889746, -0.0177598596, -0.00728563359, -0.0105163399, 0.0136929, 0.0304420348, 0.0189149715, 0.0136929, -0.0150886616, 0.0288056266, -0.00976431277, 0.00679832, -0.0152089857, -0.0186983887, -0.00134387147, 0.009631956, 0.0101072369, 0.0200460199, -0.0178320538, -0.0110156853, 0.00703896862, -0.0150164664, -0.0151488231, -0.0281558745, -0.00626287749, 0.00820611417, 0.0108833285, 0.0118038086, 0.000871598779, -0.0031825765, 0.00859716814, -0.00945147, -0.00200791098, -0.00100846763, 0.00456931349, -0.0110577988, 0.00466557266, -0.00878968649, -0.00331794121, -0.0018770583, 0.00286371727, -0.00531532383, 0.00309534138, 0.0295516364, -0.00722547108, -0.0213575549, -0.0245581791, -0.00716530904, 0.011129993, 0.00236737961, 0.00854302198, -0.023655748, 0.00681636902, 0.00297802524, -0.0274579935, -0.000745258352, 0.0220434032, 0.0100831725, -0.0202024411, -0.00628694193, -0.0106246313, 0.00263510109, 0.021850884, 0.0019808379, -0.00547475321, 0.0104501611, -0.00800156314, -0.0148119153, -0.0202987, -0.0040910244, 0.00527922669, 0.0106908102, -0.0241611097, 0.016267838, -0.00949358381, -0.00456630532, 0.0202866681, -0.00868139509, 0.00559808593, -0.0128987599, 0.00271631987, 0.0152210174, 0.0164723899, -0.0377577506, 0.00399476523, 0.0270729568, -0.0238121692, 0.0151488231, 0.00142133026, 0.02981635, -0.0143907806, 0.00317054405, -0.0129589215, -0.0058748317, 0.00313444668, 0.00128746952, -0.0231142882, 0.00545670465, -0.0154135367, -0.00924691837, -0.00569735328, -0.0162558071, 0.00274640112, 0.0169777516, 0.0241611097, 0.00156722334, 0.0225006342, 0.00302465097, 0.0167732015, -0.0165686496, 0.0252921581, -0.00738790911, 0.0154376011, -0.0070510013, -0.0012130189, -0.0168694593, -0.00568532106, 3.50867413e-05, 0.0152089857, 0.0127664031, -0.00236587552, 0.0276023839, 0.00262607681, 0.0118338903, 0.000544467242, -0.00135891198, 0.0102335773, 0.00297050504, -0.0184697732, -0.0330891684, 0.00634710444, 0.0177237615, 0.0151006933, 0.00571540184, 0.0252680928, -0.00296749687, -0.020082118, -0.0005696601, 0.0254365467, 0.0016920598, 0.000474528759, 0.00706303352, 0.0083505027, 0.00181388808, -0.028540913, -0.0150405318, 0.0158467032, 0.0106847938, -0.00284266053, -0.00857911911, -0.00712921191, -0.00228465674, 0.0096139079, 0.00857310276, -0.0235835537, 0.0133198947, 0.00185449747, -0.018770583, 0.00972821563, -0.0033269655, -0.0280596148]
02 Aug, 2018
unordered_multiset emplace() function in C++ STL 02 Aug, 2018 The unordered_multiset::emplace() is a built-in function in C++ STL which inserts a new element in the unordered_multiset container. The insertion is done automatically at the position according to the container’s criterion. It increases the size of the container by one. Syntax: unordered_multiset_name.emplace(val) Parameters: The function accepts a single mandatory parameter val which is to be inserted in the container. Return Value: It returns an iterator which points to the newly inserted element. Below programs illustrates the above function: Program 1: // C++ program to illustrate the // unordered_multiset::emplace() function #include <bits/stdc++.h> using namespace std; int main() { // declaration unordered_multiset<int> sample; // inserts element using emplace() sample.emplace(11); sample.emplace(11); sample.emplace(11); sample.emplace(12); sample.emplace(13); sample.emplace(13); sample.emplace(14); cout << "Elements: "; for (auto it = sample.begin(); it != sample.end(); it++) cout << *it << " "; return 0; } Output: Elements: 14 11 11 11 12 13 13 Program 2: // C++ program to illustrate the // unordered_multiset::emplace() function #include <bits/stdc++.h> using namespace std; int main() { // declaration unordered_multiset<char> sample; // inserts element using emplace() sample.emplace('a'); sample.emplace('a'); sample.emplace('a'); sample.emplace('b'); sample.emplace('b'); sample.emplace('c'); sample.emplace('d'); cout << "Elements: "; for (auto it = sample.begin(); it != sample.end(); it++) cout << *it << " "; return 0; } Output: Elements: d a a a b b c Learn C++ Online – Master everything from basics to advanced concepts. Apply your knowledge with practical exercises and boost your skills. Take the Three 90 Challenge: finish 90% in 90 days for a 90% refund. Start now and level up your C++ programming!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum/Algorithm for Dynamic Time out timer Calculation/Difference between Round trip time (RTT) and Time to live (TTL)/Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms/Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm/Round Robin Scheduling Algorithm with Different Arrival Time/Selfish Round Robin CPU Scheduling/Find the order of execution of given N processes in Round Robin Scheduling/Calculate server loads using Round Robin Scheduling/set::lower_bound() Function in C++ STL/Implementation of lower_bound() and upper_bound() in List of Pairs in C++/Difference between std::set::lower_bound and std::lower_bound in C++/Difference between std::set vs std::vector in C++ STL/std::minmax() and std::minmax_element() in C++ STL/std::rotate vs std::rotate_copy in C++ STL/std::bitset::to_ullong and std::bitset::to_ulong in C++ STL/std::upper_bound and std::lower_bound for Vector in C++ STL/std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++/std::string::append vs std::string::push_back() vs Operator += in C++/Vector push_back() in C++ STL/vector :: cbegin() and vector :: cend() in C++ STL/unordered_multiset cend() function in C++ STL/unordered_multiset bucket() function in C++ STL/unordered_multiset emplace_hint() function in C++ STL/unordered_multiset end() function in C++ STL/unordered_multiset size() in C++ STL/unordered_multiset emplace() function in C++ STL
https://www.geeksforgeeks.org/unordered_multiset-emplace-function-in-c-stl?ref=asr10
PHP
unordered_multiset emplace() function in C++ STL
What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, jQWidgets jqxTreeMap width Property, Round Robin Scheduling Algorithm with Different Arrival Time, Difference between Flow and TypeScript, unordered_multiset emplace() function in C++ STL, jQWidgets jqxTree destroy() Method, jQWidgets jqxTree collapseAll() Method, Find the order of execution of given N processes in Round Robin Scheduling, jQWidgets jqxScrollView buttonsOffset Property, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Vector push_back() in C++ STL, jQWidgets jqxListBox enableHover Property, Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm, std::rotate vs std::rotate_copy in C++ STL, Selfish Round Robin CPU Scheduling, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxSlider buttonsPosition Property, std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++, std::upper_bound and std::lower_bound for Vector in C++ STL, Difference between Round trip time (RTT) and Time to live (TTL), jQWidgets jqxSlider rtl Property, Difference between std::set::lower_bound and std::lower_bound in C++, jQWidgets jqxTooltip opacity Property, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, jQWidgets jqxToolBar height Property, PHP, std::minmax() and std::minmax_element() in C++ STL, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, Node.js date-and-time Date.transform() Method, unordered_multiset size() in C++ STL, TypeScript Optional Parameters, jQWidgets jqxToolBar theme Property, Difference between std::set vs std::vector in C++ STL, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, Steps to Diagnose and Resolve a Slow Network, How to use Optional Chaining with Arrays and Functions in TypeScript ?, Calculate server loads using Round Robin Scheduling, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, jQWidgets jqxScrollView showButtons Property, Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms, jQWidgets jqxScrollView disabled Property, jQWidgets jqxSplitter destroy() Method, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, set::lower_bound() Function in C++ STL, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, jQWidgets jqxTree collapseItem() Method, std::string::append vs std::string::push_back() vs Operator += in C++, unordered_multiset cend() function in C++ STL, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), jQWidgets jqxSortable opacity Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, vector :: cbegin() and vector :: cend() in C++ STL, jQWidgets jqxSlider height Property, jQWidgets jqxSwitchButton onLabel Property, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, jQWidgets jqxToolBar tools Property, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTree width Property, Implementation of lower_bound() and upper_bound() in List of Pairs in C++, jQWidgets jqxTree clear() Method, TLS Handshake?, Algorithm for Dynamic Time out timer Calculation, Adhoc TCP, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, jQWidgets jqxTabs position Property, Differences between Wireless Adhoc Network and Wireless Sensor Network, jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, std::bitset::to_ullong and std::bitset::to_ulong in C++ STL, unordered_multiset emplace_hint() function in C++ STL, unordered_multiset bucket() function in C++ STL, Impact of Three-way Handshake and Slow Start Algorithm, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, unordered_multiset end() function in C++ STL, How to Sort an Array Having Optional Properties in TypeScript ?
GeeksforGeeks
[-0.0425269715, 0.0221316461, -0.0142534031, 0.000616297708, 0.0377844758, 0.0181925241, -0.0273924489, 0.0176742189, 0.00798838399, 0.0121672228, -0.0227017831, 0.0261355583, -0.0213282742, 0.0070359977, -0.00350504136, -0.0353225246, 0.007165574, 0.0105280811, -0.00693233684, -0.0269000586, 0.00296405982, -0.0284549743, -0.0128669357, -0.0176223889, 0.00356335077, 0.00254941545, -0.0171818286, 0.00565277, 0.0194753315, -0.00713965902, -0.0167412683, 0.0168449301, 0.00254455628, -0.0314870626, -0.0187885761, 0.0398317799, 0.0515714027, 0.0102041401, -0.0119210277, -0.0184257627, 0.011849761, -0.00628769398, 0.0320831127, 0.00106495596, -0.00759317633, 0.00256723212, 0.0226629097, -0.044807516, -0.0139942495, 0.0247361325, 0.0470103137, 0.0138905887, 0.033923097, 0.000866542105, -0.035788998, 0.021729961, 0.0202009585, 0.000553534133, -0.0239975471, -0.0155362086, -0.0356594212, -0.0104956878, 0.0132297492, -0.0341822505, 0.00649177702, -0.0253062677, -0.00572403707, 0.0404537469, 0.0495759249, -0.0141238263, -0.0140979113, 0.0413348675, -0.00166667625, 0.00574023416, -0.0298544, -0.00125284167, -0.0572727621, -0.0315129757, -0.0129576391, 0.0220409427, -0.00630389107, 0.00813739747, 0.0111630056, 0.00511826715, 0.0663431138, -0.0295175016, 0.00942668226, -0.0195012465, 0.0423455648, 0.0266409051, -0.0502497219, -0.0341563374, 0.015575082, -0.0106835729, -0.0288177878, 0.0315388925, 0.0294656698, 0.0323940963, -0.0142015722, 0.037810389, 0.00345645, -0.0024668104, 0.00261420361, -0.0108455438, -0.0117396209, 0.0438227355, 0.042319648, 0.017946329, 0.00307905884, -0.0150956493, 0.0194494165, 0.00381926401, -0.0131001724, 0.0656693131, -0.00664726878, 0.00794303231, 0.00854556262, -0.0195401199, 0.0334047936, -0.00282476516, 0.0252544377, 0.0188663229, -0.014953115, -0.00848725345, -0.040401917, 0.0195789915, -0.00609656889, 0.0111241331, 0.0484097376, -0.00257533067, -0.0320053659, -0.015899023, -0.0266149901, -0.0383027792, 0.00364433578, 0.0521933697, -0.00404602289, 0.0319794528, 0.013981292, -0.0192032214, -0.0738585442, 0.0104697719, -0.0135148168, 0.0431748517, -0.0151993101, -0.0357630812, -0.0137610119, 0.0180111174, 0.00563981244, 0.00857795682, -0.0317203, -0.0289991964, 0.0268223118, 0.00599290803, 0.0178815406, -0.00694529433, 0.01657282, -0.0257986579, -0.00468094693, -0.0459477864, 0.0349078774, -0.00761261256, -0.00879823696, -0.0122384895, -0.0238290969, 0.0347783, 0.000665293774, 0.00411728956, -0.0284031443, 0.0378881358, 0.014305233, 0.031849876, 0.022455588, -0.00880471524, 0.00105766731, -0.0243603606, 0.0270814653, 0.0248527508, 0.0617301911, 0.0402723402, 0.031331569, 0.0146680474, 0.0420086645, 0.0225333329, -0.0137350969, 0.00386785506, 0.0322645195, -0.0229220632, 0.0550958812, 0.00274863909, 0.0122125745, 0.041645851, 0.0425528847, 0.0282994825, 0.0289473645, 0.0125883464, -0.0262521766, 0.0107224463, -0.00040310403, 0.0349078774, 0.00404602289, -0.0353484377, -0.000799729256, -0.00924527552, 0.0167801417, -0.0145125557, -0.00724979909, -0.0343636572, 0.00981541164, 0.00223519257, -0.00217526359, 0.00177519652, 0.0112407515, -0.00234047347, 0.00542277191, -0.0117331417, -0.0386396796, 0.0368515253, 0.0284290593, -0.0360999815, 0.00632656692, -0.0327050798, 0.00521544972, -0.0712151825, -0.0426565483, -0.0393134765, 0.0203434937, 0.0242437422, -0.00763852801, 0.00680923928, 0.0205637719, 0.0529189967, -0.0119728586, -0.0037609546, 0.0501719788, -0.0359444916, -0.0305022821, -0.0262392182, 0.00971822906, 0.0167412683, -0.00603825971, 0.0363850482, -0.0417235978, -0.0054195323, 0.00460968, 0.041594021, 0.0267186519, -0.0106187854, -0.00238906476, -0.0392616466, 0.00499516958, 0.0226629097, 0.0278070923, -0.0288955346, 0.0276256856, 0.0296989083, 0.0079754265, -0.0282994825, -0.00952386484, -0.0591904931, -0.0203694087, 0.0194105431, -0.0310205873, -0.0210691206, 0.00912217796, -0.0604344271, 0.0376030691, -0.0108261071, -0.0114739891, -0.0357630812, 0.0256302096, 0.0334825367, 0.0138387578, -0.0136832669, 0.0205508154, 0.0116294809, -0.0174150672, 0.00440235762, -0.0236347336, -0.0636479184, 0.00491742371, -0.0272369571, -0.00110625837, -0.00191287138, 0.0308132656, -0.0258375313, -0.0124004604, -0.0189440679, -0.000604959787, -0.0202787053, -0.0150697343, -0.00853908435, -0.0129058082, 0.0120765194, 0.057324592, 0.0310205873, -0.02666682, -0.0234274101, -0.0294397548, 2.50168468e-05, -0.0178297106, -0.0229091048, 0.001585691, -0.00442503346, -0.0288955346, 0.00796894822, 0.00431489386, -0.00219146069, -0.00142048113, -0.0483060777, 0.0310724173, -0.021107994, -0.0458182096, 0.0216133408, -0.0176223889, -0.0122125745, 0.0239327587, 0.00472953822, -0.0526598431, 0.00921936, -0.0439263955, -0.0141108688, -0.0232330468, 0.0340785906, 0.0261614732, -0.00701656146, -0.016598735, 0.0238290969, -0.0150956493, -0.0631296188, -0.0131260883, 0.0148753691, -0.0294138398, 0.0117396209, -0.00953034312, -0.0215744693, -0.00999033917, 0.010877938, -0.00395208, 0.00172336597, -0.0119404644, -0.0211986974, -0.0101717468, -0.00363785704, 0.0298025683, 0.0352966078, 0.003582787, -0.025073031, 0.00899260119, -0.00453517353, 0.000675416901, -0.0215096809, -0.0123227146, -0.00160512747, 0.034545064, -0.0509494357, -0.0122644054, -0.0320831127, -0.0172595754, 0.0160804298, -0.0103790686, 0.028662296, 0.0173891503, -0.00149822701, 0.00844838, -0.0153807169, -0.0108520221, -0.00672501465, 0.0300358068, -0.014655089, -0.00906386785, -0.0238938853, 0.0379399657, -0.0259800665, -0.0186071694, -0.00124474312, 0.0341563374, 0.034441404, 0.00537742, 0.0041561625, 0.00108601211, 0.0187367462, -0.0155880395, 0.0150049459, 0.0291287713, -0.0221446045, 9.69798275e-05, 0.021185739, -0.0152640985, 0.0129900333, -0.0165857784, 0.0105734328, -0.0601234436, -0.0400131866, 0.0147328349, -0.017246617, -0.0326532498, -0.0299839769, -0.0267186519, -0.0406869873, 0.0116424384, -0.0403241701, -0.017194787, 0.0209136289, 0.0225333329, -0.00744416332, 0.00388729153, -0.000775433669, 0.00571431872, 0.011065823, 0.0212894, -0.00859739352, 0.0100551276, 0.0101587884, 0.0173761938, 0.00270652678, -0.0413348675, 0.0252026077, 0.0382509492, -0.00288793375, -0.00901851617, -0.00518629514, -0.00167639449, 0.0184128042, 0.0120829977, 0.039054323, -0.0125170788, -0.00261096423, -0.0140331229, -0.0138905887, 0.0296470784, 0.0044477093, 0.00745064206, 0.0368774384, -0.00879823696, -0.0483838245, 0.0500164852, -0.000693233684, -0.00597347133, -0.0137998853, 0.0226110797, 0.0272628721, -0.00874640606, -0.0272369571, -0.0017913935, 0.0443410389, -0.000903795299, -0.00599938678, 0.0101587884, 0.0493426882, -0.0156398695, 0.00896020699, -0.025396971, -0.00362813892, 0.0229868516, -0.0189570263, 0.037318, -0.00314384699, 0.0551995412, 0.00503404252, -0.0178167541, 0.0132621434, 0.0240105037, 0.00058309373, 0.00894077, 0.00122449687, 0.00892133452, 0.0357112512, 0.0218724944, 0.0100875217, -0.00274539972, -0.0329383165, -0.0204471536, 0.0118044093, 0.00775514683, -0.0135796051, -0.0328605734, -0.0257857013, -0.00299969339, 0.0015281915, -0.00861683, -0.0122968, -0.0380177125, 0.00266927364, -0.0223260112, -0.0442114621, 0.0133463675, -0.0292324331, -0.0383546092, 0.0343636572, -0.0272887871, -0.00564953033, -0.0124458121, -0.0537482873, 0.0040136287, 0.00753486715, -0.0276516, 0.00176547829, -0.00871401187, -0.000578234612, 0.0248138774, 0.0032766629, -0.0327569097, 0.021833621, 0.0207970105, -0.0434599221, 0.00726923533, -0.0114545524, -0.0310465023, 0.0187885761, -0.00158002204, 0.0336898603, 0.0290251113, 0.0222223513, -0.0130029907, 0.0104697719, 0.0455849729, 0.00978949573, -0.046828907, 0.0135666477, 0.0130029907, 0.00908978377, -0.020511942, 0.0175705589, -0.0276516, 0.01157765, -0.0117784934, -0.0100616068, 0.00934245717, -0.0392875597, -0.023129385, 0.0121283503, -0.0314870626, 0.0174928121, -0.00984780584, -0.0235440303, -0.00344673195, -0.00763204927, -0.0208877139, -0.0136703085, 0.00425334508, -0.00704895565, 0.030580027, 0.000181002019, -0.0132556641, -0.00522192847, 0.0160933882, -0.0214967225, -0.0248397943, -0.00179625268, 0.0103272377, -0.00922583882, -0.0220150277, -0.00671853591, -0.0106900521, 0.0026287809, -0.00960808899, -0.0243085306, -0.00225786865, 0.00670557795, 0.00619375147, 0.00553939072, 0.0341563374, 0.00480080536, 0.0107677979, -0.0269259736, 0.000459591247, 0.00944611896, -0.0202009585, 0.00347912591, 0.0123162353, -0.00581150083, 0.0315129757, -0.00339166191, -0.0250989459, 0.0308132656, 0.0450148359, 0.0394689664, -0.00681571802, -0.0212894, 0.00701656146, 0.00221413653, -0.0108973738, -0.0103272377, 0.00601882301, 0.00836415589, -0.0621966645, -0.019164348, -0.0100097759, 0.0117460992, 0.0209913757, 0.0145384707, 0.00149822701, 0.00506319711, 0.0158212762, -0.00782641396, 0.00962104648, -0.00452869479, -0.0179333724, 0.00712670153, 0.0147457933, 0.0156269129, 0.013307495, -0.00346940779, -0.000376783835, 0.00486883288, 0.0251119044, -0.00337222544, 0.0060998085, -0.0118951127, -0.0346228108, 0.0183998477, 0.0267186519, -0.0140201654, -0.0072174049, 0.00578234624, -0.0175576, 0.0294656698, -0.00941372477, -0.00677684508, -0.0223519262, -0.03319747, -0.00571755832, 0.0308391806, 0.00783289224, 0.0112342732, -0.0245158523, -0.00582445879, 0.0179722458, -0.00775514683, 0.0244640224, -0.0240105037, 0.015302971, -0.0169485919, 0.00908978377, 0.00513770385, -0.0117007475, 0.0293620098, -0.00991259329, 0.0247490909, -0.016598735, 0.0205249, 0.0144477673, 0.0318239592, 0.00267413259, 0.00659867749, -0.0221446045, 0.0207063071, 0.0209006704, -0.0037447575, -0.0411534607, 0.0142404446, -0.0106770946, 0.00568840327, -0.00773571, -0.031331569, -0.0216651727, 0.00682219677, -0.00885006692, 0.00868809689, 0.00248786667, -0.0238809288, 0.00413024751, -0.014655089, -0.00158245163, -0.017868584, -0.0301653836, -0.0270814653, -0.0185294226, 0.00739881163, -0.0108390646, -0.00368320872, -0.00392616447, 0.000962104648, -0.00621318771, -0.0271592103, -0.0221834779, 0.00859091431, -0.00868161768, -0.00325074769, 0.0135796051, -0.0126790497, -0.012873414, -0.0187756177, 0.0120311677, -0.00794951152, -0.021781791, 0.0167023968, 0.010579912, -0.0345191509, 0.0057791071, -0.0315129757, 0.015575082, 0.0161452182, -0.000435295689, -0.00296567963, 0.00682867551, 0.0177390072, 0.0112731457, -0.0141626988, 0.00409461372, -0.000942668237, -0.0228443164, -0.0555105247, 0.010741883, 0.0541111, -0.0089472495, -0.00138727715, -0.0329383165, -0.00101312541, 0.0131843975, -0.0134241134, 0.00686754845, 0.00809852406, 0.0162747949, -0.00576291, -0.0128021473, -0.0153807169, 0.0164691582, -0.0442632921, 0.00476517156, 0.0216392558, -0.00151442399, -0.00951738562, 0.0555105247, -0.0161840916, -0.00686106971, -0.019164348, -0.0128669357, -0.0112342732, -0.0307614338, 0.0100097759, 0.0138258, 0.0145125557, -0.0368774384, -0.00207808125, 0.0289214496, -0.0192291364, -0.0321867764, -0.0242437422, 0.00628121523, 0.0342340805, -0.00875288527, 0.00938133057, -0.031849876, 0.0207710955, 0.0350633711, -0.015277056, -0.00916105, 0.037084762, 0.0229609367, 0.0322645195, 0.0239845887, -0.00724332, 0.0057758675, -0.0376549, 0.0306318589, 0.0243344456, 0.0163784549, -0.0163266249, 0.0443410389, -0.00240688142, -0.00807908736, 0.0201361701, -0.0261226, 0.0135018593, -0.000139902011, 0.0241271239, -0.00717205321, 0.0193975847, 0.00248138793, 0.0080143, 0.0217170026, -0.0015290014, -0.00297539774, -0.017298447, 0.00535150478, 0.0040136287, 0.00584065588, 0.0108196279, -0.0151345218, 0.0256431662, 0.0152381836, 0.0166635234, -0.016650565, 0.00926471129, 0.015600997, -0.00348884426, 0.0111176539, -0.0437709, 0.00952386484, 0.0114869466, 0.0270296335, 0.026316965, 0.0197344832, -0.0165598616, 0.00318272, -0.0163266249, -0.0270037185, -0.0223648846, 0.0186978728, 0.0127308797, 0.0104568144, 0.00376743358, -0.0163784549, -0.0246843025, 0.0235051569, 0.0244510639, 0.0365664549, 0.0208488405, -0.0222741812, 0.0306577738, -0.00723036239, 0.00743768457, 0.00870753359, 0.0170522518, 0.0161581747, -0.004966015, 0.00723684113, 0.0105604753, 0.0508716889, -0.0329642333, 0.039054323, -0.0145643856, -0.0464660935, 0.0255654212, 0.0471917205, 0.0272887871, 0.028636381, -0.0235958602, 0.00465503149, -0.00620994857, 0.00289441249, 0.005613897, -0.0207322221, -0.0128345415, 0.0247490909, -0.0158601496, -0.0161063448, 0.035737168, -0.00377067295, 0.00724332, -0.0524525233, -0.0145384707, 0.0156657845, -0.00301265111, -0.0245547257, 0.00245385291, 0.0095756948, -0.00225300947, 0.0207840521, 0.0120700402, -0.0130289057, -0.00873344857, -0.00562361535, 0.0183739308, -0.0372661687, -0.0434599221, 0.0069129, 0.0148883266, 0.0119858161, 0.0113055399, 0.007165574, 0.0383546092, 0.023077555, 0.0271851253, 0.0191125181, -0.0229868516, 0.0196178649, -0.0209784172, 0.021807706, -0.00133706629, -0.0263040066, 0.00340138027, -0.00336250733, -0.0137091819, 0.0108973738, 0.0150179034, -0.0291806031, -0.00603178097, 0.0140590379, 0.00506319711, -0.0142663606, -0.0573764257, -0.00476193242, -0.00899908, 0.0244640224, -0.0213930607, -0.017220702, -0.0501460619, 0.0297507383, -0.00857147761, -0.0120182103, 0.00292032794, 0.0121089136, -0.0226758681, -0.0130029907, 0.00029174934, 0.00503080338, -0.0335084535, 0.00792359654, -0.0315907225, -0.0145514281, 0.00349208363, 0.00456432812, 0.000949956884, 0.0399354436, 0.0122190537, 0.0107613187, 0.0214578491, 0.00332039502, 0.00898612291, -0.0242696572, -0.0590868331, -0.0167931, -0.0197733566, 0.00490446622, -0.00721092615, 0.00339166191, -0.00342405611, 0.00642698864, 0.015899023, 0.0277552623, -0.013631436, -0.0172595754, -0.0150956493, -0.00826697331, 0.0387951694, -0.0171688721, 0.0070359977, -0.0112407515, 0.0158860646, -0.0131843975, -0.00339814066, -0.00817627, -0.0197344832, -0.0187237877, -0.00635572197, -0.0673278943, 0.00495629665, 0.00176709797, 0.00542601105, -0.0274442788, -0.0116553959, -0.0392098166, -0.0137610119, -0.0402723402, -0.0127567956, -0.0204471536, 0.0107094888, -0.0409979708, -0.00979597494, 0.00440883636, -0.0275738556, 0.000506562705, -0.00362813892, -0.00802077819, -0.00686754845, -0.00321511412, 0.00899260119, 0.00976358075, -0.0113832857, 0.0138258, -0.00498869084, 0.0113120191, -0.00625206064, 0.000959675119, -0.0103466744, -0.0146939624, 0.00589896506, 0.0286882129, -0.012575388, 0.0160545148, 0.0116489176, -0.00798838399, 0.0172336604, -0.00774218934, -0.00942020305, -0.0143181905, 0.0159638114, 0.0135796051, 0.0134370718, 0.0179722458, 0.00567868538, 0.0227147415, 0.027988499, 0.0189051945, -0.0345709808, -0.0337935202, 0.0280403309, -0.0255783796, -0.00227244594, 0.010903853, -0.0200972985, 0.0376030691, 0.0675352141, 0.0212505274, -0.0159897264, -0.00351475948, -0.0258116163, -0.0041561625, -0.0235829018, -0.0316425525, 0.0135666477, 0.0239586737, -0.0447556861, -0.00858443603, 0.0337416902, -0.0107289245, 0.00952386484, 0.00875288527, -0.0114156799, 0.0261614732, 0.0114351166, 0.00235991, 0.00824105833, -0.00964048319, -0.0148624117, 0.0310724173, 0.0161840916, -0.00971175, 0.0189958978, -0.0480469242, 0.00728867156, 0.00500164833, 0.0167412683, 0.0225851648, -0.000807422854, -0.00377391232, -0.0183091443, 0.0073599387, -0.0163395833, -0.00713965902, 0.0156917013, -0.0269778036, -0.0285327211, -0.0160545148, -0.023777267, 0.0110593447, -0.0110139931, 0.0203564502, 0.00839007087, -0.0268741436, -0.0156528279, -0.00619375147, 0.0136703085, 0.0209654588, -0.00505023962, 0.0148105808, 0.021133909, 0.0074636, 0.00582445879, 0.00751543045, -0.00715909526, -0.00185456208, -0.00398123451, 0.0119793369, -0.0073599387, 0.0239845887, 0.00788472313, -0.0115193408, -0.0173502788, 0.00908978377, -0.0189051945, 0.0131131308, 0.0207710955, 0.0108196279, 0.0206026454, 0.0285845511, 0.00713965902, 0.0247490909, -0.0128539773, -0.00697121, 0.00707487063, 0.0176223889, 0.00301751, 0.00764500676, -0.00728867156, 0.0223260112, -0.0350633711, 0.000240931098, 0.00331067666, 0.00636220071, 0.0264076684, 0.0199806783, -0.019242093, -0.0116618751, 0.0010430899, -0.0130029907, -0.0398836136, -0.0150308609, 0.036410965, 0.0358149149, 0.00880471524, 0.033819437, -0.00810500327, 0.0230645966, 0.0273924489, -0.015600997, -0.00874640606, -0.0075413459, 0.0327309966, 0.000777863257, -0.00502108503, -0.00677036634, 0.000464450364, 0.00453193393, -0.00392292533, 0.0128151048, -0.00442827307, 0.0149660725, 0.00667318376, 0.0240623355, 0.054059267, -0.0294397548, -0.00301589048, -0.0291546863, -0.0289473645, 0.00564305158, -0.000856014, 0.000528833654, 0.00903795287, -0.0174280237, 0.0306318589, -0.0197344832, -0.0379658826, 0.00971175, -0.00639459491, -0.0252933111, 0.0284549743, -0.00682867551, 0.011227794, 0.0142663606, 0.0195919499, 0.0207063071, -0.00330905709, 0.0249434542, -0.0126466556, -0.00667966297, 0.0041755992, 0.0134759443, -0.0108196279, -0.000615487865, 0.0105734328, -0.00258990796, 0.00776162557, 0.0119793369, 0.0139683345, -0.0232200883, 0.0236217752, -0.0109427255, 0.00971822906, 0.00363137829, -0.00258990796, -0.0270037185, -0.00586981047, -0.00439911848, -0.00420475379, 0.00487855077, 0.00712670153, 0.0131649608, -0.0168190151, 0.0111111756, -0.00410433207, 0.000138484771, -0.00710726483, -0.00187561824, -0.0147976233, -0.0024668104, 0.0314093158, -0.00691937888, -0.0158471931, -0.00621318771, 0.00770979514, -0.021082079, -0.0269518886, 0.00151928316, 0.0162100065, 0.0298803151, -0.0125170788, 0.00553615112, 0.00086492236, -0.0142922755, 0.0259152781, 0.0140849529, -0.0080466941, 0.00818274915, -0.0114739891, -0.0316684693, -0.00532882893, -0.00723684113, 0.00836415589, -0.00925823301, -0.00634276401, 0.0188404061, -0.0346228108, -0.000809852441, -0.0292065181, 0.0303467903, 0.0110787814, 0.0225592498, 0.0134241134, -0.0466993302, -0.0177908372, -0.0127308797, -0.000843056361, 0.0101263942, 0.00953034312, 0.0121153919, 0.00688698515, 0.00233561429, -0.0300358068, 0.0031146924, -0.00300941151, -0.012899329, -0.00574671291, -0.00234371284, 0.0173502788, 0.0274961088, 0.0175576, 0.00529643474, 0.00644318573, -0.00298349629, -0.00197118078, 0.00622290606, -0.00262068235, 0.0151604377, -0.00674445089, -0.0154584628, -0.00965992, -0.0275479406, 0.00417235959, -0.00755430339, 0.00631037029, 0.0249564126, -0.0105475178, 0.00468094693, 0.028610466, 0.0106187854, 0.0038354611, -0.0123810237, -0.00231941743, -0.0304504503, 0.010605827, 0.0301135518, 0.0264983717, -0.00649825577, 0.0154843787, 0.00481700199, -0.0227536131, -0.0181666091, -0.00936189387, -0.0177260507, 0.0262003448, -0.00847429596, 0.0196956117, -0.0293360949, -0.0242437422, -0.00590220466, 0.0155880395, 0.0292324331, -0.0150956493, -0.0186719578, 0.00323293079, -0.027988499, -0.0175316855, 0.00980893243, 0.0372402519, 0.0109621622, -0.0231812149, -0.00334307086, 0.0324200131, 0.0115906075, 0.014331148, 0.00356982951, -0.00452869479, 0.0306318589, -0.0122384895, 0.00240688142, -0.00267413259, 0.00729515078, -0.0119599, 0.0352966078, -0.00611600559, -0.0148753691, -0.0255006328, 0.00281342724, 0.00714613777, -0.0102365343, 0.00942668226, -0.00976358075, 0.0203434937, 0.0205508154, -0.00992555171, -0.00566572743, -0.0130548207, 0.0106447, -0.0287141278, 0.0209265873, 0.00472629862, 0.00515714, 0.0173891503, -0.00747655751, -0.0015573462, -0.00501136668, 0.0126207406, 0.00814387575, 0.024347404, -0.0134241134, -0.0234533269, -0.00954978, 0.00160674716, -0.00446714601, 0.0162488781, 0.0229609367, 0.0110787814, 0.0237383936, 0.0261485148, 0.029258348, -0.00485911453, 0.000424362661, -0.0276775155, 0.0119922943, 0.00831232499, -0.019889975, -0.0138905887, 0.00265145674, -0.0134889018, 0.00101636478, -0.0128151048, 0.0117655359, -0.0140072079, -0.0028782154, 0.0280403309, -0.021082079, -0.00519925263, 0.00211695419, 0.00680923928, 0.0059054438, -0.00197118078, 0.00465827109, 0.0219502393, -0.000310375937, 0.0037609546, -0.0160286, -0.0116489176, -0.00706191314, -0.0163136665, -0.00557826366, -0.014331148, 0.0044639064, -0.0123032779, 0.0289473645, 0.00766444346, 0.0057791071, -0.00329124019, -0.0144477673, 0.000164197583, 0.00497897249, -0.0107030096, 0.00447038515, -0.0321608596, -0.0126984855, -0.016650565, -0.0151733952, -0.0226499531, 0.00488179037, 0.000665698666, -0.000490770559, -0.000240728637, 0.000860063243, 0.0177649222, -0.0100551276, -0.0140072079, -0.00109249097, 0.0227665715, 0.00320863537, 0.000485911442, 0.0298284851, -0.0153807169, 0.00100745645, 0.00887598284, -0.0343118273, 0.0164432433, 0.0191513896, 0.0154584628, -0.00540657481, 0.0171688721, 0.0101847043, -0.0253451411, 0.0145384707, 0.0186071694, 0.0120570827, -0.00381602463, -0.0121477861, 0.0286882129, -0.00895372871, 0.00761909178, -0.0248397943, -0.000225746364, 0.000889217947, -0.00329771917, 0.00250244397, 0.0196437798, 0.0162229631, 0.00826049503, -0.0165857784, -0.0100486493, -0.024347404, -0.0136055211, 0.0253710561, 0.0277034324, 0.0019258291, -0.00951090641, -0.0210950356, -0.0104438569, -0.010605827, 0.00216392567, -0.0213412307, 0.0180759057, 0.0196696948, -0.00166343688, -0.0310205873, -0.00220603799, 0.0246454291, -0.00684163347, 0.0163525399, 0.00596375344, -0.00851316843, 0.00944611896, 0.0128086256, 0.0113055399, 0.0153936744, -0.0155102937, 0.00348560489, 0.00140023488, 0.00617431477, -0.0163007099, 0.0126790497, -0.00356659014, -0.00619375147, 0.0186719578, 0.0204082802, -0.0051117884, 0.0274701938, -0.000757616945, 0.0137350969, -0.0126920072, 0.00771627389, -0.00928414799, -0.0386915095, -0.00839655, -0.0089796437, 0.00439263973, 0.0108714588, -0.00184160436, 0.00840950757, -0.0140072079, -0.0349856243, 0.00649501663, 0.0122579262, -0.0207322221, -0.0203823652, 0.00358602661, -0.00887598284, 0.0213930607, 0.0210302472, 0.0131325666, 0.0338971838, 0.00419503544, 0.00440883636, 0.0197085682, -0.0275220238, -0.012497643, -0.0470621437, -0.00857795682, -0.0207710955, 3.90247624e-05, 0.0198770184, -0.0308391806, 0.0280144159, -0.0027907514, 0.0118238451, -0.00550051779, 0.035840828, -0.024425149, 0.0134629868, 0.0099709034, 0.00623262441, 0.0412830375, -0.00974414404, 0.0171688721, -0.00975062326, 0.0119599, -0.015924938, 0.000479432638, -0.00534178643, -0.00483319908, 0.00340785901, 0.00595727423, 0.00489798747, -0.0202916618, 0.00462911651, 0.0214708075, -0.0304504503, -0.00161160633, -0.00465179235, 0.0124328546, 0.0302431285, 0.00730162952, 0.000954816, 0.0110334298, 0.0298025683, -0.0262392182, 0.0157435313, 0.0133852409, -0.0160545148, 0.00357306888, -0.0191125181, -0.0191254746, -0.00802077819, 0.0020877996, -0.0314093158, 0.0186071694, -0.0148235392, 0.00996442419, -0.0159897264, 0.0231423434, -0.0134111559, -0.00249920459, 0.00389700988, 0.0206156038, 0.0278330073, 0.0112731457, -0.0141108688, 0.0163525399, -0.00540009607, -0.012575388, -0.00339166191, 0.0163525399, 0.00490770582, -0.00874640606, 0.00516037969, 0.00872049108, 0.0141626988, 0.0117396209, 0.0127114439, 0.000157313829, -0.0163266249, -0.0148883266, 0.00244899374, -0.0158601496, 0.0194494165, -0.00316490326, 0.0288696196, 0.0227276981, -0.0123745454, 0.0324718431, -0.013631436, 0.0168578885, -0.012011731, 0.0287400428, 0.00832528248, 0.00325884623, 0.00807260908, -0.000649906578, -0.00269518886, -0.00201977184, 0.010553997, -0.0235829018, -0.000886788417, 0.0203046203, 0.0297248233, 0.00724979909, 0.00330095855, 0.00289117312, -0.0321090296, 0.0111370906, 0.0165857784, 0.021082079, 0.0437190719, -0.021833621, 0.0212116539, -0.0294397548, 0.0224685464, -0.00528347725, 0.0024668104, -0.0114804683, -0.00431489386, 0.00677036634, 0.0131584825, -0.0047716503, 0.007489515, -0.0106187854, -0.00479108701, 0.00392940408, -0.0131584825, -0.0111046964, -0.00872696936, -0.00981541164, 0.00456108898, 0.0301653836, -0.0100292126, 0.0140849529, 0.0112083573, -0.000400876947, 0.00671853591, 0.0101328734, -0.0157305729, 0.0236865636, -0.000843866204, 0.0235829018, 0.00734698121, -0.00470686238, -0.0366960317, -0.0219113678, 0.0147457933, 0.00602854136, -0.0179852024, -7.41014956e-05, 0.0317721292, 0.0104762511, 0.0305022821, -0.0113703283, -0.0135148168, 0.0171299987, -0.0106576579, 0.0128086256, -0.00111759629, -0.00607389305, 0.00997738168, 0.00284258206, 0.00787176564, -0.0121672228, -0.00562685449, 0.00659543835, -0.00695825182, 0.00521221, 0.00565277, -0.0043019359, 0.0235440303, 0.00467122858, -0.00046040109, 0.0157953613, 0.00107710378, 0.0144477673, -0.0128280623, -0.00320863537, 0.00284258206, -0.0190866012, 0.00456756772, 0.0114804683, 0.0154195903, -0.000197300295, 0.0112666665, 0.00741176959, -0.004966015, -0.00742472708, 0.0185553394, -0.00291384896, 0.00423714798, -0.00302884798, 0.00820218492, 0.010553997, 0.0149660725, 0.00607713265, 0.0156657845, 0.00338842254, -0.023751352, 0.00512474636, 0.00133382692, 0.00977006, 0.0192032214, 0.014305233, -0.0232071318, -0.0138128428, 0.0210302472, 0.00458052522, -0.0152640985, 0.0201232135, -0.0142015722, -0.0195919499, -0.00388081279, 0.0136184786, -0.0193587132, 0.00464855274, 0.012549473, 0.00726923533, 0.000933759846, 0.00204082811, -0.00755430339, -0.0274701938, -0.0205508154, -0.00290251104, 0.000466879923, 0.00646910118, 0.0158471931, -0.00903795287, -0.00563333323, 0.0136443935, 0.0207970105, -0.0076709222, -0.0249434542, 0.00878527947, 0.0116942693, -0.0223260112, 0.000482267118, -0.0115582142, -0.0104244202, 0.00486559328, -0.00436348468, -0.0132038342, 0.00165371865, 0.0037058848, -0.0107872346, -0.0209784172, -0.0247231741, -0.0023955435, 0.0172077436, -0.00811148155, 0.00668614171, -0.00112731452, 0.00481700199, 0.00901851617, 0.000135346592, -0.0132103125, -0.00142048113, -0.0224167146, -0.00717205321, -0.0302690435, 0.0152900135, -0.00226434739, 0.00210237689, -0.00107953325, -0.000932140159, 0.0027923712, -0.00120991957, -0.000897316495, -0.00118481414, -0.010417942, -0.010094001, -0.00947851315, 0.0201361701, -0.00455137063, -0.0111824423, 0.00305962237, -0.00862978771, 0.0044639064, 0.00785880815, -0.015575082, -0.00382898236, 0.00421771128, -0.0381472893, 0.00747007877, -0.0227147415, -0.031279739, 0.0142922755, -0.00074506423, -0.00846133847, -0.00523812557, -0.0166764818, -0.00840302836, -0.0115387775, 0.0181406941, 0.0240882505, -0.0234792419, 0.0195142031, 0.00979597494, 0.00267251302, -0.0144348098, 0.00525108306, 0.00158974028, 0.00870105438, 0.0120829977, 0.0221834779, 0.0201880019, -0.0161581747, -0.0184128042, -0.00204244792, 0.0143700214, 0.0129252449, -0.0063913553, -0.0124134179, -0.0167023968, -0.00996442419, -0.0137998853, -0.0107872346, -0.00779401977, -0.0039974316, 0.00483967829, 0.0118368026, -0.00405898038, -0.0280144159, 0.00708782859, -0.00686106971, 0.00227892469, 0.00110220909, 0.00965344068, 0.00706839189, 0.0206156038, -0.00533530768, -0.0366182886, -0.00105685741, 0.0196826532, -0.00229674135, -0.010715967, 0.00424362672, 0.00528347725, 0.00741824834, 0.000672987371, -0.0222223513, 0.00822810084, -0.020511942, 0.00640107365, 0.0162618365, 0.000819165725, 0.0156787429, 0.0182443559, -0.0187885761, -0.00244089519, 0.0110593447, -0.00234695221, -0.00174928119, -0.00933597889, -0.0211727824, 0.00615811767, -0.0160545148, 0.00451249769, -0.0014682624, 0.00648205867, -0.0101587884, -1.29449845e-05, 0.0175446421, 0.021755876, 0.00281180767, -0.0125624305, 0.00685459096, 0.00807260908, -0.00137027027, 0.00306934072, 0.00640431279, -0.0128410198, -0.0139294621, -0.0189958978, -0.00153790973, -0.00783937145, 0.0113508916, 0.00884358864, -0.0140719954, -0.0139942495, -0.0220798161, -0.00314870616, 0.0175835155, -0.0148494542, 0.00278427266, 0.0265890751, 0.00275997701, -0.0133593259, -0.0258504897, -0.00980893243, -0.00227730512, 0.0175316855, 0.0348819643, -0.0209525023, -0.00881119445, -0.00138889696, -0.0386137627, 0.00203920831, 0.00298187672, 0.0408683941, 0.00916105, 0.00534502603, 0.0026465978, -0.00366053288, -0.0196956117, 0.00305638299, 0.0152122676, 0.00995146669, 0.00673797214, -0.0199677218, 0.00164319051, 0.0115906075, 0.00361194182, 0.00405898038, -0.0184387192, 0.0174021088, 0.0230257232, 0.0175705589, 0.0397799499, 0.0257338714, 0.0223519262, 0.0126984855, 0.00584713463, -0.00258504902, 0.0226758681, -0.0236088187, -0.00135731266, 0.0125818672, -0.00516037969, 0.0161711331, -0.0307873487, 0.0214060191, 0.0340526737, -0.0158731081, 0.0049498179, 0.00727571407, 0.0215615109, -0.0120052518, -0.00525108306, 0.00553291151, 0.0203046203, 0.0148494542, -0.0051117884, 0.00563009409, -0.00673797214, 0.00875288527, -0.0139165036, -0.0282217376, 0.0192291364, 0.00303046778, 0.0139683345, 0.0182054825, 0.00309687573, -0.0100162551, -0.00915457215, 0.000301670021, 0.000173915803, 0.00956273731, -0.018490551, -0.00397151615, -0.0115646925, -0.0116683533, -0.00231941743, 0.0238809288, -0.00897316448, -0.0388988331, -0.0226499531, 0.0129382024, -0.00909626205, 0.00710078608, -0.000736560789, 0.00890189782, 0.0295952465, -0.0313574858, 0.0109168105, 0.00196632161, -0.021755876, -0.00416264124, 0.00753486715, -0.00898612291, 0.010068085, 0.0117460992, 0.0154843787, -0.00259314757, -0.0020149129, -0.0046615107, -0.00201167352, -0.00209589815, -0.0082993675, -0.0209913757, 0.00451897644, 0.0175705589, -0.00691937888, 0.0101587884, 0.0203305352, -0.00491094496, -0.0172077436, 0.00265307655, -0.000444204052, 0.013307495, -0.00378039107, 0.0080272574, 0.0131843975, 0.00910274126, 0.00366377225, 0.000274539983, -0.0288177878, 0.00355687179, 0.015950853, -0.00794951152, -0.0216392558, -0.00450925808, -0.00263849925, 0.0105604753, 0.00747655751, 0.000371519796, 0.000915943063, -0.00276807556, 0.0519342162, 0.0121024344, -0.00874640606, 0.00387433404, 0.0234662835, -0.00195012463, 0.00756726088, -0.0106641371, 0.0131649608, 0.000348236528, 0.007165574, 0.00121072936, -0.0108649805, 0.0074636, 0.00563981244, -0.010579912, 0.000884358829, 0.0102235768, 0.00999033917, -0.0146421315, 0.0181277357, 0.00548108108, 0.0156528279, -0.00167963398, -0.0278070923, 0.0169356335, 0.0116553959, 0.0125559522, 0.0216263, -0.00571107911, 0.00983484741, -0.00204082811, -0.000597671082, 0.0218465794, -0.0232719183, -0.0104827294, 0.015575082, 0.00806613, -0.00396503741, 0.00461939815, 0.0144736823, -0.0135407327, 0.00275511784, 0.0174798556, -0.00339814066, 0.00931654219, -0.0131908767, 0.00824753661, 0.00385813694, 0.00380306691, 0.00866218191, 0.0178297106, 0.0076838797, -0.000678251381, -0.00672501465, 0.00164319051, -0.00842894427, -0.0279107541, 0.0049854517, 0.00709430734, 0.00537742, 0.0179852024, 0.0110204713, -0.00571107911, -0.0128151048, 0.0140849529, 0.0279107541, 0.0117914509, -0.0132686216, 0.00396503741, -0.0139294621, -0.00672501465, 0.0102883652, 0.0174409822, 0.00299483421, 0.0320572, 0.0174798556, 0.0168190151, 0.00505023962, -0.0130613, -0.0083317617, -0.0241919123, -0.00569812162, -0.007165574, 0.0125106005, 0.0159897264, 2.56368912e-05, 0.00448982185, -0.0109880781, -0.00667966297, -0.00329609937, 0.0132686216, -0.0137610119, 0.00289441249, 0.0119987736, 0.00409137458, 0.00273892097, -0.00611600559, -0.00403954368, -0.025021201, -0.0153288869, 0.00416912045, -0.0125106005, 0.0185553394, 0.00772275263, 0.013009469, -0.00495305751, 0.00149498752, 0.00365729351, 0.0193198398, 0.00998386089, 0.00669909921, 0.00314222742, 0.00786528643, -0.00167963398, 0.0128215831, -0.0134629868, 0.00446066726, -0.0163914133, 0.0079754265, -0.0023939237, -0.0259800665, 0.0194105431, -0.0167801417, 0.00198089913, 0.0108196279, -0.00535150478, -0.00291060959, 0.0104827294, 0.00559446076, 0.0150697343, 0.00392616447, 0.00569812162, -0.0206803922, 0.00516361883, -0.00234371284, -0.0148235392, 0.000818760775, -0.00140185456, 0.0330419801, 0.0211468656, -0.0199806783, 0.0108714588, 0.00109735, -0.00908978377, 0.0130872149, -0.00670557795, -0.0188533645, 0.00544220814, 0.0144736823, -0.00168773241, -0.0181147791, -0.00117023673, 0.0206285603, 0.024399234, 0.0278330073, -0.0101847043, 0.00225948822, -0.00769683719, -0.0105863912, -0.0200065933, 0.00106819533, 0.0214837659, 0.00299159484, 0.0329124033, 0.0257468279, 0.00778106228, 0.0192032214, 0.00225300947, -0.00373827876, -0.0234403685, -0.0052769985, 0.030580027, 0.0215874258, -0.0101458309, 0.0106187854, 0.0044833431, -0.0262262616, -0.00789768063, -0.0141238263, 0.0104503352, 0.0041594021, -0.0052737589, 0.00899260119, 0.00585685251, 0.00148688909, 0.00522840722, -0.0249564126, 0.00942020305, -0.00554586947, 0.00581150083, 0.0033819438, -0.015277056, 0.0027194845, -0.0247879624, 0.0154843787, 0.00844190177, 0.0384582728, -0.0117072267, 0.00547460234, -0.00194202608, 0.0113703283, -0.0468029901, 0.00574671291, -0.0168967601, -0.023699522, 0.0255654212, 0.00658248039, -0.00519601302, -0.0184646361, -0.0110593447, 0.000262189715, 0.0147198774, 0.0253062677, -0.000706596242, -0.000543815899, 0.0260059815, -0.0173891503, 0.00443475181, 0.0070554344, 0.0132686216, 0.0152252251, 0.00510854926, -0.00550375693, 0.00857795682, 0.00410433207, -0.0100097759, -0.0339490138, -0.00159297977, -0.019164348, -0.0252544377, 0.0230386816, -0.0201361701, 0.0216003843, -0.0137869278, 0.012549473, 0.00396827701, 0.025669083, -0.00780049851, 0.000609818846, -0.00692585809, 0.0352966078, 0.0277552623, 0.00802077819, -0.0190606862, -0.00097101304, -0.0189051945, -0.0110334298, 0.00443475181, 0.0109362472, 0.00162132457, 0.0103466744, 0.0199677218, -0.0149919884, 0.00732106576, -0.00842894427, 0.0102170985, 0.0222093929, -0.00175252068, -0.00643022824, 0.0257468279, -0.0476063639, -0.0206933487, 0.0247361325, 0.0157953613, -0.0104114627, -0.0130742574, 0.0159119796, -0.014305233, -0.00632656692, 0.0511308424, 0.0112601882, -0.00168449304, -0.00180921028, 0.0359704047, -0.00318595953, 0.00840302836, -0.019138433, -1.78041e-05, 0.00805965159, 0.0232200883, -0.0177260507, -0.0265890751, -0.00152333244, 0.00670557795, 0.00572079746, -0.0126401763, 0.0203175768, -0.00401686784, 0.00826049503, 0.00131034118, -0.0083317617, -0.0114804683, 0.012037646, -0.000419098622, -0.0163266249, 0.0200713817, -0.0080078207, 0.0265372433, 0.00804021489, -0.0271073803, 0.0137350969, 0.0137998853, -0.00136298162, -0.00069485337, 0.00227406551, -0.00256237318, 0.0110463873, -0.0203953236, -0.0143570639, -0.0137091819, -0.00520249177, 0.0116165234, -0.031279739, 0.0228961483, 0.0201232135, 0.0051279855, 0.0298803151, 0.0135407327, -0.0067314934, 0.0231941734, 0.0032199733, 0.0110010356, -0.00150146638, -0.000183127879, -0.00266603427, 0.0206156038, 0.0202527884, 0.0215744693, -0.0136832669, -0.00534178643, 0.0176742189, -0.0223260112, -0.0264335833, -0.011065823, 0.00756726088, -0.00147393136, 0.00634924276, -0.00618079351, -0.0233626235, 0.0105669545, 0.0320053659, 0.0157564878, -0.0194364581, 0.00146502303, 0.00247490895, -0.0146939624, 0.00232913555, -0.0129965115, 0.0192032214, -0.00485911453, 0.00504052127, 0.00320053683, -0.0145514281, 0.00196146267, -0.000228580844, 0.00626501814, 0.0143441064, -0.0032021564, -0.00539685646, 0.0134500293, 0.0213412307, 0.00282962434, -0.000307541457, -0.000820785412, -0.00617755437, 0.000501298637, -0.021082079, -0.0202916618, 0.00266441447, -0.0018513226, 0.00827345252, -0.000331837044, 0.0123680662, -0.017272532, -0.0134500293, 0.00155977579, 0.0119728586, -0.00377067295, -0.00271300552, 0.00323779, 0.00571107911, -0.000737775583, 0.000679466175, 0.00172174629, 0.00124150375, -0.00243279664, -0.00976358075, 0.0291806031, 0.00367996935, 0.0201750435, -0.00363785704, -0.00740529038, 0.015251141, -0.00377391232, -0.0244899374, -0.00158974028, 0.0152381836, -0.0190347712, -0.0278848391, 0.00479108701, 0.0144995982, -0.0168319736, 0.021755876, -0.0140849529, -0.00428249966, -0.00886302534, -0.0252933111, -0.00102932239, 0.00080620806, 0.00739233289, -0.0083511984, -0.0206803922, -0.00591192255, -0.00615811767, -0.0120700402, 0.0201232135, 0.00722388364, 0.000733321358, 0.0215615109, -0.00946555473, 0.000218052766, -0.00873344857, -0.015950853, -0.000163488963, 0.00677036634, -0.00511826715, 0.0187497027, 0.00517333718, -0.00859739352, 0.00424038712, 0.011363849, 0.025021201, -0.0347264707, -0.002233573, -0.000535312458, 0.0198770184, -0.0107094888, -0.00958217401, -0.0127503164, -0.0101587884, -0.0151345218, -0.0165339466, 0.0137998853, 0.0197733566, -0.000504538068, -0.00313736824, 0.0133463675, 0.000873020908, -0.0115452558, 0.00699712476, 0.0182832275, -0.0195401199, 0.00842246506, -0.0013953757, -0.00886302534, 0.000911083946, -0.00526404055, 0.0089472495, -0.0133593259, -0.0194364581, 0.00752838794, 0.0101523101, -0.0193975847, 0.00617107563, 0.00875288527, 0.000765310542, 0.0021947, -0.0122968, 0.00579530373, 0.0137221394, 0.00873344857, 0.00778754102, -0.0168319736, -0.0184775926, -0.0275997706, -0.0278330073, 0.0247879624, -0.00233237492, 0.00420475379, -0.00535474438, -0.00811148155, -0.000594431651, -0.00878527947, 0.00556206657, 0.00897316448, 0.010579912, 0.0176483039, 0.0207451805, 0.0263040066, -0.00634276401, 0.00458376482, 0.00158974028, -0.0101523101, -0.00212667254, 0.0108844163, -0.0110723022, -0.00699712476, 0.0125300363, 0.0258245748, -0.0669650733, -0.0176483039, 0.00140914321, 0.0199288484, -0.0118173668, -0.0123032779, -0.00610952685, -0.0199677218, -0.00873344857, -0.0121283503, 0.00486559328, -0.00204568729, 0.0167412683, 0.00424686633, 0.00863626599, -0.0197215267, -0.000156099049, -0.0129576391, -0.00639459491, 0.0218854509, -0.0195789915, -0.00796894822, 0.00914161373, -0.00991259329, 0.00323617039, -0.0127762314, 0.0169356335, 0.00183026644, -0.0162877515, 0.0135407327, -0.00665374752, 0.0150438184, 0.0137610119, 0.0256431662, -0.0171170402, -0.0079948632, -0.00320539577, -0.0200195517, 0.0171170402, -0.0137091819, -0.00397475576, -0.00780049851, -0.0168060567, -0.0114545524, 0.0182313975, 0.00560417864, 0.0180629492, -0.00789120235, -0.00789768063, -0.0008592534, -0.0087788, 0.0205896888, -0.0175187271, -0.0016018881, -0.0089796437, 0.00838359259, 0.0121866595, -0.00767740095, -0.00549727818, 0.0174280237, 0.00390348863, -0.051389996, -0.000254293671, 0.0212505274, 0.00215744693, 0.0381472893, -0.0259023197, -0.00173146452, 0.014331148, 0.0177390072, -0.0089278128, -0.00443799142, -0.0118627185, -0.0135407327, 0.0108261071, -0.00331715541, -0.0255265478, -0.00020175449, 0.0187237877, 0.00149093836, 0.00671853591, -0.00452221604, -0.0179981608, 0.00411728956, -0.0124069387, 0.00157111371, 0.0137610119, -0.00332039502, 0.0188015345, -0.0230127666, 0.0054357294, 0.0175057705, -0.00804021489, 0.00264821737, 0.0144477673, 0.0119275069, -0.0109427255, -0.0155232511, 0.00321187475, 0.0154714203, -0.0194882881, -0.01157765, 0.0112213148, -0.00405898038, 0.0228184015, -0.0152381836, 0.00330581749, -0.00649501663, 0.0289732795, -0.00163833145, 0.0261614732, -0.0051279855, 0.0186460428, -0.0263817534, -0.00826049503, 0.0171429552, -0.0015281915, 0.00741176959, -0.00593135925, 0.0125948247, 0.00582121918, 0.00416912045, -0.0188663229, 0.012011731, 0.00212667254, -0.0119210277, 0.0197215267, 0.00534502603, 0.00125203189, 0.00312279095, -0.00721092615, -0.0070359977, 0.00579206459, -0.00995146669, -0.00595079549, -0.0363332182, -0.00107872346, 0.00168287335, 0.00934245717, 0.0182961859, -0.00384193985, -0.00587628921, 0.0120765194, -0.00936837308, -0.0113444123, 0.00188533647, 0.00617755437, 0.0115193408, 0.0187626611, 0.000194162116, -0.0347005576, 0.00481376285, 0.00326532498, -0.00243927538, 0.00666022627, -0.0294915866, 0.0228054449, -0.00579206459, -0.00409785332, -0.0123097571, 0.0087788, -0.00314222742, 0.0142663606, 0.00684163347, -0.0110204713, 0.0124522904, -0.0120700402, -0.0207322221, 0.00517333718, 0.00562037574, 0.0133722834, -0.00200843392, 0.0296211615, 0.00839007087, 0.00205378584, 0.00213315128, -0.0113055399, -0.00334307086, 0.0018804773, -0.00834471919, 0.0212246124, -0.00342729548, -0.000125122198, 0.00187075906, 0.0287141278, -0.000486316392, 0.0108261071, -0.000414239505, -0.00403306494, -0.0127114439, 0.00303370715, 0.0292065181, 0.00228864304, 0.015600997, -0.00678332383, -0.000380225712, 0.0112601882, 0.0151993101, -0.00798190571, -0.00190153345, -0.0250341576, -0.018542381, 0.0086427452, -0.00166829594, 0.0241012089, -0.00923879631, 0.00112083578, 0.0165080316, 0.00739881163, -0.015899023, 0.00222547445, -0.0336639471, -0.00741176959, 0.0334825367, -0.00741176959, 0.00245223311, 0.0142922755, 0.0110917389, -0.00367673, 0.000496034627, 0.0219243243, 0.0298544, 0.0150956493, -0.00511826715, 0.0128215831, 0.0249175392, -0.00205054623, -0.0148364967, -0.0314870626, -0.0122773629, -0.0170652103, -0.0235051569, 0.0245028958, -0.0176223889, 0.0103337169, 0.0017930133, -0.00283934269, -0.00278913183, -0.00632008817, 0.0112148365, -0.000972632784, 0.0233107917, -0.0128539773, -0.0174928121, 0.00394236157, 0.00751543045, 0.005289956, -0.00083171844, 0.0255783796, 0.0331197232, -0.000807422854, -0.0128410198, -0.00919344462, 0.0278589241, 0.000796894776, -0.00557178445, -0.025694998, 0.0107030096, -0.00582769793, 0.0195142031, 0.00194526557, -0.00115322985, -0.0308391806, -0.0311501641, 0.0161840916, -0.0166635234, 0.0150567759, -0.024373319, 0.00870105438, -0.00863626599, -0.000939428806, -0.00282152579, -0.0265242867, -0.00754782464, 0.0199418068, -0.0108844163, 0.00182702707, 0.00288469438, -0.0120570827, 0.000603745, -0.0221964344, -0.00293328543, -0.0190088563, 0.0412312075, -0.0154973362, 0.0219372828, 0.0342081673, -0.00985428412, 0.00262068235, -0.016650565, 0.00798838399, -0.00388729153, -0.0027907514, 0.00573699456, 0.00171202805, -0.000798514462, -0.0176353455, 0.0325495899, 0.00851316843, -0.0344154872, 0.0016010782, 0.0231682584, 0.0106317429, 0.000705786399, -0.0121866595, 0.00535474438, -0.00824753661, -0.00766444346, -0.0124652488, -0.00318110036, -0.0308650956, 0.0310724173, -0.010392026, 0.00140347425, 0.00583417667, -0.0177001338, -0.0108066704, 0.00686754845, -0.00274054054, -0.0105021661, 0.00382898236, 0.00184160436, -0.00217364379, -0.000964534236, 0.00812443905, -0.00672501465, -0.0291806031, 0.0101199159, -0.00795599, -0.000446228689, -0.00608037179, -0.0089278128, -0.00405250164, 0.0144348098, -0.0279366691, -0.0108908955, 0.0132103125, -0.0234274101, 0.00463559525, 0.00448658224, -0.00548108108, 0.00287335645, -0.0187108312, -0.00824753661, -0.00555882696, 0.0101523101, 0.00487207202, 0.00617755437, 0.0254747178, -0.00888246112, -0.000467284844, -0.0165857784, 0.00677684508, 0.00207646168, 0.0138258, -0.00842894427, -0.00110625837, -0.0164173283, -0.00154924765, -0.00293976418, 0.02666682, -0.0160415564, -0.00876584277, -0.00720444694, 0.0246843025, -0.0197733566, 0.029258348, 0.00120101112, -0.0222223513, 0.00184484385, 0.0224167146, -0.0155491661, -0.0259930231, 0.00167153543, 0.0119080702, 0.0253192261, 0.0122190537, 0.0143829789, 0.000217850305, 0.00253159855, 0.0330419801, -0.0187497027, -0.00461291941, -0.0136184786, -0.00439911848, 0.00967287738, 0.00134273537, 0.0149401575, 0.00182540738, 0.0184387192, -0.0233626235, -0.0100421701, -0.0151086068, -0.0137998853, -0.00564629119, -0.0156398695, -0.0102754077, 0.0221446045, -0.0119793369, 0.014279318, -0.00386137632, -0.0234014951, -0.00245385291, 0.0131455241, 0.0298803151, 0.00627797609, -0.00229836116, -0.0194105431, -0.0121348286, -0.0292065181, -0.0121089136, 0.00662459293, 0.03962446, 0.0043894, 0.0165209901, 0.00870753359, -0.00301751, 0.0228054449, -0.0075219092, -0.00852612592, -0.00919344462, 0.0122320112, -0.00826049503, 0.00510207, -0.0227795281, -0.0252285227, -0.02305164, 0.00231617782, 0.0226499531, 0.0108261071, 0.00695177307, -0.00265145674, 0.0177778807, -0.0220798161, -0.0018529424, -0.00947203394, -0.0389247462, -0.00350180198, -0.00648853742, -0.00118481414, 0.0162618365, -0.0206803922, -0.00440235762, 0.0108325863, -0.0182184409, -0.0123227146, -0.0131908767, 0.00735346, -0.00286687748, -0.00518305553, -0.00788472313, -0.0118238451, -0.00104066031, 0.00943316147, -0.012873414, -0.00221899571, -0.0105734328, -0.00893429201, -0.00756078213, -0.0117396209, 0.00140752352, -0.0291546863, -0.00888246112, 0.0106252637, 0.00172822503, 0.0200195517, 0.0130483424, -0.00444123056, -0.01657282, -0.0288437046, -0.000649096735, 0.0112731457, -0.000188898077, 0.00857147761, -0.00632008817, -0.00385813694, -0.00362489955, -0.024373319, -0.00170554919, 0.0114221582, -0.00363137829, 0.00096291455, 0.00927767, -0.0119728586, -0.0197215267, 0.0149272, 0.0177130923, -0.0156917013, -0.0080466941, -0.0173114054, 0.00281342724, -0.0075413459, -0.00322321267, -0.00154438859, 0.00714613777, -0.0281699058, 0.021107994, -0.0086427452, -0.00991259329, 0.0299839769, -0.0110334298, 0.0145255132, -0.00833824091, 0.0132621434, 0.0213023573, 0.000472953805, -0.0190866012, 0.0177908372, 0.0052769985, 0.000652336108, 0.018594211, -0.00188533647, 0.0276775155, 0.0026287809, -0.00371560291, -0.0183609743, 0.018516466, 0.0089472495, 0.00017239734, -0.0147846658, -0.0167153534, -0.0115906075, 0.00244089519, 0.00414644461, 0.0169615485, 0.0144477673, -0.00852612592, 0.0124587696, 0.00449306145, 0.0353743546, -0.0123097571, 0.0272110421, 0.00523488596, 0.0111630056, -0.000143951271, -0.00482996, -0.0182832275, 0.00181406946, 0.00224167155, 0.0199936368, 0.0194753315, 0.00764500676, 0.0152900135, -0.0228184015, 0.0274701938, -0.00926471129, 0.012011731, 0.00174280244, 0.0126660923, 0.0196826532, -0.011253709, -0.00269842823, -0.0341563374, -0.00713965902, 0.00893429201, 0.00381278526, 0.00943964, 0.0154195903, 0.000752757827, -0.0137221394, 0.0134889018, 0.00762557052, 0.0141108688, -0.00379334879, 0.00533206854, -0.00233075535, -0.00852612592, -0.015600997, -0.0166894384, 0.0340526737, 0.0347783, -0.0261744298, -0.00299645402, 0.00372532103, -0.010281886, 0.000575805083, 0.00377067295, -0.024347404, -0.0104114627, -0.0041917963, 0.00229998096, -0.0118238451, -0.00616459642, -0.0142274871]
02 Aug, 2018
unordered_multiset find() function in C++STL 02 Aug, 2018 The unordered_multiset::find() is a built-in function in C++ STL which returns an iterator which points to the position which has the element val. If the element does not contain the element val, then it returns an iterator which points to a position past the last element in the container. Syntax: unordered_multiset_name.find(val) Parameters: The function accepts a mandatory parameter val whose position’s iterator is to be returned. Return Value: It returns an iterator which points to the position where val is. Below programs illustrate the above function: Program 1: // C++ program to illustrate the // unordered_multiset::find() function #include <bits/stdc++.h> using namespace std; int main() { // declaration unordered_multiset<int> sample; // inserts element sample.insert(100); sample.insert(100); sample.insert(100); sample.insert(200); sample.insert(500); sample.insert(500); sample.insert(600); // find the position of 500 and print auto it = sample.find(500); if (it != sample.end()) cout << *it << endl; else cout << "500 not found\n"; // find the position of 300 and print it = sample.find(300); if (it != sample.end()) cout << *it << endl; else cout << "300 not found\n"; // find the position of 100 and print it = sample.find(100); if (it != sample.end()) cout << *it << endl; else cout << "100 not found\n"; return 0; } Output: 500 300 not found 100 Program 2: // C++ program to illustrate the // unordered_multiset::find() function #include <bits/stdc++.h> using namespace std; int main() { // declaration unordered_multiset<char> sample; // inserts element sample.insert('a'); sample.insert('a'); sample.insert('b'); sample.insert('c'); sample.insert('d'); sample.insert('d'); sample.insert('d'); // find the position of 'a' and print auto it = sample.find('a'); if (it != sample.end()) cout << *it << endl; else cout << "a not found\n"; // find the position of 'z' and print it = sample.find('z'); if (it != sample.end()) cout << *it << endl; else cout << "z not found\n"; return 0; } Output: a z not found Learn C++ Online – Master everything from basics to advanced concepts. Apply your knowledge with practical exercises and boost your skills. Take the Three 90 Challenge: finish 90% in 90 days for a 90% refund. Start now and level up your C++ programming!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum/Algorithm for Dynamic Time out timer Calculation/Difference between Round trip time (RTT) and Time to live (TTL)/Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms/Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm/Round Robin Scheduling Algorithm with Different Arrival Time/Selfish Round Robin CPU Scheduling/Find the order of execution of given N processes in Round Robin Scheduling/Calculate server loads using Round Robin Scheduling/set::lower_bound() Function in C++ STL/Implementation of lower_bound() and upper_bound() in List of Pairs in C++/Difference between std::set::lower_bound and std::lower_bound in C++/Difference between std::set vs std::vector in C++ STL/std::minmax() and std::minmax_element() in C++ STL/std::rotate vs std::rotate_copy in C++ STL/std::bitset::to_ullong and std::bitset::to_ulong in C++ STL/std::upper_bound and std::lower_bound for Vector in C++ STL/std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++/std::string::append vs std::string::push_back() vs Operator += in C++/Vector push_back() in C++ STL/vector :: cbegin() and vector :: cend() in C++ STL/unordered_multiset cend() function in C++ STL/unordered_multiset bucket() function in C++ STL/unordered_multiset emplace_hint() function in C++ STL/unordered_multiset end() function in C++ STL/unordered_multiset size() in C++ STL/unordered_multiset emplace() function in C++ STL/unordered_multiset find() function in C++STL
https://www.geeksforgeeks.org/unordered_multiset-find-function-in-cstl/?ref=next_article
PHP
unordered_multiset find() function in C++STL
What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, jQWidgets jqxTreeMap width Property, Round Robin Scheduling Algorithm with Different Arrival Time, Difference between Flow and TypeScript, unordered_multiset emplace() function in C++ STL, jQWidgets jqxTree destroy() Method, jQWidgets jqxTree collapseAll() Method, Find the order of execution of given N processes in Round Robin Scheduling, jQWidgets jqxScrollView buttonsOffset Property, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Vector push_back() in C++ STL, jQWidgets jqxListBox enableHover Property, Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm, std::rotate vs std::rotate_copy in C++ STL, Selfish Round Robin CPU Scheduling, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxSlider buttonsPosition Property, std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++, std::upper_bound and std::lower_bound for Vector in C++ STL, Difference between Round trip time (RTT) and Time to live (TTL), jQWidgets jqxSlider rtl Property, Difference between std::set::lower_bound and std::lower_bound in C++, jQWidgets jqxTooltip opacity Property, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, jQWidgets jqxToolBar height Property, PHP, std::minmax() and std::minmax_element() in C++ STL, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, Node.js date-and-time Date.transform() Method, unordered_multiset size() in C++ STL, TypeScript Optional Parameters, jQWidgets jqxToolBar theme Property, Difference between std::set vs std::vector in C++ STL, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, Steps to Diagnose and Resolve a Slow Network, How to use Optional Chaining with Arrays and Functions in TypeScript ?, Calculate server loads using Round Robin Scheduling, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, jQWidgets jqxScrollView showButtons Property, Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms, jQWidgets jqxScrollView disabled Property, jQWidgets jqxSplitter destroy() Method, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, set::lower_bound() Function in C++ STL, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, jQWidgets jqxTree collapseItem() Method, std::string::append vs std::string::push_back() vs Operator += in C++, unordered_multiset cend() function in C++ STL, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), jQWidgets jqxSortable opacity Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, vector :: cbegin() and vector :: cend() in C++ STL, jQWidgets jqxSlider height Property, jQWidgets jqxSwitchButton onLabel Property, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, jQWidgets jqxToolBar tools Property, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTree width Property, Implementation of lower_bound() and upper_bound() in List of Pairs in C++, jQWidgets jqxTree clear() Method, TLS Handshake?, Algorithm for Dynamic Time out timer Calculation, Adhoc TCP, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, jQWidgets jqxTabs position Property, Differences between Wireless Adhoc Network and Wireless Sensor Network, jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, std::bitset::to_ullong and std::bitset::to_ulong in C++ STL, unordered_multiset emplace_hint() function in C++ STL, unordered_multiset find() function in C++STL, unordered_multiset bucket() function in C++ STL, Impact of Three-way Handshake and Slow Start Algorithm, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, unordered_multiset end() function in C++ STL, How to Sort an Array Having Optional Properties in TypeScript ?
GeeksforGeeks
[-0.038022913, 0.0389093943, -0.00471992046, 0.0123987757, -0.00386638148, -0.0150103047, -0.034980122, 0.0102544464, -0.0161004383, 0.0118537089, -0.0320331641, 0.0147707155, -0.014603002, 0.00461809477, -0.0068402905, -0.00681633176, 0.0334227867, 0.0229407307, -0.00863122474, -0.0296612252, -0.00592385931, 0.0286309887, -0.0217787195, -0.000354892487, -0.0177296493, 0.0174301621, -0.0356749296, 2.17128309e-05, -0.0110630617, -0.0236235615, 0.013033689, 0.0403469354, 0.0211318266, -0.00480976654, 0.00103472872, 0.0454262383, 0.0254684035, 0.0496430211, 0.011835739, 0.00323146838, 0.00246627815, -0.00492357183, 0.051895164, -0.00376455579, -0.00400414551, 0.00675643422, 0.00432459731, -0.0453304, -0.0138842324, 0.00673247548, 0.048876334, 0.0286789071, 0.0371603891, -0.00327040162, 0.0121292369, 0.00755906, 0.0260194596, 0.0216349643, -0.0270736553, -0.0581245, -0.0176937114, -0.027145531, 0.0119435545, -0.0166514963, 0.0166035779, -0.00732546, -0.0351238735, 0.0453543626, 0.0321769193, -0.0133211967, -0.0187958255, 0.0508888885, -0.0187239479, 0.0148306126, -0.0267142709, -0.015094162, -0.0833772719, -0.0251808949, -0.00671450607, 0.0186999887, 0.00767286541, 0.0146149816, 0.00344709912, -0.0196823068, 0.0446116328, -0.00561538758, -0.00360283256, -0.0359145217, 0.033878006, 0.0462168865, -0.0369687155, -0.00766088581, 0.00712180883, 0.0178374648, -0.0251808949, 0.0282476451, 0.0431740955, 0.0329436064, -0.0098770922, 0.0606641546, 0.00578609528, -0.021395376, 0.000953867158, 0.0166395158, 0.00599873113, 0.0111828567, -0.00751114218, 0.02339595, -0.00280619622, -0.00623532617, 0.0390531495, 0.00751114218, 0.00822991226, 0.0616225153, 0.0183765423, 0.016939003, 0.00866716355, -0.0202333648, 0.0286309887, -0.025636116, -0.00213384721, 0.00562437205, 0.011757873, 0.0124347145, -0.0444918387, 0.0181010142, 0.0122071039, 0.0400115065, 0.0120693399, -0.0171905737, -0.00116275961, -0.0284153577, -0.0164119061, -0.0299247745, 0.0034860326, 0.0349082425, 0.0030338068, 0.0245819204, 0.00443840213, -0.035722848, -0.049403429, -0.0114583857, -0.00749916304, 0.051895164, -0.040826112, -0.0235516839, -0.0219703913, 0.0399875492, 0.0292778816, 0.000980072306, -0.024378268, -0.0134290121, 0.0103502823, -0.00146074942, 0.0125664882, 0.00920025073, 0.0211557858, -0.0123149194, 0.0226292629, -0.0442762077, 0.0404667296, -0.0188796818, 0.00983516406, 0.00322847348, -0.00232102675, 0.0413532108, -0.000270474498, -0.00842757337, -0.0491159223, 0.0285591129, 0.00549259782, 0.0219823699, 0.0103502823, 0.00389932515, -0.0039532329, -0.0087450305, 0.0548660792, 0.0271934494, 0.0358426459, -0.000337671983, 0.0232402179, 0.0153816696, 0.0420959406, -0.00954166614, -0.00060571311, 0.00126907753, 0.0310987644, -0.0142675769, 0.0519430824, 0.0205568112, -0.00425571483, 0.0269299019, 0.0468398184, 0.0436532721, 0.038022913, 0.0221261233, -0.0312425178, -0.00286309887, -0.0168311875, 0.0199578367, 0.00544168474, -0.0176937114, 0.00830777828, 0.0205208715, 0.0145431049, 0.00875102, -0.0100747542, 0.000865518406, 0.022808956, -0.00035882325, -0.0209042151, 0.000372487382, 0.0214792322, -7.53865752e-05, 0.0160884596, 0.0207844209, -0.0444199629, 0.0538598038, 0.019490635, -0.0229407307, 0.0231563598, -0.0282476451, -0.00226112944, -0.0392208621, -0.016663475, -0.0342373922, 0.0315779448, 0.0152498949, 0.00746322423, 0.00421977649, 0.00700800354, 0.0107396161, -0.0207365025, 0.00788250659, 0.0339738429, -0.0344530232, -0.0411615409, -0.0313862711, 0.0128899347, 0.00865518395, 0.0237792935, 0.0473908745, -0.0378312394, 0.0173582863, 0.0278643016, 0.0425032414, -0.00453423802, -0.0529972799, -0.0152738541, -0.0016501752, 0.0171905737, 0.0107635744, 0.0237792935, 0.0139441304, 0.0175140202, -0.000488538702, -0.00884685572, -0.00886482466, -0.0418323912, -0.0167952497, 0.00422277162, 0.0126144066, -0.0323206745, 0.0109851956, 0.00143304688, -0.00360283256, 0.0343571864, -0.0328477696, -0.0118537089, -0.0304279123, -0.00262051425, 0.019921897, 0.00279870909, 0.00979922526, 0.0114643751, -0.002551632, -0.0404427685, 0.00978724565, -0.00840361416, -0.0548660792, 0.017645793, -0.00766687561, -0.0163759682, 0.0036537454, 0.00786453765, -0.0192390662, 0.0085892966, -0.0165556595, -0.00553153083, -0.00114104676, -0.0303799957, 0.000194666762, -0.0267621875, 0.00763692707, 0.0241985768, 0.0520389192, -0.0147347767, -0.0334946625, -0.0418084301, -0.00702597294, 0.0104161697, -0.00945781, -0.0055495, -0.0093799429, -0.010284395, -0.0144832078, 0.0152379153, -0.00988308247, 0.00775073236, -0.0896066129, 0.00787052698, -0.0336623751, -0.0450908132, 0.00307573495, -0.019862, -0.0144951865, 0.0198140815, 0.00184334454, -0.0058609671, -0.0337342545, -0.0456418693, -0.0379510336, 0.011326611, 0.0310029294, 0.0237074178, -0.0153457308, -0.011542242, 0.0397000425, -0.0339019671, -0.0563036203, 0.000489287428, -0.00291251438, -0.0281757675, -0.0169869214, -0.00911639445, -0.0206406675, -0.0205208715, 0.00518412562, 0.0391969, 0.0135368276, 0.0133571355, 0.0161723159, 0.00253366283, 0.00967344083, -0.00646892656, 0.0164119061, 0.0104341386, -0.000293123216, 0.0173103679, 0.0227969754, 0.000644646469, -0.0291341282, -0.0186400916, -0.022593325, 0.0230006278, -0.0187958255, -0.0170707777, -0.0519430824, 0.000455220754, 0.012189134, -0.00235247309, 0.0324404687, -0.0242824331, 0.0224256124, 0.0143035147, -0.00989506114, -0.033878006, -0.0119495448, 0.0116141187, -0.00757702952, 0.00912837405, 0.000938892772, 0.029206004, 0.00641501881, -0.0401313044, -0.00865518395, 0.0253725667, 0.0399635881, 0.0182807073, -0.00144577515, 0.00981719512, 0.0424792841, 0.00420180708, -0.020844318, 0.0251569357, 0.0188557226, -0.0122610116, 0.00608258788, -0.0170707777, 0.0222099815, -0.00643298775, 0.0108174821, -0.00433957158, -0.0144592486, 0.00848747138, -0.016998902, -0.0408979915, -0.0352197103, -0.027696589, -0.0422396921, 0.0337582119, -0.0238152333, -0.0246777572, 0.0023779294, -0.0255642384, -0.0328238122, 0.0115122935, -0.0306675024, -0.00860726554, 0.0351717919, 0.0387656391, -0.00241237041, 0.00508529507, 0.0081161065, 0.00610055681, 0.00362379663, -0.016232213, 0.0412094556, 0.027145531, -0.00685227, -0.0323446319, -0.0293258, 0.0118117807, 0.00692414725, -0.0106018512, 0.0212276615, 0.00146449311, -0.00951770786, -0.0123628369, -0.0365134962, 0.0202932619, 0.00544468, 0.00966146123, 0.0459772944, -0.0169030651, -0.0457616635, 0.0532847866, -0.00108564156, -0.00182387792, -0.0154775055, 0.0379749946, 0.0310268886, 0.0198140815, -0.00192420615, -0.00195265736, 0.0512722321, -0.0102185076, -0.00342613505, 0.0212755799, 0.0409219489, -0.00266992953, 0.0264746808, 0.00235397043, 0.00381846353, 0.0514159873, -0.0376874879, 0.0618621036, 0.00457916129, 0.0629163, 0.0166754555, 0.0113026518, 0.0190473944, -0.00971536897, -0.00763093727, 0.0018882677, 0.00749916304, 0.0109432675, 0.0280080549, 0.012973791, 0.0117219342, 0.0243303515, -0.0284393169, 0.0105838822, 0.0282236859, 0.0479179733, -0.00454022782, -0.00593284424, -0.0130097298, -0.00244681141, 0.000762195268, 0.024318371, -0.00424074056, -0.0439647399, 0.00126383652, -0.00218775496, -0.0232042782, 0.00057913363, -0.019921897, -0.025851747, 0.0250611, -0.00799631141, -0.0176577736, -0.0381187461, -0.0571661405, 0.00791844539, 0.0144951865, -0.0292539224, 0.00397719163, -0.0188677013, -0.0103622619, 0.0506013781, 0.000448107923, -0.0134170325, 0.0264507215, 0.0202333648, -0.0471512862, -0.0130456686, 0.0038334378, -0.0392927378, -0.0137284994, 0.00344110955, 0.0255881976, 0.018292686, 0.00421977649, -0.0132253608, 0.0192630254, 0.0512243137, 0.0169509836, -0.0113326, -0.0116859954, 0.0194067787, 0.00060571311, -0.0272413678, 0.0402750559, -0.0219943505, 0.0110151442, -0.0103383027, -0.00867914315, -0.0132253608, -0.0249652639, -0.0136326635, 0.00638507, -0.034764491, 0.0140998634, -0.00291700661, -0.0135967247, -0.0069900346, -0.00272234, -0.015645219, -0.00135892374, -0.0182208102, -0.0119794933, 0.00752312178, -0.00616344949, -0.0305956267, -0.0132613, 0.0269059427, -0.00209790887, -0.0329436064, -0.000602718268, 0.0114643751, 0.0175739173, -0.0140878838, -0.0307154208, -0.00787052698, 0.0285351537, -0.00769682461, -0.0255642384, 0.0101885591, 0.00443540746, 0.00237643206, 0.0167353526, 0.0541473106, -0.00452225888, 0.0135967247, 0.00233749859, -0.0198979378, 0.00467499718, -0.0289424565, 0.0181728918, 0.00916431285, -0.00261003221, 0.0399875492, -0.00177296507, -0.0151660386, 0.0195625126, 0.0269059427, 0.00225064741, -0.00481875101, -0.0384302139, 0.0248933863, -0.00678638276, 0.00562137738, -0.0142555973, -0.0231204219, -0.0172864087, -0.0303560365, -0.0158129316, -0.0158967879, -0.00657674205, 0.0281997267, 0.0125185708, 0.00668455707, 0.00970938, 0.0159806442, -0.03615411, 0.00278074, -0.0243543107, -0.022964688, -0.00142256485, 0.031170642, 0.0199937746, -0.00990704075, -0.00997292809, 0.00723561412, -0.000932154304, 0.0315300263, 0.000825836323, -0.00340217608, -0.0110091548, -0.0317935757, 0.0127940988, 0.0270017777, -0.000591861841, 0.00659471098, 0.0258996654, -0.019119272, 0.00990105141, -0.00581005448, -0.00279721175, -0.0281997267, -0.0273851212, -0.0114583857, 0.0356988907, 0.0229167715, 0.0498826094, -0.0376874879, 0.0148066534, 0.00276426808, -0.025851747, 0.0291820467, -0.0335186236, 0.0101106921, -0.00842757337, -0.00317456573, 0.00733744, -0.0207005646, 0.0262590498, 0.00380947883, 0.0278643016, -0.0103383027, 0.00710982922, 0.0434616022, 0.0378312394, 0.00236295513, 0.016783271, 0.0111469189, 0.0326081812, 0.0185562354, -0.00851143, -0.0320092067, 0.0355790965, 0.0181369521, -0.00141058536, -0.00969141, -0.0254444443, -0.0198140815, 0.00576812588, 0.0171067156, 0.00181489321, 0.0123149194, -0.0206646267, -0.00501341792, 0.00410896633, 0.000460087409, 0.00988907181, -0.0123987757, -0.0124466931, -0.0228209347, 0.0298528969, -0.011697975, -0.0118896468, -0.0018852728, -0.00882289652, 0.0197781436, -0.0261392538, -0.0120753292, 0.0117818313, -0.0364895351, -0.00252467813, -0.000146280843, -0.013464951, 0.0196224097, -0.0158728287, 0.0217068419, -0.00374359172, 0.00291401171, -0.00236445246, 0.00193319074, -0.050505545, -0.0182088297, -0.0183525831, 0.0495471843, 0.0116919857, 0.0197302252, 0.000889477378, 0.00944583, 0.00618141843, -0.0141956992, -0.0373041406, -0.00622933637, -0.00207993947, 0.00616344949, -0.0632517263, 0.023887109, 0.041473005, -0.00643298775, -0.00915233325, -0.0236954372, -0.0119255856, 0.00375856599, -0.015645219, -0.000760323484, 0.0107635744, -0.00410896633, -0.0178135075, 0.00636111107, -0.00155883154, 0.0264746808, -0.0320331641, 0.00123239041, 0.0248933863, -0.0020649652, 0.0143154943, 0.0466960669, -0.0226292629, -0.0134409918, -0.0190234352, 0.0159686655, -0.00445038173, -0.03474053, -0.00300685293, -0.000956113334, 0.00745723443, -0.0322727561, 0.0111948363, 0.0441564135, -0.0327758938, -0.0255402792, -0.0286309887, 0.00739134755, 0.00275827828, -0.0108055035, 0.0494513474, -0.0133810937, 0.0200057533, 0.0117758419, -0.021335477, -0.0266903117, 0.0516076572, 0.0223537348, 0.0276007522, 0.029206004, -0.0123748165, 0.00746921403, -0.0237792935, 0.0444439203, -0.00817001425, 0.0102544464, -0.0242464952, 0.0232162587, -0.00407602265, 0.00163520081, 0.0487804972, -0.0221740417, -0.0123748165, -0.010128662, 0.0162681527, 0.0186880101, 0.022593325, -0.000603467, 0.00021619242, 0.0179093424, -0.0182567481, -0.0236475207, -0.0119495448, 0.00510625914, 0.00474088453, -0.00528295664, 0.0209760927, -0.018843744, 0.03454886, 0.0330873616, 0.0214792322, -0.00407901732, -9.31218456e-05, 0.0262111314, 0.0205448307, 0.0457377061, -0.0315779448, -0.0321529619, 0.0165556595, 0.0142076788, 0.0293018408, 0.0134170325, -0.0251808949, -0.00258158077, -0.0359863974, -0.0173463058, -0.0229287501, 0.0233240742, -0.00576513121, 0.0132972375, 0.0232521966, -0.00419581775, -0.00212636, 0.0129498327, 0.0467919, 0.0301883239, 0.00796037354, -0.0212156828, 0.00290502724, -0.0101705901, 0.0184603985, 0.01656764, 0.0163999256, -0.011973504, 0.0164119061, 0.000310530915, 0.0178734045, 0.040299017, -0.0314341895, 0.0396042056, -0.0146149816, -0.0239230487, 0.0064928853, 0.0307872985, -0.00944583, 0.0202213842, -0.0192390662, -0.0162921101, 0.0339019671, 0.0108114928, 0.00117623655, -0.0333748683, -0.00728952186, 0.0378072821, -0.019826062, -0.0121052777, 0.0485169478, 0.0173822455, -0.00463007437, -0.050505545, 0.000631918258, -0.00277175521, -0.000968841545, -0.024653798, 0.0133451559, -0.0157769918, 0.00296791946, 0.00696607539, -0.0119555341, -0.0025576218, -0.00131849304, 0.0125305504, 0.0265226, -0.0371603891, -0.0347884484, 0.0023869141, 0.00579507975, 0.00796037354, -7.6650038e-05, 0.0108654005, 0.0207005646, 0.0161603373, 0.0281757675, -0.000884985086, -0.0262590498, 0.00286609377, -0.0081041269, -0.00274629891, 0.0016007598, -0.0349561609, -0.0127701396, 0.012267001, -0.014447269, -0.0103802308, 0.0165556595, 0.00471393066, -0.00789448619, 0.00490859756, 0.00342014525, -0.0235756431, -0.0638267398, -0.0221740417, 0.01063779, 0.0176218338, -0.0113984877, -0.0282955635, -0.0392448194, 0.0147707155, 0.00578609528, -0.00595380832, -0.0124586727, -0.00964948162, -0.00297390926, 0.0115063032, 0.00807417836, 0.00500742812, -0.0405625626, 0.0108953491, 0.00138587761, 0.00184034964, -0.0114883343, -0.00126608275, 0.0174780805, 0.027480958, 0.00592984911, -0.0124227349, 0.014603002, 0.0320571251, -0.0085653374, -0.0227730162, -0.056782797, 0.00734342961, -0.0194666758, -0.0110391034, -0.0138003761, 0.0121771554, 0.0186999887, 0.027576793, 0.0178015269, 0.00621735724, 1.65302972e-05, 0.00221470883, -0.0352197103, 0.00226112944, 0.026283009, -0.0110870209, -0.00471692532, -0.0274569988, 0.00853538886, 0.00355491461, 0.0198859591, 7.34211935e-05, -0.0315779448, -0.0117758419, -0.024318371, -0.0476783849, -0.0123867961, 0.00258906791, 0.00812209677, -0.0183166452, -0.0092182206, -0.0241865963, -0.00362080196, -0.0314821079, -0.00897264, 0.00281368359, 2.21222872e-05, -0.00921223, -0.000356015575, -0.00680435216, -0.0374239385, -0.0107216462, -0.0117339138, -0.00991303101, -0.0159447063, -0.00738535775, 0.0107515957, 0.00577411568, -0.00126832887, 0.0189874973, -0.01134458, 0.0204010773, 0.0121711651, -0.0171306748, -0.0189156197, -0.0147587359, 0.0145790437, 0.0206526462, -0.0254684035, 0.0286789071, 0.0339978039, 0.000657749071, 0.0264746808, -0.0169030651, -0.0043066279, -0.0106497696, 0.00793641433, 0.0121711651, 0.0405386053, 0.0136925606, -0.0157170948, 0.00322547858, 0.0217906982, -0.000475436129, -0.0176937114, -0.0163040906, 0.027145531, -0.0203052405, 0.00851742, 0.0055764541, -0.0396042056, 0.0143274739, 0.046145007, 0.0259715412, -0.027696589, -0.00207245233, -0.0184364412, -0.0103922104, 0.0160405412, -0.0288705789, -0.000831826066, 0.0105838822, -0.0216110069, -0.0239949245, 0.0464085564, -0.0160046034, -0.00316558103, 0.0348603241, -0.030835215, -0.00848148111, 0.00610055681, 0.00278373482, 0.00566031039, -0.0304279123, -0.00438149972, 0.0304279123, -0.00457916129, -0.0095356768, 0.013464951, -0.0296133067, 0.03073938, -0.00502539752, 0.0169509836, 0.0399396308, -0.00894269161, 0.0114583857, -0.00316258613, 0.0222938377, -0.00468398212, 0.00834970642, 0.0273372047, -0.00600472093, -0.0247735921, -0.0100448048, -0.051463902, 0.0237074178, -0.00518113095, 0.020628687, -0.00174151885, -0.0148306126, -0.00718170637, -0.0095117176, -0.000338795042, -0.000538328488, -0.0231084432, 0.0108055035, 0.00327639142, 0.000150866748, 0.000152925713, -0.00311466819, 0.0265944749, 0.0125185708, -0.00381247373, 0.0214073546, -0.0199578367, -0.000986810774, 7.71179912e-05, -0.00675044442, -0.0128779551, 0.00869112276, 0.00398318144, 0.0060376646, 0.00767885521, -0.00156182644, 0.0331592374, 0.029206004, 0.00715774717, -0.00479778694, -0.0138602741, -0.0129138939, 0.00951770786, 0.00817600451, -0.00516615668, -0.0012556006, -0.00135518017, 0.0212636013, -0.0369926766, -0.000318766834, -0.0065228343, 0.0103203338, 0.0338300876, 0.0328717306, -0.0230725035, 0.0107036773, 0.000959856901, -0.0145910233, -0.0139680896, -0.0120034525, 0.0108654005, 0.012111268, 0.00733145, 0.0197302252, 0.00229706778, 0.0215630885, 0.0366812088, -0.0182567481, -0.0125305504, -0.027792424, 0.00377054559, 0.0169509836, -0.0184843577, -0.0132972375, -0.00536082312, 0.0230605248, -0.00147422636, 0.0158129316, 0.0136206839, 0.0280559734, 0.0210359897, 0.0166874342, 0.0353634655, -0.0344290622, -0.0116620371, 0.000770431187, -0.0215031914, 0.00685227, 0.0165796187, -0.0108833695, 0.00376755069, 0.00233749859, 0.0225334279, 0.00839163549, -0.0393167, 0.00887081493, 0.00601071073, -0.0228568725, 0.0181489326, -0.00452525355, 0.00682831137, 0.0298768561, 0.0220183097, 0.0455699936, -0.00662466, 0.0334227867, -0.0173343271, 0.01395611, 0.0231683403, 0.00991303101, 0.00155134441, -0.0215870477, 0.0144233098, 0.00909842551, 0.016076481, 0.00329735549, 0.0120274117, -0.017861424, 0.023947008, -0.00466002291, 0.00305926311, -0.00813407637, 0.0228568725, -0.0310029294, 0.00424373569, -0.00241836021, -0.00454322295, -0.0026938885, 0.0303560365, -0.00118072878, -0.00397419697, 0.0213234983, -0.0126503445, -0.0120633496, 0.0136925606, 0.00320451451, -0.0312185604, -0.0104341386, 0.039867755, -0.0077627115, -0.00139336486, -0.014111843, -0.012267001, -0.018412482, -0.0312425178, 0.00123014417, 0.00409698673, 0.0390291885, -0.00631918292, 0.0169749428, -0.0137883965, -0.020137528, 0.00290652458, -0.00863122474, -0.0103862211, 0.000807118369, -0.0240668021, -0.0221740417, -0.0212755799, -0.00703196274, 0.00508529507, 0.00366273, 0.00164268806, 0.0316498205, -0.0165556595, -0.00173253426, -0.0147347767, 0.000600097759, 0.0178135075, 0.000506507931, 0.0316737816, -0.0443480834, -0.0241746176, -0.0115542216, 0.0279361792, 0.0053937668, 0.00561239244, 0.00805021916, 0.00996693876, -0.0187119693, -0.00997292809, 0.00742129609, 0.00716373697, -0.0123748165, -0.020257324, 0.00461809477, 0.0258277878, 0.0240907613, 0.0180890355, 0.00582502875, -0.0298289377, 0.0148545718, 0.00394125329, -0.00346506853, 0.00601370586, 0.0248454697, -0.00866716355, 0.00107815443, -0.00450428948, -0.0239230487, 0.0100927232, -0.00712180883, -2.7281425e-05, 0.0349561609, 0.00998490769, 0.0259715412, 0.0275049172, 0.0167353526, -0.00415388914, -0.0253725667, -0.000834820967, -0.0162202343, 0.00968542, 0.0162082538, 0.0136087043, 0.0215990264, -0.0087210713, -0.00198560092, -0.0249413047, -0.0043006381, -0.00745723443, -0.0212875605, 0.0437011905, 0.0159566849, -0.00582802342, -0.0452585258, -0.0168791059, -0.00103472872, 0.0304279123, 0.0080921473, -0.00901456829, -0.0159087665, 0.00123538531, -0.0423355289, -0.0169629622, 0.00251569366, 0.0264746808, 0.000490036153, 0.00507631, 0.00879294798, 0.0194307379, 0.0082598608, 0.0293497592, 0.0271934494, -0.00286759133, 0.0215870477, -0.0107575851, 0.00748718344, 0.00509128487, -0.00184184709, -0.0117159449, 0.0404667296, 0.00350400177, -0.00438748952, -0.00970338937, 0.0305237491, -0.00911639445, -0.0022072217, 0.00289155031, -0.010266426, -0.00893670227, 0.0413292535, -0.00721764471, -0.0200656522, -0.0260194596, 0.040083386, 0.00434556138, 0.00223417557, -0.01040419, -0.0151899979, 0.00959557388, -0.00718170637, -0.0121052777, 0.01586085, 0.000872256875, 0.0098651126, 0.0202333648, -0.0237193964, -0.0201614872, -0.00374958152, -0.00866716355, -0.000604215718, 0.00589990057, 0.0305956267, 0.0286309887, 0.0142316381, 0.0316019021, 0.0129857706, 0.0016037547, -0.020197425, -0.0124586727, 0.0190114565, -0.00489961263, -0.00770880375, 0.00480976654, -0.0154415667, -0.0392448194, 0.014818633, 0.0145790437, 0.0183525831, -0.00130726222, 0.00385440188, 0.0110391034, -0.0417605154, -0.0107096666, 0.000733743946, 0.00229706778, -0.00136416475, -0.00427967403, 0.00283614499, 0.021119846, -0.000203277028, -0.0133930733, -0.00540275173, -0.010619821, -0.00468398212, -0.00834371708, -0.00613949029, -0.00094563124, -0.00118447235, -0.0137165198, 0.0098411534, 0.021395376, -0.010991185, -0.00804423, -0.0141956992, 0.0052470183, 0.0134050529, 0.013464951, 0.0108534209, -0.0173463058, -0.0304279123, -0.00622933637, -0.0165556595, -0.0376395695, 0.0136566227, -0.00285860663, -0.00389932515, -0.00330933509, -0.000656625954, 0.012482632, -0.0101346513, -0.000662241364, -0.0114703653, 0.0174541213, -0.0131175453, -0.00611553155, 0.0280320141, -0.0209042151, 0.0164837837, 0.000267854, -0.0210958887, 0.0107635744, 0.0318414941, -0.00721764471, -0.0130576482, -0.00571421813, 0.0155374026, -0.0389333516, -0.00421079202, 0.02268916, 0.0110930111, -0.0174181834, -0.0147227971, -0.00181938556, -0.00970338937, -0.0014442777, -0.00629522372, -0.0107336259, 0.00501641305, 0.00692414725, -0.00592086464, -0.0132253608, 0.0183166452, 0.00134320068, -0.0208682772, -0.011697975, -0.0261152964, -0.0266184341, 0.0125904474, 0.0129977502, 0.0161842946, -0.0144352894, -0.0096974, 0.00453124335, 0.00506133586, -0.0200896095, -0.0065048649, 0.0184005015, 0.00785255805, -0.0068402905, -0.0190713536, 0.00423774589, 0.0241985768, -0.0156691782, 0.00619938783, -0.00129004172, 0.0105419541, 0.0143154943, 0.00529194111, 0.00115901593, 0.0145550845, -0.00209042151, 0.00380947883, 0.0176937114, 0.00442342786, -0.00945182052, 0.0117698526, -0.010422159, -0.00816402491, 0.0223896727, 0.0336863361, -0.00529793091, 0.0166395158, -0.00163370336, 0.0060376646, -0.0211318266, -0.0125185708, 0.00268190913, -0.0244741049, 0.00338720181, -0.0304997899, 0.00470794085, 0.0337342545, 0.00754708098, 0.0211438052, -0.0203411803, -0.0232881345, 0.0271934494, -0.00266244239, -0.0110690519, -0.0259715412, 0.0103622619, -0.000542072055, 0.00993698929, 0.0329915248, 0.00894269161, 0.0025636116, -0.0306914616, 0.0126263862, 0.0271934494, -0.0116620371, 0.00102799025, -0.0171067156, -0.0112547344, -0.0110690519, -0.00115826726, -0.0164358653, -0.0115242722, 0.0104281493, -0.0139800692, 0.0127342017, -0.00917629153, 0.0219344515, -0.00138962117, 0.0196343902, -0.00562736718, 0.01275816, 0.0557286032, -9.47128719e-05, 0.02268916, 0.0165796187, 0.0165197216, -0.0344530232, -0.0183525831, -0.000186243691, -0.00150118023, 0.0411855, 0.00996693876, 0.00836168602, -0.016723372, 0.00177595986, 0.0203411803, -0.0297091436, 0.027792424, -0.00329436059, 0.019119272, 0.0316498205, -0.0010324826, -0.015525423, 0.0153457308, 0.0232042782, -0.0206766054, 0.0315300263, -0.00617542863, 0.00771479355, 0.0290143322, -0.0182687268, -0.0107695647, 0.00844554324, 0.00255612447, -0.0298289377, 0.0147108175, 0.0049205767, 0.00162621622, -0.00852340925, 0.0224375911, -0.0225813445, -0.00768484501, 0.00522605376, 0.002708863, 0.0312185604, -0.00975130778, -0.00367770437, -0.011482344, -0.00234348839, -0.0036717148, -0.0151780182, 0.018412482, -0.0144832078, 0.00592685444, 0.00339019671, 0.0316498205, 0.0163280498, 0.0257559102, 0.0206047278, -0.0128539968, -0.0172265116, -0.00183436, -0.00140983658, -0.0250131823, 0.00616943929, -0.00418383814, 0.0173463058, 0.0238990895, -0.0082478812, 0.00894269161, -0.00985912327, 0.00524402317, 0.00854137912, 0.0352197103, 0.00170108804, 0.00298888353, 0.00576213608, -0.00850544, 0.00601071073, 0.00126758008, 0.022102166, -0.000153393674, 0.0110930111, 0.020748483, 0.0299487337, 0.00806219876, -0.00548361288, -0.0183525831, -0.0251329765, 0.0118836574, 0.0166514963, 0.0151301, 0.0388614759, -0.0286070295, 0.0267382283, -0.0125664882, 0.02410274, -0.00189725228, -0.0127342017, 0.000204025753, 0.00948775839, 0.00267442199, 0.015034264, 0.00376455579, -0.00977526698, 0.00661867, -0.0136087043, 0.0164358653, -0.00736139854, -0.0145191457, -0.00733744, -0.0109252976, 0.00392627902, 0.00747520383, -0.0105179949, 0.00125110836, -5.40481051e-05, 0.011973504, 0.0113625498, -0.00883487612, -0.0189755168, 0.0155134443, 0.00700800354, 0.0306435432, 0.00681034196, -0.0126383658, -0.0156931356, -0.011188847, 0.00701399334, 0.0205568112, -0.0133571355, -0.00927212741, 0.0321529619, -0.0103383027, 0.0228928123, -0.00187479076, -0.0184843577, -0.00222668843, -0.0170947369, -0.0120393904, -0.00368668907, -0.00691216765, -0.00163220603, -0.00934999436, 0.0227251, -0.00584000302, 0.00589690544, 0.0213833954, -0.0172504708, 0.0111409286, -0.000907446607, 0.000522231043, 0.0202693027, 0.000829579891, 0.00320451451, 0.00855934806, -0.00743926549, -0.00960755348, -0.0242584739, 0.00911639445, -0.0275049172, 0.0110930111, 0.00546264881, 0.00402510958, 0.0161124188, 0.0101226717, 0.0109312879, 0.00139710843, 0.0151660386, 0.0190713536, 0.017154634, 0.000649887486, 0.0226172842, 0.0215271488, -0.00484271, -0.0065108547, 0.011266714, -0.0116680264, -0.00381546863, 0.0181848705, -0.0294695534, 0.0170108806, -0.00655877264, 0.0050972742, 0.00707389088, 0.00278074, -0.0239350274, -0.0147946747, 0.00156332389, 0.00577112101, -0.0111229597, 0.00409399206, -0.0028481246, -0.0166874342, -0.0227730162, 0.0126383658, -0.0253246482, 0.001052698, 0.0106916977, -0.000983067206, 0.00995495915, -0.00894269161, 0.000618815713, -0.020257324, -0.0225454066, -0.0173822455, -0.010266426, -0.00994896889, 0.0215391293, -0.0157051161, 0.00305477087, 0.00717571657, 0.0120813195, -0.00796037354, -0.0314102322, 0.00407602265, 0.00105045177, -0.0229527093, -0.0095117176, -0.0108114928, -0.00705592148, -0.00574716181, 0.00104895444, -0.00982318446, 0.00258607324, -0.0043066279, 0.000117642368, -0.0189395789, -0.0334467441, 0.00104146719, -0.000740856805, -0.00141732383, -0.00177595986, 0.00213234988, 0.00639105961, 0.0172504708, -0.00251419609, -0.0160525218, 0.00554051576, -0.0234079305, 0.0133691141, -0.00954166614, -0.000280582201, -0.00396221736, -0.00337821711, 0.0175379775, 0.0100567844, -0.00813407637, 0.010835452, 0.00866117328, -0.0159447063, -0.00640303921, 0.000830328616, -0.026067378, 0.0129019143, 0.000970338937, -0.0121951243, -0.0155613618, -8.14231171e-05, 0.0120453807, 0.0199578367, -0.00481575634, -0.0129138939, 0.00549858762, -0.0295893494, 0.0294695534, -0.0315539837, -0.0320331641, 0.0197302252, 0.0131534841, -0.00427368423, 0.0183885228, -0.0095356768, -0.0103263231, -0.0128779551, 0.0158488695, 0.032895688, -0.0226172842, 0.0379749946, -0.00533386925, 0.000798133726, -0.0180171579, -0.000347405294, -0.0020529856, 0.00479479227, 0.0190953128, 0.012111268, 0.0168910865, -0.0161243975, -0.00389333535, -0.0175619368, 0.0120753292, 0.0116380779, 0.000247638585, -0.0060616238, -0.0107815443, -0.00581304915, 0.00109687238, -0.00841559377, -0.0049505257, 0.00537280273, 0.00763093727, 0.0055704643, -0.00193319074, -0.00350699667, -0.000295369391, -0.0125065912, 0.00942187198, -0.0122250728, 0.0179452803, 0.00304129394, 0.0149384281, -0.013680581, -0.02268916, -0.0170348398, 0.0134170325, -0.00513920281, 0.00722363451, 0.0096974, 0.0139800692, 0.00301434, 0.00196613441, -0.0117758419, -0.00560640311, -0.0108773801, 0.0122190835, 0.00073861063, 0.0118417293, 0.00780464, 0.0211438052, -0.00514818728, -0.00171157008, 0.00225663697, -0.00292599131, -0.00245130388, -0.0103263231, -0.0284872353, 0.00166814448, -0.00664262893, -0.0102244979, 0.00819996279, 0.0241985768, 0.000230605248, -1.26346222e-05, 0.0157170948, -0.00814006571, -0.00757103972, -0.0130456686, 0.00775073236, -0.00417784834, -0.0173463058, -0.00202752929, 0.011051083, -0.000600846484, -0.00480377674, -0.00740931649, -0.000236782173, 0.0034800428, 0.010619821, 0.00410297653, 0.000604215718, -0.0110870209, -0.0322008766, -0.00285710907, 0.0173463058, -0.0154775055, -0.00978125632, 0.0248215105, -0.0098411534, -0.011542242, -0.0189515576, -0.00388135575, 0.0028735809, 0.00139486231, 0.0107875336, -0.00767885521, -0.00313862716, 0.00273132441, -0.0221500825, 0.0195744913, 0.00298738619, 0.0277445074, 0.0141597614, -0.0102185076, -0.00103398, -0.0259715412, -0.0161603373, 0.015645219, 0.0111708771, 0.00479179714, 0.0154415667, -0.000655877287, 0.000929159462, -0.00420480222, 0.00743926549, -0.0110450927, -0.0169749428, 0.00660669059, -0.00610355195, 0.0156092802, 0.0247975513, 0.0177176706, 0.0265944749, 0.013464951, -0.0111768674, -0.0112367645, 0.0254684035, -0.00374059682, 0.0195984505, 0.0222099815, -0.0238152333, 0.0126743037, -0.0214073546, 0.013680581, 0.0249173455, -0.0164957624, 0.00940989237, -0.00377953, 0.0183166452, -0.014171741, -0.005702239, -0.00194666767, 0.0229527093, -0.00316258613, -0.0108474316, -0.0145670641, -0.00881690718, 0.0166754555, -0.000302856555, -0.0249892231, 0.0294695534, 0.00333029917, 0.0145670641, 0.0125185708, -0.00699602393, -0.0250850599, -0.0151061416, -0.014603002, 0.0129138939, 0.00166814448, -0.0273851212, 0.013524848, 0.0102724154, -0.0160285626, -0.0109372772, 0.0227610376, 0.016076481, -0.0291820467, -0.0082598608, 0.00499544851, -0.00241536531, 0.00634913146, -0.00499544851, 0.00657674205, 0.0348124094, -0.019119272, 0.0139680896, -2.14788579e-05, -0.0228329152, 0.0114643751, 0.0215271488, -0.0183765423, 0.0058729467, 0.0164358653, 0.0183525831, 0.0101406407, 0.00265944749, -0.00454322295, 0.00218326272, -0.00835569669, 0.0168072283, 0.00239589857, 0.00498646405, 0.0151780182, -0.0207844209, 0.00230006268, 0.0165556595, -0.01134458, 0.00104296464, 0.004779818, -0.0300206095, 0.00994896889, 0.00186730351, 0.00165766245, 0.0271934494, 0.00304129394, -0.00957760494, 0.00506133586, -0.0131654628, 0.0215990264, 0.0318654515, 0.0210479703, -0.0140399663, -0.0137524586, 0.0124466931, -0.00683430117, 0.0172504708, -0.00502240239, -0.000320077088, -0.00601370586, 0.0371843465, 0.0315779448, -0.000743102923, 0.0119555341, 0.0038364327, 0.000944133848, 0.0093919225, -0.012818058, 0.000422277139, 0.002870586, -0.0123508573, -0.00475286413, 0.00192720094, 0.00710383942, 0.0153097929, -0.00332131446, -0.00329735549, 0.00088423636, 0.0287028663, -0.0136566227, 0.0103502823, 0.000986810774, 0.0124946116, -0.00125335448, -0.0126623241, 0.0208083801, 0.00146374432, 0.00645095715, -0.00707389088, -0.000960605626, 0.0245340019, 0.0105299745, -0.0109851956, 0.021059949, -0.0258996654, -0.00517214648, 0.017370265, -0.00463905884, -0.00440545846, 0.0102724154, 0.00771479355, -0.00304578617, 0.0141477818, 0.0087450305, -0.000646143919, 0.00467499718, 0.000135985974, 0.00999089703, 0.000961354352, -0.0187119693, 0.010913318, 0.00893670227, 0.000929908187, -0.00529493624, -0.00639704941, -0.00546264881, -0.004465356, -0.0163639877, 0.00848747138, -0.0111109801, 0.0117339138, 0.022473529, 0.00971536897, -0.0109971752, -0.00782260951, 0.0232761558, 0.035411384, 0.00948775839, -0.0276007522, -0.00193468819, -0.00976328738, 0.00136416475, 0.016016582, 0.0223657135, -0.00113056472, 0.0221740417, 0.0145311253, 0.0169150438, -0.0270017777, -0.0149384281, -0.00772677315, -0.0154655259, -0.00664861873, 0.00169659569, 0.00543569494, 0.00444139726, 0.0090624867, -0.00976328738, -0.0193109438, 0.005387777, -0.000952369708, 0.00842757337, -0.0202333648, -0.00813407637, -0.00458515109, -0.00641501881, 0.00196613441, -0.000441743818, -0.00401313044, -0.00443241233, 0.0146509204, -0.0174062047, 0.0198500212, 0.00715175737, -0.012482632, 0.0207005646, -0.0157051161, 0.0113745285, 0.0131774424, 0.0108833695, 0.0238152333, 0.00741530629, 0.00251868856, 0.0154056288, 0.000371364295, 0.00892472267, -0.0102424668, 0.0138243353, -0.0034860326, 0.0100208465, 0.0125545086, -0.0228928123, 0.00772677315, -0.0149623873, -0.00681633176, -0.0130696269, 0.00109986728, 0.0036537454, 0.00990704075, -0.00581903895, -0.00206047297, 0.00218176516, -0.00871508103, -0.00580106955, 0.0291820467, 0.00212336518, -0.013740479, -0.00656476244, 0.00658273138, 0.0298289377, 0.0152139561, -0.00944583, 0.0159087665, 0.00546564395, -0.00263548852, 0.00961354375, -0.0174062047, 0.0171186961, -0.0122610116, -0.000744226039, -0.0231923, -0.0112906722, 0.00342913, 0.00444439193, 0.0266663525, 0.0131534841, -0.0167952497, 0.0158488695, -0.0055824439, -0.0203890968, -0.0142675769, 0.00937395357, 0.0255402792, 0.00257708854, 0.0383343771, 0.0167353526, 0.0316977389, 0.0165796187, 0.0112427548, -0.00949973799, -0.0206047278, -0.0137524586, 0.0331832, 0.0101047028, -0.0166275371, 0.00867914315, 0.00694211619, -0.0211557858, 0.00481875101, -0.0211438052, 0.0188078042, 0.00115676981, 0.0106437802, -0.00711581903, 0.00912238378, -0.00960156415, -0.00831376854, -0.0332071558, 0.011620109, 0.00584898749, 0.00970338937, -0.00657075224, -0.0127821192, -0.00846950151, -0.0157530345, 0.0159686655, -0.0103922104, 0.0253486075, -0.00104071852, -0.00816402491, -0.00352197094, 0.026163213, -0.0352197103, 0.0160285626, -0.00495651551, -0.00106991851, 0.0252527725, 0.00760098873, -0.0142316381, -0.00893670227, 0.00599573646, -0.00043500535, 0.0233480334, 0.00533386925, 0.0049385461, 0.00200806255, 0.0248933863, -0.0221261233, -0.00865518395, 0.00258906791, 0.0339019671, 0.0285351537, -0.0123149194, -0.0170707777, 0.020472955, 0.0159087665, -0.0103742415, -0.0149504077, 0.00171905733, 0.00181489321, -0.00218026782, 0.019215107, -0.00736139854, 0.00950572826, -0.0284153577, 0.00299786823, -0.00323146838, 0.031266477, 0.0170827582, -0.00568426959, 0.00913436338, 0.0265226, 0.00788849592, 0.0133691141, -0.0262111314, 0.00339019671, -0.0116859954, -0.021670904, -0.0128060784, -0.00202153949, -0.0113086421, 0.00837965589, 0.00766687561, 0.00053009257, 0.0142196584, 0.000439872034, 0.00736738835, 0.000454472029, 0.0025486371, -0.00791245513, 0.0113984877, -0.0292539224, 0.0022476525, 0.0206406675, 0.020748483, -0.0253725667, -0.00751713198, -0.00579507975, -0.00334826834, -0.00199308828, 0.0403948501, 0.0251329765, -0.00181639066, -0.00073861063, 0.00906847604, 0.00839762483, 0.000207956517, -0.0151420794, -1.52434377e-05, 0.00727155246, 0.0105179949, -0.00323446328, -0.0218745545, -5.66686176e-05, -0.00571721327, -0.0117159449, 0.00671450607, 0.0123149194, -0.00804423, 0.0149743669, 0.0132732783, -0.00068545161, -0.00967344083, 0.00895467121, -0.00875701, -0.0185083169, 0.0186400916, -0.00979323592, 0.0271694902, 0.0138243353, -0.0183525831, 0.00461809477, 0.0211557858, -0.0187958255, 0.0149264485, 0.0194187593, 0.00406404305, 0.0146629, -0.0176817328, -0.0188197847, -0.00663065, -0.013524848, 0.0201495085, -0.0133930733, 0.0207245238, 0.00847549178, 0.0127821192, 0.0216469448, 0.017154634, -0.013524848, 0.0197901223, 0.00912837405, 0.0259955, -0.00338420691, -0.00787052698, -0.00132073916, 0.00152064697, 0.00820595305, 0.0166395158, -0.00574716181, -0.00124212366, 0.0135008888, -0.00179692404, -0.0268580243, -0.00978724565, 0.00936796423, 0.00131175457, 0.00766687561, -0.000423774589, -0.0255642384, -0.00302032987, 0.0153337512, -0.0118776681, -0.0416886359, 0.00440545846, 0.00166814448, -0.0149983261, 0.0241865963, 0.0077986503, 0.0168791059, 0.0105898725, 0.00670851627, 0.0045971307, 0.0104580978, 0.0095356768, 0.019334903, 0.0195145942, 0.0252288133, -0.0191791691, -0.00896066148, 0.0225813445, 0.00988308247, -0.00855335779, 0.0229886472, -0.00782859884, 0.00876898877, 0.0100088669, -0.00957161561, -0.0105479443, -0.0190833323, 0.000605338777, -0.00618740823, 0.00253366283, 0.0133810937, -0.0202213842, -0.0113865081, -0.00956562534, 0.0121771554, -0.0130097298, -0.00197062665, 0.00273282197, 0.00295294519, 0.0189276, 0.0102304872, -0.00606761361, 0.0107575851, -0.00831975788, -0.0165556595, 0.00910441484, -0.00316258613, 0.017921323, -0.00584000302, 0.00173403171, 0.0231324024, -0.00430363277, -0.00875102, -0.00497149, 0.0164598245, 0.00444738707, -0.0312185604, 0.00727754226, 0.0261871722, -0.0327040181, 0.0102544464, -0.0113865081, 0.000914185075, -0.0122011136, -0.0266663525, -0.00445337687, 0.0128060784, 0.018196851, -0.0043126177, -0.0132253608, -0.00750515237, -0.0150702028, -0.00517214648, 0.00219224719, -0.00190623687, -0.00924816914, 0.0120274117, -0.0158967879, 0.00806818902, -0.004465356, -0.0199338775, 0.00214133435, 0.0107875336, -0.00619938783, 0.004749869, -0.0105479443, 0.00249472959, -0.00723561412, -0.00318954, 0.0130576482, -0.0178734045, -0.00284962193, 0.00244231918, -0.00579208508, -0.0125185708, 0.00145550841, -0.0114104673, -0.0159926228, -0.00425571483, -0.0187479071, 0.00924217887, 0.0106797181, 0.000898462, 0.0117339138, 0.0164598245, 0.0060196952, -0.01275816, -0.00881690718, 0.00622933637, -0.0296133067, -0.0134050529, 0.00178644189, 0.00129153917, -0.00401612511, -0.0115003139, 0.00686424971, -0.004111961, -0.00770281442, 0.0118177701, 0.0119555341, -0.0188677013, -0.0139201712, -0.000530841295, -0.0118297497, -0.0137524586, -0.0109492568, 0.0161124188, 0.00883487612, -0.00505235139, 0.00485169468, -0.0212875605, -0.019550534, -0.0196583495, -0.0151420794, 0.0137883965, -0.0122190835, 0.0168072283, -0.0175020397, -0.0138123557, -0.0128420172, -0.0142795565, 0.0110570723, 0.00669054687, 0.0123149194, 0.020472955, -1.17396694e-05, 0.00752911158, -0.0148665514, 0.00118522113, 0.00257409364, -0.00996693876, 0.00220272923, -0.000439123309, -0.0114404159, 0.0128899347, -0.00736738835, -0.00728353206, -0.056782797, -0.0177536085, 0.000239964225, 0.014447269, -0.0105958618, 0.0119435545, -0.0150103047, -0.028127851, -0.00979922526, -0.00808615796, -0.00462408457, 0.00243632938, 0.021119846, 0.00288406294, 0.0177416299, -0.017585896, 0.0107276365, -0.00204549846, -0.0173463058, 0.00212785741, -0.0182088297, -0.0221141446, 0.0166035779, 0.0016037547, -0.0174661018, -0.0131534841, 0.0129378531, -0.0020559805, -0.013033689, 0.0116620371, -0.0129378531, 0.0138003761, 0.00154834951, 0.0172864087, -0.0122909602, -0.0166874342, 0.0052350387, -0.00701399334, 0.0107995132, -0.0217547603, 0.000504261814, -0.013033689, -0.018077055, -0.00394724309, -0.00908045564, 0.0154295871, -0.00357288378, -0.0171067156, -0.0137045402, 0.0243303515, -0.0193948, 0.00261003221, -0.00117024675, -0.00456119189, -0.0171785932, -0.00131474936, -0.00661867, 0.00632517226, -0.00589391077, 0.0180890355, 0.015094162, -0.0297810212, 0.0150702028, 0.0210000519, -0.00225214474, -0.001116339, -0.0264746808, 0.0122190835, 0.00249023712, 0.0225813445, -0.0149024902, -0.00891274307, -0.00536980806, -0.00621136744, -0.00100403128, 0.0068462803, -0.0168551467, -0.00534584885, 0.0102963746, -0.00784656778, 0.00551955169, -0.00877497904, -0.00578310061, 0.0124586727, -0.00170408294, 0.00485768449, 0.0258038286, 0.0087450305, 0.017370265, 0.00564533612, 0.00875701, 4.71224594e-05, -0.0191671886, 0.0130576482, 0.0150222844, 0.00423175609, -0.00757702952, -0.00456718169, 0.000347779656, 0.0146748796, -0.0128060784, -0.0028421348, 0.0129977502, -0.0155374026, 0.0302122831, -0.0145311253, 0.00133346731, -0.0162561722, 0.00689419825, 0.00259206281, 0.0281038918, -0.00207993947, 0.0155973006, -0.0189515576, -0.00166215468, 0.0280320141, -0.00564234145, -0.00222069863, -0.00336024794, 0.0229287501, -0.0108055035, 0.0125545086, -0.01324932, 0.0147467563, 0.00887680426, -0.00851143, 0.0144712282, -0.00888279453, -0.00665460853, 0.00788250659, 0.0206167083, -0.0107096666, 0.00390531472, -0.000126439802, 0.00715774717, -0.0258757062, 0.00545665901, -0.00853538886, 0.00175799069, 0.00694211619, 0.00328238122, -0.00887081493, 0.00572020793, -0.0179572608, -0.0104880463, 0.00954166614, -0.000816103, 0.0104401289, 0.0161603373, 0.00417784834, -0.0299487337, 0.00661867, 0.0101526203, 0.00349801197, 0.0226532221, -0.0280799326, 0.0106138308, 0.000100983387, -0.00864919461, -0.00781062944, 0.0077926605, 0.0193109438, 0.0284153577, -0.00631918292, -0.00289005274, 0.019490635, -0.0128300376, -0.0162921101, -0.00977526698, -0.0135607868, 0.0223297756, 0.013680581, 0.0217068419, -0.00414490467, 0.00164268806, -0.0165317, -0.00114104676, -0.00418683281, 0.00927212741, -0.00948775839, 0.00919426139, -0.00530991051, -0.00456119189, 0.00356389931, 0.0382145829, -0.00532787945, 0.0126862833, -0.000268789881, -0.00809813756, -0.00655278284, 0.015154059, 0.00943984091, -0.000452225882, 0.0177296493, -0.017154634, 0.0138123557, 0.00770281442, -0.00466301758, 0.00817600451, 0.0135008888, -0.0168431681, -0.0261152964, 0.0100867338, 0.00994896889, 0.0168910865, -0.0154655259, 0.0121052777, 0.00569624919, -0.000632667, -0.0130456686, 0.000914185075, -0.0238032527, -0.0095236972, 0.0362978652, 0.000140103919, 0.0106318006, 0.00236295513, 0.00384242251, 0.0144113302, 0.00474088453, 0.0330154821, 0.0158848073, 0.00228658575, -0.00993698929, 0.0125065912, 0.0168072283, -0.00667856773, -0.0230605248, -0.0365134962, -0.018568214, -0.00388734555, -0.0285830703, 0.0168671273, -0.0213594362, -0.00212636, 0.00854137912, -0.0049505257, 0.0217308011, -0.00893071201, 0.0172145311, -0.000855785038, 0.00660669059, -0.0201734677, -0.0107336259, -0.00199308828, 0.00339319138, 0.00339319138, 0.00210389844, 0.0302122831, 0.00830178894, 0.000227423196, 0.000947877415, 0.0132373404, 0.0187119693, 0.00369267887, -0.00505834119, -0.0116620371, 0.00164119061, -0.00221770373, 0.00763692707, 0.00893670227, 0.00277175521, -0.0233360529, -0.0182088297, 0.00243033981, -0.0174181834, 0.00932603516, -0.0271215737, 0.000933651754, -0.00369866868, 0.000279833475, 0.0020529856, -0.007930425, 0.00896066148, 0.0272174086, -0.0100927232, 0.000952369708, -0.000919426093, -0.0196463689, 0.00438449439, -0.0153457308, -0.00117623655, -0.0228329152, 0.0159806442, -0.0219464321, 0.0274569988, 0.0244261865, -0.0139800692, -0.00592984911, -0.019862, 0.00823590159, -0.0202213842, 0.0121651758, 0.00849945098, -0.00112981594, -0.00824189186, -0.00864320435, 0.0119675137, 0.000254751416, -0.0329436064, 0.0104281493, 0.0277205482, 0.0034830377, 0.00839163549, -0.0085892966, 0.00754109118, -0.0106857084, -0.00944583, -0.0169869214, 0.0110031646, -0.0365134962, 0.0339978039, 0.00664861873, -0.00357288378, 0.00480078207, -0.0251329765, -0.0395562872, -0.00419881241, -0.00423774589, 0.00582203362, -0.0135967247, 0.000125878272, 0.00468098698, 0.00369267887, 0.00309070922, 0.00187778554, -0.022749057, 0.000807118369, -0.00401013531, -0.00253965263, -0.00121142622, -0.00332131446, 0.00197062665, -0.00787052698, -0.0193229225, -0.0133092171, -0.0178374648, -0.0227610376, 0.011620109, 0.00244830898, 0.00718769617, 0.0135967247, -0.0280799326, -0.00392927369, 0.00372861722, 0.00321349921, -0.000932903, 0.0142795565, 0.013524848, -0.000774923479, -0.0117818313, -0.0261392538, 0.00427967403, 0.00772677315, 0.00679836236, -0.000252130907, -0.0222099815, -0.0101945484, -0.00830777828, -0.000788400415, 0.0312185604, -0.00421678182, 0.00542671047, -0.00654080324, 0.020041693, -0.0254444443, 0.0388375185, -0.0049265665, -0.0164358653, 0.00507331546, 0.00291550928, -0.00296192965, -0.0192630254, 0.00228359085, 0.00243632938, 0.00107066717, -0.00790047552, 0.00817001425, -0.0216110069, -0.00410896633, 0.0266423933, -0.0218745545, 7.55737565e-05, -0.022473529, 0.009931, 0.0162202343, -0.00179991883, 0.00142181606, 0.00597776705, -0.000868513249, -0.0147587359, 0.00570523366, -0.012602427, -0.00982318446, 0.00890675373, -0.00655278284, -6.29859278e-05, 0.004465356, -0.0147587359, 0.0293258, -0.00124436989, -0.0095236972, 0.0131295249, -0.0065108547, 0.0268580243, 0.000150866748, -0.025636116, -0.0175020397, -0.0159207471, -0.0284393169, -0.00355191971, 0.00245729368, 0.0198979378, 0.0109971752, 0.0106078414, 0.0151660386, 0.00681633176, 0.0200297125, 0.00215481129, -0.0120393904, -0.00445337687, 0.025851747, -0.00289753987, 0.0199338775, -0.0227370784, -0.00803824048, -0.0209161956, -0.000327938644, 0.0181010142, 0.00336324284, -0.0154894851, -0.00479179714, 0.0218386166, -0.0133331763, 0.00908644591, 0.00174750865, -0.0232881345, 0.0017370265, 0.0096974, 0.00256810384, 0.00675044442, -0.0245340019, 0.000496774621, 0.0332311131, -0.0200656522, -0.0231563598, -0.0108594103, 0.0252767317, 0.00429165363, 0.00165167265, 0.00536980806, -0.0115182828, -0.00392028922, 0.00770281442, -0.00799631141, -0.00908644591, -0.00563036185, -0.00248574489, 0.00222519087, -0.00123538531, 0.000332056574, -0.0124706523, -0.00105120055, 0.00757702952, -0.00582802342, 0.0186880101, 0.0179093424, -0.00676242402, -0.00546564395, -0.0104760667, -0.00120169297, 0.00366872, -0.0111169694, 0.0242464952, -0.00712180883, 0.0101526203, -0.00969141, -0.0290143322, -0.00139785709, 0.000716523442, -0.00533386925, -0.00755906, -0.000616943929, 0.000726631144, -0.000647267, 0.00854137912, 0.0117339138, -0.00525300764, -0.00401013531, -0.0148665514, -0.00606761361, -0.0148545718, -0.00533087458, 0.0104101794, -0.0100208465, -0.00784656778, 0.0141358022, -0.01254253, -0.00563635165, 0.0117159449, -0.026067378, 0.00392927369, -0.00997292809, 0.00846351217, 0.0032015196, 0.00229107821, -0.0372322649, 0.0216828827, 0.0159327257, -0.0177775677, 0.0080921473, -0.00261901668, 0.0247975513, -0.0147826951, -0.0107515957, -0.00733145, 0.00398917124, 0.00446835114, 0.000356951467, -0.0268101059, -0.0288226604, 0.00737337815, -0.0175020397, -0.00685826, -0.0065048649, -0.00104221597, -0.00590888504, 0.0216828827, 0.0145910233, 0.0182567481, -0.0044713458, 0.0126623241, 0.0114763547, 0.0269538593, 0.0034950173, 0.0109432675, -0.00464205351, 0.010422159, -0.019706266, 0.0161603373, 0.00670851627, 0.0162082538, 0.0109492568, 0.00446835114, 0.024222536, -0.0104281493, 0.0323206745, 0.00433657644, 0.00983516406, 0.00333628897, -0.00335126324, 0.0128300376, -0.0434616022, 0.00603467, 0.00209191907, 0.0161004383, 0.0109372772, 0.0196463689, -0.0110750413, -0.0170947369, 0.000310343748, 0.00617542863, 0.0104940366, 0.00974531751, 0.00147871871, 0.00701998314, -0.00445038173, -0.0080921473, -0.0148905106, 0.00886482466, 0.0226771813, -0.0108833695, -0.011895637, 0.00996693876, -0.00437551, -0.00746322423, 0.0047738282, -0.0294455942, -0.00712779863, -0.00291700661, -0.0155973006, 0.000628923415, -0.025731951, -0.0152858337]
29 Aug, 2024
unordered_multiset erase() function in C++ STL 29 Aug, 2024 The unordered_multiset::erase() function is a built-in function in C++ STL which is used to remove either a single element or, all elements with a definite value or, a range of elements ranging from start(inclusive) to end(exclusive). This decreases the size of the container by the number of elements removed. Syntax unordered_multiset_name.erase(iterator position)unordered_multiset_name.erase(iterator start, iterator end)unordered_multiset_name.erase(key_value)Parameters This function has three versions. The first one takes an iterator as an argument, erases the element present at that position.The second version takes two iterator(say start and end) takes 2 iterators as argument and erases all elements in the range [start, end).The third version takes a key value as argument and erases all elements of that value in the multiset.Return Value The 1st and 2nd version of the function as shown in the above syntax returns an iterator immediately following the last element erased. The 3rd version returns the number of element erased. Below programs illustrate the unordered_multiset::erase() function: Program 1 CPP // C++ program to illustrate the // unordered_multiset::erase() function #include <iostream> #include <unordered_set> using namespace std; int main(){ unordered_multiset<int> samplemultiSet; // Inserting elements samplemultiSet.insert(10); samplemultiSet.insert(5); samplemultiSet.insert(15); samplemultiSet.insert(20); samplemultiSet.insert(25); samplemultiSet.insert(10); samplemultiSet.insert(15); samplemultiSet.insert(20); // Erases a particular element by its position samplemultiSet.erase(samplemultiSet.begin()); // Displaying the set after removal for (auto it = samplemultiSet.begin(); it != samplemultiSet.end(); it++) { cout << *it << " "; } // erases a range of elements, // here all the elements samplemultiSet.erase(samplemultiSet.begin(), samplemultiSet.end()); cout << "\nMultiSet size: " << samplemultiSet.size(); return 0; } Output 20 20 15 15 5 10 10 MultiSet size: 0Time Complexity: O(n), where n is the number of occurrences of the value 10.Auxiliary Space: O(1) Program 2 CPP // C++ program to illustrate the // unordered_multiset::erase() function #include <iostream> #include <unordered_set> using namespace std; int main(){ unordered_multiset<int> samplemultiSet; // Inserting elements samplemultiSet.insert(10); samplemultiSet.insert(5); samplemultiSet.insert(15); samplemultiSet.insert(20); samplemultiSet.insert(25); samplemultiSet.insert(10); samplemultiSet.insert(15); samplemultiSet.insert(20); // Erases all elements of value 10 samplemultiSet.erase(10); // Displaying the set after removal for (auto it = samplemultiSet.begin(); it != samplemultiSet.end(); it++) { cout << *it << " "; } return 0; } Output 25 20 20 15 15 5 Time Complexity: O(n), where n is the number of occurrences of the value 10.Auxiliary Space: O(1) Learn C++ Online – Master everything from basics to advanced concepts. Apply your knowledge with practical exercises and boost your skills. Take the Three 90 Challenge: finish 90% in 90 days for a 90% refund. Start now and level up your C++ programming!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum/Algorithm for Dynamic Time out timer Calculation/Difference between Round trip time (RTT) and Time to live (TTL)/Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms/Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm/Round Robin Scheduling Algorithm with Different Arrival Time/Selfish Round Robin CPU Scheduling/Find the order of execution of given N processes in Round Robin Scheduling/Calculate server loads using Round Robin Scheduling/set::lower_bound() Function in C++ STL/Implementation of lower_bound() and upper_bound() in List of Pairs in C++/Difference between std::set::lower_bound and std::lower_bound in C++/Difference between std::set vs std::vector in C++ STL/std::minmax() and std::minmax_element() in C++ STL/std::rotate vs std::rotate_copy in C++ STL/std::bitset::to_ullong and std::bitset::to_ulong in C++ STL/std::upper_bound and std::lower_bound for Vector in C++ STL/std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++/std::string::append vs std::string::push_back() vs Operator += in C++/Vector push_back() in C++ STL/vector :: cbegin() and vector :: cend() in C++ STL/unordered_multiset cend() function in C++ STL/unordered_multiset bucket() function in C++ STL/unordered_multiset emplace_hint() function in C++ STL/unordered_multiset end() function in C++ STL/unordered_multiset size() in C++ STL/unordered_multiset emplace() function in C++ STL/unordered_multiset find() function in C++STL/unordered_multiset erase() function in C++ STL
https://www.geeksforgeeks.org/unordered_multiset-erase-function-in-c-stl/?ref=next_article
PHP
unordered_multiset erase() function in C++ STL
What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, jQWidgets jqxTreeMap width Property, Round Robin Scheduling Algorithm with Different Arrival Time, Difference between Flow and TypeScript, unordered_multiset emplace() function in C++ STL, jQWidgets jqxTree destroy() Method, jQWidgets jqxTree collapseAll() Method, Find the order of execution of given N processes in Round Robin Scheduling, jQWidgets jqxScrollView buttonsOffset Property, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Vector push_back() in C++ STL, jQWidgets jqxListBox enableHover Property, Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm, std::rotate vs std::rotate_copy in C++ STL, Selfish Round Robin CPU Scheduling, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxSlider buttonsPosition Property, std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++, std::upper_bound and std::lower_bound for Vector in C++ STL, Difference between Round trip time (RTT) and Time to live (TTL), jQWidgets jqxSlider rtl Property, Difference between std::set::lower_bound and std::lower_bound in C++, jQWidgets jqxTooltip opacity Property, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, unordered_multiset erase() function in C++ STL, jQWidgets jqxToolBar height Property, PHP, std::minmax() and std::minmax_element() in C++ STL, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, Node.js date-and-time Date.transform() Method, unordered_multiset size() in C++ STL, TypeScript Optional Parameters, jQWidgets jqxToolBar theme Property, Difference between std::set vs std::vector in C++ STL, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, Steps to Diagnose and Resolve a Slow Network, How to use Optional Chaining with Arrays and Functions in TypeScript ?, Calculate server loads using Round Robin Scheduling, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, jQWidgets jqxScrollView showButtons Property, Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms, jQWidgets jqxScrollView disabled Property, jQWidgets jqxSplitter destroy() Method, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, set::lower_bound() Function in C++ STL, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, jQWidgets jqxTree collapseItem() Method, std::string::append vs std::string::push_back() vs Operator += in C++, unordered_multiset cend() function in C++ STL, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), jQWidgets jqxSortable opacity Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, vector :: cbegin() and vector :: cend() in C++ STL, jQWidgets jqxSlider height Property, jQWidgets jqxSwitchButton onLabel Property, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, jQWidgets jqxToolBar tools Property, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTree width Property, Implementation of lower_bound() and upper_bound() in List of Pairs in C++, jQWidgets jqxTree clear() Method, TLS Handshake?, Algorithm for Dynamic Time out timer Calculation, Adhoc TCP, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, jQWidgets jqxTabs position Property, Differences between Wireless Adhoc Network and Wireless Sensor Network, jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, std::bitset::to_ullong and std::bitset::to_ulong in C++ STL, unordered_multiset emplace_hint() function in C++ STL, unordered_multiset find() function in C++STL, unordered_multiset bucket() function in C++ STL, Impact of Three-way Handshake and Slow Start Algorithm, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, unordered_multiset end() function in C++ STL, How to Sort an Array Having Optional Properties in TypeScript ?
GeeksforGeeks
[-0.0224144533, -0.00637512561, -0.0105304625, 0.0110718738, 0.0119245974, -0.00672365958, -0.0270029195, 0.0142932748, 0.00482195, 0.0213722363, -0.0260013081, 0.0103680389, -0.0142662041, -0.032592997, 0.0119516682, -0.00392523641, 0.00880471151, -0.00130954012, -0.00942733511, -0.0425549783, 0.000129325548, 0.0157280173, -0.0133322692, -0.0207902174, -0.00527876616, 0.0300212912, -0.0299130101, 0.0141308513, 0.0166484173, 0.0133051984, 0.00360715692, 0.0163371041, 0.00559346192, -0.00694360817, -0.0249861609, 0.0301295742, 0.0319703743, 0.0347857177, -0.0119516682, 0.00278150383, 0.0258253496, 0.017149223, 0.028884327, 0.0121614654, -0.0113899531, 0.0352188461, -0.00438205292, -0.0294528082, 0.00996874738, 0.0124592418, 0.0381424725, 0.0152948871, 0.0410931669, 0.00903481152, 0.0353000574, -0.00183234096, 0.0238898024, 0.017447, -0.0317267403, -0.0418782122, -0.0200728476, -0.0464260727, 0.0397667065, -0.021764759, -0.00782340206, -0.0174063928, -0.0127637861, 0.0494579785, 0.0125810597, -0.016228823, -0.0203976948, 0.0579310767, 0.00156417291, -0.00839188509, -0.0256899968, -0.00749855535, -0.0415804349, -0.0180831589, -0.00396245858, 0.0404434726, -0.0298588686, 0.0138330748, 0.00675749779, -0.0371137895, 0.032917846, -0.00901450869, -0.0100634946, -0.0202082, 0.0577145107, 0.0288031157, -0.0418511406, -0.0170138702, 0.0341089517, -0.0106861182, -0.0249049496, 0.0288572554, 0.041797, 0.0208172891, -0.0212368835, 0.0345962234, -0.00579310767, -0.0097048087, -0.0159175117, -0.00745794922, 0.00280011492, 0.00140428718, 0.0270299911, 0.00106844259, 0.000248288125, 0.00956268795, 0.0335404687, 0.00961682945, -0.00325523922, 0.0503513105, -0.00747825252, -0.0334051177, 0.00482533406, -0.0101041, 0.0204247646, 0.00919046719, 0.0166078117, 0.00410457933, 0.0108147031, 0.00747825252, -0.0639948919, 0.0227257665, 0.000426996354, 0.0345150121, 0.0131901484, 0.00598260202, -0.0281804912, -0.0034819555, -0.00957622379, -0.0392523669, -0.0147399399, 0.0395230725, 0.00608073268, 0.0546555333, 0.0133728748, -0.0420677066, -0.0554405823, 0.014618122, -0.000418325304, -0.00812117942, -0.0201811306, -0.0127705541, -0.000500383088, 0.0280992799, 0.0242552552, 0.00837834924, -0.028667761, -0.00548856333, 0.0312936082, 0.0127705541, 0.0124863125, -0.0138872163, 0.0161070041, 0.0149429692, 0.00165638211, -0.0212639533, 0.0287489742, -0.0126893418, 0.0277744327, -0.00786400866, -0.00951531436, 0.0459658727, 0.0125675248, 0.0234566722, -0.0353000574, 0.0492414162, -0.0181373, 0.0139142871, -0.0099822823, 0.00429068971, 0.00460876897, -0.0266374666, 0.0233077835, 0.0103206653, 0.0185975, 0.0390899405, 0.0273548383, 0.0299942214, 0.0227122307, 0.0355166234, 0.00515356474, -0.00169275829, 0.00410457933, -0.0136368135, 0.023470208, -0.0118095474, -0.00729552563, 0.0256629251, 0.012317121, 0.0378176235, 0.0293174554, 0.0268404968, -0.0209932476, -0.0100905653, 0.0159310456, 0.0293174554, 0.0117757097, -0.0442333557, 0.00249387883, 0.0144556984, 0.0290738214, -0.003338143, 0.0328907743, -0.0216970835, 0.0263532251, 0.00902127661, -0.0144015579, 0.00306066941, 0.0312123988, 0.00386094395, 0.00683870958, 0.0163777117, -0.0540058389, 0.00854754075, 0.0087370351, -0.0331073403, 0.0268946383, -0.0368430838, -0.00286102365, -0.0549803823, -0.046047084, -0.0395230725, 0.0190712363, 0.0152678164, -0.00302175526, -0.00152864272, 0.0187734589, 0.0454786, -0.0304544214, -0.0202217363, 0.0492955558, -0.0115726804, -0.0450454727, -0.00822269358, 0.0143474163, 0.00386094395, 0.0111124795, 0.0218324363, -0.0328907743, -0.00460538547, 0.0191389117, 0.0367618687, -0.00386094395, -0.033594612, 0.00399968075, 0.000590477372, 0.0267322138, 0.0293445271, 0.0221843533, 0.00716694025, -0.0097048087, 0.0183403287, -0.00797905866, -0.0177853815, -0.0259065609, -0.0177583117, 0.00499114115, 0.0309958328, -0.0398749895, -0.00470351614, 0.0165265985, -0.0215075891, 0.0282887742, 7.07959553e-05, -0.0267592855, -0.054438971, 0.0113696503, 0.000639542821, -0.00807380583, -0.00374251, 0.00833097566, 0.0280180667, -0.0467779897, 0.0152542815, -0.00227393, -0.033838246, 0.0303190686, -0.0221843533, -0.00849339925, 0.0212774891, 0.0414450839, -0.00570512842, 0.00661537703, -0.00478472793, -0.0462365784, -0.0200322419, -0.00662891241, -0.0314289629, -0.000536336214, -0.000301794847, 0.0458575897, 0.0510822162, -0.0122494446, -0.0619375259, -0.0540870503, -0.034190163, -0.0101514738, -0.0124592418, 0.0261637308, -0.0203029476, -0.0108417738, -0.00118095474, 0.0212368835, -0.0132239861, 0.0244988892, -0.0595553108, -0.0098063238, -0.0261637308, -0.0257170666, 0.0156738758, 0.006963911, -0.0226580892, 0.033513397, 0.00682855817, -0.057335522, 0.0107131889, -0.0266239326, -0.00542765483, 0.0176364928, 0.0387650952, 0.0065138624, -0.0179342702, -0.0270029195, 0.0537080653, -0.0251350496, -0.0606381372, -0.0252974723, 0.00820239075, -0.0229287948, 0.0183944702, 0.00803996716, -0.0393065065, 0.000406270439, -0.0194096174, 0.0242011137, 0.0109432889, -0.0311582573, -0.0177718475, -0.000886562048, 0.0236461665, 0.0164724588, 0.0225362722, -0.018069623, -0.0128585333, -0.0118636889, 0.0397937782, 0.00108366983, -0.0229287948, -0.00145673647, 0.00125793682, 0.0153760985, -0.0348669291, -0.00713987, -0.000713141053, -0.00482871756, -0.00485917227, 0.0121479305, 0.0519755445, -0.00390493358, 0.00137890852, 0.000135247232, -0.011505004, -0.0216700118, -0.0128449984, 0.033946529, -0.0196532533, 0.016567206, -0.0377093405, 0.0282617025, 0.0082294615, -0.0384943895, -0.00487609114, 0.033594612, 0.033729963, 0.00829713792, -0.00669658883, 0.0209255703, 0.0231588949, -0.00271551916, 0.00248372718, 0.0377905518, -0.000210008613, -0.0207090061, 0.0117554069, 0.00257678237, -0.00442265859, -0.012655504, 0.00748502, -0.0251350496, -0.00640558, -0.00461553689, 0.0289926082, -0.00475765718, -0.017257506, -0.0346774347, -0.0481585898, 0.0141308513, -0.00625669165, -0.0065950742, -0.0177853815, -0.013237522, -0.0229152609, -0.0102529889, -0.0250673722, 0.0246748496, 0.0153490286, 0.0277744327, 0.0252297968, 0.00177989178, 0.0149700399, 0.0164318513, -0.00566113833, -0.00847309642, 0.0354895517, 0.00857461151, -0.0242011137, -0.0135149956, -0.000690300192, -0.0100025851, 0.0271518081, 0.0366806574, 0.0162964985, -0.00884531718, -0.0031249621, -0.0100973323, 0.0011894143, 0.0113561153, 0.0200728476, -0.0110312682, 0.0442874953, 0.000365241576, -0.0618833825, 0.0184215419, 0.000116636205, -0.00973187946, -0.0436919443, 0.0569023937, 0.00263599935, 0.026935244, -0.0304002799, 0.0198156759, 0.0560361333, -0.042933967, 0.0062059341, 0.00800612941, 0.00880471151, -0.0254057553, 0.0238627307, 0.00118687644, -0.00278488756, 0.0655108467, -0.0462636501, 0.0378717631, -0.0234566722, 0.0387921631, 0.0286948327, -0.00356316729, 0.031889163, 0.00662214449, -0.000165807403, 0.00763390819, -0.00532613974, 0.0092581436, 0.0314018913, -0.00318079512, -0.00489301048, -0.0151730692, -0.0337841064, 0.00869642943, -0.00881147943, 0.0391711518, 0.0270435251, -0.0188276, -0.00405043783, -0.0290196799, -0.00116318965, 0.0117689418, -0.0183132589, -0.0106725823, 0.00898067, -0.0216835476, -0.0280992799, 0.00468321331, -0.0240116194, -0.0215617307, -0.0125066154, -0.0126893418, -0.00901450869, -0.022455059, -0.0221302118, 0.0178124532, 0.0367077291, -0.0357873291, -0.0170138702, -0.0277744327, 0.00174774544, 0.0319433026, -0.0107334917, -0.0525440276, 0.0393335782, 0.0413368, -0.0701128468, -0.0240116194, 0.0166213457, -0.0344338, -0.00368160103, 0.0180966947, 0.03316148, -0.0054682605, -0.00200829981, -0.00502836332, -0.00342104654, 0.0285865497, 0.0221166778, -0.000235810279, 0.0147805456, 0.0274901912, 0.00804673508, -0.00695714355, 0.0521650389, -0.0304273497, 0.0249320194, -0.0132239861, 0.00211996608, -0.00846632943, -0.0485105105, -0.0176229589, -0.00605366239, -0.0119110625, 0.0146722635, -0.00916339736, -0.0343255177, -0.0165401343, 0.000691569119, -0.022049, 0.0204112306, 0.00251587364, -0.00185771973, 0.00910925586, -0.00419594254, -0.0229423307, 0.0090821851, 0.0078978464, -0.00110397278, -0.0228475835, 0.00622285344, 0.00735643459, 0.00701805204, -0.0255411081, -0.0250132307, -0.0245124251, 0.0134743899, -0.0303732101, -0.0216294061, 0.00823622942, -0.0075865346, 0.00300483615, 0.00492684869, 0.0443957783, 0.00782340206, 0.015768623, -0.0205465835, 0.0166078117, -0.0139954984, -0.0135285305, 0.0275849383, 0.0150377164, -0.0119990418, 0.0309958328, -0.00654431665, -0.0270435251, 0.0171898287, 0.0166078117, 0.0312123988, -0.0141173163, -0.00821592566, 0.00477796048, -0.020492442, 0.00275612506, 0.000131123204, -0.0064563374, -0.0120937889, -0.033053197, -0.00101514743, -0.0113831861, 0.00624315627, -0.00196769391, 0.021751225, 0.0120125776, -0.00708572846, 0.00878440868, -0.00190847705, 0.000669574307, -0.0333239026, -0.00646310486, 0.0073902728, 0.0192336589, 0.00673381099, 0.0143203456, 0.000927167945, -0.00904157944, -0.00986723229, 0.0176635645, 0.0129668154, -0.00560023, -0.0074714846, -0.0279909968, 0.0108959153, 0.0254598968, 0.000972003618, 0.00372220692, 0.0018763307, -0.0158633702, 0.0477254614, -0.000834535749, -0.0231995, -0.0177447759, -0.0319703743, 0.000547756616, 0.0305085629, 0.00447003217, 0.0148888277, -0.018529823, 0.00446326472, -0.00373912626, -0.0152948871, -0.00511972653, -0.0110989446, 0.010476321, -0.0353271291, 0.0204518363, 0.00903481152, 0.00413164962, 0.0117960125, -2.01972034e-05, 0.0393065065, -0.0132104512, 0.00789107848, 0.0239980835, 0.0370867178, -0.0125675248, 0.0124524748, -0.0124051012, 0.0469133444, 0.0137383277, -0.0159175117, -0.0426361896, 0.0285053384, 0.023822125, 0.0127908569, -0.00459861755, -0.044098, -0.0145504456, 0.00376281282, -0.000377719407, -0.00268506492, -0.0202217363, -0.022671625, 0.000568482501, 0.00275274133, 0.0030437503, -0.0180290174, -0.0502430275, -0.0283429138, -0.0108147031, 0.0217376892, -0.0259336308, -0.0181643702, 0.00624992419, 0.00852723792, -0.0134608541, -0.0108553097, -0.0193419419, 0.00958299078, -0.0164453872, -0.0235649552, -0.0129397456, -0.0132104512, 0.0212233476, -0.0124930805, 0.0112478333, -0.00416210433, -0.0020895116, 0.0149294343, 0.00314695691, -0.0578769371, -0.009874, -0.022671625, 0.0297235157, 0.0185433589, -0.00420271, 0.000938165351, 0.0115862153, 0.0199916363, -0.00504189869, -0.0291821025, 0.0091837, 0.000836227671, -0.0405788235, -0.0179342702, 0.0307251271, 0.04488305, 0.00291178096, -0.0120193446, -0.0108823795, 0.00134084048, 0.0126081305, 0.0047644251, -0.0175282117, 0.00691992138, 0.0214805193, -0.0143203456, -0.00759330252, -0.00568820909, 0.0119787389, -0.0368701518, -0.00026309237, 0.00932582095, -0.00230946019, -0.00685562845, 0.0298859384, -0.00929198228, -0.0122562125, -0.0296152327, 0.00107436429, -0.000586247595, -0.0100499587, 0.0131698456, 0.020844359, 0.00904157944, -0.0338923857, 0.0190170947, 0.0257441383, -0.0437731557, -0.0325117856, -0.0135488333, 0.00118264672, 0.0030319069, -0.0102394531, -0.00376958051, -0.0148888277, -0.0045140218, 0.00808057282, 0.00691315345, -0.0193419419, 0.0282617025, 0.0131563097, 0.0273006968, 0.0303732101, -0.0208714306, -0.00990783796, -0.0192065891, 0.0255546439, 0.00981309172, 0.0245530307, -0.0129194418, 0.0401186235, 0.0231453609, -0.0281534214, 0.0151595343, -0.0259471666, 0.0233889949, -0.00344811729, 0.0199239589, 0.00790461432, 0.0142120635, 0.0151324635, -0.00168176077, 0.0334051177, -0.00753239356, 0.00120887137, -0.0264344383, 0.00364099536, -0.0138736805, -0.0206548646, 0.0225904137, -0.0176500287, 0.0355166234, 0.0218053665, 0.0274901912, -0.00532613974, 0.0266103968, 0.0198021419, 0.0147128692, 0.00589800626, -0.0203976948, -0.0119042946, 0.0119042946, 0.026596861, 0.0371408574, -0.0141037805, -0.0318350233, -0.0131901484, -0.0491331331, -0.0269217081, -0.0207090061, 0.00187971455, 0.0156468041, -0.00538366474, 0.00102022314, -0.00876410585, -0.0273413025, 0.00400306471, 0.0328637026, 0.0253380779, 0.00840542, -0.0188411344, 0.0223197062, -0.0142662041, 0.00865582284, 0.00553255295, 0.00577618834, 0.000843418296, 0.0185839646, -0.00955592096, 0.0123577276, 0.0439355783, -0.0168649815, 0.0323222913, -0.021521125, -0.0501347445, 0.0404164, 0.0438002236, 0.0133255012, 0.0147128692, -0.00339736, 0.0045140218, 0.0177718475, 0.00209120358, 0.011505004, 0.0021707234, 0.00671350816, 0.0021131984, -0.0227257665, -0.0126013625, 0.0314018913, -0.000491077546, 0.00355978357, -0.0114373267, 0.0017781998, 0.009874, -0.0164047815, -0.018299723, 0.0372491404, -0.00774219073, -0.000154809968, 0.00432791142, 0.006963911, 0.0102326851, 0.00506558549, 0.0158092286, 0.00944763795, -0.0385756, -0.0447476953, -0.00226039486, 0.0200593118, 0.00114965439, 0.013812772, 0.00802643225, 0.0284511968, 0.0177718475, 0.0393877178, 0.0102868266, -0.0290738214, -0.0112275295, -0.0150918579, -0.00871673226, -0.00522124115, -0.0273413025, -0.0159310456, -0.00418240717, -0.00672704307, -0.00890622661, -0.00587093551, 0.0128585333, -9.20506063e-05, 0.0229152609, -0.04350245, -0.028776044, -0.0638324693, -0.00443281, 0.003453193, 0.0247560609, -0.0319162346, -0.0129871191, -0.0214805193, -0.00147365557, -0.00600628881, -0.0284511968, -0.00148888282, -0.0158362985, -0.0355436951, 0.0270029195, -0.00266476185, -0.00402675103, -0.0298859384, 0.00157263246, -0.016458923, -0.0124524748, 0.00344304158, 0.0136774192, 0.0150377164, 0.0145775164, 0.00335675408, 0.0237273779, 0.0227799062, 0.007078961, -0.00701128459, -0.0211421363, -0.0571731, 0.00524492795, -0.00903481152, -0.00919723511, -0.00583033, 0.0199239589, 0.0185433589, 0.00442942651, 0.0213587, 0.010936521, 0.00568482513, -0.0193419419, -0.0168649815, -0.00113358127, 0.0269217081, -0.00767451432, -0.00303021492, -0.0248914137, 0.0117215682, 0.00646987278, 0.000683532562, -0.0105236946, -0.0270705968, 0.00264953473, -0.00891976152, -0.0637241825, 0.00465952652, -0.00916339736, 0.00855430868, 0.00387447909, 0.00969127379, -0.0151189286, -0.0242011137, -0.0413368, -0.00410457933, 0.00983339455, -0.0103545031, -0.0285865497, 0.0089536, -0.00127908564, -0.0358414687, -0.0429610386, -0.0209120363, -0.0119110625, -0.0236732364, -0.0229287948, -0.0142526692, 0.00396584254, -0.00452417368, 0.0236461665, 0.00253786845, 0.0173522532, -0.0257712081, -0.0158092286, -0.00788431149, -0.0417699292, 0.0239574779, 0.0135894399, -0.0105981389, 0.0485646501, 0.00946117379, -0.00221978896, 0.0312394686, -0.0384402461, -0.00205736537, 0.0095897587, 0.0195991118, -0.000540566, 0.00948824454, 0.00592507701, 0.00303529063, 0.00917693228, 0.0226580892, 0.00514341332, -0.0315643139, -0.0144286277, 0.0191795174, -0.0334051177, 0.000442012097, 0.0105033917, -0.0307521969, 0.0156468041, 0.0575520881, 0.0425008349, -0.00934612378, 0.00199984037, -0.0320786573, 0.0119922739, 0.00173928589, -0.0214263778, 0.0115794474, 0.0342443064, -0.0122629805, -0.0176364928, 0.027287161, -0.0197209287, -0.00841218792, 0.004375285, -0.0435565896, 0.015998723, 0.0049606869, 0.000853569771, 0.0172033645, 0.0118772238, -0.0234566722, 0.0308063384, 0.00179342704, -0.0289113969, -0.0246883836, -0.0355166234, -0.00617548, 0.0129600484, 0.0180425532, 0.0282887742, 0.0121073248, -0.0185704287, 0.0185568947, -0.0109635917, -0.0133187333, 0.00628714589, 0.0365723744, -0.0141985277, -0.0189223476, -0.0243500024, -0.0223197062, 0.0309958328, -0.0186651759, -0.00433467934, 0.00800612941, -0.0182049759, 0.00579310767, -0.0021707234, 0.0143203456, 0.00424331613, -0.0126825748, 0.0236461665, 0.0102732917, 0.0105643, 0.00713987, -0.000545218762, 0.0150918579, 0.017487606, -0.00562391663, 0.0217782948, -0.0202352703, 0.00559346192, -0.0004936154, 0.0030268312, -0.00623300485, -0.0129126748, -0.0185568947, 0.01796134, 0.0187193174, 0.0196397174, 0.0119990418, 0.0375469178, -0.00461553689, 0.0130344927, -0.0372762121, 0.00571189588, 0.000396753429, 0.00386432768, 0.00768804923, 0.00749178743, -0.0117148, 0.0166754872, -0.0302378573, 0.0206954703, -0.0113831861, 0.0271382723, 0.0541411936, 0.0137044899, -0.0164318513, 0.0102191502, -0.0140902456, -0.0291550327, -0.0271924138, 0.00719401101, 0.00948147662, 0.0198562834, 0.022901725, 0.00178327551, 0.000889099902, 0.0253516138, 0.0505949445, -0.00658492278, -0.00132307538, -0.00963036437, 0.0142662041, 0.0115185389, -0.0019050932, 0.00293039205, 0.0101582417, -0.00177481596, 0.0207090061, 0.0114305597, 0.0165942758, 0.028424127, 0.00755269639, -0.0129668154, 0.0454786, -0.0265156496, -0.00374927768, -0.0203435533, -0.0249184836, 0.00703835534, 0.0164995287, 0.000878102495, 0.015538522, -0.0131360069, 0.0323222913, -0.0171221532, -0.0448559783, 0.00854754075, 0.0199104231, -0.0287219025, 0.0219271835, -0.0264615081, -0.00444296189, 0.0102935946, 0.0381695405, 0.0431234613, -0.00235006609, 0.0245124251, -0.00581679447, 0.0201540589, -0.000377084943, 0.0205059778, -0.00741734356, -0.0114305597, -0.00952885, -0.0175417475, 0.0192201231, 0.0117689418, 0.0021876425, -0.00990107097, 0.00260892883, -0.0158092286, 0.0114508625, -0.0147940814, 0.0146587277, -0.0344608687, -0.0161746815, -0.014157922, 0.00206413306, -0.012540454, 0.0202894118, -0.00177989178, 0.0160528645, 0.0166348815, -0.0109094502, -0.0195043646, -0.00535997795, 0.00630744919, -0.00654770061, 0.000453432498, 0.0424196236, 0.0092581436, -0.017609423, 0.000955930445, -0.0131901484, -0.0153896343, -0.023592025, 0.0032112496, 0.000718216761, 0.0224279892, -0.0212368835, 0.00950854737, -0.00808734074, -0.001582784, 0.000982155092, -0.0087370351, -0.0135149956, 0.00965066813, -0.00850016717, -0.00871673226, -0.0136368135, 0.00766097894, -0.015416705, 0.000873872719, 0.00570512842, 0.0130209569, 0.000349802867, 0.00607058126, -0.0183674, -0.000889099902, 0.0125066154, -0.00376281282, -0.00346842012, -0.0300212912, -0.00455801189, -0.0135623692, 0.0133322692, 0.0178936645, 0.013927822, 0.0165130645, -0.004145185, -0.0113831861, -0.00450048689, -0.0117689418, -0.00683870958, -0.00939349737, -0.00403690292, -0.0207902174, 0.00031977141, 0.0201405231, 0.0307521969, 0.00281365, -0.0290467497, 0.00260385312, 0.0061484091, 0.0060299756, -0.0022384, 0.00617548, -0.0374657065, -0.00316895172, -0.0259607024, -0.0197750703, 0.0144692343, -0.00938672945, -0.00488962652, 0.0402269065, -0.017609423, 0.00441589113, 0.0299400799, 0.0159310456, -0.00700451666, -0.0401456952, 4.66862039e-05, -0.0078030997, 0.00475765718, 0.00827683508, 0.0149835749, 0.00849339925, 0.00518063549, -0.0165130645, -0.0267457496, -0.0181508344, 0.00982662663, -0.0143203456, 0.0267863553, 0.0146316579, -0.0063446709, -0.032809563, -0.0324035026, -0.00983339455, 0.0416075066, 0.0184080061, 0.00991460588, -0.0138330748, 0.0062837624, -0.0511905, -0.023822125, 0.0133999456, 0.027855644, -0.0093596587, 0.0139548928, -0.00604012702, 0.0267863553, 0.00931228511, 0.00735643459, 0.0046493751, 0.011396721, 0.0219271835, -0.0132984305, 0.0133931777, -0.0043380633, 0.00305220974, -0.020492442, 0.0261366609, -0.00405720575, -0.0147399399, -0.0137180248, 0.0274495855, -0.0180831589, 0.00524492795, -0.00126639637, -0.0206277948, 0.0153760985, 0.0270841327, 0.0139684277, -0.022563342, -0.0168649815, 0.0333239026, -0.0206007231, 0.015538522, -0.0163641758, -0.0156332701, 0.0175823532, -0.0154708456, -0.00900774077, 0.00666613458, 0.0145639814, 0.00687931525, 0.0154843815, -0.00458508218, -0.0100431917, -0.00366129819, -0.020492442, -0.00782340206, -0.00632436806, 0.00236867717, 0.000835381681, 0.0269217081, 0.0399562, 0.0060096723, -0.0101785446, 0.0103680389, -0.0139548928, 0.0381695405, 0.00517386757, -0.00828360301, -0.0100837974, -0.00845279358, -0.0227528363, -0.00280519063, 0.00854754075, 0.00380341872, -0.00576603692, 0.00551225, 0.0194231533, -0.0120261125, -0.0261908025, -0.0102868266, -0.00463922368, 0.0139007512, -0.0143609513, -0.00393200433, 0.0194502231, -0.000181034615, -0.00317402743, 0.00161493022, -0.0158498343, -0.00536674587, -0.0212774891, -0.0123644946, 0.00191524473, -0.0125269182, 0.0102191502, 0.0185568947, 0.0219001118, -0.00553255295, -0.00764067611, -0.0286136214, -0.00123932573, -0.00502836332, -0.00749178743, 0.0307521969, -0.0195720419, 0.00141105487, -0.0254734308, -0.00165976596, -0.028315844, 0.00161239237, 0.01704094, -0.0010625209, -0.00283056917, 0.0157956928, 0.0102326851, -0.0111801568, 0.0064597209, 0.00826329924, 0.0105981389, -0.00804673508, 0.00694360817, 0.0287219025, 0.00401659962, 0.0105710682, 0.00629053, -0.0179207344, 0.0107470267, 0.0197073948, 0.0217918307, -0.0172439702, -0.0147534749, 0.0159445815, -0.0236326307, 0.00780986715, 0.0233754609, 0.0115388418, -0.00913632661, -0.0203029476, 0.00996197946, -0.017447, 0.00979278795, 0.0010735183, -0.0051332619, -0.00484225294, 0.021994859, 0.0038101864, -0.00186956313, 0.0121479305, -0.00786400866, -0.0243906081, -0.0135623692, -0.0242823251, -0.0155926635, 0.0190983061, 0.013122472, -0.006963911, 0.000521109, -0.014956505, 0.00103714224, 0.0187734589, 0.00590477372, -0.0307521969, -0.000783778378, 0.0165130645, 0.00198122929, -0.0245259609, -0.0143744871, 0.0196667891, -0.0105846031, 0.00488285907, 0.0152542815, 4.36196133e-05, 0.0051569487, 0.00425685151, -0.00189155794, 0.0126961097, -0.0215075891, 0.00375604536, 0.0138601456, 0.0121276276, 0.00178327551, 0.0216564778, -0.0073902728, 0.00879794359, 0.00869642943, 0.0309958328, -0.0152678164, 0.0266510025, -0.00845279358, 0.00726168742, -0.0318350233, 0.000113886847, -0.00167668506, -0.0137383277, -0.0105033917, -0.0102259181, 0.00682855817, 0.0524628162, 0.000862029323, 0.0254598968, -0.0141443871, -0.0228340477, 0.0229287948, -0.00224178378, 0.000381737715, -0.0136841862, 0.0067101242, -0.0164995287, 0.0114576304, 0.0283429138, 0.00485578831, 0.0241334364, -0.0233348552, 0.00409442792, 0.0426091179, -0.011396721, 0.00324170385, -0.0117486389, -0.0211556721, -0.0125066154, -0.0132036833, -0.00387109537, -0.0193960816, 0.00755269639, -0.0148617579, 0.0191930532, -0.00667628599, 0.0385214575, 0.00478472793, -0.00440235576, 0.0227799062, 0.00900097378, 0.0354083404, 0.00396922603, 0.00791814923, -0.00369175267, 0.000128373838, -0.0218189, -0.0120937889, 0.00534644304, 0.0146316579, 0.0107740974, 0.0188546702, 0.00498437369, -0.0160799343, 0.00785724074, 0.0489707105, -0.0274225138, 0.0377364121, -0.0178530589, 0.00453770859, 0.0355436951, -0.0243093949, -0.00200829981, 0.00326369889, 0.021534659, -0.0197073948, 0.0350834951, -0.00332122389, -0.00949501153, -0.00585063267, -0.0297505856, -0.0311311856, -0.0348398574, 0.0142255984, -0.03224108, 0.00566113833, 0.0126758069, -0.00746471714, -0.0123035861, -0.00602320768, -0.012899139, -0.0075865346, -0.00216395571, 0.0196126476, 0.0444769897, 0.00306912884, 0.0169461928, 0.00657815486, -0.000166970596, 0.00672704307, -0.00845279358, 0.00713310204, 0.0101041, -0.011511771, -0.000481349038, 0.0187599231, 0.0196261834, 0.01589044, 0.00147619343, 0.000275570201, -0.0177853815, 0.000249134086, 0.00794522, -0.0232130364, 0.00579310767, 0.0035394805, 0.0205736533, 0.0176500287, -0.00129092904, 0.0186651759, -0.0128517654, 0.00201168377, 0.0116471238, 0.0375469178, 0.00404028641, 0.0158227645, 0.0157550871, -0.0155926635, 0.00380680268, -0.0151324635, 0.0218189, -0.0103342, -0.000787585159, 0.0211962778, 0.032592997, 0.0189223476, -0.00399629679, -0.00720754638, -0.0328366347, 0.00275612506, 0.0185162872, 0.00742411101, 0.0376010574, -0.0148211513, 0.0155655928, -0.0372220688, 0.0105643, -0.00235175807, 0.0122359097, -0.0166619513, 0.00338720833, 0.0178936645, 0.00539043266, 0.00315034064, 0.0126893418, 0.01635064, 0.00060401269, -0.00598598551, -0.0219271835, -0.0268540327, -0.00656123599, -0.0166754872, 0.00956268795, 0.00542088691, -0.0162829645, -0.00612133881, 0.0120464154, 0.0055257855, -0.0058946223, -0.0104898559, -0.0233754609, 0.00956945587, 0.0138533777, 0.0312665403, 0.00143135781, -0.0180560872, -0.0194231533, -0.0213587, 0.0109635917, 0.0135962069, -0.00252940878, 0.00223332411, 0.0258118138, -0.00540058408, 0.0246477779, 0.00162423577, -0.0201946646, 0.00151087763, -0.0159039758, 0.00108113198, 0.0146451928, -0.00786400866, 0.0112884389, -0.00807380583, 0.0149023635, -0.000754592882, 0.0062025506, 0.00909572, -0.00123847974, 0.00833097566, 0.0172169, -0.0100973323, 0.0122765154, -0.00121394708, -0.00376281282, 0.0153760985, 0.0080128964, -0.00096439, -0.00483210152, -0.000706373365, -0.0044564968, 0.00417563971, -0.00636497419, -0.00199984037, 0.0140361041, 0.00764744356, 0.0140902456, 0.00575926946, 0.00864228792, 0.0121546974, 0.0205601174, -0.00835127942, 0.0100567266, 0.0135420663, -0.00493361615, 0.00632775202, 0.00749855535, 0.00857461151, -0.00368498499, 0.0174740702, -0.0154573107, 0.00847986434, -0.00251587364, 0.0111124795, 0.0050757369, 0.0128179276, -0.0220083948, -0.0229423307, -0.0033262996, 0.00375942909, -0.00531260436, 0.01819144, 0.0077827964, -0.00230776845, -0.0290467497, 0.0130615626, 0.00412488217, 0.00201675948, 0.0191253759, 0.00835804641, 0.00888592377, 0.00505881757, 0.00577618834, -0.0213451646, -0.0199781, 0.00159716525, 0.00240759109, 0.00649694307, 0.0163912456, -0.0149700399, 0.00475427369, 0.0196397174, -0.00474412227, 0.00837158225, -0.0272194855, -0.0183674, -0.00216733967, -0.0239845477, -0.00183910865, -0.0102935946, 0.00135183788, -0.00361054088, 0.00435498217, 0.00653416524, 0.000587939518, -0.0218053665, 0.00388124678, -0.0162558928, -0.0189900231, 0.0061450256, 0.00221978896, -0.00917693228, -0.00374927768, 0.00854077283, -0.00616532844, 0.00163015747, 0.00472720293, -0.00870996434, -0.001021915, -0.0248102024, -0.00860845, -0.0300483629, -0.00582694588, 0.00117418717, 0.0123035861, 0.00931228511, -0.00220117788, -0.000917862402, 0.00390154985, 0.00720077893, 0.00026795661, -0.0126419682, -0.00866935868, -0.0169326589, 0.0161611456, -0.0162017513, -0.00517386757, -0.0173657872, 0.0156332701, 0.000725830381, 0.0171356872, -0.00378649961, -0.0140361041, 0.00978602096, -0.0333239026, 0.0260554496, -0.0208578948, -0.0381695405, 0.00193723955, -0.000174795685, -0.00359023781, 0.0109094502, -0.00305897743, -0.0145639814, -0.0121479305, 0.00355301588, 0.0244312137, -0.00505543407, 0.00737673743, 0.0188952759, -0.00120379555, -0.0334592573, 0.0111733889, 0.0081144115, 0.0231453609, 0.0292903855, 0.0100431917, 0.0226310194, -0.00369852036, 0.00288978615, -0.00720077893, 0.0139954984, 0.0063412874, 0.0144963041, -0.0184215419, -0.0221166778, -0.00326369889, 0.000230523045, -0.00816855207, -0.0115659125, 0.00498775765, 0.0172033645, 0.0155520579, 0.0163912456, -0.0187463891, -0.000857376552, -0.00509265577, 0.0116471238, -0.00207428448, 0.0201405231, 0.00487270718, 0.00923107378, -0.0223603137, -0.0311311856, 0.00658153882, 0.0260283779, -0.000587093586, -0.00814148225, -0.00695037562, 0.00461892039, 0.0302919969, -0.00437866896, -0.0195043646, 0.011281671, -0.00187294686, 0.0022570109, 0.0134811569, 0.0157280173, -9.59102763e-05, 0.0100837974, -0.00839188509, -0.00201675948, -0.0064800242, 0.00514679728, -0.000472043524, 0.00251756539, -0.034650363, 0.0118636889, -0.0178936645, 0.00505881757, 0.0103883417, 0.00796552282, 0.0114034889, -6.66190454e-06, 0.00877764076, -0.00858137943, -0.0112478333, -0.0104830889, 0.0167296287, 0.00402675103, -0.0121682333, -0.0126013625, 0.012317121, -0.00240251538, 0.00646310486, -0.00275274133, -0.0089536, 0.0162017513, 0.0353542, -0.00491331331, -0.0164724588, -0.00374589371, -0.0313477516, 0.000638696889, 0.0168649815, -0.0156332701, 0.0246342421, 0.0241199024, -0.012784089, -0.0252974723, 0.00420609396, -0.0118298503, -0.00762037281, -0.00170121784, 0.00942733511, -0.0189223476, 0.00686578, -0.00534982653, -0.00703158742, 0.0117148, -0.00116149778, 0.0277744327, 0.00378988357, -0.006963911, 0.0130547956, -0.0285053384, -0.0286948327, 0.0150647871, 0.0226174835, 0.00566113833, 0.0115659125, -0.011971971, 0.000906865, -0.00468998076, 3.04808582e-05, -0.0011082025, -0.00373235857, 0.00636497419, 0.0063988124, -0.00422978075, 0.0360038951, -0.00348533923, 0.0128449984, 0.0257576723, -0.00864228792, -0.0256087836, 0.0293174554, -0.00532275625, 0.0284511968, 0.00782340206, -0.00594538, 0.000199434158, -0.0144963041, 0.0118907597, 0.0318079516, -0.00862198509, 0.00263430737, 0.0042230133, 0.0228611194, -0.00298791705, -0.00594538, 0.00341597083, 0.0216023363, 5.74192745e-05, -0.0128449984, 0.0147534749, -0.0109229861, 0.00247357576, -0.00101514743, -0.0284511968, 0.0223061722, 0.0114237918, 0.0105439974, 0.0133796427, 0.00507912086, -0.0294528082, 0.00320448191, -0.00518063549, -0.0024245102, -0.015308422, -0.0237815194, -0.00882501435, -0.00141782255, -0.0172033645, -0.00161493022, 0.00899420585, 0.00503851473, -0.021751225, 0.00189494179, 0.00245158095, 0.00197615358, 0.0291008912, -0.0106861182, 0.000340074359, 0.0377093405, -0.0138601456, 0.00830390584, 0.00132984307, 0.000134189788, 0.0171898287, 0.00689623458, -0.0214805193, 0.0155926635, 0.0150241815, 0.0153490286, -0.00237544486, 0.00762037281, -0.00391170103, -0.000144658494, 0.0105846031, -0.0101853115, -0.0136571163, -0.0051569487, 0.011396721, -0.0197073948, 0.0153354928, 0.0184621476, -0.015782157, -0.0123644946, 0.000439474214, -0.0479420274, 0.0142120635, 0.00692330487, 0.00836481433, 0.0241334364, -0.00681163883, 0.00731582893, -0.0111192474, -0.0186922476, 0.0317808799, 0.00866259076, 0.00924460869, -0.00187125499, -0.0175552815, -0.00101768528, -0.00313849724, 0.0208172891, 0.00761360535, -0.00163354131, -0.00578972371, 0.0355166234, 0.0249726251, 0.00458169868, 0.00379665126, 0.0218053665, 0.0118975276, 0.0117215682, -0.0107537946, 0.0134337833, 0.0156197343, -0.012547222, -0.00248711114, -0.0040064482, -0.0110245, 0.0122968182, -0.00479826331, 0.012323889, 0.0118907597, 0.0203164835, -0.0124727776, 0.0137992371, 0.0196126476, 0.0137450956, -0.00450048689, -0.0165130645, 0.0138195399, -0.0200728476, 0.0116132861, 0.0123915654, -0.0126961097, 0.0294798799, 0.00446664821, -0.0137789333, 0.020492442, -0.0115388418, -0.020952642, 0.0220625363, 0.00673042703, -0.0104018766, 0.00623300485, 0.0142391343, -0.0104695531, -0.0108823795, 0.00530583691, -0.0109297531, 0.00613149, 0.013582672, 0.0221572835, 0.00186787115, -0.0320786573, 0.00202183519, 0.00814824924, 0.00479487935, 0.0083445115, -0.0112749031, -0.00372897461, -0.0139413569, -0.0160934702, 0.00084511016, 0.00631083269, -0.00515356474, 0.0102665238, 0.00484225294, -0.00973187946, -0.0218053665, 0.0245259609, 0.023822125, 0.00626007561, -0.00463245576, -0.0193148702, -0.000157770817, -0.000405001512, 0.0115591446, 0.0187193174, -0.0136706512, 0.0151459984, -0.00654093269, 0.00924460869, -0.0239574779, -0.0262314081, 0.000722869532, -0.0349210687, 0.00232468755, 0.000693684036, 0.00289824582, 0.0162152871, 0.0209661778, 0.000527453667, -0.0197073948, 0.00213350146, 0.00222994038, 0.0106522795, -0.012195304, -0.0167025588, 0.00522462511, 0.000452163571, 0.00417563971, -0.00575926946, -0.00690300204, -0.0155926635, 0.00344473333, 0.00132392137, 0.0222791, -0.00122156064, 0.00221302127, 0.0180966947, -0.0140090333, 0.00965743512, 0.00830390584, 0.0164318513, 0.0182185117, 0.000310042931, -0.00119279814, 0.0184080061, 0.031645529, -0.013007422, -0.0132713597, -0.00213350146, -0.0120261125, -0.00191016903, 0.00425685151, -0.0315643139, 0.00929875, -0.0119042946, -0.00950854737, -0.0168920532, -0.00309281563, 0.0170138702, 0.0185027532, 0.00785724074, 0.0052719987, -0.00266645383, 0.0099822823, 0.00609765202, 0.0163641758, 0.00140090333, -0.0122562125, -0.0047069, 0.000606127549, 0.0275714025, 0.0228881892, -0.0200457759, 0.0223197062, 0.00442604255, -0.00632436806, 0.0127705541, -0.0104830889, -0.00243127788, 0.0150241815, -0.00251925737, -0.0145233748, 0.00211996608, -0.000803658331, -0.0135488333, 0.0190170947, 0.000576942111, -0.0121208597, 0.0131021691, 0.00390493358, -0.0150512513, 0.000998228206, 0.0159581173, 0.0191930532, 0.0146993343, 0.0297235157, 0.00436175, 0.0226851609, -0.00251925737, 0.00841895584, -0.00854754075, -0.0127637861, -0.00167668506, 0.0313748233, -0.00294223544, -0.0188276, 0.00361730857, 6.16622719e-06, -0.0308063384, -0.000379411329, -0.0149294343, 0.0163371041, -0.00825653225, 0.0122494446, -0.0136435805, 0.0173116457, -0.00165553612, -0.0101447059, -0.0231047533, 0.000408385327, 0.00186448731, 6.52972376e-05, 0.00595553126, -0.0201540589, 0.00201845146, -0.0147670107, 0.0123847984, 0.00262077223, 0.0166078117, -0.0128788361, -0.00986046437, 0.00371882319, 0.0108891474, -0.0443957783, 0.0216700118, -0.0159851871, -0.00873026717, 0.0308334101, 0.0217241533, -0.0158498343, -0.00406735716, 0.00229254109, 0.00708572846, 0.0106319766, 0.0119449012, -0.0146587277, 0.00217749109, 0.0203570891, 0.00276289275, 0.0167566985, -0.00810764357, 0.0221708193, 0.013812772, 0.00273751398, -0.011166621, 0.0264209025, 0.0195855759, -0.0266374666, -0.016567206, 0.00635820627, -0.00430084113, -0.022671625, 0.0148617579, -0.00748502, 0.00723461714, -0.00554947229, -0.0152678164, 0.00428392179, 0.0387380235, 0.00458169868, 0.01589044, 0.0019338557, 0.0375198461, 0.0187463891, 0.0110718738, -0.0216970835, 0.0108620767, -0.0146587277, -0.0264479723, -0.00444634538, 0.00168260676, -0.0022976168, 0.00421624538, 0.0037526614, -0.00255817128, 0.0105304625, -9.93998474e-05, 0.0102394531, 0.0137789333, 0.00193893153, -0.000294181256, 0.00568820909, -0.0208985, -0.0010506775, 0.0200051703, 0.00752562564, -0.0279368553, -0.0047102836, 0.000598936924, -0.00518401945, -0.000605704612, 0.0433400236, 0.00651724637, -0.00401659962, 0.0129397456, 0.0256493911, 0.0176500287, 0.0159716513, -0.0203435533, -1.91794115e-05, -0.00523139257, 0.0314831026, 0.0104898559, -0.0121005569, -0.0199510306, -0.00125201512, 0.00279334723, -0.0143609513, 0.00223501609, 0.00666613458, 0.0126419682, 0.0207902174, 0.00276966044, -0.00612472231, 0.0124930805, -0.0103748059, -0.00549194729, 0.0107808653, -0.0101785446, 0.03316148, -0.000954238523, -0.0102326851, -0.00352594513, 0.0285324082, -0.00827683508, 0.00126724236, -0.00764744356, 0.00177143211, 0.00556639163, -0.0240386892, -0.0123374248, 0.00193047198, -0.00210812269, 0.00689623458, -0.00973864738, 0.0149158984, -0.00374589371, -0.0106793502, 0.0286406912, 0.0136638833, -0.00557654304, 0.0253786836, 0.00778956432, 0.0414992236, 0.0010912834, -0.0155791286, -0.00677780062, 0.0207496118, 0.0148617579, 0.033838246, -0.0101244031, -0.00643265061, 0.0210203175, 0.0131495427, -0.0314289629, -0.0170815457, 0.00542427087, -0.00271890312, 0.0195179, -0.00360038946, -0.0134879248, 0.00144743093, 0.0190847702, 0.00116911135, -0.0170950815, 0.0124998484, -0.00402675103, -0.0177447759, 0.0130954012, -0.00322647672, 0.0147940814, -0.00432791142, -0.00451740576, 0.0112072267, -0.00931228511, 0.00262415595, 0.0288301855, 0.00851370301, 0.0373844951, -0.0206007231, -0.00319263851, 0.0159310456, 0.0109771267, -0.00549871475, 0.0280180667, 0.00257339864, 0.0091837, 0.0188276, -0.00441250717, -0.028884327, -0.0169326589, 0.0132172192, -0.000255055784, 0.00751885818, 0.0204518363, -0.0245394967, -0.023483742, -0.00888592377, 0.0347315744, -0.0133458041, -0.0125878276, 0.0016800689, 0.00879794359, 0.0170138702, 0.0112072267, 0.0122359097, 0.0103748059, 0.0086761266, -0.0168649815, 0.0175688174, -0.0067676492, 0.0074714846, 0.00177989178, -0.0145910513, 0.0125133833, -0.00122156064, -0.0155791286, 0.00506896945, 0.00971157663, -0.0122697484, -0.0238356609, 0.010022888, 0.0156332701, -0.00671350816, 0.0159581173, -0.0181508344, 0.0163371041, -0.0071601728, -0.00753239356, -0.00011790514, 0.000357839453, 0.0188276, 0.00664244778, -0.0138330748, -0.00105490733, -0.00390493358, -0.00249218685, 0.0305897743, -0.0113561153, -5.76307611e-05, 0.0295340214, 0.00599275343, -0.0124998484, -0.0104289474, -0.0152948871, -0.00204552198, 0.00512311049, -0.00427038642, 0.0151730692, -0.00957622379, -0.00965066813, -0.00228746538, 0.0107334917, 0.0250267666, -0.0114847, -0.00766774639, -0.00774895819, 0.00737673743, -0.0105101587, -0.00615179306, -0.012784089, -0.0118839918, -0.00709249638, -0.0211421363, 0.00354963192, 0.00855430868, 0.003395668, 0.0180831589, 0.012777322, 0.00948147662, -0.0102597559, -0.00921077095, -0.00400306471, -0.0170003343, -0.0176229589, -0.00325016351, 0.0130006541, 0.0063209841, 0.0119178304, 0.00875733793, -0.00451740576, -0.0160122588, 0.0403351896, 0.0105439974, 7.06902138e-05, 0.00182726525, 0.0155249871, -0.00665936666, -0.0122223748, -0.0015878597, 0.0108147031, 0.0181779061, -0.0200322419, 0.00444634538, -0.0217241533, -0.0165265985, -0.0250132307, -0.00940703228, 0.0105439974, -0.0167702343, 0.0245936364, -0.00512987794, -0.00873026717, 0.00415872037, -0.0137586305, 0.011741871, 0.00354963192, 0.0101988474, 0.0166213457, 0.012317121, 0.0295069497, -0.00574235, -0.00401659962, -0.00819562282, -0.00605704589, 0.00433467934, 0.0152136749, 0.00337536493, -0.00565775484, -0.00141866843, 0.00799259357, -0.0918776, -0.00447341613, 0.0180290174, 0.0114643974, -0.00843249075, 0.0190306287, 0.00414856896, -0.0148076164, 0.00937996153, 0.0145910513, -0.00631760061, 0.00660860958, 0.0188682061, 0.00399629679, 0.000470774597, -0.0100364238, 0.00791138224, -0.00660860958, -0.0207090061, -0.00444972934, -0.0103883417, -0.0182455815, 0.00505205, -0.0204112306, 0.0077218879, -0.0135014597, 0.0156738758, -0.00998905, -0.00769481715, 0.00141782255, -0.0104830889, -0.00465275859, -0.00371882319, 0.0173522532, -0.0194502231, -0.0206819363, -0.00118856842, -0.0239168722, 0.00544118974, -0.0199781, 0.00413164962, -0.00664583128, -0.000209162652, 0.00894683227, 0.00103714224, 0.0119855069, -0.00126555038, -0.00736997, -0.0135285305, 0.0111192474, -0.00100161205, 0.0137383277, -0.00580664305, 0.00943410303, -0.027503727, 0.00883855, -0.0127299484, 0.00158532185, -0.0182726532, 0.0319433026, -0.000288471056, -0.0400915518, 0.0170544758, 0.0116809625, 0.00477457652, 0.00963036437, -0.0220083948, 0.0145098399, -0.00230100076, 0.0094138, 0.00676426524, -0.0205195118, -0.00230100076, -0.0115659125, 0.00674396241, 0.00613149, -0.0226445533, -0.0110177333, 0.0139007512, 0.00722784922, 0.0291550327, -0.00232807128, 0.00501144398, 0.0190306287, 0.00610103551, 0.00526184728, 0.0212368835, -0.00346842012, 0.0103409681, -0.00631421665, 0.00922430586, 0.0128314625, -0.0136503484, 0.000678879791, 0.0168785173, 0.0088520851, -0.0119516682, -0.0128585333, 0.00327892601, 0.0202623419, 0.00598936947, -0.00053972, 0.0164183173, 0.0128449984, 0.0184621476, -0.0173657872, 0.0120464154, -0.0259200968, 0.0194231533, 0.00503513077, 0.0310770441, 0.000186533332, -0.00671689166, -0.0056408355, 0.0144015579, 0.0175282117, 0.0157280173, -0.00595553126, -0.0138533777, 0.0284782685, 0.0058912388, 0.00187971455, -0.00258355, 0.00302513922, 0.00419255858, -0.00182388141, 0.00241605076, 0.00284918025, -0.0114982361, 0.00125032314, 0.0169326589, 0.0030725128, 0.00249726255, -0.00595553126, 0.0141037805, -0.0189764891, -0.00137552468, -0.00825653225, -0.00888592377, 0.016919123, 0.0039489232, -0.0091430936, 0.011166621, -0.023240108, -0.00191186089, -0.00630068127, -0.0175146759, 0.00629729731, 0.0148211513, 0.0091837, -0.0252297968, -0.0124660097, 0.0230506137, -0.000180505886, 0.00538366474, -0.0235514194, 0.00681840675, -0.00183910865, -0.0137857012, -0.00720077893, -0.00220794557, -0.00458846614, -0.0130412597, -0.00319094653, 0.000713141053, 0.00824299641, 0.0103138974, -0.0142797399, 0.00136875699, -0.034190163, 0.0110651059, 0.0267457496, 0.0238627307, -0.0048456369, -0.00673042703, -0.0124592418, -0.00125032314, -0.0111869238, 0.00065688492, 0.00678795204, 0.0106658153, -0.00535997795, -0.00852723792, 0.0165942758, 0.03270128, -0.00106421288, 0.00878440868, 0.000685647479, -0.0059724506, -0.00430084113, 0.0159039758, 0.0166754872, -0.00556300767, 0.00175112917, -0.0163641758, -0.00921753794, 0.00776926102, -0.00116065179, -0.0107199559, 0.00835804641, 0.000460200128, -0.0192201231, 0.000307082082, 0.01750114, 0.0113696503, -0.0206142589, 0.0155114522, -0.00250741397, 0.00410457933, -0.0138736805, -0.00698421383, -0.00248034345, -0.00921077095, 0.0236461665, 0.000926321954, -0.00640896382, 0.002876251, -0.011965204, -0.00365791447, 0.00989430305, 0.0251485836, 0.00921077095, 0.00774895819, -0.0157956928, 0.00990107097, 0.0167702343, -0.000703835511, 0.0103883417, -0.0295881629, -0.00336013781, 0.00323493639, -0.0106590474, 0.0256899968, -0.00818885583, -0.014388022, -0.013812772, -0.00852047, 0.00402675103, -0.00948824454, 0.0134743899, 0.00779633177, 0.0140767107, -0.0119381333, 0.00176974025, -0.0129329776, -0.00539043266, -0.00986046437, 0.00868966151, 0.0125945946, 0.00444972934, -0.00848663226, 0.00307758851, -0.00171898294, 0.00932582095, 0.0086761266, -0.00586078409, -0.0197750703, 0.0133661069, -0.000884870125, 0.0157550871, 0.0144827692, -0.0065138624, -0.0159445815, -0.0149700399, 0.00240928307, -0.0120667182, 0.0105101587, -0.0151730692, -0.00132645923, 0.00107013457, -0.00215718825, -0.0132578248, -0.0184080061, 0.00785724074, 0.000960160221, -0.00844602659, 0.00334829441, 0.00794522, -0.0202217363, -0.00729552563, -0.0185568947, -0.0135488333, -0.0197615363, 0.0216700118, -0.00925137661, 0.015782157, 0.0165942758, -0.00870319642, 0.00245665666, -0.0185027532, 0.00378649961, -0.0097048087, -0.000258228101, 0.0131089361, -0.0147670107, -0.0218324363, -0.00358347013, 0.0230370779, 0.0152678164, -0.0430693179, 0.0219271835, 0.00931905303, 0.00427377038, -0.00561376475, -0.0184215419, 0.00160054897, -0.00812794641, -0.00990107097, -0.0136300456, 0.00112427573, -0.04488305, 0.0159716513, 0.00682855817, -0.00641573127, 0.00189663365, -0.00430084113, -0.00837834924, 0.000642926665, -0.0112072267, -0.0143068107, 0.0134743899, -0.000400771736, -0.00533967512, 0.000667882385, 0.0177583117, -0.00575250201, -0.0173522532, 0.00111497019, -9.00414598e-05, 0.00119618198, -0.00659169024, 0.00110566465, -0.009874, 0.00495053548, -0.00484902039, -0.00710603176, -0.0038913982, -0.0175146759, 0.0049031619, 0.0149023635, 0.000928013877, 0.012438939, -0.0235514194, -0.0132510569, 0.00186617929, -0.0077218879, -0.0123374248, 0.00461892039, 0.0353000574, 0.00900097378, -0.0119313654, -0.00442942651, -0.00492346473, 0.00546487654, 0.00894006435, -0.0118095474, 0.00170544756, -0.0095897587, -0.00421286141, 0.0133661069, 0.0245394967, -0.0255005024, -0.0116944974, 0.0031012753, 0.00891976152, -0.0258388836, 0.0392252952, 0.00726168742, -0.0179342702, -0.000432283588, 0.0348398574, -0.00691315345, -0.0256629251, 0.0581476428, 0.0170544758, 0.0147264041, -0.0141037805, 0.020722542, -0.00437190151, 0.000566367642, 0.031645529, -0.0299400799, -0.000611203315, -0.0149971107, 0.00529230153, 0.00306743709, 0.0242281836, 0.00584386522, 0.0036951364, -0.00115134637, -0.0261908025, 0.0194231533, -0.0169055872, -0.00372559088, -0.0196126476, -0.0101041, -0.0160122588, 0.01727104, -0.0286136214, 0.00984016154, 0.00350564229, -0.0124524748, 0.0107131889, 0.0105372295, 0.0040639732, 0.00330261281, -0.00238728826, -0.016919123, -0.0159175117, -0.0290196799, -0.00521785766, 0.0283429138, 0.0046290718, 0.0201946646, 0.000654770061, 0.0133796427, 0.0124592418, 0.0107605625, -0.0229694, -0.00612472231, 0.0110989446, -0.00286609936, -0.0087370351, 0.00954238512, -0.0220219307, -0.0139548928, -0.0210473891, 0.00699774921, 0.0201675948, 0.0198427476, 0.00382033805, -0.0140361041, 0.0251079779, -0.016458923, 0.00585063267, 0.00518063549, -0.0300212912, -0.00755946431, -0.00220117788, 0.001021915, 0.0207360778, -0.0135623692, -0.010016121, 0.0162423588, -0.00847986434, -0.0187193174, -0.0131021691, 0.00824976433, 0.0124727776, -0.00926491152, -0.000716101902, -0.00636159, -0.00595553126, -0.00472720293, -0.00613149, -0.000348322443, -0.00979955588, 0.000417690841, -0.00555285625, -0.0032281687, -0.0122223748, -0.0277067553, 0.000725830381, 0.013697722, 0.000107753665, 0.0148211513, 0.0391440839, -0.00889945868, -0.00793168508, -0.0198968891, -0.0111124795, 0.0140767107, 0.00576942088, 0.0297505856, -0.0144556984, 0.00430760859, -0.00650032703, -0.0123035861, 0.0112072267, -0.00135437574, 0.0177718475, -0.0144963041, -0.0145639814, 0.00740380818, -0.00184587634, 0.0233754609, 0.0259742383, -0.0067676492, -0.00547841191, -0.0141037805, 0.00220117788, 0.00135099201, 0.00635820627, -0.0032281687, 0.000145292972, -0.0182320476, 0.016689023, -0.0125066154, -0.0194772948, 0.0422301292, -0.0264344383, 0.0146316579, -0.00273582223, 0.0125945946, 0.00714663742, -0.00196092646, -0.0188546702, 0.00259708543, 0.0140496399, -0.0144692343, 0.00861521717, -0.00581679447, 0.0240116194, -0.000505458796, 0.0101514738, -0.00743764639, 0.00223332411, 0.0197344646, -0.00411473075, -0.0116065182, -0.00638527703, 0.0218459722, -0.0104560181, -0.0106590474, -0.00249387883, 0.0064563374, -0.00254632789, 0.0187328532, -0.00244819699, 0.0202894118, -0.0119178304, 0.0107673295, -0.00157347845, 0.0141714569, -0.00235852576, 0.00026118895, 0.00277473615, 0.0124118682, 0.00124440144, 0.00437190151, 0.00237036915, 0.0194096174, 0.0140225692, -0.00621946948, 0.0224279892, 0.0167431645, 0.0278285742, 0.0102259181, -0.0048456369, 0.00538028125, -0.00948824454, -0.00806027, -0.0471569784, 0.00567805767, 0.0190170947, 0.00321801729, 0.0412285179, 0.0152136749, -0.00499790907, -0.0154031692, 0.00215211255, 0.0202758778, 0.0151324635, -0.00276289275, 0.0159716513, 0.0151324635, -0.00454786, -0.0123306569, -0.0198427476, 0.0332156233, 0.0268134251, -0.00171898294, 0.010131171, 0.0195855759, -0.00790461432, -0.00426700292, 0.00346842012, -0.00886562, 0.000270283, -0.001524413, -0.00748502, 0.00786400866, -0.0133864097, -0.00934612378]
02 Aug, 2018
unordered_multiset clear() function in C++ STL 02 Aug, 2018 The unordered_multiset::clear() is a built-in function in C++ STL which clears the contents of the unordered_multiset container. The final size of the container after the call of the function is 0. Syntax: unordered_multiset_name.clear() Parameters: The function does not accept any parameter. Return Value: It returns nothing. Below programs illustrates the above function: Program 1: // C++ program to illustrate the // unordered_multiset::clear() function #include <bits/stdc++.h> using namespace std; int main() { // declaration unordered_multiset<int> sample; // inserts element sample.insert(11); sample.insert(11); sample.insert(11); sample.insert(12); sample.insert(13); sample.insert(13); sample.insert(14); cout << "Elements: "; for (auto it = sample.begin(); it != sample.end(); it++) { cout << *it << " "; } sample.clear(); cout << "\nSize of container after function call: " << sample.size(); return 0; } Output: Elements: 14 11 11 11 12 13 13 Size of container after function call: 0 Program 2: // C++ program to illustrate the // unordered_multiset::clear() function #include <bits/stdc++.h> using namespace std; int main() { // declaration unordered_multiset<int> sample; // inserts element sample.insert(1); sample.insert(1); sample.insert(1); sample.insert(2); sample.insert(3); sample.insert(4); sample.insert(3); cout << "Elements: "; for (auto it = sample.begin(); it != sample.end(); it++) { cout << *it << " "; } sample.clear(); cout << "\nSize of container after function call: " << sample.size(); return 0; } Output: Elements: 1 1 1 2 3 3 4 Size of container after function call: 0 Learn C++ Online – Master everything from basics to advanced concepts. Apply your knowledge with practical exercises and boost your skills. Take the Three 90 Challenge: finish 90% in 90 days for a 90% refund. Start now and level up your C++ programming!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum/Algorithm for Dynamic Time out timer Calculation/Difference between Round trip time (RTT) and Time to live (TTL)/Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms/Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm/Round Robin Scheduling Algorithm with Different Arrival Time/Selfish Round Robin CPU Scheduling/Find the order of execution of given N processes in Round Robin Scheduling/Calculate server loads using Round Robin Scheduling/set::lower_bound() Function in C++ STL/Implementation of lower_bound() and upper_bound() in List of Pairs in C++/Difference between std::set::lower_bound and std::lower_bound in C++/Difference between std::set vs std::vector in C++ STL/std::minmax() and std::minmax_element() in C++ STL/std::rotate vs std::rotate_copy in C++ STL/std::bitset::to_ullong and std::bitset::to_ulong in C++ STL/std::upper_bound and std::lower_bound for Vector in C++ STL/std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++/std::string::append vs std::string::push_back() vs Operator += in C++/Vector push_back() in C++ STL/vector :: cbegin() and vector :: cend() in C++ STL/unordered_multiset cend() function in C++ STL/unordered_multiset bucket() function in C++ STL/unordered_multiset emplace_hint() function in C++ STL/unordered_multiset end() function in C++ STL/unordered_multiset size() in C++ STL/unordered_multiset emplace() function in C++ STL/unordered_multiset find() function in C++STL/unordered_multiset erase() function in C++ STL/unordered_multiset clear() function in C++ STL
https://www.geeksforgeeks.org/unordered_multiset-clear-function-in-c-stl?ref=asr10
PHP
unordered_multiset clear() function in C++ STL
unordered_multiset clear() function in C++ STL, What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, jQWidgets jqxTreeMap width Property, Round Robin Scheduling Algorithm with Different Arrival Time, Difference between Flow and TypeScript, unordered_multiset emplace() function in C++ STL, jQWidgets jqxTree destroy() Method, jQWidgets jqxTree collapseAll() Method, Find the order of execution of given N processes in Round Robin Scheduling, jQWidgets jqxScrollView buttonsOffset Property, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Vector push_back() in C++ STL, jQWidgets jqxListBox enableHover Property, Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm, std::rotate vs std::rotate_copy in C++ STL, Selfish Round Robin CPU Scheduling, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxSlider buttonsPosition Property, std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++, std::upper_bound and std::lower_bound for Vector in C++ STL, Difference between Round trip time (RTT) and Time to live (TTL), jQWidgets jqxSlider rtl Property, Difference between std::set::lower_bound and std::lower_bound in C++, jQWidgets jqxTooltip opacity Property, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, unordered_multiset erase() function in C++ STL, jQWidgets jqxToolBar height Property, PHP, std::minmax() and std::minmax_element() in C++ STL, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, Node.js date-and-time Date.transform() Method, unordered_multiset size() in C++ STL, TypeScript Optional Parameters, jQWidgets jqxToolBar theme Property, Difference between std::set vs std::vector in C++ STL, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, Steps to Diagnose and Resolve a Slow Network, How to use Optional Chaining with Arrays and Functions in TypeScript ?, Calculate server loads using Round Robin Scheduling, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, jQWidgets jqxScrollView showButtons Property, Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms, jQWidgets jqxScrollView disabled Property, jQWidgets jqxSplitter destroy() Method, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, set::lower_bound() Function in C++ STL, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, jQWidgets jqxTree collapseItem() Method, std::string::append vs std::string::push_back() vs Operator += in C++, unordered_multiset cend() function in C++ STL, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), jQWidgets jqxSortable opacity Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, vector :: cbegin() and vector :: cend() in C++ STL, jQWidgets jqxSlider height Property, jQWidgets jqxSwitchButton onLabel Property, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, jQWidgets jqxToolBar tools Property, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTree width Property, Implementation of lower_bound() and upper_bound() in List of Pairs in C++, jQWidgets jqxTree clear() Method, TLS Handshake?, Algorithm for Dynamic Time out timer Calculation, Adhoc TCP, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, jQWidgets jqxTabs position Property, Differences between Wireless Adhoc Network and Wireless Sensor Network, jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, std::bitset::to_ullong and std::bitset::to_ulong in C++ STL, unordered_multiset emplace_hint() function in C++ STL, unordered_multiset find() function in C++STL, unordered_multiset bucket() function in C++ STL, Impact of Three-way Handshake and Slow Start Algorithm, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, unordered_multiset end() function in C++ STL, How to Sort an Array Having Optional Properties in TypeScript ?
GeeksforGeeks
[-0.0171270892, 0.0172605142, -0.0106255878, 0.0272674896, 0.0305182394, -0.0110804504, -0.0236043297, 0.0142402276, -0.000196538502, 0.0109894779, -0.0441519842, 0.00848470163, -0.0133183738, -0.0249143336, 0.00900021195, -0.0172605142, -0.0159869, 0.0159019921, 0.00655608438, -0.0303969439, 0.0240046084, 0.0154895838, 0.0129302237, -0.00841192342, -6.5149572e-05, 0.00939442683, -0.0195772815, -0.00507626543, 0.00899414718, -0.00519756181, 0.00593747152, -0.00476392638, 0.000377914897, 0.00288079563, -0.0295236073, 0.0195408929, 0.029741941, 0.0143008763, -0.0115717016, -0.00102192443, 0.0173939411, 0.00661066826, 0.0243442394, 0.00179822301, -0.00817539543, 0.013366892, -0.00673802942, -0.0338417701, -0.00977651123, 0.0161445849, 0.0412893817, 0.0195894111, 0.0394941941, -0.0100918822, -0.0159019921, -0.00395730371, 0.026733784, 0.0106498469, -0.0220881216, -0.0425751284, -0.0100615583, -0.0339630656, 0.0420656838, -0.0248294268, -0.0120690176, -0.0227552541, -0.02505989, 0.0422840156, 0.0210328419, -0.0272432305, -0.0263698939, 0.0672468692, -0.010674106, -0.00832701568, -0.0329926908, 0.0071383086, -0.0281650852, -0.0483488478, -0.0056221, 0.0482032932, -0.023204051, 0.0136337448, 0.0050247144, -0.0165448654, 0.0133911511, 0.00802377425, 0.0149801373, -0.019904783, 0.0464808792, 0.0245747045, -0.0379173346, -0.000865754904, 0.0361706652, -0.0037601965, -0.00433635572, -0.0234587751, 0.0378203, 0.0137186525, -0.0166782904, 0.0536131226, -0.0181338508, -0.0213118233, -0.0164963454, 0.00461230567, -0.0115535073, 0.0112623954, 0.0177942198, 0.0177214425, 0.0140461531, -0.000758862239, 0.027073415, 0.003341723, -0.0201231167, 0.0537101626, -0.00658640871, -0.00655608438, 0.00134639291, -0.00142751, 0.0207659882, 0.0139127271, -0.00702307653, 0.00389665528, 0.00486399606, -0.0031506808, -0.0753980055, 0.0192861687, -0.00806016289, 0.0196500588, 0.0160960667, 0.0109470235, -0.0376990028, -0.00338114449, -0.018412834, -0.0367043689, -0.0204748772, 0.00685932627, -0.00871516485, 0.0347393639, 0.0136216152, -0.0496588536, -0.0570579506, 0.0280923061, 0.018412834, 0.00252448674, 0.000390423636, -0.0127846682, -0.0216635838, 0.0378445573, 0.00731418887, -0.00248658145, -0.0167268105, -0.00812687632, 0.0222094189, 0.00719289202, 0.00827849749, -0.0109773483, 0.0100676231, -0.0180610735, -0.0067562242, -0.0455832854, 0.0513327457, -0.00247141952, 0.00732631842, -0.023725627, -0.0213239528, 0.0520605259, 0.000792976934, 0.0336234346, -0.021554416, 0.0366073325, 0.0023425417, 0.0171998665, -0.0112623954, -0.0109167, 0.0305424985, -0.0201595053, 0.0278739724, 0.0237013679, 0.00961276051, 0.0188252423, 0.0141310608, 0.0134881884, 0.0320708379, 0.0334778801, -0.00222730986, 0.00391788222, 0.00709585473, -0.0125905937, 0.0268065613, -0.00311125931, 0.00195894111, 0.0372865945, 0.0200139489, 0.0440306887, 0.0254965574, 0.00349940872, -0.0189101491, 0.0143493954, -0.00404524384, 0.0227188654, -0.00391788222, -0.0372865945, -0.00423022127, 0.0172726437, 0.00861812755, 0.00508839497, 0.00211359421, -0.030760834, 0.049100887, 0.0109894779, 0.0093277134, 0.0176365338, -0.00525214523, 0.0115171177, 0.00458804611, 0.00893956423, -0.0742820725, 0.00716256769, 0.0304697212, -0.0311489832, 0.0294993483, -0.0371410362, 0.000248847675, -0.0445158742, -0.0431330912, -0.0241744239, 0.0244291481, 0.0187403336, -0.0028641175, -0.0079388665, -0.00799345, 0.0530309, -0.0264911912, 0.00866058189, 0.0558449812, 0.00283076079, -0.0232768301, -0.0123055466, 0.0305182394, -0.0135003189, 0.018412834, 0.0514297858, -0.0325317644, -0.0299845338, 0.00536131253, 0.0456075445, 0.0216999725, -0.0248051677, -0.0121660549, -0.0110258665, 0.0189707987, 0.0327986181, 0.0140582826, 0.00136307126, -0.0014472208, 0.00848470163, -0.0209115446, -0.0357582569, -0.0297176819, -0.0493192226, -0.0243199803, 0.0360736288, -0.0171998665, -0.00994026102, 0.00598295778, -0.00994026102, 0.0161081962, 0.00605876837, -0.0297904592, -0.0477666259, 0.00499439, 0.0203414503, 0.00629529683, -0.0172726437, -0.016556995, 0.016556995, -0.0279710107, -0.00674409419, -0.0454134718, -0.0511871912, 0.0182915367, -0.0259817448, 0.00394214131, -0.0138763385, 0.05011978, -0.0207417291, -0.00372684, -0.0236043297, -0.0192133915, 0.00125845289, -0.0130879097, -0.0212147869, 0.0014472208, 0.00493374187, 0.0427692, 0.0329926908, 0.00775692146, -0.0148345819, -0.0556994267, -0.000509825, -0.0144221727, -0.0287958272, 0.0186554268, -0.0305910185, -0.0163386595, -0.00211511063, 0.0374564081, -0.00898201764, 0.0221851598, -0.056136094, -0.00193468179, -0.0428905, -0.0239197016, 0.0152833797, 0.00605573598, -0.017211996, 0.0357097387, 5.77580577e-05, -0.0618613, -0.00891530421, -0.0456075445, -0.00558571145, 0.00362070533, 0.0459956937, 0.0188495014, -0.0206810813, -0.0170664396, 0.0362434424, -0.0204506163, -0.0569609106, -0.015380417, 0.0141431903, 0.00108636322, 0.00871516485, 0.0350547358, -0.021420991, 0.0160475485, -0.0203171913, 0.0139369862, 0.00196500588, -0.0188616309, -0.0225005299, -0.000855899591, 0.0159990303, 0.0139855053, 0.0105649391, -0.021420991, -0.0164842159, 0.0129180942, 0.0378203, 0.000576917257, -0.0293780509, 0.00557054905, 0.00153819332, 0.0439821705, -0.0279467516, -0.00535828, -0.00789034739, -0.0030839676, 0.0181459803, -0.00244716019, 0.0403917879, 0.0245019253, -0.0037965856, 0.0101161413, -0.0299360156, -0.00272614253, -0.0276556388, 0.0352488086, 0.00326288026, 0.0121296663, -0.0148709705, 0.00662886258, 0.00419989694, -0.00884252694, -0.0233253483, 0.0105467448, 0.0257148929, -0.0062285834, 0.00207720534, 0.0183885731, 0.0403432697, 0.0100069745, -0.00282014743, 0.0295236073, 0.00457288418, -0.0153197683, 0.00895775855, -0.0215665456, -0.0158049557, -0.00687752059, 0.0165084749, -0.00929739, -0.000353655574, 0.000702383462, 0.01143221, -0.0436910577, -0.0255693365, -0.0457045808, -0.0479607, 0.0158170853, -0.00707159517, -0.00573733216, -0.0157321766, -0.00474876445, -0.0111410981, -0.00288079563, -0.0190557055, -0.0225369204, 0.0203293208, 0.0283349, -0.0169330146, 0.00563119771, 0.0313188, 0.0253752619, -0.00228037732, -0.0333565809, 0.0240773875, 0.00735664228, -0.00957637187, -0.0062285834, -0.0322163925, 0.00827243272, 0.00588592049, 0.0188616309, 0.0147132846, 0.0134639293, -0.00627710205, -0.00663492735, -0.00962489, 0.0194195956, 0.0240531284, 0.0111532276, 0.0387421548, 0.00443339301, -0.0579312854, 0.0286987908, -0.00415441068, -0.0361706652, 0.000365406187, 0.0460199527, 0.0230099764, 0.00973405689, -0.0322163925, 0.0156715289, 0.0260302629, -0.0179033875, -0.010698366, -0.00890923943, 0.0288928654, -0.0174909793, 0.0162052345, 0.000408239081, 0.0041119568, 0.0406586416, -0.0303969439, 0.0563301705, -0.0123176761, 0.0518664531, 0.0149437487, 0.00492464425, 0.0243442394, -0.0123843895, -0.0133183738, -0.00921854656, -0.0205961727, 0.00842405297, 0.0376990028, 0.00110000907, 0.00599508733, -0.0101040117, -0.030421203, -0.0164963454, -0.0157200471, 0.0374321491, -0.00686539104, -0.0105528096, -0.0196136702, -0.036388997, -0.0363162197, 0.00959456619, 0.00273523969, -0.0469660684, 0.00963095482, -0.00552809518, -0.000904418237, 0.000713755, -0.0188737605, -0.0209358037, -0.00980683509, -0.0058252723, -0.0124571668, -0.0136580039, -0.0526912697, 0.0111592924, 0.0190799646, -0.0280923061, -0.0169815328, -0.00954604708, -0.0273402669, 0.0352973267, -0.00762349507, -0.0317069478, 0.0476938486, -0.00695636356, -0.0705946535, 0.0100858174, 0.0286502708, -0.0341328792, 0.0116808685, 0.0202929322, 0.0344725102, 0.000846044219, -0.0164963454, -0.00475482922, 0.00159050245, 0.0533220135, 0.00309003238, -0.00460927328, 0.0176122747, 0.00619825954, 0.00432119379, 0.000348159316, 0.0359038115, -0.0149316192, 0.0101464661, 0.00251993816, -0.010097947, -0.0211541373, -0.0415562354, -0.00697455788, -0.0146162473, -0.0291354582, 0.00986748375, -0.0140704131, -0.0376262255, -0.00603450881, -0.019698577, -0.0204870068, 0.019904783, 0.00192103593, 0.00212724018, 0.0264184121, -0.00225915038, -0.0185098704, 0.00780544, 0.0112623954, -0.00240470632, -0.0171756074, 0.00608606, 0.0202565417, 0.0301300902, -0.0118567487, -0.0327501, -0.0199290421, 0.0149073601, 0.000745595433, -0.0293052737, 0.000267989817, -0.00603450881, -0.00324771809, 0.00386026618, 0.0308336113, 0.0187645927, 0.0158049557, -0.0148224523, 0.0153682875, 0.0141674504, -0.0113594327, 0.0300330538, 0.00248506526, -0.00674409419, 0.0263213757, 0.00735057751, -0.0263456348, 0.0295963846, 0.00554022519, 0.0297662, -0.0294265691, 0.00211359421, 0.0133911511, -0.00802377425, 0.00923067611, -0.00807229243, -0.0216271952, -0.00261242688, -0.0206689518, 0.0195530225, -0.00633168593, -0.00631349115, 0.0173818115, 0.0140704131, 0.0286987908, 0.00701701175, 0.0223428458, -0.0111107742, -0.00401491951, -0.0216635838, -0.0155138429, -0.00631955592, 0.0337447301, 0.0113533679, 0.00117506145, 0.00575855887, 0.0194317251, 0.00399066, 0.00255784346, 0.0107590137, -0.000110114626, 0.00224095583, -0.0551172, -0.00130166474, 0.0299360156, 0.00255026226, -0.00889104512, 0.0235315524, -0.0129423542, 0.0199169125, -0.00674409419, -0.0289899018, -0.0177942198, -0.0171756074, 0.00780544, 0.0360978879, 0.0188009832, 0.0152348606, -0.0266852658, 0.00913363881, -0.00564332725, -0.0135003189, 0.00120917615, -0.0295478664, 0.0146647664, -0.0176850539, -0.00283379317, 0.00301725441, 0.00172847742, 0.0146283777, -0.00455469, 0.0499257073, -0.0157443061, -0.00121069234, 0.0426721647, 0.021372471, -0.00792673696, -0.0154531943, -0.0313673168, 0.0325560234, -7.87006866e-05, -0.0109106349, -0.0223549753, 0.0235558115, 0.00823604316, 0.00960063096, -0.00016536146, -0.0380628929, -0.0295963846, 0.017842738, -0.00198168424, -0.00200442737, -0.0153318979, -0.034763623, -0.000135890165, -0.0114989234, 0.00860599801, 0.000610273855, -0.0356369577, -0.0264911912, -0.00558571145, 0.000811929523, -0.0261273012, 0.00906086061, 0.00278982311, -0.00280195288, -0.00694423402, -0.0203050617, -0.00557054905, 0.0233496074, -0.0274373051, 0.000620887266, -0.000573505764, -0.00944901, 0.00474269968, -0.011692998, 0.00638626935, -0.00117127085, 0.00704733608, 0.0276313797, 0.0181095917, -0.0670528, -0.00701701175, -0.0165691245, 0.00858780369, 0.0111350333, -0.011535312, 0.000831640209, 0.020220153, 0.00541286357, -0.00790247787, -0.0294750892, 0.000859690073, -0.00614064327, -0.0297662, 0.00360554317, 0.0062073567, 0.0613761097, -0.0125056859, -0.00778118102, -0.0099523915, 0.013864208, 0.00595869869, -0.00406040577, -0.0140582826, 0.0158170853, 0.0233132187, -0.00883646216, -0.0178548694, 0.0015419838, 0.02908694, -0.0617642589, -0.0191527437, 0.0212875642, -0.00774479192, 0.0110137369, 0.0291597173, -0.017369682, 0.00707159517, -0.0290626809, 0.0113654975, -0.00673196465, -0.0264669321, 0.0240773875, 0.0119416565, 0.000989325927, -0.0356369577, 0.0110319313, 0.00631349115, -0.0196621884, -0.0255693365, -0.0310276859, 0.003466052, 0.0197834857, -0.0078660883, 0.0269278586, -0.0242714621, -0.000652727671, 0.0123116113, 0.00488825561, -0.0019271007, 0.0293295328, 0.014361525, 0.0286260117, 0.0339145474, -0.00274130446, -0.0122509627, -0.0263456348, 0.020038208, -0.0166297723, 0.00200897595, -0.00799951516, 0.0352730677, -0.00106286199, -0.0118870726, 0.0244412776, -0.0232404396, -1.76733029e-05, -0.0124814268, 0.0314643532, 0.0108742453, 0.0175152384, 0.019698577, -0.0150286565, 0.0447099507, -0.0072778, 0.0111896172, -0.00578888319, -0.00101889193, 0.00223337486, 0.00472450489, 0.0230342355, -0.0240895171, 0.0464566201, 0.0135003189, 0.022233678, 0.00493374187, 0.0305182394, 0.00750219868, -0.00278830691, 0.00798132, 0.00297176815, 0.0118203601, 0.0146405073, 0.0225247908, 0.0264911912, -0.00319616706, -0.0391545631, -0.00989174284, -0.035103254, -0.0324832462, -0.0349819586, 0.0184613522, 0.0196743179, 0.00284592295, 0.0170179214, -0.00127967983, -0.0240895171, 0.0280437879, 0.0356369577, 0.0262243375, 0.0181944985, -0.00952785276, 0.0259332266, -0.00314461603, 0.0153076388, 0.0129666133, -0.000479121809, 0.00744155, 0.00841192342, -0.016059678, 0.00743548525, 0.0430360548, -0.0231797919, 0.042405311, -0.0200503375, -0.0432786494, 0.0272917487, 0.0459956937, 0.0152712492, 0.00695029879, -0.021712102, -0.00510658929, 0.019043576, -0.00400885474, -0.00806016289, -0.0167632, -0.0176729243, 0.0116080903, -0.0141189313, -0.0137914307, 0.0235558115, 0.00642265799, -0.000783121563, -0.0232525691, -0.011692998, 0.00964308437, -0.00676228898, -0.0346665867, 0.0276313797, -0.00559784099, -0.0091154445, 0.0158534739, 0.0314643532, 0.0188737605, 0.00812081154, -0.00265639694, 0.0201109871, -0.0315371305, -0.0248658154, 0.00116293179, 0.0261515602, 0.0141553208, -0.000870303542, 0.00875155441, 0.0250356309, 0.017369682, 0.0358310342, 0.00416654, -0.0312945396, 0.018024683, -0.00975225121, 0.0102859568, -0.0191527437, -0.019722838, -0.0226460863, 0.00795706082, -0.0110743856, -0.00892136898, -0.0125784641, 0.0212026555, 0.00342359836, -0.0052157566, -0.0346180685, -0.0121963797, -0.0635594502, -0.0137429116, 0.00625890773, 0.0117475819, -0.0126391118, -0.0125178155, -0.0153318979, 0.00716863247, 0.00039800466, -0.00640446367, -0.00491857948, -0.0132819843, -0.02071747, 0.0222700667, -0.00522788614, 0.00620432431, -0.040416047, 0.0074840039, -0.0285774935, -0.00860599801, 0.0129544837, 0.0168966241, 0.0338417701, 0.0194317251, 0.0208023768, 0.00575249409, 0.0121357311, 0.00224095583, 0.00369954808, 0.00241835229, -0.0616187043, 2.8168306e-05, 0.00588592049, -0.0158170853, 0.0101767899, 0.00228795828, 0.0275586, 0.0262728576, 0.0187888537, 0.00247293571, 0.00108712132, -0.0217363611, -0.0167995878, -0.00492161186, 0.0100554936, -0.00698062265, -0.00730205886, -0.0137550412, 0.00632562069, 0.000580328691, 0.00423931843, -0.0171756074, -0.0265639685, -0.0101828547, -0.00659247348, -0.0809291303, 0.00222579367, -0.00554022519, -0.016532734, -0.00160263211, -0.00880613737, -0.0380628929, 0.00292931427, -0.0379658565, -0.00891530421, -0.0162416231, -0.0183521844, -0.0431573503, 0.0112442, -0.000875610276, -0.0342299193, -0.0232161805, -0.0254237801, -0.00557964621, 0.00935803726, -0.00889711, 0.0023425417, -0.00453043031, -0.0139369862, 0.0380386338, -0.00266246172, 0.0146283777, -0.0115898959, -0.0224277526, 0.00124101643, -0.0169087537, 0.0240409989, 0.0276313797, -0.0162052345, 0.0429632775, 0.0166176427, -0.00720502157, 0.0543409027, -0.0235194229, -0.0240531284, -0.00208478631, 0.0241501648, 0.0188131128, 0.0285047162, -0.00454559224, -0.0163507909, 0.00167389389, 0.015877733, -0.0100918822, -0.0423325337, -0.0149316192, 0.0262000784, -0.0340358429, -0.00807229243, 0.0254722983, -0.017891258, 0.0324832462, 0.0563786887, 0.0380143747, -0.0129423542, -0.00655001961, -0.0391060449, -0.000921854633, 0.0135124484, -0.0264669321, 0.0123661943, 0.0140582826, -0.0284319371, -0.0200139489, 0.0311247241, -0.00866058189, 0.00792673696, 0.0171998665, -0.044806987, 0.00297480053, 0.00179519062, 0.0108621158, 0.0193953365, -0.0176244043, -0.0155866211, 0.0355156623, 0.00867877621, -0.0301543493, -0.0170906987, -0.0277041569, 0.00319919945, 0.0138278194, 0.0194802433, 0.0337689891, 0.0184977408, 0.0142402276, 0.0217848811, 0.0071746977, -0.0214937683, -0.00245777355, 0.0385723375, -0.0141553208, -0.0251084082, -0.0110198017, -0.00984322373, 0.0237498861, -0.00680474285, 0.000618233928, 0.0223307163, -0.00595263345, 0.0192012619, 0.000535221538, 0.00859993324, 0.00494587142, -0.0356612168, 0.0173454229, 0.0236528497, -0.0072353459, -0.00469114818, 0.0101646604, -0.0116080903, 0.0315613896, -0.00835734, 0.0130757801, 0.00148740027, 0.0159383807, 0.00210146466, -0.000808139, -0.000959759811, -0.00283530937, 0.00117733574, 0.0259089675, -0.00357825146, 0.0118142944, 0.0120690176, 0.0319495387, 0.00216969405, -0.000930193753, -0.0184007026, 0.00267004268, -0.0147860628, 0.003341723, -0.00505200587, 0.0130757801, -0.00653789, 0.016399309, -0.0266610067, 0.0164478272, -0.0190799646, 0.0168238468, 0.0333565809, 0.015380417, -0.0218212698, 0.00646511186, -0.0118264249, -0.00590108242, -0.0268308222, -0.00750826346, 0.0120568881, 0.0310276859, 0.0349334367, 0.0305182394, -0.00641052844, 0.0325802825, 0.0405130833, -0.00952785276, -0.00759317121, 0.00207720534, 0.0175031088, 0.00431512855, 0.009261, -0.0178063493, 0.0120386938, 0.0155987507, 0.00175122055, 0.0110683199, 0.0207781177, 0.00842405297, -0.00493677426, -0.0188373718, 0.038451042, -0.035442885, -0.00950965844, -0.0117657762, -0.0262728576, 0.00923674088, 0.00778724579, 0.00964308437, 0.00635594502, -0.0133911511, 0.0309549086, -0.0129302237, -0.0429147594, 0.0060011521, 0.000631121686, -0.0165933836, 0.0371895581, -0.0154410647, -0.00964914914, 0.00488522323, 0.0193104278, 0.0244776662, -0.00339630642, 0.0161081962, 0.00100827846, 0.00966734346, 0.012293417, -0.00429693423, -0.015356157, -0.00490038516, 0.0130879097, -0.00869697053, 0.0334051, -0.00161931047, -6.43914682e-05, -0.00326591264, 0.0289899018, -0.0263456348, 0.0120993424, -0.0028277284, 0.000280498527, -0.0337932482, -0.0352973267, -0.0101161413, -0.00350850588, -0.00241531967, 0.017891258, -0.0258847084, -0.00193013309, 0.0286017526, -0.0100918822, -0.015380417, -0.00362980249, -0.0131242983, -0.00938836113, 0.00182854722, 0.0161324553, -0.00618612953, -0.00898808241, 0.00224247202, -0.0244897958, -0.02071747, -0.0331867673, 0.00117051275, 0.000590563111, 0.021057101, -0.0245140549, 0.0161809754, -0.00399369234, -0.00155714585, 0.0156594, -0.00159050245, -0.0176244043, 0.011874943, -0.0148709705, -0.0118264249, -0.0163144, 0.0173090342, -0.00597082824, -0.00274736946, 0.0116323503, 0.026078783, 0.00980077, 0.00736877229, -0.0142523581, 0.00461230567, 0.0120144347, -0.00468205102, -0.0023501229, -0.0406343825, -0.0232647, -0.00722321635, 0.0076174303, 0.0153925465, 0.0164963454, 0.030421203, -0.00648330664, -0.0142523581, -0.0126391118, -0.0145798586, -0.00146465714, 0.0143736545, -0.00541589595, -0.0185705181, -0.00247748429, 0.0186432973, 0.00888498, 0.00733844796, 0.00240773871, -0.00026533645, 0.0013842982, 0.00158292148, -0.00184522546, 0.00416350784, -0.0190678351, 0.0117779057, -0.00415137829, -0.0122085093, 0.0184613522, 0.00738696661, -0.0047002458, 0.0268550813, -0.0191648733, 0.0149194896, 0.0180610735, 0.00399066, -0.00525821047, -0.0279467516, -0.00307487044, 0.00708979, 0.0149801373, 0.00509142736, 0.0171149597, 0.00460624089, -0.00776298624, -0.0121781845, -0.0238469243, -0.0193225574, -0.0237498861, -0.0193104278, 0.0262000784, 0.0210449714, 0.00496406574, -0.0525942333, -0.0270248968, -0.00905479584, 0.0167268105, 0.00327804219, -0.00902447198, -0.00557054905, -0.0152955092, -0.0379658565, -0.0301300902, 0.000285994785, 0.0302028693, 0.00322345877, -0.00801164471, -0.00651363051, 0.0108924406, 0.0276313797, 0.02908694, 0.00150407862, -0.000734223868, 0.0199896898, -0.0153076388, 0.0147132846, 0.000166024809, -0.0136943934, -0.0179519057, 0.00796312559, -0.0079388665, -0.0212633051, -0.0151620824, 0.0178306084, -0.00877581351, -0.00139187917, -0.00227431231, -0.0236649793, 0.00737483706, 0.0352002904, 0.010595263, -0.0114504052, -0.0189101491, 0.0208145063, -0.010019104, 0.00433029095, -0.0120750824, -0.00767201371, 0.00952785276, -0.0163629204, -0.0132698547, 0.0187888537, -0.00525214523, 0.0173818115, 0.0372865945, -0.00513084885, 0.00652576052, 0.00290202256, -0.0157443061, -0.00411498919, 0.00867271144, 0.0254965574, 0.0062073567, 0.0168966241, 0.0260302629, 0.0217363611, -0.0151256938, -0.00730205886, -0.00735664228, 0.0306395367, 0.00458804611, -0.00750826346, -0.0251084082, -0.00771446759, -0.0331867673, -0.00025282774, -0.00967340916, -0.0122206388, -0.0163265299, 0.0188131128, 0.0220032148, -0.0126512414, -0.0229372, -0.0135609666, -0.00414228113, 0.00581314228, -0.0106437821, 0.0034084362, 0.0259817448, -0.000253964885, -0.00557358144, 0.00253510033, -0.00650150096, -0.00377839105, 0.00341753336, -0.0131000392, -0.0118870726, -0.00461533805, 0.0109834131, 0.000562892295, 0.0213118233, -0.000941565318, -0.0154895838, -0.0156351402, -0.00456681941, 0.00620432431, 0.00497619575, 0.0121175367, -0.0373108536, -0.00244109542, -0.0263213757, -0.00733238319, -0.0226218272, -0.0227795132, 0.00986748375, -0.0104679018, 0.0133062433, 0.0237377565, 0.00977044646, 0.0134032806, 0.0139005976, -0.00767807849, 0.0127967978, -0.00861812755, -0.00736270752, 0.00888498, 0.00410589203, 0.000216817789, -0.0112260059, -0.0233496074, 0.0138520785, 0.0142766172, 0.0174182, -0.00618006475, -0.00671377033, 0.00985535327, -0.0265882276, 0.00955817662, 0.0221366398, 0.0250113718, -0.00297025195, -0.0328228772, 0.0127604092, -0.0262000784, 0.006434788, -0.00244412781, 0.0106559116, -0.00708372518, 0.00852109, 0.0087030353, -0.00555538712, 0.0147739332, 0.00500348723, -0.020899415, -0.013051521, -0.024720259, -0.0317797251, 0.0345452875, 0.0172847752, -0.00893956423, -0.0180368144, -0.0237741452, 0.00474573206, 0.00754465256, 0.0175637566, -0.0245747045, 0.0139612453, 0.0195408929, 0.00247900048, -0.0269278586, -0.005846499, 0.0149558783, -0.00775085669, 0.0204627477, -0.000301914959, 0.0182551481, 0.00107195927, 0.00141007372, 0.00466992147, 0.00982502941, -0.00628316728, 0.0141310608, -0.00493070949, 0.000742942037, -0.0033113989, 0.00520362658, -0.0078964131, 0.0103951236, 0.0149680078, 0.031415835, -0.00725960499, 0.048130516, 0.0101525309, -0.0067562242, -0.0350547358, 0.00650150096, -0.00638626935, -0.0421142019, -0.0126512414, -0.007520393, 0.00858780369, 0.0460199527, 0.00159050245, 0.0288200863, -0.0156472698, -0.0105588743, 0.0225369204, 0.00329926913, -0.00902447198, -0.0382084474, 0.00556145189, -0.0156230098, 0.0136458743, 0.0140097644, -0.00307032163, 0.0225005299, -0.018546259, 0.00646511186, 0.0506534874, 0.00590714719, 0.000644388492, -0.0161809754, -0.0152712492, -0.0126755014, 0.00389968767, 0.00371167785, -0.0245019253, 0.0252782237, -0.00858780369, 0.0238347948, -0.00409982726, 0.0284319371, -0.00185129035, -0.00399066, 0.0249385927, 0.0060375412, 0.0235922, 0.00548260892, -0.000571231474, -0.000108693181, -0.00351153826, -0.00528550195, -0.0191284828, -0.00305364351, 0.0128210569, 0.013184947, 0.0164114386, 0.00571004, -0.0114382748, 0.0156472698, 0.0336719528, -0.0335506573, 0.0311732423, -0.027752677, 0.0212633051, 0.0282621216, -0.0176486634, -0.00249719503, 0.0196864475, 0.0367043689, -0.0275586, 0.0245019253, -0.00168147497, -0.0207781177, 2.26838961e-06, -0.0389362276, -0.0244170185, -0.0281408262, 0.0101646604, -0.0435212404, -0.00210752944, 0.0102495681, 0.0146647664, -0.0108196624, 0.00282166363, -0.00655608438, -0.00236225245, 0.0132092061, 0.030421203, 0.0219910853, 0.00641659321, 0.0157806948, 0.00700488221, 0.0159505103, 0.00884252694, -0.00582830468, 0.0163871795, 0.0168238468, 0.00330230151, -0.00549777132, 0.0159869, 0.0122570274, 0.0118810078, 0.00697455788, -0.00359038124, -0.0088728508, 0.0105831334, 0.0192497801, -0.0148831, 0.0131728174, -0.0157079175, 0.0258361883, 0.0168966241, 0.00644085277, 0.0165084749, -0.0119173974, 0.00636201, 0.00587985571, 0.0191284828, -0.00682293717, 0.0241622943, -0.00068418897, -0.0164478272, 0.0141431903, -0.00585862854, 0.0272432305, -0.011195682, 0.00416957261, 0.0300087947, 0.0255450774, 0.0225490499, -0.00448797643, -0.00483670458, -0.0298389792, 0.00946113933, 0.00462140283, 0.0117900353, 0.0415804945, -0.023204051, 0.0231312737, -0.0380628929, 0.013051521, -0.00331443129, 0.00649543619, -0.00190132519, -0.00150483672, 0.0203050617, 0.00443339301, 0.0112078115, 0.0131970765, 0.018206628, -0.000750902167, -0.00081041333, -0.0137671707, -0.0209479332, -0.00372077501, -0.0131364288, 0.018024683, 0.0253752619, -0.0146162473, -0.00226824754, 0.00443036063, -0.0108196624, -0.00435455, -0.00481244503, -0.0262728576, 0.0134032806, 0.00921248179, 0.0351275131, -0.0085635446, -0.0155259725, -0.0176244043, -0.0187282041, 0.0234466437, 0.0121599901, -0.0126633719, 0.00234860671, 0.0389847457, -0.0100312335, 0.0238954425, 0.00151848258, -0.0233253483, 0.00749613345, -0.0102920216, 0.0037905206, 0.00554932235, -0.00500045484, -0.00289747398, -0.0163265299, 0.00154653238, 0.0118021648, 0.0115049882, 0.00591018, -0.0137429116, -0.00585256377, 0.0147618037, -0.00105755532, 0.0112866545, 0.00669557555, -0.00622251863, 0.00484580174, 0.0113836918, 0.00487006083, 0.00611638417, -0.000886223745, -0.00500348723, 0.0020195893, -0.004302999, 0.0124147134, -0.000750144, 0.00158595387, 0.00210298086, 0.0091154445, -0.0108196624, -0.00490948232, -0.00173454231, -0.00459714327, 0.00439397153, 0.00075469265, 0.000369954825, 0.00738090184, 0.0198683925, 0.00233344454, 0.0101464661, 0.0190557055, -0.0086302571, 0.0026958182, -0.012845316, 0.0196136702, 0.00225308537, 0.00511265406, -0.00109697669, -0.0161203258, -0.00100221368, -0.00110000907, -0.00316887535, 0.00792673696, 0.00684719672, -0.0126148527, -0.0376262255, 0.0184370931, -0.0100797527, 0.0111229038, 0.00910331402, 0.00406647054, 0.0037601965, 0.00804803334, 0.00920035131, -0.0201231167, -0.027413046, 0.000697076728, -0.00606180076, -0.00208175392, 0.0283349, -0.0126148527, -0.00525214523, 0.00538253924, -0.00610728702, 0.00839372911, -0.0228886809, -0.00126375956, -0.00116748037, -0.0211662669, 0.000917306, -0.0250356309, -0.0215786751, -0.00280650146, 0.0121357311, 0.00158292148, -0.00254722987, -0.0105346153, -0.00466688909, -0.00846650731, -0.0282378625, -0.0101585956, 0.00872123, -0.0181338508, 0.00289899018, -0.00166176422, 0.00819965452, 0.00410589203, 0.00778118102, -0.0181944985, 0.00418170262, -0.019856263, -0.012869576, -0.035442885, 0.00304454612, -0.00635594502, -0.00256087584, 0.034084361, -0.00226976373, -0.0105467448, 0.0103769293, -0.00319919945, -0.00854534935, 0.000536737731, -0.00780544, -0.00424841559, 0.0104011884, -0.00741122616, 0.00294296024, -0.0104860961, 0.00684719672, -0.0115595721, 0.0169208851, -0.0131121688, -0.00789034739, 0.00765988417, -0.0291839764, 0.0230706241, -0.0144585622, -0.0336962119, 0.00429996662, -0.00329320435, -0.00100752036, -0.000113147042, -0.0181702394, -0.00133198895, -0.0171513483, 0.00890923943, 0.0200988576, -0.00290050637, 0.0131242983, 0.0122388331, 0.0152591197, -0.0349819586, 0.00532492343, 0.0212147869, 0.00140704121, 0.00865451712, 0.0102616977, 0.012190314, -0.0185583886, 0.00359038124, 0.00490645, 0.0035691543, 0.0170421805, 0.00444855494, -0.00342966313, -0.0165448654, -0.00303241657, -0.0114686, -0.0145677291, -0.0173818115, 0.00522182137, 0.0112442, 0.0139855053, 0.0116080903, -0.0255450774, 0.0128210569, -0.00423325365, -3.53584505e-06, -0.00355702452, 0.0180974621, -0.00621645385, 0.0020863025, -0.014385784, -0.0240046084, -0.00641052844, 0.021420991, 0.0241016466, -0.00362070533, -0.00326894503, 0.0142159685, 0.0175031088, -0.0134396702, -0.0299845338, 0.00179064192, -0.013366892, 0.00361767295, 0.0151742119, 0.0194923729, 0.000911999261, -0.00209085131, -0.0111835524, -0.00267155888, -0.00269126962, -0.0175273679, -0.00819965452, -0.0147860628, -0.0407071598, 0.00499439, -0.008945629, 0.00263365381, -0.000136743038, -0.00478818594, -0.00490645, -1.04298542e-05, 0.0126391118, -0.0186796859, -0.0140097644, 0.000694044342, 0.0277769361, 0.00655608438, -0.00335385278, -0.0104618371, 0.00610122224, -0.00575552648, -0.00762956, -0.00213785376, 0.00298086554, 0.000971889473, 0.0336719528, 0.00146086665, -0.00997058582, -0.00806622766, -0.0161203258, -0.00399369234, 0.0169451442, -0.0183764435, 0.0286987908, 0.0279467516, -0.0209964514, -0.0209358037, -0.00942475069, -0.011692998, -0.0204870068, -0.0108742453, 0.00333262584, -0.014361525, -0.00571913738, -0.0184856113, -0.00921248179, 0.00755071733, 0.018230889, 0.0263213757, -0.00445461972, -0.0245504435, 0.0127846682, -0.0206083022, -0.022051733, 0.00600418495, 0.0250356309, 0.00507626543, 0.0171513483, -0.0161203258, 0.00847257208, -0.0141068017, -0.00409073, -0.010201049, -0.0039451737, 0.0201837644, 0.0147860628, 0.000858932, 0.0267823022, 0.00322649116, 0.0252539646, 0.00647724187, -0.020899415, -0.0148103228, 0.0326045416, -0.0047821207, 0.00718076248, 0.021894047, -0.0126027232, -0.00133274705, -0.0206810813, 0.012529945, 0.0423082747, -0.0218091402, -0.00342663075, -0.00523091853, 0.00457591657, -0.00329320435, -0.0111350333, 0.0126027232, 0.0197834857, 0.00324468571, -0.00557661382, -0.00274282065, -0.018206628, 0.0179519057, 0.00651363051, -0.033720471, 0.0286987908, 0.00943081547, 0.0100676231, 0.00526427524, 0.00531279389, -0.0113109136, -0.00830882136, -0.00700488221, 0.00244412781, -0.0117111923, -0.0256906319, 5.91795033e-05, 0.00983715896, -0.00639233412, 0.00989174284, 0.0247809086, 0.00439700391, -0.0368256681, -0.0289171245, -0.00636807457, -0.00235467148, 0.0279224906, -0.00734451273, 0.0146768959, 0.0365588143, -0.010777208, 0.00509142736, 0.00977651123, -0.0170057919, -0.00866664667, 0.00692603923, -0.0211783964, 0.00530066388, 0.0369954817, 0.016872365, 0.0018330958, 0.0202565417, -0.0108196624, -0.00417867, -0.00639233412, 0.0159747694, 0.000271780329, 0.0170421805, 0.0118203601, -0.0223428458, 0.00900021195, 0.0146526368, -0.022051733, -0.00822997838, 0.0119598508, -0.0359038115, 0.015222731, 0.0227795132, -0.00580101274, 0.0225247908, -0.0116566094, -0.000905176334, -0.00758104119, -0.00964914914, 0.00917002745, 0.00738696661, 0.00293386308, 0.00151696638, -0.00752645778, -0.0116444798, 0.0111229038, 0.0199290421, 0.00816326495, -0.00355095975, -0.0144828213, 0.0206325613, 0.0321921334, 0.00011807472, 0.0101828547, 0.0230221059, 0.0186918154, 0.00878794305, -0.021554416, -8.8698187e-05, 0.00402704906, -0.0167146791, -0.0129059646, 0.00798738468, 0.00064666284, 0.0141310608, 0.013682263, -0.00330230151, 0.00998878, 0.00126300147, -0.00728992932, 0.0223549753, 0.010358735, 0.0177699607, -0.00399975758, -0.0179033875, 0.0225975681, 0.0111107742, 0.000817994354, 0.0136458743, -0.0176244043, 0.0273645259, -0.00224095583, -0.0161567144, 0.0319010206, -0.0246353522, -0.0318767615, 0.0190314464, -0.00136458746, -0.0145919882, 0.00874549, 0.0116869332, -0.0120629529, -0.000880917, 0.0162901413, -0.00872123, 0.00295812241, 0.0120083699, 0.0026366862, 0.00425144797, -0.0186554268, 0.00631955592, 0.00594050391, -0.00148891646, 0.00903660152, -0.00856960937, -0.00563119771, -0.020220153, -0.0179033875, -0.00508839497, 0.0110743856, -0.00585559616, 0.0371410362, 0.00654395483, -0.00808442291, -0.0243321098, -0.000338493497, 0.0264426731, 0.0063377507, -0.0118324896, -0.0104982257, -0.000902143947, -0.0115231825, 0.0045910785, 0.0182794072, -0.00140552502, 0.0239924788, -0.00958243664, 0.0120386938, 0.0025912, -0.0286260117, -0.00571004, -0.0350062177, -0.00453043031, -0.0030263518, -0.00581314228, 0.0135852257, 0.00639839889, -0.00950965844, -0.0220032148, -0.000962792255, -0.00366619159, 0.00792067219, -0.0118385544, 0.00735664228, 0.00522182137, -0.00564332725, 0.00708372518, -0.0118628135, -0.000278224208, -0.0150286565, 0.0160718076, 0.00251690578, 0.0147860628, 0.0144464327, -0.000557585561, 0.017551627, -0.0136701334, 0.00895775855, -0.00175576913, 0.0177578311, 0.0217727516, -0.00725960499, -0.0143130058, 0.00468811579, 0.0228886809, 0.00416047545, -0.0155259725, -0.00436667958, -0.0273645259, 0.0100615583, 0.00274736946, -0.0193953365, 0.00675015943, -0.00938836113, -0.0120508233, -0.0213118233, -0.00652576052, -0.00322042638, 0.0153197683, -0.000733844819, 0.0154895838, 0.0042817723, 0.0103890589, 0.00821178406, 0.00916396268, -0.00835127477, -0.012293417, -0.00678048329, 0.000786912104, 0.0268550813, 0.0206325613, -0.009261, 0.0273887869, 0.00843011774, -0.013864208, 0.00695029879, -0.0166661609, 0.0123904543, 0.00461837044, -0.00123419357, -0.00801770948, -0.00897595286, 0.00441216584, 0.000207910052, 0.0206810813, 0.0166176427, -0.00651363051, 0.00392394699, -0.0144706918, -0.00744155, -0.00323255593, -0.00730205886, 0.0206568222, -0.00775085669, 0.0468690284, 0.00197561947, 0.0178063493, 0.00535221538, -0.00690784492, -0.0168844946, -0.00846044254, -0.00370561308, 0.0294993483, 0.0015101434, -0.00481547741, 0.0109955426, -0.00964308437, -0.0237498861, 0.00580404513, -0.0220638625, 0.0182430185, -0.0071989568, 0.0088000726, -0.00981896464, -0.00215908047, -0.0137429116, 0.00121145044, -0.00809655245, -0.00201504072, 0.00119173969, 0.000376588228, 0.000822543, -0.0349091776, 0.00283985818, -0.0170421805, 0.028068047, -0.00120841793, 0.0111047095, -0.00587682333, -0.0149922669, -0.00942475069, 0.0174909793, -0.0258119293, 0.0188737605, -0.0126391118, -0.00283985818, 0.0209600627, 0.0249871127, -0.00227431231, -0.00278072595, -0.0191770028, 0.00143205875, 0.0111410981, 0.020377839, -0.00778724579, 0.0127361491, 0.0348849185, -0.00281105, -0.00370561308, -0.0193953365, 0.00699275266, 0.0122873522, 0.0113473022, -0.0126027232, 0.0244412776, 0.0141310608, -0.0380143747, -0.0197349675, 0.000471919833, 0.00783576444, -0.0245504435, 0.0101585956, -0.0142523581, 0.0142887468, -0.0139976349, -0.00225915038, 0.00188616314, 0.0405858643, -0.00490948232, 0.0124207782, 0.00625284296, 0.0389362276, 0.00802983902, 0.00753858732, -0.0439821705, 0.0093277134, -0.0163507909, -0.0173818115, 0.00322042638, 0.00166328042, -0.00651969574, 0.0124329077, -0.00346301962, 0.00895169377, 0.00392394699, -0.00765988417, 0.0071989568, 0.0211298782, 0.00499742245, 0.0082481727, 0.00259423233, -0.0268793404, -0.0169330146, 0.0114686, 0.00361160818, -0.0226339567, 0.00575552648, 0.00342663075, 0.0072778, -0.00679261284, 0.0539042354, 0.0099220667, 0.0109591531, -0.00105831341, 0.0291354582, 0.0219910853, 0.0140340235, -0.0344482511, -1.38354008e-05, 0.00747793913, 0.0328956544, -0.000230463658, -0.0215180274, -0.00325075048, 0.00690784492, 0.00283227698, -0.0195530225, 0.00974618644, -0.0015427419, 0.0221366398, 0.0104618371, 0.00161931047, -0.00206355937, 0.00464262953, 0.00467598625, 0.00334475539, 0.0067562242, -0.000125466235, 0.037044, 0.0117779057, -0.0112927193, 0.00180428789, 0.0271461923, -0.00648330664, -0.00352973281, 0.0266852658, 0.000604588073, 0.0129908724, -0.0186069086, -0.0110137369, -0.000634533179, -0.00493677426, 0.00625284296, -0.0108135976, 0.0120750824, 0.0118264249, -0.0173211638, 0.0313673168, 0.0239318311, 0.000941565318, 0.0204991363, -0.00136686175, 0.0360736288, 0.00773872714, -0.00319313467, -0.00904873107, -0.00460320851, 0.0123965191, 0.0436182804, -0.0176729243, -0.00546138221, 0.0163507909, 0.00518846465, -0.0146041177, 0.00691390969, 0.00541589595, 0.00845437683, 0.0128938351, -0.00974012166, -0.021530157, 0.0158413444, 0.0226824749, 0.00677441852, -0.0145070804, -0.00896382332, 0.00585559616, -0.00876974873, 0.00481547741, -0.00332352845, 0.0274615642, 0.00393607654, -0.011638415, -0.00665918691, -0.0251569282, -0.00268672104, 0.0262971167, 0.0094975289, 0.0242835917, -0.00559480861, -0.000610652904, 0.0118082296, -0.00346908462, 0.00814507063, 0.0164842159, 0.00329926913, -0.00107423356, 0.00913970359, 0.00290808757, -0.022233678, -0.00392697938, -0.0142402276, -0.0010947024, 0.0168238468, 0.0123419352, -0.0229857173, 0.000370902446, -0.006174, 0.0178669989, -0.015562362, -0.00638020458, 0.0051187193, 0.00488825561, 0.0091154445, -0.000950662594, 0.0204020981, 0.0140704131, 0.00943688, -0.00598902255, 0.0123298056, -0.00224095583, 0.00910331402, 0.00695029879, -0.00352670043, 0.0008831913, 0.00552506279, -0.0202080235, 0.010019104, 0.0078297, -0.0195530225, -0.035782516, -1.54819081e-05, 0.00948539935, 0.00550383609, 0.0279224906, -0.0256178547, 0.00229705544, -0.0154410647, -0.0135609666, -0.00320526422, 0.00613154611, 0.0197956152, -0.000106418869, -0.0247809086, -0.00909118447, -0.00875761919, -0.00104239315, 0.0388634503, -0.000115705647, -0.0100736879, 0.0177457016, 0.00848470163, -0.00557358144, -0.0128817055, -0.0283106416, -0.000973405724, -0.00644691754, -0.0154895838, 0.01054068, 0.00119932077, -0.00594960107, 0.0159262512, 8.72293604e-05, 0.0289413836, -0.0155987507, 0.000298882544, -0.00312035671, 0.0124086486, -0.0209600627, -0.00176031783, -0.0278497133, -0.0145919882, -0.00377232628, -0.0251811873, 0.000742942037, 0.000886223745, -0.0136701334, 0.006095157, -0.00181490125, 0.0163750499, -0.022051733, -0.0223428458, 0.0113836918, -0.0228159018, -0.0141431903, -0.00094535586, -0.00231828238, 0.00930951908, -0.00094535586, -0.00131076202, -0.00883039739, -0.0119113317, 0.0249143336, 0.0166297723, -0.0100676231, -0.0156594, 0.0218091402, -0.0169572737, -0.00864238758, -0.0120023042, 0.0107468842, 0.00312338909, -0.00606180076, 0.0146283777, -0.0261273012, -0.00821784884, -0.0285289753, -0.0299602747, 0.0126027232, -0.013864208, 0.02505989, -0.00289595779, 0.000842253678, -0.0120083699, -0.01888589, 0.0119355917, 0.00335082016, 0.00574642932, 0.0185341295, 0.00982502941, 0.0278254542, -0.00695636356, -0.00387239596, 0.00835127477, -0.00994026102, 0.00486399606, 0.0174909793, 0.00322649116, 0.0064711771, -0.00351457065, 0.0187282041, -0.0661309361, 0.00172999362, 0.00467901863, 0.00992813148, -0.0141674504, -0.0131970765, 0.00280953385, -0.018230889, -0.00227128, -0.0148103228, -0.00300209248, 0.0212754346, 0.0134518, 0.00250932458, 0.00936410204, -0.0128210569, 0.0012857446, -0.00907905493, -0.00939442683, 0.00809048768, -0.0240167398, -0.0137307821, 0.00410589203, -0.0066470569, 0.00681080762, -0.00434242049, 0.0221730303, -0.00383297447, -0.0128938351, 0.0133911511, -0.00875761919, -0.00367832114, 0.00979470555, 0.0176971834, -0.0156715289, -0.0157321766, -0.00466688909, -0.0099220667, -0.00972192734, -0.0178669989, 0.0101100765, -0.0110016074, -0.00941262115, 0.00511265406, -0.00342966313, 0.00129711616, 0.00777511578, -0.0161081962, -0.0182672776, 0.00889711, -0.00491251471, 0.0184249636, -0.0145313405, -0.0143979136, -0.0285289753, 0.00642872322, 0.00527034, 0.000369386253, -0.0173575524, 0.0404403061, -0.00607999507, -0.0449040234, 0.00634988025, 0.0164842159, 0.00696849311, 0.0210207123, -0.0181338508, 0.018364314, 0.00822997838, 0.0057343, 0.000680019381, -0.016399309, -0.00197107065, -0.00300360867, 0.0158292148, 0.016059678, -0.0156230098, 0.00738696661, 0.0101040117, 0.00388149312, 0.00711404905, 0.00683506671, -0.0101404013, 0.0178063493, 0.00961276051, 0.00895775855, 0.0254237801, -0.00814507063, 0.0217242315, -0.00582830468, 0.00396336848, 0.0162901413, -0.00728386454, 0.00405737339, 0.00577978604, -0.000587151677, -0.00709585473, -0.019225521, 0.0133183738, 0.0112138763, -0.0144585622, -0.0102556329, 0.0182794072, 0.00981896464, 0.00165418326, -0.0166540314, 0.00309306476, -0.0194317251, 0.0184370931, -0.00183764438, 0.0202444121, -0.00112047791, -0.000309685536, -0.00230918522, 0.00873335917, 0.0105831334, 0.00437274482, 0.00756891165, -0.0126633719, 0.0208508968, -0.00508536259, 0.0126148527, -0.0166055132, -0.00263517, 0.00245019258, 0.00410892442, 0.0103951236, -0.00813294109, -0.000506034528, -0.00307790283, 0.0101464661, -0.010595263, -0.00711404905, 0.00350850588, -0.00114094676, -0.0292567555, -0.00271098036, -0.0140582826, 0.00305364351, 0.0201352462, 0.00210601324, -0.00413318351, 0.0230827555, -0.0190799646, -0.00190739, -0.0140825426, -0.0118324896, 0.0201109871, 0.0176244043, -0.000621645362, -0.0486642197, -0.00342663075, 0.0128331864, -0.0115717016, 0.0176486634, -0.0299602747, 0.00179670681, -0.00606786553, -0.018522, -0.00452436553, -0.00616490282, -0.00156472693, 0.011195682, 0.00252903532, -0.00753858732, 0.0110076722, 0.00518846465, -0.0161688458, -0.0102980863, -0.0113533679, 0.0203050617, 0.0168602355, 0.0282621216, -0.00114852772, -0.0112684602, -0.0131606879, 0.0100069745, -0.00698668789, -0.0134154111, 0.0147618037, 0.0228522904, -0.00733844796, -0.0121054072, 0.0188131128, 0.029741941, -0.00204991363, 0.0243078507, -0.0109712826, -0.00456075463, -0.00892136898, 0.0110622551, 0.000133426322, -0.0144343032, 0.0116566094, -0.0209115446, 0.000249037199, 0.0115838312, -0.0108621158, 0.0041119568, -0.00148360978, -0.00419383217, -0.0239318311, 0.0124207782, 0.00686539104, 0.0126391118, -0.0195408929, 0.0169815328, 0.00692603923, 0.00145252747, -0.00389059051, -0.0151014347, -0.00564939203, -0.024380628, 0.0286017526, 0.00688358536, 0.0139127271, 0.00873335917, 0.00341146858, -0.00111062254, 0.0183400549, 0.0276556388, 0.00278830691, -0.0174909793, -0.0192619096, 0.0121296663, 0.0217606202, -0.0194923729, -0.0105710039, -0.0287958272, 0.00438487437, 0.00530066388, -0.0201352462, 0.030760834, -0.0126633719, -0.00973405689, -0.00918215699, -0.000977954362, 0.00479728309, -0.0236528497, 0.0191770028, 0.00211511063, 0.0237620156, -0.0125056859, -0.00321436161, -0.00172241253, -0.0127240196, 0.00856960937, -0.0111532276, 0.0198926516, 0.00156169455, -0.0127361491, 0.00598902255, -0.00525214523, 0.0289656427, 0.00152985414, -0.00670770556, -0.0190799646, -0.000299072068, -0.00413318351, 0.00735057751, 0.0178548694, -0.0105164209, -0.0219304357, -0.0106862355, 0.00791460741, -0.0253267437, 0.013524578, -0.0126755014, -0.00213482114, 0.00747187436, -0.00193013309, -0.0132698547, -0.00305061112, 0.0105042905, 0.015562362, -0.0107529489, 0.000266094547, 0.00594960107, -0.00467901863, 0.00181793375, -0.00661066826, 0.00270946417, -0.0238469243, 0.036122147, -0.0117111923, 0.0249143336, 0.0169087537, -0.015222731, 0.0121175367, -0.0244412776, 0.00140704121, -0.00634381548, 0.0112927193, 0.0320465788, 0.00416957261, -0.0317069478, -0.0102556329, 0.0108257271, 0.00979470555, -0.0248294268, 0.0125420745, 0.0163750499, 0.00466082431, -0.00194832764, -0.00764775462, -0.000339630642, -0.0122024445, 0.000626194, -0.00865451712, 0.00248809787, -0.0515268221, 0.0145070804, -0.00450010598, 0.000906692527, -0.00815113541, -0.0148831, -0.00923067611, 0.00326591264, -0.00465475954, -0.0083209509, 0.00715043815, -0.00195590872, -0.00312035671, -0.0112927193, 0.009782576, -0.00909724925, -0.0280437879, 0.0149437487, -0.00634381548, 0.00537950685, 0.00520665897, -0.000158349, -0.0146405073, 0.0217363611, -0.0109955426, -0.0107832728, 0.0119780451, -0.0170785692, 0.00712011382, 0.0178548694, 0.000170194384, 0.00704733608, -0.0412651226, -0.0160475485, 0.00216059689, 0.00552203041, -0.00448494405, 0.0070655304, 0.0231797919, 0.00439700391, -0.0115717016, -0.00745368, 0.00128119602, -0.0126269823, 0.0182187594, -0.00750826346, -0.000218334, -0.00165266707, -0.0074476148, -0.0021514995, 0.0261515602, -0.00171483157, -0.00495496858, -0.00167692639, 0.013051521, -0.0155017134, 0.0350062177, 0.00227734493, -0.0132213365, -0.00684113149, 0.0273645259, 0.00453043031, -0.00920641702, 0.00143205875, 0.0141431903, -0.0121721197, -0.0116748037, 0.0221366398, 0.00302028679, 0.00949146412, 0.0256178547, -0.0261273012, -0.00454256, -0.0227795132, -0.0068532615, 0.00997058582, 0.00724141067, 0.0078297, -0.00424841559, -0.00339024165, -0.0214937683, 0.00701094698, 0.000596627942, 0.00715650292, -0.0037238074, -0.010358735, -0.02940231, 0.0252782237, -0.0297662, 0.018412834, 0.00407253532, -0.0312217604, 0.0129180942, 0.0118628135, 0.0268308222, 0.00533705298, -0.0261758193, -0.0119659156, -0.0254722983, -0.0369469635, 0.0129544837, 0.00665312167, 0.0243442394, 0.0199896898, 0.00839372911, 0.00349031133, 0.00941868592, 0.014361525, -0.0184370931, -0.00747187436, 0.00246990332, -0.00694423402, -0.0163750499, 0.0124450373, -0.0216029361, -0.0128089273, -0.0169451442, 0.00742335571, 0.0284319371, 0.0103890589, 0.00391181745, -0.00861206278, 0.0143979136, -0.0113109136, 0.0164235681, -0.00442732824, -0.0327015817, -0.0120811472, -0.00441216584, 0.00291263615, 0.0184856113, -0.0106437821, -0.00481851, 0.0151256938, -0.0195287634, -0.0102616977, -0.022730995, 0.0110016074, 0.000335271558, -0.0152469901, 0.0143372649, -0.00839372911, 0.0124329077, -0.00137368473, -0.00489735277, -0.00165418326, -0.00595869869, 0.00691997446, -0.00317190774, 0.00261091068, -0.00422112364, -0.0199775603, 0.00490948232, 0.00743548525, -0.00997058582, 0.0175637566, 0.0383782648, -0.00293083047, -0.00878187828, -0.0243199803, 0.00132516597, 0.0095399823, 0.00357825146, 0.0194074661, -0.0153197683, 0.0112563297, -0.00228189351, -0.0239197016, -0.00174818817, 0.00634988025, 0.00183764438, -0.0284804553, -0.00208478631, -0.00271704514, 0.000911999261, 0.0111047095, 0.0158534739, -0.00140552502, -0.00327197742, -0.00854534935, 0.0130393915, -0.00550990086, 0.00412711874, -0.00697455788, 0.00574946171, -0.0108439215, 0.0283349, -0.00270643178, -0.0119598508, 0.0322891697, -0.0137914307, 0.00511568692, -0.00845437683, 0.0088728508, 0.0238469243, -0.00536434492, -0.0250841491, 0.00842405297, 0.0204991363, -0.0151620824, 0.00729599409, -0.00784182921, 0.0310519449, -0.00384813664, 0.00564635964, -0.0123661943, -0.000152757988, 0.00998271536, 0.00313551864, -0.0174303297, 0.00353579759, -0.00937016681, -0.0142887468, -0.0118021648, -0.0110076722, 0.00624071341, 0.00423931843, 0.0237377565, 7.01720128e-05, 0.0218697879, -0.00397246564, 0.000645525695, 0.00994632579, 0.0143251354, -0.00454862462, 0.00593443913, -0.00610122224, -0.0100797527, 0.0156836584, -0.00767201371, 0.0038845255, 0.0259332266, 0.00571610499, 0.0112442, 0.0274373051, 0.0110137369, 0.0274615642, 0.0132213365, -0.00293083047, 0.00523091853, -0.00896382332, -0.0163750499, -0.0336719528, 0.00321436161, 0.0174909793, 0.00533705298, 0.0111714229, 0.0178548694, -0.00297934934, -0.0273160078, 0.00551899802, 0.0140704131, 0.0085635446, 0.0060011521, -0.00128043792, 0.00948539935, -0.0106801707, -0.0213846, -0.0153318979, 0.0221851598, 0.0273402669, -0.00104163506, 0.00492161186, 0.0085635446, -0.0186069086, 0.00284289056, 0.00737483706, -0.00988567807, -0.0149194896, 0.000447660481, -0.00604967121, 0.00816933, -0.0128210569, -0.0149680078]
02 Jun, 2021
unordered_multiset swap() function in C++ STL 02 Jun, 2021 The unordered_multiset::swap() is a built-in function in C++ STL which swaps the contents of two unordered_multiset containers. Note: Both of the containers should have the same type of elements. Sizes of the containers may differ. Syntax: unordered_multiset1.swap(unordered_multiset2); Parameters: The function accepts only one compulsory parameter i.e unordered_multiset2 with which the swapping of unordered_multiset1 is to be done. Return Value: It does not return any value. Below programs illustrate the above function. Program 1: C++ // C++ program to illustrate // unordered_multiset::swap() #include <iostream> #include <string> #include <unordered_set> using namespace std; // Function to display the contents of multiset s. void display(unordered_multiset<int> s) { for (auto it = s.begin(); it != s.end(); it++) cout << *it<<" "; cout<<"\n"; } int main() { // Declaration unordered_multiset<int> s1, s2; // initializing both multisets(sizes are different) s1 = { 1, 2, 3, 4 }; s2 = { 10, 20, 30, 40, 50 }; // displaying initial values cout << "Initial values of s1 are: \n"; display(s1); cout << endl; cout << "Initial values of s2 are: \n"; display(s2); cout << endl; // swapping the values s1.swap(s2); // display final values cout << "Final values of s1 are: \n"; display(s1); cout << endl; cout << "Final values of s2 are: \n"; display(s2); return 0; } Output: Initial values of s1 are: 4 3 2 1 Initial values of s2 are: 50 40 30 20 10 Final values of s1 are: 50 40 30 20 10 Final values of s2 are: 4 3 2 1 Program 2: C++ // C++ program to illustrate // unordered_multiset::swap() #include <iostream> #include <string> #include <unordered_set> using namespace std; // Function to display the contents of multiset s void display(unordered_multiset<string> s) { for (auto it = s.begin(); it != s.end(); it++) cout << *it << " "; cout<<endl; } int main() { // Declaration unordered_multiset<string> s1, s2; // Initializing both multisets(sizes are different) s1 = { "Geeks", "for", "Geeks" }; s2 = { "Computer", "Science", "Portal", "for", "Geeks" }; // Displaying initial values cout << "Initial values of s1 are: \n"; display(s1); cout << endl; cout << "Initial values of s2 are: \n"; display(s2); cout << endl; // Swapping s1.swap(s2); // Display final values cout << "Final values of s1 are: \n"; display(s1); cout << endl; cout << "Final values of s2 are: \n"; display(s2); return 0; } Output: Initial values of s1 are: for Geeks Geeks Initial values of s2 are: Geeks for Portal Science Computer Final values of s1 are: Geeks for Portal Science Computer Final values of s2 are: for Geeks Geeks Learn C++ Online – Master everything from basics to advanced concepts. Apply your knowledge with practical exercises and boost your skills. Take the Three 90 Challenge: finish 90% in 90 days for a 90% refund. Start now and level up your C++ programming!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum/Algorithm for Dynamic Time out timer Calculation/Difference between Round trip time (RTT) and Time to live (TTL)/Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms/Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm/Round Robin Scheduling Algorithm with Different Arrival Time/Selfish Round Robin CPU Scheduling/Find the order of execution of given N processes in Round Robin Scheduling/Calculate server loads using Round Robin Scheduling/set::lower_bound() Function in C++ STL/Implementation of lower_bound() and upper_bound() in List of Pairs in C++/Difference between std::set::lower_bound and std::lower_bound in C++/Difference between std::set vs std::vector in C++ STL/std::minmax() and std::minmax_element() in C++ STL/std::rotate vs std::rotate_copy in C++ STL/std::bitset::to_ullong and std::bitset::to_ulong in C++ STL/std::upper_bound and std::lower_bound for Vector in C++ STL/std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++/std::string::append vs std::string::push_back() vs Operator += in C++/Vector push_back() in C++ STL/vector :: cbegin() and vector :: cend() in C++ STL/unordered_multiset cend() function in C++ STL/unordered_multiset bucket() function in C++ STL/unordered_multiset emplace_hint() function in C++ STL/unordered_multiset end() function in C++ STL/unordered_multiset size() in C++ STL/unordered_multiset emplace() function in C++ STL/unordered_multiset find() function in C++STL/unordered_multiset erase() function in C++ STL/unordered_multiset clear() function in C++ STL/unordered_multiset swap() function in C++ STL
https://www.geeksforgeeks.org/unordered_multiset-swap-function-in-c-stl/?ref=next_article
PHP
unordered_multiset swap() function in C++ STL
unordered_multiset clear() function in C++ STL, What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, jQWidgets jqxTreeMap width Property, Round Robin Scheduling Algorithm with Different Arrival Time, Difference between Flow and TypeScript, unordered_multiset emplace() function in C++ STL, jQWidgets jqxTree destroy() Method, jQWidgets jqxTree collapseAll() Method, Find the order of execution of given N processes in Round Robin Scheduling, jQWidgets jqxScrollView buttonsOffset Property, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Vector push_back() in C++ STL, jQWidgets jqxListBox enableHover Property, Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm, std::rotate vs std::rotate_copy in C++ STL, Selfish Round Robin CPU Scheduling, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxSlider buttonsPosition Property, std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++, std::upper_bound and std::lower_bound for Vector in C++ STL, Difference between Round trip time (RTT) and Time to live (TTL), jQWidgets jqxSlider rtl Property, Difference between std::set::lower_bound and std::lower_bound in C++, jQWidgets jqxTooltip opacity Property, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, unordered_multiset erase() function in C++ STL, jQWidgets jqxToolBar height Property, PHP, std::minmax() and std::minmax_element() in C++ STL, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, Node.js date-and-time Date.transform() Method, unordered_multiset size() in C++ STL, TypeScript Optional Parameters, jQWidgets jqxToolBar theme Property, Difference between std::set vs std::vector in C++ STL, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, Steps to Diagnose and Resolve a Slow Network, How to use Optional Chaining with Arrays and Functions in TypeScript ?, Calculate server loads using Round Robin Scheduling, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, jQWidgets jqxScrollView showButtons Property, Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms, jQWidgets jqxScrollView disabled Property, jQWidgets jqxSplitter destroy() Method, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, set::lower_bound() Function in C++ STL, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, jQWidgets jqxTree collapseItem() Method, std::string::append vs std::string::push_back() vs Operator += in C++, unordered_multiset swap() function in C++ STL, unordered_multiset cend() function in C++ STL, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), jQWidgets jqxSortable opacity Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, vector :: cbegin() and vector :: cend() in C++ STL, jQWidgets jqxSlider height Property, jQWidgets jqxSwitchButton onLabel Property, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, jQWidgets jqxToolBar tools Property, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTree width Property, Implementation of lower_bound() and upper_bound() in List of Pairs in C++, jQWidgets jqxTree clear() Method, TLS Handshake?, Algorithm for Dynamic Time out timer Calculation, Adhoc TCP, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, jQWidgets jqxTabs position Property, Differences between Wireless Adhoc Network and Wireless Sensor Network, jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, std::bitset::to_ullong and std::bitset::to_ulong in C++ STL, unordered_multiset emplace_hint() function in C++ STL, unordered_multiset find() function in C++STL, unordered_multiset bucket() function in C++ STL, Impact of Three-way Handshake and Slow Start Algorithm, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, unordered_multiset end() function in C++ STL, How to Sort an Array Having Optional Properties in TypeScript ?
GeeksforGeeks
[-0.030859923, -0.00577757088, -0.0159567706, 0.0551208667, 0.0383461565, -0.00373271969, -0.0164835788, 0.012698872, -0.00982221682, 0.01411987, -0.0438360609, 0.014653611, 0.00431844825, -0.0292240418, -0.00542405434, -0.0363775566, -0.020379195, 0.0209891833, -0.0264374986, -0.0255086515, 0.0213357694, 0.00759021, -0.0427824445, -0.00043539732, -0.0349634886, 0.0161231309, -0.0212803148, 0.0124839898, 0.00360448333, 0.0018715586, 0.00352996751, -0.0007993115, -0.00203445368, 0.00374658313, -0.0133157931, 0.0171906129, 0.0221537091, 0.0535404421, -0.0171906129, -0.00772884395, -0.013232613, 0.0108619723, 0.0379579812, -0.00772191258, -0.0186739955, 0.029529037, -0.000923648826, -0.0291408617, -0.0152497375, 0.0120057026, 0.0393443219, 0.0398156792, 0.0271445327, 0.0031677864, 0.0141545292, 0.00817247294, -0.0110491281, 0.0127959158, -0.0140436217, -0.0214189496, -0.0249818414, -0.0460542068, 0.0431151651, -0.034852583, -0.00994005613, -0.0187017228, -0.0529581793, 0.0398711301, 0.0197969321, -0.00706340093, -0.0261463672, 0.0526531823, -0.00109174254, -0.021710081, -0.0245243497, -0.0164142624, -0.00478287227, -0.0429488048, -0.0386788771, 0.0382352509, -0.0291963145, 0.00786747783, 0.00122691062, -0.0202266965, 0.037514355, 0.0109035624, 0.0175926518, -0.0242054928, 0.0442796908, 0.0127196675, -0.0520154685, -0.028419964, 0.0490487, 0.0241639018, -0.0377638936, 0.0211416818, 0.0678751916, 0.00914291106, -0.0204762388, 0.045111496, 0.00497002807, -0.00351437135, 0.0151249664, -0.0143486159, -0.00516758161, 0.0365439169, 0.0268534012, 0.0224309769, 0.00613455335, 0.0168994814, 0.0417565517, 0.00141666597, -0.0220843926, 0.0557863116, -0.0195612535, -0.0349357612, -0.0008668956, -0.0272831656, 0.0175510608, 0.00817247294, 0.0273524839, 0.0314976387, 0.01963057, -0.000342036015, -0.0524036437, -0.00801997539, 0.00216615596, 0.0187710393, 0.0223062057, 0.00296503422, -0.0134059051, -0.0124077406, -0.0445846878, -0.0532354452, -0.0213080421, 0.0111600347, -0.00336880563, 0.0461373851, -0.0257720556, -0.0347416736, -0.0458601192, 0.0135098808, 0.0230271034, 0.00975983217, 0.00687277922, -0.0173431095, -0.00317645096, 0.026908854, 0.0233043712, 0.016386535, -0.0138495341, 0.000596559315, 0.024954116, 0.0105084553, 0.00659897737, 0.00258205784, 0.0321908072, -0.000317991682, 0.0125879645, -0.0408138409, 0.0220289379, -0.0138633978, 0.0262018219, -0.015721092, -0.0132949986, -0.0101133483, 0.021044638, 0.00718124, -0.0306658354, 0.0486050732, -0.0075971419, 0.010432207, 0.0149031524, -0.00633210689, 0.00626972131, -0.0383738838, 0.0146258846, 0.0187987667, 0.0179669634, -0.00199806225, 6.41723673e-05, -0.00588154653, 0.03019448, 0.0289190467, -0.0139119197, 0.00697328895, -5.02277398e-05, -0.0123245604, 0.0151804201, 0.0125186481, -0.00458531873, -0.0075624832, 0.0399820395, 0.0481059887, 0.0323848948, 0.0309985559, -0.0284754187, 0.0151665565, 0.0120403608, 0.0504904948, 0.0124493307, -0.0146120209, 0.00127456605, 0.00656431867, 0.0182996839, -0.005084401, -0.0178421922, -0.00654005772, 0.0237895902, -0.0192562584, -0.0260215979, 0.0156656392, 0.0253700167, 0.0187433138, -0.0048625865, -0.00146085548, -0.0410911106, 0.0232073274, -0.00228919345, -0.0244550332, 0.00268949918, -0.0438360609, 0.0132187493, -0.0160399508, -0.0566181168, -0.0376252607, 0.0403147601, 0.0179253723, -0.00666136248, 0.0064291507, 0.0332167, 0.0383738838, -0.0271583963, -0.0110214008, 0.0294735823, -0.0121304728, -0.0381243415, 0.00703567406, -0.00109260902, -0.00172512652, 0.00745850801, 0.0532631725, -0.0116175273, -0.0271999855, 0.0137732858, 0.0255918317, 0.0126018282, -0.0185630899, 0.00546911033, -0.00213323021, 0.0209198669, 0.0282951947, -0.0100440318, 0.0146120209, -0.00410703151, 0.0334939696, -0.0163449459, -0.0207950957, -0.0238589067, -0.0323571712, 0.0265622698, 0.0515441112, -0.0156656392, 0.0164003987, 0.0278931558, 0.0131979547, 0.0221537091, -0.0150417862, -0.0443906, -0.0425051749, -0.00352303591, -0.0182442311, -0.0243579894, -0.000958307355, 0.0315530933, 0.0120958146, -0.00374311721, -0.00862303283, -0.00796452165, -0.0321908072, 0.0305272, -0.0165113062, -0.00131009112, -0.0110283326, 0.0283783749, -0.0372370854, -0.00420407532, -0.00039748961, -0.0213219058, -0.0138010122, -0.00238103862, -0.0259938706, 0.0145565672, -0.0134336324, 0.0265345424, 0.0412020162, 0.00873394, -0.0423665419, -0.0451669507, -0.0169549342, -0.0163172185, -0.032856252, 0.0347139463, -0.0135722663, -0.0234845951, -0.00594046572, 0.0389561467, 0.00597859034, -0.00149291463, -0.0435865223, 0.00872007664, -0.0349357612, -0.0425883569, 0.0417288281, -0.00343638961, -0.0172876567, 0.0211278182, -0.000104517021, -0.00795759, -0.0203514677, -0.0377361663, -0.00812395103, 0.01109765, 0.041784279, 0.0421724543, -0.00667522568, -0.0234707315, 0.0696497113, -0.0328285247, -0.0507400334, -0.0383738838, 0.0260493234, -0.0116105955, 0.000857797742, 0.0174262915, -0.0252036564, 0.0153467814, -0.00661284057, -0.015582459, 0.0240391307, -0.0251620673, -0.00577063905, -0.00168353633, 0.0132949986, 0.0385957, 0.00521610351, 0.00429072138, -0.0010709475, 0.012123541, 0.0303331129, 0.00110040721, -0.0329671577, 0.0193117131, 0.00498042535, 0.031664, -0.0274218, 0.00831110682, -0.0202544238, 0.0154160978, -0.00525769359, -0.0134128369, 0.0256334227, -0.00660244282, -0.0252868365, 0.00801997539, -0.0288081393, -0.0263543185, -0.0429488048, 0.0211971346, -0.0131563637, -0.0167747103, -0.0132464767, 0.0340485051, 0.0212525874, -0.0531245396, -0.000644214742, 0.0162617657, 0.0212109983, 0.0193117131, -0.00434964104, 0.0113263959, 0.00284372945, -0.0116729811, 0.00201192545, -0.001887155, -0.0226666555, 0.0205871444, 0.00461997697, -0.0182026401, 0.00205004984, -0.0186878592, 0.0135376072, -0.00805463362, 0.0107372012, -0.00567013, 0.00685891602, -0.0405088477, -0.0145981573, -0.0336048752, -0.0310262833, 0.00659204554, -0.0567844771, -0.0197830684, -0.00916370563, 0.00694556208, -0.0163172185, -0.021890305, 0.00283679762, -0.0278515648, 0.0214882661, 0.00453679683, -0.00339306658, -0.0153467814, 0.0252452474, 0.00830417499, 0.0238589067, -0.0158458631, 0.0541504286, -0.00346931512, -0.0227637, -0.0127959158, -0.0321353562, 0.00750703, 0.0249402523, 0.00695249392, 0.0179946907, 0.00447441172, 0.0216130372, -0.0146674747, -0.00332374964, 0.0127959158, 0.0122691067, -0.0026548407, 0.014917016, -0.026950445, -0.0467196479, 0.0198801123, -0.0298894849, 0.00434617512, -0.040536575, 0.0551763214, 0.0280456524, 0.00723669352, -0.0483000763, -0.00165321014, 0.0223616604, -0.029085407, -0.0118254777, -0.00111946929, 0.0512668453, -0.0179946907, 0.0339930505, -0.0371539034, 0.0201435164, 0.0150001962, -0.0473573655, 0.0326344371, -0.0121096773, 0.0427547172, 0.0286695063, 0.0137594221, 0.0288635939, 0.0078813415, -0.0168440286, 0.0111184446, 0.0205455553, -0.000174592162, 0.0422833636, -0.0276852045, 0.00188195624, -0.0300558452, -0.0171767492, 0.0211416818, -0.00132222148, 0.0195473898, 0.00575677585, 0.000501681701, -0.0161369946, 0.00183170137, -0.0222784802, 0.0371816307, -0.000666309556, -0.00961426646, -0.00890723243, 0.0125948964, -0.000948776258, 0.0103420941, -0.0164558534, -0.0470246449, -0.0226112, -0.00414862158, 0.0225696117, -0.0140297581, -0.0317194536, 0.00783282, 0.0250372961, -0.0445015058, 0.00058139622, -0.0202128328, 0.000240010064, 0.0530413575, -0.0134336324, -0.0268949904, 0.0247184373, -0.00184209889, -0.0641598, -0.0241916291, 0.0132672712, -0.0152497375, -0.0171212964, 0.0160954036, 0.0262711383, 0.0136554465, -0.000951375638, -0.0316362716, -0.000744291174, 0.0225973371, -0.000308027375, -0.00921915937, 0.0156240491, 0.0198107958, 0.0102797095, 0.00979449, 0.0395938642, -0.0120888827, 0.0262988657, -0.00625932403, -0.0173847, 0.0196444336, -0.04333698, -0.0213496312, -0.00158909196, -0.0337712355, 0.0255918317, 0.0055107004, -0.0367934555, 0.00831803866, -0.0237202737, -0.0175510608, 0.02469071, 0.007860546, -0.00480713323, 0.00329948869, -0.000896788493, -0.01109765, 0.00343465665, 0.0111323083, -0.0143902069, -0.0236509554, 0.00914984196, 0.0104945917, 0.0444183238, -0.0298894849, -0.00729214726, -0.0232905075, 0.0134960171, -0.0220012125, -0.0168578904, -0.00300662429, -0.031608548, -0.000530708174, 0.0146674747, 0.021890305, 0.00925381761, 0.00655045547, -0.0200742, 0.00695596, -0.00238797022, -0.00421793852, -0.00518491073, 0.0280595161, -0.0106748156, 0.0271168053, 0.00567013, -0.023845043, 0.0425606295, 0.00660244282, 0.0230271034, -0.017939236, -0.0309431031, 0.00194607442, -0.0242332183, -0.00408277055, 0.00430111913, 6.70966765e-05, -0.00556962, -0.0451392233, 0.00945483707, 0.00394413667, 0.00570478803, 0.0461096615, 0.0127681894, 0.00651926268, 0.00806849729, 0.0197553411, -0.0161785856, 0.00594393164, -0.0141337337, -0.000550636789, 0.000887257454, 0.0377916209, 0.015832, 0.0111392401, -0.0253007, -0.0100371, -0.00132742035, 0.0304717477, 0.0342703201, 0.0102311876, -0.026950445, -0.0475791804, -0.0183135476, 0.022555748, -0.0119017269, 0.00630438, 0.0104183434, 0.0119155897, 0.0411742888, 0.001887155, -0.0194087569, -0.00520224, -0.0356843844, 0.000249324541, 0.0201712437, 0.0102173239, 0.028641779, -0.020781232, 0.0106401574, -0.0154854152, -0.0106262937, -0.00324923382, -0.0144872507, 0.0150556499, -0.0186185427, 0.0254531968, 0.00574984401, 0.00901814, -0.00283333194, -9.44444e-05, 0.0492982417, -0.0183412749, 0.000339869846, 0.0356843844, 0.0566735677, -0.00824178942, -0.00245208852, -0.0135791982, 0.0501854979, 0.0139743043, 0.0155131416, -0.0491596088, 0.0298340321, 0.0178699195, 0.0101549383, -0.00980142225, -0.0296399444, -0.0239836778, -0.00061518827, -0.000770718267, 0.00259245536, -0.0264097713, -0.0289467741, -0.00352650182, 0.00390601228, 0.0183967277, -0.00876166765, -0.0358507447, -0.00667176, 0.00807542913, -0.00699408399, -0.0141822556, -0.00781895593, 0.00712578651, 0.0194364823, -0.0164142624, -0.0252313837, -0.0101757338, 0.0222368892, -0.000704433885, -0.0289745014, -0.0111392401, -0.0169272088, 0.0138703296, -0.00433231192, 0.00543791754, -0.000807976117, -0.00541712251, -0.00822792668, 0.0114927562, -0.0471355505, 0.00367380027, -0.0104391379, 0.0168717541, 0.0365993679, 0.00368419779, -0.0296399444, 0.031664, 0.0289190467, -0.00406890735, -0.0297508501, 0.0235677753, -0.0137663539, -0.0178837832, -0.0261740945, 0.0108481087, 0.0344366804, 0.000393157301, 0.00199459633, -0.0104599334, -0.00777043449, 0.0078813415, 0.0024486226, -0.0160538144, 0.0413961038, 0.0123661505, -0.00640488975, -0.0204485115, -0.0174124278, -0.000407670537, -0.0431151651, -0.0257997829, -0.0094409734, 0.00328042638, 0.00784668326, 0.0297508501, -0.0213357694, -0.0220428016, -0.0397047698, -0.00919836387, -0.00851905812, -0.000604790694, 0.0202682875, 0.0211971346, 0.00607563416, -0.0354348421, 0.0183551386, 0.00801997539, -0.0470246449, -0.0332721546, -0.0176065154, 0.00334281172, 0.0256056953, -0.0191037618, 0.0207257792, 0.000174050627, -0.0134752225, 0.0216823537, 0.00312966201, -0.0379302539, 0.027574297, 0.037514355, 0.0558694899, 0.0235123225, -0.0289467741, 0.000440812728, -0.0184383187, 0.0177312847, 0.00551763223, 0.0265899971, -0.00996778253, 0.0263265911, 0.00675147446, 0.0122621749, 0.0440024249, -0.0380411632, 0.0036945953, -0.029972665, 0.00620387029, 0.00532354461, 0.009413247, 0.0195058, -0.0242748093, 0.013322725, 0.00358022237, 0.0218209885, -0.0293904021, -0.0075971419, 0.00697675487, -0.00111687, 0.0285863262, -0.0173015203, 0.0111461719, 0.0178144649, 0.012879096, 0.00602018042, 0.0118947951, 0.0194087569, 0.00607216824, 0.0208505504, -0.0153883714, 0.00263231248, 0.013634651, 0.00217482052, 0.0160676781, 0.0158458631, -0.0392611399, -0.0089210961, -0.0320521742, -0.0380411632, -0.0342425928, 0.000324706751, 0.00724362535, 0.0102173239, 0.0105292499, 0.00323710334, -0.0395661369, -0.00722976169, 0.0252175201, -0.00325789838, 0.0254670605, -0.0373757184, 0.00591273885, -0.00946870074, 0.0450005867, 0.00338266906, 0.013717832, 0.00487645, 0.00262711383, 0.0115898, -0.00279520755, 0.0388175137, -0.00377777591, 0.0357675664, -0.0168856177, -0.0313867331, 0.0172460657, 0.0205316916, 0.00289745, 0.00853985269, -0.0190205816, -0.0112986686, -0.00939245149, -0.00468582846, 0.00757634686, 0.00394413667, 0.0232073274, 0.0231657363, -0.0111323083, -0.0124701262, 0.0371816307, 0.0230548307, 0.0010111616, -0.0133435205, -0.00935779326, -0.0113749178, -0.00806849729, -0.0385402441, 0.0238311794, 0.00631824322, 0.0156517755, 0.0365716442, 0.00734760053, 0.00567359524, 0.0193533022, -0.00555575639, 0.025577968, -0.0383461565, -0.0246491209, 3.17612612e-05, 0.0376252607, 0.023886634, 0.0120750191, 0.0163449459, 0.0311094634, 0.0182165038, 0.0257304665, -0.000126720115, -0.0178837832, 0.00025473992, -0.0228191521, 0.00815167744, -0.0159706343, -0.03277307, 0.0129484134, -0.00014361614, -0.0158597268, 0.00255433097, -0.0216546264, -0.0176203772, 0.0258136466, -0.0151388301, -0.0166638047, -0.0459155738, -0.04938142, 0.00206391327, 0.0245936662, 0.0170797054, -0.0253700167, -0.013364315, -0.0182303675, 0.0124354679, 0.00824178942, -0.0144179333, -0.0301113, -0.00806156546, -0.0225002933, 0.00171732833, -0.00681386, 0.0246213935, -0.0441965126, 0.00386788789, -0.0202544238, -0.0268672649, 0.0162617657, 0.0118462732, 0.000452293345, 0.0385125168, 0.0239559505, 0.0286140516, 0.0366825499, 0.00640142383, 0.0213773586, -0.0230409671, -0.0484109856, 0.00121131435, 0.00348837744, -0.0206980519, -0.000390124682, 0.00198246585, 0.0384847932, 0.0262156837, 0.0177312847, 0.0137039684, 0.0107649285, -4.21317309e-05, -0.00163761387, -0.0304440204, 0.00989153422, -0.0134821543, -0.0183274113, -0.0234984588, 0.0149724688, -0.000668042456, -0.000339869846, -0.0304717477, -0.00719510345, -0.0122691067, -0.00251447363, -0.0623852871, 0.0149447424, -0.0218764413, 0.0162894912, 0.024247082, -0.00324750086, -0.0440856032, 0.0153745078, -0.0548436, 0.00653312588, -0.00435310695, -0.0121512683, -0.049686417, 0.00202059024, -0.00805463362, -0.0447787754, -0.0132187493, -0.0241500381, -0.0125255799, -0.0117145712, -0.0257443283, 0.00208644127, 0.00779122952, 0.00178837823, -0.00322843879, -0.00148425, 0.00643608207, -0.027130669, -0.00722283, -0.00352996751, -0.0252036564, 0.0258691, 0.000788914, -0.0216407627, 0.0433647074, 0.00278481, -0.0300003923, 0.0174817443, -0.0422556363, -0.0160815418, -0.00460611377, 0.00947563257, 0.0108065186, 0.0065851137, 0.0030551462, -0.00171992776, -0.010258914, 0.0155963218, -0.00168266986, -0.0362666473, -0.0279624723, 0.0100093726, -0.00321457535, -0.00256472849, 0.0353516638, -0.0227221083, 0.0199217014, 0.0368766375, 0.0357121117, -0.00962812919, -0.0169133451, -0.0336603299, 0.00229785824, -0.0302499328, -0.0259384159, 0.0101202801, 0.0283367839, -0.0129692079, -0.00332374964, 0.0206010081, -0.0275327079, -0.00717430795, 0.00913597923, -0.0412852, -0.00860917, 0.00339306658, 0.00416595116, 0.0217516702, -0.017980827, -0.0100925537, 0.0587808043, 0.0127751203, -0.0408692956, -0.0309431031, -0.027574297, 0.0104599334, 0.0165113062, 0.0102658458, 0.028641779, 0.0119571807, 0.00672374759, 0.0058746147, -0.0146258846, -0.00448134309, -0.00291131344, 0.0140990755, -0.00988460239, -0.018604679, 0.00152930606, -0.025619559, 0.0297785774, -0.00865076, -0.000885091256, 0.0184105914, -0.00156223157, -0.00933006685, -8.72960809e-05, 0.0015838932, 0.00184209889, -0.0139188506, 0.00838735513, 0.021890305, -0.00940631516, 0.0259106904, 0.00424219947, -0.0106540211, -0.00556615414, -0.0149447424, 0.000260588538, -0.0265345424, 0.0181749146, 0.0215437189, -0.00836656056, -0.0117700249, 0.00383322942, -0.0053547374, 0.0187433138, 0.0220982563, 0.00620387029, 0.0185214989, 0.0359893814, 0.00750009809, 0.0202405602, -0.0198246576, 0.0100509636, 0.00159342424, -0.0160815418, -0.00570132211, 0.00412782654, -0.0116036637, 0.0145427035, -0.0255363788, 0.00596126076, -0.00460264785, 0.0115066199, 0.0349357612, 0.00083440321, -0.0149586061, 0.00344158849, -0.0197830684, -0.00342079322, -0.0327176191, 0.00132655387, -0.000625152607, 0.0282120146, 0.00600631675, 0.0224171132, 0.00905973, 0.0298894849, 0.0437528826, -0.0154854152, -0.0031816496, -0.011853205, 0.0164003987, -0.00174332224, -0.00812395103, 0.00473088445, 0.0069143693, 0.0100024417, 0.0117838876, 0.00558348326, 0.0161369946, 0.0165944863, -0.0147506548, -0.0224032495, 0.0372648127, -0.0145565672, -0.000812308455, -0.0172460657, -0.034547586, 0.00805463362, 0.0215298571, 0.00580876367, 0.0135653345, -0.0187294502, 0.0215298571, -0.0163726732, -0.0491596088, 0.0220150743, -0.00358022237, -0.0201435164, 0.0288635939, -0.00428032409, -0.00104062131, 0.0161092672, 0.0146258846, 0.00599591946, -0.0103559578, 0.0241639018, 0.000573164842, 0.0108273132, 0.00529581774, 0.0236648191, -0.0200742, 0.00927461311, 0.0284476914, 0.00498735718, 0.0292517692, 0.0213357694, 0.00349184312, -0.0353793912, 0.0265484061, -0.0206287354, 0.0124146724, -0.00312273018, 0.0125255799, -0.0293626767, -0.0084012188, 0.00263057975, 0.028503146, -0.000547171, -0.00125723681, -0.0147922449, 0.0143347532, 0.0190344453, -0.0167469848, -0.0327453464, -0.0155547317, 0.00183863309, -0.00750009809, -0.00697328895, 0.0298617575, -0.00101636036, -0.026908854, 0.0115620736, -0.0192285329, -0.0131217055, -0.0364330076, -0.0128305741, 0.00212803157, 0.0186185427, 0.00765259517, 0.0245520771, -0.0142238457, -0.0149724688, 0.0110699227, -0.00576717313, 0.00134908187, -0.00440856, -0.0351853035, -0.0238173176, -0.00301009021, 0.0190898981, -0.0227775611, -0.0165944863, 0.0215714462, 0.0274079368, -0.00251447363, 0.00114286388, -0.0103420941, 0.00890723243, -0.00680346228, 0.00723669352, 0.00878246222, -0.0326067097, -0.0107649285, -0.0142238457, 0.00299969269, 0.0257720556, 0.0150140598, 0.0267702211, 0.0042006094, -0.00608603144, 0.00966278836, 0.0139812361, 0.000553669408, -0.00878939405, -0.00341906049, -0.0114650298, -0.014251573, 0.0031677864, 0.01713516, -0.00355596142, -0.0104807289, -0.0122413803, 0.000583129178, 0.0278238393, 0.00894882344, 0.0136415828, -0.0200464725, -0.0220566653, -0.0129484134, -0.00426992634, 0.00851212628, 0.00489724521, -0.0185908154, 0.0340207778, -0.017273793, -0.0106193628, 0.0314699113, 0.0178144649, -0.0263681822, -0.029972665, -0.00856758, -0.0283367839, 0.00520224, 0.0123522868, 0.0202544238, 0.00335667515, 0.0132603394, 0.00927461311, -0.0302776601, -0.015499278, 0.00337573723, -0.0209891833, 0.0221953, -0.00994698796, -0.000559301465, -0.0507400334, -0.026063187, 0.00567359524, 0.0412020162, 0.0230964199, 0.00232211896, -0.0170797054, 0.000562334084, -0.0206287354, -0.0328285247, -0.00339999818, 0.0206703264, -0.015721092, 0.0134405643, -0.00613455335, 0.012345355, -0.00689704, 0.0219596215, 0.0288913194, 0.016649941, 0.0188958105, -0.00975983217, 0.015804274, 0.00328735821, 0.0177174211, -0.00338786771, 0.0146813383, 0.000986034167, -0.0115274154, -0.0167053938, 0.019006718, -0.00204311823, -0.0086368965, 0.00455066, -0.0213912223, 0.00531661278, 0.0293626767, 0.0189789906, -0.0165390335, -0.0152636, 0.0389561467, -0.0126434183, -0.000431714871, -0.00598552171, 0.00103628892, 0.0230271034, -0.0184799079, -0.00690050609, 0.0231657363, 0.0117422976, 0.0031036681, 0.032856252, -0.0265345424, -0.01811946, -0.0209614579, -0.0167469848, -0.012033429, 0.0134960171, 0.0169687979, -0.00184729765, 0.00700794719, 0.0319412686, 0.0381520689, 0.00237237383, 0.0136554465, -0.0114927562, 0.015540869, 0.0243857168, 0.0024711506, 0.00673067942, 0.0039649317, -0.0244827606, 0.0246213935, 0.00779122952, -0.00315738888, -0.0122413803, 0.0126711456, 0.0153883714, -0.0342148654, -0.00963506103, -0.0114788935, -0.00659551146, -0.0208366867, -0.0111184446, 0.00719510345, 0.0274495278, -0.000177083246, -0.00426992634, -0.0259106904, -0.0131286373, 0.00707033277, -0.000914984208, -0.004484809, 0.000504281081, 0.000783715164, 0.00065028, 0.019048309, 0.0180362798, -0.00857451092, -0.0186324064, -0.0385402441, -0.0065712505, -0.00195127318, -0.00678266725, 0.0407861136, -0.0180362798, -0.0155270053, -0.01007869, 0.00363567588, -0.0189512651, -0.0198523849, 0.0301390253, 0.00964892469, -0.00123730826, 0.00942711066, 0.0130870473, -0.0331889726, 0.0121166091, -0.0203237403, -0.00562160788, -0.00800611172, -0.0133851105, 0.0281704236, -0.00305687916, -0.00860223826, -0.0159706343, -0.0227637, 0.0120750191, 0.0203237403, 0.0243579894, -0.00736839557, 0.00510866195, 0.0100648263, -0.0176203772, 0.00348664448, 0.0153883714, 0.0288081393, -0.00231172144, -0.01407828, 0.0269781724, -0.00336707267, -0.00749316625, -0.0151665565, 0.0174124278, 0.0199355651, 0.0181333236, 0.0030551462, 0.0145565672, 0.0096766511, 0.00375351496, -0.00205524871, -0.0185492262, -0.0335494205, -0.0338821448, 0.0333276093, 0.00936472509, -0.0252175201, 0.00393373892, -0.018604679, -0.0117769558, 0.00671681622, -0.00410356559, -0.00968358293, -0.0162063111, 0.00978062674, 0.0185769517, -0.00611029239, -0.028017927, 0.0171074327, -0.0143347532, 0.0146813383, 0.0233182348, 0.00643954799, 0.0207673702, -0.00971131, -0.00465810159, -0.00354729686, -0.00297196582, -0.00286279153, 0.00173032528, 0.0151249664, -0.00449174084, 0.0194780733, -0.00991232879, 0.0168994814, 0.0220150743, 0.0263127275, -0.0163726732, -0.00159602368, 0.0126364864, -0.00271202717, -0.0161508583, -0.00738919061, 0.000346151704, -0.0397879519, -0.0210307743, -0.00522303488, 0.00587808061, 0.00750009809, 0.0128236422, 0.00727135176, -0.0293904021, -0.0114234397, 0.0194642097, -0.0268256739, -0.00640142383, -0.0342148654, 0.0193117131, -0.00916370563, 0.0121374046, 0.0103351632, 0.00644648, 0.0151388301, -0.0371539034, 0.00740998611, 0.0217793975, -0.00999551, 0.0178144649, -0.0126919402, -0.0117353657, -0.0435865223, -0.0132880667, -0.0168301649, -0.0321630836, 0.00545178121, 0.0123730823, 0.0143902069, -0.0115343463, 0.0447233208, -0.00472395262, -0.00517451297, -0.000898521452, 0.0104460698, 0.0510727577, 0.0139465779, 0.000681905891, -0.0141753238, -0.00962119829, -0.010744133, -0.00716737658, 0.00374658313, 0.00914984196, 0.0132811349, -0.00249714451, 0.00498735718, -0.00771498075, 0.000339869846, 0.0223062057, -0.0276297517, 0.0150833763, -0.0131840911, 0.00134648243, 0.0188542213, -0.0273663457, -0.0188403577, 0.00905973, 0.0302222073, -0.00428725546, 0.0226250645, 0.00356635894, 0.00229092641, 0.00308287307, -0.0384016111, -0.0353516638, -0.0248570722, 0.0189789906, -0.0288635939, -0.00127369969, 0.000875560218, 0.00826258492, -0.016428126, 0.0025837908, -0.0161508583, 0.00323537039, 0.000749056693, 0.0203237403, 0.0152081465, 0.000502548181, 0.00407930464, 0.0391779616, -0.00384016102, -0.00130402588, -0.0126572819, 0.0116383219, -0.00175978499, 0.00359062, 0.00398572674, 0.0244550332, 0.00441202614, 0.0341871381, -0.00177364843, -0.00397532899, -0.00765259517, 0.00315912161, 0.00432538, -0.00276574772, 0.0275604334, 0.00507746916, 0.0030482146, 0.0194087569, 0.00747930305, 0.026243411, -0.00951722264, 0.0107372012, -0.01260876, 0.0226389281, -0.00535127148, 0.00134821539, 0.0221537091, -0.0194226205, 0.00373618561, -0.00832497049, 0.00771498075, -0.0219041687, -0.0126780765, 0.0294735823, 0.0246629845, 0.0167469848, 0.00199286337, -0.000957440876, -0.0158597268, 0.00287492201, 0.00829724316, -0.000241743, 0.0373757184, -0.00428725546, 0.00836656056, -0.0356012061, 0.0174678806, 0.00899734534, 0.0174678806, 0.00802690722, -0.00191834767, 0.0242054928, 0.0175371971, 0.00287665497, 0.00734066917, 0.0168717541, 0.0107857231, 0.000538073131, -0.0201435164, -0.0245382134, -0.0052750227, -0.00604097545, 0.00938552, 0.0151665565, -0.00892802794, 0.00450213812, -0.00860917, 0.0132118175, 0.00367380027, 0.0132672712, -0.0130662518, 0.012920686, 0.000983434729, 0.0165806226, 0.00848439895, 0.00123990758, -0.00966971926, -0.0240114052, 0.0184383187, 0.0146674747, -0.0167608466, -0.0026843003, 0.0276852045, -0.00692823296, 0.0350466706, 0.0133989733, -0.0274633896, 0.00695596, -0.0160676781, 0.005638937, 0.0230548307, -0.00819326751, 0.00753475633, -0.0116591174, 0.00855371635, 0.0119710434, 0.00220774603, 0.00204138528, -6.88837536e-05, 0.00614841655, 0.0290299542, -0.00748623442, 0.015942907, -0.0119571807, 0.0064430139, 0.00981528498, 0.00676187221, -0.00845667254, -0.0135306763, 0.00157002977, 0.00632517505, 0.00549337128, 0.00533740781, -0.00333588, 0.00783975143, -0.00829724316, 0.0222784802, -0.00664403336, 0.00913597923, -0.00163241511, 0.0151526937, -0.011853205, 0.005084401, 0.0013629453, -0.00644648, 0.00258205784, 0.0235261861, -0.0120195653, 0.000804510259, 0.0178421922, 0.000934046402, 0.0116868438, -0.0114095761, 0.015984498, 0.00404811185, -0.000228096207, -0.0178837832, -0.0103767533, -0.00617960934, 0.00733373733, -8.44259266e-05, 0.00404811185, 0.00337573723, -0.00582262687, -0.0170103889, 0.0451392233, 0.00248501403, 0.015499278, 0.0160676781, 0.00229785824, -0.0100509636, -0.00336014107, 0.00686238194, -0.0221259817, -0.0184937716, -0.0147367911, -0.000335537537, 0.0137732858, 0.0243302621, -0.0239143614, -0.000844367547, 0.00973903667, -0.00408277055, 0.00603750953, -0.0210169107, -0.00334627763, 0.00689010834, -0.0145704309, -0.000309760275, -0.00817940477, -0.00290264888, -0.00106401579, -0.00572904898, -0.00301528885, 0.014431797, 0.00206911215, 0.00686584739, -0.0140921436, -0.0172460657, -0.00520917168, -0.00936472509, 0.00344158849, -0.00651233084, 0.0021713546, 0.0148615623, 0.0174262915, -0.00613108743, -0.0219180305, -0.00261844927, -0.00900427625, 0.0110283326, -0.021710081, 0.00593353389, -0.017495608, 0.00487645, -0.0045783869, -0.00727135176, 0.00690397201, 0.0113610541, 0.00357675646, -0.00616921205, 0.00753475633, -0.00716044474, -0.0121166091, 0.0250927489, 0.00158822548, 0.000551936508, -0.00166447414, 0.0110283326, -0.00222507538, 0.00245902012, 0.00102329208, 0.00690397201, 0.0179669634, -0.0124701262, 0.00832497049, 0.00695249392, -0.0274772532, 0.00111427053, 0.0108411768, -0.00512599107, 0.00851212628, 0.000840035267, -0.00550376857, 0.000955708, 0.000128669664, 0.0183135476, -0.0173708368, -0.0123522868, 0.00287665497, 0.00853985269, -0.0340485051, -0.00717430795, 0.0204207841, 0.000337487087, 0.0278099757, 0.0128444377, 0.00389561476, -0.0106401574, -0.0113402596, -0.00502201589, 0.00578450272, 0.0115551418, 0.00952415448, -0.022555748, -0.00573598081, -0.0213080421, -7.99853078e-05, 0.00361834676, -0.0141961193, 0.0068207914, 0.009725173, 0.0133365886, 0.00843587704, -0.0109520843, 0.0100371, -0.000626885507, 0.0101895975, -0.00914291106, 0.0277822483, -0.00334107876, 0.0047204867, -0.0213912223, -0.0229439232, -0.00503587909, 0.00971131, 0.0151249664, 0.00918450113, -0.00631824322, 0.00953801721, 0.00586075149, -0.00230825576, -0.0194642097, 0.00923302304, -0.0275881607, 0.0106470892, 0.00315912161, 0.00401345361, 0.00955188088, 0.0185630899, -0.0195612535, -0.00292690983, 0.0032388363, 0.000329688919, -0.00327869342, -0.011458098, -0.0408692956, 0.00273108925, -0.0175510608, -0.00479326956, 0.0140921436, 0.00151024386, 0.00648460397, -1.10473948e-05, 0.00985687599, -0.00879632588, -0.000895055593, -0.000385792344, 0.0119502489, 0.0230132397, -0.00250061043, -0.00795759, 0.0115898, -0.0150140598, -0.007104991, 0.00777736586, -0.00525769359, 0.00616228, 0.034325771, -0.00242436165, -0.0124008087, -0.00425952906, -0.00995392, 0.00968358293, 0.0137524903, -0.00893496, 0.01963057, 0.0255086515, -0.00830417499, -0.0195612535, -0.00367033458, -0.00968358293, -0.0135584027, -0.00129796064, -0.00490417704, -0.017495608, 0.0023775727, -0.00227186433, -0.0137802167, 0.0143070258, 0.00823485851, 0.0132395448, 0.0151249664, -0.0158735905, 0.0119502489, -0.0191176254, -0.0221814364, 0.0037812416, 0.0298617575, 0.017454017, 0.0110907182, -0.0164835788, 0.0101618702, -0.00478633819, 0.00472395262, 0.00248501403, 0.00831803866, 0.00923302304, -0.0144040696, 0.0094409734, 0.0130593209, -0.00522303488, 0.0191592146, 0.00572904898, -0.0152081465, -0.0141545292, 0.0246629845, -0.0130662518, 0.0135653345, 0.0106540211, -0.0250650235, 0.00152324082, -0.0131355692, 0.00980835408, 0.0124562625, -0.000881192216, 0.00172426, 0.00469276, 1.74104771e-05, -0.0102034602, 0.00295290374, 0.00899734534, 0.0140505536, 0.00693863025, -0.00025365685, 0.0152913276, -0.0040446464, 0.0222507529, -0.00939938333, -0.015901316, 0.00161681871, -0.00667176, 0.00722283, 0.00515025202, -0.000971304311, -0.0196582973, -0.0113749178, -0.00658857962, 0.0056528, -0.00440856, -0.0104183434, -0.0220289379, -0.0196582973, -0.0108550405, -0.000476987509, 0.0213773586, 0.00449174084, -0.00760407327, -0.014833835, 0.0048625865, -0.00489724521, 0.0236925464, -0.011367986, -0.00678613316, 0.0127751203, 0.000673674454, 0.0101202801, 0.000591793796, -0.0036945953, 0.0166222136, 0.0096766511, -0.0265206788, 0.00789520517, 0.0329671577, 0.0166915301, -0.00113506569, 0.00237410679, -0.0254809242, -0.00283506489, -0.00949642714, 0.00211416814, -0.00994698796, 0.00656085275, 0.00228919345, 0.000711365603, 0.00637716288, 0.0109035624, -0.0160954036, -0.00189755252, 0.0173431095, -0.0272138491, 0.022555748, 0.00137160986, -0.00480020139, 0.0393165946, -0.00521956896, 0.000196470341, -0.012698872, -0.00535820331, 0.00641875295, -0.00219214964, -0.00545871258, -0.00630438, -0.00361141493, 0.00214536069, 0.00365993683, 0.0049908231, -0.00313659362, 0.00198593177, -0.00496656215, 0.0286972318, 0.025439335, 0.0195335262, 0.0208782759, 0.0191176254, -0.000438863179, 0.0143347532, -0.00625585811, 0.00823485851, 0.00657471642, 0.001609887, -0.0194226205, 0.0122621749, -0.00829724316, 0.0175371971, 0.0133573832, 0.00856758, 0.000334237848, 0.00750703, -0.000103975479, 0.0254531968, 0.0176481046, 0.0145149771, -0.00939245149, -0.00286105857, 0.0118462732, -0.00778429769, 0.000285715971, -0.00958653912, -0.00465810159, 0.0301113, -0.0038159, -0.0117422976, 0.0189651269, -0.0219457578, -0.0315808207, 0.00308287307, -0.00714658154, -0.00613801926, -0.00306554371, 0.0126919402, 0.00141666597, -0.0110629909, 0.00741691748, -0.0105153872, 0.0212803148, 0.000575764221, -0.00266177231, -0.00940631516, -0.0291408617, 0.00727828359, -0.00368419779, 0.00380896847, 0.020337604, -0.0135376072, 0.00097390369, -0.0146674747, -0.0219457578, 0.000508613419, 0.0133712469, -0.0165251698, 0.0202405602, 0.00301182317, -0.00714658154, -0.0108689032, 0.0237757266, 0.0145565672, 0.0103351632, -0.00708419597, 0.00950335898, -0.00199806225, -0.00415208749, 0.0097529, 0.0213219058, -0.00221814355, 0.0143208895, -0.00342945801, 0.0108758351, -0.0149586061, -0.0471632779, -0.019048309, -0.00699755, -0.00872007664, 0.00596819259, -0.000275535, 0.0118462732, 0.00874087214, -0.00267390278, -0.0226112, -0.00783975143, 0.0111738984, -0.00727828359, -0.0130246617, -0.00247288356, -0.00476900861, 0.00462690881, -0.0109174252, -0.00238103862, -0.00200845976, -0.015499278, -0.0121859265, 0.0239420868, 0.010612431, 0.00919143297, -0.000303911656, 0.0166638047, -0.0176481046, -0.0038228319, -0.000977369491, 0.0162340384, 0.0212803148, 0.010258914, -0.0117353657, 0.0147783812, 0.0215437189, -0.0123938769, -0.00950335898, 0.00623852899, -0.0337435082, 0.015540869, -0.000918450067, -0.00878246222, 0.0154854152, -0.0135791982, -0.00260285288, -0.0103975479, 0.00578796864, 0.00923302304, 0.0161092672, -0.00232038624, 0.0214050859, 0.00758327823, 0.0126780765, -0.00974596851, 0.0118324095, -0.000568832504, -0.0127751203, 0.0152774639, -0.0156101855, 0.0324680768, 0.0168440286, -0.00720203482, 0.0181887783, 0.0135861291, -0.00964199286, 0.0298617575, -0.0134613588, 0.0105500454, 0.0148476986, 0.013898056, 0.00341559458, -0.019491937, -0.00556615414, 0.00367033458, 0.022735972, 0.0123592187, -0.0037812416, 0.00897655, -0.0121581992, -0.00894882344, -0.0145288408, -0.00410356559, 0.0200048834, -0.00215055957, 0.0370152704, 0.0130177299, 0.0306103807, -0.0124493307, 0.00847053621, -0.00238623726, -0.0201989692, -0.0174262915, 0.0326344371, 0.000483919226, -0.0139673725, 0.00634597, 0.00262018223, -0.0295013096, 0.00969051477, 0.000757721311, 0.0171628855, 0.00674800854, -0.0029840963, 0.000190188483, 0.00588501245, -0.0135584027, -0.0163726732, -0.0161369946, 0.0248570722, 0.00618654117, -0.00420754123, 0.00196860242, -0.020781232, 0.00108654378, -0.0136485146, 0.0164974425, -0.00770111708, 0.0253700167, -0.0174678806, -0.00502894726, 0.00226839841, 0.0147090647, -0.0217793975, 0.00559388101, -0.0152913276, 0.00176238443, 0.0193810295, 0.0180362798, -0.00805463362, -0.00185769529, 0.00729214726, -0.00669602118, 0.0102242557, 0.00367726618, -0.0267702211, -0.0143070258, 0.0173015203, 0.00164887786, 0.000990366447, -0.0292240418, 0.0144179333, 0.00815860927, 0.0125394426, -0.00621080212, 0.0178144649, 0.00284719514, -0.0146397473, -0.0383184291, 0.00955881272, 0.00347278104, -0.00373965153, 0.027089078, -0.00910132, 0.0118393414, -0.0208921395, -0.000734760077, 0.00274668564, 0.0292794947, 0.00584688783, 0.0188403577, 0.00960733462, 0.0279070195, 0.0279902, 0.0111461719, -0.0236925464, -0.00614148518, -0.0222368892, -0.0104183434, 0.00988460239, -0.0219873488, 0.00238970318, 0.01713516, -0.00256992737, -0.00961426646, -0.00672374759, -0.00269816373, 0.0031192645, 0.0208366867, -0.00170346501, -0.00973210484, 0.018161051, -0.00748623442, -0.0183967277, 0.00453679683, 0.00656085275, -0.0328285247, -0.0122691067, 0.00529235182, -0.00427339226, -0.00646034302, 0.0371261798, 0.0161924474, 0.00554189319, 0.00971131, 0.0202266965, 0.00925381761, 0.00989153422, -0.0225002933, -1.90892479e-05, 0.014209982, 0.0326621644, -0.00856758, 0.0047551454, -0.0164003987, -0.00558694918, -0.00333068124, -0.00534087373, 0.0183412749, 0.012477058, 0.014833835, 0.0113610541, -0.00838735513, -0.00589887565, 0.00227013137, 0.0107857231, 0.00532007869, -0.0103767533, -0.0104044797, 0.0305272, 0.00884484779, 0.00687277922, 0.0045783869, 0.0220843926, -0.00429765321, 0.00147125311, -0.000366946799, -0.00865076, 0.0124077406, -0.0157904103, -0.0119710434, 0.000794546, 0.00299795973, 0.0076110051, -0.0152774639, 0.000739092357, 0.0168301649, -0.0182442311, 0.0326344371, -0.0058746147, 0.00561814196, 0.0168578904, -0.00196167082, 0.0354902968, 0.0196860246, -0.00638062879, 0.0173015203, -0.00248501403, 0.013364315, 0.0100163044, -0.0307212882, -0.010702543, 0.0186878592, -0.00221641059, -0.0197830684, -0.00349357608, -0.00191314879, 4.4406197e-06, 0.013807944, 0.00795065798, -0.0105431136, 0.0209753197, 0.0274911169, -0.000928847643, -0.00527155679, 0.015499278, 0.00810315553, 0.00750009809, 0.0206426, 0.00358715397, 0.0204623751, 0.0036807321, -0.00609989511, 0.00987767056, -0.01109765, -0.0155547317, 0.00608256552, 0.00553496135, 0.0200048834, -0.0127820522, -0.0125255799, 0.0216823537, 0.00676880358, -0.00956574455, 0.0257859193, -0.017495608, -0.00782588776, 0.0154854152, -0.0132256811, -0.00745850801, -0.0295567624, -0.00817247294, 0.0144179333, 0.00734760053, 0.00910132, -0.0192701221, 0.00223374, 0.000133001973, 0.022333933, -0.0219318941, -0.0284754187, 0.00337920315, 0.0188680831, 0.000954841496, 0.00123037654, 0.00333761284, 0.0139743043, 0.0066786916, -0.00468929438, 0.0138633978, -0.00995392, -0.000913251308, -0.00948949531, -0.0148199722, 0.0321076289, 0.00349011039, -0.0219457578, 0.0164142624, 0.00548297353, -0.00573598081, -0.0227775611, 0.0134890862, 0.00711885467, -0.0197553411, 0.0197553411, -0.0261463672, 0.00867848657, 7.93896106e-05, -0.0253007, -0.00670295255, -0.00892802794, 0.00343985553, -0.00423180219, -0.00561467605, -0.000576197461, -0.0185214989, 0.00163154863, 0.014431797, -0.00848439895, -0.0110907182, 0.00802690722, 0.0123384241, 0.00874087214, -0.0207673702, -0.0315808207, -0.0116313901, 0.00337400427, -0.00176151795, -0.00695596, 0.00112640101, -0.0144179333, 0.00525422767, 0.0014339952, 0.026243411, -0.00263924431, 0.00739612244, -0.00801997539, 0.00934393, -0.0142654357, -0.0126364864, -0.0240529943, 0.000108307795, 0.00668908935, -0.0119571807, 0.0157349557, 0.00800611172, -0.00166100834, -0.00801304355, -0.000895055593, 0.0150695127, -0.0111115128, -0.00946870074, -0.00212109974, -0.0149863325, -0.017495608, -0.000983434729, 0.0175787881, -0.00065114646, -0.00751396129, 0.00879632588, -0.000636416604, 0.000969571352, 0.0212664511, 0.0100717582, -0.0116591174, -0.00190275128, 0.00570478803, -0.02015738, -0.003474514, -0.0129692079, 0.00447441172, 0.000563200505, -0.0105084553, 0.0163449459, -0.00723669352, -0.00680346228, -0.0160538144, -0.0151526937, 0.0160122234, 0.00821406301, 0.0168994814, -0.0111600347, 0.0206287354, 0.000209358957, -0.0105361817, 0.00104928587, -0.00147558539, 0.00774963899, 0.00754168816, 0.0108203813, 0.0238034539, -0.0054032593, -0.00976676308, -0.00617960934, 0.00741691748, 0.0150833763, 0.0183274113, -0.00149118167, 9.28739319e-05, -0.00653312588, 0.00143572805, -0.0826813057, 0.00669948664, 0.00932313502, 0.0248154812, -0.0108827669, -0.0157488193, 0.00741691748, -0.0303053875, 0.00223374, 0.010702543, -0.0106401574, 0.00729907863, 0.0165667608, -0.000486518606, 0.01811946, -0.0185076352, 0.0227221083, -0.00226839841, -0.00943404157, -0.000643781503, -0.0160676781, -0.0118324095, 0.0126156919, -0.0140366899, 0.0197414774, 0.017495608, 0.00798531715, -0.0139673725, -0.00921222754, -0.0032613643, -0.00759021, -0.0034034641, 0.0057949, 0.00835962873, -0.00918450113, -0.00933699775, -0.00277614524, -0.00488338154, 0.00422487035, -0.00363567588, 0.000557135267, -0.000917583646, 0.00544831529, -0.00523689855, 0.010924357, 0.0275327079, 0.000594393176, -0.00575331, -0.0240529943, 0.00558348326, -0.0101549383, 0.000716131122, -0.00508786691, -0.00871314574, -0.0283229202, 0.00161855167, -0.00812395103, -0.008657692, -0.0186324064, 0.0182858221, 0.00367380027, -0.0432815254, 0.0138911242, 0.0220012125, 0.0193117131, 0.0133989733, -0.0184521824, 0.0174262915, -0.00316951913, 0.011367986, 0.00246768468, -0.000476121058, -0.00977369491, 0.0106054991, 0.0105084553, 0.0076110051, -0.0081170192, -0.00836656056, 0.00724362535, 0.00554189319, 0.0235677753, 0.00199979497, 0.000874693738, 0.00709805964, 0.011458098, -0.000933179923, 0.00587114878, 0.00411742926, 0.00369112962, -0.00970437843, 0.00686584739, 0.0205732826, -0.00911518373, 0.00879632588, 0.00399959, 0.0127265984, -0.0135722663, -0.00752089312, 0.0131910229, 0.0238727704, 0.00479326956, -0.00358715397, 0.00883098412, 0.0114026442, 0.0220705289, -0.0221121181, -0.000336404017, -0.0196167082, 0.0149586061, -0.0017970429, 0.0365993679, 0.00125117158, -0.00294770487, 0.000684938452, 0.0153745078, 0.01509724, 0.0139049878, 0.0069351648, -0.00523689855, 0.0347971283, 0.00872700848, -0.0107510649, -0.0134821543, 0.0015388371, 0.00456798961, -0.0118324095, 0.000715697883, -0.0114234397, -0.00594046572, 0.001587359, 0.0218209885, -0.00813088287, 0.00064854708, -0.00811008736, 0.00817247294, -0.0342703201, 0.00141406653, -0.00795759, 0.00958653912, 0.00740305427, -0.0150556499, -0.0112362839, 0.0179115087, -0.0179253723, -0.0176896956, -0.00451946771, -0.0173985641, 0.0173847, 0.0120819509, -0.00262884679, -0.0289467741, -0.00180744042, 0.00111773645, 0.00520570576, -0.00381243438, -0.0275604334, 0.0184244551, -0.00148338347, 1.76135545e-05, -0.00477940636, -0.0125117162, 0.014251573, -0.00831803866, 0.00762486877, -0.00439469703, -0.00520570576, 0.00848439895, -0.0235955026, -0.00226839841, -0.0298063047, 0.0301113, 0.00727135176, 0.0187710393, 0.00302395364, -0.0199632924, -0.0024486226, 0.00711885467, -0.0115204835, -0.00317645096, 0.0129692079, 0.0147645185, -0.0184244551, -0.00645687757, 0.00807542913, 0.00433231192, -0.00205178279, 0.0184105914, -0.00516065, -0.00723669352, -0.0177451484, 0.020781232, 0.017454017, -0.0111738984, 0.0178976469, -0.00221641059, -0.0142931631, -0.00308114, -0.00133088615, -0.0115135517, 0.00512252515, -0.0192285329, -0.0311094634, -0.000322757231, 0.0192978494, -0.00367033458, -0.0210862271, 0.00307594123, 0.00628011907, 0.00581569504, -0.0061726775, 0.0036391418, -0.00968358293, -0.00914291106, 0.0302222073, -0.00401691953, 0.0116244592, -0.00838735513, -0.00236370927, -0.00566666387, 0.0048487233, 0.0417288281, -0.00615534838, 0.0201296527, -0.0106540211, 0.0081378147, 0.0146258846, 0.00320937647, 0.00182650262, -0.0303331129, -0.0111600347, -0.007104991, -0.000829637691, 0.0214605387, 0.00141926529, -0.0110075371, -0.00784668326, -0.01256717, 0.0193810295, -0.00781895593, 0.0223893877, 0.0115967318, 0.0120542245, -0.0176342409, -0.00286625745, -0.00745850801, -0.0161369946, 0.0115412781, -0.00734760053, 0.0238727704, 0.0160676781, -0.00828338, 0.00495963031, 0.00432191417, 0.0249679796, 0.0179946907, 0.00330122141, -0.0263820458, 0.018826494, -0.00233944831, 0.0116175273, 0.0129345497, -0.013010799, -0.0140644163, -0.0155547317, 0.0107094748, -0.00976676308, 0.0103490259, -0.0169272088, -0.00849826261, 0.00646380894, 0.00347971264, -0.00648807, -0.0106817475, -0.000185422934, 0.0198246576, -0.0131009109, -0.014917016, 0.0144456597, -0.0112085566, -0.0044224239, -0.0105639091, -0.0170658417, -0.019672161, 0.0160399508, -0.00592660252, 0.0119086588, 0.0121443365, -0.00938552, -0.00135254767, -0.00892802794, 0.00792293157, -0.012213653, 0.0036876637, 0.029307222, -0.00565626612, -0.0180778708, -0.0161231309, 0.0194087569, 0.0114788935, -0.0151804201, 0.0142654357, 0.0110491281, -0.00661284057, -0.0219318941, -0.0127612576, -0.0158458631, -0.00114113092, 0.00247288356, -0.00480366731, 0.0129345497, -0.0379579812, 0.00501855, -0.000202210649, 0.0162479021, -0.00858837459, 0.00564933429, -0.00286452449, 4.95508139e-05, -0.00457492098, -0.012920686, -0.000752089312, -0.00449520675, 0.000192029722, 0.00175718567, 0.0142377093, -0.00699408399, -0.0178837832, 0.0106193628, 0.0040931683, 0.00264271023, 0.00544138346, -0.0152497375, -0.0180640072, -0.00219041691, -0.0101965284, -0.0102034602, -0.00677920133, -0.0191314891, 0.0073753274, 0.0192146692, -0.00536166877, -0.000338570157, -0.0258552358, -0.0225002933, 0.0105569772, -0.00457492098, -0.009413247, 0.00661284057, 0.029972665, -0.00277094659, -0.0076110051, -0.0113333277, -0.00862303283, 0.0124701262, 0.0112432158, -0.00462690881, -0.0129484134, -0.0132949986, -0.0146674747, 0.000287882111, 0.0101341438, -0.00477594044, 0.00163848023, -0.0116036637, 0.025397744, -0.0202682875, 0.0349634886, 0.00483832555, -0.0133920424, -0.00787441, 0.0217516702, 0.0039510685, -0.00964199286, 0.0548158735, 0.0113056, 0.00255433097, -0.0190898981, 0.0211000908, -0.0228191521, 0.0140089635, 0.0308321957, -0.0192008056, 0.0094617689, -0.0286140516, 0.00789520517, 0.0100578945, 0.00526462495, 0.00372925401, -0.000695769268, -0.0112154884, -0.00564586883, 0.0197830684, -0.0141961193, 0.000334454468, -0.0128444377, -0.00622813124, -0.0318580866, 0.0160676781, -0.00866462383, 0.0086368965, -0.004328846, -0.0166776665, 0.00829724316, 0.00701487903, 0.0191730782, 0.00801304355, -0.00745157618, -0.0236509554, -0.0152774639, -0.00686584739, 0.0102311876, 0.00973210484, 0.0181749146, 0.0117838876, 0.0164558534, 0.0144872507, -0.000644214742, 0.00884484779, -0.0169272088, -0.0127681894, 0.00619693846, 0.0102242557, -0.00801997539, 0.00415208749, -0.037431173, -0.0115204835, -0.0129830716, 0.000264271017, 0.0127612576, 0.0120819509, 0.0081378147, -0.00883791596, 0.0221814364, -0.0292517692, -0.00379510503, -0.003474514, -0.0182858221, 0.00762486877, -0.0161369946, -0.000203726959, 0.0225280207, -0.0177035592, -0.00143659452, 0.0105292499, -0.0101895975, -0.00352303591, -0.0219596215, 0.0119779753, -0.00753475633, 0.00588501245, 0.017454017, -0.00371192466, -0.011721503, -0.00670988439, -0.00447787717, -0.00759021, -0.0101965284, 0.00558348326, 0.0012953612, -0.013988168, -0.0119987708, -0.00928154495, 0.00131269044, 0.00865076, 0.00120611559, 0.0128721641, 0.0130454572, 0.00194607442, -0.0128028477, -0.0198939759, 0.0042352681, 0.0101895975, -0.00213669613, 0.0110768545, -0.00743078114, -0.00508786691, -0.00790906791, -0.0294181295, 0.0185214989, 0.00399265857, 0.000365647109, -0.0100163044, -0.00238797022, 0.0170381162, -0.00832497049, -0.00784668326, 0.0278654285, 0.0089210961, -0.00867155474, 0.003474514, 0.017980827, -0.00784668326, 0.0068207914, 0.00375698064, 0.0158874542, -0.0279070195, 0.0275881607, 0.00333414716, -0.00155270053, 0.0376252607, -0.0212941784, 0.0153606441, -0.00728521543, 0.0182858221, 0.0223200694, -0.0076318, -0.0130454572, 0.00650193356, 0.0203514677, -0.0171212964, 0.0177590121, 0.0025266041, 0.018604679, 0.00363567588, -0.0057325149, -0.0213080421, 0.00440162886, 0.016386535, 0.00249541155, -0.00260112, -0.0140713481, 0.00968358293, -0.0069351648, -0.000864296162, -0.0108134504, 0.00856064819, -0.000138633972, 0.0292517692, 0.00211763405, 0.0229023322, -0.00284372945, 0.0276990682, 0.014875425, -0.00242782757, -0.0110075371, 0.0137940804, 0.00257339305, -0.00114113092, 0.0044362871, -0.0021938826, 0.0136415828, 0.014653611, 0.00576370768, 0.0176481046, 0.00954494905, -0.00771498075, 0.018784903, 0.00157176272, -0.0104183434, -0.00634597, -0.0155131416, -0.0110283326, -0.0303331129, -0.0163726732, 0.0174262915, 0.00513638882, 0.0434478894, 0.0100024417, 0.000921915926, -0.0149447424, -0.00957267638, 0.0131979547, 0.0158181358, -0.00223720586, 0.01411987, 0.0067133503, -0.00876859855, -0.0184799079, -0.0200187452, 0.0136554465, 0.0157488193, 0.0133088613, 0.000899387931, 0.0117908195, -0.00626972131, 0.00436003832, 0.010612431, 0.0120126335, 0.0108827669, 0.000590927317, -0.0175649244, -0.00535127148, -0.010168802, -0.00631131185]
02 Aug, 2018
unordered_multiset count() function in C++ STL 02 Aug, 2018 The unordered_multiset::count() is a built-in function in C++ STL which returns the count of elements in the unordered_multiset container which is equal to a given value. Syntax: unordered_multiset_name.count(val) Parameters: The function accepts a single mandatory parameter val which specifies the element whose count in the unordered_multiset container is to be returned. Return Value: It returns an unsigned integral type which denotes the number of times a value occurs in the container. Below programs illustrates the above function: Program 1: // C++ program to illustrate the // unordered_multiset::count() function #include <bits/stdc++.h> using namespace std; int main() { // declaration unordered_multiset<int> sample; // inserts element sample.insert(11); sample.insert(11); sample.insert(11); sample.insert(12); sample.insert(13); sample.insert(13); sample.insert(14); cout << "11 occurs " << sample.count(11) << " times"; cout << "\n12 occurs " << sample.count(13) << " times"; cout << "\n13 occurs " << sample.count(13) << " times"; cout << "\n14 occurs " << sample.count(14) << " times"; return 0; } Output: 11 occurs 3 times 12 occurs 2 times 13 occurs 2 times 14 occurs 1 times Program 2: // C++ program to illustrate the // unordered_multiset::count() function #include <bits/stdc++.h> using namespace std; int main() { // declaration unordered_multiset<char> sample; // inserts element sample.insert('a'); sample.insert('a'); sample.insert('a'); sample.insert('b'); sample.insert('b'); sample.insert('c'); sample.insert('c'); cout << "a occurs " << sample.count('a') << " times"; cout << "\nb occurs " << sample.count('b') << " times"; cout << "\nc occurs " << sample.count('c') << " times"; return 0; } Output: a occurs 3 times b occurs 2 times c occurs 2 times Learn C++ Online – Master everything from basics to advanced concepts. Apply your knowledge with practical exercises and boost your skills. Take the Three 90 Challenge: finish 90% in 90 days for a 90% refund. Start now and level up your C++ programming!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum/Algorithm for Dynamic Time out timer Calculation/Difference between Round trip time (RTT) and Time to live (TTL)/Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms/Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm/Round Robin Scheduling Algorithm with Different Arrival Time/Selfish Round Robin CPU Scheduling/Find the order of execution of given N processes in Round Robin Scheduling/Calculate server loads using Round Robin Scheduling/set::lower_bound() Function in C++ STL/Implementation of lower_bound() and upper_bound() in List of Pairs in C++/Difference between std::set::lower_bound and std::lower_bound in C++/Difference between std::set vs std::vector in C++ STL/std::minmax() and std::minmax_element() in C++ STL/std::rotate vs std::rotate_copy in C++ STL/std::bitset::to_ullong and std::bitset::to_ulong in C++ STL/std::upper_bound and std::lower_bound for Vector in C++ STL/std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++/std::string::append vs std::string::push_back() vs Operator += in C++/Vector push_back() in C++ STL/vector :: cbegin() and vector :: cend() in C++ STL/unordered_multiset cend() function in C++ STL/unordered_multiset bucket() function in C++ STL/unordered_multiset emplace_hint() function in C++ STL/unordered_multiset end() function in C++ STL/unordered_multiset size() in C++ STL/unordered_multiset emplace() function in C++ STL/unordered_multiset find() function in C++STL/unordered_multiset erase() function in C++ STL/unordered_multiset clear() function in C++ STL/unordered_multiset swap() function in C++ STL/unordered_multiset count() function in C++ STL
https://www.geeksforgeeks.org/unordered_multiset-count-function-in-c-stl?ref=asr10
PHP
unordered_multiset count() function in C++ STL
unordered_multiset count() function in C++ STL, unordered_multiset clear() function in C++ STL, What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, jQWidgets jqxTreeMap width Property, Round Robin Scheduling Algorithm with Different Arrival Time, Difference between Flow and TypeScript, unordered_multiset emplace() function in C++ STL, jQWidgets jqxTree destroy() Method, jQWidgets jqxTree collapseAll() Method, Find the order of execution of given N processes in Round Robin Scheduling, jQWidgets jqxScrollView buttonsOffset Property, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Vector push_back() in C++ STL, jQWidgets jqxListBox enableHover Property, Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm, std::rotate vs std::rotate_copy in C++ STL, Selfish Round Robin CPU Scheduling, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxSlider buttonsPosition Property, std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++, std::upper_bound and std::lower_bound for Vector in C++ STL, Difference between Round trip time (RTT) and Time to live (TTL), jQWidgets jqxSlider rtl Property, Difference between std::set::lower_bound and std::lower_bound in C++, jQWidgets jqxTooltip opacity Property, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, unordered_multiset erase() function in C++ STL, jQWidgets jqxToolBar height Property, PHP, std::minmax() and std::minmax_element() in C++ STL, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, Node.js date-and-time Date.transform() Method, unordered_multiset size() in C++ STL, TypeScript Optional Parameters, jQWidgets jqxToolBar theme Property, Difference between std::set vs std::vector in C++ STL, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, Steps to Diagnose and Resolve a Slow Network, How to use Optional Chaining with Arrays and Functions in TypeScript ?, Calculate server loads using Round Robin Scheduling, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, jQWidgets jqxScrollView showButtons Property, Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms, jQWidgets jqxScrollView disabled Property, jQWidgets jqxSplitter destroy() Method, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, set::lower_bound() Function in C++ STL, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, jQWidgets jqxTree collapseItem() Method, std::string::append vs std::string::push_back() vs Operator += in C++, unordered_multiset swap() function in C++ STL, unordered_multiset cend() function in C++ STL, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), jQWidgets jqxSortable opacity Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, vector :: cbegin() and vector :: cend() in C++ STL, jQWidgets jqxSlider height Property, jQWidgets jqxSwitchButton onLabel Property, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, jQWidgets jqxToolBar tools Property, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTree width Property, Implementation of lower_bound() and upper_bound() in List of Pairs in C++, jQWidgets jqxTree clear() Method, TLS Handshake?, Algorithm for Dynamic Time out timer Calculation, Adhoc TCP, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, jQWidgets jqxTabs position Property, Differences between Wireless Adhoc Network and Wireless Sensor Network, jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, std::bitset::to_ullong and std::bitset::to_ulong in C++ STL, unordered_multiset emplace_hint() function in C++ STL, unordered_multiset find() function in C++STL, unordered_multiset bucket() function in C++ STL, Impact of Three-way Handshake and Slow Start Algorithm, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, unordered_multiset end() function in C++ STL, How to Sort an Array Having Optional Properties in TypeScript ?
GeeksforGeeks
[0.00264674542, 0.0184803363, -0.0112007204, -0.00115431065, 0.03564227, -0.0171392038, -0.0198896602, 0.0248904899, 0.0212421566, -0.00219354546, -0.0317098, 0.013434045, -0.0360059664, -0.00260412483, 0.00423365645, -0.0204124749, -0.00855823699, 0.0142182661, 0.00920038857, -0.00282575237, 0.018321218, 0.0259588473, -0.0161390379, 0.0308914836, -0.00956976786, 0.0272999797, -0.0265953168, 0.00184831768, -0.00262827659, -0.026777165, -0.00448085647, 0.0154457418, -0.0169573557, -0.0110700168, -0.0232993159, 0.0275727529, 0.0267089717, 0.0112689128, -0.00442118756, -0.0185030662, 0.00805815402, 0.022992447, 0.0231515653, -0.0141046103, 0.00695001567, 0.00228020758, 0.000102289683, -0.0333691686, -0.0325053893, 0.0186508186, 0.0384381898, 0.0113143753, 0.0276864078, 0.0170937423, -0.00303743524, -0.00222480064, 0.0358695835, 0.00990505051, -0.00906400196, -0.0409386046, -0.0169687215, -0.0162299629, 0.0263907388, -0.0201624334, -0.0297322012, -0.0292775799, -0.0303686708, 0.0477806479, 0.0495991297, -0.018412143, -0.0176620185, 0.0532815568, 0.00560036, 0.0117064854, -0.0200260468, 0.00693865027, -0.0289593451, -0.0384609215, -0.0257997308, 0.0372561738, -0.0187303778, 0.0330963954, -0.00750692608, -0.0191736333, 0.0103653548, 0.00525655318, 0.0109790927, -0.0209580194, 0.00677385, 0.0311187934, -0.0404839814, -0.00351762841, 0.0364605896, 0.0025970214, -0.0260952339, 0.00879691262, 0.0495082065, 0.0177415777, -1.66154132e-05, 0.0403476, 0.00502640149, -0.0264589302, 0.0292775799, -0.00144697283, 0.0243676752, 0.0135817965, 0.0137522798, 0.00280160061, 0.0264362, -0.0117178513, 0.0429843962, 0.0158889964, -0.0146501558, 0.042688895, 0.00765467808, 0.0155934934, -0.00979139563, -0.0123088583, 0.00379040092, 0.00675111916, -0.00873440225, 0.0140591487, 0.0212989841, 0.00152724178, -0.0342784077, 0.0267998967, -0.0122861275, 0.0317325331, -0.0108427061, -0.0154457418, -0.00103781407, -0.0188440327, -0.0125020724, -0.061101038, 0.00694433274, 0.018912226, 0.000809793302, 0.0430298597, 0.0125589, -0.0445528403, -0.0586460829, 0.0280955657, -0.00706367102, 0.0453484245, 0.00712049846, -0.0263225455, -0.00941065047, 0.0204124749, 0.0460530892, 0.00837638881, 0.00569696678, -0.01791206, 0.0300731659, -0.000677313947, -0.00150735211, 0.00491842907, 0.0390519276, -0.0144796725, 0.0164345428, -0.0545090362, 0.0265271235, -0.00148888316, 0.0221741293, -0.0108597549, -0.0109165823, 0.0378926434, -0.00930836145, 0.0231970269, -0.0424615853, 0.0192872882, 0.0202533565, 0.0256860759, 0.0118656028, 0.0132862935, 0.0142409969, -0.00768877426, 0.0601008721, 0.0244358685, 0.0156275909, 0.0286865737, 0.0105585679, 0.00541282911, 0.0300277043, 0.000339012156, 0.0224696342, -0.000423720805, 0.00645561563, -0.0165709276, 0.0489172, 0.047189638, -0.0119906235, 0.0367106311, 0.0336419381, 0.0417341888, 0.0363696665, 0.00583051192, -0.0376426019, 0.0296867397, -0.0060919188, 0.0360286981, -0.0170823764, -0.0383472666, 0.00939928554, 0.0224241707, 0.00926858187, -0.00853550527, -0.00212393166, -0.0256633442, 0.0358468518, 0.0233675092, -0.0232538544, 0.0149115622, 9.95370938e-05, 0.00826841593, -0.0174347088, 0.0259588473, -0.0487353504, 0.0463031307, 0.0552818887, -0.0266862419, 0.0426207, -0.0529633239, -0.00542135304, -0.0527360141, -0.0410067961, -0.0168664325, 0.0396429338, 0.00994483, 0.00418535294, -0.0173778795, 0.0190258808, 0.0145478658, -0.0377335288, 0.00881396048, 0.0453256927, -0.0423024669, -0.0181621015, -0.0157412458, 0.0174460728, 0.00442971149, -0.00610896712, 0.0559183583, -0.00650676, -0.0289593451, 0.00939928554, 0.0300049726, 0.00133402797, -0.0390064642, 0.00710345, -0.0251859929, -0.00547249801, 0.0263452753, 0.0477806479, 0.00687045697, 0.0179006942, 0.00667156046, -0.0149456589, -0.0165141, -0.0136954514, -0.0411204509, -0.000362275954, 0.0111382101, -0.0603281818, 0.0152752595, 0.00947884377, -0.00778538128, 0.0360514298, -0.0417114608, -0.00631922903, -0.0151616037, 0.0220718402, 0.0200033151, -0.014525135, 0.00775128463, 0.00299481465, 0.0177984051, -0.00598962931, -0.00830819551, -0.0339829065, -0.0117519479, 0.00901854, 0.00337555958, -0.010655175, -0.0233220477, 0.0156275909, -0.029163925, -0.0134681417, -0.00487296656, -0.0235493574, -0.0344829895, -0.00477636, -0.00163095212, -0.000253770762, -0.00767172594, 0.0248904899, 0.0215717573, -0.0161958653, -0.0235493574, -0.0223218817, -0.00804678816, -0.0222195927, -0.0290957317, 0.00577652548, -0.0186508186, -0.013036252, -0.0150593147, 0.0322326161, -0.0214012749, -0.00672270497, -0.0428480096, -0.00245637307, -0.035619542, -0.0386882313, 0.0102687478, -0.0129680587, -0.0248222966, 0.0270954, -0.0118656028, -0.0516903847, -0.00491274614, -0.025572421, -0.0115757827, -0.0243904069, 0.0438254476, 0.00655790512, 0.0135136032, -0.0217536055, 0.0383472666, -0.0169232599, -0.0516903847, -0.012047451, 0.0140591487, -0.0127634788, -0.00981980935, 0.00871735439, -0.0169232599, -0.00153576594, -0.000211150051, 0.0266862419, 0.0149911214, 0.0136613557, 0.0216854122, -0.0185939912, 0.0176620185, 0.0312097184, 0.0364151262, -0.000741600175, -0.0186962802, -0.00993346423, 0.0421206169, 0.000502213952, -0.0211285017, 0.00357729755, -0.00667156046, 0.0296185464, -0.00902990624, -0.0220718402, -0.0400293618, -0.0138773005, -0.0126157273, -0.0172528587, 0.0495536663, -0.00331020774, 0.011547369, 0.00362560083, -0.0384836532, -0.00952430628, -0.00991073344, 0.0524632409, -0.0298003945, -0.00625103619, 0.00248194556, 0.0190713424, 0.00748419482, -0.0347330309, -0.00374778034, 0.00359434565, 0.0317098, 0.00922311936, -0.00784789212, 0.015423011, 0.0408931412, 0.0164459068, -0.00482182205, 0.00730234664, -0.0108313411, -0.0171392038, 0.00997324381, 0.00291241449, 0.0278000627, -0.0305732489, -0.00299765589, -0.0142296311, -0.0205488596, 0.0165936593, 0.00387848378, -0.0531906337, -0.0230038129, -0.0443028, -0.0477806479, 0.0188099351, -0.0238903239, -0.00150024868, -0.00351194572, -0.0230038129, -0.00770582259, 0.00517131155, -0.0247541033, -0.0196509846, 0.0183325838, 0.032346271, -0.0126043623, 0.00632491196, 0.0236175507, 0.019810101, -0.0183780454, -0.0501446761, 0.0196509846, 0.0163890794, 0.0075239744, -0.0206625164, -0.00947884377, 0.00221485575, -0.00566855306, -0.0188099351, 0.00974593312, 0.00729098124, 0.00770014, 0.00277602836, -0.0180484466, -0.00201595924, 0.00798427779, 0.00431037368, 0.0420524254, 0.00110458652, -0.0492354333, 0.0231288336, 0.00228162808, -0.013638624, -0.0374607556, 0.0211398676, 0.0332100503, -0.00352899404, -0.0411886461, 0.0127293831, 0.0459621623, -0.0146274241, -0.020310184, 0.00060414843, 0.0349148773, -0.00506333914, 0.0138773005, 0.00240380759, -0.00667724293, 0.0527360141, 0.000186643156, 0.0426207, -0.00155281415, 0.0535997935, 0.00993914716, -0.0167414118, 0.0143546518, -0.00812634733, 0.00493831839, -0.0261634272, 0.0107858786, 0.00457462203, 0.00365685602, -0.00947884377, -0.00296355947, 0.00229583518, -0.00479056686, 0.000367248373, -0.0189349558, 0.00331589044, -0.0275954828, 0.0113655198, -0.0174801704, -0.0233447794, -0.0172414947, 0.0105585679, -0.00619989121, -0.0517358482, 0.0147183491, -0.00494116, -0.0257315375, 0.0163436178, -0.0252541862, -0.0180825423, -0.00922880229, -0.0330054723, -0.00414273189, -0.0150934104, -0.0646016151, 0.0168096051, 0.0248450264, -0.0367560908, -0.016423177, 0.0140136862, -0.0220150128, 0.0379381068, -0.0120815476, -0.0128885, 0.03164161, -0.00173324184, -0.0678748861, 0.0209239218, 0.0218104329, -0.0432344377, -0.00129993132, 0.00345511804, 0.0505083725, 0.00148320035, 0.00755807105, -0.0234584343, 0.0265271235, 0.0535088703, -0.0103142094, -0.00321075949, 0.00191793148, -0.0059328014, 0.0229128879, 0.0065976847, 0.0327781588, -0.00859801564, 0.00612601545, -0.015820805, -0.00105841411, -0.0144683076, -0.0431207828, -0.0207079779, -0.0050661806, -0.0495082065, 0.0190599766, -0.0162413288, -0.0322780758, -0.00413989089, 0.00614874624, -0.0401657484, 0.0116951205, -0.00154286937, -0.00758080184, 0.0112745957, 0.00970047154, -0.0275727529, -0.0055833119, 0.0132067343, -0.00612601545, -0.0237312056, 0.00896171294, -0.00134255202, 0.0244131368, 0.00429332536, -0.00475647, -0.00976298191, 0.0194123089, -0.0122065684, -0.0126839206, 0.026777165, -0.011842872, -0.0111723067, 0.0226742122, 0.0433708243, 0.0270954, 0.0047081667, -0.00852982327, -0.00010815003, 0.012933962, -0.00594416726, 0.00606350508, 0.00129780034, 0.0072455192, 0.0238903239, -0.00641015358, -0.0089048855, 0.0245495234, 0.0201624334, 0.0137750106, -0.0197873712, -0.00415409775, -0.00146331068, 0.001095352, 0.0114564439, -0.00793881621, -0.0265043937, -0.0200146809, -0.0178552326, -0.00237681437, -0.0499628261, -0.000683351886, 0.0127975754, 0.0251859929, 0.0138432039, -0.00117349, -0.0139909554, -0.0188667644, -0.0108824857, -0.00895034708, -0.0133544859, -0.00996756088, 0.0125929965, 0.00851845741, 0.0209580194, -0.00877418183, 0.0163890794, 0.0238221306, 0.0154571077, 0.0141841695, 0.0129907895, 0.00991641637, -0.048871737, -0.00916629191, 0.0418478437, -0.00825136807, -0.00983685814, 0.0302777458, 0.00113442098, 0.0214808322, -0.000133189693, 0.00200601434, -0.0104846926, -0.00486444263, -0.03164161, 0.043211706, 0.0166845843, 0.00856392, -0.0215717573, -0.0029664007, -0.0030459594, -0.00608623587, 0.0113825686, -0.0106835887, 0.0137750106, -0.0108142924, 0.0158662666, 0.0179234259, -0.00160822109, 0.00122463482, 0.000571117387, 0.0324826576, -0.0209807511, 0.00325053884, 0.0279591791, 0.0243904069, 0.00705798808, 0.025572421, -0.0495991297, 0.0350739956, -0.00808656774, -0.0165595636, -0.0140136862, 0.0295048896, 0.0175710935, -0.00590438768, -0.00387848378, -0.0238903239, -0.0276636761, 0.0240494404, 0.0105983475, 0.001095352, -0.0154912043, -0.0499628261, 0.00166789012, -0.00738758827, 0.00214240048, -0.0159571897, -0.00513153244, -0.0344602577, -0.0151843354, 0.00374209741, -0.019798737, 0.0189349558, 0.00885942299, -0.0156275909, -0.0247995649, -0.00983117521, -0.0158094391, -0.00576516, -0.0110870646, -0.000724551908, 0.00165936595, 0.00130490377, 0.00849572662, -0.00883100927, -0.0138659347, -0.00113086926, 0.014832004, 0.0424615853, 0.00331020774, -0.0616920441, -0.0126839206, -0.0392565057, 0.0315279514, 0.0424615853, 0.00319371116, -0.00379608385, 0.0203783773, 0.0136727206, 0.0118315062, -0.0391201191, -0.0191168059, -0.00702957436, -0.0151616037, -0.0544181094, 0.00012883883, 0.0485989638, -0.019310018, 0.007961547, -0.0270499382, 0.0027461939, 0.00859233364, -0.00162100734, -0.0230606403, 0.00230151787, 0.00415409775, -0.0232652202, 0.00254161446, 0.00793313328, 0.0066601946, -0.045780316, 0.00517983595, 0.00846163, 0.000914924371, 0.0147751765, 0.054736346, -0.0239585172, 0.00409727, -0.0299822427, 0.010348306, 0.0023938627, -0.0310960636, 0.00984254, 0.00992778223, 0.00990505051, -0.0398020521, 0.0146046933, 0.0315961465, -0.0222082268, -0.0367560908, -0.0223787092, 0.0115871476, 0.0189690534, 0.00372220785, 0.0202192608, -0.0226060189, 0.00580778066, 0.0122861275, 0.00973456819, -0.0102687478, 0.0344829895, 0.0159912873, 0.0441664122, 0.0284138, -0.0208670944, 0.00377051136, -0.0276636761, 0.0324599259, 0.017616557, 0.0070977672, -0.00561172562, 0.0308914836, 0.00870598853, 0.00287405588, 0.0271635931, -0.0277546011, 0.0182757564, -0.0325281173, 0.0425752401, 0.0125020724, 0.0277546011, -0.00308573875, -0.0025330903, 0.00462292554, 0.0215831231, -0.0252541862, -0.022287786, -0.00379040092, -0.00714891218, -0.0140250521, 0.0234357025, -0.0067397533, 0.0345739126, 0.00337271811, 0.0205488596, 0.0076830918, 0.0215831231, 0.0072341538, 0.0150365829, -0.000841048488, -0.0210716743, -0.00256718695, 0.00511164265, 0.0174006112, 0.0245267916, 0.0011862762, -0.0240721721, -0.0100925816, -0.035437692, -0.0271863248, -0.0197305437, 0.0377335288, 0.0319825746, -0.0175142661, -0.00905832, 0.000636469107, -0.000529207056, 0.00431889761, 0.0261406973, 0.0458712392, 0.00958681665, -0.00616579456, 0.00471384963, -0.013831838, -0.00248478679, 0.0264362, 0.00780811254, 0.00743873278, -0.0012267658, 0.00145904871, 0.0101153133, 0.033050932, -0.0168664325, 0.0340738297, -0.0313915685, -0.0346193761, 0.0118087754, 0.047871571, 0.00924016815, 0.0236402825, -0.0298913177, -0.00605782215, 0.0179802533, -0.00602940843, 0.0123770516, -0.00273198681, -0.00683636032, 0.0183325838, -0.00688182237, -0.0133090243, 0.038710963, 0.00283853873, -0.00415693922, -0.0241403654, -0.0189235918, 0.00731939496, 0.00249473169, -0.0144228451, 0.00934245717, -0.00313688349, -0.00951294, -0.0049979873, 0.0176847503, 0.034937609, -0.00237965584, 0.0180711765, 0.0217308737, -0.0181961972, -0.0383472666, 0.00926858187, 0.0304141324, -0.00251888344, -0.0171733014, 0.0133885825, 0.0462804, 0.00702389143, 0.0403021351, -0.00102431746, -0.0160026532, 0.000690810499, -0.0160140172, 0.00775696756, -0.00337840081, 0.00530485669, -0.0140023213, -0.00301754568, -0.00186394528, -0.00857528485, 0.0140932454, 0.00271493872, 0.00019321384, -3.64939733e-05, -0.0169232599, -0.0269817449, -0.0816953555, -0.0229015239, 0.00104989, 0.0196623504, -0.0081888577, 4.27316918e-05, -0.0293685049, 0.018605357, 0.0111154784, 0.0189917851, -0.0130817136, -0.0137068173, -0.000291419041, 0.0221741293, -0.0100925816, 0.0185257979, -0.0371197872, 0.0142864585, -0.0210375786, -0.00564013934, 0.00531906355, 0.0279591791, 0.0281182975, 0.0235266276, -0.00767172594, 0.00209835917, 0.0126725547, 0.00846163, -0.0153548177, -0.0245267916, -0.0659200177, -0.0159912873, 0.0175597295, -0.00481045665, 0.012240665, 0.00789903663, 0.0104676438, 0.0175256319, 0.00570549117, 0.01014941, -0.00937655382, -0.0148433698, -0.0289820768, -0.00822295342, 0.0160708465, -0.0115928305, -0.00330452505, -0.0089105675, 0.00954703707, -0.00662609842, 0.00909809861, -0.00474794628, -0.0230265446, -0.0059328014, -0.0213785432, -0.054236263, -0.00771150552, 0.0126498239, 0.00925153308, 0.00437288405, 0.000224824194, -0.0149570247, -0.0021693937, -0.0224809982, -0.00902990624, -0.00565150473, -0.0205829572, -0.0196509846, 0.0274590962, 0.0145478658, -0.00723983627, -0.00392678706, -0.00148746243, -0.00747851236, 0.00805815402, -0.000860227796, 0.00785925705, 0.0153093562, -0.0152752595, 0.00161674526, -0.000219319016, 0.000254658691, -0.00392962852, -0.0175710935, -0.0205602255, -0.0114564439, 0.0122065684, 0.00642720144, -0.0247541033, 0.030050436, 0.0173778795, -0.0106892716, 0.0230720062, -0.0398020521, -0.029163925, -0.00347500783, 0.00925153308, 0.00254729716, 0.0288002286, 0.00875713304, -0.0118769687, -0.00743305031, 0.0295048896, -0.00209835917, -0.0231402, -0.0201169699, 0.0133317551, -0.0099959746, 0.00191224879, 0.00624535326, -0.0318689197, 0.0310051385, 0.0686932057, 0.0435754061, -0.00995051302, 0.0020301661, -0.0367106311, -0.00384438713, 0.011945162, -0.0264816619, 0.00608623587, 0.00597258098, -0.0322326161, -0.00887078885, 0.0270499382, -0.019298654, 0.000884379551, 0.00968342274, -0.0437345207, -0.00627376698, 0.0150024863, 0.0122293, 0.010944996, 0.000995193375, -0.0269817449, 0.0376653336, 0.00870598853, -0.0247768331, 0.00993346423, -0.0339601748, 0.0146274241, -0.00375346304, 0.0105869817, 0.0257997308, -0.00206852471, 0.0179688875, 0.010547203, 0.0112234512, -0.0206170529, -0.00650676, 0.0230492745, -0.00288542151, -0.0328918137, -0.00661473256, -0.0296640079, 0.0263225455, -0.0128771346, 0.00908105075, 0.00245921453, -0.0341874845, 0.00354604237, -0.00956408493, 0.0330054723, 0.0247086417, -0.0125589, 0.0170823764, 0.0233220477, -0.0139682246, 0.00955272, -0.0197305437, 0.0177529417, 0.0266180485, -0.00318802847, 0.0205147639, -0.0104790097, 0.0055719465, -0.00730802957, 0.00780242961, 0.00290815253, -0.00067766913, -0.00423081499, 0.00247626263, -0.00665451214, 0.017025549, 0.0115132723, 0.0303004775, -0.00120687613, -0.00154855207, -0.0378017202, -0.00835934, -0.0100130234, 0.011052968, -0.0241630953, 0.0120133553, -0.00808088481, 0.0300958976, -0.0403476, 0.0117860446, -0.0175029, 0.0197419077, 0.0469168685, 0.03582412, -0.0179347917, 0.00333862146, 0.00638742233, -0.0272090547, -0.00416546315, -0.00557762897, 0.0117064854, 0.0319371112, 0.0193782113, 0.0377335288, -0.011052968, 0.0272090547, 0.0398020521, -0.00440413924, -0.0116098793, -0.00731939496, 0.0190031491, 0.00145904871, -0.0065976847, -0.0112802787, -0.00192503503, 0.00548670487, -0.0145705966, 0.0194123089, -0.00925153308, 0.0298458561, 0.00872871932, 0.0140705137, 0.0424843132, -0.0202874541, -0.012240665, -0.0230265446, -0.0204124749, 0.0182416607, -0.00255440059, -0.00254871789, 0.000733786379, -0.016025383, 0.0231856611, -0.0207648054, -0.0198214669, 0.00524234632, 0.00772855384, -0.00581630506, 0.00262827659, -0.024094902, -0.0111779887, -0.0103426231, 0.0228446964, 0.0274136346, -0.0237312056, 0.0236630123, -0.00630786363, 0.012047451, 0.0140250521, 0.00170766946, -0.00162100734, -0.00824000221, 0.00755807105, -0.00546113262, 0.0314370282, -0.00508322893, 0.00746146403, -0.0050661806, 0.0258451924, -0.00817749184, 0.0173665155, -0.0144001143, 0.00514858076, -0.0318007246, -0.0129453279, -0.00559467729, 0.0147524448, -0.0166618526, 0.0254133027, -0.0135249691, -0.0146160591, 0.0513266884, -0.00826841593, -0.00881396048, 0.0277773309, 0.00199180748, -0.0265271235, -0.00465702172, 0.0291184634, -0.00637605693, -0.000500082911, -0.00225179363, 0.00345511804, 0.00526507711, -0.0247541033, 0.00556342211, -0.00455473224, 0.0180825423, -0.0311642569, 0.00319371116, -0.0105074234, 0.000393886323, 0.00691591902, -0.00712618139, -0.016025383, 0.0185030662, -0.0480079576, -0.0324599259, -0.0108597549, -0.0124907065, -0.0169800874, -0.00119764172, 1.50282367e-05, 0.0116837546, -0.0118315062, 0.0111325271, -0.0486444272, 0.0144114792, 0.0386882313, 0.00682499493, 0.015820805, -0.033937443, -0.0253678411, -0.00895034708, 0.00980276149, 0.0183439497, 0.00381597341, 0.0128771346, -0.00182842801, -0.0202419907, -0.0126952864, 0.00111737265, -0.0043387874, -0.00767740887, -0.00933677517, 0.00326758716, 0.0145024033, 0.0187985711, 0.0162185971, -0.00426207, -0.0165709276, -0.00198612455, -0.00537873246, 0.00261833169, -0.00284848339, -0.00420524227, -0.00981412642, -0.00781947747, -0.00173466257, -0.0217308737, 0.0119110653, 0.000543413917, 0.00334998709, 0.0301868208, -0.0132294651, 0.0100755338, 0.0408931412, 0.0128089413, -0.00498662191, -0.0235038958, 0.00451211166, -0.00783652626, 0.0253223795, 0.0121611068, 0.0131044444, 0.000820448506, -0.0178779624, -0.00702389143, -0.0341874845, -0.0104562789, -0.0124679757, -0.0214012749, 0.0280955657, 0.00675111916, 0.00982549228, -0.028072834, -0.0232765861, -0.00576231861, -0.00683636032, 0.00644425, -0.0116269272, -0.023594819, -0.00742736738, -0.0341647528, -0.0455984659, 0.00949589256, 0.029073, 0.0126498239, -0.023390241, 0.000396017334, 0.0162640586, -0.000397438038, 0.0130930794, 0.0216285847, -0.0071659605, 0.0260497723, -0.019707812, 0.00660905, -0.00452631852, -0.0201169699, -0.0144114792, 0.0250041448, -0.00615442917, 0.000787062279, -0.0261634272, 0.018321218, -0.0149229281, 0.00633059489, 0.000190372462, -0.0124111483, -0.00828546379, 0.0253678411, 0.0159685556, -0.0119110653, -0.0217536055, 0.034437526, 0.00280444208, -0.00198044186, -0.0151729695, -0.000101312959, 0.00726825, -0.0184007771, -0.00972320233, 0.00099874509, -0.00098453823, 0.0146046933, 0.0163890794, 0.00549238781, -0.00807520188, 0.00940496754, -0.000835365732, -0.0046371324, 0.0039807735, 0.032550849, 0.00739895366, 0.0109961405, 0.0121724717, 0.0381881483, -0.0193441156, -0.0245267916, -0.020207895, 0.0285274554, 0.00684772572, 0.00738190534, -0.0299140494, -0.0113030095, -0.0132294651, 0.00121966237, 0.00743305031, 0.00862642936, -0.00692160195, 0.0250041448, 0.0200033151, -0.0364605896, 0.00400634576, -0.0150706796, 0.00694433274, -0.0104733268, -0.0147069832, 0.0117860446, 0.0248450264, -0.000187175916, -0.000507896708, 0.00916629191, 0.00285558705, 0.00524234632, 0.00286837318, -0.0206056889, -0.00486728409, -0.0137977414, -0.000401344936, 0.027868256, 0.0220832061, 0.011945162, -0.00929131266, -0.0212535225, 0.0138091072, 0.00481898058, 0.0149001973, 0.0235720892, -0.0126498239, -0.0193895772, -0.0183894113, -0.00750692608, -0.0222423226, -0.00398361497, -0.0129907895, 0.00991073344, -0.00128075201, 0.0101607749, 0.00935950596, -0.0045575737, 0.0160140172, 0.0147638107, 0.0392565057, -0.0076035331, -0.0125020724, 0.0122633958, -0.0112916445, -0.0142523628, -0.0223218817, -0.0191168059, 0.0153207211, 0.0161958653, 0.0110018235, -0.0216854122, -0.0320962295, 0.0113996165, -0.017321052, 0.00701252604, 0.0276864078, 0.0146501558, -0.00806383695, -0.0106835887, -0.00126086245, -0.0198896602, 0.00432173908, -0.0151729695, -0.0153889144, 0.0108597549, 0.00460871821, -0.00695569813, 0.00439845631, 0.0283228755, -0.00351762841, 0.00293230428, -0.0336419381, -0.0207079779, -0.0400520936, 0.0426661633, 0.00537304953, -0.00738190534, -0.00353183551, -0.0182530247, 0.00123742106, 0.0102687478, -0.00666587753, -0.0163549837, 0.0334146284, -0.000495465647, 0.0089105675, -0.0259133857, -0.016025383, 0.0204693023, -0.0150706796, 0.030550519, -0.00499230484, 0.000952572678, 0.0343693346, 0.0182302948, 0.0120360861, -0.00338692497, -0.00565718766, 0.0129453279, 0.00925153308, -0.0116269272, 0.0171051081, 0.0118996995, -0.00218644203, 0.00711481553, 0.0334373601, 0.0433026329, -0.00664314674, 0.00239670416, -0.0023242489, 0.00431889761, -0.0412341058, -0.00826841593, -0.00575663615, -0.0318234563, -0.00425354578, -0.0194009431, 0.00875145, 0.0269135516, 0.00910378154, 0.0146615207, -0.011047286, -0.0365969762, 0.0157071482, 0.00413420796, 0.00131555891, -0.0301640909, -0.00336419395, -0.0142978244, 0.0199578535, 0.0347103, 0.00991641637, 0.0145592317, -0.0333918966, 0.00827409886, 0.0134567758, -0.00387564232, -0.00805815402, -0.0378699116, 0.00157838664, -0.00827409886, -0.0152525278, 0.0238903239, -0.0233675092, 0.0210375786, -6.16668258e-05, 0.0252087247, -0.00711481553, 0.0189349558, -0.00738190534, 0.00429048389, -0.00227878685, 0.00920038857, 0.0441209488, 0.00897307787, 0.0268453583, 0.00517131155, 0.010751782, -0.03564227, -0.0163549837, -0.00100371754, -0.00851845741, 0.0308687519, 0.0279819109, 0.00445528375, -0.00885942299, -0.00452063559, 0.0189576875, -0.0355286151, -0.00255866279, -0.0127180172, 0.0154002802, 0.0330736637, -0.0142069, -0.0159458257, -0.00686477404, 0.0154457418, -0.010348306, 0.0324599259, -0.0206966121, -0.0120815476, 0.00525087025, -0.0340510979, -0.0171505697, -0.0173892453, 0.0306641739, -0.033732865, 0.019798737, 0.00954135414, 0.000650676, -0.0138091072, 0.0237084758, -0.0291866567, 0.00170340738, 0.012547534, 0.0099220993, 0.0139227621, 0.00811498147, 0.00352615258, 0.0067397533, -0.00594416726, -0.0028172282, -0.0131612727, 0.0323008075, 0.00172045559, -0.00259418, 0.00288258, 0.0025970214, 0.00758080184, 0.0208216328, 0.00933109224, -0.00261406973, -0.00899581, 0.00775128463, 0.00391826313, -0.0134113142, 0.000572893245, -0.00653517433, 0.0189804193, 0.019207729, 0.00670565711, 0.0178665984, -0.00337271811, 0.0212080609, -0.00342102163, 0.0140818795, 0.00361423544, 0.00941065047, -0.00709208474, -0.0224696342, 0.0182530247, 0.00196765573, 0.0179234259, -0.0146728866, -0.0128316721, 0.0180939082, 0.0487808138, 0.0258224625, 0.00446096668, -0.0113598378, -0.0315052234, 0.0170937423, 0.00125731062, 0.0116951205, 0.0425979681, -0.031050602, 0.0124452449, -0.0366879, 0.0212194268, -0.00378471822, -0.000423010468, 0.0112234512, -0.00412568403, 0.00581346359, 0.0153093562, 0.00773423631, 0.00875713304, 0.0172642246, -0.00251178, 0.005077546, -0.0163663495, -0.0204465706, -0.00599531177, -0.018321218, 0.000575734652, 0.00645561563, -0.0153889144, 0.0111325271, 0.00884805713, 0.0038415459, 0.00650107767, -0.00772287091, -0.0245267916, 0.0312097184, -0.00545829115, 0.0245722551, -0.014127342, -0.0127521139, 0.000464210461, -0.00157980726, 0.0208443645, 0.0155480318, -0.0176847503, 0.00839343667, 0.030050436, -0.0044979048, 0.0187872052, -0.0130476169, -0.0181507356, 0.00410863571, -0.0228333306, -0.000168706945, 0.00096393819, -0.0088366922, -0.00357161462, -0.00986527186, 0.0106267612, -0.0109790927, -0.000930551963, 0.0101437271, -0.0181734674, -0.0026027041, -0.00835934, -0.00972888526, 0.0177302118, -0.00450642873, -0.0122974925, 0.0187872052, 0.00668860879, 0.00446096668, -0.00621693954, 0.00080340018, -0.00861506443, 0.00512300804, 0.00955272, 0.00319655263, 0.00889920257, 0.00599531177, 0.0030516421, 0.00685909158, 0.0159003623, -0.00168635906, 0.0193554815, -0.00675680162, 0.014434211, -0.000759358809, 0.00888783671, 0.00380460778, 0.0252541862, -0.0108142924, 0.0135136032, 0.0221400335, -0.0250496063, 0.0219013579, -0.0162981562, 0.0168550666, 0.00334714563, 0.00668292586, -0.00822863635, -0.0120133553, 0.00300049735, -0.00161390391, -0.0112973275, -0.0117178513, 0.0118769687, -0.0135590658, -0.00988232, -0.00178864878, -0.0132976584, -2.67933265e-05, 0.00533327041, 0.00966637488, 0.00664314674, 0.00753534, 0.00551796, -0.0378017202, -0.021605853, -0.00504345, -0.0119337961, -0.0045007458, 0.0164686386, -0.0164800044, -0.00313972495, 0.0181280039, 0.00438993238, 0.00271493872, -0.0417341888, 0.00198328332, 0.00102360721, -0.0152638936, -0.00581062213, -0.0199237578, -0.00873440225, 0.00454052538, 0.00263680075, 0.00259275921, -0.0132067343, -0.00264248345, 0.00695569813, 0.000411289773, -0.0125702657, -0.0120701827, 0.0205602255, -0.00364549062, 0.000250574201, -0.00544408429, 0.00291525596, 0.0127634788, -0.00297208363, -0.00577084301, 0.00263822149, -0.0303004775, 0.0112348171, -0.0230606403, 0.00646698102, -0.00739895366, -0.0142978244, 0.0238448605, -0.00790472, -0.0117746787, 0.00997892674, -0.00438140798, -0.00955272, -0.0154798385, -0.00163663493, -0.0146501558, 0.00751260901, -0.00527360151, -0.0131612727, -0.0303914, -0.00298060756, 0.00722847087, 0.019514598, -0.0184348729, -0.0145933283, 0.0170823764, -0.0293912347, 0.0146274241, -0.0188440327, -0.0322780758, -0.0039807735, 0.00711481553, -0.00547249801, 0.00481045665, -0.0111893546, 0.00358582172, -0.00686477404, 0.0211057719, 0.0346193761, -0.0149115622, 0.017309688, 0.00640447065, 0.00149598659, -0.0386882313, 0.00704662269, 0.0157639757, 0.0188213009, 0.00755807105, 0.0261406973, 0.0302777458, -0.0187531076, 0.000877986429, 0.00139866932, 0.00571969803, 0.016025383, -0.00386711815, 0.010058485, -0.0122179342, 0.00536168413, -0.00950725749, -0.00392678706, -0.00752965733, 0.0217649713, 0.00447517354, -0.00386995962, 0.007961547, -0.0167073142, 0.0116269272, -0.0045575737, -0.00480193226, 0.00730234664, 0.0165595636, -0.000405962171, 0.0294366982, -0.0127066514, -0.0127748447, -0.0113768857, 0.0141955344, 0.011945162, -0.0020940972, -0.00102289685, 0.0184917022, 0.0125816306, -0.0104790097, -0.0249132197, -0.00633059489, -0.00746146403, 0.0145933283, -0.00150735211, 0.0139227621, 0.0115075894, 0.00458598742, -0.00949589256, 0.0164572727, -0.0087684989, -0.0169459898, -0.0116269272, -0.0279819109, -0.0198555645, 0.004926953, 0.00136457279, -0.000902848493, 0.0145933283, 0.0158435348, -0.00601804303, -1.28306065e-05, 0.00228731101, -3.16547485e-05, -0.0140591487, -0.0074557811, 0.00600667764, -0.00802974, -0.0294366982, -0.00767172594, 0.0109847756, -0.0110700168, -0.0158776324, 0.0122974925, -0.0107574649, 0.00284280069, 0.0251405314, 0.0129112313, -0.0184576046, -0.0168550666, -0.015434376, 0.00822295342, 0.0150365829, -0.0170369148, 0.0115189543, 0.0362105481, -0.00654653972, -0.012240665, -0.016116308, -0.0120133553, 0.00255297986, 0.00855823699, 0.0133885825, -0.00691023609, -0.00558615336, -0.00831956, -0.0247086417, 0.00575379469, 0.0106665408, 0.0244358685, 0.0106040305, -0.0186280869, 0.0129225962, -0.0222195927, -0.0133090243, 0.00404328387, 0.0113143753, 0.00750692608, 0.0151729695, -0.00698411232, 0.0187417436, -0.00707503641, -0.0164913703, -0.0168891624, -0.0148547348, 0.00787062291, 0.0226401165, 0.00820590556, 0.0298003945, 0.0106949545, 0.0272999797, 0.0193782113, -0.0150365829, -0.011638293, 0.0214012749, 0.00984254, 0.0168437, 0.0110700168, -0.0158662666, 0.00225605583, -0.0234811641, 0.0145137692, 0.0469623283, -0.00750692608, -0.00467407, 0.00251178, 0.0100357542, 0.00135675899, -0.00529917376, 0.00527928397, 0.0252087247, -0.00662041549, -0.00614874624, 0.00147893827, -0.00216229027, 0.0123202242, 0.00727393292, -0.0292775799, 0.0270499382, 0.0251859929, 0.016116308, 0.0160594806, -0.0134226792, -0.0104278652, -0.00820590556, -0.0153093562, 0.00290815253, 0.000997324358, -0.0196509846, -0.0105358372, -0.00929699559, -0.0155139351, -0.00313688349, 0.0271181315, -0.00524518779, -0.0322326161, -0.0147638107, -0.00483318744, -0.00271351798, 0.0129907895, 0.00378471822, 0.0181280039, 0.0210489426, -0.0219581854, 0.0142069, 0.0190031491, -0.00835365709, -0.00621693954, 0.0154912043, -0.0234129708, 0.000434375979, 0.0320962295, 0.0114621269, -0.00142069, 0.0171505697, 0.00856392, 0.00243364205, -0.0167527776, 0.019616887, 0.00121113821, 0.00121326931, 0.017321052, -0.0101778237, 0.00363696646, 0.0145819625, -0.0099902926, -0.00457746303, 0.0318234563, -0.032346271, 0.00133615895, 0.031664338, 0.00838207081, 0.0148888314, -0.0145137692, 0.00604645675, -0.0039807735, -0.00517415302, 0.0321871527, 0.0182530247, 0.00218217983, -0.00174034527, -0.000422300101, 0.0147638107, 0.018412143, 0.0258224625, 0.00379892508, 0.00209978, -0.0139909554, 0.0302550141, 0.0331645869, 0.00486444263, 0.0179802533, 0.00442971149, 0.00698979478, 0.0108313411, -0.0117178513, 0.00124097278, -0.00649539474, -0.00746714696, -0.00752965733, 0.0102005545, 0.00556058064, 0.00187673152, 0.00503208395, -0.00788198784, 0.0115644168, 0.0136158932, 0.0028967869, 0.0208784603, 0.00834797416, 0.0172642246, -0.000956124393, -0.0302550141, 0.0334828235, 0.00121966237, 0.00863779522, 0.00959818158, -0.00981980935, 0.0223673433, -0.00272204215, -0.018912226, 0.00396088371, -0.0269135516, -0.0212989841, 0.0167641416, -0.0146387899, -0.0149456589, -0.00113655208, 0.00949589256, -0.00959249865, 0.00509459432, 0.00862642936, -0.0145933283, 0.0131840035, -0.0196737163, 0.0133658517, -0.0042705941, -0.0221173018, 0.011143893, 0.00902422331, 0.00976866484, -0.00103426236, -0.00665451214, -0.0037023183, -0.0105017405, -0.0089105675, -0.00370515953, -0.0113712028, 0.00432742201, 0.0209352877, 0.00126086245, -0.0151161421, -0.0195032321, 0.0127862105, 0.0335055552, -0.00383870443, 0.00173324184, 0.0023242489, -0.00146189006, -0.00543840136, 0.00630786363, 0.0204238389, -0.00382449757, 0.0187190119, 0.00738190534, 0.00963796116, -0.000988800311, -0.0137522798, -0.00498378044, -0.0187985711, -0.00776265049, -0.0184689704, 0.00423365645, 0.00647834642, 0.00875145, -0.00511164265, -0.0106324442, -0.00456609763, -0.0119565269, 0.00531338062, -0.0172983222, -0.00427627703, 0.000663817395, -0.00714891218, 0.011246182, 0.00358582172, 0.00794449821, -0.00431605615, 0.00331873191, 0.000367248373, 0.00323917321, -0.00147609692, -0.0036284423, 0.0207420737, -0.000657424331, 0.00662609842, 0.00984822307, 0.0151047762, 0.0246177167, -0.00484455284, -0.0130135203, -0.00168209698, 0.00718869129, 0.00930836145, -0.0212080609, 0.00842185, -0.00641583605, -0.001517297, 0.00561172562, -0.00184547633, 0.0127293831, -0.0143660177, -0.0135136032, -0.00253166957, -0.00968910567, 0.000999455457, 0.00931404345, 0.00387848378, -0.0120019894, -9.90043336e-05, 0.00801269151, -0.00710345, 0.00905832, 0.0121724717, -0.0134454099, -0.00432458054, 0.0104619609, 0.0341192931, 0.0170028191, -0.000507186342, 0.00447517354, -0.00565718766, 0.00440129777, 0.00742168492, -0.0193213839, 0.00602940843, 0.0143205551, 0.0131953694, -0.00334146293, -0.00587597396, -0.012933962, 0.00884805713, 0.0310960636, 0.0222764201, -0.00564013934, 0.0199464876, -0.0235720892, -0.0164800044, -0.0225832891, -0.00554637378, 0.0155366659, 0.0022503729, 0.0408704095, 0.0045689391, 0.0182416607, -0.00388132525, 0.000476286339, -0.0161958653, -0.0139454929, -0.000297279388, 0.0210489426, 0.00025252765, -0.00767172594, 0.0201738, 0.00952998828, -0.0258679241, 0.00569128431, -0.0205374956, 0.0190827083, -0.0105528859, 0.00838207081, 0.0106665408, -0.0113882516, -0.023594819, -0.0101209953, -0.0194464047, -0.0003178794, -0.00697274646, 0.00647266395, 0.00830251258, -0.00619989121, -0.012536169, -0.0105699338, 0.0146274241, -0.00914924406, 0.0155821284, 0.0049951463, -0.00656927051, 0.00282575237, 0.0126043623, -0.030755097, 0.0223559774, -0.0110586509, 0.00236686948, 0.017218763, 0.0153548177, 0.00212251092, 0.00302038691, 0.00258281454, -0.0105756167, 0.00807520188, 0.0195827913, 0.00394667685, 0.011553051, 0.033551015, -0.0214012749, 0.00372789055, -0.0167641416, 0.0315734148, 0.0293003116, 0.0016025384, -0.00991641637, 0.0247313716, 0.0122179342, -0.0242312886, -0.0185371637, -0.00176023494, -0.00743305031, -0.0126384581, 0.00976866484, -0.0121838376, 0.00619420828, -0.0314597599, 0.00309994561, -0.000128750034, 0.0309824087, 0.00251178, 0.0129680587, -0.000109126755, 0.0287093036, 0.0130703487, 0.00686477404, -0.0170369148, 0.0193441156, -0.0109393131, -0.0132862935, -0.00217081443, 0.0081888577, -0.00685340865, 0.0126952864, 0.0157867074, -0.0107063204, -0.00320791802, 0.0108824857, -0.00663746381, -0.00131555891, 0.00255013863, -0.0219581854, -0.00799564365, -0.0319825746, -0.0290502701, 0.00915492605, 0.0269590132, -0.0150593147, 0.0123543208, 0.0155707626, 0.00409158738, -0.0235720892, 0.0555546619, 0.0109904576, 0.0108142924, 0.00275613857, 0.0326872356, 0.00842185, 0.0165822934, -0.03582412, -1.40737102e-05, 0.0087003056, 0.0294139665, -0.000812634709, -0.0163890794, 0.0081036156, 0.00248194556, -0.0111779887, -0.0112973275, 0.00675111916, 0.000228553501, -5.11004437e-05, 0.013434045, -0.00276466273, 0.0115587339, -0.000403120794, -0.00178864878, 0.00506333914, 0.0147183491, -0.00907536782, 0.030755097, 0.0012210831, -0.00837638881, 0.00596121512, 0.00488717388, -0.0290957317, 0.00789903663, 0.024094902, 0.00295503531, 0.00785357412, -0.0258679241, -0.00884237513, -0.0102289682, -0.00159401423, 0.00893898122, -0.0194577705, -0.0105017405, 0.018321218, -0.000166842292, 0.00466554612, 0.0214467365, -0.00837070588, 0.0310733318, -0.00647266395, 0.0202874541, -0.00866052601, -0.0185257979, 0.00421376666, -0.00827978179, 0.00534179434, 0.0307323672, -0.0154798385, 0.000776407076, 0.00435867719, -0.0067397533, -0.0247313716, -0.00466838758, 0.0174574386, 0.00364549062, 0.0167414118, 0.00502640149, -0.0289593451, 0.0101266783, 0.0249359515, 0.00776265049, -0.0228219647, 0.0108995335, -0.00106338644, -0.00691591902, 0.00671133958, -0.00247484213, 0.0220718402, 0.00739895366, -0.013434045, 0.00438424945, -0.0064385673, -0.0119110653, 0.0176506527, 0.0155025693, 0.0154912043, -0.00703525683, -0.00463144947, 0.00524518779, 0.0111893546, -0.00531622209, 0.0181734674, -0.00505765667, -0.00267089717, 0.00361423544, -0.00747282943, -0.015923094, 0.00198328332, -0.00453768391, -0.00297492486, 0.00894466415, 0.0096209133, -0.0102573819, -0.0104790097, 0.0112064024, 0.00928563, -0.0195941571, -0.00214950391, -0.000193924192, 0.0104164993, 0.0207420737, -0.00681362953, 0.00799564365, 0.0127634788, -0.00870598853, -0.0109847756, 0.00578220841, 0.00701252604, 0.0081206644, -0.00891625, 0.00720005715, 0.0197305437, -0.00337271811, -0.00332157337, -0.00786494, 0.0196509846, -0.012933962, -0.0149456589, -0.00311415247, 0.0152752595, -0.0165595636, 0.0147069832, -0.0250496063, 0.00815476105, -0.00929131266, -0.0300731659, -0.0143432869, -0.00618284289, 0.0223218817, -0.00270073162, -0.0159458257, 0.00740463659, -0.00900717452, 0.00450927, 0.0119678928, -0.00397224911, 0.00106906926, 0.0135817965, -0.00913787819, 0.00349773886, -0.0154798385, -0.0139909554, -0.00663178088, -0.00592711894, -0.0076148985, -0.00123173825, 0.00168351771, -0.0140477829, 0.0156389549, 0.00567707745, 0.0199919492, -0.00976866484, -0.00902422331, 0.00247484213, 0.00612033252, -0.0158889964, -0.00195344887, -0.0175029, -0.00390973873, 0.00831956, -0.0222309567, 0.0162185971, 0.0167641416, -0.0019506074, 0.0117633138, -0.00235550408, 0.0104562789, -0.00866620895, -0.0156162251, 0.010058485, -0.0232765861, -0.0118769687, -0.00234413845, -0.00735349162, -0.00671702251, -0.0127975754, 0.00204863492, 0.00669429125, 0.000819738139, 0.0218672603, 0.0134454099, -0.00645561563, -0.0198896602, 0.00090782094, 0.00494400132, -0.0146046933, -0.029459428, 0.0171733014, 0.00197049696, -0.0124793416, 0.0143660177, -0.0194350388, -0.0365969762, -0.0162413288, -0.0349148773, 0.0123088583, -0.016025383, 0.00896171294, -0.0142750936, -0.000918476086, -0.00647834642, -0.0090469541, 0.0103710368, 0.0257315375, -0.00123244862, 0.00554069132, 0.0283228755, 0.0225491915, -0.0242994819, 0.000260163855, -0.00209125574, -0.00456041517, -0.00432458054, 0.00460303575, 0.00404044241, 0.0022390075, -0.0101209953, 0.00767172594, -0.0553728156, -0.0099959746, -0.000850282959, 0.0121838376, -0.00903558824, 0.000122356927, -0.00721142255, -0.0248904899, -0.0143205551, -0.0293912347, -0.0206056889, -0.00161816599, 0.0237312056, 0.0117292171, 0.0148888314, -0.0262316205, -0.00496957358, -0.00547818094, -0.00243648328, 0.0134567758, -0.0135590658, 0.0029664007, 0.00231714547, -0.00344943535, 0.00510027725, -0.0153889144, 0.00519120134, 0.00604077382, -0.0160481147, 0.00957545079, -0.00755807105, 0.000966779538, 0.00479056686, 0.0219695512, -0.00829114672, -0.0220491085, -0.00050292426, -0.0370515957, 0.00135391764, -0.0246631783, 0.00469396, -0.000446451828, 0.0008872209, 0.00225889706, 0.000832524325, 0.0214467365, -0.00283001456, -0.00902990624, -0.00570264971, 0.00776833296, -0.0136158932, 0.00161248317, -0.00925721601, -0.000811214, -0.0347103, 0.0132294651, 0.0136840865, 0.00874576811, 0.000349667331, 0.0319371112, 0.00103994505, -0.0341420211, 0.0074557811, 0.0256178826, 0.022287786, 0.0155480318, -0.0135022383, 0.0076035331, -0.00131626928, 0.0060009947, -0.0128657687, -0.0123088583, -0.0151843354, -0.00606350508, 0.00209978, 0.0128998654, -0.018514432, -0.00265242835, 0.00173608318, -0.00105699338, 0.00568560138, 0.01910544, -0.00956408493, 0.0105642509, 0.00472237356, 0.00627376698, 0.0173892453, 0.00214808341, 0.0242540203, -0.0241176337, 0.0157412458, 0.0117974095, -0.0156730525, 0.0112575479, 0.0112120854, 0.00715459511, -0.0170596465, -0.0112802787, -0.000422655285, 0.0129907895, -0.0133772176, 0.0029067318, 0.00563729787, 0.00100087607, 0.011246182, -0.013434045, 0.00329315942, -0.004628608, 0.0068875053, -4.04008715e-05, 0.026572587, 0.00287405588, -0.0067283879, -0.0123315891, 0.00440698024, 0.0204806682, 0.000736627786, 0.00833660923, -0.00863211229, 0.0200715084, -0.0030402767, -0.00931972638, -0.00763762975, 0.00645561563, -0.006518126, -0.0159912873, 0.0140932454, -0.00834797416, 0.00465702172, 0.00240806956, 0.000737338094, -0.00303175254, -0.00851845741, -0.00248762826, -0.00647266395, -0.0323917307, 0.00504629081, -0.00866052601, 0.0144455759, 0.0102744298, -0.00821158849, -0.0106722238, 0.0147069832, -0.0140136862, -0.0151729695, 0.00560888415, -0.0104903756, 0.00552080153, 0.0157412458, 0.00200317288, -0.0442800671, 0.00915492605, 0.0210830402, -0.0258451924, 0.0113541549, -0.0275272895, 0.0113143753, -0.00442118756, -0.0142864585, -0.00825705, -0.00901285745, 0.0101664579, 0.00614306377, 0.0216740463, -0.0152866244, 0.00583051192, -0.0144114792, -0.012843038, -0.0031908697, -0.00116780715, 0.0142409969, 0.0119792586, 0.0184689704, -0.0185371637, -0.0140932454, -0.0205488596, 0.0119678928, -0.0162640586, 0.00212819362, 0.00642151898, 0.00216797297, -0.0127634788, -0.0108256582, 0.000853834732, 0.0287774969, -0.0156389549, 0.0214467365, -0.0117746787, -0.0101380441, -0.0184235089, 0.0198896602, 0.0212421566, -0.0176392868, 0.00366253895, -0.0219468195, 0.00781947747, 0.00511164265, 0.00719437422, -0.00818317477, 0.00668292586, -0.0123543208, -0.0221627653, 0.0160935763, 0.00742168492, 0.00813202932, -0.00302891107, 0.0108711198, 0.0118201412, 0.00452631852, -0.00712618139, -0.00128998654, -0.0214467365, -0.0143660177, 0.0434844792, 0.0183894113, 0.0113825686, 0.00299765589, 0.00311131123, -0.00739895366, 0.00592143601, 0.0350512639, 0.0043387874, -0.00959818158, -0.00317098014, 0.00588733936, 0.0265271235, -0.00360002858, -0.0159003623, -0.0500537492, -0.00989936851, -0.0111382101, -0.0167527776, 0.0206511505, -0.00543840136, 0.0081206644, 0.00625103619, 0.0089787608, 0.00991641637, -0.0118087754, 0.0203670114, 0.0030459594, 0.025777, -0.0154684726, -0.0076830918, 0.00459735282, 0.00066239672, 0.0140818795, -0.00181280042, 0.0378699116, 0.00827409886, -0.00325338, 0.00577652548, 0.0066601946, 0.0175938252, 0.00743873278, -0.00721710548, -0.0217308737, -0.00164089701, -0.00876281597, -0.00206142128, 0.0133317551, -0.00510880118, -0.0283683389, 0.0060009947, 0.00573390489, -0.0209693853, 0.00447801501, -0.017821135, -0.00759785, 0.0129225962, 0.00367106311, 0.0110586509, -0.00475078728, 0.00408874592, 0.0131840035, -0.00518836, -0.00264816615, 0.0143546518, -0.00682499493, -0.00868894, -0.0115757827, -0.0141046103, -0.024094902, 0.0274363663, 0.000318057, 0.0248677582, 0.02229915, -0.00442118756, 0.0183098521, -0.0231515653, -0.00231288327, -0.0207875371, 0.00558615336, 0.0158662666, -0.00525655318, -0.0196964461, -0.0146387899, 0.00984254, 0.00850141, -0.0513721518, 0.0153775485, 0.019014515, 0.00649539474, -0.0100243893, -0.00808088481, 0.0144455759, -0.00594416726, 0.00180427637, -0.0102119194, 0.00506333914, -0.028663842, 0.0256406143, -0.0139568588, -0.0127521139, -0.00379040092, -0.0113143753, -0.017809771, 0.00626240158, -0.0100812167, -0.00701252604, -0.00419671834, 0.00834229216, 0.0202192608, 0.00689887069, 0.000886510592, -0.000104331921, -0.0219695512, 0.00610896712, -0.00730234664, 0.0108427061, 0.00363980792, -0.00842185, -0.00369095267, -0.00649539474, -0.00712618139, -0.00495252525, -0.00602940843, -0.0188099351, 0.0103824027, 0.0232083928, 0.00896739587, 0.00322780781, -0.0342784077, -0.0119678928, 0.00357445609, 0.00767740887, -0.00280870427, 0.0190372467, 0.02468591, 0.00421660813, -0.0157753415, -0.0123884166, -0.00926289894, 0.0183553156, 0.0128544029, 0.00100868987, -0.0180598125, 0.00132550381, -0.00373073202, 0.00316813868, 0.0113086924, -0.0182075631, 0.000482324249, -0.00381597341, 0.0184917022, 0.00411147671, 0.0238675922, -0.00316529744, -0.0217081439, 0.00430753222, 0.0192304607, -0.00315677328, -0.0186962802, 0.0016295315, 0.00900717452, -0.00138446246, -0.00583051192, 0.0198896602, -0.00549238781, 0.00996756088, 0.0208670944, -0.0151161421, -0.00323917321, -0.0121611068, 0.00217791786, 0.0200487785, 0.00033421733, 0.00614874624, -0.0103994505, 0.0165822934, -0.0150365829, 0.0196509846, -0.0214694683, -0.00981980935, 0.00211398676, -0.00858096778, -0.0243222136, 0.017809771, -0.017616557, 0.0164118111, -0.00721142255, -0.0131953694, 0.0183780454, 0.0155934934, 0.0245949849, -0.00721710548, -0.0284819938, -0.00272630411, -0.00943338219, -0.0115132723, 0.0181734674, 0.00840480253, 0.00988232, 0.001741766, 0.0222536884, 0.0159344599, 0.00409442885, 0.0122633958, -0.0162867904, 0.00589302229, -0.00808088481, -0.000858807121, 0.0150934104, 0.0160367489, -0.00192787638, -0.00850709155, -0.0187076461, 0.0155480318, 0.0261179656, 0.012740748, 0.012740748, -0.00692160195, 0.0312551819, -0.0101153133, 0.00496673211, 0.0130476169, -0.025481496, 0.00614874624, -0.00134184177, -0.0110359201, 0.0172869563, -0.0272317864, -0.00926858187, 0.01910544, -0.0165368319, -0.0234357025, -0.0273454413, 0.0117633138, 0.00415978, 0.00663746381, 0.00808088481, 0.00435583573, 0.00334430439, 0.00377051136, -0.00923448522, -0.0145024033, 0.00427627703, 0.00258423504, 0.00148320035, -7.29768499e-06, -0.000570407, -0.0211285017, 0.00517983595, 0.00815476105, 0.00365401478, 0.0223105159, 0.0343238711, -0.0120929135, 0.00232993159, -0.0148774656, 0.00599531177, 0.00975729898, 0.00523098046, 0.0260497723, -0.00763762975, 0.0149911214, -0.0022390075, -0.0262998138, 0.000868041592, 0.0138204722, 0.00747851236, -0.0181621015, 0.00531906355, -0.0149001973, -0.0053645256, 0.0195486955, 0.00555773918, 0.012240665, 0.0105187893, -0.0256633442, -0.00831956, -0.015127507, -0.00546965655, 0.00295787654, 0.00180569699, -0.0286183804, 0.0142296311, -0.00702957436, -0.0147751765, 0.0242085587, -0.00177302118, 0.00657495344, -0.00937087182, 0.016423177, 0.00738758827, 0.0108881686, -0.0295048896, 0.0223559774, 0.03164161, -0.019207729, 0.0159344599, -0.0111154784, 0.0231515653, -0.0147524448, -0.00855823699, -0.0127975754, 0.00278739375, 0.00899012666, 0.00213813852, -0.0182984881, 0.00511732558, -0.0156162251, -0.0083309263, -0.0100869, -0.00967205781, -0.00357161462, -0.0132749276, 0.0150138522, 0.0139909554, 0.022696944, 0.00234840065, 0.0198896602, 0.00298060756, 0.0192304607, -0.000866620918, 0.0134226792, -0.0140136862, -0.011052968, -0.0115814647, 0.00326758716, 0.00247058, 0.0223673433, 0.0144796725, 0.0152525278, 0.0226060189, 0.000371510454, 0.017025549, -0.00237397314, 0.00516278762, 0.0192418266, -0.00347216637, -0.0089787608, -0.0348921455, 0.0126384581, 0.0125248032, -0.00327042839, 0.00192219357, 0.0198441986, -0.00236402825, -0.0211626, 0.00406885613, 0.0113939336, 0.00585892564, 0.0162413288, -0.0162185971, -0.00367674581, -0.00296355947, -0.0239812471, -0.0130021553, 0.015832169, 0.0131953694, 0.00518551841, -0.0211398676, -0.00364833209, -0.0197305437, 0.00652380846, 0.0030516421, -0.0277318694, 0.00570549117, -0.0170141831, -0.00703525683, 0.000916345045, -0.003259063, -0.0112064024]
02 Aug, 2018
unordered_multiset bucket_size() function in C++ STL 02 Aug, 2018 The unordered_multiset::bucket_size() is a built-in function in C++ STL which returns the number of elements in the bucket which has the element val. It will always be lower than the bucket_count. The number of elements in a bucket influences the time it takes to access a particular element in the bucket Syntax: unordered_multiset_name.bucket_size(val) Parameters: The function accepts a parameter val which specifies the element whose size of the bucket is to be returned. Return Value: It returns an unsigned integral type which denotes the number of elements in the bucket which has the element val. Below programs illustrate the above function: Program 1: // C++ program to illustrate the // unordered_multiset::bucket_size() function #include <bits/stdc++.h> using namespace std; int main() { // declaration unordered_multiset<int> sample; // inserts element sample.insert(11); sample.insert(11); sample.insert(11); sample.insert(12); sample.insert(13); sample.insert(13); sample.insert(14); for (auto it = sample.begin(); it != sample.end(); it++) { cout << "The bucket size in which " << *it << " is " << sample.bucket_size(*it) << endl; } return 0; } Output: The bucket size in which 14 is 1 The bucket size in which 11 is 3 The bucket size in which 11 is 3 The bucket size in which 11 is 3 The bucket size in which 12 is 1 The bucket size in which 13 is 2 The bucket size in which 13 is 2 Program 2: // C++ program to illustrate the // unordered_multiset::bucket_size() function #include <bits/stdc++.h> using namespace std; int main() { // declaration unordered_multiset<int> sample; // inserts element sample.insert(1); sample.insert(1); sample.insert(1); sample.insert(2); sample.insert(3); sample.insert(4); sample.insert(3); for (auto it = sample.begin(); it != sample.end(); it++) { cout << "The bucket size in which " << *it << " is " << sample.bucket_size(*it) << endl; } return 0; } Output: The bucket size in which 1 is 3 The bucket size in which 1 is 3 The bucket size in which 1 is 3 The bucket size in which 2 is 1 The bucket size in which 3 is 2 The bucket size in which 3 is 2 The bucket size in which 4 is 1 Learn C++ Online – Master everything from basics to advanced concepts. Apply your knowledge with practical exercises and boost your skills. Take the Three 90 Challenge: finish 90% in 90 days for a 90% refund. Start now and level up your C++ programming!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum/Algorithm for Dynamic Time out timer Calculation/Difference between Round trip time (RTT) and Time to live (TTL)/Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms/Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm/Round Robin Scheduling Algorithm with Different Arrival Time/Selfish Round Robin CPU Scheduling/Find the order of execution of given N processes in Round Robin Scheduling/Calculate server loads using Round Robin Scheduling/set::lower_bound() Function in C++ STL/Implementation of lower_bound() and upper_bound() in List of Pairs in C++/Difference between std::set::lower_bound and std::lower_bound in C++/Difference between std::set vs std::vector in C++ STL/std::minmax() and std::minmax_element() in C++ STL/std::rotate vs std::rotate_copy in C++ STL/std::bitset::to_ullong and std::bitset::to_ulong in C++ STL/std::upper_bound and std::lower_bound for Vector in C++ STL/std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++/std::string::append vs std::string::push_back() vs Operator += in C++/Vector push_back() in C++ STL/vector :: cbegin() and vector :: cend() in C++ STL/unordered_multiset cend() function in C++ STL/unordered_multiset bucket() function in C++ STL/unordered_multiset emplace_hint() function in C++ STL/unordered_multiset end() function in C++ STL/unordered_multiset size() in C++ STL/unordered_multiset emplace() function in C++ STL/unordered_multiset find() function in C++STL/unordered_multiset erase() function in C++ STL/unordered_multiset clear() function in C++ STL/unordered_multiset swap() function in C++ STL/unordered_multiset bucket_size() function in C++ STL
https://www.geeksforgeeks.org/unordered_multiset-bucket_size-function-in-c-stl?ref=asr8
PHP
unordered_multiset bucket_size() function in C++ STL
unordered_multiset clear() function in C++ STL, What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, jQWidgets jqxTreeMap width Property, Round Robin Scheduling Algorithm with Different Arrival Time, Difference between Flow and TypeScript, unordered_multiset emplace() function in C++ STL, jQWidgets jqxTree destroy() Method, jQWidgets jqxTree collapseAll() Method, Find the order of execution of given N processes in Round Robin Scheduling, jQWidgets jqxScrollView buttonsOffset Property, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Vector push_back() in C++ STL, jQWidgets jqxListBox enableHover Property, Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm, std::rotate vs std::rotate_copy in C++ STL, Selfish Round Robin CPU Scheduling, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxSlider buttonsPosition Property, std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++, std::upper_bound and std::lower_bound for Vector in C++ STL, Difference between Round trip time (RTT) and Time to live (TTL), jQWidgets jqxSlider rtl Property, Difference between std::set::lower_bound and std::lower_bound in C++, jQWidgets jqxTooltip opacity Property, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, unordered_multiset erase() function in C++ STL, jQWidgets jqxToolBar height Property, PHP, std::minmax() and std::minmax_element() in C++ STL, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, Node.js date-and-time Date.transform() Method, unordered_multiset size() in C++ STL, TypeScript Optional Parameters, jQWidgets jqxToolBar theme Property, Difference between std::set vs std::vector in C++ STL, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, Steps to Diagnose and Resolve a Slow Network, How to use Optional Chaining with Arrays and Functions in TypeScript ?, Calculate server loads using Round Robin Scheduling, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, jQWidgets jqxScrollView showButtons Property, Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms, jQWidgets jqxScrollView disabled Property, jQWidgets jqxSplitter destroy() Method, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, set::lower_bound() Function in C++ STL, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, jQWidgets jqxTree collapseItem() Method, std::string::append vs std::string::push_back() vs Operator += in C++, unordered_multiset swap() function in C++ STL, unordered_multiset cend() function in C++ STL, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), jQWidgets jqxSortable opacity Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, vector :: cbegin() and vector :: cend() in C++ STL, jQWidgets jqxSlider height Property, jQWidgets jqxSwitchButton onLabel Property, unordered_multiset bucket_size() function in C++ STL, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, jQWidgets jqxToolBar tools Property, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTree width Property, Implementation of lower_bound() and upper_bound() in List of Pairs in C++, jQWidgets jqxTree clear() Method, TLS Handshake?, Algorithm for Dynamic Time out timer Calculation, Adhoc TCP, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, jQWidgets jqxTabs position Property, Differences between Wireless Adhoc Network and Wireless Sensor Network, jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, std::bitset::to_ullong and std::bitset::to_ulong in C++ STL, unordered_multiset emplace_hint() function in C++ STL, unordered_multiset find() function in C++STL, unordered_multiset bucket() function in C++ STL, Impact of Three-way Handshake and Slow Start Algorithm, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, unordered_multiset end() function in C++ STL, How to Sort an Array Having Optional Properties in TypeScript ?
GeeksforGeeks
[-0.00872003473, 0.00874161907, -0.0123893572, 0.0210086647, 0.0505071357, -0.024044849, -0.0106698116, 0.03177201, -0.0130368844, 0.0172098391, -0.0251672305, 0.0190085247, 0.0126339784, -0.00655441592, -0.00657240255, -0.0144542493, -0.0191524196, 0.00129325606, -0.00648246845, -0.0161306262, 0.0313115455, 0.00976327341, -0.0404344872, 0.00605797814, -0.0338441, 0.0275702756, -0.0307647437, 0.00900782552, -0.000616500038, 0.00293545728, -0.0221742149, 0.0216274131, -0.0171810593, -0.0200733487, 0.00318367616, 0.0238146167, 0.00956182089, 0.0398876853, -0.0294121318, 0.00062414445, 0.000974888389, 0.0245916508, 0.0177998077, 0.0080653131, 0.000355690368, 0.0131520005, -0.00264586881, -0.00298402202, -0.0321173556, 0.0237426702, 0.00779191265, -0.00218720362, 0.03686589, 0.0288077723, 0.0150658032, -0.006209068, -0.00496797403, 0.0387365259, 5.78952422e-05, -0.0152384769, -0.0155694354, -0.0317144506, 0.0153104244, -0.00784947071, -0.0210518334, -0.0235699955, -0.019224368, 0.062220186, 0.0558024682, -0.0232246481, -0.0309374183, 0.0541620664, 0.0279156249, 0.00990716834, -0.0291531216, 0.000868316216, -0.00634936569, -0.0272968765, -0.0257428102, 0.0441181958, -0.0314554386, 0.0318583474, -0.0208216012, -0.0216705818, -0.00978485774, -0.00979205221, -0.0143463286, -0.0219439827, 0.0136484383, 0.0384487361, -0.0188214611, -0.0156126041, 0.022836132, -0.00767679652, -0.0226059, 0.0523777679, 0.0286207087, 0.0128642106, -0.00102165423, 0.0374990292, -0.00364054274, -0.00727029331, 0.0125116678, -0.0186344, 0.0140441488, 0.01228863, 0.0291387308, 0.00174292782, 0.0174688492, -0.00892868266, 0.0650980845, 0.0242031347, -0.0118929194, 0.0367507748, -0.0271673705, 0.000105953914, -0.000332981959, -0.0137923332, 0.0171235017, 0.0171954483, 0.0190660842, 0.0256708618, 0.011820972, -0.0267644636, -0.0611265823, 0.00367112039, 0.00684220577, 0.0174832381, 0.0174544603, -0.0233109854, 0.00760484906, -0.0119216982, -0.0106410328, -0.0663068, -0.0386501886, 0.00573061733, 0.0312539861, 0.0262176637, -0.00612632837, -0.0319734626, -0.0703934208, -0.0133246742, -0.000669111614, 0.0119864512, -0.0250089448, -0.00764082279, -0.0126411729, 0.0225915108, -0.00389235886, 0.0252967365, 0.0174256805, 0.00897185132, 0.0370961241, 0.0367507748, 0.0198287275, -0.00555794314, 0.00198754924, 0.0148643507, 0.0160299, -0.0139650069, 0.0443772078, 0.00340671348, 0.00405064318, -0.0132095581, -0.00433123857, 0.0389379784, -0.00140207657, 0.0175264068, -0.0425641313, 0.0332109593, 0.0215554666, 0.0166054796, -0.000902491272, 0.0231958684, 0.00545721687, -0.0112381969, 0.0430533737, 0.025498189, 0.00973449461, 0.0211237818, 0.00246600015, 0.0175407976, 0.0241311863, -0.00959779415, 0.00854736101, 0.0112453923, 0.0196704417, -0.000489692553, 0.0441469774, 0.0303618386, 0.0036657243, 0.0238577854, 0.0219295938, 0.0483199321, 0.0411251821, 0.0166342594, -0.0406647176, 0.00167098036, -0.0225915108, 0.0282753613, -0.0250089448, 0.0011610525, -0.0281314664, 0.0298438165, 0.0200733487, 0.0175264068, -0.0178285874, 0.00440678326, 0.026044989, 0.00609395187, -0.0225483421, 0.0185912307, 0.00504351873, 0.00852577668, -0.0306208488, 0.0260306, -0.0519748628, 0.0452693589, 0.00720194308, -0.0341606662, 0.0204186961, -0.0203467496, 0.0191092528, -0.0474853404, -0.0273976028, -0.0290811732, 0.0529533476, 0.00731346197, 0.00259190821, -0.0235268269, 0.0499891117, 0.000387841923, -0.0509100407, -0.00166648359, 0.0619899519, -0.0357147306, -0.0431109332, 0.00189221883, -0.00920927804, 0.00447513349, -0.0143319387, 0.0865096524, -0.015626993, -0.0184041671, 0.00923086237, 0.0106626172, -0.0139865912, -0.0472263284, 0.0112166125, -0.00532411365, 0.00898624118, 0.00696811406, 0.0319734626, -0.0231814794, 0.0279731825, 0.029109953, -0.0178573653, -0.0163608585, 0.00268364116, -0.0304769538, 0.0171378907, 0.0426504686, -0.0399740227, 0.00387077476, -0.00223756675, 0.0018562451, 0.0422763415, -0.0283616986, -0.0382185057, -0.0457586, 0.00277537433, -0.0250808932, -0.00199654279, -0.00353442016, 0.00411539618, 0.0191524196, -0.0172673967, 0.00419094088, -0.0127850678, -0.00358838076, 0.0176846925, -0.019238757, 0.00863369834, 0.0366356596, 0.0182602722, -0.0119432826, -0.0181019865, -0.00793580711, -0.00797897577, -0.0496437661, -0.0334987491, 0.00643210532, -0.0050363238, -0.00795019697, 0.0049140132, 0.0278436765, -0.0173105653, -0.0296135843, -0.0469385386, -0.034189444, -0.0300164912, -0.0287933834, -0.0176559128, -0.0364917628, -0.00770557579, -0.0127850678, 0.0109216282, -0.014821182, 0.0092812255, -0.0363766477, -0.000670460635, -0.0401754752, -0.0525504425, -0.00834590849, -0.0195265468, -0.0332972966, 0.032031022, 0.0280163512, -0.0458449386, -0.011482819, -0.0184617247, -0.000403805258, -0.0128066521, 0.0488667302, 0.0208503809, 0.00824518129, -0.0235124379, 0.0642347112, -0.00247499347, -0.0515719578, 0.00043325877, 0.0175264068, -0.0494423099, -0.0119001139, 0.0037736455, -0.0575579889, -0.0105259167, 0.0201452952, -0.00866247714, 0.0484638251, 0.0073962016, 0.0116842715, -0.0259298738, -0.00486005237, 0.00362795196, 0.0189509671, 0.00166198693, -0.0230663642, 0.006910556, 0.0401179157, 0.0012482889, -0.00257931743, 0.0141880438, 0.0135045424, 0.0370097868, -0.00711560622, -0.00156305905, -0.0215266868, -0.00184005697, -0.0132383369, -0.0430245958, 0.0282178037, -0.0229080785, 0.0148643507, 0.011612324, -0.00963376835, -0.00202352297, -0.0443484299, 0.0279875714, -0.0352542661, 0.00769838085, 0.00520899799, 0.0368371122, -0.000476202404, -0.0270810332, 0.00794300251, 0.0190373044, 0.00405424088, -0.0112813655, -0.00596804405, 0.000422241807, 0.0411827415, 0.0165335312, -0.00869125593, 0.00965535268, -0.00381681416, -0.0236419439, 0.00862650387, -0.000381546502, 0.0307935234, -0.0306496285, -0.0287358258, 0.0255989153, -0.0159147829, -0.00444635469, 0.0080940919, -0.0246204287, -0.0396862328, -0.0573565364, -0.0477731302, 0.0231383108, -0.00627382053, -0.0172817856, -0.0270090848, -0.0138714751, -0.0110223545, 0.00251636328, -0.0217281412, -0.00905099325, -0.00344268722, 0.0313115455, -0.0273112655, 0.00030397813, 0.0265342332, 0.00787824951, -0.0162889101, -0.0372112393, -0.00113946828, 0.00557593023, -0.0200014, -0.0221022666, 0.00676306337, -0.0223037209, 0.00627741823, -0.00589969382, 0.0172530077, -0.0259874314, 0.0169508271, 0.0080940919, -0.0515719578, -0.00496437633, 0.0355708376, -0.000827396056, 0.0350240357, 0.012821042, -0.0497013219, 0.03177201, -0.00419453857, -0.0184473358, -0.0338153169, 0.0343908966, 0.0422763415, 0.00918049924, -0.0364342071, 0.00131124293, 0.022706626, -0.0233829319, -0.0260018203, 0.00844663475, 0.0232534278, -0.0378155969, -0.000355465541, -0.0227641836, 0.0244333651, 0.0216274131, -0.027383212, 0.0278148968, -0.0102381269, 0.0256996416, 0.00582774635, -0.0413266346, 0.0104683591, -0.0139865912, 0.033786539, 0.0092236679, 0.031110093, 0.0109144337, 0.0321749151, -0.0187063459, 0.0145765608, -0.0105834752, -0.0263615586, 0.0242319126, -0.0081588449, 0.0168357119, -0.0237138905, -0.00963376835, 0.00570543576, -0.0194833782, -0.000199654271, 0.0358298458, -0.00921647251, -0.0279156249, 0.00373767177, -0.00856894534, -0.0153679829, -0.000861121458, -0.00907257758, 0.000799966103, -0.0209654979, -0.0257428102, -0.000567935465, -0.0309949759, -0.0263327789, 0.0157277193, 0.0292394571, -0.0218576454, -0.0201021265, -0.00644289702, 0.00705445092, 0.0270666443, -0.00327181187, -0.0541908443, 0.0448952317, 0.0193250943, -0.0447513349, -0.000404704595, 0.0365781, -0.040204253, -0.0203179698, 0.0108280964, 0.0480609201, -0.017756639, 0.00263147918, -0.0265342332, 0.00134361931, 0.0341318883, -0.00596444635, -0.0216274131, 0.00208108104, 0.0216274131, 0.017900534, -0.00269803079, 0.0347938053, 0.0210230555, 0.0166054796, -0.0252967365, 0.0131879738, 0.00231670891, -0.0290667843, -0.0151233617, 0.00834590849, -0.0355996154, -0.00563708553, -0.0118641406, -0.00541764544, 0.0147132603, 0.0132023636, -0.00892868266, 0.0176846925, 0.00807250757, -0.00889270939, 0.0211813394, 0.0199438427, -0.0358874053, 0.0158572253, 0.0184905045, 0.00857614, -0.0216130242, -0.0109432125, 0.0190229155, 0.000833241793, -0.00331138307, -0.0169508271, -0.000368056353, 0.0311388709, -0.00466579432, -0.00782069191, 0.0353406034, -0.0117921932, -0.0134038161, 0.0304193962, 0.0345347933, 0.0393408835, 0.00717316428, -0.0127418991, 0.000897544844, 0.0172673967, -0.0262464415, 0.00410100678, 0.00672349241, -0.0174544603, 0.0314266607, -0.00651484495, -0.00494998693, 0.0176271331, 0.00275558862, -0.0011808381, -0.0216705818, -0.00469097588, 0.0176271331, -0.0151089719, 0.00339232385, -0.0111014973, -0.0205338113, -0.018691957, -0.0431972705, -0.016965216, -0.0303618386, -0.00324663031, 0.00247679208, 0.0161881838, -0.00275379, -0.00391754042, 0.00608315971, -0.00319087086, -0.00119702623, -0.00674507674, -0.0131376106, -0.00612273114, 0.0250521135, -0.00976327341, -0.012353383, -0.0164471958, -0.0104971379, 0.0110655231, 0.0250233356, 0.0263903365, -0.00954023656, 0.0017348337, -0.0549103208, -0.00938195176, 0.0469673164, 0.00300200889, 0.0117706088, 0.0210662242, -0.0108712651, 0.0276710019, -0.00732425414, -0.00362255587, -0.0139146438, -0.0166774262, -0.0157996677, 0.00680623204, 0.012821042, 0.00521259522, -0.0280307401, -0.0197136104, 0.0104683591, -0.0220015403, -0.00443196483, -0.0368083343, 0.00723431958, -0.0185048934, 0.00932439417, 0.0175120179, -0.0321173556, 0.0170227755, -0.0175695755, 0.0172386169, -0.00229332596, 0.0107129803, 0.00930281, 0.0432548262, -0.00682421913, 0.0103748273, -0.0198287275, 0.027383212, 0.01101516, -3.0156114e-05, -0.0273688231, 0.0303330589, 0.0237426702, -0.00355960173, 0.0022141838, -0.0195984952, -0.0203899164, -0.0034696674, 0.0196560528, 0.00462982059, -0.0465644114, -0.0507085882, 0.00110349455, -0.00659038965, 0.00974168908, -0.0115259867, -0.0219439827, -0.0191236418, 0.0093459785, 0.00533130858, -0.0163464677, 0.00447873073, 0.0299877115, -0.0043959911, -0.0164471958, -0.0139650069, -0.0159147829, 0.0153248142, -0.00478091044, -0.0229512472, -0.0146341184, -0.0273544341, 0.00536728231, -0.0228936896, -0.0115259867, -0.00720913801, 0.00943951, 0.034707468, -0.00458665192, -0.0300164912, -0.00554355374, -0.0263903365, 0.041815877, 0.0323763676, 0.0166054796, 8.30768622e-05, 0.0249082185, 0.0208647698, -0.00620187307, -0.0163608585, -0.0157133304, 0.00621626247, -0.0180732086, -0.0426504686, 0.0171954483, 0.0271385908, -0.00729187764, -0.0116626872, -0.00452189939, -0.00512625836, 0.00310813123, 0.0168069322, -0.0182602722, -0.00586012285, -0.00613352284, -0.0134397903, -0.00513705052, -0.0226490684, 0.00243542227, -0.0421900041, -0.00613712054, -0.0167781543, 3.45966218e-05, -0.00418374641, 0.0275990553, -0.0049140132, 0.0171235017, -0.0174256805, 0.00782069191, -0.00389595632, -0.00641771546, -0.0145909498, 0.0211237818, 0.00123839604, -0.030448176, 0.0370673425, 0.0137419691, -0.0225339513, -0.038880419, -0.0145837553, -0.00872723, -0.00166828232, 0.0121519305, 0.0157277193, -0.026850801, 0.0087919822, 0.0237570591, -0.00164939603, -0.0360600799, 0.0284192562, 0.00109629985, 0.0541332886, 0.0186487883, -0.00636735233, -0.0123317987, -0.0245484821, 0.027512718, -0.00264407, -0.0184041671, -0.00695732189, 0.0267644636, 0.0112310024, 0.00373767177, 0.0242750812, -0.0218864251, -0.00823079236, -0.03286561, 0.0258435365, 0.0207496546, -0.00681342697, -0.00671629747, -0.0105259167, 0.00471975515, -0.00820201356, 0.000923625834, -0.0265054535, -0.00330598699, 0.0116411028, -0.0114252605, 0.0141520705, -0.0207928233, 0.0255989153, 0.00768399145, 0.0251960084, -0.01028849, 0.00821640249, 0.0262176637, 0.0178717561, 0.0363766477, -0.00520540029, -0.015886005, 0.00169616193, 0.0128714051, 0.0363478698, 0.0246060397, -0.0250952821, -0.00576299336, -0.0397725701, -0.0154543193, -0.0245484821, 0.0323475897, 0.00129325606, -0.0211093929, 0.00369090587, -0.0141664594, -0.030304281, 0.00532051641, 0.0115331821, 0.0187063459, 0.0319159031, -0.0195697155, 0.00269263471, -0.0165191423, 0.0190660842, 0.0132095581, -0.00677745324, 0.014821182, -0.00124199351, 0.0177134704, 0.00259370683, 0.0292538479, 0.000140859687, 0.00385998259, -0.0134973479, -0.0514568426, 0.0131448051, 0.0438591875, 0.0130368844, 0.00286710728, -0.0245053135, 0.0128498208, 0.0153967617, -0.00725950114, 0.0301028267, 0.0103388531, 0.0209798869, 0.0262176637, -0.0275702756, -0.0141089018, 0.0624504164, 0.0143751074, 0.000236977023, -0.0253542941, -0.00679544, 0.00417295424, -0.0209942758, -0.0189797468, -0.00307035889, -0.0168357119, -0.00312971557, -0.00385278789, 0.0168501, -0.00532411365, -0.014562171, 0.00453628879, 0.0223181099, -0.0187351257, -0.0368371122, -0.0114684291, 0.0441469774, 0.00356859528, -0.00658319471, 0.0215698555, 0.0190373044, 0.0283904783, 0.0309374183, -0.00496437633, -0.0334987491, -0.0133102844, -0.0236131642, 0.00462622335, -0.00266025821, -0.00520180305, -0.00970571581, 0.00247319485, -0.0161306262, -0.0223612785, 0.00677745324, -0.00791422371, -0.0068170242, 0.0062522362, -0.00999350566, -0.0469385386, -0.0502193458, -0.00156395847, -0.00017885695, 0.0182602722, -0.009950337, -0.0203179698, -0.0319446847, 0.00509028463, -0.0105546964, 0.00443196483, -0.0148499608, -0.00279156235, 0.0181307662, 0.00153877679, 0.0128354309, 0.00855455548, -0.0519748628, 0.000636735233, -0.0281458553, -0.019353874, -0.00704365876, 0.0279012341, 0.0146988714, 0.0136556327, 0.042995818, 0.00719474861, 0.00732785137, 0.018015651, 0.0081300661, -0.0365493223, -0.066652149, -0.0186775662, 0.00535649, -0.0186631773, -0.00786386, -0.00582414865, 0.0150082456, 0.0306496285, 0.0117274402, 0.0434850603, 0.0145046134, 0.00144524511, -0.0131160263, -0.000419318938, 0.00119522761, -0.0125260567, -0.00327900657, -0.0250952821, 0.00693214033, 0.0120727876, -0.00606877031, -0.00884954073, -0.00755448593, -0.00833871309, -0.00302359299, -0.0709114373, 0.0239729024, 0.00144434581, -0.00837468728, 0.0160442889, 0.00271781627, -0.0467658639, -0.00304697594, -0.035110373, -0.019900674, -0.015626993, -0.00231311168, -0.0398876853, 0.00716956705, 0.0154399304, -0.0188502409, -0.0285343733, -0.0202604122, -0.0136484383, 0.000157160292, 0.0109863812, 0.00813726056, -0.00384559296, -0.00703286659, -0.0105043324, -0.00554715097, 0.00261888839, -0.00131304155, 0.00735303294, -0.0075041228, -0.00885673519, 0.014353523, -0.000439554162, -0.0270090848, 0.0415856466, 0.035542056, -0.0166198686, 0.0328080542, -0.0170659442, -0.0219295938, 8.34141174e-05, -0.000644829357, 0.0408373922, 0.0102812955, 0.00380961923, 0.00761923846, 0.00990716834, 0.0236995015, 0.020692097, -0.0061299256, -0.0389379784, 0.0232822057, 0.00841066055, -0.00303258654, 0.0298438165, -0.0364917628, 0.031110093, 0.0409525074, 0.0328368321, -0.0210230555, 0.000747354468, -0.0493271947, -0.0197567791, 0.0118353609, -0.0010333457, -0.0126843415, 0.0531548, -0.0182602722, -0.00716596935, 0.0213108454, -0.039801348, 0.0141808493, 0.00652203942, -0.0483487099, -0.00401466945, 0.030448176, 0.00923086237, 0.0160874575, -0.0176271331, -0.00895026699, 0.0378731564, 0.0141448751, -0.0192963146, -0.00624863897, -0.0412690789, 0.0275271069, 0.00731705921, 0.0222317725, 0.0175839644, -0.0146628972, 0.0272393171, 0.0122958254, 0.0123461885, -0.0196128841, -0.00704365876, 0.0294984691, -0.00450391276, -0.000919578772, 0.000219552239, -0.034448456, 0.00807250757, -0.0107849278, -0.00328800012, 0.00872003473, -0.0189221893, 0.000912384, -0.0119288927, 0.0144686392, 0.0123389941, -0.028174635, -0.00624863897, 0.0185480621, -0.0080293389, 0.0182602722, -0.00610834127, 0.021497909, 0.0100222845, -0.013094442, 0.00958340522, -0.00612632837, 0.033124622, -0.0042736805, -0.0043816017, -0.0117202457, 0.0107057858, -0.0131520005, -0.00260629761, -0.00935317297, 0.0235987753, 0.0280595198, 0.0283473097, 0.00158014661, -0.00637094956, -0.0115403766, -0.00506510306, 0.00886393, -0.00569824083, -0.0273112655, 0.00460104179, -0.00723791681, 0.00955462642, -0.0326641575, -0.00442117313, -0.0209223293, 0.0102381269, 0.069012031, 0.00764082279, 0.000457990711, 0.0194833782, -0.0150370244, -0.0135908797, -0.0297574792, -0.0049320003, 0.00418374641, 0.0286926571, 0.00689976383, 0.0183609985, 0.0025505384, 0.0220590979, 0.0597451925, 0.0044139782, 0.00881356653, -0.0300164912, 0.00948987342, -0.0112310024, 0.00042696335, -0.0174976289, 0.0192675367, 0.0167349856, -0.0156413838, 0.0321173556, -0.000156710608, 0.0263327789, 0.00293365866, 0.00242283149, 0.0298150368, -0.0080365343, -0.00856175087, -0.0198287275, -0.0324339271, 0.0013229344, 0.00697171129, -0.015626993, 0.0144254705, -0.0117993876, 0.0260593798, -0.0230375845, -0.0119576715, 0.00817323383, -0.0010189563, -0.0164615847, 0.01101516, -0.0212964546, -0.0147492345, 0.0199870113, 0.0286926571, 0.0181739349, -0.0143607175, 0.023498049, 0.00251276582, 0.00267824507, 0.011691466, 0.00927403104, -0.0145046134, -0.011353313, 0.00469457358, -1.93218341e-07, 0.00157654926, 0.00594645971, -0.00719834585, -0.0165047534, 0.0177278593, -0.0186775662, -0.000261484151, -0.0123965517, 0.0104539692, -0.0403769277, -0.00221238518, -0.0161881838, 0.0129793258, -0.01228863, 0.0311388709, 0.00242822757, 0.0036981008, 0.014497418, -0.0308223031, -0.0260306, -0.0110583287, -0.00146862806, -0.00434203073, 0.0103676328, 0.0380746089, -0.00738181174, -0.018159546, -0.0171666704, -0.0120583987, -0.0102812955, -0.0245340914, -0.00845382921, 0.0107345646, 0.0159291737, -0.0301028267, 0.0211669505, -0.0194402095, 0.0126267839, 0.0171666704, -0.0043672123, -0.0238433965, 0.0186775662, -0.0192963146, -0.00583494082, -0.0211525597, 0.017094722, -0.0218000878, 0.016965216, -0.00123749673, -6.3684769e-05, -0.00860492, -0.00420173304, -0.0260881577, 0.010820902, 0.0238865651, 0.0203755274, 0.00147672207, -0.0340743288, -0.018159546, -0.00442117313, -0.0132311424, 0.015094582, -0.00463341782, 0.0126195885, -0.00832432415, -0.00973449461, 0.0025109672, 0.0112525867, -0.0182027128, 0.00144704373, -0.0055831247, 0.00311352732, -0.00406863028, 0.0189365782, 0.031369105, -0.000548149925, -0.00465140492, -0.0010801116, 0.0162745211, 0.0126699517, 0.000977586489, 0.0107777333, -0.0238721762, -0.00330418814, -0.00493919477, -0.011885724, 0.00160173082, -0.0118281664, 0.00176451204, 0.0290955622, -0.00778471772, 0.0156845525, 0.0258435365, 0.0422475636, -0.0043851994, -0.0174832381, 0.00856894534, -0.0086408928, 0.0280307401, 0.0115259867, 0.0238433965, 0.00791422371, -0.00910855178, -0.0136196585, -0.0194833782, 0.00399668282, 0.00063133915, -0.0325202644, 0.0235843863, -0.00405064318, 0.00330958422, -0.0227354057, -0.00523058232, -0.00218540477, 0.011950477, 0.0143391341, 0.0125836153, -0.0132887, -0.00236167619, -0.00831713, -0.0438304059, 0.0028149453, 0.022965638, -0.00680623204, 0.00020538758, 0.00885673519, 0.0109719913, 0.00592487538, 0.0217856988, 0.0167637635, 0.00232210499, 0.0140441488, -0.0197136104, 0.000940713333, 0.00913733058, 0.00520899799, -0.00820201356, 0.00982802641, -0.00515144, -0.00658319471, -0.00897904579, 0.0173249543, -0.00756887533, 0.0227354057, -0.00792861264, 0.00196416629, -0.000288689276, 0.0218720362, 0.019771168, -0.00202352297, -0.0167205948, 0.00884954073, -0.00432404364, 0.00900063, -0.000746904814, -0.00602919934, 0.0277141705, -0.00459024962, 0.00222317735, -0.0108280964, -0.0137203857, 0.0108568752, 0.0201309063, -0.00663355831, -0.0103676328, -0.0049140132, -0.00497157127, 0.00686379, -0.0182602722, 0.00260270014, 0.00315309851, 0.0143966917, 0.0172386169, 0.0280739088, 0.00300740497, -0.0163176898, -0.0111302761, 0.0286207087, 0.00120601966, 0.0134613747, -0.00598603068, 0.00836749282, -0.00628101546, 0.00786386, 0.014159265, 0.006144315, -0.0185912307, 0.00424849894, 0.0179149229, -0.021915203, -0.00915891491, -0.0405496024, -0.0151233617, -0.00525576388, -0.0253974628, 0.0105115278, 0.0237138905, -0.000168851751, -0.0010189563, 0.0101589849, -0.00131394097, 0.00323763676, 0.00234548794, -0.00796458684, 0.00655081868, -0.00960499, -0.00703286659, 0.012950547, 0.029527247, -0.000562539382, 0.00347326486, -0.0328080542, 0.0218720362, 0.0289084986, -0.0133174798, 0.0404920429, -0.0243901964, -0.00264047273, 0.000504531723, 0.0126052, -0.0147924032, -0.013159195, 0.0211237818, 0.0160011202, 0.0038204114, 0.0279156249, -0.0130512733, -0.0249801669, -0.0132023636, 0.010691396, 0.031110093, -0.0107777333, -0.0162745211, 0.0395998955, 0.00625943113, 0.00851138774, 0.00815165, 0.00475572888, 0.0133174798, 0.0135621009, 0.0133606475, 0.00240484462, -0.00611193897, -0.00118443544, -0.0266205687, 0.00478091044, 0.0287070461, 0.0256852526, 0.00519820582, -0.0220878776, 0.0159723423, -0.000487893878, -0.00429526484, -0.00848260801, 0.0063026, 0.0190660842, -0.00688897166, 0.0062378468, 0.0180875976, 0.0154543193, 0.0115259867, -0.000350069487, -0.0231670905, -0.0352830477, -0.0229224693, 0.0180588178, 0.00901502, -0.00229872204, 0.00436361507, -0.0166486483, 0.00205230201, 0.0170803331, 0.0186344, -0.0257140305, -0.01028849, -0.00491761044, 0.0158284474, -0.00919488817, -0.00984241627, 0.00764082279, -0.0191812, 0.00352902408, -0.00529893208, -0.00728468271, 0.0135189323, 0.00752570666, -0.00447513349, -0.0025181619, -0.00492120814, -0.0169939958, 0.005007545, 3.83064144e-05, -0.00181397598, 0.00592487538, 0.00208467827, -0.00485285791, 0.0172098391, 0.0310237557, 0.0194114316, -0.00544642471, 0.00645728689, -0.00609395187, -0.0415280871, -0.000796818407, -0.0143247442, -0.0223900564, -0.00453988649, -0.0210806131, -0.00202172436, 0.0454708114, 0.00592487538, -0.00150729984, -0.0148355709, -0.0259730425, 0.013223948, -0.00913013611, -0.00364773744, -0.0164903626, 0.00838907715, -0.0150514133, 0.0379019342, 0.0196128841, 0.00111428672, -0.00364953605, -0.025642084, -0.00265486212, 0.0201740749, -0.00621626247, 0.00981363654, -0.0450391248, -0.00260809623, -0.0211381707, -0.014432665, -0.00738900667, -0.0324051455, 0.0115187922, 0.0099791158, 0.0390243158, -0.000527914672, 0.0318583474, -0.0119288927, 0.00852577668, 0.029383352, 0.0286207087, 0.0339879915, 0.037124902, 0.00277897157, -0.00693933479, 0.00819481816, -0.0136844115, 0.0102165425, 0.0166486483, 0.0219583716, 0.0212964546, -0.00457945745, 0.0118065821, -0.0111662494, 0.0140369544, 0.0454995893, -0.0252967365, -0.000250242359, -0.0427080281, 0.0185192823, 0.0241311863, -0.00662636338, 0.00348765426, 0.0118425563, 0.00472694961, -0.00515144, 0.0062990021, -0.0213108454, -0.0120583987, -0.0099791158, -0.03286561, -0.0121087618, -0.0167062059, -0.00195157551, -0.0405208245, 0.00423410954, 0.0109863812, -0.000574230857, -0.00668392144, 0.00703646382, -0.0361176357, 0.024706766, 0.00392113812, 0.00990716834, 0.000830094097, -0.0270090848, -0.00585652515, 0.0343621187, 0.00597523851, -0.00548599567, -0.00845382921, -0.000263058, -0.00560470903, -0.00448592566, 0.000354791031, 0.00948267803, -0.0031117287, 0.0213540141, 0.0145693654, 0.014562171, -0.0170371644, 0.00801495, 0.0148931295, -0.00954743102, 0.00486005237, -0.007410591, -0.00192279648, 0.00548239844, 0.00475932611, 0.0190229155, -0.0292538479, 0.000411224843, 0.0122382669, 0.0129865212, -0.000298132392, 0.0186631773, 0.00894307252, -0.0233829319, 0.00997192133, -0.0133246742, 0.0221022666, -0.0135908797, -0.0189941358, 0.0215554666, 0.0410964042, 0.0175551865, -0.0055975141, -0.00869845133, -0.0190804731, 0.00477371551, 0.0222461615, 0.00545361917, 0.0331821814, -0.0203323588, 0.00446434133, -0.0313115455, 0.0111302761, 0.00343369367, 0.00606157538, 0.00471975515, 0.00284192571, 0.0178429764, 0.014691676, 0.00903660432, -0.000430785556, 0.000296783372, -0.011677077, -0.0144614447, -0.0187782943, -0.0121663194, 0.0103676328, -0.0126555627, 0.000754549226, 0.00515144, 0.00150729984, 0.0087344246, -6.18298727e-05, -0.0125620309, 0.00838188175, 0.00181217724, -0.0190373044, 0.0186056197, -0.00123839604, 0.0313403234, 0.00221058656, -0.00497876573, -0.014562171, 0.00254514231, 0.0181739349, 0.0238865651, -0.00298042456, 0.00813726056, 0.028189024, -0.00687098457, 0.0337002, 0.0069069583, -0.0137635535, 0.00977766328, -0.0215266868, 0.0099215582, 0.0108424863, -0.00634936569, 0.00920927804, -0.0024965778, -3.27417256e-05, -0.00183016411, -0.00165479211, 0.012950547, -0.0087703988, -0.000129280641, -0.00147222541, 0.00095420354, 0.0241167974, -7.72873409e-06, -0.00100096944, 0.00268903724, 0.00895026699, 0.00728108548, -0.0125476411, 0.00618388643, 0.000927223184, -0.0116626872, 0.00134901539, -0.000680353376, 0.0181163773, 0.00961218402, 0.0220734887, -0.00915172, 0.0222461615, 0.00743937, 0.00105493, -0.00609035464, 0.0094035361, 0.00905099325, 0.00309374183, 0.0148067921, 0.0189797468, -0.00452549662, 0.00675946614, 0.0136628272, -0.0154111516, 0.00350564113, -0.0140369544, 0.0228793, 0.0061946786, 0.011885724, -0.00519101089, -0.00935317297, -0.0112238079, 0.00283832825, 0.00500394776, 0.00193358865, 0.0125620309, -0.00509388186, -0.0296999216, 0.0068925689, 0.000268454052, -0.00854736101, -0.00206129532, 0.00347506348, -0.0081300661, 0.00760484906, -0.00385278789, -0.0292970166, -0.0243326388, -0.0159435626, 0.00247499347, -0.00906538311, 0.00397509849, -0.0162601322, -0.00353981624, 0.0163896363, -0.0131304162, -0.00262068724, -0.02403046, 0.00388156669, 0.00203971122, -0.020562591, 0.00319087086, -0.0162889101, 0.00269263471, -0.00635296293, -0.00699689286, 0.00971291, 0.00346427131, -0.00161432172, -0.0087919822, 0.00252355798, -0.0212245081, 0.00779191265, 0.00760484906, -0.0236707218, 0.00962657388, -0.00925964117, -0.00335275289, 0.0187063459, -0.00649326062, -0.00776313338, 0.00532771135, -0.00946828909, 0.00211165869, -0.00487084454, 0.0204043072, -0.0106266439, 0.0135836853, 0.00697171129, -0.00157654926, -0.0111590549, 0.00478091044, 0.00955462642, -0.0242606923, -0.0176846925, 0.00307575497, -0.00335095404, 0.00280595198, -0.00578098046, -0.0120512033, -0.0136700217, 0.0126555627, 0.0146413129, 0.00952584669, -0.0122310724, -0.0144254705, 0.00885673519, -0.0222605523, 1.88159538e-05, 0.00457586, 0.000141759025, 0.0038276061, -0.00274479645, -0.00714438502, 0.00717316428, -0.00332577247, -0.0156701617, -0.0131376106, 0.0125116678, 0.0313978828, 5.18808811e-05, -0.00552916434, 0.00206489279, 0.01128856, -0.0262896102, 0.010885654, 0.0136988014, -0.00938195176, 0.022044709, 0.0143391341, 0.0113029499, -0.00730267, -0.00816603936, 0.00380961923, 0.00149111159, 0.0103172697, -0.00535649, -0.0179724824, -0.0184185561, -0.00395711185, -0.00545361917, 0.00540325604, -0.0205913708, 0.0231239218, 0.00150460179, 0.000826496747, 0.00720554078, -0.0161162373, 0.00850419234, -0.00138588843, 0.00541764544, 0.00818042923, 0.0330095068, -0.000598962826, 0.02003018, -0.0186056197, -0.0205913708, -0.0246492084, 0.00473774178, -0.0025037725, -0.000966794323, -0.010677007, 0.00520180305, 0.0269515272, -0.00448232843, -0.0228793, -8.01539936e-05, -0.0049895579, 0.0209654979, 0.00129055802, 0.0251816195, 0.00649685785, -0.00584933069, -0.00640692329, 0.00181667402, -0.0038204114, -0.00267105037, -0.0164471958, -0.0247355457, -0.0420748889, 0.00282933493, -0.0025721225, -0.00502912933, 0.0106266439, 0.00534210075, -0.00825237669, -9.92791e-06, 0.00673068734, -0.00528094545, -0.0192963146, -0.0101949582, 0.00875600893, 0.0118641406, -0.0162313525, -0.00593207031, -0.00771996519, -0.0173393432, -0.0101517905, 0.00648606569, -0.00152078993, 0.0127347047, 0.0322036929, 0.0149075184, -0.0131160263, -0.0201309063, -0.0157996677, 0.0116842715, 0.0150370244, -0.0181739349, 0.0123893572, 0.0211957283, -0.00859772414, 0.00358478352, -0.0150801931, -0.0136484383, -0.00879917759, 0.0063026, 0.0114036761, 0.00103064766, -0.00239045522, -0.0168069322, -0.00283473078, 0.0189509671, -0.000512625847, 0.00618028874, 0.0203755274, -0.0248506609, 0.0288941097, -0.00801495, -0.0295560267, 0.00107381621, 0.0187495146, 0.011756219, 0.0102525167, -0.0187495146, 0.0172098391, -0.00408661691, -0.00960499, -0.0200589579, -0.00714078778, 0.0193826519, 0.010677007, 0.00267284899, 0.0329807252, 0.0127203157, 0.019368263, 0.0100366743, -0.0132958954, -0.00822359789, 0.0269227494, 0.000135576047, 0.0144038862, 0.00645009195, -0.0208647698, 0.000401332072, -0.0164903626, 0.0110439388, 0.0218000878, -0.0102453222, 0.010820902, -0.000324438181, 0.00859053, 0.0061479127, 0.000843134592, 0.0150514133, 0.0165910907, 0.00457586, -0.0133894272, 0.0165047534, 0.00263507664, 0.0112813655, -0.00100366736, -0.0159003939, 0.0202316325, 0.00394272199, 0.00513705052, 0.0067846477, 0.00458665192, -0.0187351257, -0.000892148819, -0.0316568948, -0.0128642106, -0.00243542227, -0.0299877115, -0.00950426236, -0.0151665295, -0.0103604374, 0.0264047273, 0.0222029947, -0.00365493214, 8.84729234e-05, -0.00307035889, 0.00915172, 0.00913013611, 0.0287358258, -0.0113029499, 0.00913013611, 0.0225915108, -0.0166630372, 0.0258147568, -0.0102237379, -0.0178429764, -5.16279397e-05, 0.0201165173, -0.0194833782, 0.0104036061, 0.0339879915, 0.0242750812, -0.0108496808, -0.0164903626, -0.0190229155, -0.00329159736, -0.0161594059, -0.0043528229, -0.00884234626, 0.00279515982, -0.00899343565, 0.00144434581, 0.000292961166, -0.000340401544, 0.0087344246, 0.0140081756, 0.0167493746, -0.0309086386, 0.0163608585, 0.0143823018, -0.000156373368, 0.0282178037, -0.0161737949, -0.0121303461, -0.0110871075, 0.000869215524, 0.0210230555, 0.0110295489, -0.00895746145, -0.00946828909, 0.0107777333, 0.00221598241, 0.0143463286, 0.0235987753, 0.00293365866, -0.00275738724, -0.0128354309, 0.0245484821, 0.0444635451, 0.00227533909, 0.00423410954, 0.00538886664, -0.0055219694, 0.00168267183, -0.0151953092, -0.00349844643, -0.00942512, -0.00773435459, -0.0102453222, -0.000143557714, -0.00193358865, 0.0115763498, 0.0162457414, 0.00261888839, 0.00482048141, 0.0244909246, 0.0218576454, 0.0142024336, 0.00533490581, 0.0162745211, 0.00205589947, -0.0194114316, 0.0162601322, 0.000113823167, 0.0132958954, -0.00699329562, -0.0116482973, 0.0182746612, 0.0174544603, -0.0153967617, 0.023239037, -0.02777173, -0.0139793959, 0.00460463902, -0.00529533485, -0.00405064318, 0.000781529525, 0.0111806393, -0.00391754042, -0.00938914716, 0.0288941097, -0.0173105653, -0.000175596826, -0.00852577668, 0.020562591, -0.00209726929, -0.0399740227, 0.0119360881, 0.0043348358, 0.00287969806, 0.00743937, -0.018691957, 0.00461543119, -0.0107345646, -0.00647527352, -0.00154417288, 0.00352362799, 0.00766960206, 0.019368263, 0.00160892564, -0.0104467748, -0.0107201748, 0.00895026699, 0.0210806131, 0.00390315102, -0.00715517718, 0.00424849894, -0.00219799555, 0.00493559754, -0.000147267507, 0.0200877376, 0.00677385554, 0.0135908797, -0.0115187922, 0.00831713, -0.0161450151, -0.0210950021, 0.00711200899, -0.0114756236, -0.00698969793, -0.00851858221, -0.00913733058, 0.0288653299, 0.00640332606, -0.00184365432, -0.017900534, -0.00984241627, -0.00977046881, 0.0102669057, -0.00654722098, -0.00827396102, 0.00703646382, 0.00418374641, -0.00423770677, -0.0087632034, 0.00746814907, -0.0104036061, 0.00220339163, -0.00453269156, -0.00892868266, 0.0106266439, -0.00276278332, 0.0138930595, 0.00136610284, 0.000238550885, 0.0194546, 0.00976327341, 0.0233109854, 0.0102669057, 0.000908786664, -0.000368056353, 0.00347506348, -0.00632418413, -0.0122166825, 0.00688177673, -0.00956901535, -0.00577018829, 0.00585292792, -0.028045129, 0.00850419234, -0.00461902842, -0.01228863, -0.0235843863, -0.000384919054, 0.00393552752, 0.00650765, 0.00183196284, 0.000880907, 0.00959779415, -0.00269803079, -0.0187063459, 0.00508668739, 0.00410820125, -0.0257859789, -0.00024034956, -0.00234189071, 0.0275414977, 0.0187063459, -0.0155406566, 0.00882076193, 0.0189941358, 0.00302539184, 0.0153823718, -0.0209367182, 0.00487084454, 0.0175983552, 0.00822359789, -0.0162169635, -0.0103316586, 0.00405424088, 0.00999350566, 0.024174355, 0.00241563679, -0.0119720614, 0.0236851126, -0.0149506871, -0.00621266523, -0.0181883238, 0.00239225384, -0.0056622671, -0.0101733748, 0.029527247, 0.00234368932, 0.0150370244, -0.00517302426, 0.00507229753, 0.0027609847, -0.00789983384, -0.00643570255, 0.0197280012, -0.000450121443, -0.011691466, 0.00814445503, -0.00843224488, -0.00581335695, 0.0221166573, -0.0126771471, 0.0197280012, -0.0145190023, 0.00646807905, -5.89632109e-05, 0.000606157584, -0.00874881446, -0.0192531478, -0.00334016187, -0.000348270783, -0.00196776376, -0.00346067408, 0.00151989062, -0.0187782943, -0.000621896063, -0.0160586778, 0.0122670457, -0.0151377507, 0.0183178298, 0.00271242019, -0.0202460214, -0.00188862148, 0.0126483683, -0.035542056, 0.0141736548, -0.00137959304, -0.00792141818, 0.0162025727, 0.0202316325, -0.0092524467, 0.004942792, 0.00314230635, 0.00293365866, 0.00291027571, 0.00684220577, -0.0108137066, -0.00828835, 0.0368946716, -0.00492120814, 0.0174400695, -0.0205482021, 0.00519820582, 0.00910135638, -0.00111068925, 0.000294535, 0.0148355709, 0.0168501, -0.02777173, -0.018691957, -0.00766240712, -0.00984241627, -0.00987119507, 0.00880637206, -0.0117490245, 0.00318367616, -0.0115619609, -0.0175695755, -0.00103064766, 0.0363766477, 0.0103460485, 0.012756289, -0.00314410497, 0.0365781, 0.0230663642, 0.00265845959, -0.0299013741, 0.0149506871, -0.0136700217, -0.00830993429, -0.0237138905, 0.00909416191, -0.00627741823, 0.0020990679, 0.00777752325, -0.0134901535, 0.0111518605, 0.00327181187, 0.000922726467, 0.00864808727, 0.000607956259, -0.0224907845, 0.00460823625, -0.0199726224, -0.0137059959, 0.0086696716, 0.0243182499, -0.0109719913, -0.0127994576, 0.0190373044, -0.00469097588, -0.00298761926, 0.0528382324, 0.0164903626, -0.00374846393, 0.0109432125, 0.0279444028, 0.0101589849, 0.0119288927, -0.0438591875, -2.18090809e-05, 0.0101086218, 0.0257715881, 0.00174742448, -0.021900814, 0.00415496714, -0.00434203073, 0.00057333149, 0.00343549228, -0.0144542493, -0.000303078792, -0.00510467403, -0.00419094088, -0.0049140132, 0.0020990679, 0.00163590594, 0.00512625836, 0.000807610515, 0.000491491228, -0.0115619609, 0.0131735848, -0.0203467496, -0.00426288834, 0.0203323588, 0.0155262668, -0.00331498031, 0.0055867224, 0.0048996238, -0.00356679666, 0.0161737949, -0.0161737949, -0.00760484906, -0.0031117287, 0.0124109415, 0.012482889, -0.00575579889, 0.00414777268, 0.00654722098, 0.00161701976, 0.013482959, 0.00541045098, -0.0111158863, 0.0263183899, -0.00228793, 0.0221742149, -0.00420173304, -0.00367831509, -0.00282933493, -0.0037988273, 0.0215410776, 0.0177854188, 0.00409740908, -0.006209068, 0.00695012696, 0.00709402189, -0.020433085, -0.0113317287, 0.0255989153, -0.00484566297, 0.0190516934, 0.00177170685, -0.00438879663, 0.00824518129, 0.0260737687, -0.00223576813, -0.0302755013, 0.0061946786, 0.0116482973, 0.00228613126, 0.0153104244, -0.0167493746, 0.0164184161, 0.0236563329, -0.0130009102, -0.00728468271, -0.00656520808, -0.0135117378, 0.0352542661, 0.0267932434, 0.0121879037, -0.0166198686, -0.00313691027, 0.0102309324, 0.00915172, -0.0150082456, 0.0278148968, -0.0151521405, -0.00921647251, 0.012418136, -0.0168069322, -0.0230088048, -0.0152816456, -0.00154866965, 0.00229512481, 0.0103676328, 0.00469817081, -0.0218144767, -0.0188646298, 0.00400028, 0.00528094545, -0.0131663894, -0.0119576715, -0.0113245342, 0.00757607026, 0.0202316325, 0.00177710282, 0.0171810593, 0.0119864512, -0.00620547077, -0.00665874, 0.0132023636, 0.00428447267, -0.00183106354, -0.00850419234, 0.00557593023, -0.000232030638, -0.00711200899, -0.0217281412, 0.000444500562, 0.00228433264, -0.00463341782, -0.0173249543, 0.00275019254, 0.0106266439, -0.0314266607, -0.00650765, -0.0166198686, 0.0224620048, -0.0203755274, -0.0360888578, 0.0147636235, -0.00881356653, 0.0139937857, 0.00776313338, -0.0115044024, 0.00331498031, 0.0003577139, -0.00667672651, 0.0309374183, -0.00598603068, -0.0100582587, 0.0206633173, 0.0103748273, 0.00352722546, -0.00131214224, -0.0211813394, -0.020562591, -0.00897904579, 0.0149362981, 0.00426288834, -0.0043959911, -0.0087632034, 0.0195121579, 0.00421972, 0.0191955883, -0.0183897763, 0.00239944854, -0.00733864354, 0.0103604374, -0.012094372, -0.0162601322, -0.00331677916, 0.0028005559, 0.0129577424, -0.0422187857, 0.00761204399, 0.025498189, -0.011547571, -0.000483397162, 0.00869125593, 0.0141736548, -0.0189653561, -0.00901502, 0.0027142188, -0.0106482273, -0.0272824857, -0.00926683564, 0.00578098046, 0.00291926926, -0.000735663052, 0.010547501, 0.0130440788, 0.00732785137, 0.0136844115, 0.0262032747, -0.00671629747, -0.0188646298, 0.0143247442, -0.00253255153, -0.0148787396, -0.018691957, 0.0142959654, 0.0198287275, -0.0198862851, 0.00851858221, -0.0249513872, -0.0155838253, -0.0182458814, -0.0164471958, 0.0332972966, -0.0116411028, 0.00686738733, -0.0209511071, -0.012079983, -0.0126627572, -0.0165767, -0.0136052696, 0.0156845525, -0.000549049233, 0.00716237212, 0.0203755274, 0.031110093, 0.00726669608, 0.00683860853, -0.00119342888, 0.0140297599, 0.000926323875, 0.0113461185, 0.0115979342, 0.0067558689, -0.00724870898, 0.00566586433, -0.0722352713, 0.0104611646, 0.0114972079, 0.0151377507, 0.00334915542, 0.0300740488, 0.00634576799, -0.00760484906, 0.0148067921, -0.00997192133, -0.00816603936, 0.00303258654, 0.012950547, 0.00430246, 0.00756168086, -0.00729547488, 0.0245053135, -0.00298582064, 0.00884954073, 0.0061946786, -0.0132743111, 0.00219080085, 0.0113245342, -0.00282393885, -0.00239045522, -0.0087056458, -0.00043843, 0.000605258218, -0.0163033, 0.00530612702, -0.0031513, 0.0110511333, -0.00371608767, 0.0242031347, -0.0179149229, -0.0204186961, -3.61423699e-05, -0.0165047534, 0.0021602232, -0.00443196483, -0.00667672651, -0.0137851378, -0.0095906, -0.00662276614, 0.00777752325, 0.0261457153, -0.00455427589, -0.00851858221, -0.0189653561, -0.00156575709, 0.0092236679, 0.0182171036, -0.0190229155, -0.000421342469, -0.0251528397, 0.0172961745, -0.00451830216, 0.00161791907, 0.000660567835, 0.0143247442, 0.00079457, -0.0555146784, -0.00650765, 0.00763362832, 0.0075185122, 0.015756499, 0.00539246388, 0.00453988649, 0.0131879738, 0.00651484495, -0.0191812, -0.0133246742, 0.000228096, 0.00373767177, -0.00142276147, 0.0133390641, -0.0225195624, -0.00318547478, -0.00292106788, -0.0194689892, 0.0216993615, 0.0080293389, 0.00363694527, 0.00589969382, 0.00946828909, 0.0080653131, 0.0105259167, 0.00778471772, 0.0182890501, -0.0146053396, 0.0269515272, 0.0214547403, -0.0156413838, 0.00902940892, 0.00782788638, 0.00966254715, -0.0210806131, -0.0129577424, 0.0202316325, 0.0162313525, 0.0199438427, -0.00412978558, 0.00152978336, -0.0030721575, 0.0137131903, -0.016691817, -0.00729187764, -0.000674058, 0.0186631773, 0.00721993, 0.0254118517, -0.00193178991, -0.0172961745, -0.0068925689, 0.0247643236, 0.0195409376, 0.00303978124, -0.01128856, 0.0131088318, 0.0169364382, 0.00245340914, 0.0043851994, -0.015224088, -0.000958700257, 0.00378803513, -0.0227785744, 0.00910855178, -0.0043959911, 0.000418194744, 0.00164489937, 0.0218720362, -0.000738361035, -0.00838188175, -0.012885794, -0.00456147036, -0.0287789945, 0.00254154485, 0.00577018829, -0.00582414865, 0.0191955883, -0.0134254005, -0.00227713794, 0.0186631773, -0.0302179437, -0.000188862148, -0.00385278789, -0.0188934095, 0.0176990815, 0.010482749, -0.00378803513, -0.0255845264, 0.000171662206, 0.0119576715, 0.0109144337, 0.00723431958, -0.0321461372, 0.00527015328, 0.00485285791, 0.00246959738, -0.0148499608, -0.00586372, 0.0214691292, 0.000671809656, 0.0025505384, -0.00101715757, 0.00915891491, -0.0146628972, -0.00836749282, 0.00600401778, -0.0130584687, 0.0322900303, 0.0254550204, 0.0299589317, -0.00462982059, 0.001376895, -0.0199294537, 0.0167925432, -0.0143247442, -0.00641771546, 0.00675227121, -0.00478091044, -0.0121591249, -0.00236347481, -0.000107078093, 0.00910855178, 0.00966974162, 0.012482889, 0.00389955356, 0.00230771559, -0.00527734822, 0.0243182499, 0.0138426963, -0.000228545687, 0.0213252343, -0.0242031347, -0.0120224245, 0.00424849894, 0.00565867, -0.0108065121, 0.00232030638, 0.00341390818, -0.0132023636, 0.015770888, 0.0210806131, -0.0064393, -0.0167925432, 0.0230807532, 0.00605797814, -0.000478900445, -0.0056298906, -0.0152960354, -0.0165047534, -0.0194114316, 0.0188934095, -0.00772715965, 0.00212424947, -0.0211669505, -0.00600761501, -0.00568385143, 0.0137275802, 0.0353406034, 0.00949706789, 0.0127850678, -0.0326066, 0.0229224693, 0.0265054535, -0.00473054731, 0.00906538311, -0.0457298197, 0.00432764133, -0.00228793, -0.0120440088, 0.0244765338, -0.0097273, 0.00143355364, 0.000893947494, 0.00164579868, -0.00966974162, -0.028304141, 0.0187207349, 0.00145693659, 0.0253255144, -0.0108280964, -0.00799336564, -0.00258831074, -0.00895026699, 0.0246204287, -0.00217281398, 0.0289084986, 0.00247499347, 0.0104539692, 0.00832432415, -0.00391034596, 0.0207640436, 0.0133822318, -0.0036441402, -0.0262320526, 0.013821112, -0.0126483683, 0.0110727176, -0.000826496747, -0.012756289, -0.00393552752, -0.00286530866, 0.00975607894, -0.0188214611, 0.0074537592, -0.0297287013, 0.00473414455, 0.0116195185, 0.00457226252, 0.00646807905, -0.0111806393, -0.00196416629, 0.00334375934, 0.0093459785, -0.000419318938, 0.019224368, -0.0111950282, -0.0215410776, -0.0337577611, -0.00254873955, -0.02457726, 0.020706486, -0.000448322768, 0.00315309851, 0.00999350566, -0.00852577668, 0.0180444289, -0.00979205221, 0.00787105504, -0.00240124739, 0.0149362981, 0.0197567791, 0.000406952953, -0.00822359789, 0.00564428, 0.00844663475, 0.0116986614, -0.0420748889, 0.00468018372, 0.00562629336, -0.0126411729, -0.00635656, -0.0109360181, -0.0106698116, -0.0111446651, -0.0215986352, -0.0110583287, 0.00461902842, -0.0191092528, 0.0150658032, -0.010820902, -0.0156701617, -0.00537807448, -6.71135131e-05, -0.00929561537, -0.00708682742, -0.0043672123, 0.0021134573, 0.00386357983, 0.0101805693, 0.00186883588, 0.00532411365, 0.0258435365, -0.0162889101, -0.0154399304, 0.0229224693, -0.0141232908, 0.00674867397, 0.00538526941, 0.00146053394, -0.0239009541, 0.0168932695, 0.00463341782, 0.00152438728, -0.00332937, -0.0232678168, 0.00897904579, 0.0332109593, -0.000720823882, 0.00797178131, -0.0259442627, -0.0191092528, 0.00467658648, 0.0125260567, 0.00421612244, 0.00755448593, 0.0275990553, -0.000797268061, -0.00648606569, -0.00206129532, 0.000669111614, 0.0247931033, 0.0172530077, -0.00425569387, -0.0124325249, -0.0198575053, -0.00510467403, -0.000102412749, 0.0144398604, -0.0159147829, 0.00832432415, -0.0256564729, 0.0260162111, -0.0129217682, 0.0151953092, 0.0050219344, -0.0215698555, -0.00732065644, 0.0185768399, -0.0142384069, -0.0166774262, 0.0611841418, 0.0147492345, -0.00418014871, -0.01228863, 0.02777173, -0.0121015674, -0.00395711185, 0.0307359658, -0.0168932695, -0.0117346346, -0.0243901964, 0.00548599567, 0.0185480621, -0.000706884, 0.00915891491, 0.000431235239, -0.00257392135, -0.0137995277, 0.0172386169, -0.0164615847, 0.00510107679, -0.00038177133, -0.00578457769, -0.0234548803, 0.00576299336, -0.013821112, 0.0189365782, 0.00451470446, -0.0222029947, 0.03177201, 0.00227174186, 0.0213108454, -0.011820972, -0.0173825119, 0.0112381969, -0.0109576015, 0.00309374183, 0.0173681229, 0.0113245342, 0.0116698816, 0.0124756936, 0.00755448593, 0.0147780133, 0.00257931743, 0.00583134359, -0.0161881838, -0.00089349784, 0.00339052523, 0.0182027128, -0.0123749673, 0.0141304862, -0.0170659442, 0.00112238072, -0.0109647969, 0.00410100678, 0.0135117378, 0.0357147306, 0.0160874575, -0.00249837642, 0.0180732086, -0.0243326388, -0.00398589065, -0.0103964116, -0.0149506871, -0.00431325193, 0.00300560612, -0.012418136, 0.00666593434, -0.015886005, -0.00897185132, 0.00591768045, -0.012482889, 0.00192639395, -0.0229080785, 0.00651844218, -0.000163455697, 0.00670550577, -0.012094372, 0.0156989414, 0.00559031963, 0.0250952821, 0.010353243, -0.0235124379, 0.000534659717, -0.00126807438, -9.17892539e-05, -0.0110007701, -0.0116195185, -0.0210086647, -0.0014857155, 0.00141826482, 0.00639253389, 0.0093747573, 0.0382760614, 0.00598243345, -0.0103676328, -0.0222029947, 0.00044742343, -0.00225015753, 0.00491041597, 0.0259154849, -0.0118929194, 0.00639613159, -0.00598603068, -0.0281170774, 0.0164615847, 0.012482889, 0.00887831952, -0.0201452952, -0.00577378552, -0.0024498119, 0.000851228659, 0.0238865651, 0.0182171036, 0.00691415323, -0.00239765, -0.0171810593, -0.0183034409, -0.0195984952, 0.00317648146, 0.0124541093, 0.00869845133, -0.0352254882, 0.0127203157, 0.010417996, -0.00495358417, 0.0278724562, 0.000958700257, 0.00305956672, -0.00687458226, 0.0161450151, 0.000685299805, 0.0110511333, -0.0418446586, 0.00772715965, 0.0251096729, -0.0231814794, 0.0205482021, -0.00313331303, 0.0188214611, 0.000175034744, -0.00221058656, -0.0188502409, 0.00706164539, -0.00674507674, 0.0134254005, -0.0102381269, -0.00711560622, 0.000735663052, -0.0104899434, -0.00144164776, -0.00913013611, 0.00712280115, 0.00247679208, 0.0297574792, -0.00846102461, 0.0162313525, 0.020433085, 0.0181883238, -0.0056155012, 0.0134254005, -0.0161162373, 0.0183753874, 0.00974888448, 0.00532771135, -0.0173249543, -0.00385638513, -0.00915172, 0.0187926833, -0.0061910809, 0.00116914662, 0.0179580916, -0.00830993429, 0.0227929633, -0.0205913708, 0.00719834585, 0.00462982059, -0.00412259065, -0.0110871075, -0.0334411897, -0.000886303082, 0.0156989414, 0.00362615334, 0.04515424, 0.00966254715, -0.00874161907, -0.0218144767, -0.00387796946, 0.0199870113, 0.0167349856, 0.00127886655, -0.00518021872, 0.00185804383, -0.00249477895, -0.0313978828, -0.00820920803, 0.0222749412, 0.000225735232, 0.00188682275, -0.00309374183, -0.000808959536, -0.00108910503, 0.00955462642, 0.0139722014, -0.0146125341, -0.00561909843, -0.0100438688, -0.00245161052, 0.00550398277, -0.0043384335, -0.0139290327]
02 Aug, 2018
unordered_multiset bucket_count() function in C++ STL 02 Aug, 2018 The unordered_multiset::bucket_count() is a built-in function in C++ STL which returns the total number of buckets in the unordered_multiset container. A bucket is a slot in the container’s internal hash table to which elements are assigned based on their hash value. Syntax: unordered_multiset_name.bucket_count() Parameters: The function does not accepts any parameter. Return Value: It returns an unsigned integral type which denotes the total count of buckets. Below programs illustrate the above function: Program 1: // C++ program to illustrate the // unordered_multiset::bucket_count() function #include <bits/stdc++.h> using namespace std; int main() { // declaration unordered_multiset<char> sample; // inserts element sample.insert('a'); sample.insert('b'); sample.insert('b'); sample.insert('b'); sample.insert('z'); cout << "The total count of buckets: " << sample.bucket_count(); // prints all element bucket wise for (int i = 0; i < sample.bucket_count(); i++) { cout << "\nBucket " << i << ": "; // if bucket is empty if (sample.bucket_size(i) == 0) cout << "empty"; for (auto it = sample.cbegin(i); it != sample.cend(i); it++) cout << *it << " "; } return 0; } Output: The total count of buckets: 7 Bucket 0: b b b Bucket 1: empty Bucket 2: empty Bucket 3: z Bucket 4: empty Bucket 5: empty Bucket 6: a Program 2: // C++ program to illustrate the // unordered_multiset::bucket_count() function #include <bits/stdc++.h> using namespace std; int main() { // declaration unordered_multiset<char> sample; // inserts element sample.insert('a'); sample.insert('b'); sample.insert('b'); sample.insert('b'); sample.insert('z'); cout << "The total count of buckets: " << sample.bucket_count(); // prints all element bucket wise for (int i = 0; i < sample.bucket_count(); i++) { cout << "\nBucket " << i << ": "; // if bucket is empty if (sample.bucket_size(i) == 0) cout << "empty"; for (auto it = sample.cbegin(i); it != sample.cend(i); it++) cout << *it << " "; } return 0; } Output: The total count of buckets: 7 Bucket 0: b b b Bucket 1: empty Bucket 2: empty Bucket 3: z Bucket 4: empty Bucket 5: empty Bucket 6: a Learn C++ Online – Master everything from basics to advanced concepts. Apply your knowledge with practical exercises and boost your skills. Take the Three 90 Challenge: finish 90% in 90 days for a 90% refund. Start now and level up your C++ programming!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum/Algorithm for Dynamic Time out timer Calculation/Difference between Round trip time (RTT) and Time to live (TTL)/Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms/Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm/Round Robin Scheduling Algorithm with Different Arrival Time/Selfish Round Robin CPU Scheduling/Find the order of execution of given N processes in Round Robin Scheduling/Calculate server loads using Round Robin Scheduling/set::lower_bound() Function in C++ STL/Implementation of lower_bound() and upper_bound() in List of Pairs in C++/Difference between std::set::lower_bound and std::lower_bound in C++/Difference between std::set vs std::vector in C++ STL/std::minmax() and std::minmax_element() in C++ STL/std::rotate vs std::rotate_copy in C++ STL/std::bitset::to_ullong and std::bitset::to_ulong in C++ STL/std::upper_bound and std::lower_bound for Vector in C++ STL/std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++/std::string::append vs std::string::push_back() vs Operator += in C++/Vector push_back() in C++ STL/vector :: cbegin() and vector :: cend() in C++ STL/unordered_multiset cend() function in C++ STL/unordered_multiset bucket() function in C++ STL/unordered_multiset emplace_hint() function in C++ STL/unordered_multiset end() function in C++ STL/unordered_multiset size() in C++ STL/unordered_multiset emplace() function in C++ STL/unordered_multiset find() function in C++STL/unordered_multiset erase() function in C++ STL/unordered_multiset clear() function in C++ STL/unordered_multiset swap() function in C++ STL/unordered_multiset bucket_size() function in C++ STL/unordered_multiset bucket_count() function in C++ STL
https://www.geeksforgeeks.org/unordered_multiset-bucket_count-function-in-c-stl?ref=asr9
PHP
unordered_multiset bucket_count() function in C++ STL
unordered_multiset clear() function in C++ STL, What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, jQWidgets jqxTreeMap width Property, Round Robin Scheduling Algorithm with Different Arrival Time, Difference between Flow and TypeScript, unordered_multiset emplace() function in C++ STL, jQWidgets jqxTree destroy() Method, jQWidgets jqxTree collapseAll() Method, Find the order of execution of given N processes in Round Robin Scheduling, jQWidgets jqxScrollView buttonsOffset Property, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Vector push_back() in C++ STL, jQWidgets jqxListBox enableHover Property, Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm, std::rotate vs std::rotate_copy in C++ STL, Selfish Round Robin CPU Scheduling, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxSlider buttonsPosition Property, std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++, std::upper_bound and std::lower_bound for Vector in C++ STL, Difference between Round trip time (RTT) and Time to live (TTL), jQWidgets jqxSlider rtl Property, Difference between std::set::lower_bound and std::lower_bound in C++, jQWidgets jqxTooltip opacity Property, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, unordered_multiset erase() function in C++ STL, jQWidgets jqxToolBar height Property, PHP, std::minmax() and std::minmax_element() in C++ STL, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, Node.js date-and-time Date.transform() Method, unordered_multiset size() in C++ STL, TypeScript Optional Parameters, jQWidgets jqxToolBar theme Property, Difference between std::set vs std::vector in C++ STL, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, Steps to Diagnose and Resolve a Slow Network, How to use Optional Chaining with Arrays and Functions in TypeScript ?, Calculate server loads using Round Robin Scheduling, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, jQWidgets jqxScrollView showButtons Property, Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms, jQWidgets jqxScrollView disabled Property, jQWidgets jqxSplitter destroy() Method, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, set::lower_bound() Function in C++ STL, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, jQWidgets jqxTree collapseItem() Method, std::string::append vs std::string::push_back() vs Operator += in C++, unordered_multiset swap() function in C++ STL, unordered_multiset cend() function in C++ STL, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), jQWidgets jqxSortable opacity Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, vector :: cbegin() and vector :: cend() in C++ STL, jQWidgets jqxSlider height Property, jQWidgets jqxSwitchButton onLabel Property, unordered_multiset bucket_size() function in C++ STL, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, jQWidgets jqxToolBar tools Property, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTree width Property, Implementation of lower_bound() and upper_bound() in List of Pairs in C++, jQWidgets jqxTree clear() Method, TLS Handshake?, Algorithm for Dynamic Time out timer Calculation, Adhoc TCP, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, jQWidgets jqxTabs position Property, Differences between Wireless Adhoc Network and Wireless Sensor Network, jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, std::bitset::to_ullong and std::bitset::to_ulong in C++ STL, unordered_multiset emplace_hint() function in C++ STL, unordered_multiset bucket_count() function in C++ STL, unordered_multiset find() function in C++STL, unordered_multiset bucket() function in C++ STL, Impact of Three-way Handshake and Slow Start Algorithm, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, unordered_multiset end() function in C++ STL, How to Sort an Array Having Optional Properties in TypeScript ?
GeeksforGeeks
[0.00386359519, 0.00995921064, -0.0100157969, 0.0062999553, 0.0537696779, -0.0185980722, -0.0191765111, 0.0267339423, -0.00548888324, -0.00453320146, -0.0289219506, -0.000723441713, -0.00688468153, -2.48670804e-05, -0.0148885166, -0.0280920155, -0.00515879551, 0.00965112913, -0.00144452567, -0.00635654153, 0.0390069075, 0.0143226525, -0.0198178235, -0.00231532776, -0.0215028413, 0.0161962919, -0.0304309204, -0.00565235503, 0.00828676764, -0.00132742315, -0.0209118277, 0.0112041123, -0.0170513764, -0.0153286336, -0.0133292461, 0.0233387556, 0.0107639953, 0.0117071019, -0.0189375896, -0.00758886803, -0.00200881809, 0.0164603628, 0.0191387869, 0.00416538958, 0.00797239877, 0.00702929124, 0.00330401841, -0.0301542766, -0.0220938548, 0.0260549039, 0.00855083764, -0.00095646776, 0.0316129476, 0.0237788726, 0.00593214342, -0.00375670986, 0.0152406106, 0.029173445, 0.00425026938, -0.00926759839, -0.0237662978, -0.0221693031, 0.0297267344, -0.00320342043, -0.02841896, -0.00752599444, -0.0232004337, 0.0564355254, 0.0602582544, -0.0255770627, -0.036517106, 0.047608044, 0.0296512861, 0.0196166262, -0.0265578944, 0.00751970708, 0.00469038589, -0.0386799648, -0.0236531254, 0.0530151911, -0.0248980261, 0.0289471, -0.0101163955, -0.011216687, -0.00382587104, 0.00461493712, -0.00614277087, -0.021427393, 0.00105785171, 0.0342285, -0.0158316232, -0.00839365274, 0.00413395278, -0.00689096889, -0.0344799943, 0.0307830144, 0.0440368131, 0.0109023172, 0.00547316484, 0.0368440486, -0.0048821508, -0.0257782601, 0.00979573838, -0.0161334183, 0.0130526014, 0.0160202459, 0.0201321915, -0.0078718, 0.0120717706, 0.00283560855, 0.0570894144, 0.0335997604, -0.0188495666, 0.0444895029, -0.00355865736, 0.0078718, -0.0108708804, -0.00356180104, 0.0228483398, 0.0107891448, 0.00889035594, 0.0242567137, 0.0217417609, -0.0138951112, -0.0378500298, 0.0052311006, 4.96727625e-06, 0.0203836877, 0.00951280631, -0.0277399216, 0.0173280202, -0.0330213234, -0.0189753138, -0.0563852265, -0.0236531254, 0.0133040966, 0.0273375306, 0.0305063706, -0.01236099, -0.035863217, -0.063075, -0.0024332162, -0.0139328353, 0.012537037, -0.00431628665, -0.00381958368, -0.0194154307, 0.0218675099, 0.0145112742, 0.0307327155, 0.0253381431, 0.021163322, 0.0394847505, 0.0332728177, 0.00551717635, -0.000869230367, 0.0241686907, -0.0123232659, 0.0132663725, -0.034982983, 0.0361901633, 0.00772090303, 0.0172148477, -0.00810443331, -0.00748198293, 0.0438104682, -0.00321756699, 0.0157561749, -0.0281674638, 0.0236405507, 0.0187489688, 0.0195914768, 0.0111726746, 0.0112606985, 0.00887778122, -0.0156052783, 0.0606606454, 0.0287962016, 0.0129897278, 0.0165106617, 0.00410880335, 0.0100346589, 0.038151823, -0.00533798616, 0.00283875223, 0.0134046953, 0.00487900712, 0.0019317976, 0.0383278728, 0.0510535277, 0.00554232579, 0.0153034842, 0.0276644733, 0.0512295775, 0.0490164161, 0.0121283568, -0.0317889974, 0.0171896983, -0.0310093611, 0.0244076103, -0.0350081325, -0.00817359425, -0.0228483398, 0.00182334031, 0.00997178536, 0.00972657744, -0.0190004632, -0.0153412083, 0.0384284705, 0.0226094201, -0.0128136817, 0.0221190043, -0.00176518201, 0.00585669465, -0.0447661504, 0.0235651024, -0.0633264929, 0.0376488343, 0.0313363038, -0.0376236849, 0.0434835218, -0.0263064, 0.018346576, -0.0444140546, -0.0273123812, -0.0243447367, 0.0510032289, 0.0145489983, -0.00485700136, -0.0313111544, 0.0441122614, 0.0157687496, -0.0390320569, 0.00089437986, 0.0572906099, -0.0324931815, -0.0540211722, -0.00460864976, 0.00799754821, 0.0127319451, -0.00725563709, 0.083546713, -0.0167873055, -0.0256776623, 0.00180605007, 0.0244704839, -0.0137442136, -0.0485134274, -0.00548259588, 0.000746626407, 0.0105125, 0.0112229744, 0.0403901301, -0.0174663421, 0.0332979672, 0.017554367, -0.0355865732, -0.0179944821, 0.00839365274, -0.029349491, 0.0125621865, 0.0374224894, -0.0327698253, 0.000143529105, 0.00108300126, 0.00517765759, 0.0218549352, -0.031462051, -0.0317638442, -0.0231249854, 0.0102924416, -0.0118328501, 0.00641941559, -0.00332288048, 0.00455206353, 0.0117511144, 0.000313779572, 0.000384709099, -0.0321410894, -0.00819874369, 0.0245333593, -0.021075299, -0.00116788095, 0.00475325948, 0.0258034095, -0.020547159, -0.0408931226, -0.0141843306, -0.00478469674, -0.0471050553, -0.01394541, -0.00193022576, 0.00310596591, -0.017026227, 0.00639426569, 0.0137316389, 0.00767689152, -0.0243698861, -0.0365925543, -0.0264824461, -0.0236908495, -0.0426787399, -0.023187859, -0.0301291272, -0.00434772344, -0.0292740427, 0.0118517121, -0.00487271976, 0.00236405502, -0.0299530812, 0.0187238194, -0.0478092395, -0.0417733565, -0.00142802123, -0.0116945272, -0.0216285884, 0.032518331, 0.00298179, -0.0476331934, -0.00486014504, -0.0272872318, 0.00588813191, -0.0274632778, 0.0494691096, 0.00887778122, -0.00697899237, -0.00137064897, 0.0631756, -0.00127319456, -0.0335243121, 0.00853197556, 0.0146370213, -0.0365925543, -0.0208112299, 0.000221826645, -0.0334488638, -0.0105502242, 0.03105966, 0.00874574576, 0.044439204, 0.01473762, 0.0138951112, -0.0358883664, 0.00411509071, 0.00890921801, 0.0255393386, 0.00410880335, -0.028117165, 0.000567436102, 0.0498212, 0.000686110405, -0.00781521387, 0.0075322818, 0.00692240568, 0.0437098704, -0.0100472337, -0.0209369771, -0.0375985354, -0.00801641, -0.00396419317, -0.0468284078, 0.0154543808, 0.0100849578, 0.0224710982, 0.0217920598, -0.0188998654, -0.00905382819, -0.0476834923, 0.0459481776, -0.0335243121, -0.00176518201, 0.00256210752, 0.02028309, -0.00239234837, -0.021955533, -0.00916071329, -0.0084753884, 0.00958825555, -0.00718647568, -0.00434457976, 0.0266081933, 0.0475828946, 0.0174663421, -0.0146621708, 0.0107451333, -0.0132663725, -0.0198303983, 0.00861371122, -0.0158567727, 0.0157058761, -0.0293997917, -0.0189753138, 0.0290728472, -0.0120026097, -0.00858227443, 0.017818436, -0.0447913, -0.0354859754, -0.0606103465, -0.0631756, 0.0317135453, -0.00658917474, -0.0133418217, -0.0202705152, -0.0217669103, -0.0121975178, 0.0113487216, -0.023892045, -0.0223202, 0.0083685033, 0.0117762638, -0.040264383, 0.0137442136, 0.0415973105, 0.0184723232, -0.0186232217, -0.0447661504, 0.0105627989, 0.0152028855, -0.0151903108, -0.0234393552, 0.00909784, -0.0232884567, -0.00465580542, -0.0212890711, 0.0139328353, -0.00980202574, 0.0134298448, -0.00128105376, -0.0438859165, 0.0137064895, 0.0258537084, -0.00426598778, 0.0384536199, 0.0170891, -0.0488906689, 0.0219932571, -0.0199812949, -0.0213267952, -0.0210375749, 0.0420248508, 0.0463254191, 0.000684145605, -0.0395099, 0.00229960936, 0.0152154602, -0.00848796405, -0.0267842412, -0.00398619939, 0.0174286179, -0.0343290977, -0.000331855786, -0.0122415293, 0.0217669103, 0.011461895, -0.0109714791, 0.0214776918, -0.00647600181, 0.0416979082, 0.00791581161, -0.0245962329, 0.0107514206, -0.0190381873, 0.0270357355, -0.00926131103, 0.0354859754, 0.0135178678, 0.0224333741, -0.00545744644, 0.00382587104, -0.00351150194, -0.0144484006, -0.0111223757, -0.00692240568, 0.00840622745, -0.030405771, 0.00809185859, -0.0215782896, -0.0308081638, -0.018082507, 0.0130023025, -0.0137945125, -0.0366680026, 0.00460550608, -0.00376299722, -0.00554861315, -0.0107702827, -0.00816730689, -0.0114178825, -0.00448290212, -0.0275135767, -0.0227728914, -0.019402856, -0.0312860049, 0.0220058318, 0.0201950651, -0.0340524539, -0.0124741625, 0.00602016691, -0.0126439221, 0.0324177332, -0.00799126085, -0.023363905, 0.0210501496, 0.0173028708, -0.0456212312, 0.00288119214, 0.0419997, -0.047029607, -0.0213016458, 0.00702300388, 0.0513553247, -0.00197738106, -0.0126816463, -0.0252249707, 0.0221064296, 0.0519086123, -0.0129268542, -0.010952617, -0.0106319599, 0.00483813928, 0.0224710982, 0.01447355, 0.0387805626, 0.0144484006, 0.0101101082, -0.0407170765, 0.00942478329, -0.00704815332, -0.0359889641, -0.00188778597, 0.00156084215, -0.0364165083, 0.00419053901, -0.00577495899, -0.00685953209, 0.0136310412, 0.0123672774, -0.0174537674, 0.0119711719, 0.00786551274, -0.00292363181, 0.0304812212, 0.0114304572, -0.0424523912, 0.0129268542, 0.00833077915, -0.0065766, -0.0192016605, -0.00751970708, -0.00291105709, 0.00484128296, -0.0118831489, -0.01394541, -0.0112984227, 0.0173657443, -0.00712988945, -0.0088652065, 0.0490415692, -0.0151400119, -0.0137442136, 0.0403649807, 0.0308836121, 0.0320153423, 0.0160956942, 0.00122761098, 0.00274601346, 0.0240932424, -0.0211130232, -0.000490808627, -0.00215971516, -0.0229615141, 0.019842973, -0.00303837657, -0.00753856916, 0.0124867372, -0.00635968521, 0.00256996672, -0.0141843306, -0.00253224256, 0.0193274077, -0.0148507925, 0.00486957608, -0.0154795302, -0.0208489541, -0.00190822, -0.0224082246, -0.0138448114, -0.0441122614, -0.000260533328, -0.00857598707, 0.0198932718, 0.0103930403, 0.00214556861, -0.00214399677, -0.0208741035, -0.0105690863, -0.0120340465, -0.0121912304, -0.0173531696, 0.0212513451, -0.00407422241, 0.00228231912, -0.015969947, 0.00453320146, 0.0260800533, 0.0278405212, 0.0268345401, 0.000187835496, 0.0104810633, -0.0550271533, -0.00566492975, 0.0593025722, 0.0025149521, 0.0105879484, 0.0311099589, 0.00202610833, 0.0306069683, -0.000302580185, 0.000298847066, -0.00979573838, -0.0116756652, -0.01764239, 0.0166489836, 0.0126439221, 0.000311814772, -0.0159322228, -0.0233764797, 0.00864514802, -0.00679665804, -0.00329458737, -0.0239423439, 0.0127319451, -0.018962739, -0.00113015668, 0.0108394437, -0.0352596305, 0.0208363794, -0.0108897425, 0.00541029079, -0.00978316367, 0.0198303983, 0.0248477273, 0.0228609145, -0.00267056492, 0.0195034537, -0.0288968012, 0.0200315937, 0.00545115862, 0.00291734445, -0.0123861395, 0.0224962477, 0.0246088076, -0.00201667729, -0.00734366057, -0.0221693031, -0.0408176742, 0.00363724958, 0.0107262712, -0.000139501251, -0.0438356176, -0.0622199178, 0.00376299722, -0.0202327911, 0.0152154602, -0.00319084548, -0.0265578944, -0.0164855123, -0.00694755558, -0.0028136028, -0.0170388017, 0.0144484006, 0.0152154602, -0.0214525424, -0.0155549794, -0.0137442136, -0.0139957089, 0.0116316536, 0.0102987289, -0.017906459, -0.0185477715, -0.0255896393, -0.000682966725, -0.0242064148, -0.0137316389, 0.00476583419, 0.023892045, 0.0430559814, 0.0120214717, -0.0473314, -0.0165483858, -0.0337255076, 0.0253632925, 0.0269854367, -0.0037661409, 0.00245522195, 0.0372212939, 0.0218549352, -0.00940592121, -0.0110406401, -0.0171771236, -0.00535999192, -0.0059667239, -0.0344799943, 0.00971400272, 0.0450930931, -0.00930532347, 0.0019239384, -0.0193274077, -0.00995921064, -0.00432886137, 1.79042981e-05, -0.0247219801, -0.00401134882, -0.0142220547, -0.022659719, -0.00467466749, -0.018874716, 0.0139705595, -0.0491170175, -0.00457721297, -0.0082113184, -0.00783407595, 0.0048821508, 0.0361398645, -0.00884634443, 0.0273878295, -0.0261555035, 0.0206100326, -0.00567436079, -0.0162088666, -0.00938705914, 0.00770204095, 0.00375670986, -0.0354859754, 0.0506008379, 0.00797239877, -0.0151400119, -0.0293746423, -0.0107199838, -0.0128388312, 0.0147124706, 0.00805413444, 0.0240303688, -0.0125558991, 0.0134549942, 0.0237285737, 0.017554367, -0.0207860805, 0.0357626192, 0.00322856987, 0.0624714121, 0.0237788726, -0.00493245, -0.00591328135, -0.0202453658, 0.0254135914, -0.0092047248, -0.0218172111, 0.00619306974, 0.0238165967, 0.00270671723, 0.010933755, 0.024860302, -0.016674133, -0.000483735319, -0.0175292175, 0.0276141744, 0.0147753442, 0.00872059632, -0.026130354, -0.00778377708, -0.00903496612, 0.00955053, -0.00163000333, -0.0213519447, 0.00675893389, 0.00525939371, -0.0171896983, 0.0289722495, -0.020899253, 0.0329961739, 0.00854455, 0.0225088224, -0.0138573861, 0.0182082541, 0.0332225189, 0.0179693326, 0.0255141892, -0.00668977294, -0.0233513303, -0.000393157767, 0.0115184812, 0.0271614827, 0.0164477881, -0.0224962477, -0.00320499227, -0.0324177332, -0.0292991921, -0.0367937498, 0.0345805921, 0.0121597936, -0.0167370066, -0.00380700896, -0.00035248627, -0.0186232217, 0.0217669103, 0.014825643, 0.0299782306, 0.033348266, -0.00666462304, -0.0107765701, -0.00613019615, 0.020019019, 0.0169885028, -0.0152783347, 0.0201447662, -0.0112606985, 0.0252123959, 0.00917957537, 0.0252249707, -0.0128388312, 0.00745054567, -0.0244704839, -0.0436344221, 0.0115876421, 0.0607612431, 0.00393904373, 0.0191639364, -0.023627976, 0.00797868613, 0.00329773105, -0.0102169933, 0.0140208583, 0.0034517718, 0.0106822597, 0.0249860492, -0.0258788578, -0.00377242826, 0.0475828946, 0.0132537978, -0.00904754084, -0.0187741183, -0.0159322228, -0.00603902899, -0.00645085238, -0.0112418365, -0.00832449179, -0.0169004779, -0.00643827766, -0.00879604556, 0.0381015241, 0.0163597632, -0.00811072066, 0.0140585825, 0.0173280202, -0.0223453492, -0.0268345401, 0.00564292399, 0.0459230281, 0.00648857653, -0.0134927183, 0.00524367532, 0.039685946, 0.0174160432, 0.037170995, -0.00635968521, -0.0333734155, -0.00980202574, -0.0183214266, 0.00584412, -0.00334488647, -0.00944993272, -0.0149513911, -0.00238448894, -0.0147250453, -0.00640055351, 0.023627976, -0.00873317104, -0.0216411632, 0.00488529447, -0.0258537084, -0.026004605, -0.0522104055, -0.0100598084, -0.00862628594, 0.0128576932, -0.00536627928, -0.0150519889, -0.030933911, 0.0163220391, -0.00419682637, 0.00837479066, -0.00337946694, -0.0119711719, 0.00953795575, 0.0150142647, 0.0057026539, 0.0226094201, -0.0453948863, 0.00650115125, -0.0272369329, -0.0203082394, -0.00892179273, 0.0433577746, 0.0251369476, 0.0323674344, 0.029701585, -9.17073412e-05, 0.0107451333, 0.00170073647, -0.0145741478, -0.0398116931, -0.0465266146, -0.00963855442, 0.00242221332, -0.0157436, -0.00885263178, -0.00386045151, 0.0162591655, 0.0304560717, 0.00860113651, 0.0154795302, -0.00401763618, -0.00364039326, -0.0199938696, -0.00668977294, -0.00565235503, -0.00803527236, -0.00652630068, -0.0274632778, 0.0106382472, -0.00204025488, 0.0087583214, -0.00348635251, -0.0109966286, -0.0219806824, 0.00268471148, -0.0561337322, 0.00453634514, 0.0197675247, -0.00291105709, 0.0114681823, 0.00702300388, -0.0439865142, 0.0087583214, -0.0352093317, -0.0159825217, -0.0159447975, -0.00607360946, -0.053719379, 0.0139328353, 0.0105313621, -0.0118957236, -0.0403398313, -0.0140082836, -0.0088966433, 0.0126627842, 0.00161900045, 0.0110092033, 0.0101541197, -0.0168753285, -0.0118705742, 0.00240649492, 0.00319870492, -0.0042628441, -0.00750084501, -0.00670863502, -0.0240555182, 0.0248477273, -0.00558319362, -0.0305566695, 0.0362404622, 0.0424775407, -0.0299530812, 0.028117165, -0.0205345843, -0.0191262122, -0.0109651918, 0.00423140684, 0.0313111544, 0.017730413, 0.000998907606, 0.00502990419, 0.00567121711, 0.0347063392, 0.0157184508, -0.00296449987, -0.0375482365, 0.0337255076, 0.0101101082, -0.00625908701, 0.0174034685, -0.0198052488, 0.0329961739, 0.0539708734, 0.0289722495, -0.0201321915, -0.00489472551, -0.0500223972, -0.0206226073, 0.021427393, -0.00560205616, -0.00561463088, 0.0197172258, -0.0321913883, -0.0143352272, 0.0283435117, -0.021427393, 0.0196920764, 0.00927388575, -0.0514810719, -0.0108834552, 0.0227351673, 0.0181076564, 0.00782150123, -0.0103993276, -0.0115184812, 0.0303554721, 0.0213393699, -0.0230746865, -0.0013957984, -0.0346057415, 0.0237285737, 0.00582525786, 0.0206854809, 0.0164352134, -0.0253507178, 0.036919497, 0.00805413444, 0.0122855417, -0.027060885, -0.011285848, 0.0235022288, -0.00271929195, -0.016145993, -0.00260297558, -0.0290225483, 0.0179819074, -0.0129897278, -0.00489786919, 0.00803527236, -0.0376991332, 0.00861999858, -0.00302108633, 0.021427393, 0.0229112152, -0.0253255684, 0.00028863005, 0.0276141744, -0.0109903412, 0.00428485, -0.0171896983, 0.011725965, 0.0196040515, -0.00940592121, 0.00912298914, 8.85145273e-05, 0.0245710835, -0.00297550275, 0.000567829062, -0.00734366057, 0.00821760669, -0.000495917106, 0.00332916784, -0.0124678751, 0.0303554721, 0.0108645931, 0.0253632925, 0.00358066312, 0.00754485652, -0.0178435855, -0.00796611141, -0.00380700896, -0.00262812502, -0.0303303227, 0.00502361683, -0.0105879484, 0.0248980261, -0.0357877687, -0.0107891448, -0.0259543061, 0.0164477881, 0.0577433035, 0.0199184213, 0.00358695048, 0.00883377, 0.00123468437, -0.0154669555, -0.0263818484, -0.0153663578, 0.0112669859, 0.0336249098, 0.0212387703, 0.0272117835, -0.00868287217, 0.0262561012, 0.0413961112, -0.00449233316, 0.00945622, -0.0150519889, 0.0306069683, -0.00911041442, -0.000430292595, -0.0122289546, 0.0109086055, 0.0156681519, -0.0256273635, 0.0269854367, -0.00330716209, 0.0201573409, 0.0053631356, 0.000998121686, 0.0372715928, 0.000657424214, -0.0200818926, -0.0251998212, -0.0315878, 0.00323485723, -5.88950716e-05, -0.0193651319, 0.00675264653, -0.00797239877, 0.0230872612, -0.0317638442, -0.00402706722, 0.00758886803, -0.00260454742, -0.00491987541, 0.00335746119, -0.0136310412, -0.00857598707, 0.00897837896, 0.0216537379, 0.01394541, -0.0174286179, 0.00944364537, -0.00057450938, 0.00649486389, 0.0100472337, 0.0017258859, -0.0160328206, -0.0135430172, 0.0136939147, -0.00504247891, 0.00934304763, -0.00375670986, 0.00271457643, 0.00105470803, 0.0283435117, -0.0162968896, 0.009701428, -0.011443032, -0.00111129449, -0.0395350493, -0.00906011555, 0.00425026938, 0.0143981008, -0.0092047248, 0.0393841527, -0.00772090303, -0.00799126085, 0.0363662094, -0.0253507178, -0.0201824903, 0.0137190642, 0.0119397352, -0.0156430025, 0.0085697, 0.0272620823, -0.0111286631, -0.01420948, -0.0271866322, -0.011285848, -0.0157813244, -0.0217040367, -0.00739395944, 0.00911041442, 0.0108394437, -0.0385542177, 0.0119837467, -0.00899095368, 0.0174034685, 0.0140208583, -0.0132915219, -0.0234267786, 0.024772279, -0.0293243416, -0.00585355097, -0.0180699322, 0.00943735801, -0.0158316232, 0.0213770941, -0.0126376348, 0.00300851162, -0.00303051737, -0.00530969258, -0.0225465465, 0.00341090397, 0.0264824461, 0.0113361469, 0.00919843744, -0.0366177037, -0.0244579092, -0.00221472979, -0.0215657149, 0.00735623529, -0.00697899237, -0.00295664067, -0.00165358104, -0.0185729209, -0.00723677501, 0.00394533109, -0.0163723379, -0.00797239877, -0.0052153822, -0.00567750446, 0.0157687496, 0.0221693031, 0.0144484006, -0.00267213676, -0.00653258851, 0.0116002169, 0.00887149386, 0.00584097626, -0.0135681666, 0.000293935038, -0.0132789472, -0.0102735795, 0.00943107065, -0.0253758673, 0.00181390927, -0.00913556386, 0.0105942357, 0.00759515539, -0.00928017311, 0.0103427405, 0.0357877687, 0.0301039778, -0.00230275304, -0.0218800846, 0.00737509737, -0.00435715448, 0.0355362743, 0.0205345843, 0.0164100621, 0.00599501748, -0.0174160432, -0.00951280631, -0.0227854662, -0.00541343447, -0.00420940109, -0.0264572967, 0.0207232051, 0.00567121711, 0.0074002468, -0.01922681, -0.00938705914, -0.00412137806, 0.00697270501, 0.00967627857, 0.0152154602, -0.00352722034, -0.0156555772, -0.020019019, -0.0528642945, 0.00835592858, 0.0284692589, 0.00664576096, -0.0120969201, 0.0151903108, 0.00103741779, 0.00484128296, 0.0213267952, 0.0179190338, -0.0141466064, 0.0245585088, -0.0171519741, 0.000941535225, 0.00428799354, 0.00365611166, -0.0173908938, 0.0102358554, -0.00545744644, 0.0011309426, -0.0303303227, 0.0113109974, -0.00207955111, 0.0227728914, -0.010141545, -0.00376928458, -0.00508334721, 0.00609561522, 0.00728078652, 0.00151054317, -0.0074316836, 0.0106445355, -0.00931789819, 0.012166081, 0.000254442421, -0.0131657748, 0.024772279, -0.00804784708, 0.0161711425, -0.0166112594, -0.0163471885, 0.0117636891, 0.0194405802, 0.0106948344, -0.00197423738, 0.00816101953, 0.012606198, 0.00984603819, -0.0136436159, 0.010952617, 0.00454263249, 0.0129268542, 0.0178561602, 0.0392332524, -0.00425970042, -0.0190633368, -0.0207106303, 0.0274381284, -7.31276396e-06, 0.0171394, -0.0248351526, 0.00100126537, 0.00192551024, 0.0059667239, 0.0065766, 0.00927388575, -0.0156807266, 0.0145364236, 0.0246716812, -0.0201950651, -0.00577810267, -0.0292740427, -0.0164477881, -0.0126124853, -0.0180322062, 0.00909784, 0.0276896227, -0.000251691701, -0.00712360209, 0.0127759567, 0.000506134122, -0.00162528781, 0.0118768616, -0.0137693631, -0.00317041157, -0.00991519913, -0.0107325586, 0.0137064895, 0.020019019, 0.00405850401, 0.00464323023, -0.0333231166, 0.0247345548, 0.0226345696, 0.00725563709, 0.0344548449, -0.0185351968, -0.0168376043, -0.00497017428, -0.00205911719, -0.0165735353, -0.0171016753, 0.016674133, 0.00963226706, 0.00685953209, 0.0262058023, -0.00167715875, -0.00793467369, -0.00512421504, 0.0194531549, 0.0323925838, -0.00833706651, -0.0149010913, 0.0315375, -0.00139501248, 0.0069349804, -0.000811858, -0.0144861247, 0.0301039778, 0.0128451185, 0.0137442136, -0.0123106912, -0.0161208436, 0.00419997, -0.0167244319, 0.00365925534, 0.0244704839, 0.0255141892, -0.00517765759, -0.0104496265, 0.00571208494, 0.00564606767, -0.0135807414, -0.01500169, 0.00178561604, 0.0142597789, -0.00797868613, -0.00597615493, 0.00591328135, 0.0204214118, 0.0204088371, 0.00260926294, -0.0164100621, -0.0190507621, -0.0339015536, 0.0301542766, -0.00206540455, -0.0131909242, 8.09254652e-06, -0.0134298448, 0.00652001332, 0.0196166262, 0.0190507621, -0.0268093906, 0.00711102737, -0.0117762638, 0.0146873211, -0.0182711277, 0.00315154949, 0.0209495518, -0.01922681, 0.0228106156, -0.0168250296, -0.00329773105, 0.0184597485, 0.00310282223, 0.00248508714, 0.00387302646, -0.00234990846, 0.000567829062, 0.00243793172, 0.00493559381, 0.0109903412, 0.0100598084, -0.00148303586, -0.0024489346, 0.0217166115, 0.0299782306, 0.0134424195, 0.00355865736, 0.0040144925, -0.00373156019, -0.03211594, 0.00733737275, -0.01922681, -0.023892045, -0.00788437482, -0.0205597337, 0.00406479137, 0.0396356471, 0.0170513764, -0.00166301208, 0.0028639019, -0.0194280054, 0.0132412231, -0.00855712499, -0.01764239, -0.0104873506, 0.00673378445, -0.0172651466, 0.0385793671, 0.0217669103, 0.0145489983, 0.00196952187, -0.0285698567, 0.00342662237, 0.0228734892, 0.000686896325, -0.00626223115, -0.0435086712, 0.00217857724, -0.0151525866, -0.00823018141, 0.0149513911, -0.0383278728, 0.0154795302, 0.00411194703, 0.0410440192, -0.00953166839, 0.0262309518, -0.00182962767, 0.0141214561, 0.0260800533, 0.0191639364, 0.0380763747, 0.0214022435, 0.00419368269, 0.00100598088, 0.0124490131, -0.01922681, -0.00218014908, 0.000521852577, 0.0119648846, 0.0354105271, -0.00275387266, 0.0102610048, -0.00471239164, 0.00206383271, 0.0485385768, -0.0268848389, -0.0117008146, -0.0297518838, 0.00223830738, 0.0218549352, -0.0076643168, -0.00982717518, 0.0132915219, 0.00533484248, -0.00752599444, 0.0108583057, -0.0199938696, -0.00158363394, -0.00950651895, -0.0439362153, -0.0212890711, -0.0159573723, 0.00265484629, -0.0404152833, 0.000905382796, 0.0193399824, -0.00805413444, -0.00267528044, 0.0203836877, -0.0370703936, 0.0284441095, 0.0019317976, 0.0136561906, 0.0087897582, -0.0182711277, -0.0109211802, 0.0312608555, 0.0193274077, 0.00202139281, -0.0109714791, -0.000425970036, -0.00584097626, -0.00834964123, 0.000936819706, 0.00694755558, -0.00601702323, 0.0195034537, 0.0168501791, 0.0121975178, -0.0153160589, 0.00432257401, 0.0139202606, -0.0116819525, 0.00566492975, -0.00539457239, 0.00165043736, 0.00543229654, -0.000721869874, 0.0127256578, -0.0185351968, 0.0157436, 0.0159447975, 0.00916700065, -0.00131642027, 0.014825643, 0.005378854, -0.0328452736, 0.0178938843, -0.00936191, 0.017818436, -0.00826790556, -0.0149010913, 0.0152531853, 0.0397613943, 0.0235148035, 0.00357437576, -0.00944364537, -0.0225213971, 0.0214776918, 0.0204717107, 0.0140837319, 0.0357374698, -0.0335494615, 0.00723048765, -0.0371961445, 0.00512421504, -0.00355551369, 0.00474068476, 0.00834335387, -0.00458350033, 0.01394541, 0.0163346138, 0.00927388575, 0.00620878814, -0.000247172633, -0.00860742386, -0.0192016605, -0.00612705201, -0.0210501496, 0.0189878885, -0.0255016144, 0.00350835826, 0.00734994793, -0.00409308448, 0.00818616897, 0.00988376234, -0.000300418906, 0.0102107059, 0.00197738106, -0.0129017048, 0.0224333741, -0.00746940775, 0.0285447072, -0.00805413444, -0.00534427352, -0.00724306237, -0.00120324746, 0.0230495371, 0.0126313474, -0.00816730689, 0.0128388312, 0.0395853482, 0.00177932868, 0.0246088076, -0.00527825579, -0.0133292461, 0.00145081303, -0.0157310255, 0.00837479066, 0.0094687948, -0.00502361683, 0.00674635917, -0.00610190257, -0.00248508714, -0.00588184455, 0.00113408628, 0.00610819, -0.0143981008, -0.0042628441, -0.00542600919, 0.000181449868, 0.0151651613, 0.00404907297, -0.00597301126, 0.00768317888, 0.0166112594, 0.0121094948, -0.0114367446, 0.00051753, 0.00699785445, -0.0156933013, 0.0071676136, 0.00258254143, 0.00533798616, 0.0132915219, 0.00846910104, -0.00978316367, 0.020019019, -0.00312168431, 0.0033197368, -0.0097328648, 0.0103427405, -0.00362153118, 0.0141214561, 0.0113109974, 0.0271111839, -0.0157561749, 0.00812958274, 0.012782244, -0.0243195873, 0.00394847477, -0.0196417756, 0.0164729375, 0.00788437482, 0.0174914915, -0.00867658481, -0.0101541197, -0.00755114388, -0.00566807343, 0.0056272056, 0.00188307045, 0.0160202459, -0.00503619155, -0.0325686298, -0.00599501748, -0.0206477568, -0.00404278561, -0.00746940775, -0.000458192837, -0.00233104639, 0.00474382844, -0.00388560118, -0.0303806216, -0.0181202311, -0.0144861247, 0.00343919708, -0.0125118867, 0.00860742386, -0.0178310107, 0.00569322286, 0.0189375896, -0.010317591, 0.00689096889, -0.0274884272, 0.00850682613, -0.000871588127, -0.0162214413, -0.00234676478, -0.0110469274, 0.00145159895, -0.00271457643, -0.0105627989, 0.00961969234, 0.00285604247, 0.00515565183, -0.00269571436, -0.00435086712, -0.0169507768, -0.00541343447, 0.0151148625, -0.0184723232, 0.00372527284, -0.0155424047, -0.000987118692, 0.0109714791, -0.0118328501, -0.00457406929, 0.00312639982, -0.0204339866, 0.00137536449, -0.0102232806, 0.0177178383, -0.0151525866, -0.00181233743, 0.0162214413, -0.00925502367, -0.00343919708, 0.00757629331, 0.00395476213, -0.0152909094, -0.0202579405, -0.00404592929, -0.00212513469, 0.00770204095, -0.010317591, 0.000131249064, -0.0272369329, -0.00386359519, 0.0113675836, 0.0129645783, -0.0239297692, -0.00925502367, 0.00118438527, -0.0268848389, 0.0118894363, 0.00190822, 0.000248744502, 0.00694755558, -0.00125590421, -0.0024913745, 0.00631253, -0.00595414918, -0.00735623529, -0.0164603628, 0.0166615583, 0.0330716223, -0.0140460078, 0.00889035594, 0.0072682118, 0.0119523099, -0.0286201555, -0.00252438313, 0.0172777213, -0.00540085975, 0.004850714, 0.0274129789, 0.0114304572, -0.0170388017, -0.00644456502, 0.00105549395, -0.00429428089, 0.01368134, -0.0179441832, 0.000276251783, -0.016762156, 0.00751970708, -0.00857598707, -0.00105470803, -0.00491358759, 0.0231124107, 0.00718647568, 0.0127256578, 0.00118281343, -0.0273375306, 0.0158944987, -0.00297864643, 0.00465266174, 0.0128765553, 0.0339518562, 0.00976430159, 0.0215531401, -0.00721791293, -0.0105627989, -0.026130354, 0.0112606985, 0.0100912452, 0.0120026097, -0.0127067957, 0.00683438266, 0.0259040073, -0.00893436745, -0.0204339866, -0.00305252313, -0.0132412231, 0.0288716517, -0.00198838417, 0.0260800533, 0.000703400699, -0.000767060439, -0.0039359, 0.0120529085, -0.00794096105, -0.0116316536, -0.00950023159, -0.0262309518, -0.0300788283, -0.00862628594, -0.0087080216, 0.00325057562, 0.00900352839, -0.000213574458, 5.91897924e-06, -1.16660376e-05, 0.00355237, 0.00164729368, -0.0206226073, -0.00274129794, 0.0162968896, 0.00429742457, -0.0230369624, -0.00354922633, 0.00527825579, -0.0139202606, -0.0203962624, -0.000150405933, -0.00995292328, 0.00727449916, 0.024772279, 0.0146747455, -0.017026227, -0.022835765, -0.0123861395, 0.0141466064, 0.0116505157, -0.0192142352, 0.0161711425, 0.0345554426, -0.00640369719, -0.000331855786, -0.0174537674, -0.0163723379, -0.00721162558, 0.00451119523, 0.0202705152, -0.00502047315, -0.0103616025, -0.0256147888, -0.0156555772, 0.0160453953, 0.0188118424, 0.00508020353, 0.0145489983, -0.015969947, 0.0150645636, -0.00429428089, -0.0241561159, 0.00830563, 0.0194531549, 0.00585669465, 0.00564606767, -0.0155046806, 0.0152028855, -0.00208426663, -0.0177178383, -0.0168376043, 0.000401999394, 0.0152280359, 0.0265075956, 0.00115294836, 0.0291985944, 0.01447355, 0.0212890711, 0.0173531696, -0.0113550089, -0.00390760694, 0.0312357061, 0.00688468153, 0.0127948197, 0.0088652065, -0.0102547174, 0.0048821508, -0.0138322366, 0.0126879336, 0.0299027823, -0.0148633672, 0.0115687801, -0.0109966286, 0.0087394584, 0.0034674902, -0.00267213676, 0.0110343527, 0.00735623529, 0.0102358554, -0.00721791293, 0.000600837811, -0.00330401841, 0.00913556386, 0.00633453578, -0.0219052341, 0.0347314887, 0.00806042179, 0.00353665161, 0.00844395161, -0.00137143489, -0.011990035, -0.00655145058, -0.0234016292, -0.00219429587, -0.00667719822, -0.0195286032, -0.00420625741, -0.00746312039, -0.00636911625, 0.0226722937, 0.031462051, -0.00900352839, -0.00887778122, -0.0124930246, 0.0107325586, 0.00391075062, 0.0279662684, 0.00392961269, 0.0179316085, 0.0231124107, -0.0226219948, 0.0152783347, 0.00311696879, -0.0146244466, -0.0123232659, 0.0185854975, -0.01605797, -0.00126219157, 0.0334237143, 0.0239549186, -0.00226345705, -0.00968256593, -0.00901610311, -0.00238448894, -0.0142346295, 0.00714246416, -0.0108205816, 0.0128639806, -0.00444832165, -0.00484442664, 0.00672749709, 0.00209055399, 0.00199781521, 0.0129394289, 0.0213016458, -0.0237034243, 0.017818436, 0.0228986405, -0.00628109323, 0.0125936233, -0.00607675314, 0.000677072268, -0.00422511948, -0.000602802611, 0.0233890545, 0.0135681666, -0.0111601, -0.00330716209, 0.0176926889, 0.00301951449, 0.0135807414, 0.0212387703, -0.0020952695, -0.00221630163, -0.0200315937, 0.0287207533, 0.0399122909, 0.00291262893, 0.0120026097, -0.002293322, 0.0103678899, 0.00798497349, -0.0218675099, -0.00943735801, -0.0104433391, -0.00957568083, -0.0120969201, 0.00734994793, 0.00399563042, 0.00460864976, 0.00667719822, -0.00702300388, 0.00995921064, 0.0109148929, 0.0156807266, 0.0150519889, 0.000914813834, 0.0232130084, 0.00639426569, -0.0226974431, 0.0293997917, 0.0100283716, 0.00959454291, 0.000411037501, -0.0143478019, 0.0141591812, 0.0159825217, -0.0113801584, 0.0113864457, -0.0368943475, -0.0170513764, 0.00616477663, -0.0135681666, -0.00995292328, -0.00421883212, 0.0082616182, -0.00714875152, -0.00211255974, 0.0185603462, -0.00362153118, 0.00450490788, -0.00422511948, 0.00724306237, 0.00308553199, -0.0291985944, 0.0193902813, 0.0106382472, 0.0069601303, -0.00197266554, -0.0173405949, 0.000263480528, -0.00915442593, -0.00995292328, -0.00811072066, -0.00386359519, 0.0169507768, 0.022659719, 0.00792838633, -0.00479727145, -0.0232884567, -0.00362467486, 0.0252123959, -0.00395790581, 0.00736881, 0.0121786557, -0.00861999858, 0.00672120973, 0.00119931786, 0.0218423605, 0.00275701634, 0.0243070126, -0.00552032, 0.00814844482, -0.00938705914, -0.0161334183, 0.0016520092, -0.0232507326, -0.0150645636, -0.0128388312, -0.0067715086, 0.0217920598, 0.00945622, -0.0185729209, -0.010688547, -0.012801107, -0.00208269479, 0.0126502095, -0.0196795017, -0.00159463682, -0.00665204832, -0.00203082385, -0.000844866736, -0.0113361469, 0.00784036331, -0.00767060416, 0.00474068476, 0.00216285884, -0.0100975325, 0.0184094496, -0.00524367532, 0.0131280506, -0.00759515539, 0.00782150123, 0.0159070734, 0.000965898798, 0.0390069075, 0.0057183723, -0.00195851899, -0.00551717635, 0.00785293803, 2.98650575e-05, -0.0117133893, 0.000627952104, 0.00107514206, -0.00858856179, 0.0111475252, -0.0230243877, 0.00768317888, -0.0149010913, -0.018874716, -0.0118077006, -0.00119774602, 0.000289023, -0.00200410257, 0.00290948525, -0.00580639578, 0.00304466393, 0.00299750874, -0.0136436159, 0.01500169, 0.0052311006, -0.020899253, -0.00409937184, 0.00450805156, 0.0336249098, 0.0180447809, -0.00651372597, 0.00822389405, 0.00290476973, 0.00409622816, 0.00900352839, -0.0100346589, -0.00459921872, 0.00851311348, 0.00704186596, -0.0130023025, 0.000137241732, -0.00145631447, 0.0185854975, 0.0326692276, 0.0119523099, -0.0141340308, 0.0230118129, -0.0128451185, -0.00542286551, -0.0226094201, 0.002557392, 0.0115687801, -0.00564606767, 0.033348266, 0.00392018165, 0.0132412231, -0.0110595021, -0.00799126085, 0.00162528781, -0.00242692884, -0.00101305416, 0.0204465613, -0.00521223852, -0.0123987142, 0.0148885166, 0.00231847144, -0.0185603462, 0.0233764797, -0.0111915376, 0.0163597632, -0.00369069236, 0.010424477, 0.0137442136, -0.0240555182, -0.00633453578, -0.0215657149, -0.0137567883, -0.00127240864, -0.00204339856, 0.00444203429, -0.00979573838, -0.0161711425, -0.0101981312, -0.0174789168, 0.022571696, -0.0237411484, 0.00762659265, 0.0167873055, -0.0133166714, -0.0120969201, 0.00198052474, -0.0252501201, 0.0136184664, -0.00722420029, -0.00358695048, 0.0176675394, 0.0212010462, -0.0101163955, 0.00670234766, 0.0114681823, -0.00851940084, 0.00516508287, 0.0161082689, -0.00821760669, 0.000840151217, 0.0349578336, -0.00240177941, 0.00989633705, -0.0209244024, 0.0124490131, 0.0112795606, -0.00162371597, -0.00254010176, 0.0149891153, 0.0166489836, -0.0276393238, -0.0156681519, -0.0209621266, -0.00885263178, -0.0150142647, -0.00171488302, -0.0215405654, 0.0021109879, -0.0117762638, 0.00169916451, -0.00609875889, 0.0274884272, -0.00381329632, 0.0125621865, -0.00327572529, 0.0357626192, 0.0132160736, 0.00178247236, -0.0244327597, 0.0134046953, -0.0092361616, -0.00414338382, -0.0108520184, 0.00933676, -0.00535999192, 0.00750713237, 0.00558319362, 0.000138617092, -0.000456621, 0.00287490478, -0.00492616277, 0.00496074324, -0.00499532372, -0.0215028413, 0.000147360479, -0.0172399972, -0.02841896, 0.0153286336, 0.0372464433, -0.00748827029, 0.000899881299, 0.022131579, -0.00943107065, -0.00542915286, 0.0550774522, 0.0144358259, 0.00640055351, 0.00866401, 0.0296512861, 0.00216600252, 0.00566492975, -0.0446152501, -1.57798513e-05, 0.0186735205, 0.0267842412, -0.00659546209, -0.026532745, 0.00990891177, -0.00601702323, 0.00501732947, 0.00733737275, -0.000757629343, -0.000803605828, -0.00207955111, -0.00622765, -0.0124741625, 0.00470924797, 0.00180605007, 0.00455206353, 0.00106806878, 0.00590699399, -0.0134298448, 0.0242944378, -0.024420185, -0.0101729818, 0.0154669555, 0.00894065481, -0.0182208288, 0.00483499561, 0.0213896688, -0.00721162558, 0.0184220243, -0.0190884862, -0.00738138473, 0.00212356285, 0.00391703798, 0.00919843744, -0.00770204095, 0.00615534559, 0.0214776918, -0.00419682637, 0.00143037899, 0.0117825512, -0.012078058, 0.0350835845, -0.00763288, 0.0128136817, -0.00726192445, 0.00513678975, -0.00552660739, -0.00264227157, 0.0103930403, 0.0328704268, 0.00148224994, -0.00479727145, 0.00841251481, 0.00181705295, -0.0207735058, -0.00124490133, 0.0227980409, -0.00555175683, 0.0104433391, -0.00385730783, -0.0112481238, 0.0107765701, 0.0215279907, 0.00685953209, -0.018874716, 0.00707330322, 0.0127319451, 0.00124018581, 0.0129897278, -0.00462122448, 0.0222699, 0.0143352272, -0.0239423439, -0.00220687059, -0.00792838633, -0.00572151598, 0.036039263, 0.0219932571, 0.00892179273, -0.0170765258, -0.00740653416, 0.0168627538, 0.0078718, -0.0145741478, 0.0260297544, -0.00468724221, -0.00944993272, 0.0015899213, -0.00978945103, -0.0189124402, -0.0069349804, -0.000180074509, 0.00697270501, 0.0111852502, 0.00384158944, -0.00754485652, -0.0144861247, 0.020547159, 0.00189721701, -0.0209621266, -0.00941849593, -0.00492301909, 0.00844395161, 0.0151022878, -0.0152531853, 0.0193399824, 0.0104622012, -0.00550460164, -0.0177681372, 0.00539457239, 0.00956939347, -0.0102735795, 0.000142743185, 0.0175795164, -0.00584412, -0.00420940109, -0.0156681519, -0.00761401793, 0.00201196177, -0.0100283716, -0.0157310255, 0.00278059393, 0.0138196619, -0.0289973989, 0.00359323784, -0.0106319599, 0.0240429435, -0.01473762, -0.0300536789, 0.00771461567, -0.00291262893, 0.0202076416, 0.00601387955, -0.0218297858, 0.010688547, -0.00330716209, 0.0101163955, 0.025300419, -0.00243635988, -0.00904754084, 0.0129520036, -0.00137064897, 0.00399563042, -0.00154512376, -0.0246968307, -0.007764915, -0.0112041123, 0.000612626609, 0.00378814666, 0.00768946623, -0.0118265627, 0.0204214118, 0.00173688889, 0.0278153718, -0.0266836435, -0.000492380466, 0.00107749982, 0.0158190485, -0.0180070568, -0.00935562234, -0.0159322228, 0.0023168996, 0.0112606985, -0.0418488048, 0.0108834552, 0.0376236849, -0.0156807266, -0.000216521657, -0.000798890251, 0.0133292461, -0.00972657744, -0.005114784, 0.0127885314, -0.017202273, -0.0242818631, -0.0134424195, -0.00634711049, -0.00306509808, -0.000921101251, 0.00157420291, 0.00384473312, 0.00769575359, 0.0121157821, 0.0237034243, -0.01341727, -0.0243195873, 0.00962598, -0.00709845265, -0.00789066218, -0.0154543808, 0.0180322062, 0.015617853, -0.00405536033, 0.0209369771, -0.0167873055, -0.0199687202, -0.0258034095, -0.0359889641, 0.0352596305, -0.00684067, 0.0134298448, -0.0135681666, -0.00931789819, -0.0172651466, -0.00157498883, -0.0089720916, 0.0262058023, 0.0046180808, 0.00537256664, 0.0208238047, 0.0353099294, 0.00528454315, 0.00884005707, -0.000825218682, 0.00907897763, 0.00012063911, 0.020987276, 0.0214902665, 0.0124490131, -0.00183277135, 0.00887778122, -0.0512295775, 0.00342347869, 0.00110972265, 0.0124112889, -0.00434457976, 0.0155675542, 0.00569951, -0.0140585825, -0.00236091134, -0.0110657895, 0.00240649492, 0.00138872513, 0.0131280506, -0.00112465513, 0.00200410257, -0.00402706722, 0.0213896688, -0.00509277824, 0.00497331796, 0.0143226525, -0.00652001332, 0.0129520036, 0.0127005083, -0.00409622816, -1.35326036e-05, -0.00860113651, 0.00352407666, 0.000259550929, -0.014033433, 0.00762659265, 0.00498903636, 0.00726192445, 0.00896580424, 0.0193022583, -0.0156052783, -0.024508208, 0.00612076465, -0.020635182, -0.00220215507, -0.00714875152, -0.00801012293, -0.0194405802, -0.00617420767, 0.00161742861, 0.00442631589, 0.0189375896, -0.00736252265, -0.0063313921, -0.00660803681, 0.00432571769, 0.00792838633, 0.0157687496, -0.0146118719, -0.00658917474, -0.0219681077, 0.0138448114, 0.00875203311, 1.09353759e-05, 0.000257586129, 0.0159070734, -3.05036192e-05, -0.0512295775, -0.0050990656, 0.0087897582, 0.00624022493, 0.0279662684, 0.00741282152, 0.00467152381, 0.0133292461, 0.0143352272, -0.0147879189, -0.01368134, -0.0149639659, 0.00341404765, 0.00160956942, 0.0146998959, -0.0123547027, 0.00295821251, 0.00149875437, -0.023804022, 0.00760144275, 0.0152154602, -9.1117894e-05, 0.0037504225, 0.00867029745, 0.000633060641, 0.0123044038, 0.00412137806, 0.0150771383, -0.020019019, 0.0302045755, 0.0129771531, -0.0092361616, 0.00710474, 0.00543544, 0.00357751944, -0.0141591812, -0.0144861247, 0.00982088782, 0.0185854975, -0.00215342781, -0.00488843815, 0.0020371112, 0.000729336112, 0.00548259588, -0.00816101953, -0.00197738106, -0.000662139733, 0.0164477881, -0.00131720619, 0.0357374698, 0.00165043736, -0.0183843, 0.000388245739, 0.00979573838, 0.0112104, 0.00689096889, -0.00336689223, -0.0017683258, 0.0121535063, -0.00233890559, -0.00309024751, -0.0196669269, -0.0020952695, 0.00123389845, -0.026130354, 0.00439173542, 0.00772719039, -0.00762659265, -0.000132427944, -0.00442002853, -0.00476583419, -0.00531283626, -0.00792209897, -0.00457092561, -0.0343290977, -0.00124961685, 0.00233576191, -2.04462667e-05, 0.0207357798, -0.00251180842, 7.73642532e-05, 0.0194657296, -0.0271363333, -0.00807299651, 0.0108960299, -0.0163346138, 0.0110783642, 0.0204339866, 0.00556747522, -0.0363913588, 0.0004149671, 0.0163471885, -0.0103741782, 0.00950651895, -0.0400631875, 0.00250237738, 0.00412766542, -0.00750713237, -0.0123547027, -0.00385102048, 0.0158944987, -0.00156398583, 0.000624415465, -0.00493245, 0.0136310412, -0.0158190485, -0.0140208583, 0.00495131221, 0.000759201183, 0.0228483398, 0.0203836877, 0.0328201242, -0.0079535367, -0.00880233292, -0.0304812212, 0.0204465613, -0.0164855123, -0.00446089637, 0.00785293803, 0.00899095368, -0.0124867372, -0.0146747455, -0.00333859911, 0.0125558991, -1.89603816e-05, 0.0195034537, -0.00768317888, 0.000870016287, -0.0109966286, 0.0183843, 0.00841251481, -0.0120026097, 0.0163974874, -0.0112481238, -0.00124411541, 0.00379757769, 0.00223202, -0.0106256725, -0.00327258161, -0.00848796405, -0.0103238784, 0.0179441832, 0.0167747308, 0.00430999929, -0.0125496117, 0.0146873211, 0.00357437576, 0.00136750529, -0.00631881738, -0.0149010913, -0.0102798669, -0.0146244466, 0.0326189287, 0.0030037961, 0.00782150123, 0.000935247866, 0.000847224495, -0.00508020353, 0.00712360209, 0.0269602872, 0.0143478019, 0.0020952695, -0.0152154602, 0.0118831489, 0.0288716517, -0.00552032, 0.000305134425, -0.0468535572, -0.00142880715, -0.00455520721, -0.0114744697, 0.0332979672, -0.00940592121, 0.00128105376, 0.00799126085, -0.00250866474, -0.00484757032, -0.0212890711, 0.0170765258, -0.0110595021, 0.0329961739, -0.00385416416, -0.00153569272, -0.00271772, -0.0198681224, 0.0213770941, 0.00109871977, 0.0319901928, 0.00764545472, 0.0131029012, 0.0115121938, -0.00550460164, 0.0351338834, 0.0128136817, -0.000270750315, -0.0289219506, 0.00913556386, -0.0168627538, -0.00271143275, 0.00493245, -0.0131280506, -0.0110343527, 0.00365925534, 0.00263284054, -0.0216160137, 0.00181705295, -0.0329207256, 0.00363724958, 0.0126439221, 0.00310753775, 0.0103741782, -0.00807928387, -0.00967627857, 0.00919843744, 0.000559969805, -0.00397048052, 0.0190004632, 0.00346434652, -0.0155424047, -0.0274381284, -0.00519337645, -0.0197172258, 0.025476465, -0.00100440904, 0.0141214561, 0.0163723379, -0.00262969686, 0.0212387703, -0.0216788873, 0.00204182672, -0.00801012293, 0.00965112913, 0.0205220096, -0.0131406253, -0.0140460078, -0.00368126133, 0.0056272056, 0.00220529875, -0.0417482071, -0.00141151692, 0.0196669269, -0.0074002468, -0.00233261823, 0.0034517718, 0.00254638912, -0.00730593596, -0.00811072066, -0.0147124706, 0.0021031287, -0.0215782896, 0.0258537084, -0.0178310107, -0.0116505157, -0.0077397651, -0.00756371859, -0.00282460568, -0.0110029159, 0.000133312118, -0.00197266554, 0.00134392758, 0.00800383557, 0.0098083131, -0.0024913745, 0.0114304572, -0.0162843149, -0.019930996, 0.0186860953, -0.014033433, 0.0116630904, 0.00977687631, 0.0041465275, -0.0156304277, 0.0176549647, 0.00252281129, -0.00115766388, 0.00190193253, -0.0175292175, 0.0141088814, 0.0387554131, 0.00523424428, 0.00712360209, -0.0254010167, -0.0173908938, -0.00144766935, 0.0163094644, 0.00995921064, 0.00396104949, 0.0268596895, -0.0025416736, -0.00704186596, -0.00374727882, 0.0102044186, 0.0249860492, 0.0155549794, -0.00545744644, -0.00448290212, -0.00714246416, 0.000531676633, 0.00274601346, 0.0136058917, -0.0161837172, 0.00232161512, -0.0145741478, 0.0280668661, -0.00782150123, 0.018434599, -0.0013957984, -0.0241686907, -0.00388874486, 0.0124238636, -0.0100472337, -0.0149262408, 0.00801641, 0.0141466064, -0.0103678899, -0.010845731, 0.0226094201, -0.0177555624, 0.00848796405, 0.0253255684, -0.0187489688, -0.00818616897, -0.0203333888, -0.00294406596, 0.0246465318, -0.00234833662, 0.00963226706, -0.00242064148, -0.00347377779, -0.0245962329, 0.0308333132, -0.018434599, 0.000903810957, 0.00405536033, -0.00978316367, -0.0246465318, 0.0119711719, -0.0184974726, 0.0161711425, 0.00938705914, -0.0112669859, 0.03105966, 0.00876460876, 0.0231124107, -0.0181453805, -0.0328201242, 0.00975172687, -0.0114178825, -0.0036655427, 0.00976430159, 0.00431314297, 0.0072682118, 0.0106822597, 0.0121975178, 0.00843766425, 0.00833706651, 0.0111349504, -0.0207735058, 0.0046023624, -0.00515250815, 0.0233890545, -0.00921101216, 0.0210501496, -0.00785293803, -0.00154983927, -0.00209055399, 0.00726192445, 0.0292991921, 0.0145741478, 0.0144106764, -0.000194515829, 0.017730413, -0.0160705447, 0.00414338382, -0.0171645489, -0.0179819074, -0.00184534618, 0.00382272736, -0.00675893389, 0.00867658481, -0.0177555624, -0.00746940775, 0.00565864239, -0.0148759419, -0.00295349699, -0.0307075661, -0.0037661409, -0.0119082984, 0.0033197368, 0.00106492511, 0.01473762, 0.00414338382, 0.0184220243, -0.00044601105, -0.0182711277, 0.00246308139, 0.0122792544, 0.00148853729, -0.00937448442, -0.00137693633, -0.023892045, -0.0033857543, -0.000847224495, -0.00102091336, 0.0132034989, 0.040264383, -0.00141230284, -0.0116693778, -0.0113801584, 0.00283246487, -0.00652001332, 0.00292363181, 0.0308081638, -0.0156555772, 0.0104370518, -0.00578439, -0.0302045755, -0.00386045151, 0.0207357798, 0.0108583057, -0.0170136523, 0.00149325281, -0.0123232659, 0.000402195874, 0.0288465023, 0.0114178825, 0.0167244319, 0.00234047743, -0.0232130084, -0.0131657748, -0.0241686907, 0.00719276303, 0.0028796203, 0.00772090303, -0.0252878442, 0.0130148772, 0.0106005231, -0.00672749709, 0.0208363794, -0.000124175771, 0.00204025488, -0.0134046953, 0.0105062127, -0.000611447729, 0.0128199691, -0.0390320569, 0.0111538125, 0.0216537379, -0.0167244319, 0.0130526014, -0.00622450653, 0.0275387261, -0.00701671652, -0.0140460078, -0.0153789325, -0.00434772344, -0.000625201385, 0.00295821251, -0.00205911719, -0.00240177941, -0.0100598084, -0.0107639953, 0.00121582218, -0.0207609311, 0.00802269764, 0.00347063411, 0.0252249707, -0.00157341699, 0.0239046197, 0.023275882, 0.01420948, 0.00568379182, 0.0215782896, -0.0103113037, 0.0195160285, -0.0014225198, 0.000555254286, -0.0139328353, 0.00464323023, -0.00431628665, 0.0240806676, -0.0022508821, 0.0063313921, 0.0113612963, -0.00432886137, 0.0260800533, -0.00768946623, 0.00473754108, 0.0148759419, 0.00212827837, -0.00745683303, -0.0354859754, 0.000579617859, 0.0124490131, -0.00131327659, -0.00107592798, 0.0171016753, 0.00737509737, -0.0209244024, 0.00359323784, -0.00023911694, 0.00469981693, 0.00625594333, -0.0135807414, -0.000496703084, -0.00586298248, -0.0296512861, -0.00876460876, 0.0197046511, 0.00340461661, 0.00572466, -0.00395476213, -0.00573094748, -0.0168627538, 0.0102107059, 0.00999693479, -0.0213393699, -0.0213519447, -0.0153412083, 0.00367811765, 0.00386359519, -0.0136310412, -0.0101101082]
07 Jun, 2023
unordered_set bucket_count() function in C++ STL 07 Jun, 2023 The unordered_set::bucket_count() method is a builtin function in C++ STL which returns the total number of buckets present in an unordered_set container. The bucket is a slot in the unordered_set’s internal hash table where elements are stored. Note: Buckets in unordered_set are numbered from 0 to n-1, where n is the total number of buckets. Syntax: unordered_set_name.bucket_count(); Parameter: This function does not accepts any parameter. Return Value: This function returns the current count of buckets present in the unordered_set container. Below programs illustrate the unordered_set::bucket_count() function: CPP // CPP program to illustrate the // unordered_set::bucket_count() function #include <iostream> #include <unordered_set> using namespace std; int main() { unordered_set<int> sampleSet; // Inserting elements sampleSet.insert(5); sampleSet.insert(10); sampleSet.insert(15); sampleSet.insert(20); sampleSet.insert(25); cout << "The sampleSet container has " << sampleSet.bucket_count() << " number of buckets\n\n"; for (auto itr = sampleSet.begin(); itr != sampleSet.end(); itr++) { cout << "The Element " << (*itr) << " is present in the bucket: " << sampleSet.bucket(*itr); cout << endl; } return 0; } Output: The sampleSet container has 11 number of buckets The Element 25 is present in the bucket: 3 The Element 5 is present in the bucket: 5 The Element 10 is present in the bucket: 10 The Element 15 is present in the bucket: 4 The Element 20 is present in the bucket: 9 Time Complexity-O(1) Learn C++ Online – Master everything from basics to advanced concepts. Apply your knowledge with practical exercises and boost your skills. Take the Three 90 Challenge: finish 90% in 90 days for a 90% refund. Start now and level up your C++ programming!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum/Algorithm for Dynamic Time out timer Calculation/Difference between Round trip time (RTT) and Time to live (TTL)/Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms/Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm/Round Robin Scheduling Algorithm with Different Arrival Time/Selfish Round Robin CPU Scheduling/Find the order of execution of given N processes in Round Robin Scheduling/Calculate server loads using Round Robin Scheduling/set::lower_bound() Function in C++ STL/Implementation of lower_bound() and upper_bound() in List of Pairs in C++/Difference between std::set::lower_bound and std::lower_bound in C++/Difference between std::set vs std::vector in C++ STL/std::minmax() and std::minmax_element() in C++ STL/std::rotate vs std::rotate_copy in C++ STL/std::bitset::to_ullong and std::bitset::to_ulong in C++ STL/std::upper_bound and std::lower_bound for Vector in C++ STL/std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++/std::string::append vs std::string::push_back() vs Operator += in C++/Vector push_back() in C++ STL/vector :: cbegin() and vector :: cend() in C++ STL/unordered_multiset cend() function in C++ STL/unordered_multiset bucket() function in C++ STL/unordered_multiset emplace_hint() function in C++ STL/unordered_multiset end() function in C++ STL/unordered_multiset size() in C++ STL/unordered_multiset emplace() function in C++ STL/unordered_multiset find() function in C++STL/unordered_multiset erase() function in C++ STL/unordered_multiset clear() function in C++ STL/unordered_multiset swap() function in C++ STL/unordered_multiset bucket_size() function in C++ STL/unordered_multiset bucket_count() function in C++ STL/unordered_set bucket_count() function in C++ STL
https://www.geeksforgeeks.org/unordered_set-bucket_count-function-in-c-stl?ref=asr3
PHP
unordered_set bucket_count() function in C++ STL
unordered_multiset clear() function in C++ STL, What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, jQWidgets jqxTreeMap width Property, Round Robin Scheduling Algorithm with Different Arrival Time, Difference between Flow and TypeScript, unordered_multiset emplace() function in C++ STL, jQWidgets jqxTree destroy() Method, unordered_set bucket_count() function in C++ STL, jQWidgets jqxTree collapseAll() Method, Find the order of execution of given N processes in Round Robin Scheduling, jQWidgets jqxScrollView buttonsOffset Property, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Vector push_back() in C++ STL, jQWidgets jqxListBox enableHover Property, Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm, std::rotate vs std::rotate_copy in C++ STL, Selfish Round Robin CPU Scheduling, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxSlider buttonsPosition Property, std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++, std::upper_bound and std::lower_bound for Vector in C++ STL, Difference between Round trip time (RTT) and Time to live (TTL), jQWidgets jqxSlider rtl Property, Difference between std::set::lower_bound and std::lower_bound in C++, jQWidgets jqxTooltip opacity Property, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, unordered_multiset erase() function in C++ STL, jQWidgets jqxToolBar height Property, PHP, std::minmax() and std::minmax_element() in C++ STL, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, Node.js date-and-time Date.transform() Method, unordered_multiset size() in C++ STL, TypeScript Optional Parameters, jQWidgets jqxToolBar theme Property, Difference between std::set vs std::vector in C++ STL, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, Steps to Diagnose and Resolve a Slow Network, How to use Optional Chaining with Arrays and Functions in TypeScript ?, Calculate server loads using Round Robin Scheduling, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, jQWidgets jqxScrollView showButtons Property, Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms, jQWidgets jqxScrollView disabled Property, jQWidgets jqxSplitter destroy() Method, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, set::lower_bound() Function in C++ STL, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, jQWidgets jqxTree collapseItem() Method, std::string::append vs std::string::push_back() vs Operator += in C++, unordered_multiset swap() function in C++ STL, unordered_multiset cend() function in C++ STL, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), jQWidgets jqxSortable opacity Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, vector :: cbegin() and vector :: cend() in C++ STL, jQWidgets jqxSlider height Property, jQWidgets jqxSwitchButton onLabel Property, unordered_multiset bucket_size() function in C++ STL, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, jQWidgets jqxToolBar tools Property, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTree width Property, Implementation of lower_bound() and upper_bound() in List of Pairs in C++, jQWidgets jqxTree clear() Method, TLS Handshake?, Algorithm for Dynamic Time out timer Calculation, Adhoc TCP, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, jQWidgets jqxTabs position Property, Differences between Wireless Adhoc Network and Wireless Sensor Network, jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, std::bitset::to_ullong and std::bitset::to_ulong in C++ STL, unordered_multiset emplace_hint() function in C++ STL, unordered_multiset bucket_count() function in C++ STL, unordered_multiset find() function in C++STL, unordered_multiset bucket() function in C++ STL, Impact of Three-way Handshake and Slow Start Algorithm, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, unordered_multiset end() function in C++ STL, How to Sort an Array Having Optional Properties in TypeScript ?
GeeksforGeeks
[-0.0130628459, -0.000415808638, -0.0101890201, 0.00122805941, 0.0485573336, -0.0263687223, -0.00329609029, 0.0328576155, -0.00589954574, -0.0101890201, -0.0324444659, -0.00403733086, -0.00124932453, -0.00550462259, -0.00400391407, -0.0199527387, -0.01538378, 0.000709722692, 0.00610004552, -0.00687774038, 0.0360413045, 0.0248862412, -0.0231971852, -0.00159792032, -0.00904070493, 0.0106386254, -0.0308161657, -0.0157847796, 0.00156298478, -0.000543019501, -0.0169148669, 0.01939377, -0.0181057118, -0.00890703872, -0.00998852, 0.0281428397, 0.010201172, 0.00726658804, -0.0128927259, -0.00765543571, -0.0134030879, 0.0261743, 0.0255181193, 0.0161979292, 0.0171335936, -0.000795922242, 0.0157969296, -0.0251535736, -0.0250563622, 0.0263930261, 0.00622763624, -0.023573881, 0.0345588215, 0.0294552, 0.0160885658, -0.0172915626, 0.00764935976, 0.0246796664, 0.00677445298, -0.010037127, -0.0186403785, -0.0148369633, 0.0221157018, -0.00763113238, -0.0226989742, 0.0105657158, -0.0243151207, 0.0557024069, 0.0539525934, -0.0158090815, -0.0452521294, 0.0377668142, 0.0313508324, 0.0336596146, -0.019734012, 0.00386721012, 0.00486363191, -0.0341942795, -0.0284101721, 0.042967651, -0.0274137501, 0.0311321039, -0.0121697122, -0.00824478269, -0.0149463266, -0.00928981, -0.0130628459, -0.0276810825, 0.0132694216, 0.0387146324, -0.00946600642, -0.00934449211, 0.00180449546, -0.016720444, -0.0397110544, 0.0372078456, 0.0212164931, 0.00995814148, 0.00353608211, 0.0467103086, 0.0114406236, -0.0188834071, 0.0121150305, -0.0185188632, 0.010365217, 0.0255424213, 0.0226868223, -0.0020217034, 0.00208397978, -0.00403733086, 0.0371106341, 0.0278998092, -0.00872476585, 0.04182541, -0.0105657158, -0.000459098286, -0.00627016602, -0.0131479064, 0.0234888196, 0.0106750792, 0.00961790048, 0.0223951861, 0.0365030617, -0.00647674128, -0.0344130062, -0.0103166103, 0.0113555631, 0.0166475344, 0.0026687698, -0.0232093371, 0.0213015527, -0.025420906, -0.0188591052, -0.0490190908, -0.023573881, 0.0113980928, 0.0171943512, 0.0314237401, -0.0169270188, -0.0319827087, -0.0567717366, -0.0163437482, -0.0141807832, 0.0184702575, 0.000475047127, -0.00538310781, -0.0182150751, -0.00286015589, 0.0180085, 0.0176075026, 0.0292364731, 0.0243151207, 0.0235617291, 0.0175588951, 0.0120785758, -0.00753999641, 0.017716866, -0.0165260192, 0.0164288078, -0.0218240675, 0.031763982, -0.000114964438, 0.0093141133, -0.0150678409, -0.026417328, 0.0388847515, 0.00296344329, 0.018895559, -0.0293579884, 0.0196368, 0.0311564077, 0.0147397509, 0.0083784489, 0.0238047596, 0.00757645071, -0.00993383862, 0.0675136521, 0.0217997637, 0.0282400511, 0.00480895024, -0.0100918086, 0.0101221874, 0.0360413045, -0.0112644266, -0.00277661439, 0.00604840182, 0.00710254302, -0.00520083541, 0.0491649099, 0.0482413955, 0.00390670262, 0.0128441192, 0.0213015527, 0.0562856793, 0.0505015701, -0.00651927153, -0.0346803367, 0.0073638, -0.0336353108, 0.0393951125, -0.0362114236, 0.000546816795, -0.0277053863, -0.0149463266, 0.00743063306, 0.02307567, 0.0041831485, -0.0175102893, 0.0520083569, 0.0252507851, 0.005185646, 0.03509349, -0.00128122221, 0.022079248, -0.0623128153, 0.0250320584, -0.0582785234, 0.0457624942, 0.0171092916, -0.0231485795, 0.0295038056, -0.0280942339, 0.0204874035, -0.0452521294, -0.0317153744, -0.0287018083, 0.0393708125, 0.020232223, -0.00828731246, -0.0341699757, 0.0242665149, 0.00249105436, -0.0396624468, -0.00423479266, 0.0405130498, -0.0296496227, -0.0505501777, -0.00157209835, 0.00716937613, 0.0137433298, -0.0081597222, 0.0678538904, -0.01571187, -0.0413150489, -0.00323837064, 0.0221157018, -0.0246189088, -0.0509390235, -0.00447782222, 0.00848173629, -0.000218536865, 0.00990953576, 0.0348990634, -0.0153594771, 0.0294065941, 0.025591027, -0.0383743905, -0.0164531115, 0.022905549, -0.0150070842, 0.011865925, 0.0407803841, -0.0459083095, 0.00947815832, -0.00220245658, 0.0121454094, 0.00975764263, -0.0295767151, -0.0358711854, -0.0331249498, 0.0302085914, -0.00179841975, 0.0115621379, 0.00811111648, 0.00897387136, 0.0114892293, -0.0150313871, -0.00128805742, -0.0322743431, -0.00872476585, 0.0174981374, -0.0299655627, 0.00989738479, 0.00298926537, 0.0208641, -0.0170120783, -0.0630419, -0.0158698391, 0.00432592863, -0.0397110544, -0.00841490366, 0.0123033784, -0.00360899093, -0.0197097082, -0.00379126333, 0.0122547727, 0.0060028336, -0.02307567, -0.0332950689, -0.0295281094, -0.0296982285, -0.0569661632, -0.0298197437, -0.0238169096, -0.00732126972, -0.0253236946, 0.00775872311, -0.0155052952, -0.00318065123, -0.0162829906, 0.0280213244, -0.0429190435, -0.0335624032, -0.00359076378, -0.0121393334, -0.0264659338, 0.0201471616, 0.0143022975, -0.0497724824, -0.00811111648, -0.0125281811, 0.00111413933, -0.0223465804, 0.0449361913, 0.00928981, -0.00726658804, 0.00633092364, 0.0577438548, -0.00359987747, -0.0228447914, 0.0105657158, 0.0132815726, -0.0493836366, -0.0226503685, 0.00302420091, -0.0226746704, -0.022577459, 0.0238169096, 0.0156268105, 0.0296253208, 0.0264416318, 0.0236589406, -0.017400926, -0.00472085178, 0.00272193272, 0.0174616836, 0.00753999641, -0.0341699757, -0.008366297, 0.0433564968, 0.000602257962, -0.00192904822, 0.00867616, -0.00503982836, 0.0408775955, -0.0241085459, -0.0276810825, -0.0222979747, -0.000443908939, -0.0149098719, -0.0232093371, 0.0216539465, 0.00529197184, 0.028604595, 0.00287686405, -0.0167690497, -0.0036120289, -0.0405616574, 0.0407803841, -0.0500155129, -0.0187497418, 0.00743063306, 0.0120117432, -0.00113540434, -0.0219698846, -0.00437453436, -0.0116350465, 0.0212894, -0.00910146255, -0.00243637268, 0.0202079192, 0.0502585433, 0.000486439123, -0.0184824094, 0.00558360713, -0.0183487423, -0.0290177464, 0.0115864407, -0.0186282266, 0.00784985907, -0.0297225323, -0.0314480439, 0.02274758, -0.0197218601, -0.0202565249, 0.0255424213, -0.0445473455, -0.0325902812, -0.065715231, -0.0611948781, 0.0377182104, -0.00626409054, 0.00524032768, -0.0147397509, -0.024242213, 0.00730911829, 0.0037031651, -0.0248862412, -0.01571187, 0.00639775675, 0.0189806204, -0.0329791307, 0.0104442015, 0.0404644459, 0.0259312689, -0.0181664694, -0.0432349853, 0.00338722649, 0.014885569, -0.00733342115, -0.0306460448, 0.0110639269, -0.0333436765, -0.0148248114, -0.0156997181, 0.0187011361, -0.00086731225, 0.018895559, 0.0012751465, -0.0383257829, -0.00813541934, 0.0195517391, -0.0252507851, 0.0332221612, 0.0201471616, -0.0364787579, 0.0137190269, -0.0195031334, -0.0183851961, -0.0225896109, 0.0333193727, 0.0554107726, -0.00369708939, -0.0386174209, 0.0113008814, 0.0278025977, 0.00433200458, -0.00497907074, -0.00985485408, 0.0180085, -0.0454222523, -0.00119844021, -0.0052342522, 0.0160885658, 0.00335077196, -0.00284040952, 0.00095085369, -0.00390974, 0.0281671416, 0.0115682138, -0.00918652304, 0.0202929806, -0.00749746617, 0.018227227, -0.00514919171, 0.0409991108, 0.0105657158, -0.00291483756, -0.00926550757, -0.00649496866, -0.0189684685, -0.0239505768, -0.0073638, 0.00203385483, -0.000814149505, -0.027924113, 0.0096665062, -0.0139620565, -0.0358468816, -0.00851819105, 0.011884152, -0.0118416222, -0.0282400511, 0.00228296034, 0.0156632643, 0.00360595318, -0.0080564348, -0.0200256463, -0.0132937245, -0.00544082746, -0.0428947434, -0.0335624032, -0.0121636363, -0.035458032, 0.020742584, 0.00108452, -0.03509349, -0.0307432562, 0.00207942282, -0.0089920992, 0.0316910744, -0.0066893925, -0.0322743431, 0.0199891925, 0.0198433753, -0.045640979, 0.00206271466, 0.0437939502, -0.0326388888, -0.0118902279, 0.010195096, 0.0357253663, -0.0139134498, -0.0101586413, -0.0111186085, 0.00795314647, 0.0400999, -0.0336353108, -0.024910545, -0.0097697936, 0.00546513032, 0.0120968036, 0.0113130324, 0.0388118438, 0.0250806641, 0.0148248114, -0.0396867506, 0.00653749891, -0.0205724649, -0.0272436291, 0.0194180738, -0.00718152756, -0.0318125859, -0.0135246031, -0.0136339664, 0.00606662873, -0.00170272682, 0.013706875, -0.0315452553, 0.0155660519, 0.0129413316, 0.00777695049, 0.023744002, 0.00352393067, -0.045300737, 0.0202443749, 0.0151650533, -0.00754607236, -0.0196003448, 0.00469654892, 0.0140106622, 0.00155690906, -0.0114588505, -0.0127469078, -0.00660433201, 0.0185431652, -0.00207638508, -0.00768581405, 0.057355009, -0.013378785, -0.012200091, 0.0395409316, 0.0383014791, 0.035433732, 0.0100067481, -0.0057537281, 0.00784985907, 0.0246918183, -0.026927691, 0.00181512802, 0.0062883934, -0.0203172825, 0.0193816181, 0.00076782197, -0.00605143933, -0.000530868, -0.0179598946, 0.00737595139, -0.0130263921, 0.0123216053, 0.0140228141, -0.0141443284, 0.0026323155, -0.0183851961, -0.0191142857, -0.00219030515, -0.0282400511, -0.0260770861, -0.0540012, -0.00812934339, -0.0318368897, 0.0236467905, 0.0201228596, 0.00539222127, -0.00941132475, -0.0195517391, -0.00735164853, -0.00639775675, -0.0216539465, -0.0282157473, 0.0109424125, -0.00376696023, 0.00318976492, -0.0118902279, -0.00322621921, 0.0150921447, 0.0159184448, 0.0202686768, 0.00933234, 0.010693307, -0.0449604951, 0.00357861235, 0.0496023633, -0.00890703872, 0.0192114972, 0.0214230679, 0.00188955595, 0.0371349379, -0.00783770811, 0.00892526563, -0.00536488043, 0.00536184292, -0.0219941884, 0.0100675058, 0.0222858228, 0.0124917263, -0.0271707196, -0.0236224867, 0.0129413316, -0.0161371715, 0.000663774845, -0.0225896109, 0.00510058599, -0.0138526931, -0.00603017444, 0.0147276, -0.0322257392, 0.0330520384, -0.009198674, 0.000739341893, -0.0166839883, 0.0145453271, 0.0208641, 0.0288962312, 0.00469958689, 0.0141200256, -0.0274380539, 0.0179234408, 0.0125524839, 0.00732734567, -0.0157483239, 0.0238169096, 0.0296253208, -0.00109667156, -0.0165381711, -0.0172672607, -0.0327117965, 0.0169270188, 0.00553803938, -0.00322621921, -0.042311471, -0.0413879566, 0.00959967356, -0.00294977287, 0.0130993007, 0.00290572387, -0.0195517391, -0.00601802301, -0.00764328428, -0.00530716125, -0.0308890752, 0.00303939, 0.018397348, -0.0137311779, -0.0138283903, -0.0230149124, -0.016720444, 0.0172551088, 0.0321771316, -0.00104502775, -0.0242543649, -0.0126132416, 0.00185613928, -0.0286288988, -0.0172794107, 0.00236953958, 0.0206696764, 0.0466617, 0.00869438704, -0.0325416774, -0.0148126604, -0.0190778319, 0.0259798747, 0.0174130779, -0.0187011361, 0.00692027062, 0.0313022248, 0.0370134227, -0.0107419128, -0.00730304234, -0.00857287273, -0.0132329669, -0.0101404143, -0.0339026414, 0.0119449096, 0.0471963659, -0.00648889318, 0.00191841566, -0.0325173736, -0.0149584776, -0.00507932063, 0.00107768481, -0.0352150053, -0.00972118787, -0.0149827814, -0.0155295981, 0.00954499189, -0.012200091, 0.0267332662, -0.0541956238, -0.0130506949, -0.0105049592, -0.00919259805, 0.00438668625, 0.0356038511, -0.00268851616, 0.0210949779, -0.0234888196, 0.0221886113, -0.00684736157, -0.00220549456, -0.00609093206, 0.00937487092, 0.00224650581, -0.0305002276, 0.0533693209, 0.00635522651, -0.0129170287, -0.0117869405, -0.010869503, -0.0168055035, 0.00397657324, 0.0121575603, 0.0219698846, -0.0159913544, 0.0124917263, 0.0222250652, 0.0147519028, -0.018895559, 0.0435995273, 0.0167690497, 0.0693120733, 0.0281914454, 0.0104320496, -0.00187892339, -0.00877944753, 0.0261743, -0.0103530651, -0.0289448369, 0.0143266, 0.0300870761, 0.00416492159, 0.00863970537, 0.00638560532, -0.00658610463, 0.00265206164, -0.0197461639, 0.0272436291, 0.0224924, 0.014375207, -0.0139499046, 0.00341760507, -0.0296739265, 0.0165867768, -0.0117808646, -0.0290177464, 0.0108816549, 0.00788631383, 0.000889336807, 0.036017, -0.0150921447, 0.0248862412, 0.00507020717, 0.0171700474, -0.0145817818, 0.0158333853, 0.0484115146, 0.0213015527, 0.0102801565, -0.00681090727, -0.0338054299, 0.0154931433, 0.00517957052, 0.0322014354, 0.0177897736, -0.0277053863, -0.0120968036, -0.0316667706, -0.0338783413, -0.0250320584, 0.0337811299, 0.00752176903, -0.0220549461, -0.00925943162, 0.0170971397, -0.0210463721, 0.0121697122, 0.0150192352, 0.0412178375, 0.0500641167, -0.0165624749, -0.0284830816, -0.00136020686, 0.0121514853, 0.0236346386, -0.0086154025, 0.0148248114, -0.0202686768, 0.0283615664, 0.00862147845, 0.0294795018, -0.0101647172, 0.0113555631, -0.0167447459, -0.0497724824, 0.0108816549, 0.0420684405, 0.0109970942, 0.0120664248, -0.0148005085, 0.00547728175, -0.00220245658, -0.00845743343, 0.0094174007, 0.00952676404, 0.00618206803, 0.0191142857, -0.026417328, 0.000246827025, 0.0349719748, 0.016878413, 0.0072240578, -0.016550323, -0.0196124967, 0.00440187566, -2.30510341e-06, -0.0105049592, -0.00351785496, -0.0114223957, -0.00221308926, -0.0124795754, 0.0239505768, 0.0129413316, -0.00843313057, 0.0120542729, 0.0176561084, -0.0200377982, -0.0260527842, -0.00406163372, 0.037791118, 0.00631877221, -0.00857894868, 0.0139863594, 0.0574522205, 0.0269519929, 0.0475123078, 0.000134330869, -0.0273165386, -0.00570816, -0.0116289714, 0.00816579815, 0.00687774038, -0.00258674729, -0.0262715109, -0.00594207598, -0.00842705462, 0.00390062667, 0.0350691862, -0.010201172, -0.0357010625, -0.000942499551, -0.0387389325, -0.0298926532, -0.046297159, -0.00373354368, -0.0183365904, 0.00944170356, -0.00324444659, -0.0166475344, -0.0394437201, 0.015881991, 0.00961790048, -0.00232852832, -0.0100553539, -0.00237865327, 0.0050003361, 0.016902715, 0.00583878858, 0.0161128696, -0.045300737, 0.0100614298, -0.0184945595, -0.0149706295, -0.0221764594, 0.0392979, 0.0190413762, 0.0241450015, 0.0206453726, 0.00616384065, 0.0100614298, 0.00846350938, -0.0301599856, -0.0374265723, -0.0476095192, -0.0121393334, 0.0107601397, -0.0156025067, -0.00726051209, 0.00617599208, 0.00563221332, 0.0291149579, 0.00809288863, -0.00489401072, -0.0119995913, -0.00304850377, -0.015213659, -0.00397049775, -0.005431714, -0.0179720465, -0.00759467809, -0.0178262293, 0.0106264735, 0.0150313871, 0.0108026704, -0.0055866451, -0.01170188, -0.016404504, -0.0082751615, -0.0533207171, -0.00836022198, 0.0234280638, -0.0237926077, -0.00108527951, 0.00423783, -0.0322014354, 0.00991561171, -0.0258340575, -0.0255424213, -0.0201350115, -0.0089920992, -0.0468804277, 0.0145210242, 0.0155782038, -0.0157361738, -0.0321771316, -0.00808681361, -0.0113555631, 0.00792276859, -0.0088462811, 0.0157847796, 0.0216296427, -0.0158698391, -0.0129656345, 0.0165624749, 0.00843920652, -0.00477249594, -0.00599979563, -0.0073638, -0.0234159119, 0.0283372626, 0.00637953, -0.0234159119, 0.0234402139, 0.0409991108, -0.02675757, 0.0132208159, -0.0204387978, -0.0119935153, -0.00280091725, 0.000652382849, 0.0217511579, 0.0112218959, -0.00258522853, 0.00161766645, 0.0181300156, 0.0200013444, -0.00107920379, 0.00422567874, -0.0383500867, 0.0366002731, 0.00880982634, -0.011209745, 0.0283615664, -0.01505569, 0.0374265723, 0.0524944142, 0.0187132861, -0.0236103348, 0.020730434, -0.043307893, -0.0260041784, 0.0272679329, 0.0009387022, -0.00626409054, 0.0200134963, -0.0305731371, -0.0111429114, 0.0373293608, -0.0221400056, 0.0146182366, -0.0065739532, -0.0476581231, -0.00761898095, 0.0236103348, 0.0139499046, 0.0129413316, -0.00939309783, -0.00773442024, 0.0216539465, 0.0178869851, -0.0215324312, -0.00966043, -0.0246067569, 0.00915614422, 0.000626560941, 0.0213623103, 0.00865185726, -0.0213866141, 0.0223708842, 0.0093141133, 0.00749746617, -0.0332950689, -0.010875579, 0.0161493234, -0.0160764139, -0.0137190269, -0.00373961939, -0.0190899838, 0.0184824094, -0.00409808848, -0.00911361352, -0.00101464894, -0.0402457193, 0.00915614422, -0.00487882132, 0.0216539465, 0.0339755528, -0.0189927705, -0.00696280086, 0.0207182821, -0.0044292165, 0.00598156825, -0.0188105, 0.0278025977, 0.0219334308, -0.00610004552, 0.0193451643, 0.00675015, 0.0278025977, -0.00159488246, 0.00123337575, -0.00247282721, 0.00107236858, -0.00811719149, -0.00679268, -0.00342671876, 0.0361628197, 0.0015766552, 0.0152987195, -0.00436238293, -6.16592952e-05, -0.0152015081, -0.00417403504, -0.00712684589, -0.00134425808, -0.021410916, -0.00362721831, -0.00735164853, 0.0185917728, -0.0388118438, -0.0115742898, -0.0257854518, 0.00996421743, 0.0538553819, 0.0301842894, -0.0035603852, 0.00653142296, -0.0109727914, -0.00728481542, -0.0310591962, -0.0107844425, 0.00922905281, 0.0308404695, 0.0296496227, 0.0305731371, -0.0101768691, 0.0214595217, 0.0515222959, 0.00224194909, 0.0189077109, -0.00716937613, 0.0234402139, -0.0113434112, 0.0069749523, -0.00952676404, 0.0163437482, 0.010207247, -0.018227227, 0.0343157947, -0.00159943919, 0.0298683494, 0.0120178191, 0.00443529198, 0.0285073835, 0.00620940886, -0.0202686768, -0.0228690952, -0.0331492499, 0.0113859419, -0.0203780401, -0.014205086, 0.00557145569, -0.00899817422, 0.0186160747, -0.0348990634, 0.00537095638, 0.00796529837, 0.0112279719, -0.00335077196, -0.00918652304, -0.0105839437, -0.00819010101, 0.00507020717, 0.0181178637, 0.0153959319, -0.0089495685, 0.0126010897, -0.00800175313, 0.0106143225, 0.0117504857, 0.0135003, 0.00121287012, -0.0167082921, 0.00436238293, -0.000505046104, -0.00135109329, 0.00653142296, 0.00163893157, 0.0113008814, 0.0154931433, -0.0146546913, 0.00723013375, -0.0161736272, 0.000350114657, -0.0353365168, -0.00679875584, 0.00986093, 0.0139499046, -0.0120968036, 0.0290906541, -0.0113798659, 0.00208701752, 0.0256396327, -0.0319341, -0.00311989384, 0.016380202, 0.016222233, -0.0070417854, 0.0127833625, 0.0293579884, -0.00124856504, -0.0200499501, -0.0168176554, 0.000254801445, -0.0109667154, -0.0222250652, -0.00114907476, 0.00573853869, 0.00204296852, -0.0279970206, 0.0194666795, -0.00019157576, 0.0229906105, 0.00688381633, -0.018069258, -0.0100006722, 0.0285802931, -0.0406345651, 0.00339937792, -0.0220670961, 0.00804428291, -0.0096786581, 0.0318611935, -0.0160764139, -0.00127362751, -0.00582663715, -0.00395834632, -0.0230027605, -0.00141336955, 0.0266603585, 0.00395834632, 0.0017270298, -0.0207668878, -0.0235617291, 0.000246447307, -0.019916283, 0.0174859874, 0.00572031178, -0.00173766236, -0.024740424, -0.0155174462, -0.0020217034, 0.0109302606, -0.00979409646, -0.00596030336, 0.00581144774, -0.0111186085, 0.0114649264, 0.0139742075, 0.00836022198, 0.0158455372, -0.0151285985, 0.00648889318, -0.00872476585, 0.0204023439, -0.00363025605, -0.00538007, -0.0159184448, -0.0181907732, 0.0211435836, -0.0248133317, -0.00756429927, -0.0115621379, 0.013706875, 0.00877944753, -0.0126132416, 0.0140592679, 0.0371592417, 0.0340241566, 0.00119236449, -0.0129777864, -0.0051188129, -0.00139742077, 0.0361871235, 0.00876729656, 0.0243029706, 0.000446567079, -0.0137797836, -0.0157361738, -0.0240477882, 0.00242877798, -0.00726051209, -0.0114527745, 0.0193451643, 8.14529194e-05, 0.0200985558, -0.0191750433, 0.000568841409, -0.00844528247, 0.0108269732, 0.000871109602, 0.0163072925, -0.00108831737, -0.00253814133, -0.0128076654, -0.0342428833, -0.00540437317, 0.0343644, 0.0125767868, -0.0141078737, 0.00955714285, -0.00410416396, 0.00649496866, 0.00204600627, 0.00292243203, -0.0153473252, 0.0336353108, -0.00750354212, 0.0031001477, 0.00568081904, 0.00420137588, -0.0291149579, 0.00741848163, -0.00896779634, 0.0011240124, -0.0163315963, 0.0141443284, 0.00863363, 0.0197947696, -0.000230878213, 0.00413758075, -0.00322318147, 0.00983055122, 0.00811111648, -0.0168662611, -0.014047117, 0.0102376258, -0.00367582426, 0.0202808287, -0.00679268, -0.0140714198, 0.0184824094, 0.00281610666, 0.00851211511, -0.0146060847, -0.016380202, 0.014217237, 0.0124917263, 0.00793492, -0.0143630551, -0.00320799206, 0.0055350014, 0.00374873308, -0.0291635636, 0.00633092364, 0.00362721831, 0.000789846526, 0.0124188177, 0.0353122167, -0.0114041688, -0.0136825722, -0.0122486968, 0.0346803367, 0.00226017623, 0.018044956, -0.0207182821, 0.012698302, -0.0083784489, -0.00497907074, 0.00418618647, -0.00157817407, -0.0136704203, 0.01906568, 0.0336839147, -0.0222250652, -0.0154566886, -0.0268061757, -0.0131722093, -0.0177047141, -0.00520691136, 0.00180601445, 0.0282886568, -0.000228030214, 0.00217511575, 0.00610915897, 0.00653749891, 0.00463275379, 0.00867008418, -0.0199405868, -0.00944170356, -0.0117990915, -0.010705458, 0.00439579971, 0.0274866596, 0.00123641361, -0.00409808848, -0.031618163, 0.0200377982, 0.0244973935, -0.000691495428, 0.0341699757, -0.0137433298, -0.0137919355, -0.00756429927, 0.00407682313, -0.0189077109, -0.0258097537, 0.0143022975, 0.0147276, 0.00953284, 0.0273894463, 0.00468439749, 0.00193360506, 0.00465401867, 0.0301599856, 0.0248619374, -0.00679875584, -0.0153351743, 0.0322743431, -0.0200134963, 0.0115560619, -0.000254421728, -0.00374569534, 0.0133058764, 0.0124370446, 0.0151042957, -0.00777695049, -0.0251292717, 0.00382164214, -0.0142779946, 0.00904070493, 0.0208762512, 0.021410916, -0.00548639568, -0.0138040865, 0.00565347821, 0.00255484972, -0.0149341747, -0.0122851515, 0.00630054483, 0.0117201069, -0.00794099551, -0.0129534826, 0.00964827929, 0.0116897281, 0.0165260192, 0.00234979345, -0.0198069196, -0.00670762, -0.0342671871, 0.0402457193, -0.00435326947, -0.0202079192, 0.00593296252, -0.0173523203, 0.00630662078, 0.00551677402, 0.00711469445, -0.0176682584, 0.00851819105, -0.00748531474, 0.0126132416, -0.0154688405, 0.00313508301, 0.0146668423, -0.0196368, 0.0270006, -0.0118476981, -0.00891311467, 0.020560313, 0.00870653894, 0.00775264762, -0.00728481542, -0.000787568104, 0.00529500935, 0.0126496954, 0.0103955958, 0.0143266, 0.0112522747, -0.00483932905, -0.0050155255, 0.0206210706, 0.0263930261, 0.0270249024, -0.0071633, 0.00399176264, -0.00105869817, -0.0333679765, -0.000243409435, -0.0213258564, -0.0233794563, -0.000504666357, -0.0155782038, -0.0051826085, 0.0314966477, 0.0142293889, -0.0088462811, 0.0134273907, -0.0209370088, 0.0199770406, -0.00114223955, -0.00510362349, -0.0172915626, 0.000472389, -0.015213659, 0.0383500867, 0.0261013899, 0.00216600229, 0.00776479905, -0.0249834526, -0.00637953, 0.0344859138, 0.00846958533, -0.01538378, -0.0515709035, -0.0013723583, -0.0111611392, -0.021228645, 0.0179355927, -0.0412421413, 0.0153959319, 0.00873691775, 0.0341213681, -0.00719367899, 0.0142415408, -0.00693242205, 0.00721190637, 0.021082826, 0.0193694662, 0.0454465523, 0.0289934427, 0.00820832793, 0.00520083541, 0.018895559, -0.0264659338, 0.00375177106, 0.0027675007, 0.0196489505, 0.0450091, 0.00642205961, 0.00918044709, 0.0086275544, 0.0104320496, 0.045300737, -0.0352879129, -0.0223465804, -0.0275109615, -0.00257003913, 0.01939377, -0.000231637678, -0.0147397509, 0.0146546913, -0.00373354368, -0.00489704823, 0.00922297686, -0.0216053408, -0.0133909369, -0.0158212334, -0.0410477147, -0.0273651443, -0.0214473717, 0.00176044635, -0.0368919075, -8.86204e-05, 0.023914123, -0.0114406236, -0.000318217, 0.0298197437, -0.034801852, 0.0270492062, -0.00625801459, 0.0218119156, 0.0124309687, -0.0147397509, -0.0145939337, 0.0247282721, 0.0322743431, -0.0125767868, -0.00842097867, 0.010541413, -0.00972726382, -0.0108573521, -0.00292243203, 0.00449908711, 0.000145438084, 0.012868423, 0.00357861235, 0.0127712106, -0.0158698391, 0.00195031334, 0.012540332, -0.00380949047, -8.9664667e-05, -0.00603017444, 0.00858502369, 0.00194879435, -0.00321406778, 0.0167812016, -0.0171214417, 0.0168662611, 0.0146425394, 0.00771619286, 0.0131479064, 0.0106993821, 0.0029345837, -0.0356038511, 0.0194059219, -0.0121757882, 0.0169999283, -0.00795922242, -0.0141200256, 0.0151285985, 0.0395409316, 0.0161614753, 0.0105960947, -0.0121028787, -0.0144238127, 0.0250806641, 0.0220306423, 0.0156875663, 0.0286775045, -0.0181786213, 0.00574461464, -0.0355309434, -0.0060028336, 0.0033264691, 0.00608181814, 0.00164500729, 1.5984424e-05, 0.0135246031, 0.0122304698, 0.0141929341, 0.00926550757, -0.000440111588, -0.00757037522, -0.0200742539, -0.0024348537, -0.00849996414, 0.0240477882, -0.0211435836, -0.00698102824, 0.0129534826, -0.00658002915, 0.0107965944, 0.000878704246, 0.0016814617, 0.016902715, 0.00163133687, -0.00897994731, 0.0142415408, -0.00991561171, 0.0156389605, -0.00336596137, -0.00275686826, -0.0108026704, 0.00179234403, 0.0285802931, 0.0135246031, -0.0109059578, 0.0182029251, 0.0352636091, 0.0132937245, 0.0101707932, -0.00692027062, -0.0100492779, 0.00153716281, -0.00634915102, 0.00711469445, 0.00653749891, -0.000222144328, 0.00580537179, 0.00296648126, -0.0034540596, -0.0066529382, -0.00710254302, -0.00775264762, -0.0188348014, -0.00269762962, -0.00738810282, 0.00172399194, 0.0216053408, 0.00748531474, -0.00853641797, 0.00336596137, 0.012212242, 0.00493350299, -0.0129656345, -0.00764328428, 0.00176804105, -0.0204266459, 0.00567170558, -0.00601498503, -0.00889488682, 0.00950853713, 0.0082751615, -0.0114345476, 0.0170728359, -0.00950246118, 0.00352696842, 0.00262016384, 0.00842705462, -0.00438972376, 0.00690204324, 0.0130871497, 0.0275352653, -0.00946600642, 0.0142779946, 0.0113251843, -0.0210220683, 0.00733342115, -0.0174616836, 0.0158212334, 0.00873691775, 0.0249348469, -0.00753999641, -0.0141686313, -0.0111186085, 0.000757189409, 0.00123033789, -0.00335684768, 0.00908931065, -0.00366974855, -0.0312293172, -0.0115682138, -0.00969080906, -0.00888273586, -0.0198555272, 0.000894653087, -0.00242574024, 0.0117930165, -0.00726658804, -0.0278512035, -0.0174495317, -0.0153594771, 0.00015502637, -0.0103226863, 0.00784985907, -0.0168298073, 0.00508539658, 0.0391763858, -0.00391277811, -0.0012591976, -0.0336839147, 0.01538378, -0.00579322036, -0.0207911916, 0.00136932044, -0.00138147199, -0.000385809661, -0.00399783859, -0.0196246486, 0.00850603916, 0.020742584, 0.00219182414, -0.012376287, -0.00247890293, -0.00959359761, -0.00550158462, 0.0115985926, -0.0278998092, -0.00503982836, -0.000470870029, -0.000163285586, 0.0202200711, -0.0105049592, -0.00502160098, -0.00223587314, -0.021909127, 0.00136096636, -0.0166961402, 0.0250077564, -0.015213659, -0.00469654892, 0.0178140774, -0.00513704028, -0.000820225221, 0.000994143309, -0.0042985878, -0.0200499501, -0.0175953507, -0.00983055122, -0.000195562956, 0.00797745, -0.0150799928, -0.00151134096, -0.0141807832, -0.000953891547, 0.0139256017, 0.0102619287, -0.0214959774, -0.0126618473, -0.00250320579, -0.0250563622, 0.0132451188, 0.00628231792, -0.00604840182, 0.0116289714, 0.00393708097, 0.00319887837, 0.00437453436, -0.00113084761, -0.0217511579, -0.0207911916, 0.0126496954, 0.0310591962, -0.0136582693, 0.0129291797, -0.00259434199, 0.0010784443, -0.0280213244, 0.00456895819, 0.0147762056, -0.00867008418, 0.00519476, 0.0163923539, 0.0118598491, -0.0119327586, -0.0169513207, -0.00151134096, 0.00690204324, -0.000127970328, -0.0066529382, 0.00211587735, -0.00752176903, 0.00870046299, -0.0121089546, 0.00738810282, -0.00938094594, 0.0238898192, -0.00265509938, 0.0144116608, -0.00289812917, -0.0296253208, 0.0192479528, 0.00419833791, -0.00278876582, 0.0065739532, 0.0317882858, 0.0287018083, 0.00879767537, -0.00797137432, -0.00459022354, -0.0211192816, 0.00763720833, 0.00825693365, 0.00977587, -0.0177776217, 0.00295584882, 0.0261499956, -0.008366297, -0.019563891, -0.00744886044, -0.0263687223, 0.0292364731, -0.00386721012, 0.0228933971, 0.00159792032, 0.00958144572, -0.00664686225, 0.0222615208, -0.00649496866, -0.0150313871, -0.0146182366, -0.0265388433, -0.024424484, -0.00953891594, -0.0024424484, 0.0014710892, 0.0149584776, -0.000120185781, 0.00199588132, -1.32194864e-05, 0.00344798388, -0.00801998, -0.0146182366, -0.00101464894, 0.0148126604, 0.00702355849, -0.027608173, -0.0112218959, 0.0159305967, -0.00293610245, -0.0152987195, -0.0024500431, -0.00953284, 0.00524032768, 0.0267089643, 0.00472692773, -0.0115803648, -0.0227961857, -0.00727873947, 0.0155295981, 0.0077283443, -0.0154202348, 0.0153351743, 0.0406588688, -0.0161857773, -0.00128350058, -0.0179841984, -0.0162465349, -0.00773442024, 0.00471781427, 0.0112340478, 0.00157209835, -0.00438061031, -0.0226868223, -0.0187618919, 0.0130506949, 0.0107176099, -0.000741240568, 0.0252264831, -0.0196489505, 0.0113251843, -0.000468591636, -0.0109424125, 0.0102254748, 0.00182879844, 0.00517045707, -0.00444744341, -0.01538378, 0.0111732902, -0.0131965131, -0.0192236491, -0.0140835708, -0.00108983635, 0.0125524839, 0.027583871, 0.00526159303, 0.0275352653, 0.0166718382, 0.0261743, 0.014873418, -0.0108573521, 0.00339634, 0.0287261102, 0.00153412495, 0.0079106167, 0.0075096176, -0.00625193911, 0.0116168195, -0.0191264376, 0.0210342202, 0.0161007177, 0.00486363191, 0.0216296427, -0.00545297889, 0.00857287273, 0.0113251843, -0.0119388336, 0.00745493593, 0.00559879653, 0.0159305967, -0.0125281811, 0.00053390587, -0.000940980623, 0.00713899732, 0.00939309783, -0.0303058028, 0.0189563166, 0.00146501337, -0.00430466374, 0.0197704658, -0.00644636294, -0.0120542729, -0.011027473, -0.0212164931, 0.00385505869, 0.00415884564, -0.0156511124, 0.0044292165, -0.0126375444, -0.00386721012, 0.0258340575, 0.0329062231, -0.0057537281, -0.00184854469, -0.00366063486, 0.0149584776, 0.0156511124, 0.00617903, 0.00331431744, 0.0141200256, 0.0186889842, -0.0169391707, 0.0109727914, 0.00233764201, -0.0223830361, -0.0119995913, 0.0124674235, -0.00949031, 0.0014171669, 0.0282886568, 0.0211071298, -0.00420137588, -0.0125160292, -0.00673192274, -0.0031684998, -0.0158455372, 0.00110122829, -0.0142901465, 0.000699849566, -0.0113434112, -0.00444744341, 0.00319887837, 0.00259889895, -0.00666508963, 0.00191993464, 0.020912705, -0.027583871, 0.0104016708, 0.0208884031, -0.00396746, 0.0125281811, -0.00637953, -0.00710861851, -0.00775872311, 0.00575676607, 0.0218848251, 0.00942347664, -0.00417707302, -0.00478768488, 0.0096665062, 0.00402517943, 0.0043654209, 0.0257125422, 0.00244852412, 0.00145058357, -0.00769189, 0.0324930698, 0.0374508761, 0.000616308127, 0.0183122884, -0.00888881087, 0.00473907916, 0.00629446935, -0.0143266, -0.0133909369, -0.00692027062, -0.0124309687, -0.0198312234, 0.0139620565, 0.00624586316, -0.00207030936, 0.0087429937, -0.00227384665, 0.0151893562, 0.0169391707, 0.00932626426, 0.0113920169, -0.00651927153, 0.0243515763, 0.0184338018, -0.0292364731, 0.0368433036, 0.00328393886, 0.0127469078, -0.00211587735, -0.018895559, 0.0128441192, 0.00782555621, -0.0177047141, 0.0011999592, -0.037305057, -0.0175588951, 0.0139377536, -0.00306673092, -0.00915006828, -0.00397353573, 0.00721798185, -0.0166596863, 0.00794099551, 0.0243394244, 0.00162070431, 0.00443225401, 0.00341760507, -0.00165867771, -0.00234827446, -0.0280213244, 0.00893741753, 0.00508539658, 0.00576587953, -0.000925031782, -0.0183365904, 0.00787416194, -0.00867616, -0.00769189, -0.00324140862, -0.000754531298, 0.0149584776, 0.0234402139, 0.0119509855, -0.00660433201, -0.00489097275, -0.0103105353, 0.0237196982, -0.00650712, 0.00479679881, 0.00316546182, -0.00701140705, 0.00118932663, -0.00551069854, 0.0315209515, 0.00186677184, 0.0264416318, -0.0061699166, 0.00492438907, -0.00970903691, -0.011543911, -0.00031802716, -0.0252507851, -0.00637345389, -0.0136947231, -0.00470566237, 0.0159062929, 0.00889488682, -0.0140592679, -0.0121940151, -0.0115013802, -0.00144830509, 0.0161857773, -0.013208664, 0.00233764201, -0.00375177106, 0.000272648933, -0.00254421728, -0.0104806554, 0.00971511193, -0.00238472898, 0.00706001278, 0.00130172784, -0.00892526563, 0.00926550757, -0.00476338202, 0.00452946592, 0.00400391407, 0.00286471262, 0.014375207, -0.00048416073, 0.0404887497, 0.00456592068, 0.000594663317, 0.000707824, 0.0100857327, -0.00471173832, -0.00424998207, -0.00414365623, 0.00439579971, -0.00574461464, 0.0187861957, -0.0226625185, 0.000133001799, -0.016052112, -0.0182515308, -0.0174373817, -0.00435934542, 0.0136096636, -0.00938094594, -0.000835414568, -0.0139742075, 0.00662255939, 0.00653142296, -0.0169999283, 0.0168298073, 0.00502767693, -0.010359141, -0.00415277, -0.00694457348, 0.0340241566, 0.0108998818, -0.0185553171, -0.0031441967, -0.00373658165, 0.01505569, 0.00867008418, -0.0117504857, -0.000332646887, 0.00819010101, 0.00405859575, -0.0204023439, -0.00367886201, -0.00515222969, 0.0191628914, 0.0254695117, 0.0161614753, -0.00769796595, 0.0224802475, -0.0136704203, -0.00253054686, -0.0108026704, 0.00127894385, 0.00469047297, -0.00871261489, 0.0332221612, 0.011707956, 0.0143144494, -0.008524267, -0.012376287, -0.00044239, -0.00569600845, -0.00687774038, 0.00794099551, -0.0021568886, -0.0132451188, 0.00808681361, -0.00199284358, -0.0207790397, 0.028750414, -0.00208549853, 0.0208884031, -0.00324748433, 0.0106082465, 0.01538378, -0.0237804558, -0.0113251843, -0.00706608873, -0.0125889387, -0.00650104461, -0.0144724185, 0.00466009462, -0.013706875, -0.0169148669, -0.0118173193, -0.0184581056, 0.0113859419, -0.0165017173, 0.00532538816, 0.0110821547, -0.0145817818, -0.00929588638, 0.00658002915, -0.0289691407, 0.0117383348, -0.00442617852, -0.01538378, 0.0231850334, 0.0147519028, -0.00869438704, 0.00564132677, 0.0151529014, -0.000179234397, -0.00185006356, 0.0154688405, -0.00702355849, -0.00160247704, 0.0303787123, -0.000639092177, 0.0179355927, -0.0199527387, 0.00751569355, 0.00593903847, -0.00391581608, -0.00377607392, 0.0155903548, 0.00727873947, -0.0278512035, -0.0164166559, -0.0154931433, -0.0184459537, -0.0117990915, 0.00397657324, -0.0164652616, 0.00525855506, -0.0131843612, 5.79094194e-05, -0.00733342115, 0.0281914454, 0.0128441192, 0.0138040865, -0.000652003102, 0.0230270643, 0.0222007632, 0.0104685044, -0.0107358368, 0.020912705, 0.000532007194, -0.0145696308, -0.0028434475, 0.00415884564, -0.00412846683, 0.00521298684, 0.0166961402, -0.00344494591, 0.00142172375, 0.00818402506, -0.00335381, 0.0062215603, -0.00456592068, -0.0272679329, 0.00749139069, -0.0173280183, -0.0251292717, 0.00730304234, 0.0355795473, -0.0205238573, 0.00864578132, 0.020062102, -0.0101161115, -0.014387358, 0.0533693209, 0.0178140774, 0.00347836246, 0.00799567718, 0.0304759238, 0.00866400916, 0.00285408, -0.039127782, -1.47146884e-05, 0.00630054483, 0.0255667251, -0.00581448572, -0.0281185359, 0.0108026704, -0.0150313871, 0.00676837703, 0.0024500431, 0.00463882927, -0.00483932905, 0.00252902787, 0.00849388819, -0.0152865686, 0.00651319604, 0.00602106098, 0.00953284, 0.00766758714, 0.00607878, -0.0052858959, 0.0160764139, -0.0313751325, -0.00870046299, 0.0154080829, 0.00100857322, -0.0245216973, 0.00868223608, 0.0222007632, -0.0130142402, 0.0316424668, -0.00969080906, -0.00638560532, 0.00065086392, -0.00263535324, 0.0131236035, 0.00438061031, 0.00550462259, 0.0159062929, -0.00280547398, 0.00309559074, 0.0123641361, -0.0125038782, 0.0418497138, 0.00483021513, 0.0248497874, -0.00139438291, -0.00305913645, -0.00732734567, 0.00411327789, 0.0120238941, 0.0304759238, -0.00352696842, -0.00710861851, 0.010377368, 0.00641598413, -0.0202686768, -8.12630533e-05, 0.021228645, -0.012698302, 0.017729016, -0.0139134498, -0.0148126604, 0.0105231861, 0.0208397973, 0.00645243842, -0.0212894, 0.0146911452, 0.0191993471, 0.00103819254, 0.00552285, -0.00758252665, 0.0242665149, 0.0193208605, -0.0139863594, -0.00481198821, -0.00888273586, -0.00684736157, 0.0405373536, 0.0196246486, 0.00508235861, -0.00939309783, -0.0151893562, 0.0154931433, 0.00131919561, -0.00767973857, 0.0168176554, -0.017048534, -0.00296951924, 0.00846958533, -0.0114102447, -0.0205967668, -0.00871261489, 0.000502387935, 0.00839667581, 0.00317153754, -0.00052441255, -0.00786808692, -0.020414494, 0.0237318501, -0.00801390409, -0.0172065031, -0.0107236858, -0.0155903548, 0.00667116512, 0.00907108374, -0.0188712571, 0.0170728359, 0.0127712106, -0.00932626426, -0.0142779946, 0.00287534506, 0.00254573603, -0.0149098719, -0.00439579971, 0.0206575245, -0.0067562256, -0.0146182366, -0.0138405412, 0.000985029736, 0.0118598491, -0.00854857, -0.0169148669, 0.00152121403, 0.00562917534, -0.0284101721, 0.00840275176, -0.0119570615, 0.0310348924, -0.00553196343, -0.0326631926, 0.00627624197, -0.00575069, 0.0178383794, -0.0101647172, -0.0271707196, 0.0139499046, 0.00272041373, -0.00263687223, 0.0199648906, -0.000546057359, -0.00733342115, 0.00941132475, -0.00375784677, -0.00438668625, 0.00487274537, -0.0181664694, -0.00955714285, -0.0152622648, 0.00590865966, -0.0035208927, 0.0155295981, -0.0040798611, 0.0140592679, 0.001651083, 0.016878413, -0.0213623103, 0.00617903, 0.00227384665, 0.00874906871, -0.0185188632, -0.00876122061, -0.0107601397, 0.00385505869, 0.00961790048, -0.0462242477, 0.0121940151, 0.0299655627, -0.00800175313, 0.000261256937, 0.00707824, 0.0182879847, -0.00507020717, -0.00257003913, 0.011039624, -0.0107540647, -0.0232822448, -0.0156389605, 0.00643421151, -0.000722633617, 0.00353304436, 0.0174859874, 0.0109484876, 0.00751569355, 0.00476945797, 0.0131965131, -0.00237257755, -0.011707956, 0.00528893387, -0.00543475151, -0.010043202, -0.0179720465, 0.024424484, 0.0138040865, -0.00813541934, 0.0109120337, -0.00649496866, -0.0211192816, -0.0116228955, -0.028604595, 0.0346317329, -0.00226625195, 0.0171822, -0.00721190637, -0.00435934542, -0.010201172, 0.00100021914, -0.021228645, 0.0270735081, 0.00469351094, -0.00764935976, 0.0141929341, 0.0279727187, 0.00439883769, 0.00709646707, 0.000434795307, 0.0076250569, -0.00534361554, 0.0221764594, 0.0138526931, 0.0058205612, 0.00336596137, 0.0147276, -0.0451792218, 0.0147883575, -0.00531931268, 0.00305154175, -0.00443225401, 0.017376624, 0.00929588638, -0.0191142857, 0.00123261625, -0.0108998818, 0.00522513874, 0.0199405868, 0.0127712106, 0.00106325489, -0.000276256411, -0.00287382631, 0.0332707651, -0.0139863594, 0.00527070649, 0.0196854062, -0.00845135748, 0.0164774135, 0.00589954574, -0.00662255939, 0.00191082107, -0.00306825, 0.00783770811, -0.00369708939, -0.00811111648, 0.00261560711, 0.00201714644, 0.0174373817, 0.0118051674, 0.0123033784, -0.00876729656, -0.01170188, 0.00729696685, -0.0199891925, -0.00216296432, -0.0178505313, -0.0103955958, -0.0095632188, 0.00109211472, 0.00828731246, 0.00644028699, 0.0181664694, -0.00378822535, -0.00498210872, 3.01888449e-05, 0.00131008192, 0.0098184, 0.00910146255, -0.0199041329, -0.0059876442, -0.0308161657, 0.0147032971, 0.00783163216, 0.0101404143, -0.0035968395, 0.017729016, -0.0033112797, -0.0448875837, 0.00801998, 0.00216752104, -0.00111717719, 0.0310105905, 0.00865793321, -0.00595119, 0.026587449, 0.0212043412, -0.00888881087, -0.00317457551, -0.0211800374, 0.000698330638, -0.00707216421, 0.0197826177, -0.0123519842, 0.000833136204, -0.00688989181, -0.0321771316, 0.00846958533, 0.0110760788, 0.00148172164, 0.00531627471, -0.00233004731, 0.00333254482, 0.00783770811, 0.00757037522, 0.0130749978, -0.0301356819, 0.0240234863, 0.0128319683, -0.00507628266, -0.0011832508, 0.0159062929, -0.00777695049, -0.0218119156, -0.0115499869, 0.0191021338, 0.0164166559, -0.00851819105, 0.000769340899, 0.00693242205, 0.00241662655, 0.0143509042, -0.00685343752, -0.00841490366, -0.00949031, 0.0264416318, -0.000131293, 0.0309862867, 0.00507324515, -0.016720444, 0.00183639314, 0.00315938611, 0.0119692124, -0.00207638508, 0.0014095722, 0.00386113441, -0.00508539658, -0.000718836265, -0.00245308108, -0.0236103348, 0.000845287694, -0.00974549074, -0.0221764594, -0.00679875584, 0.0122851515, -0.00701748254, 0.00580537179, -0.00482413964, -0.00445655733, 0.000321634609, -0.00718152756, -0.00324140862, -0.0275595672, -0.0122669237, 0.0107540647, -0.00691419514, 0.020560313, 0.00289509119, -0.00238169101, 0.0124431206, -0.0156268105, -0.00411935337, 0.0140835708, -0.0193087105, 0.0039644218, 0.0170849878, 0.0125524839, -0.0384716019, -0.000165279183, 0.015881991, -0.0169270188, 0.00136096636, -0.040828988, -0.000558588596, 0.00970903691, -0.00611219695, -0.0196003448, -0.00381860416, 0.0168662611, -0.013378785, -0.00121666747, -0.0116471983, 0.0152987195, -0.0232336391, -0.0176439565, 0.0176196527, 0.00498514669, 0.026587449, 0.0244487878, 0.0256396327, -0.00256548217, -0.00339634, -0.0250320584, 0.0265145395, -0.0151650533, -0.00634915102, 0.0139134498, 0.00528893387, -0.0170120783, -0.0175831988, -0.00727266353, 0.0139742075, -0.00849996414, 0.0188712571, -0.00235890714, 0.0140957227, -0.0177897736, 0.0221521575, 0.0153716281, -0.0229298528, 0.020560313, -0.00142096425, -0.00669546844, 0.00455073128, 0.00170424581, -0.0147519028, -0.00387936155, -0.00790454075, -0.0135853598, 0.0059360005, 0.00611219695, -0.00251231948, -0.00594207598, 0.0098852329, -0.00345102162, 0.00963005144, 0.00127210864, -0.0158941429, -0.0170242302, 0.00103971141, 0.0224680956, -8.14529194e-05, 0.00855464581, 0.00819010101, -0.000297521503, 0.0020733471, 0.00509451, 0.0164774135, 0.00256396341, 0.00238321, -0.010043202, 0.0221886113, 0.0262472071, -0.00420745183, 0.00663471082, -0.0459326133, -0.00503375288, -0.00320191635, -0.00952068809, 0.0205238573, -0.00473907916, 0.0132815726, -0.00110730412, -0.0153959319, -0.00830554, -0.0274866596, 0.0250320584, -0.0213744622, 0.0393465087, -0.000316887948, 0.00223435438, 0.00391277811, -0.0122243939, 0.0239991825, 0.0082751615, 0.0288719274, -0.00229511177, 0.0259555727, 0.00148779748, -0.0189927705, 0.030597439, 0.0137311779, 0.00132451183, -0.0301356819, 0.00512792682, -0.0185067113, 0.00237257755, 0.00618814351, -0.0143995099, -0.00439883769, 0.00634915102, 0.000400999, -0.0208884031, 0.0070417854, -0.0356038511, -0.00513096433, 0.00552892545, 0.000347836263, 0.00380037702, -0.00758252665, -0.0178262293, 0.00737595139, 0.0124370446, -0.00458414759, 0.011367714, 0.0156268105, -0.0158455372, -0.0261743, -0.00791669264, -0.00831161533, 0.0325416774, -0.00490312418, 0.0102497777, 0.0100857327, 0.0008900963, 0.0271464176, -0.0151042957, 0.0033112797, -0.00572638726, 0.00913791638, 0.0193573162, -0.0107783675, -0.00974549074, -0.00583575061, 0.00996421743, -0.0166596863, -0.0421899557, 0.00894349255, 0.00831161533, -0.00228903606, 0.00564132677, 0.00963612739, 0.00277205743, -0.0170120783, -0.00831769127, -0.012382363, -0.00264142896, -0.0248740893, 0.019563891, -0.0087429937, -0.0152258109, -0.00821440388, -0.0109667154, -0.00531931268, -0.0098184, -0.00905285589, -0.00277965213, -0.00315331039, 0.00525247958, 0.00925943162, -0.000719216, 0.0157483239, -0.0196246486, -0.0207061302, 0.0118233953, -0.00831161533, 0.0166110806, 0.00776479905, 0.00851819105, -0.0139256017, 0.017729016, -0.00250776275, -0.00413454277, 0.00186373398, -0.021228645, 0.00603625039, 0.029771138, 0.00133210653, 0.00840882771, -0.0202808287, -0.0158941429, 0.000654661271, 0.0155660519, 0.00732734567, 0.00379733904, 0.0271464176, -0.00942955259, -0.00467528403, -0.000684660219, 0.00744886044, 0.0256639365, 0.0156632643, 0.000664914085, -0.00476338202, -0.00557449367, 0.00194423762, 0.0106629282, 0.00505501777, -0.0283858683, 0.00845135748, -0.0115074562, 0.0291635636, -0.0056231, 0.0268061757, -0.00192752935, -0.0233430024, 0.00118628878, 0.0204266459, -0.00775264762, -0.025591027, 0.00665901368, 0.0180814099, -0.00670762, -0.000640990853, 0.0261986014, -0.0270006, 0.0106203975, 0.0209613107, -0.0167812016, -0.0131114526, -0.0131236035, -0.00278724683, 0.0156875663, 0.00624586316, 0.017546745, -0.0066529382, -0.0110031692, -0.00882197823, 0.0342185833, -0.0190899838, -0.00155690906, -0.000452642824, -0.00891311467, -0.0237075463, 0.00683521, -0.0163194444, 0.0205481611, 0.0141807832, -0.00564740272, 0.0238776673, 0.013208664, 0.0221764594, -0.0054681683, -0.0285802931, 0.0104988832, -0.010195096, 0.00148855685, 0.00791669264, 0.0140228141, 0.00971511193, 0.00945385545, 0.0135975117, 0.00340545364, 0.00718152756, 0.0114710014, -0.0223830361, 0.012710453, -0.0030773636, 0.0157240219, -0.0095632188, 0.016720444, -0.0209491607, -0.0103895199, -0.00212195306, 0.00752784498, 0.0254452098, 0.0225288533, 0.0355552435, 0.00419833791, 0.0270249024, -0.0186889842, -0.00184854469, -0.0228569433, -0.0226625185, -0.00664686225, -0.00335684768, -0.000583651, 0.00450516306, -0.024242213, -0.0104320496, 0.00181968487, -0.014715448, -0.00327786314, -0.0252507851, -0.004599337, -0.0101464903, 0.00121211063, 0.00298470841, 0.0275352653, -0.00341152935, 0.0193694662, 0.00778910192, -0.0227354281, 0.005352729, 0.0113920169, 0.00154247915, -0.00609396957, 0.000701748242, -0.01505569, -0.00675015, 0.00284800422, 0.00291483756, 0.0174373817, 0.0353608206, -0.00543778948, 0.000565803493, -0.00891919, -0.00087262853, -0.00900425, 0.00136324472, 0.0331492499, -0.0139742075, 0.00596030336, -0.0052342522, -0.0272436291, -0.00765543571, 0.0166596863, 0.0096786581, -0.0162951406, 0.00464186724, -0.0186525285, 0.0016434883, 0.027753992, 0.0164409596, 0.0117990915, 0.00100173801, -0.0209613107, -0.0109059578, -0.0215688851, 0.000983510865, -0.00832376722, 0.00871869083, -0.0298926532, 0.00578410691, 0.0169270188, -0.00308799604, 0.0233430024, 0.00296648126, -0.00596334133, -0.0102801565, 0.0115256831, 0.00344190816, 0.0140228141, -0.036940515, 0.0159549, 0.0171578974, -0.0211921893, 0.0151772043, -0.00788631383, 0.0151529014, -0.00339330221, -0.00157817407, -0.0166110806, -0.00113540434, -0.00146045664, -0.00136856094, 0.00997029338, -0.00160703389, -0.0103226863, -0.0110153211, 0.000236953958, -0.0132572697, 0.0136218145, 0.00406770967, 0.023744002, 0.0106872311, 0.0221157018, 0.0192479528, 0.024752574, 0.00334469625, 0.0251778774, -0.0114892293, 0.00673192274, -0.00610915897, 0.0045476933, -0.0139377536, -0.000535424799, -0.0102558536, 0.0190535281, 0.00264598592, 0.00260193669, 0.0120178191, 0.000985789229, 0.0240842439, -0.0160035063, -0.00293914042, 0.0176318046, 0.0004693511, -0.00470566237, -0.0396138392, -4.02517944e-05, 0.0127712106, -0.00102148426, -0.00284952321, 0.0151893562, 0.00272193272, -0.0140957227, 0.00746708736, -0.0123945149, 0.0097697936, 0.00183791213, -0.0150435381, -0.00985485408, -0.00291635632, -0.0289934427, -0.0143630551, 0.0268790852, 0.00276901969, 0.00975156669, -0.00755214784, -0.0144602675, -0.0251292717, 0.0178626832, 0.0100735808, -0.021581037, -0.0241450015, -0.0218362194, 0.0174252298, 0.00479679881, -0.00439579971, -0.0136825722]
05 Jun, 2023
unordered_set cbegin() function in C++ STL 05 Jun, 2023 The unordered_set::cbegin() method is a built-in function in C++ STL which is used to return a const_iterator pointing to the first element in the unordered_set container. This iterator can point to either the very the first element or first element of any specified bucket in the unordered_set container. Note: A const_iterator can only be used to access elements, it cannot modify the elements present in the container. Syntax: unordered_set_name.cbegin(n) Parameter: This function accepts a single parameter n. This is an optional parameter and specifies the bucket number. If this parameter is not passed then the cbegin() method will return a const_iterator pointing to the first element of the container and if this parameter is passed then the begin() method will return a const_iterator pointing to the first element of specific bucket in the unordered_set container. Return Value: This function returns a const_iterator pointing to the first element in the container or a specified bucket in the container. Below programs illustrate the unordered_set::cbegin() function: Program 1: CPP // C++ program to illustrate the // unordered_set::cbegin() function #include <iostream> #include <unordered_set> using namespace std; int main() { unordered_set<int> sampleSet; // Inserting elements in the std sampleSet.insert(5); sampleSet.insert(10); sampleSet.insert(15); sampleSet.insert(20); sampleSet.insert(25); auto itr1 = sampleSet.cbegin(); auto itr2 = sampleSet.cbegin(4); cout << "First element in the container is: " << *itr1; cout << "\nFirst element in the bucket 4 is: " << *itr2; return 0; } Output: First element in the container is: 25 First element in the bucket 4 is: 15 Time complexity: O(1)Auxiliary Space: O(1) Program 2: CPP // C++ program to illustrate the // unordered_set::cbegin() function #include <iostream> #include <unordered_set> using namespace std; int main() { unordered_set<string> sampleSet; // Inserting elements sampleSet.insert("Welcome"); sampleSet.insert("To"); sampleSet.insert("GeeksforGeeks"); sampleSet.insert("Computer Science Portal"); sampleSet.insert("For Geeks"); auto itr1 = sampleSet.cbegin(); auto itr2 = sampleSet.cbegin(0); cout << "First element in the container is: " << *itr1; cout << "\nFirst element in the bucket 0 is: " << *itr2; return 0; } Output: First element in the container is: Welcome First element in the bucket 0 is: GeeksforGeeks Time complexity: O(1)Auxiliary Space: O(1) Learn C++ Online – Master everything from basics to advanced concepts. Apply your knowledge with practical exercises and boost your skills. Take the Three 90 Challenge: finish 90% in 90 days for a 90% refund. Start now and level up your C++ programming!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum/Algorithm for Dynamic Time out timer Calculation/Difference between Round trip time (RTT) and Time to live (TTL)/Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms/Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm/Round Robin Scheduling Algorithm with Different Arrival Time/Selfish Round Robin CPU Scheduling/Find the order of execution of given N processes in Round Robin Scheduling/Calculate server loads using Round Robin Scheduling/set::lower_bound() Function in C++ STL/Implementation of lower_bound() and upper_bound() in List of Pairs in C++/Difference between std::set::lower_bound and std::lower_bound in C++/Difference between std::set vs std::vector in C++ STL/std::minmax() and std::minmax_element() in C++ STL/std::rotate vs std::rotate_copy in C++ STL/std::bitset::to_ullong and std::bitset::to_ulong in C++ STL/std::upper_bound and std::lower_bound for Vector in C++ STL/std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++/std::string::append vs std::string::push_back() vs Operator += in C++/Vector push_back() in C++ STL/vector :: cbegin() and vector :: cend() in C++ STL/unordered_multiset cend() function in C++ STL/unordered_multiset bucket() function in C++ STL/unordered_multiset emplace_hint() function in C++ STL/unordered_multiset end() function in C++ STL/unordered_multiset size() in C++ STL/unordered_multiset emplace() function in C++ STL/unordered_multiset find() function in C++STL/unordered_multiset erase() function in C++ STL/unordered_multiset clear() function in C++ STL/unordered_multiset swap() function in C++ STL/unordered_multiset bucket_size() function in C++ STL/unordered_multiset bucket_count() function in C++ STL/unordered_set bucket_count() function in C++ STL/unordered_set cbegin() function in C++ STL
https://www.geeksforgeeks.org/unordered_set-cbegin-function-in-c-stl?ref=asr10
PHP
unordered_set cbegin() function in C++ STL
unordered_multiset clear() function in C++ STL, What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, jQWidgets jqxTreeMap width Property, Round Robin Scheduling Algorithm with Different Arrival Time, Difference between Flow and TypeScript, unordered_multiset emplace() function in C++ STL, jQWidgets jqxTree destroy() Method, unordered_set bucket_count() function in C++ STL, jQWidgets jqxTree collapseAll() Method, Find the order of execution of given N processes in Round Robin Scheduling, jQWidgets jqxScrollView buttonsOffset Property, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Vector push_back() in C++ STL, jQWidgets jqxListBox enableHover Property, Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm, std::rotate vs std::rotate_copy in C++ STL, Selfish Round Robin CPU Scheduling, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxSlider buttonsPosition Property, std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++, std::upper_bound and std::lower_bound for Vector in C++ STL, Difference between Round trip time (RTT) and Time to live (TTL), jQWidgets jqxSlider rtl Property, Difference between std::set::lower_bound and std::lower_bound in C++, jQWidgets jqxTooltip opacity Property, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, unordered_multiset erase() function in C++ STL, jQWidgets jqxToolBar height Property, PHP, std::minmax() and std::minmax_element() in C++ STL, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, Node.js date-and-time Date.transform() Method, unordered_multiset size() in C++ STL, TypeScript Optional Parameters, jQWidgets jqxToolBar theme Property, Difference between std::set vs std::vector in C++ STL, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, Steps to Diagnose and Resolve a Slow Network, How to use Optional Chaining with Arrays and Functions in TypeScript ?, Calculate server loads using Round Robin Scheduling, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, jQWidgets jqxScrollView showButtons Property, Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms, jQWidgets jqxScrollView disabled Property, jQWidgets jqxSplitter destroy() Method, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, set::lower_bound() Function in C++ STL, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, jQWidgets jqxTree collapseItem() Method, std::string::append vs std::string::push_back() vs Operator += in C++, unordered_multiset swap() function in C++ STL, unordered_multiset cend() function in C++ STL, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), jQWidgets jqxSortable opacity Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, vector :: cbegin() and vector :: cend() in C++ STL, jQWidgets jqxSlider height Property, jQWidgets jqxSwitchButton onLabel Property, unordered_multiset bucket_size() function in C++ STL, unordered_set cbegin() function in C++ STL, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, jQWidgets jqxToolBar tools Property, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTree width Property, Implementation of lower_bound() and upper_bound() in List of Pairs in C++, jQWidgets jqxTree clear() Method, TLS Handshake?, Algorithm for Dynamic Time out timer Calculation, Adhoc TCP, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, jQWidgets jqxTabs position Property, Differences between Wireless Adhoc Network and Wireless Sensor Network, jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, std::bitset::to_ullong and std::bitset::to_ulong in C++ STL, unordered_multiset emplace_hint() function in C++ STL, unordered_multiset bucket_count() function in C++ STL, unordered_multiset find() function in C++STL, unordered_multiset bucket() function in C++ STL, Impact of Three-way Handshake and Slow Start Algorithm, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, unordered_multiset end() function in C++ STL, How to Sort an Array Having Optional Properties in TypeScript ?
GeeksforGeeks
[-0.00135304581, -0.0206986312, -0.0115233697, 0.0080622863, 0.000556487823, -0.0192599073, -0.0216080137, 0.0261685, -0.0168032181, -0.00982676074, -0.0273357667, 0.0121952267, 0.00504232245, -0.0199114047, -0.0093720695, -0.00887665898, 0.0157716796, 0.00772296498, 0.019707812, -0.0120391389, 0.0130842496, 0.0146587035, -0.0218523256, -0.0241189953, 0.00345090311, 0.0222052205, -0.0355066359, -0.00516447844, 0.00847625919, -0.00631477917, 0.00519841071, 0.0258563235, 0.00125888397, -0.037352547, -0.0141836526, 0.0396870822, -0.00311158132, 0.0131317554, -0.06107793, -0.00723434146, -0.0038513029, 0.00093652826, 0.0318962522, 0.0251505338, -0.0170339569, 0.0313261934, 0.00520859, -0.0212551188, -0.0136814564, -0.00485908845, 0.00729541946, -0.00287744915, 0.0286930539, 0.00734292436, 0.0362938643, -0.00939921476, -0.00636907062, 0.021906618, -0.00462156348, -0.000474202272, 0.00160668883, -0.0482379906, 0.0279601198, -0.0291002411, 0.004865875, 0.0231417492, -0.0427545495, 0.0780168772, 0.0269828718, -0.00749901263, -0.0380583368, 0.0263042282, 0.0271457471, 0.0103628887, -0.0339593291, -0.00867985282, 0.00846268609, 0.0196942389, 0.00155748718, 0.0357780941, -0.020562904, 0.00929741841, -0.0137357479, -0.00694591785, 0.0172375496, -0.0250962432, -0.00373932649, -0.023969695, 0.0576032735, 0.0441932753, -0.0156766679, 0.000854666869, 0.00451298058, -0.0284758881, -0.024689056, 0.0211465359, 0.0321677104, 0.0122630913, -0.0209293701, 0.0566260293, 0.00445190258, -0.00129281613, -0.00599921, -0.000227981858, -0.00728184637, 0.0283944514, 0.0432703197, 0.0247026291, -0.00500160363, -0.0191106051, 0.0245261826, 0.0173189864, 0.0134642906, 0.0665613711, -0.0343665145, -0.00606707437, -0.0194770731, -0.00810979214, 0.0225852616, 0.0170339569, 0.00597885065, 0.0155952312, 0.0212686919, 0.0304303821, -0.0513054617, 0.00678983, 0.00529681379, 0.0126024131, -0.00810979214, 0.0210108086, 0.0207936428, -0.0335521437, -0.0213365573, -0.0298603214, 0.00225649029, 0.0229245834, 0.0148080047, 0.0237389561, -0.0157038141, -0.0202371534, -0.0371353813, -0.020318592, -0.00272136112, 0.0409629308, -0.031760525, -0.0350994505, -0.00724791456, 0.0298331752, 0.00363753014, -0.00625370117, -0.0305932574, 0.0184183884, 0.0261006355, -0.0177261718, 0.0146451304, -0.0245940462, 0.0377325863, -0.00446547521, 0.0300231967, -0.0134099992, 0.0425916761, 0.0106614921, -0.00648444, -0.0203050189, -0.00205798703, 0.0563002788, 0.0220559184, -0.00496088527, -0.0556487814, 0.0440846942, 0.0194499269, 0.0158938356, 0.00422116369, -0.00191377511, -4.85124183e-05, -0.0167353526, 0.0481837019, -0.0153780654, 0.0290730949, 0.0133421347, -0.0104375398, 0.00471657328, 0.0236710906, -0.00224122079, -0.000662101724, 0.0143872453, 0.028828783, -0.000305813795, 0.0152694825, 0.0165317599, 0.0231417492, -0.00808264595, 0.0253948458, 0.0572232343, 0.0423202179, 0.000720210606, -0.0436503589, -0.0057379324, -0.00896488316, 0.0430531539, 0.00990819745, 0.0196806658, 0.011672671, -0.00482855, 0.0520383976, 0.00447565503, -0.00685769413, -0.0211736821, 0.0132403383, 0.00122919329, -0.019829968, -0.000434119866, 0.0318148136, 0.00971817691, -0.0193142, 0.0255034287, -0.0641182512, 0.015201618, -0.0270914547, -0.0259784795, -0.000780016067, -0.0119237695, 0.0447633378, -0.0573861077, -0.0319776908, -0.0500024669, 0.0150387436, 0.0200607069, -0.00882915407, -0.0119577013, 0.0146722756, 0.0210515261, -0.0286659077, -0.00291477446, 0.0291002411, -0.0214587133, -0.0413429737, -0.00272645103, -0.0100778583, 0.0127381412, 0.00517126452, 0.0575489812, -0.0665613711, -0.011930556, 0.033199247, 0.0453062505, -0.00156172877, -0.0289102197, 0.00366467587, -0.0196399484, 0.0156630967, 0.0446276069, 0.0311361719, -0.00683733495, 0.000227345634, 0.0227074176, -0.0177397449, -0.0122427316, 0.0263313744, 0.00372236059, 0.0192056149, 0.0395242088, -0.0330906659, 0.0142786624, 0.00633174554, -0.00772975152, 0.0336607248, -0.017631162, -0.0461477712, -0.0400399752, 0.0434603393, -0.0146315573, 0.0381940641, -0.0016304414, 0.00650819298, 0.0143465269, -0.0179569107, 0.00880200882, -0.00963674, -0.0272814762, -0.0109600956, -0.0228567179, 0.0206714869, 0.0106139872, 0.0390898734, -0.0180654936, -0.0447090454, -0.00901917461, -0.00844232738, -0.0310004428, -0.0339050367, -0.00496088527, -0.025557721, 0.0228431467, 0.0138239712, 0.0565174446, -0.00682715513, -0.0574946925, -0.0371082351, -0.0416144282, -0.00623673527, -0.0302132163, -0.0202100091, -0.0188527219, -0.00106801547, -0.00649122661, -0.00454351958, -0.0403385796, 0.0330092274, -0.0140343513, 0.00737007, -0.072370559, -0.0057854373, 0.00371557404, 0.014237944, -0.0255848654, 0.00727506028, 0.00994213, -0.0376511514, 0.0010595324, -0.0102950241, -0.0238339659, 0.022028774, 0.0355609283, 0.0115437284, -0.0189477317, 0.00648104679, 0.046473518, 0.0102610923, -0.051604066, -0.0168710817, 0.00737685664, -0.0375154205, -0.00495409872, -0.0411529504, -0.0312447548, -0.0180790666, 0.00161602022, 0.025802033, 0.00752615836, -0.00370539445, -0.00446886849, 0.0113401357, -0.00321507431, -0.00681697577, 0.00802156795, 0.0136543103, -0.0180654936, 0.0141429342, 0.0264399573, 0.00112485187, -0.0157173872, -0.00487266155, -0.0339593291, 0.0567889027, -0.0170882475, -0.0143058086, -0.0370810889, -0.0112858443, 0.021526577, -0.0126770632, 0.0323848762, 0.00219541229, 0.039659936, -0.000756687718, -0.0265078209, -0.00783154834, -0.0357509479, 0.00751937181, -0.0216215868, -0.0226666983, -0.0144008184, 0.0253948458, 0.00458763121, -0.0231688954, -0.0105325496, -0.00261617126, 0.0296160094, 0.00246008323, -0.0214451402, 0.000170827334, 0.0119577013, 0.000979791745, -0.00539861, 0.00838803593, -0.0152151911, -0.0125752669, 0.0429717153, -0.00487605482, -0.0131453276, -0.024091851, -0.00486926828, -0.00992855709, -0.0299960505, -0.016911801, -0.00743793463, -0.0244990364, -0.0300774872, -0.0393341854, -0.0356695093, 0.0403928719, -0.0168303624, 0.00345938606, -0.0129688801, -0.0286659077, -0.000182173404, -0.0208750796, -0.0260734893, 0.00223952415, 0.0207529236, 0.029914612, -0.0174004231, 0.0109940274, 0.011489437, 0.0294802804, 0.0152559094, -0.0339321829, 0.0281229932, 0.00456048548, -0.0226666983, -0.000586178445, -0.0166946333, -0.0132878432, 0.00979961455, 0.0348822847, 0.0167082064, 0.00317265908, 0.0195992291, 0.00419062469, -0.0014192136, -0.0143329538, 0.0162874479, -0.0135525139, 0.0344751, 0.0112247663, -0.0554316156, 0.0362667181, -0.0281772856, -0.039904248, -0.0168575086, 0.0492152385, 0.0394699164, 0.0136000188, -0.0372711085, 0.00611457927, 0.0391170196, -0.027376486, -0.00117235689, 0.0110279592, 0.00848304573, -0.0356152207, 0.00179670914, 0.0166403428, 0.00247535273, -0.00277225929, -0.0287202, 0.00291138142, -0.00955530256, 0.0241054222, 0.0331721, 0.011930556, 0.00880200882, -0.0139257684, 0.0076890327, 0.0364567377, 0.0111297565, 0.0047708652, -0.0125481216, -0.014604412, -0.00412954669, -0.0124191791, -0.0284215976, 0.0390355848, 0.0127652874, 0.0227752812, -0.0070307483, -0.0129145887, -0.0110483188, -0.0650412068, -0.0129078021, 0.0364567377, -0.0295345727, -0.039904248, -0.00879522227, -0.0079061985, -0.0170203838, -0.00392256025, -0.0290459488, -0.016545333, 0.0127042094, -0.0253541265, 0.000954342657, -0.0206714869, -0.0264535304, 0.0121070035, 0.00792655814, -0.0381397754, -0.0133149885, -0.0189070124, 0.0110551054, 0.0335249975, -0.0395784974, -0.0291545317, 0.015690241, 0.026887862, -0.0379497521, -0.0222323667, 0.0394427702, -0.00476068538, -0.00424830941, -0.0141700795, 0.0109058041, -0.0179161932, 0.00762116816, 0.00354591315, -0.00313024386, 0.0220016278, 0.00703753484, -0.0514683351, -0.00138443313, 0.0236439463, -0.00345429615, -0.00792655814, 0.0442747138, 0.0223138034, 0.0321677104, -0.0129213752, -0.0078111887, -0.0145772658, -0.0296160094, 0.0288016368, -0.00641318271, -0.015201618, -0.00279431534, -0.00144042121, -0.0131249689, 0.00092210708, 0.00960280746, -0.0281501394, 0.0102135874, -0.0278515369, 0.0303489454, 0.000360105303, -0.00572775258, -0.0508711301, 0.00128178822, 0.000767291524, 0.0205086116, -0.0218523256, 0.00720040919, 0.0243904535, 0.0318419598, -0.0111433286, -0.0142650902, -0.00311158132, 0.0325477496, -0.0201149974, 0.00337794889, 0.0107361432, -0.0170203838, 0.00629442, 0.0295345727, 0.0538028702, -0.00116132898, 0.00325409649, -0.00829981174, 0.0233453419, 0.017631162, -0.0220694914, 0.0243633073, 0.00376307918, -0.0120934304, 0.0592320189, 0.0111976201, 0.0261142086, 0.00279601198, 0.000585330185, 0.0132539105, -0.00724791456, 0.0207800698, -0.0011002511, -0.0261277817, -0.0130231716, -0.0432974659, -0.0131453276, 0.00575150503, -0.039307043, -0.010403607, -0.0243090168, -0.0244854633, -0.00737685664, -0.000384281971, 0.0140886428, 0.00010004692, 0.0133149885, -0.031027589, -0.00298772869, 0.0186084099, -0.0318419598, -0.0266164038, 0.0208343603, 0.000236464897, 0.00565988803, -0.0336878709, -0.0238611121, -0.0135525139, 0.0198706873, 0.000617989863, 0.00609422, -0.0103221703, -0.0494866967, 0.017509006, 0.0194499269, -0.00335589284, -0.00348144211, 0.0110822506, 0.0141700795, 0.021526577, -0.030783277, 0.0150658898, -0.0233860612, 0.00104935281, -0.0121205756, 0.00452316, 0.00632835226, 0.00455709221, -0.0193684902, -0.0255305748, -0.00696288422, -0.0157445334, -0.00162789645, -0.00848304573, 0.0223002303, 0.00513054617, 0.00522216316, 0.00744472118, -0.026765706, 0.0306475479, -0.00591437938, 0.0076415278, -0.00545629486, 0.0201285705, 0.0108990176, 0.0498395897, -0.00128009159, 0.0145229744, -0.00688484, 0.0290188026, -0.00104680785, -0.0018306413, -0.0409086384, 0.016545333, 0.018255515, -0.00234301738, -0.00720040919, -0.0225038249, -0.000950101123, 0.0235625077, 0.00399721134, -0.00213942421, -0.010953309, -0.040257141, 0.0128806569, 0.0067525045, 0.0115369428, -0.0156359505, -0.0248926505, 0.0134710772, -0.00148198812, -0.00286387629, -0.0352080353, -0.0240104124, 0.0156088043, -0.0123377414, -0.0123309558, -0.0354794897, -0.0429445729, 0.0352623239, 0.0243904535, -0.0195177924, -0.0131249689, -0.031624794, -0.00125379418, -0.0348008461, -0.00983354636, -0.0065658777, 0.00366806891, 0.00029414962, 0.0188527219, -0.0370268, 0.00145738723, -0.020562904, 0.0447361916, 0.0202100091, -0.0094670793, 0.00762795471, 0.0156495236, 0.00596188474, 0.00436707214, -0.0168303624, 0.00589741347, -0.0296431556, -0.0278243907, -0.01544593, 0.0160974283, 0.0403114334, -0.00170000235, -0.0164910406, -0.0017950125, -0.00159226765, -0.00133098988, 0.0116387391, -0.0327649154, -0.00306916609, -0.00868663937, -0.00548004778, 0.0182690881, -0.0115980199, 0.0258834697, -0.0530699342, -0.00698324339, -0.00187305652, -0.00370200118, -0.0116183795, 0.038438376, 0.00495409872, -0.0144551098, -0.00615529809, -0.000267215946, 1.09086668e-05, -0.0236846637, 7.89983678e-05, 0.00794013124, 0.00574471848, -0.0289102197, 0.00450958731, 0.012955308, -0.028340159, -0.0102678789, 0.00832695793, -0.016423177, 0.0140343513, -0.00930420496, -0.00433314, -0.00258563226, 0.00987426564, 0.00946029276, 0.00164486258, -0.0327649154, 0.0353166163, 0.0266299769, 0.0517397933, 0.0317876711, -0.00267894589, 0.00194601074, -0.0192734804, 0.0176583081, 0.00602296274, -0.0128060058, 0.0112586981, 0.0337421633, 0.0145094013, -0.00734971091, 0.0255984385, -0.0261413548, -0.00241088169, -0.00983354636, 0.0300231967, 0.0315433592, 0.0180654936, 0.00536467833, -0.0185812637, 0.0149030145, 0.00823194813, 0.0115776611, -0.0296974462, -0.00910061132, -0.00813015085, 0.0127992192, 0.0282858685, -0.00598224392, 0.0408272035, 0.0276886616, 0.0214179941, 0.0115980199, -0.0141972257, 0.00846268609, 0.00174581085, 0.0322762914, -0.0304032359, -0.0409629308, 0.0214722864, 0.0236575175, 0.0406914726, -0.0107157836, -0.0328735, -0.006111186, -0.0394699164, -0.0423473641, -0.012405606, 0.026521394, 0.00209700898, -0.0182419419, 0.0019646734, 0.0312990472, -0.0217030253, -0.0120052062, 0.023725383, 0.0187305659, 0.0325748958, 0.00840160903, -0.00946029276, -0.0185541175, 0.0111772614, 0.0193142, 0.00679661613, 0.000562001776, 0.0114215733, 0.00836089, 0.00065658777, 0.0247840676, -0.0118762646, 0.00967067201, -0.0313261934, -0.067538619, 0.0406371839, 0.0149030145, 0.0107768616, 0.00123088993, 0.00810979214, -0.0104782581, 0.0138850491, -0.000847032119, 0.0307561308, 0.0177126, 0.0310547333, 0.000710030959, -0.0205493309, 0.00469621411, 0.0311361719, 0.000855939346, -0.0018306413, -0.0231417492, -0.00590759329, 0.012466684, -0.0124802571, -0.0184862539, 0.0276343692, -0.0243225899, -0.00221237843, 0.00800799485, 0.00799442269, -0.0124191791, -0.00227345619, -0.00146756694, 0.0243225899, -0.0287473463, -0.016056709, -0.0109465225, 0.0239289757, 0.0255848654, 0.0131181823, 0.0255984385, 0.0402299948, 0.017631162, 0.0238882564, 0.0144279646, -0.0130231716, 0.0182147957, -0.0138307577, 0.0176718812, 0.0181062128, -0.0330635197, 0.00392595353, 0.0144279646, -0.0189884491, 0.0299417581, 0.0392798968, -0.0165860504, -0.0408272035, 0.0255170017, -0.000794437248, -0.0500839, -0.0377054438, 0.0030386271, -0.00491338037, 0.00759402243, -0.0193549171, -0.0253948458, -0.0184862539, 0.0275936518, 0.00496088527, -0.0316790864, -0.00265519344, 0.00693234522, 0.0234132074, 0.0079061985, 0.014957306, 0.00992177054, -0.0293174069, -0.00398363825, -0.00170424394, -0.00459102448, 0.0057073934, 0.0240375586, -0.00453673303, 0.0333892666, 0.0105189765, 0.0106750652, 0.0159617, 0.0297245923, -0.0168575086, -0.0390355848, -0.0396056436, -0.002448207, 0.00356627256, -0.00198163954, 0.00272305775, 0.00721398229, 0.0038988078, 0.0470978692, 0.0263042282, 0.0104443263, 0.00870699808, 0.0176447351, -0.0231010299, 0.0177804641, 0.00239052228, -0.0296431556, -0.00185948366, -0.0330635197, 0.00641657598, 0.0139257684, -0.00213094102, -0.000752022, -0.0223409496, -0.0109600956, -0.0215130039, -0.0530699342, 0.00999642164, 0.00713254511, -0.0272000376, -0.00440779049, -0.00125803566, -0.0255034287, -0.010831153, -0.0277700983, -0.00969103165, -0.0245397557, -0.0020257514, -0.00219880557, -0.0223680958, -0.0186627, -0.0435417779, -0.019585656, -0.00630120654, -0.0118423318, -0.00889701862, -0.00453673303, -0.00222425465, 0.0126227718, -0.00193074124, -0.0141565073, -0.0131317554, 0.0388455652, -0.030538965, -0.00084660796, -0.011367281, -0.0160024185, 0.0185948368, 0.031869106, -0.00546986796, 0.0294259898, 0.0424016565, -0.0011367281, 0.0295888633, -0.0177126, -0.00777047, -0.0174275693, 0.00976568274, 0.0361038446, 0.036755342, 0.00611797255, 0.015079462, 0.0241597146, 0.0249197949, -0.00651158579, -0.00629102672, -0.0341764949, 0.00388523494, -0.00825909339, -0.00280449493, 0.018377671, -0.0121952267, 0.0370268, 0.0526084565, 0.0336064361, -0.000359681144, 0.0118016135, -0.013382853, -0.0142650902, 0.0187034197, -0.022273086, 0.00350519456, 0.0220016278, -0.0166539159, -0.00683394168, 0.0348008461, -0.015459503, -0.0233996343, -0.0033677693, -0.0333892666, 0.00554791186, 0.000900899468, 0.0235489346, 0.00759402243, -0.0143601, -0.0025720594, 0.0360495523, -0.00347295892, -0.0174411424, -0.0194635, -0.0331449583, 0.00101202738, 0.002478746, 0.014726568, 0.0166131966, -0.0148622962, -0.003651103, -0.00823194813, 0.00597885065, -0.0127449278, 0.0178076103, 0.0160702821, 0.00252964417, -0.00013254759, -0.00674911123, -0.0223138034, 0.0079061985, 0.000695609779, 0.000429666281, 0.0047267531, -0.0148487231, -0.00413972652, -0.0136678834, 0.0183640979, 0.00977925491, -0.0168982279, -0.0158531163, -0.00510340044, 0.0167760719, 0.0109465225, -0.0154730752, 0.0320862718, 0.0157445334, -0.00589062693, 0.00853733718, -0.0175768714, 0.011136543, 0.00975889619, 0.00386148249, -0.0108107934, 0.0162874479, -0.0367824882, -0.0104578985, 0.0264535304, 0.0271593202, -0.013016386, 0.0261685, 0.0152830556, 0.0146994218, -0.00175090064, 0.00751258526, -0.0248926505, -0.00549701368, -0.00858484209, -0.0122766644, 0.000945011328, 0.0373796932, -0.0333621241, -0.0257070214, -0.00314212, 0.0071393312, 0.039171312, 0.027376486, -0.0151609, 0.0123173827, -0.0163281672, -0.00536467833, -0.031380482, 0.00263144076, 0.00637925044, 0.0167353526, 9.30484093e-05, 0.00501517672, -0.00946029276, 0.0111501152, 0.0507354, 0.00396327907, -0.00193583104, -0.0184591077, 0.0137696797, -0.00835410319, 0.00774332415, 0.00929063186, -0.00194261747, 0.00584990857, 0.00811657868, 0.0277022347, 0.00412276, 0.0281772856, 0.00898524188, 0.0166946333, 0.0315705, -0.00963674, -0.0220559184, 0.00613833219, -0.0306746941, 0.00229720888, 0.00568703376, 0.00356287928, 0.00241597136, 0.00167200831, 0.00916847587, -0.018744139, 0.00705789402, 0.00832017139, 0.0076890327, 0.00640978944, 0.0353980549, -0.00848304573, 0.0110483188, 0.0155952312, 0.0125141889, 0.0293716975, -0.00750579918, 0.0179433394, 0.00608404027, 0.000620959, -0.00202066149, 0.0206307676, -0.0049099871, -0.0176854543, -0.00199012249, -0.00193583104, -0.00697645685, 0.0209022257, 0.0060026031, 0.00320659135, 0.010892231, -0.00889701862, 0.00884272717, -0.00518823089, 0.0479393899, -0.0269150082, 0.000140500444, -0.0134846494, -0.00248892559, -0.00950101111, 0.0238339659, 0.00319132186, 0.00923634, 0.00999642164, -0.0285573248, -0.0120527111, 0.0143193817, 0.0155002214, -0.0213637035, -0.00189850561, 0.0300231967, -0.00279431534, -0.00889023207, -0.0167489257, 0.0160024185, 0.00219201902, -0.0279329736, 0.00982676074, -0.000833459257, 0.0226666983, -0.000225224867, 0.0330906659, 0.00232774788, 0.016911801, -0.0209429432, 0.00306237955, -0.0132742701, 0.00485908845, -0.0152694825, 0.00338643184, -0.0301589239, 0.0096503133, -0.0131181823, 0.00967745855, 0.00641996926, 0.0339050367, -0.0204136018, 0.0137153883, -0.00761438208, 0.0238203928, 0.00999642164, 0.00891737733, 0.0069696703, -0.0272679031, -0.00146417366, -0.00739042973, -0.0134507176, 0.0433789045, 0.0201421436, 0.00157106, -0.00625030836, -0.00886308588, -0.0137561075, 0.00485908845, -0.000946707907, -0.00164486258, -0.00313703041, -0.0141429342, -0.00608404027, 0.0186898466, 0.00759402243, 0.0095756622, -0.0292631146, 0.00429920759, -0.0111093968, 0.0211058185, 0.0296703018, 0.0114487186, -0.0147537133, -0.00718005, 0.00583633548, -0.013993632, -0.000652770395, 0.00866628, 0.00522555644, 0.0314619206, -0.0150387436, 0.00176617014, 0.0140886428, 0.0276479423, -0.0174139962, -0.0217708889, -0.00876807608, -0.000923803716, 0.0194499269, 0.0147129949, 0.0304575283, -0.0154866483, -0.0110551054, -0.0336064361, -0.0117880404, 0.00434331968, -0.00688144658, -0.00512036635, 0.00493034627, 0.0193549171, -0.00197654963, -0.0662356243, 0.00667785387, 0.0244990364, 0.0346651189, 0.0228431467, 0.0130706774, -0.00715969084, 0.0179704838, -0.0408000574, -0.0167353526, 0.0150387436, 0.0181740783, 0.00187135988, 0.0172104035, -0.0231688954, 0.013810399, 0.00840839464, 0.0159752723, 0.023114603, -0.00933813676, 0.00485908845, 0.0130231716, 0.0151744727, -0.0018306413, 0.017509006, -0.022273086, 0.00426866859, -0.0113197761, -0.00667785387, -0.0189477317, 0.027742954, 0.00321507431, 0.0274579227, 0.00357645215, -0.0124463253, 0.0003857665, 0.0160974283, 0.009792828, -0.0133285616, -0.00838803593, -0.00739721581, -0.0110686785, 0.00535110524, -0.00777725643, -0.013993632, 0.0201557167, -0.00932456367, -0.00306746946, 0.00290798815, 0.0146179842, 0.0187712833, 0.00314212, -0.000881388434, -0.00408204179, 0.000360105303, 0.00154221768, -0.0217030253, -0.0158395432, 0.0100710718, -0.00183742773, -0.00552415941, 0.038927, 0.00886308588, 0.00337794889, -0.00929063186, -0.0079537034, 0.0342036411, 0.0317062326, 0.022028774, -0.0171289667, 0.00943993311, -0.0156223774, 0.0147808595, 0.00761438208, 0.00516787171, -0.0149301607, 0.0122630913, 0.0338236019, -0.0184591077, -0.0246754829, -0.00789941195, 0.000712151697, -0.00479461765, -0.0145229744, 0.000716817391, 0.0154323569, -0.000145696307, 0.0145636927, -0.00274172053, -0.0051746578, -0.00935849641, -0.00780440215, -0.00501517672, 0.0154187838, -0.0226531252, 0.00740400236, 0.01228345, 0.0229245834, -0.00699681602, -0.0148215778, -0.0350723043, 0.00332365744, 0.0206307676, -0.0156359505, 0.0247840676, -0.0157038141, -0.0141700795, -0.0214451402, 0.00524252234, -0.0226802714, -0.00736328401, 0.0394427702, 0.0317333788, -0.00754651753, 0.00560559658, -0.00325579289, -0.0297245923, -0.00206307671, 0.00102135877, 0.0157988239, -0.0118287588, 0.00506268162, 0.0493238233, -0.015079462, 0.0202507265, 0.0120323524, -0.0236303732, -0.005704, 0.0446819, 0.00626048772, -0.00774332415, 0.00909382477, -0.0150387436, -0.0103832483, -0.00456727203, 0.0148215778, 0.0191377513, 0.0200471338, -0.0302403625, 0.0357238, -0.0217030253, -0.009853906, 0.0149708791, 0.013810399, 0.0110415323, 0.00167031167, 0.0157173872, 0.0156766679, -0.00184421416, -0.00525270216, -0.012344528, -0.0280144103, -0.0256527308, -0.022816, 0.0243361611, 0.0165181868, -0.00376647245, 0.0235217903, -0.0023243546, 0.00591098657, 0.010892231, 0.0138307577, -0.0203728825, -0.0323305838, 0.0210108086, 0.0200064145, -0.0136000188, -0.00659980951, 0.0165181868, -0.0377868786, 0.0151201813, 0.0137968259, -0.00563274231, -0.00703753484, -0.0029928186, -0.00643014861, 0.00867306627, -0.00817765575, 0.00508304127, 0.032954935, 0.00874771643, -0.0136475237, 0.026765706, -0.00404810952, -0.00189680909, -0.00329820812, 0.00921598077, 0.00274850684, 0.00840160903, -0.0112247663, 0.0144958291, -0.0137221748, 0.00433314, -0.00675929105, -0.017753318, 0.00546308141, -0.0065658777, -0.0152694825, 0.0352351777, 0.00486926828, 0.0130706774, 0.0127177825, -0.0239832681, 0.0169253722, -2.95050941e-05, -0.0190834608, 0.00448244158, 0.00869342498, -0.000270821241, 0.0369725078, 0.0557573624, -0.0169525184, -0.00655230461, -0.00988105219, 0.000348016969, 0.0449262112, -0.0124938302, -0.0123105962, -0.0277836714, -0.0130910361, -0.00700360257, -0.0338507444, -0.0257341675, -0.0207257774, -0.00190529204, -0.0123241693, 0.00806907285, 0.00289441529, 0.0158938356, -0.026154926, 0.0058465153, 0.00130723731, 0.0177397449, 0.0344751, 0.0232503321, 0.00793334469, 9.4692e-05, 0.00772975152, -0.0244854633, 0.00683733495, -0.00292325765, 0.01003714, 0.0198842604, -0.00121477211, 0.0126159862, 0.0169525184, 0.0378683172, 0.0194906462, -0.0287744906, 0.0468807034, -0.017889047, 0.016056709, 0.00596527802, -0.00897845533, -0.00137595, 0.031516213, 0.0299417581, -0.0171968304, 0.0281772856, -0.00559881, -0.000885629968, -0.0217573158, -7.04623e-05, -0.0174954329, -0.026887862, 0.00290968479, -0.0301046334, 0.0196399484, 0.00574811175, -0.00730899209, -0.016178865, 0.0170475282, -0.0362667181, -0.000428817963, -0.00434331968, 0.0142786624, 0.0216758791, -0.0159074068, 0.00517805107, -0.0094195744, 0.0158531163, -0.000373466086, -0.0155409398, -0.00593813229, 0.00835410319, -0.00601617619, -7.94755324e-05, 0.00401078397, -0.00243802741, 0.0190155953, -0.00203932426, 0.00251776795, -0.0121612949, -0.00341866747, 0.00231247838, -0.0120934304, -0.012955308, -0.00167031167, 0.0211193915, 0.0215672962, -0.00127754675, 0.00509322062, -0.0231010299, -0.00401078397, 0.00825230684, 0.018974876, 0.0443561487, 0.0105596958, -0.00432635332, -0.0324120224, -0.000404217135, -0.0133692799, 0.00408204179, -0.00101372402, 0.00772975152, 0.0210243799, 0.0204814654, 0.0109329494, 0.0125481216, -0.0114351455, -0.0138239712, 0.0162195843, 0.0222459398, 0.00865270663, 0.0353709087, 0.00175429392, 0.00463852938, -0.0280415565, 0.0152559094, -0.00450280076, 0.0119780609, 0.00112570019, 0.00414990587, -0.004926953, -0.00791298505, 0.00239391555, 0.0166267697, -0.000904292683, -0.00242445455, 0.0168982279, -0.0249197949, -0.0169932377, -0.00596867083, -0.000601023785, -0.0226531252, 0.025679877, 0.00571417948, 0.00997606199, -0.0144008184, -0.00220728852, 0.0147537133, -0.0108107934, -0.0194906462, 0.00421777042, -0.00521877, 0.0141022149, 0.0105664823, -0.00768224616, -0.0151609, 0.0164774675, 0.00619940972, 0.0165589061, -0.0178619, 0.0137561075, 0.0099014109, 0.0155137945, 0.0141836526, 0.0104443263, -0.0021343343, -0.00246856641, -0.00382755022, -0.00223952415, 0.00231078174, -0.00639960961, 0.00341018452, -0.00744472118, -0.00646408089, -0.0103289569, -0.00239561219, 0.00239730882, -0.0103018107, -0.00228024274, 0.0134099992, 0.000778319431, 0.0200199876, -0.00330160139, -0.00448244158, -0.0160295628, 0.0186084099, 0.00215978338, -0.0098403329, -0.00319471513, 0.00808943249, -0.000740994059, 0.00337794889, 0.00510679372, 0.00889701862, -0.0133896396, 0.00334232, -0.016423177, 0.0188934393, 0.0123988194, 0.00656248443, -0.0130028129, 0.017753318, 0.0241054222, 0.00863234699, 0.00825909339, 0.0202235822, 0.00402775034, -0.00758723635, 0.0230467394, -0.0191106051, 0.0179840568, -0.0191241782, 0.00641996926, 0.00912775751, 0.0110211736, -0.0223138034, -0.00217335625, -0.00557845086, 0.0149708791, 0.00562256295, 0.0021343343, -0.00805550069, -0.0125956265, -0.0287202, 0.0105325496, 0.00613154564, 0.0152287642, -0.00633174554, 0.00270948489, -0.00879522227, -0.0026840358, -0.00665749423, -0.0371896736, -0.0174004231, -0.00855091, -0.00426527532, -0.0080758594, 0.00554451859, -0.0144415377, 0.0255305748, 0.0330635197, 0.0181062128, 0.00038513029, -0.0488080531, -0.0098064011, 0.00606707437, -0.0100574987, -0.0075329449, 0.00384112308, 0.00138782628, -0.0056157764, -0.000520010712, 0.00648783334, 0.0195449367, -0.011408, -0.0243768804, -0.017631162, -0.021404421, 0.00139291608, 0.00690180622, -0.0165046137, -0.0104307532, 0.00973853655, -0.0171968304, 0.00246686977, 0.000298815285, -0.000296482438, 0.00231587142, -0.0126974229, 0.0148894424, -0.0200335607, 0.0249469411, -0.00226497324, -0.00405489607, -0.00167540158, 0.0102610923, 0.0132674836, 0.00159311597, 0.0154323569, 0.00892416388, -0.0234946441, -0.00239221891, -0.00361717073, 0.017766891, -0.00132420345, 0.0115437284, -0.000620959, 0.0093109915, 0.00999642164, -0.00554451859, -0.00419741124, -0.019952124, -0.00644032843, -0.0231010299, 0.00676268432, -0.00242275791, -0.0143465269, 0.00878164917, 0.0127517143, 0.0196535215, -0.00554791186, 0.0181062128, -0.0187169928, -0.0231281761, 0.0102678789, 0.0139121953, -0.00853733718, -0.00043072665, -0.00184421416, -0.0178347547, -0.0257884599, 0.0070307483, 0.0206443407, 0.00032447651, 0.0273357667, -0.00167200831, 0.0324934572, 0.00023031469, -0.000538673426, 0.0105189765, 0.00293683051, -0.00707146712, 0.0139529137, -0.0153916385, -0.0138511173, 0.00393952662, 0.0117608951, -0.000149407642, -0.00792655814, 0.0166267697, 0.00512036635, 0.0256255846, 0.0008614533, -0.0131046092, 0.0039598858, 0.0165724792, 0.00696288422, 0.00730899209, 0.0229517296, 0.0189884491, 0.00316587277, -0.0145908389, -0.0144686829, -0.0102882376, 0.00700360257, 0.00294022379, 0.0155680859, -0.0247840676, -0.0100710718, 0.013505009, -0.00934492331, -0.0118491184, -0.0115165832, -0.0162195843, 0.0196942389, 0.00912097096, 0.0103493156, -7.07273939e-05, 0.00559881, -0.013688243, 0.00602635555, 0.00951458421, -0.012466684, -0.00292156101, -0.00113248662, -0.0334707052, 0.0155273667, -0.0116251661, -0.015690241, 0.0122291585, 0.00209361571, 0.00832695793, -8.68186726e-06, -0.00239730882, 0.0010849816, -0.0160295628, -0.0194906462, -0.0015583355, 0.00699681602, -0.0068746605, 0.00522216316, 0.00368842832, 0.000223740339, -0.00822516158, -0.0049099871, 0.0101796547, 0.00311158132, 0.0184862539, -0.00794691779, 0.0120594976, -0.00159905409, 0.00108413328, -0.00410918752, 0.0100507131, -0.0320591256, 0.0281229932, 0.0254491381, -0.0094670793, -0.00271796784, -0.0191784706, -0.00307255914, -0.0115640881, 0.00651837233, 0.00858484209, 0.0094670793, 0.00858484209, -0.00605010847, -0.0326291882, 0.0148487231, 0.000539945846, 0.0245804731, 0.0178483278, -0.0276343692, 0.0136068054, -0.0119169829, -0.0210651, 0.00116387394, 0.0120187793, 0.00561916968, 0.000250886078, -0.0162738748, 0.00218183943, 0.000452570501, 0.0101660825, 0.00326257944, -0.0047878311, 0.0236303732, 0.00935171, 0.0100507131, 0.0282858685, 0.00919562206, 0.0161652919, 0.0123852473, -0.0128399385, 0.000415033021, 0.0175497252, -0.0151066082, 0.0125752669, 0.00447226176, -0.0149165876, 0.00542575633, -0.0107632885, 0.015459503, -0.00631138589, -0.000538673426, 0.0187305659, 0.00423812959, 0.00345938606, 0.0108854445, -0.0047403262, 0.00548004778, 0.00510000717, 0.00863913354, -0.0183233786, 0.024091851, -0.00214451388, 0.00458423793, 0.00332874712, -0.0182419419, 0.019341344, 0.00509322062, -0.000234556224, 0.013443931, 0.00332026416, -0.0108243665, -0.00633853162, -0.0100303534, 0.00258393586, -0.00916168932, -0.0224223863, 0.0077501107, -0.0145094013, -0.0125752669, -0.0157173872, 0.0347194113, 0.029453136, -0.0209836625, -0.00916168932, 0.0141836526, 0.0263449475, 0.010159296, -0.00863234699, -0.00237864605, 0.0179026201, -0.0103900349, 0.0139800599, -0.0196942389, -0.0295888633, -0.0095281573, 0.0149437338, -0.024214007, 0.0314076282, 0.0114351455, 0.0255848654, -0.00589402, -0.0175225791, 0.00544950878, -0.00518483762, -0.003681642, -0.00409222115, -0.021037953, -0.0170339569, 0.0096571, -0.0160702821, -0.00167540158, 0.00906667951, -0.0143058086, -0.0157988239, 0.00394970598, -0.0104918312, 0.0256391577, 0.0047403262, -0.00864592, 0.0186898466, 0.00186457345, -0.00474711228, -0.00137510174, 0.00273493398, 0.00265519344, 0.00676607713, -0.00265180017, -0.00627066754, -0.00820480194, -0.00519841071, -0.00331517425, 0.0179026201, 0.0220152, -0.00420419732, -0.0147944316, 0.0312719, 0.0118355453, -0.00944672, 0.019341344, 0.00794691779, -0.00861198828, 0.0216487329, -0.00655230461, 0.00142684835, 0.0069696703, -0.0221237838, -0.00827266648, 0.00914133061, 0.00954173, -0.00122325518, -0.00554451859, -0.00521537662, 0.0107836481, 0.0162738748, 0.0103968214, 0.0113197761, -0.000670584792, -0.00929063186, -2.24336804e-06, -0.0258834697, 0.00333383703, -0.00768224616, 0.0286930539, 0.000413548492, -0.00805550069, 0.0150658898, -0.000228618082, -0.0239425488, 0.00998284854, -0.0337964557, -0.014482256, 0.0137628932, 0.0131860469, -0.00479801092, 0.00727506028, 0.00798763614, -0.00246517314, 0.0127381412, 0.015201618, -0.00455030566, 0.0075329449, 0.0147401402, 0.018499827, -0.00860520173, -0.0443290025, -0.000197230809, 0.0179297663, -0.00160329568, 0.0126838498, -0.0168303624, 0.00643354189, -0.0134642906, -0.0306204017, 0.0112519125, -0.00503214262, -0.00705110747, 0.0241325684, 0.0188391488, -0.0140614966, -0.000799102942, 0.00610779319, 0.0163824577, 0.00162704824, -0.0163281672, -0.00372575363, -0.00615869137, -0.00308782863, 0.0119237695, 0.0171696842, 0.00615869137, 0.00527306134, 0.00469282083, 0.0136610968, -0.00894452352, -0.00693573849, -0.00726148719, -0.0213501304, 0.00174581085, -0.00480140373, -0.0109804543, 0.015934553, 0.00365788932, 0.00177634985, -0.00353912683, -0.00891059171, -0.0137561075, 0.00847625919, -0.0057684714, -0.0138646904, -0.0131724738, 0.00757366326, -0.000723179663, -0.00401078397, -0.00709182629, -0.00236168, -0.00211567152, -0.00855769683, -0.00356627256, 0.00377325877, 0.0017076371, 0.00171272701, -0.00439761113, -0.0105054043, 0.0230060201, 0.00101542054, 0.0251641069, -0.00950101111, -0.0190020222, 0.0174275693, 0.000973005372, -0.00121053064, -0.0222595129, -0.00590080675, -0.0124531109, 0.0139393406, 0.00749901263, -0.0331721, 0.00814372394, -0.0198435411, -0.0111569017, -0.00607046764, 0.00109261635, 0.0133489212, 0.000685854233, 0.00120374421, -0.00236337655, -0.00866628, 0.00999642164, -0.000817341439, 0.00666767405, -0.00836089, 0.00833374448, 0.0221645012, -0.00457745139, 0.0303218, 0.00221577147, -0.0254219919, 0.0136068054, 0.0122291585, 0.00800120924, 0.0137968259, -0.00950101111, -0.00328633189, -0.0066133826, 0.00328463526, -0.0216894522, 9.69188e-05, -0.0118423318, 0.0133964261, 0.0242954437, 0.00209700898, -0.0223138034, 0.00820480194, -0.00156003213, -0.0126092, -0.00405150279, 0.0213501304, 0.00703753484, 0.000794437248, 0.0243090168, 0.0102882376, 0.0298331752, 0.00967745855, -0.00291307783, -0.00441457704, 0.00217505288, -0.0184183884, 0.0176718812, 0.0118830502, -0.0150387436, 0.0207936428, -0.00678983, -0.0221102107, 0.0348551385, 0.00136831531, 0.00819801539, -0.00869342498, 0.00294701, 0.0016508007, -0.0076890327, -0.00946029276, -0.0127652874, -0.0116658844, 0.00273323734, -0.00618923036, -0.00916168932, -0.00159057113, -0.0159752723, -0.0103628887, -0.019219188, 0.0142650902, -0.0185541175, 0.00657945033, 0.00705110747, -0.0136135919, 0.00614851154, 0.00331347762, -0.024933368, -0.00858484209, -0.0184183884, -0.00519162416, 0.044057548, 0.021282265, -0.015581659, -0.0134167857, 0.00599242374, 0.00505589554, 0.0185405444, -0.00219710893, -0.0273900591, -0.010953309, 0.0144279646, 0.000805889373, 0.0249605142, -0.0247840676, 0.0128535107, 0.00239730882, 0.00942636095, -0.00672875205, 0.0114351455, 0.00461138366, -0.00989462435, -0.0133964261, -0.00645390106, -0.0206714869, -0.0160024185, 0.0170339569, -0.0029622796, 0.00920240767, 0.00170424394, -0.0167489257, 0.00872735772, 0.031624794, 0.00686787395, 0.0119169829, 0.00926348567, 0.00948743802, 0.0446819, 0.00531377969, -0.019097032, 0.00310988468, -0.00753973098, -0.0123784607, -0.00996927544, -0.00918204896, 0.00282655098, 0.00141157885, 0.00712575857, 0.00436028559, 0.0024940155, -0.00220898516, 0.0218523256, 0.0263856649, 0.000625200453, -0.00865949318, 0.023969695, -0.0215944406, 8.70572549e-05, 0.0234674979, 0.0264942478, -0.0321948566, 0.00247026305, 0.0125752669, -0.0203050189, -0.0040209638, 0.0252319723, 0.0236439463, -0.0170339569, 0.00984711945, 0.0070307483, 0.0185541175, -0.00857805554, -0.0261956453, -1.95640241e-05, 0.0020562904, 0.0158666894, 0.0131113958, -0.0190020222, -6.54785108e-05, -0.0121680805, 0.0177804641, -0.0100032073, -0.00716647692, 0.0033372303, 0.020440748, 0.0097453231, -0.0124395387, -0.00558863068, 0.0261820722, -0.00890380517, -0.0134575041, 0.0185812637, -0.0164774675, 0.0215537231, -0.0127381412, -0.00339661166, 0.0101185767, -0.00751258526, -0.00646747416, 0.00563952886, 0.00785190705, -0.00188832602, 0.0321405642, 0.00187984295, -0.0242411513, 0.0162603017, -0.0120866438, 0.011747322, -0.00188832602, 0.0245126095, -0.00724791456, 0.00262295781, 0.0131521141, 5.15875217e-05, 0.000463598466, 0.0330092274, 0.00186457345, 0.0255712941, 0.0155002214, -0.00515769189, 0.00313363713, -0.00766188698, 0.0195585098, 0.0236303732, -0.0166403428, 0.00480140373, 0.00910739787, -0.00376647245, -0.0286659077, -0.0163145941, 0.00131317554, -0.0107157836, 0.016667489, 0.000546308176, -0.00662695523, 0.00252285786, 0.00899881497, -0.00930420496, -0.040012829, 0.0132539105, 0.0138918357, -0.00410579424, 0.00992855709, -0.00676607713, 0.0180519223, 0.0222323667, -0.00209870562, -0.0202100091, -0.0167489257, 0.00187644979, 0.0193277709, 0.0116930306, 0.00114436285, -0.00946029276, -0.0152287642, 0.0121409353, 0.00941278785, -0.0134846494, 0.0248519313, -0.0233181957, -0.0111093968, 0.0254219919, -0.0094806524, -0.0284215976, -0.0223409496, 0.0236846637, 0.0169796646, -0.0186491273, 0.004926953, -0.0216894522, -0.0191784706, 0.00225309702, -0.00609422, -0.0165589061, 0.00182385487, -0.0257477406, -0.00512715289, 0.00446208194, -0.0102000143, 0.0156766679, -0.000615869125, -0.000394461618, -0.011991634, 0.0158395432, -0.00923634, 0.0123784607, -0.0023548936, -0.000143469515, -0.00733613782, -0.0186627, -0.0204000287, -0.00228872569, 0.0244990364, 0.00429242104, -0.0144279646, 0.0094195744, -0.00552415941, -0.0109600956, 0.012466684, -0.00382415717, 0.0307289846, -0.0151337534, -0.0130842496, 0.00256357645, -0.0134914359, 0.0120187793, -0.0178483278, -0.014957306, 0.000681612757, -0.0204136018, 0.00656927051, 0.0226531252, 0.00245329691, -0.0140072051, 0.0246754829, 0.0057243593, -0.00332535408, 0.00596527802, -0.0272950474, -0.0121545084, -0.014604412, 0.0049099871, 0.0117066037, 0.00309631182, -0.0132539105, 0.00648444, 0.0130299581, 0.0162467286, -0.0124191791, 0.00641657598, -0.0137561075, 0.01544593, -0.00215299707, 0.00367146218, -0.00628763344, -0.0017229066, 0.0050049969, -0.0384655222, 0.0116794575, 0.0196263753, 0.00701038912, -0.000440694217, 0.0276886616, -0.000257672509, 0.00320659135, 0.00825230684, 0.00717326347, -0.0189341586, -0.0135185821, -0.00510340044, -0.00510340044, 0.0118151866, 0.00739042973, 0.0415872857, 0.00140733726, 0.0143465269, 0.0159481261, 0.0242275782, 0.00217335625, 0.00158717786, 0.00132081029, -0.0147672864, -0.00322864717, -0.02215093, 0.00207834621, 0.0343393683, -0.0105054043, -0.00829981174, -0.0149437338, -0.0102407327, -0.0118898368, -0.00242954423, 0.0155680859, -0.0103832483, 0.031027589, -0.0157988239, -0.0207529236, -0.0246483386, -0.00933135, -0.0211193915, 0.0164774675, -0.0133353481, -6.86596541e-05, 0.000343987514, 0.0380311906, -0.0023854326, 0.00461817, -0.00749901263, -0.00131063059, 0.00199012249, 0.0213365573, 0.00161008211, -0.0136000188, 0.0118287588, 0.0150930351, -0.0856719762, 0.00222934433, 0.00563613558, 0.012344528, 0.0199114047, 0.0209972356, 0.0107497154, -0.0113401357, 0.0246347655, 0.0110415323, 0.0067830435, -0.000623079715, 0.0103628887, -0.00569721358, 0.000813948223, -0.00242615119, 0.0289916582, -0.0164638963, -0.0218251795, -0.0114555052, -0.0123038096, -0.00311497436, 0.00298772869, -0.00313363713, -8.65270704e-05, 0.00921598077, -0.000221619572, -0.0117133893, -0.00526966807, -0.00131063059, -0.0134099992, 0.011733749, 0.0081233643, 0.00329481508, -0.00910739787, -0.0133082019, -0.0153102009, -0.0282044299, 0.0112519125, -0.0169389453, 0.00305050332, 0.00107056042, 0.00355948601, 0.00424152287, -0.0162874479, 0.010159296, -0.00264162058, -0.0167624988, -0.00468603475, 0.00843554083, -0.0112247663, 0.0120119927, -0.012955308, -0.0147808595, -0.039307043, 0.0129145887, 0.00376307918, -0.00220559188, -0.0122630913, 0.0264671035, -0.00445868867, -0.0504368, 0.0024023985, 0.00641657598, 0.0143329538, 0.0168575086, -0.00815051049, -0.00133777631, 0.0256120116, -0.00149810594, -0.00721398229, -0.022028774, -0.00486248173, 0.00959602185, 0.00415329915, -0.00663034851, -0.0179569107, -0.00453333976, 0.00368503504, -0.00187814631, 0.0389541462, -5.41059271e-05, -0.00388523494, 0.00578204403, 0.000402096368, -0.00695609767, 0.0141565073, 0.0102000143, 0.0230874568, -0.00208173948, 0.025055524, 0.00745829381, -0.012710996, -0.00296736951, 0.0362395719, -0.00742436154, -0.0261142086, -0.0161110014, 0.0238611121, 0.0142515171, 0.00960959401, 0.00500160363, 0.00787226669, 0.00984711945, 0.0134507176, -0.0113469223, -0.00889701862, -0.0129281618, 0.00347465556, 0.0032608828, 0.0283673052, 0.00123682804, -0.00233283755, 0.00280449493, 0.00749222608, 0.0208750796, -0.00618244382, 0.0021496038, 0.0115233697, 0.015079462, -0.00528663397, -0.0167489257, -0.0135796601, 0.00774332415, 0.0097453231, -0.013566087, -0.00147435337, 0.0150658898, -0.00196128013, 0.00129111961, 0.0110076, -0.00424830941, 0.0294802804, -0.0318419598, -0.0047572921, -0.0105189765, -0.00418044487, 0.00826588, -0.00544272223, 0.0151066082, -0.000442390854, -0.00426866859, -0.00643354189, -0.0233996343, 0.0048489091, -0.0132674836, -0.00921598077, 0.0167489257, 0.00331517425, 0.0133624934, -0.0214587133, -0.0196535215, 0.0094670793, -0.0122155864, 0.00228363601, -0.0434060507, 0.00859162863, -0.0137628932, -0.0107022105, -0.0326834805, -0.010586841, 0.00431956677, -0.00418044487, -0.0078586936, -0.00689841295, 0.0101864412, -0.0076890327, -0.0243904535, 0.0152423363, -0.019829968, 0.022870291, 0.0260734893, 0.0140479235, -0.0066744606, 0.00473353965, -0.0110822506, 0.0148758693, -0.0105189765, -0.00730220601, 0.0116930306, 0.0187169928, -0.00145993219, -0.00585669465, -0.00150149909, -0.00164062111, 0.00545629486, 0.00257714931, 0.00210040226, 0.0205900483, -0.00289611192, 0.0228838641, 0.00694252457, -0.016423177, 0.0146315573, -0.00538503751, -0.0115776611, 0.0095892353, 2.04653479e-05, -0.0171832573, 0.0025720594, 0.00351876742, -0.0078586936, -0.00497785117, 0.0114555052, -0.00125549082, -0.0178076103, -0.00861877482, 0.0123920338, 0.0077026058, -0.000486502686, -0.0143872453, -0.0213094112, -0.0207257774, 0.0199656971, 0.00270100171, -0.000788923237, -0.0139257684, -0.00443154294, 0.00785190705, 0.0134642906, 0.0132403383, 0.00176108035, 0.0115708746, -0.0129417349, 0.0277293809, 0.0126159862, -0.000621383137, 0.0123581011, -0.0164910406, -0.00328463526, 0.00671178568, -0.00388862821, 0.0166131966, -0.0165996235, -0.0114758648, 0.00164655922, -0.0229245834, 0.0164096039, 0.00545629486, 0.0176718812, -0.0148487231, 0.0168982279, -0.0110211736, 0.00751258526, -0.00581258303, -0.00257375604, 0.0143329538, 0.000821158814, 0.0195449367, -0.0101864412, -0.00306068291, -0.00387166208, 0.00486926828, 0.0215808693, 0.0117948269, 0.00146332546, -0.0248247851, 0.00357984542, 0.00361038442, 0.0289916582, -0.00533074606, -0.00715290429, -0.017766891, 0.00534431869, 0.00920919422, -0.00497785117, 0.00122919329, -0.0407186188, 0.000459356932, 0.00686787395, 0.00299960491, -0.0094195744, -0.0121070035, -0.00707146712, 0.0184183884, 0.0148894424, 0.0167489257, 0.00641657598, -0.00973853655, -0.0082930252, -0.0262906551, -0.0113604954, -0.0149980253, 0.0359681137, -0.0198706873, 0.00912775751, -0.001269912, -0.0144008184, 0.00927027222, -0.0245126095, 0.0219473355, -0.0118355453, 0.000268276315, 0.00632156571, -0.00843554083, -0.0193277709, 0.000714272435, 0.00396667235, -0.017753318, -0.0270235911, 0.00143108983, 0.00347126229, -0.00725470064, 0.00362056401, -0.0027773492, -0.00556148496, -0.00599581702, -0.000144105739, -0.00213772757, -0.00998963509, -0.0207664967, 0.0110890372, 0.00324900658, -0.0144958291, -0.00564970868, -0.0159888454, -0.0138986222, -0.00419401797, -0.00430260086, 0.0225988347, -0.00639282353, -0.00680340268, -0.00614511827, -0.00705789402, -0.00187644979, -0.0023243546, -0.0258698966, 0.0179976299, 0.00922276732, 0.00425848924, 0.00642675534, 0.0183233786, -0.0135728735, 0.0252862629, -0.013077463, 0.0033219608, -0.0013784949, -0.0272814762, 0.00853733718, 0.0184455346, -0.00271118153, -0.00255339686, -0.00703753484, -0.00246008323, 0.0105529092, -0.000635804259, 0.00803514104, 0.00596188474, 0.00393274, -0.00838124938, -0.00475050556, 0.0139664868, 0.0159481261, 0.0138579039, -0.000155345784, -0.0147944316, -0.0241189953, -0.00927027222, -0.000277607673, -0.000205395743, 0.00826588, -0.00772296498, -0.00259750872, -0.0175768714, 0.0241461415, -0.0149165876, 0.0280687027, 0.00353912683, -0.0262227915, -0.00731577864, 0.0236439463, -0.0183233786, -0.0235625077, 0.0558659472, 0.00822516158, -0.00303523382, -0.000917017227, 0.0100439265, -0.0184862539, 0.00600938965, 0.026521394, -0.018011203, -0.0127652874, -0.0233317688, 0.0100235669, 0.015323774, 0.0171696842, 0.0192327611, -0.00449262094, -0.0110822506, 0.00219371566, 0.0130028129, -0.0187169928, 0.00631477917, -0.00627406081, -0.00110703753, -0.0161381457, 0.0117948269, -0.00516787171, 0.00126821536, -0.00255339686, -0.0194499269, 0.0160702821, -0.00532056624, 0.00976568274, -0.0129417349, -0.00830659829, 0.00848983228, -0.0125481216, -0.0256255846, 0.00374611304, 0.0243904535, 0.00609761337, 0.0262092184, 0.0115912342, 0.00584312202, 0.00265519344, 0.00844232738, -0.0171832573, -0.00442815, 0.00733613782, 0.00848983228, -0.0108990176, -0.000410791487, -0.0151337534, -0.00612136582, -0.0253405552, 0.00445190258, -0.00923634, 0.0145908389, 0.0272950474, -0.00093652826, 0.0285301805, -0.00106462231, -0.0108447261, -0.00190189888, -0.0308104232, 0.000737600843, -0.00588044757, 0.000754142762, 0.0209972356, -0.011611593, -0.014604412, 0.00752615836, -0.0167760719, -0.0120934304, -0.0128874434, -0.00646747416, -0.00953494385, -0.0189070124, -0.0170611013, 0.0163824577, -0.00964352675, 0.0123241693, -0.00165334565, -0.00936528295, -0.00967067201, -0.0108582983, -0.00243972405, -0.0223545227, -0.0112790577, -0.0128535107, -0.0153373471, 0.00572096603, 0.00431278069, 0.00691198558, 0.0234267786, -0.00530699361, -0.0176990274, -0.0124395387, -0.000978095224, 0.00596188474, -0.00621298281, 0.0186355542, 0.00551737286, -0.0157852508, -0.0161517188, -0.0247976389, 0.00923634, 0.00566667458, -0.00121392391, -0.00274341693, -0.0125549082, -0.0102678789, 0.00222425465, 0.010831153, 0.0231553223, 0.00021165199, -0.0170746744, -0.00237525278, -0.00747186691, -0.00998284854, 1.55610869e-05, -0.0121680805, -4.03474878e-05, -0.00316587277, 0.0160295628, 0.0106547056, -0.00312854722, 0.0213908479, 0.00347465556, 0.00152525166, -0.0153916385, 0.0111297565, 0.00593473902, 0.0046487092, -0.0289102197, 0.0276886616, 0.0155680859, 0.00102729688, 0.00647086743, 0.00371557404, 0.0313533358, 0.0108040068, -0.0102543058, -0.0179297663, 0.00920240767, 0.00265858648, -0.000131911365, 0.0122563047, -0.0262227915, 0.00105020113, -0.00629781326, -0.00201387517, 0.0159209799, 0.0165724792, -0.00343563361, 0.0135457274, 0.0123513145, 0.0161110014, 0.00227515283, 0.0314076282, -0.0112111932, 0.00441118376, -0.00417026551, 0.00174072105, -0.00904632, 0.00469282083, -0.0334164128, 0.00914133061, 0.00662695523, 0.00915490277, 0.00343224034, -0.00690180622, 0.0262227915, 0.00316078286, 0.0289373659, -0.00581258303, -0.00746508036, 0.00901238807, -0.0153644923, 0.00864592, -0.0316790864, 0.0139664868, 0.00376307918, 0.0119237695, 0.0511425883, 0.0211465359, -0.0197485313, -0.012649918, -0.00059635815, 0.00134625938, -0.00147689832, -0.0116251661, -0.00563274231, -0.00303184055, -0.00208682916, -0.0168439355, -0.0167082064, 0.0231960397, -0.00288762874, -0.00505928835, -0.00488284137, 0.0146179842, -0.0135525139, 0.0128738703, 0.0141293611, -0.0283673052, -0.00397345889, -0.013505009, 0.0218794718, -0.0151066082, -0.0140886428, -0.0293716975]
30 Oct, 2019
array::cbegin() and array::cend() in C++ STL 30 Oct, 2019 array::cbegin() is a built-in function in C++ STL which returns a const_iterator pointing to the first element in the array. It cannot be used to modify the element in the array which is possible using array::begin(). Syntax: array_name.cbegin() Parameters: The function does not accept any parameters. Return Value: The function returns a const_iterator pointing to the first element in the array. Program 1: // CPP program to illustrate // the array::cbegin() function #include <bits/stdc++.h> using namespace std; int main() { array<int, 5> arr = { 1, 5, 2, 4, 7 }; // Prints the first element cout << "The first element is " << *(arr.cbegin()) << "\n"; // Print all the elements cout << "The array elements are: "; for (auto it = arr.cbegin(); it != arr.cend(); it++) cout << *it << " "; return 0; } Output: The first element is 1 The array elements are: 1 5 2 4 7 array::cend() is a built-in function in C++ STL which returns a const_iterator pointing to the theoretical element after the last element in an array. Syntax: array_name.cend() Parameters: The function does not accept any parameters. Return Value: The function returns a const_iterator pointing to the theoretical element after the last element in an array. Program 1: // CPP program to illustrate // the array::cend() function #include <bits/stdc++.h> using namespace std; int main() { array<int, 5> arr = { 1, 5, 2, 4, 7 }; // prints all the elements cout << "The array elements are: "; for (auto it = arr.cbegin(); it != arr.cend(); it++) cout << *it << " "; return 0; } Output: The array elements are: 1 5 2 4 7 Learn C++ Online – Master everything from basics to advanced concepts. Apply your knowledge with practical exercises and boost your skills. Take the Three 90 Challenge: finish 90% in 90 days for a 90% refund. Start now and level up your C++ programming!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum/Algorithm for Dynamic Time out timer Calculation/Difference between Round trip time (RTT) and Time to live (TTL)/Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms/Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm/Round Robin Scheduling Algorithm with Different Arrival Time/Selfish Round Robin CPU Scheduling/Find the order of execution of given N processes in Round Robin Scheduling/Calculate server loads using Round Robin Scheduling/set::lower_bound() Function in C++ STL/Implementation of lower_bound() and upper_bound() in List of Pairs in C++/Difference between std::set::lower_bound and std::lower_bound in C++/Difference between std::set vs std::vector in C++ STL/std::minmax() and std::minmax_element() in C++ STL/std::rotate vs std::rotate_copy in C++ STL/std::bitset::to_ullong and std::bitset::to_ulong in C++ STL/std::upper_bound and std::lower_bound for Vector in C++ STL/std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++/std::string::append vs std::string::push_back() vs Operator += in C++/Vector push_back() in C++ STL/vector :: cbegin() and vector :: cend() in C++ STL/unordered_multiset cend() function in C++ STL/unordered_multiset bucket() function in C++ STL/unordered_multiset emplace_hint() function in C++ STL/unordered_multiset end() function in C++ STL/unordered_multiset size() in C++ STL/unordered_multiset emplace() function in C++ STL/unordered_multiset find() function in C++STL/unordered_multiset erase() function in C++ STL/unordered_multiset clear() function in C++ STL/unordered_multiset swap() function in C++ STL/unordered_multiset bucket_size() function in C++ STL/unordered_multiset bucket_count() function in C++ STL/unordered_set bucket_count() function in C++ STL/unordered_set cbegin() function in C++ STL/array::cbegin() and array::cend() in C++ STL
https://www.geeksforgeeks.org/arraycbegin-and-arraycend-in-c-stl?ref=asr10
PHP
array::cbegin() and array::cend() in C++ STL
unordered_multiset clear() function in C++ STL, What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, jQWidgets jqxTreeMap width Property, Round Robin Scheduling Algorithm with Different Arrival Time, Difference between Flow and TypeScript, unordered_multiset emplace() function in C++ STL, jQWidgets jqxTree destroy() Method, unordered_set bucket_count() function in C++ STL, jQWidgets jqxTree collapseAll() Method, Find the order of execution of given N processes in Round Robin Scheduling, jQWidgets jqxScrollView buttonsOffset Property, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Vector push_back() in C++ STL, jQWidgets jqxListBox enableHover Property, Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm, std::rotate vs std::rotate_copy in C++ STL, Selfish Round Robin CPU Scheduling, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxSlider buttonsPosition Property, std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++, std::upper_bound and std::lower_bound for Vector in C++ STL, Difference between Round trip time (RTT) and Time to live (TTL), jQWidgets jqxSlider rtl Property, Difference between std::set::lower_bound and std::lower_bound in C++, jQWidgets jqxTooltip opacity Property, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, unordered_multiset erase() function in C++ STL, jQWidgets jqxToolBar height Property, PHP, std::minmax() and std::minmax_element() in C++ STL, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, Node.js date-and-time Date.transform() Method, unordered_multiset size() in C++ STL, TypeScript Optional Parameters, jQWidgets jqxToolBar theme Property, Difference between std::set vs std::vector in C++ STL, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, Steps to Diagnose and Resolve a Slow Network, How to use Optional Chaining with Arrays and Functions in TypeScript ?, Calculate server loads using Round Robin Scheduling, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, jQWidgets jqxScrollView showButtons Property, Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms, jQWidgets jqxScrollView disabled Property, jQWidgets jqxSplitter destroy() Method, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, set::lower_bound() Function in C++ STL, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, jQWidgets jqxTree collapseItem() Method, std::string::append vs std::string::push_back() vs Operator += in C++, unordered_multiset swap() function in C++ STL, unordered_multiset cend() function in C++ STL, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), jQWidgets jqxSortable opacity Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, vector :: cbegin() and vector :: cend() in C++ STL, jQWidgets jqxSlider height Property, jQWidgets jqxSwitchButton onLabel Property, unordered_multiset bucket_size() function in C++ STL, unordered_set cbegin() function in C++ STL, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, jQWidgets jqxToolBar tools Property, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTree width Property, Implementation of lower_bound() and upper_bound() in List of Pairs in C++, jQWidgets jqxTree clear() Method, TLS Handshake?, Algorithm for Dynamic Time out timer Calculation, Adhoc TCP, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, jQWidgets jqxTabs position Property, Differences between Wireless Adhoc Network and Wireless Sensor Network, jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, std::bitset::to_ullong and std::bitset::to_ulong in C++ STL, unordered_multiset emplace_hint() function in C++ STL, unordered_multiset bucket_count() function in C++ STL, unordered_multiset find() function in C++STL, unordered_multiset bucket() function in C++ STL, Impact of Three-way Handshake and Slow Start Algorithm, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, array::cbegin() and array::cend() in C++ STL, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, unordered_multiset end() function in C++ STL, How to Sort an Array Having Optional Properties in TypeScript ?
GeeksforGeeks
[-0.00424861303, -0.0138574345, -0.0111841494, 0.0133391442, -0.00239027105, -0.0368804149, -0.04004471, 0.0125889881, -0.010911365, -0.0144984769, -0.0559207462, -0.00359393097, 0.00759703806, -0.00988160539, -0.00330239302, -0.00545568252, 0.0330887139, 0.0394991413, 0.00779480673, -0.00984750688, -0.00638655853, -0.0319430232, -0.00821080245, -0.0141984141, 0.00276705413, 0.0154668605, -0.0353528224, -0.00608308613, -0.0327068195, -0.0325431488, 0.0360620618, 0.00322226249, 0.0260781627, -0.0412995182, -0.0113546392, 0.021140771, 0.00486578699, -0.0195449833, -0.0398537628, -0.0170899257, 0.0234867148, -0.00501922797, 0.0137824183, 0.00358711137, -0.0232548472, 0.0439455248, -0.0225728881, -0.0337433964, 0.00247892574, -0.00464415, 0.0112250671, 0.0236640237, 0.0397173688, 0.00754248118, 0.0324067548, 0.0245914906, 0.0202133041, 0.0248779133, -0.0113887377, -0.035762, 0.00768569298, -0.0296789147, 0.00782208517, -0.0293515734, -0.00716740312, 0.026159998, -0.0540112592, 0.0681414753, 0.0159715116, 0.0115114907, -0.0367440246, -0.000919794, 0.00397582864, 0.0221500713, -0.046809759, -0.0187402703, 0.0294606872, 0.0230775382, -0.0121661723, 0.0539294221, -0.0211544093, 0.043263562, -0.013325505, 0.00577279413, 0.0237185806, -0.00869499426, -0.00960882101, -0.0349163711, 0.0380261093, 0.0203633364, -0.0246187691, 0.0112114279, 0.00373714254, -0.0342616886, -0.00176968705, -0.00322737731, 0.0240459219, 0.00737199141, -0.0228183921, 0.0423088185, 0.0137687791, 0.0201996658, -0.00113631645, 0.000352914474, 0.000575404032, 0.0243869014, 0.0285332203, 0.0133050466, -0.0176900513, -0.0177855249, 0.000546846946, 0.0168853384, -0.0156305302, 0.0626312345, -0.0227092784, 0.0068946192, 0.00714694429, -0.0100043584, 0.0303881522, 0.0251234192, -0.0209907386, 0.0241959523, 0.0166671108, 0.0373714268, -0.0509833544, 0.00782208517, 0.0248779133, 0.0107545145, -0.011961584, 0.0110818557, 0.00629108399, -0.0550205596, 0.00993616227, -0.0172672365, 0.022068236, 0.00501922797, 0.0237867758, 0.0371804759, -0.00342003116, -0.0129231485, -0.026159998, -0.024550572, 0.0104339933, 0.0321066938, -0.0388171822, -0.0405630022, -0.00947242882, 0.0712512136, -0.0190676115, -0.0324613117, -0.0402083807, 0.0299516972, 0.0293515734, -0.0449548252, 0.0135914693, -0.0492375381, 0.0310973916, -0.0065093115, 0.0341798514, -0.0391990803, 0.0145257553, 0.0240868386, -0.00830627698, -0.00362120941, -0.0152895506, 0.0309882779, 0.0455822274, -0.0204997286, -0.0390354097, 0.0393627509, 0.00667298213, 0.0207315944, -0.00156936119, -0.0200496335, -0.0106794992, -0.0285059419, 0.0325431488, -0.0109386435, 0.0132777682, 0.00190948893, -0.00280967657, -0.0103930756, 0.00106982526, -0.0132709481, 0.0141165787, 0.00943151116, 0.0518562645, -0.0146485083, 0.0338525102, -0.016367048, 0.0131686544, -0.0120434193, 0.0344253592, 0.00625357637, 0.0266100932, 0.0157396439, -0.0288605615, -0.00872909278, 0.00191801344, 0.0424997695, 0.0118524702, 0.00425884221, 0.038435284, -0.0301972032, 0.0583758056, -0.000361439, -0.00724241883, -0.0174036287, 0.00310973916, 0.00558184553, -0.00571141765, 0.019217642, 0.0220409576, -0.00333137624, 0.0157805625, 0.00489988504, -0.0468370356, -0.00210384768, -0.0167216677, -0.0207315944, -0.00342344097, -0.0268146805, 0.0645407289, -0.0564117581, -0.0310701132, -0.0449275486, -0.00146280497, 0.0129367877, -0.0126708234, -0.0101748481, -0.00631154282, 0.0305791013, -0.0217136163, 0.00168699934, 0.0036859957, -0.027278414, -0.0185356811, -0.0136323869, -0.0141984141, 0.041654136, 0.0129913446, 0.037753325, -0.0537384748, -0.000383176462, 0.0310701132, 0.041408632, -0.00447025, -0.0118047334, -0.0205815621, -0.0221637115, 0.028642334, 0.00502945762, 0.0560298599, 0.00295459316, -0.0186720733, 0.00447025, 0.00409517204, -0.00849722605, 0.0105021894, 0.0241550356, -0.00889276247, 0.0263782255, -0.00917918608, 0.0174445454, 0.0124389566, 0.00350868586, 0.0230229814, 0.018290177, -0.0500013307, -0.0510651916, 0.0253007282, 0.00292220013, 0.045936849, -0.0270874649, -0.0029938058, 0.0154123036, -0.0187539086, 0.0158760361, 0.00435772678, -0.0112523455, 0.00662865443, -0.0446274839, 0.0290242322, -0.0011763816, 0.0160124283, -0.0216590595, -0.0410267338, -0.0108636282, 0.0101748481, -0.0165034402, -0.0440819152, -0.0281240437, -0.0027585295, 0.0281240437, 0.0357347205, 0.0278512593, -0.0190812498, -0.0329796, -0.0340161808, -0.0245778505, 0.00937695429, -0.0228320323, -0.0101475697, -0.0346981436, 0.00813578721, -0.0294879656, 0.00362120941, -0.027401166, 0.0417359732, -0.0126844626, -0.00137755985, -0.0738699436, 0.0182628985, -0.00540794525, 0.0165443569, -0.013946089, 0.0242232308, -0.0129981637, -0.0114501137, -0.005206767, -0.0012599217, -0.023118455, 0.0079857558, 0.0149076534, 0.00982022844, -0.0398264825, 0.0310701132, 0.0248097163, -0.00246699154, -0.0424724892, -0.0209225435, 0.0232684873, -0.0547750555, -0.0114773922, -0.0299516972, -0.0153986644, -0.0485555753, 0.00322567229, 0.0273466092, -0.00703783054, 0.0108158905, 0.000970088586, -0.000812811486, 0.0250552222, -0.00555115705, -0.0159851499, 0.00488965539, -0.0262009166, 0.0169398952, -0.00929511897, 0.000759533315, -0.0186447948, -0.00332967145, -0.0406993926, 0.0398810394, -0.00567391, -0.0322430842, -0.0512561388, -0.00550342, 0.0423906557, 0.0188084655, 0.0421178713, -0.00351550546, 0.0511470251, 0.0100589152, -0.0413267948, -0.0104408124, -0.0253962036, 0.0200632736, -0.006417247, -0.000813237682, -0.0173081532, 0.0175263807, 0.0193676744, -0.0196677353, -0.0159442332, 0.000846909476, 0.0106181223, 0.00739245024, 0.0014108055, -0.0368531384, 0.0292970166, -0.0253143683, -0.0122684669, 0.00911099, -0.034534473, -0.00336717907, 0.0401265472, 0.00631154282, -0.0209771, -0.0274966415, 0.0098611461, 0.00920646451, -0.0163397696, -0.0213589985, -0.0207861513, -0.0082449, -0.0285604987, -0.0106181223, -0.0305518229, 0.0425816029, -0.00238004164, 0.0216454212, -0.0153441075, -0.00827899855, 0.028642334, -0.0056534512, -0.0287514478, 0.0242641494, 0.0379715525, -0.00518630818, -0.00267839921, 0.028451385, -0.00917236693, 0.0394718647, 0.00795847736, -0.0161079038, 0.0328977667, 0.0298698619, -0.00699691288, 0.00960882101, -0.0181265064, -0.0174445454, 0.00182765373, 0.0217681732, 0.00152162404, -0.0204860885, -0.002356173, -0.00963609945, 0.023923168, -0.0630676895, 0.0218090918, 0.0383807272, 0.0424452126, 0.0044191028, -0.0367167443, 0.0409449, -0.0172126796, -0.0482009575, 0.00419064611, 0.0295152441, 0.0502195582, 0.0258326568, -0.0141165787, -0.00618538028, 0.0168989766, -0.0288332831, 0.00274489028, 0.00184811256, -0.00709920703, -0.0304427091, -0.00945197, 0.0122957453, -0.00287275785, 0.0333887786, -0.0107135968, 0.0234457962, -0.0265282579, 0.0430998951, 0.0218636487, 0.000399799261, -0.0207861513, -0.00986796618, 0.0181537848, 0.0489101969, -0.00685029151, 0.0168989766, -0.0239640865, -0.00662524486, -0.00545909256, -0.00703101093, -0.0260781627, 0.028205879, 0.0244960152, 0.0152622722, -0.000447110244, -0.00973157398, -0.0164761618, -0.0499467738, -0.0250006653, 0.00592964515, -0.0358983912, -0.0516925938, -0.00835401379, -0.0155350566, -0.0183583722, 0.00441569323, -0.0186311565, -0.00592282554, 0.022504691, -0.00474644406, -0.00931557827, -0.0153031899, -0.0337979533, 0.00696963444, 0.0171172041, -0.0358983912, 0.0305791013, -0.011095495, 0.0247142427, 0.017976474, -0.0187675487, -0.0131891128, 0.0204178933, -0.00330580282, -0.0221227929, -0.0499467738, 0.0280422084, 0.000935990538, -0.000701566692, -0.0317520723, 0.0165443569, 0.0175127406, 0.00210214267, -0.0074879243, -0.0163397696, 0.0111159533, -0.00318304985, -0.0548023321, -0.014880375, 0.0245096553, -0.00232377974, -0.00444979127, 0.0234321579, 0.0191221684, 0.0106113032, 0.0135710109, -0.0128890499, -0.00573869608, -0.0138165168, 0.00396559946, -0.00174922822, -0.0201723874, -0.00801985338, -0.0126912817, -0.0138574345, -0.00839493144, 0.00612741383, -0.0201451089, 0.0121388938, -0.0540658161, 0.0382988937, 0.00978613086, 0.000776582339, -0.0276057553, -0.00113972626, -0.0124253174, 0.00703783054, -0.000488027872, 0.0122207291, 0.000537043787, 0.0325431488, -0.00851768441, -0.0101202913, -0.0170626473, 0.00767205376, -0.0240322817, 0.00578643335, -0.00729015609, -0.0154941389, -0.0052510947, 0.0282604359, 0.0430453382, 0.00204758602, -0.00844266918, -0.0148258181, 0.00763795571, 0.0237049405, -0.0141438572, 0.0285604987, -0.0145121161, -0.0153986644, 0.0447093211, 0.0198041275, 0.035516493, 0.0158623978, 0.00607967656, 0.0293515734, -0.00099480967, 0.0321339704, -0.00809487, -0.0390354097, 0.00627744477, -0.048419185, -0.0100520952, -0.00198450452, -0.00624675676, -0.00659455638, -0.0229820628, 0.00158129551, -0.0158214793, 0.00786982197, 0.0165443569, 0.0274284445, -0.00166142592, -0.021263523, -0.003300688, 0.000156957438, -0.0298971403, 0.00710602663, 0.00982704852, 0.014934931, 0.0134209795, -0.0348345339, -0.00749474391, -0.0146894259, 0.0212362446, 0.0014969029, -0.0101748481, -0.00635928, -0.051447086, 0.0145530337, 0.00484532816, -0.0229275059, 0.00307905092, 0.0179491956, 0.0116001451, 0.00718104234, -0.0443819799, 0.0182492584, -0.0335251689, -0.00369622512, -0.0143484455, -0.00333819585, 0.012582168, 0.0214408338, -0.0186311565, -0.0380806662, 0.00433044834, -0.0189994145, 0.0118661094, -0.0146757867, 0.0143757239, 0.0177582465, -0.00870863348, -0.00404743478, -0.0151531585, 0.021631781, -0.0239777248, 0.0271965787, -0.0350527614, 0.0116001451, 0.0112318872, 0.0385171212, 0.00888594333, 0.00576938456, -0.00442592241, 0.0153850252, -0.000902745, -0.00797211658, -0.0141711356, 0.020895265, -0.0180037525, -0.00317623024, -0.0134346187, -0.01444392, 0.0226274431, 0.044136472, 0.00409176201, 0.00539089646, 0.00283695501, -0.0439728, 0.00660137599, -0.00671730936, 0.00762431649, -0.0182765368, -0.0328432098, -0.00656727795, -0.000398520584, -0.0157942, -0.0275239199, -0.0186038781, 0.00585122, -0.0104680909, 0.0244414583, -0.0274148062, -0.0227365568, 0.0253280066, 0.0254371203, -0.00387012493, 0.00623311754, -0.0170899257, -0.0221091546, -0.0351345949, -0.0171308443, -0.0112728048, -0.00301596965, -0.00597056281, 0.0290242322, -0.0373714268, -0.00322226249, -0.021509029, 0.014130218, 0.00674458779, -0.000730123778, 0.0100248167, 0.0160942636, -0.018290177, 0.00277216872, -0.0252870899, 0.00210896228, -0.0378078818, -0.0261736382, -0.0169262551, -0.0125889881, 0.0359802283, 0.000610780728, -0.00740608945, -0.00682301307, 0.0178400818, 0.00130595407, -0.0148258181, -0.0263236687, -0.000960711623, 0.00545568252, 0.00633200165, 0.0116342437, 0.00124202028, 0.00747428508, -0.0288332831, 0.003300688, -0.0053499788, -0.0105635654, -0.00354960351, 0.0327340961, 0.00120366, -0.0201860256, -0.0158623978, -0.00121218455, -0.000683239, -0.0471916571, -0.00339616253, -0.00967019796, 0.00276193931, -0.0195449833, -0.026773762, 0.0108090714, -0.00687416038, -0.000853302889, 0.00933603663, -0.0084358491, 0.0184811261, -0.0358438343, -0.0113614593, -0.00137500255, -0.0157805625, 0.0166807491, -0.00692530721, -0.0190539714, 0.0271283817, 0.00220273179, 0.0220818762, 0.0190539714, -0.00406448357, 0.036580354, -0.0194767881, 0.0188221056, 0.00118320121, 0.000648288522, 0.0241550356, 0.0350527614, -0.000404487713, 0.00716740312, 0.0337433964, -0.031424731, -0.000961564074, 0.00804713182, 0.021877287, 0.0179491956, 0.014130218, -0.00861315895, -0.010849989, 0.0110136596, 0.00568072964, 0.00685711112, -0.011716079, 0.0110409381, -0.00264430116, 0.0310155563, -0.00300403521, -0.00132300309, 0.0501377247, 0.0146757867, 0.00586485909, 0.0288605615, -0.0368258581, 0.0119411256, 0.015248633, 0.0442455858, -0.0155350566, -0.0205952022, -0.00913144927, 0.0274966415, 0.0210316572, -0.0121729923, -0.0247688, -0.0325431488, -0.0276739504, -0.052074492, -0.0364985168, 0.0467552021, -0.0103998948, 0.00453503616, -0.00383261708, 0.0175945759, -0.0227229185, -0.0114842122, 0.0144711984, 0.00729015609, 0.019026693, 0.00984068774, -0.00335694966, -0.00898141786, 0.0190130547, 0.00035227515, 0.00840175152, -0.0163124911, 0.0240459219, 0.0148530966, 0.0147712613, -0.00878364872, -0.0203633364, 0.00359734078, -0.0286968909, -0.0647043958, 0.0233639609, 0.0220545977, 0.020090552, 0.040235661, 0.0169126168, -0.0250688624, 0.0133459643, -0.00124969229, 0.0427998304, -0.00842221, 0.0221500713, -0.0113069024, -0.0012599217, 0.0165307187, 0.0146348691, -0.0175263807, 0.00573869608, -0.0315338448, 6.51591763e-05, 0.00251813862, -0.0124184974, -0.00964291953, 0.012704921, -0.0140483826, -0.0060183, 0.00641042739, 0.0260236058, -0.0264600608, 0.0239095297, 0.00178332627, 0.0223546606, -0.0464005806, -0.0134346187, -0.00894731935, -0.0119343055, 0.00351209566, 0.0154123036, 0.00785618275, 0.0131345559, 0.0185766, -0.00287616765, -0.00410540123, -0.0142529709, 0.0333069414, -0.0166807491, 0.0134823555, 0.0111159533, -0.0193403959, -0.0130254421, 0.00506355567, -0.0105908439, 0.017853722, 0.0536020808, -0.0071537639, -0.0300062541, 0.0438636877, -0.0100248167, -0.0331159942, 0.00288810208, -0.00187539088, 0.00760385767, -0.00988160539, -0.0123162037, -0.0131754735, -0.027769424, 0.0568482131, -0.00514880056, -0.0122207291, -0.0199677981, 0.0345617495, 0.0120502394, 0.0215635858, -9.39293823e-05, -0.0055613867, -0.0246733259, 0.00342855556, 0.00136562553, -0.00401333673, 0.0134005202, 0.0335797258, 0.00547614135, 0.03025176, 0.0162715744, -0.00687075034, 0.0118456511, 0.0173354317, -0.0255325958, -0.0232002903, -0.00737199141, 0.0134346187, 0.00780844595, -0.00818352401, -0.0173490718, 0.0343708023, -0.0110613964, -0.0024243691, 0.0199950766, -0.0126912817, 0.00722196, 0.00427930104, -0.0189994145, 0.0104203541, -0.0145803122, -0.0171308443, -0.0125412503, -0.0275784768, -0.00602170965, 0.0215226691, -0.0016460818, 0.00937695429, -0.00891322177, -0.0446274839, -0.0354073793, -0.039608255, -0.0167080276, 0.0138574345, -0.0142802494, 0.0111091342, -0.0154805, -0.0054181749, 0.0246187691, -0.0301972032, -0.0168716982, -0.0285332203, 0.00727651687, -0.00438841479, -0.00168188463, -0.0109181851, -0.0335797258, 0.000635075558, 0.0087700095, -0.0162306558, -0.0178946387, -0.00993616227, -0.00117552909, 0.0277830642, 0.0110613964, 0.0144302808, -0.0109659219, 0.0498103835, -0.027401166, 0.00913826842, -0.0183174554, -0.0152622722, -0.00874273106, 0.0297334716, -0.00918600615, 0.0121320747, 0.0240732, 0.0169671737, 0.0346981436, -0.00387012493, -0.0228320323, -0.00192653795, 0.0210452955, 0.0251916144, 0.0558389127, -0.0239777248, 0.0215226691, 0.0329796, 0.0253280066, -0.0022692231, 0.0126094464, -0.0165034402, 0.00321544288, -0.0467279218, -0.0169535335, -0.00487601664, -0.0209771, 0.0125958072, 0.0331159942, -0.00975885242, 0.0105499262, -0.0123025645, -0.018658435, -0.0324613117, 0.00114739826, -0.0187675487, 0.0306336582, -0.00163073768, -0.00410881126, 0.000924908731, 0.0376442112, -0.0223001037, -0.0196404569, 0.0169398952, -0.0186720733, 0.0089405, -0.0183038153, 0.0284241065, 0.0080539519, -0.00874273106, -0.0225865263, 0.0295970794, 0.010168029, -0.000384028914, -0.0463187471, -0.0187675487, 0.0161215421, -0.00652977033, 0.00528860232, 0.0203906149, -0.0079857558, 0.011279624, -0.026159998, 0.00070369785, -0.00833355542, 0.0152622722, 0.0158351194, 0.0139938258, -0.0121798115, -0.00835401379, -0.0323249213, 0.00816306565, -0.00150713231, 0.0033876379, 0.00796529651, -0.0147985397, 0.00649226224, -0.00212260149, -0.00165119651, -0.0086745359, -0.0168171413, -0.0255325958, 0.00623311754, 0.00571141765, 0.00884502567, -0.0125480704, 0.0199268814, 0.0154668605, -0.00943151116, 0.00301085482, -0.0173354317, -0.0191903636, 0.0130390814, -0.00795847736, -0.00670026, 0.0117433574, -0.0109181851, -0.00978613086, 0.0293515734, 0.0232412089, -0.00450093811, 0.00860634, 0.0125139719, 0.0189857762, -0.000596715312, -0.018658435, -0.0295152441, -0.0185902379, 0.00195552129, -0.00213453593, 0.00354960351, 0.0374805406, -0.0234867148, -0.0310428347, 0.00152759114, 0.0131277367, 0.0155350566, 0.0376169309, -0.0108090714, 0.00679232506, 0.0111159533, -0.0114978515, -0.0211816877, -0.0165852755, 0.00899505708, 0.00540112564, 0.0153441075, -0.0111773303, -0.00961564109, 0.0117228981, 0.0407812297, -0.00657750759, 0.00234423857, -0.035762, 0.0241550356, 0.000604813569, 0.0116274236, 0.0210862141, -0.00307564111, 0.000374012627, 0.00540453568, 0.00929511897, -0.0255462341, 0.00999071915, 0.00767887337, 0.0143757239, 0.00997708, -0.0163124911, -0.0260645244, 0.00550342, -0.0286696125, 0.00913144927, -0.00178673607, 0.0100657344, 0.0141847748, 0.0106249424, 0.00877683, -0.042717997, -0.00297505199, 0.000336717931, 0.0262963902, 0.00159663963, 0.032297641, -0.0180583093, 0.00681278389, 0.0105703855, 0.0128072156, 0.0389808528, 0.00751520274, 0.000725009071, -0.00147218187, -0.0105226478, -0.00732425414, 0.0115114907, -0.0056534512, -0.0313156173, -0.00203224178, -0.00897459779, -0.0282604359, 0.00469188718, -0.00949970726, -0.0158896763, 0.0173627101, 0.00553751783, -0.00225046906, -0.00137670746, 0.0217272565, -0.0170217305, 0.0150167663, -0.00965655874, -0.0139938258, -0.00436795596, 0.00923374295, -0.00402356591, 0.00673435815, 0.00685370155, -0.0265691746, 0.000861401146, 0.0302244816, 0.00660478603, -0.0312337838, 0.00357006234, 0.0275239199, 0.00295288838, -0.00141847751, -0.0141029395, 0.012084337, 0.0207997896, -0.030933721, -0.00309098512, 0.0220818762, 0.024114117, -0.00191289873, 0.0287514478, 0.00690484839, 0.0149758486, -0.0404811651, 0.0156168919, -0.0099293422, 0.00562276319, -0.0103794364, 0.00561594358, -0.021509029, 0.0132436696, 0.00367576629, 0.0110000204, -0.00402015634, 0.0375078171, -0.0183992907, 0.00112693943, -0.00886548404, 0.0135028148, 0.0211680494, -0.0207861513, 0.0169535335, -0.0319703, 0.00610013539, -0.00932921749, -0.0147985397, 0.0159033146, -0.00167847483, 0.00580689218, 0.0150849624, -0.00712648546, -0.0204860885, -0.00413949927, 0.00672071893, -0.00591259636, -0.0144984769, -0.0194904264, -0.0274966415, 0.0103657972, -0.00195552129, 0.00292390492, -0.0174854621, 0.017881, -0.0162715744, 0.0153304683, 0.0449821055, 0.0118592903, -0.00213624071, -0.00871545356, 0.0366621874, -0.0119888624, -0.0207725111, 0.0162170175, -0.0120229609, 0.0174309071, -0.0239504464, -0.0128754107, 0.0335251689, 0.0196268186, -0.00444297167, -0.029324295, 0.00731743453, 0.011034118, 0.0260918029, 0.00978613086, 0.0210589357, -0.0145939514, -0.0269101541, -0.0334978923, -0.0170626473, 0.0188630223, -0.00739927, -0.014934931, 0.0122343684, 0.020827068, -0.003455834, -0.0357347205, -0.00279092276, 0.00838129222, 0.036580354, 0.0102021266, -0.00595010398, -0.00287787267, 0.00996344071, -0.0398537628, 0.0070787482, 0.022872949, 0.0118933879, 0.00100418658, 0.0173490718, -0.0258326568, 0.00507037528, 0.0144984769, 0.0213044416, 0.0144711984, -0.00615469227, 0.0227092784, 0.00949970726, 0.00823126081, 0.00271931686, 0.0103657972, -0.0197359324, 0.000538322434, -0.00982704852, 0.0125276111, -0.00956790335, 0.00428271107, -0.0112523455, 0.0132982265, -0.00711284624, -0.0143075278, 0.016803503, 0.0119752232, 0.0117228981, -0.00297505199, -0.00814942643, -0.0200087167, -0.0173763502, -0.00932921749, -0.0226001665, -0.0171444826, 0.0108977258, -0.0215908643, -0.0171035659, -0.00932239741, 0.0143075278, -0.0034438998, -0.010474911, 0.00977931079, -0.00159834453, 0.00915872771, -0.0044941185, 0.00221807603, 0.0121116154, 0.0290515106, 0.0114842122, -0.0116001451, 0.0250961408, -0.00569777843, 0.00106897287, -0.0340161808, -0.00397582864, 0.0229002275, 0.0292970166, 0.0168716982, -0.0260236058, 0.0132368505, -0.0383261703, 0.00346606341, 0.0102498643, 0.0259826891, -0.00571482768, 0.00317964, 0.0270874649, -0.0386807919, -0.018290177, 0.0167216677, -0.00162903278, -0.0106385816, -0.0059637432, -0.00480782054, 0.0292970166, -0.000307095266, 0.0180583093, -0.00891322177, -0.0129913446, 0.00235446799, 0.0193403959, -0.00980658922, 0.00951334648, -0.0189994145, 0.0141165787, 0.00838129222, 0.0191630851, -0.00211066729, 0.00354960351, -0.0196813755, 0.0141984141, 0.00823126081, -0.00222319062, 0.00431339908, 0.011961584, -0.0251097791, -0.018412929, -0.0172263179, -0.0082449, -0.0110272989, 0.022872949, 0.0274557229, -0.0010306125, -0.00239709066, -0.0224228557, -0.0171308443, 0.00665934291, 0.00177650666, 0.0094792489, -0.00590577675, 0.0176491328, 0.0326795392, -0.0259144921, 0.0169262551, -0.012084337, -0.033470612, -0.00618197024, 0.0139938258, -0.0143620847, -0.0155350566, 0.00508742407, -0.0172808748, 0.0111023141, -0.00430657947, 0.00542158447, 0.0220545977, 0.0088382056, -0.0102225859, 0.0207997896, -0.00714694429, -0.0254507605, 0.0350527614, 0.0314520113, 0.00157959061, -0.0168716982, -0.00917918608, -0.00119598792, 0.0125276111, 0.00169808127, -0.0167216677, -0.0148121789, -0.00733789336, -0.0346708633, 0.0107408753, 0.0157396439, -0.00209191325, 0.0121661723, -0.00102635031, 0.014934931, -0.0089405, 0.0228456706, -0.0261327196, -0.0201178305, 0.0339616239, 0.00642406661, -0.0317520723, 0.00686734077, 0.027210217, -0.0420360342, 0.0221909899, 0.0105567463, 0.0165034402, -0.00687416038, -0.00772661064, -0.0028182012, 0.022682, 0.00407812279, 0.0269510727, 0.00894731935, -0.00866771583, -0.0103589771, 0.0445183702, -0.0104203541, 0.00233741896, 0.0124662351, -0.00565686077, -0.00623993715, 0.0213999152, -0.0088382056, 0.0150167663, -0.00735153258, 0.0056773196, -0.0152622722, -1.72621203e-05, 0.00471234601, -0.00978613086, -0.00821080245, 0.0131072775, 0.00281649618, 0.00884502567, 0.00121559436, -0.0199132413, 0.0180310309, 0.00720832078, -0.00470211636, -0.00764477532, 0.0160397068, -0.00753566157, 0.0279603731, 0.0545841046, -0.0109181851, -0.0153441075, 0.00923374295, -0.00796529651, 0.0193267558, -0.0180037525, -0.0141438572, -0.00780844595, -0.0118933879, -0.000939400343, -0.0065843272, -0.0219591223, -0.00446343049, -0.02045881, -0.0157260057, 0.024550572, -0.0155759742, 0.0110272989, -0.00797893573, -0.000134260947, -0.00316941063, 0.00659455638, 0.0237594973, 0.0372077562, 0.0204997286, 0.0433726758, 0.0159033146, -0.036389403, -0.00364166824, -0.0151395192, -0.00348652224, -0.0167080276, 0.0312610604, 0.0110068396, 0.00586826866, 0.00991570298, 0.000822614646, -0.0242095925, 0.0370986424, -0.0197632108, 0.010849989, -0.0169262551, -0.0209907386, 0.0132641289, 0.0378624387, 0.0269919895, -0.0138915321, 0.0308518857, -0.00234082877, 0.00500558876, -0.0160942636, 0.00112097233, 7.22451732e-05, -0.00229650154, 0.00417018728, -0.0373441465, 0.012711741, 0.000700288045, -0.00955426414, -0.0256826263, 0.00921328459, -0.00284888921, -0.01066586, -0.0217272565, 0.010972742, 0.0244141798, -0.00340639194, -0.00224876427, -0.0162715744, 0.0281786, 0.000237407439, -0.0276739504, -0.00489988504, -0.00187709578, -0.00917918608, -0.00205440563, 0.00674799737, -0.00302960887, 0.0214135554, 0.00119598792, -8.14090163e-05, -0.0058955471, -0.00801303424, -0.00484532816, 0.0024243691, -0.0198859628, -0.0221091546, 0.021699978, 0.0334160551, -0.00720150117, 0.00143211673, -0.018849384, -0.00834037457, 0.0022129612, 0.0204178933, 0.0338525102, 0.0190676115, -0.00606603734, -0.00293754414, -0.00230332115, -0.0206906758, -0.00439864397, 0.0131140975, 0.00276193931, 0.0226547215, 0.0128685916, 0.00403379556, 0.00759021845, -0.012704921, -0.00397582864, 0.0222864635, 0.0189721361, 0.0115114907, 0.0226410832, 0.00586144906, 0.0146075906, -0.0103862556, 0.02579174, -0.0155077782, 0.000369324145, -0.0113819176, 0.00134601921, -0.0345890298, -0.0201314688, -0.00498854, 0.00476008328, -0.000342045736, -0.0110272989, 0.0115660476, -0.0183310937, -0.0144848377, -0.0106522208, 0.00522722583, -0.00619560946, 0.00861997902, -0.0195449833, 0.0181810632, -0.00459300308, -0.00643770536, 0.020336058, -0.0185766, -0.0106863184, 0.0106726792, -0.00694235601, -0.00783572439, -0.000245079485, 0.000485044293, 0.00317111565, 0.0195722617, 0.00919964537, 0.0101543898, -0.0186038781, 0.00724241883, 0.00917918608, -0.00167591753, -0.00230161613, 0.00750838313, 0.00868135504, -0.015003127, -0.00663888408, -0.0238004159, 0.0120706977, -0.00307734613, -0.0055102394, 0.00261531794, 0.0042281542, -0.00732425414, -0.00908371154, 0.00531588076, 0.000692189729, -0.00412926963, 0.0351891518, -0.00423156377, 0.0274693631, 0.000634223106, -0.0110068396, -0.0274284445, 0.016980812, 0.0191767253, 0.00225899369, 0.00954744499, 0.00322567229, -0.0113069024, 0.012275286, 0.00941787194, 0.00872909278, -0.00158044312, -0.00888594333, -0.0210589357, 0.0185902379, 0.00660478603, 0.00927466061, -0.0169944521, 0.0213453583, 0.0295425225, 0.0223410204, -0.00250961399, 0.0110545773, -0.00307052652, -0.00670707971, 0.0053943065, -0.0251916144, 0.00611718418, -0.0006657638, 0.00716058351, 0.0248506349, -0.00293242955, -0.0120025016, -0.00808123, -0.00428271107, 0.022504691, 0.0126162665, -0.00721514039, 0.00148496858, -0.0285604987, -0.00754930079, 0.0276875906, -0.0233639609, 0.0368531384, -0.0130936382, 0.00202712719, 0.0140756611, 0.00404743478, -0.0154259428, -0.0250143055, -0.00979295, 0.00233400916, -0.00614446262, -0.0230911765, 0.0145803122, -0.00150968973, 0.0339343473, 0.0207725111, 0.0291879028, -0.0079857558, -0.0517744273, -0.0220955145, -0.00108602189, -0.0240186434, -0.00660478603, -0.0102566835, -0.00971793476, -1.46648108e-05, -0.000961564074, -0.013202752, 0.0196677353, -0.00168273714, -0.024550572, -0.0146621475, -0.0166398324, -0.00245505711, 0.00166824553, 0.00454185577, -0.00806759112, 0.00784936361, -0.0140620219, 0.0131686544, -0.012459415, -0.00404743478, -0.00581371179, -0.0014934931, 0.0066763917, -0.0124730542, 0.0175809376, -0.00500899879, 0.014007465, 0.00460323226, -0.0056705, 0.000212366707, 0.0060626273, 0.00789028127, 0.0126299057, -0.00797211658, -0.0100248167, -0.00949970726, 0.013202752, 0.0166807491, 0.00580689218, -0.00564322202, -0.00115080806, 0.00716740312, 0.000791500206, 0.00289321668, -0.00772661064, -0.0151804369, -0.0181401446, 0.01357783, -0.00210555247, -0.026037246, 0.00906325318, 0.0190812498, 0.0273875277, -0.00590918632, 0.02355491, -0.00816306565, -0.0128890499, -0.00046586417, -0.000357816054, -0.0166943893, 0.028205879, -0.0143893631, -0.0154259428, -0.0167489462, 0.00231014076, 0.0168716982, 0.00614105305, 0.014007465, 0.0117092589, 0.0319703, 0.00307734613, 0.0145530337, 0.00177480176, 0.00898823701, -0.000238473, -0.000119023389, -0.0125071527, -0.00389740337, -0.00572164729, 0.00588190788, -0.0140211042, 0.0149622094, 0.00690825842, 0.00627062516, 0.00860634, -0.0068196035, -0.0212498847, -0.00351209566, 0.022750197, -0.00839493144, 0.00762431649, 0.0152213546, 0.00333819585, 0.0162852127, -0.0186175164, -0.0110136596, -0.00261531794, 0.0154668605, 0.0139597282, 0.0116410628, -0.0144711984, -0.0147849005, -0.00710602663, -0.00287957746, -0.00816988479, -0.024727881, -0.0190130547, 0.0180583093, 0.00445661088, 0.0127731171, -0.0220545977, 0.00230673095, -0.00924056303, 0.00133664231, 0.00761749689, -0.0057284669, -0.00829945691, 0.0038462563, -0.00351891527, 0.0112250671, -0.0101407506, -0.00628085481, 0.0108363498, 0.00299210101, 0.000825598254, -1.57170543e-05, -0.00253348262, -0.00809487, 0.0041599581, -0.00167506502, 0.00583076105, -0.00936331507, -0.00825172, -0.00836083386, 0.00115933258, -0.00513516134, -0.0176491328, 0.0163806882, 0.0125617096, -0.0129436068, -0.000825172, -0.0070105521, 0.0160124283, 0.000433257926, 0.00682301307, -0.00562617276, -0.00359393097, -0.0195586216, 0.0167898629, 0.0174445454, -0.00194870168, 0.00706510898, -0.00731061492, 0.0133459643, -0.0131481951, 0.0175945759, 0.00741972867, 0.0192858391, 0.016367048, 0.000638059166, -0.0437545739, 0.0118661094, 0.00847676676, 0.0187266301, -0.0156168919, -0.0222728252, 0.0126299057, -0.0196404569, -0.00451116776, 0.00654681912, -7.76795423e-05, -0.00367576629, 0.000219079753, -0.0268555973, 0.0149622094, 0.0109318243, 0.0218500085, 0.00470211636, -0.0138096968, 0.0211544093, 0.0123503013, 0.02045881, 0.0265282579, 0.0113887377, 0.00861997902, 0.0151940761, -0.00584781, -0.000138736301, 0.00571482768, -0.00235446799, 0.00537384767, 0.0144030023, -0.00957472343, 0.00575574534, -0.0143484455, 0.00904279388, 0.00731061492, -0.0085040452, 0.00421110494, -0.00369622512, 0.00398946786, -0.00245164731, -0.00836083386, 0.00424520299, -0.00528178271, 0.00252495822, -0.0204315316, 0.0179082789, 0.00307052652, 0.0155350566, 0.0147030652, -0.00861315895, 0.0364439599, 0.00322396751, -0.00138949417, 0.00864043739, 0.00930875819, -0.00772661064, -0.0138983512, -0.00935649592, 0.00396218942, -0.0120706977, -0.0151667977, 0.0097452132, -0.00678550545, -0.0219591223, -0.0170626473, 0.0301972032, 0.0345617495, -0.0281786, -0.0038496661, 0.00709920703, 0.02442782, 0.0148940142, 0.0178400818, 0.00651272107, 0.0113341808, -0.017417267, 0.00046884772, -0.0181401446, -0.0336342826, -0.0153850252, 0.00830627698, -0.0312065054, 0.01822198, 0.0180583093, 0.0182492584, 0.0150849624, -0.00033778348, 0.0140756611, -0.0056705, -0.00126333151, -0.00246869633, -0.0059637432, -0.010045276, 0.0301426463, -0.0222319067, 0.00711966585, -0.000376996206, -0.0177855249, -0.0298425835, -0.00143978873, 0.0143075278, 0.0117501765, -0.00267328462, -0.0055852551, 0.00538748689, -0.00127611833, -0.0135232732, -0.00638655853, 0.000569010677, -0.0115251299, -0.0070787482, 0.0145939514, -0.00513516134, -0.0107749738, 0.00807441, -0.00500558876, 0.00717422273, 0.02355491, -0.00384284649, -0.0223546606, 0.0295698009, 0.000716058363, -0.00612059422, 0.0273602493, 0.00414631888, -0.00565004162, 0.0239640865, 0.000638059166, -0.00372009375, -0.00347629283, -0.0301426463, -0.00944515, 0.0057523353, 0.00771979103, 0.00400310708, -0.0131550152, -0.0118592903, 0.0115114907, 0.00155060727, 0.000215776512, 8.93474571e-05, -0.0090086963, -0.0162852127, 0.000750156352, -0.0179082789, -0.0140620219, -0.00401333673, 0.0262145549, -0.00498513, 0.0161624607, 0.0210316572, 2.32559123e-05, -0.00964973867, 0.0139801865, -0.0296516363, -0.0154941389, 0.0168171413, 0.0117910942, 0.0139529081, 0.017976474, 3.83069892e-05, 0.0024328935, 0.0163261313, 0.00849040598, 0.013018623, 0.0120775178, 0.0104544517, 0.00641042739, 0.00716058351, -0.0165579971, 0.00410199165, 0.00472598523, -0.00319668907, 0.0141984141, -0.00520335743, 0.0130731799, -0.0241823141, -0.027210217, 0.0111432318, -0.0291879028, 0.00725605804, 0.0327068195, 0.0233639609, -0.0198177677, -0.0042520226, 0.00702419132, 0.0224501342, 0.000876319, -0.0229820628, -0.0115114907, 0.00766523415, 0.00453162659, 0.010788613, 0.0118661094, 0.00548296096, 0.0117979143, 0.0149485702, 0.0135028148, -0.00104680914, -0.000562617264, -0.012582168, -0.0310973916, -0.000978613, -0.0130936382, -0.0113205416, 0.00201689778, 0.00855178293, 0.00910417084, 0.00509424368, -0.00425884221, -0.00531588076, 0.00776070869, -0.00793119892, -0.00734471297, -0.0181674231, 0.00146706717, 0.0144848377, 0.00469188718, -0.0231457334, 0.0102362251, 0.0100248167, -0.0212089662, 0.00923374295, 0.00759703806, -0.00533293, 0.00949970726, -0.0191767253, 0.010972742, 0.0156168919, 0.00739927, 0.0235003531, 0.00443956163, -0.0178128034, 0.016612554, 0.00997708, 0.00441228319, -0.0132300304, -0.013509634, -0.00498513, 0.0192858391, 0.00387012493, -0.0307427719, 0.00300574023, -0.0214817505, -0.00637973892, 0.0185902379, 0.0214408338, 0.0187539086, -0.016176099, 0.00915190764, -0.000708812498, -0.00703783054, 0.0271556601, 0.0115592275, 0.012582168, -0.00331773702, 0.00142870692, 0.0226410832, 0.00652636029, 0.00821080245, 0.0121593531, -0.0149076534, 0.00662183482, -0.0102021266, -0.00131447858, 0.00984750688, -0.00565686077, 0.00682301307, -0.00735153258, -0.0114773922, -0.0115865059, -0.0157123655, -0.0235821884, 0.00823808089, 0.0176491328, 0.0129504269, -0.02442782, 0.00383943669, 0.0153304683, -0.0100998329, -0.00671048975, 0.0155759742, 0.00864725746, 0.00844266918, 0.0326522626, 0.0211271308, 0.0366076306, 0.00722877961, 0.00699009327, -0.0238413326, -0.0217545349, 0.00223342, -0.000526388118, 5.43969909e-05, -0.0196950138, 0.00642065657, -0.0119888624, -0.0333342217, 0.00946561, -0.0119274864, -0.00530224154, 0.00184470275, -0.00142955931, 0.00714694429, -0.00134857662, -0.00151395192, -0.0221637115, -0.0136051085, -0.00283525, 0.00216863398, 0.00512493216, -0.0125071527, -0.0111636911, -0.0138915321, -0.0161488205, 0.0102498643, -0.0145939514, 0.000124564322, 0.0243732631, -0.00927466061, -0.00571141765, -0.00457254425, -0.0146485083, -0.0210589357, -0.00586144906, -0.00473621441, 0.0356256068, 0.0259417705, -0.0201451089, -0.00980658922, -0.00198961934, -0.00977249164, 0.0205270071, -0.00526814349, -0.00160090195, -0.0152622722, 0.0349436477, -0.000620157691, 0.0181810632, -0.00718104234, 0.0156987272, -0.000562191068, 0.00858588051, -0.00238174642, 0.00324442633, 0.00103316992, 0.0115251299, -0.00625016633, -0.0100043584, -0.0118797487, -0.0289151184, 0.0108227106, 0.00950652733, 0.0137278615, 0.00950652733, -0.0136596654, -0.0019742751, 0.0174445454, -0.00193676737, -0.00256758067, 0.0105567463, 0.00447365968, 0.0405630022, 0.0163943265, -0.0258599352, 0.00538066728, -0.00176798215, -0.0139119904, -0.0137142222, -0.0068946192, 0.00198961934, 0.0147712613, -0.00870863348, -0.00836083386, -0.00168699934, -0.00585462945, 0.0294061303, 0.0192585606, -0.0105021894, 0.00149178819, 0.0220273193, -0.0219182055, 0.0067752758, -0.00574210612, 0.00875637, -0.0225456096, -0.00666275248, 0.0247142427, -0.017417267, -0.00891322177, 0.0240732, 0.0231730118, 0.00155657448, -0.00744700711, -0.00651272107, 0.0132095721, -0.00714012468, -0.026596453, -1.65561851e-05, 0.00884502567, 0.0118251927, 0.0100043584, -0.00882456638, 0.000794483814, -0.00678209541, 0.00899505708, -0.00857906137, -0.00175434293, -0.00140142848, 0.0243187062, -0.00161965576, -0.0155077782, 0.00549319061, 0.0231320951, -0.0182356201, -0.0108840866, 0.0296789147, -0.0175263807, 0.029324295, 0.0029818716, -0.0175945759, 0.0232275687, -0.00896095857, -0.0111773303, 0.0111500518, 0.0199677981, -0.00384284649, 0.0193813127, -0.00745382672, -0.021263523, 0.00556479627, -0.0215226691, 0.0183720123, -0.00390081317, 0.041217681, 0.00351209566, -0.00569777843, 0.0046543791, -0.00304154307, 0.0134618971, 0.028642334, -0.00887230411, 0.00716058351, 0.0148394573, -0.00940423273, -0.00287787267, -0.00270056282, 0.0166671108, 0.039608255, -0.0205815621, 0.000699009339, 0.0216863379, -0.0087222727, -0.0245914906, -0.0284786634, -0.0303881522, 0.0138028776, -0.00182083412, -0.00514880056, -0.0066763917, 0.010727236, 0.0185493212, -0.00785618275, -0.0345617495, 0.0194085911, 0.0277285073, 0.00292901974, 0.00659455638, -0.00594669394, 0.0125003327, 0.0116274236, -0.0171035659, -0.013325505, -0.0140211042, -0.00073097623, 0.00778798712, 0.00160090195, -0.00237492681, -0.00488965539, -0.0134687163, 0.00497490074, -0.00126077421, -0.0167216677, 0.0238413326, -0.0147439828, 0.00761749689, 0.0339889042, 0.01512588, -0.00672412897, -0.025164336, 0.0234457962, 0.0259963274, -0.0270738248, 0.0110477572, -0.0135641908, -0.0165307187, -0.0180310309, -0.00517607899, -0.0186993517, -0.00554774748, -0.0135300932, -3.53234136e-05, 0.00246187672, -0.00612059422, 0.00406789361, 0.00999071915, -0.0149212917, -0.011034118, 0.0153986644, -0.00625016633, 0.0296516363, 0.00309439492, 0.00602511968, -0.020090552, -0.0248915516, -0.012711741, -0.0208816249, 0.0131277367, -0.0183174554, -0.0018088998, 0.00338252331, -0.00193165266, -0.00114143116, 0.00314213219, -0.00134260941, 0.0281240437, -0.00162562297, -0.00197257032, -0.0070787482, -0.0119820433, 0.0152349938, -0.0164352451, -0.0224910527, -0.0192585606, -0.0269783512, 0.00990888383, 0.0134823555, 0.0135300932, -0.0234457962, 0.0213862769, -0.00596033316, -0.00286423345, 0.00441228319, -0.0224501342, -0.000555797655, -0.0114296554, -0.00768569298, 0.00445320085, 0.0126299057, -0.0107954321, 0.00518630818, 0.0186038781, 0.0115251299, -0.000761238218, -0.0275239199, 0.00735153258, 0.0157805625, -0.0193403959, 0.017540019, 0.00115933258, -0.0177855249, -0.00583417062, -0.0171854012, -0.00299210101, 0.0090768924, 0.0117910942, 0.00351209566, 0.0213726368, -0.0059876116, 0.00941787194, 0.0172535963, 0.0142393317, -0.0115592275, 0.0049646711, 0.0115183098, -0.00680596428, 0.015807841, -0.000822188449, 0.0352709889, 0.00712648546, 0.0111091342, 0.0140483826, 0.00488283625, 0.01065904, 0.0116069652, 0.00112097233, -0.0161488205, -0.00163159007, -0.0268146805, -0.00681278389, 0.0229002275, -0.00155231217, -0.000157809889, -0.00393150141, -0.0290515106, -0.00847676676, 0.00237663183, 0.015807841, -0.0062058391, 0.0166261923, -0.0105431071, -0.0234185178, -0.0221227929, -0.00696281483, -0.0191221684, 0.0103248795, -0.0207588729, 0.00245846692, -0.00123775797, 0.0241550356, 0.00207997905, 0.0110000204, 0.00679914467, 0.00618879, -0.00478054211, -0.00217545358, 0.00288980687, -0.0121320747, 0.0176764112, 0.00280626677, -0.0424724892, -0.0132095721, 0.0192040037, 0.0176900513, 0.012711741, 0.00956790335, 0.00166142592, -0.00682642311, 0.0111364126, 0.0178400818, 0.0185493212, -0.0127526587, -6.2228879e-05, 0.00717422273, -0.0095269857, -0.0115183098, 0.0219591223, -0.0175127406, -0.0230229814, -0.00326829497, -0.0022726329, 0.0014926407, 0.00459300308, -0.00108261209, 0.00427589146, 0.00742654828, 0.0116274236, -0.00144831324, 0.00201519276, -0.00536702806, -0.0146348691, 0.0071537639, 0.0155759742, -0.00652295072, 0.0104817301, -0.0156032527, -0.0184402075, -0.0152349938, 0.00398264825, -0.0115387691, 0.016176099, -0.00639678817, 0.0129095092, -0.00778798712, -0.0275648367, 0.0108363498, 0.0112318872, -0.017976474, 0.00994980149, 0.0201178305, -0.0247551594, 0.00657068798, -0.0151940761, -0.0160669852, -0.0372895896, 0.0102771427, 0.00630131364, -0.01909489, 0.0110682165, 0.0212498847, -0.00343708019, -0.0546932183, -0.0113273608, 0.0217136163, 0.00931557827, -0.000121580742, -0.00446002046, 0.00982704852, 0.0185629595, -0.0088382056, -0.0105294678, -0.0258462969, -0.00379169942, 0.0168853384, 0.00987478532, -0.0117365373, -0.0128413131, 0.0106794992, -0.00104254682, 0.00806759112, 0.00347629283, 0.00253689243, -0.00777434791, -0.0207452327, -0.00945197, -0.0109181851, 0.011716079, 0.0196813755, 0.0400174335, 0.00121133204, 0.0351345949, 0.00429976, -0.0165716354, -0.00393150141, 0.0228320323, -0.00326999975, -0.0152622722, -0.0119684041, 0.00692530721, 0.0222455468, 0.0103657972, 0.00360757019, 0.0177718867, -0.00443274202, 0.00257269526, 0.00851768441, -0.0193403959, 0.00872909278, -0.00852450449, 0.00812214799, 0.0290242322, 0.00424520299, 0.000331816322, -0.00581712183, -0.00635587052, 0.0125889881, -0.0162033774, -0.00440887362, 0.0115796868, 0.00524768466, -0.021877287, -0.027401166, -0.00210725749, 0.00363825844, 0.0170353688, -0.00554092787, 0.00746064587, -0.00083582761, -0.000302406785, -0.00723559922, 0.000633370655, -0.00119002082, 0.0262691118, -0.0168307815, 0.000683665217, -0.000799172267, 0.00217204378, 0.0106249424, 0.00189755461, 0.0134891756, 0.000718615716, 0.0124048581, -0.00292220013, -0.0285877772, -0.00681278389, -0.0167898629, -0.0149076534, 0.0110000204, 0.00318816467, 0.00866089668, -0.0354892164, -0.0286968909, -0.00352573488, -0.00421792455, 0.00722196, -0.0203087796, 0.0232139304, -0.0121457139, -0.0180310309, -0.0125889881, -0.00493057305, 0.00146962458, 0.00625016633, -0.00085415534, 0.0140756611, 0.036580354, -0.00376442098, -0.0204997286, 0.00893368, 0.0018088998, -0.00832673535, 0.0064649838, 0.0241823141, -0.00946561, 0.00660478603, 0.00609672535, 0.00814260636, -0.00339786732, 0.0028147914, 0.00851086527, 0.0289969537, -0.00637632934, -0.0136937639, -0.011034118, 0.0119411256, 0.000270439894, -0.00676504662, -0.0111705102, 0.0182356201, -0.0115865059, 0.0176218543, 0.0101612089, -0.0283149928, 0.00854496285, -0.0186720733, 0.0118592903, 0.0206224807, -0.00249767979, -0.00956108421, 0.00213965052, -0.0277830642, -0.00968383718, 0.0018037851, 0.00476690289, 0.00680937385, -0.0125548895, -0.0094110528, 0.0254371203, 0.00550001, -0.00292220013, -0.00243971311, -0.0321885273, -0.00915190764, 0.0196404569, 0.00167165522, 0.0142938886, -0.0185493212, -0.006106955, 0.00893368, 0.0147167044, -0.008367653, 0.0234048795, 0.00472257519, 0.012582168, 0.0185356811, 0.011654702, -0.0120229609, 0.00657750759, 0.00158044312, 0.00303301867, 0.0192040037, -0.0194767881, 0.0104476325, -0.0122548277, 0.0106863184, 0.00604557851, -0.0141029395, 0.0354892164, -0.00040960242, 0.00138864177, -0.0110409381, 0.0147030652, -0.0045623146, 0.00849040598, 0.000564322167, 0.000914679316, 0.0228865892, -0.00789028127, 0.00509083411, -0.00688098, -0.0197768491, -0.00608308613, -0.00218227319, 0.0195177048, -0.00345071941, -0.00162391807, -0.013332325, -0.0117501765, 0.00830627698, 0.0303881522, -0.0102362251, -0.010352158, -0.00964291953, -0.00869499426, 0.0232412089, 0.00368940551, -0.000751435058, -0.0328977667, -0.0102498643, 0.00153696816, 0.00301426463, 0.00147303438, -0.00260679331, -0.00563299237, 0.00848358683, 0.00681619346, -0.00169381895, -0.00103998953, -0.0132436696, -0.0118729295, -0.024359623, -0.00894731935, -0.00616151188, 0.0206224807, -0.0223682988, -0.00152077153, 0.00311826356, -0.0177582465, 0.0113273608, -0.0280967653, 0.0247688, -0.0131140975, -0.00327681936, -0.00938377436, 0.00888594333, -0.0293515734, -0.00106726796, -0.00297334697, -0.0154805, -0.00545909256, -0.0163124911, 0.0121457139, -0.0139188105, 0.0040849424, 0.00909053162, -0.0091928253, -0.0111636911, -0.0122616468, 0.00443274202, -0.00504991645, -0.0324613117, -0.000306882139, -0.000106875974, 0.00732425414, 0.00245335232, -0.0150440447, -0.0238004159, -0.000753139961, 0.00233571418, 0.00311655877, -0.0239095297, -0.00466119871, 0.00404061517, -0.00201519276, -0.0206906758, -0.00246187672, -0.0150440447, 0.0203769747, 0.0288605615, -0.00394855, 0.0132573089, 0.0255871527, -0.0134959947, 0.0316429585, -0.00959518179, -0.0023646974, -0.00245335232, -0.022750197, -0.00281649618, 0.00382920727, -0.0048726066, 0.0109045459, 0.00176286744, 0.0140347434, 0.000963269, -0.0118592903, 0.00698327366, 0.0162715744, -0.00894731935, 1.78881401e-05, -0.0208134297, 0.0240050033, 0.0121184355, 0.00389399356, -0.0053261104, -0.0172263179, -0.0102839619, 0.010045276, 0.000402782811, -0.0208407082, -0.00283184019, 0.0090086963, -0.0120093217, -0.00293413433, 0.00367235648, 0.00156765629, 0.0270465463, 0.00561253354, -0.0349436477, 0.00426907185, 0.0122684669, -0.0363075696, -0.0185084045, 0.00126588892, 0.0258462969, 0.0148394573, 0.0044191028, 0.00253859744, -0.0137483208, -0.0023493534, 0.0339889042, -0.0142393317, -0.0102430442, -0.0171854012, 0.00388717395, 0.0165716354, 0.00269033364, 0.0076311361, -0.0066081956, -0.0156032527, 0.00918600615, 0.00422133459, 0.00579325296, -0.00254200725, -0.00185493217, 0.00597738242, 0.00325977034, 0.0100043584, 0.0104203541, -0.011286444, -0.010849989, -0.00982022844, 0.0164761618, -0.0122343684, 0.00395878, -0.0068196035, -0.00574551569, 0.000833696511, -0.0212498847, -0.053383857, -0.00453162659, 0.00196575071, -0.0136937639, 0.0211134925, 0.00995662063, 0.00630472321, 0.0146212298, 0.00990888383, -0.000519142312, -0.00690484839, 0.00791756, 0.00347458781, -0.00402015634, -0.0148530966, 0.0011823487, -0.0217954516, -0.0283968281, 0.00108175958, 0.00474644406, 0.00441569323, 0.0114160161, -0.00183617824, 0.0317520723, 0.0126571842, 0.00414290885, 0.0209361818, -0.0272647738, 0.00386330532, 0.00988842454, 0.0132300304, 0.0180310309, -0.0237322189, -0.00935649592, 0.0124184974, -0.022504691, -0.017608216, -0.0116206044, 0.00754930079, -0.00932921749, -0.0211953279, -0.00512834173, 0.00348822703, -0.00369281531, 0.00866089668, -0.00360757019, 0.0034592438, -0.0120025016, -0.0065093115, -0.000604813569, -0.0232684873, -0.00918600615, -0.0101271113, 0.000646157423, 0.00756975962, -0.00506696524, 0.00694917561, 0.0105226478, 0.000348865346, -0.0161897391, -0.0153850252, -0.00280115218, 0.0189857762, -0.0232548472, 0.0208407082, 0.0165307187, -0.0166671108, -0.00996344071, -0.0191221684, -0.0120570585, -0.00656045834, -0.00997708, 0.0109863812, -0.0163806882, -0.00450093811, 0.0011789389, 0.0118251927, 0.0247551594, 0.00290856091, -0.0171308443, -0.000403635262, -0.0036825859, -0.00918600615, -0.00694576604, -0.00613764301, -0.0159033146, 0.0292970166, 0.020336058, -0.00720150117, -0.00993616227, -0.0123844, -0.000759533315, -0.00699009327, -0.00962246, -0.00934967585, -0.0169126168, -0.00288639707, -0.0151804369, 0.0153168291, -0.00043688083, 0.00180037529, -0.00280797179, -0.0123844, 0.0381079428, 0.00617174106, 0.00544886291, -0.0109932, 0.00991570298, 0.00816306565, -0.000924056279, 0.0157669224, -0.0263918657, -0.0243869014, -0.0189584978, 0.00621265871, 0.0136323869, 0.0163806882, -0.0132641289, 0.00573187647, 0.0203496963, 0.00889276247, -0.0056773196, 0.0311519485, -0.00942469202, 0.00827899855, -0.00451457733, -0.013509634, -0.0159442332, 0.0185902379, -0.0313701741, -0.00039020917, 0.00348993205, 0.0203906149, 0.0254507605, 0.00413608924, 0.0284786634, -0.000125949548, 0.0199814383, 0.00544545334, 0.000580518739, 0.00767205376, -0.0150304055, 0.010849989, -0.020895265, 0.0137687791, -0.00237492681, 0.00366553687, 0.0130595407, 0.01444392, -0.0394718647, -0.00345412921, 0.012704921, 0.0176218543, -0.0161897391, -0.0188903, 0.00013926909, -0.0113546392, -0.00214476534, -0.00825853925, -0.0101543898, 0.0336888395, -0.0102771427, -0.0158623978, -0.0116001451, 0.00743336789, -0.00795165729, 0.0175263807, 0.0179901142, -0.0239777248, 0.00171427778, 0.00845630839, 0.0162852127, -0.0181947015, -0.0197086539, -0.0132163912]
28 Jul, 2022
array::rbegin() and array::rend() in C++ STL 28 Jul, 2022 array::rbegin() is a built-in function in C++ STL which returns a reverse iterator pointing to the last element in the container. Syntax: array_name.rbegin() Parameters: The function does not accept any parameter. Return value: The function returns a reverse iterator pointing to the last element in the container. Program to demonstrate the array::rbegin() method: Program 1: CPP // CPP program to illustrate // the array::rbegin() function #include <bits/stdc++.h> using namespace std; int main() { // array initialisation array<int, 5> arr = { 1, 5, 2, 4, 7 }; // prints the last element cout << "The last element is " << *(arr.rbegin()) << endl; // prints all the elements cout << "The array elements in reverse order are:\n"; for (auto it = arr.rbegin(); it != arr.rend(); it++) cout << *it << " "; return 0; } Output: The last element is 7 The array elements in reverse order are: 7 4 2 5 1 Time Complexity: O(N) where N is the size of the array.Auxiliary Space: O(1) array::rend() is a built-in function in C++ STL which returns a reverse iterator pointing to the theoretical element right before the first element in the array container. Syntax: array_name.rend() Parameters: The function does not take any parameter. Return value: The function returns a reverse iterator pointing to the theoretical element right before the first element in the array container. Program to demonstrate the array::rend() method: Program 1: CPP // CPP program to illustrate // the array::rend() function #include <bits/stdc++.h> using namespace std; int main() { array<int, 5> arr = { 1, 5, 2, 4, 7 }; // prints all the elements cout << "The array elements in reverse order are:\n"; for (auto it = arr.rbegin(); it != arr.rend(); it++) cout << *it << " "; return 0; } Output: The array elements in reverse order are: 7 4 2 5 1 Time Complexity: O(N) where N is the size of the array.Auxiliary Space: O(1) Learn C++ Online – Master everything from basics to advanced concepts. Apply your knowledge with practical exercises and boost your skills. Take the Three 90 Challenge: finish 90% in 90 days for a 90% refund. Start now and level up your C++ programming!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum/Algorithm for Dynamic Time out timer Calculation/Difference between Round trip time (RTT) and Time to live (TTL)/Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms/Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm/Round Robin Scheduling Algorithm with Different Arrival Time/Selfish Round Robin CPU Scheduling/Find the order of execution of given N processes in Round Robin Scheduling/Calculate server loads using Round Robin Scheduling/set::lower_bound() Function in C++ STL/Implementation of lower_bound() and upper_bound() in List of Pairs in C++/Difference between std::set::lower_bound and std::lower_bound in C++/Difference between std::set vs std::vector in C++ STL/std::minmax() and std::minmax_element() in C++ STL/std::rotate vs std::rotate_copy in C++ STL/std::bitset::to_ullong and std::bitset::to_ulong in C++ STL/std::upper_bound and std::lower_bound for Vector in C++ STL/std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++/std::string::append vs std::string::push_back() vs Operator += in C++/Vector push_back() in C++ STL/vector :: cbegin() and vector :: cend() in C++ STL/unordered_multiset cend() function in C++ STL/unordered_multiset bucket() function in C++ STL/unordered_multiset emplace_hint() function in C++ STL/unordered_multiset end() function in C++ STL/unordered_multiset size() in C++ STL/unordered_multiset emplace() function in C++ STL/unordered_multiset find() function in C++STL/unordered_multiset erase() function in C++ STL/unordered_multiset clear() function in C++ STL/unordered_multiset swap() function in C++ STL/unordered_multiset bucket_size() function in C++ STL/unordered_multiset bucket_count() function in C++ STL/unordered_set bucket_count() function in C++ STL/unordered_set cbegin() function in C++ STL/array::cbegin() and array::cend() in C++ STL/array::rbegin() and array::rend() in C++ STL
https://www.geeksforgeeks.org/arrayrbegin-and-arrayrend-in-c-stl/?ref=next_article
PHP
array::rbegin() and array::rend() in C++ STL
unordered_multiset clear() function in C++ STL, What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, jQWidgets jqxTreeMap width Property, Round Robin Scheduling Algorithm with Different Arrival Time, Difference between Flow and TypeScript, unordered_multiset emplace() function in C++ STL, jQWidgets jqxTree destroy() Method, unordered_set bucket_count() function in C++ STL, jQWidgets jqxTree collapseAll() Method, Find the order of execution of given N processes in Round Robin Scheduling, jQWidgets jqxScrollView buttonsOffset Property, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Vector push_back() in C++ STL, jQWidgets jqxListBox enableHover Property, Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm, std::rotate vs std::rotate_copy in C++ STL, Selfish Round Robin CPU Scheduling, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxSlider buttonsPosition Property, std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++, std::upper_bound and std::lower_bound for Vector in C++ STL, Difference between Round trip time (RTT) and Time to live (TTL), jQWidgets jqxSlider rtl Property, Difference between std::set::lower_bound and std::lower_bound in C++, jQWidgets jqxTooltip opacity Property, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, unordered_multiset erase() function in C++ STL, jQWidgets jqxToolBar height Property, PHP, std::minmax() and std::minmax_element() in C++ STL, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, Node.js date-and-time Date.transform() Method, unordered_multiset size() in C++ STL, TypeScript Optional Parameters, jQWidgets jqxToolBar theme Property, Difference between std::set vs std::vector in C++ STL, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, Steps to Diagnose and Resolve a Slow Network, How to use Optional Chaining with Arrays and Functions in TypeScript ?, Calculate server loads using Round Robin Scheduling, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, jQWidgets jqxScrollView showButtons Property, Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms, jQWidgets jqxScrollView disabled Property, jQWidgets jqxSplitter destroy() Method, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, set::lower_bound() Function in C++ STL, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, jQWidgets jqxTree collapseItem() Method, std::string::append vs std::string::push_back() vs Operator += in C++, unordered_multiset swap() function in C++ STL, unordered_multiset cend() function in C++ STL, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), jQWidgets jqxSortable opacity Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, vector :: cbegin() and vector :: cend() in C++ STL, jQWidgets jqxSlider height Property, jQWidgets jqxSwitchButton onLabel Property, unordered_multiset bucket_size() function in C++ STL, unordered_set cbegin() function in C++ STL, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, jQWidgets jqxToolBar tools Property, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTree width Property, Implementation of lower_bound() and upper_bound() in List of Pairs in C++, jQWidgets jqxTree clear() Method, TLS Handshake?, Algorithm for Dynamic Time out timer Calculation, Adhoc TCP, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, jQWidgets jqxTabs position Property, Differences between Wireless Adhoc Network and Wireless Sensor Network, jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, std::bitset::to_ullong and std::bitset::to_ulong in C++ STL, unordered_multiset emplace_hint() function in C++ STL, unordered_multiset bucket_count() function in C++ STL, unordered_multiset find() function in C++STL, unordered_multiset bucket() function in C++ STL, Impact of Three-way Handshake and Slow Start Algorithm, array::rbegin() and array::rend() in C++ STL, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, array::cbegin() and array::cend() in C++ STL, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, unordered_multiset end() function in C++ STL, How to Sort an Array Having Optional Properties in TypeScript ?
GeeksforGeeks
[-0.0188149493, 0.00170544372, -0.0123218941, 0.042184528, 0.0221224762, -0.0754224658, -0.00680821948, 0.00657777674, -0.00605250383, -0.0161987506, -0.0470102616, 0.0134334406, 0.0207127109, -0.0190047249, 0.0216344818, 0.000754444918, 0.0213769283, 0.0283850897, -0.0155345332, -0.0250640064, -0.0119965635, -0.012694669, 0.000446058664, -0.00351085886, -0.011705122, 0.00367352413, -0.0520257764, -0.00882459059, -0.0340512618, -0.0243455693, 0.0596981533, -0.000950575166, 0.0411543138, -0.0260535534, -0.0237355735, 0.0479862541, 0.0402867645, -0.00999713596, -0.0261891093, -0.00894659, 0.00805193093, 0.0252944492, 0.0137045486, -0.00522562163, -0.0239117946, 0.0321263894, -0.00975313876, -0.0400156565, 0.00735382596, 0.00903470069, 0.00847214926, 0.0475795902, 0.0443805084, 0.0201704931, 0.0356779173, 0.0220682546, 0.0174594056, 0.0287646428, -0.0287104193, -0.0266635492, 0.000328084, 0.000808243058, -0.00677094189, -0.0303912945, -0.00557128573, 0.0204687137, -0.0417778641, 0.0467662662, 0.00814004149, 0.0172967408, -0.0341868177, 0.00654727733, 0.00946847443, 0.0154803116, -0.0285206437, -0.00450379448, 0.0156294219, 0.0159276407, -0.0228273589, 0.0688074082, -0.0274226535, 0.0549266413, -0.0285206437, 0.000647272216, -0.00832304, 0.000782403, -0.0177711807, -0.0347561464, 0.0510768965, 0.000223029332, -0.0182185099, 0.016280083, 0.00090652, -0.0458173864, 0.00912958849, 0.036789462, 0.0211735964, 0.0186387282, -0.038741447, 0.0402596556, 0.0216209255, 0.0221766979, 0.00893303473, -0.00127421133, 0.00446651736, 0.0327770524, 0.0105596874, -0.00929225329, -0.0417507514, 0.00320247258, -0.00145890412, 0.0173238516, -0.0116576776, 0.0560110733, -0.03453926, 0.00519512221, 0.00675060879, -0.0269075464, -0.00837048329, 0.0452480577, 0.00249758968, 0.042455636, 0.0408018716, 0.0502635688, -0.0374672338, 0.0166189689, 0.0144094322, 0.00641511148, -0.0142467665, 0.0230578016, -0.00111662934, -0.0459529385, -0.00260433881, -0.0339970402, -0.00683194119, 0.0395818837, 0.028873086, 0.019899385, -0.0144500984, 0.00198078854, -0.0286019761, -0.0614874735, 0.0253622271, 0.0196282752, -0.0617043599, -0.0265957713, -0.00767237879, 0.0567159578, -0.0115153454, -0.015561644, -0.0152634243, 0.0312859528, 0.0400156565, -0.0350001454, 0.0053001768, -0.0251453388, 0.00246709, -0.00164952746, 0.0345934816, -0.0156565327, 0.0290628616, 0.023071358, -0.00316688954, 0.0160089731, -0.0198587179, 0.0170798525, 0.0592101589, -0.0190318357, -0.0397174358, 0.0423743, -0.0133182192, 0.0140163237, -0.00239592395, 0.00334141566, -0.0123490049, -0.030987734, 0.041262757, 0.0190589484, 0.00872292556, -0.00498162396, 0.012728557, -0.0129793333, 0.00707593933, -0.000926005945, 0.0134198852, 0.00473423721, 0.0616501383, -0.0208076, 0.0452480577, -0.010647798, -0.00477490341, -0.00275514298, 0.0296864118, 0.0204144921, 0.0317197293, -0.00226036948, -0.0221631434, -0.00683533028, 0.0184082873, 0.050100904, -0.0159683079, -0.0253622271, 0.0165240802, -0.0222986974, 0.0472542606, -0.0225291401, -0.00692682946, -0.0146805411, -0.00256706122, -0.0305539593, 0.0172289629, -0.00153854233, -0.0101530235, 0.0309335124, -0.0103902444, 0.0039378549, -0.0513208918, 0.0133859962, -0.0324788317, -0.0330210514, -0.0260671098, -0.0500195697, 0.0531102121, -0.0460613817, -0.0206042677, -0.0179202911, -0.0101801353, 0.0496942401, 0.00449362816, -0.00984124932, -0.00892625656, 0.0335903801, -0.0197773855, -0.0276937615, 0.000962436199, -0.00667605363, -0.0334548242, 0.00854670443, -0.00828915089, 0.0174729619, -0.00023616117, 0.0281953141, -0.0485284738, 0.015358313, 0.0349730328, 0.0496942401, 0.00339902635, -0.00665910961, -0.0142332111, -0.0249962304, 0.014639874, -0.0161038619, 0.0372232348, 0.0288188644, -0.0158191975, -0.000132800938, 0.0102546895, -0.00293983589, -0.0157107543, 0.025796, 0.00498162396, 0.0389583334, 0.00452412805, 0.0003973438, 0.0104851322, 0.0293610822, 0.00893981196, 0.030987734, -0.002636533, -0.0497484617, 0.037331678, -0.0136367716, 0.0139349913, -0.0240744594, -0.0168900769, -0.0063575008, -0.0103631336, 0.0222580303, 0.0260128882, -0.029388193, 0.00596778188, -0.00944814086, 0.00514428923, -0.00813326333, 0.00354813621, -0.0158327539, -0.0271786563, -0.00184184534, -0.0036464131, 0.0177982915, -0.0262433309, -0.0273955427, 0.0163207483, 0.00656422134, 0.0268804356, 0.0255248919, -0.00704205083, -0.0429436304, -0.013446996, -0.0138265481, 0.0310148448, -0.0267855488, -0.00778082199, -0.0385516696, -0.000604064262, -0.0405849852, -0.0139621021, -0.00503584556, 0.0215124823, -0.0216615926, -0.00379213411, -0.0560652949, 0.0222986974, 0.0057881726, 0.0125048924, -0.00922447629, 0.0200620499, -0.0129183335, -0.0110205719, 0.00752326893, -0.00291950279, -0.0351356976, -0.00355830276, 0.00835015066, 0.013413107, -0.0382805616, 0.0210244861, 0.0249420088, -0.00494773546, -0.0368436836, -0.0200620499, 0.0058830604, -0.0490978025, -0.0152769797, -0.0253757816, -0.00747582456, -0.0422658585, -0.00133266917, 0.0147076519, 0.0038700779, 0.0111493487, -0.0306352917, 0.0231120232, 0.00702171773, 0.00595422648, -0.0313401744, -0.00127251691, -0.0209567081, 0.00553739676, 0.0397445485, 0.000769271166, -0.0202924926, -0.00731315929, -0.018123623, 0.0458173864, -0.0101598017, -0.0359219126, -0.0247657876, -0.00839081686, 0.0302557405, 0.0266771037, 0.0482031405, -0.0197367202, 0.048392918, 0.0176627375, -0.0598608181, -0.0209973752, -0.00616772473, 0.0388227776, 0.0244540125, 0.0224613622, 0.0124167819, 0.0315028392, 0.000608300325, 0.00252131163, -0.0235593542, -0.0024196459, -0.00789604336, 0.0101394681, 0.00639477838, -0.0101530235, 0.034810368, -0.0441907309, -0.00758426823, 0.0222851429, -0.0112577919, -0.0236949082, 0.0129657779, 0.00396496616, -0.0292255264, -0.0140298791, -0.0181507338, 0.0100581357, -0.0189640597, -0.0177576263, 0.00368369068, -0.0119558973, -0.0177034028, -0.0305539593, -0.0411814228, 0.0047647371, -0.00380907836, 0.0209024865, -0.0108579071, -0.00650999974, 0.021946257, 0.00814681873, -0.0599692613, 0.029144194, 0.0263924394, -0.013514773, 0.00319908373, -0.0113255698, -0.0111154597, 0.0352441408, -0.0031245288, -0.00195028877, 0.029794855, -0.0049070688, -0.0255926698, 0.0102953557, -0.000232984108, -0.039012555, 0.0203873813, 0.0128370011, 0.0043580737, -0.00254503381, -0.00611011405, -0.0126878908, 0.00547639746, -0.0427538566, 0.00705560623, 0.0363014676, 0.0296321902, 0.027680207, -0.040991649, 0.00712338323, -0.00891270116, -0.0249555632, 0.0144907646, 0.0318823941, 0.0508057848, 0.0243997909, 0.0101869125, 0.0142874327, 0.0174865164, -0.00174865162, 0.00128776673, 0.0117932325, 0.00353119196, 0.00450379448, -0.00745549146, 0.0038565225, 0.0128166676, 0.0464680456, -0.0168765225, 0.0221631434, -0.0323975, 0.0412085354, 0.0229222476, -0.0126540028, -0.0237355735, -0.00857381523, 0.00593050476, 0.0278699826, -0.00375146791, 0.0254842248, -0.0126743354, -0.00610333635, -0.000580765831, -0.0291170832, -0.00604233705, 0.00753004663, 0.0296864118, 0.0288459752, 0.0116576776, 0.000421701232, -0.0325059444, -0.0363014676, -0.0302828513, -0.00593728246, -0.0403138772, -0.0174729619, -0.0313130654, -0.0128370011, -0.0119830081, 0.0103902444, -0.0288459752, -0.0103224665, 0.0105325766, -0.0120372297, -0.00536456518, -0.0267584361, -0.0352441408, 0.0157378651, 0.0249555632, -0.036789462, 0.0286019761, 4.9482649e-05, 0.00540523138, 0.0435942933, 0.000891270116, -0.0111629041, 0.0395818837, -0.00138180761, -0.0213362612, -0.0643070042, 0.0301472973, -0.0529475473, -0.010715575, -0.025796, 0.0271651, 0.0134063298, 0.0110951271, 0.00166562456, -0.0265008844, -0.015561644, -0.0016944299, -0.0628972352, -0.0169714093, 0.0346205905, -0.0149380937, -0.00736738136, 0.0282224249, -0.000887881266, 0.00924481, 0.0114001241, 0.00146314024, 0.00380230066, -0.00803837553, -0.00827559549, 0.00255520036, -0.0178525131, 0.0191267245, -0.0118067879, -0.0139756575, -0.0147076519, 0.00975313876, -0.0107765738, 0.0108782398, -0.0237491298, 0.0497484617, 0.00709627243, 0.00753682433, -0.0108579071, 0.0107765738, 0.00552723045, 0.00186895614, -0.00715049403, 0.0121524511, -0.00126658636, 0.0147754289, -0.00173001294, 0.00253825588, -0.00208076, 0.026107775, -0.0233831331, -0.00180456787, -0.0147618735, -0.0161309727, -0.0183405094, 0.0335090458, 0.0242506806, -0.00206212117, -0.0243862346, -0.00171137415, 0.0283850897, 0.0327770524, -0.0147212073, 0.0155480886, -0.000892117328, -0.0109527949, 0.0169849657, 0.0119965635, 0.0256468914, 0.0208211541, 0.00740804756, 0.0219598114, -0.027815761, 0.0226646941, 0.00555434125, -0.0446245074, -0.0107087968, -0.0376570113, -0.00214345381, -0.0135622174, -0.00159276405, 0.00753682433, -0.00975313876, 0.00012422289, 0.00374469, 0.00282800361, 0.0287646428, 0.0148432059, -0.0156294219, -0.0043377406, 0.00500873476, -0.011637345, -0.0254842248, 0.0197231639, -0.0031584173, 0.0181371775, 0.00910247769, -0.025904445, -0.00708271703, -0.0149109829, 0.0374130122, 0.00797059853, 0.00725216, -0.0148025397, -0.0554417446, 0.0315028392, 0.0144500984, 0.000463850185, -0.00761815673, 0.0181913991, -0.0193707235, -0.0141789895, -0.0428351872, 0.0145314308, -0.0420218632, -0.0187471732, -0.0225562509, 0.0058152834, 0.0190047249, 0.0474440381, -0.0258095562, -0.0263653286, -0.00992935896, -0.00188590051, 0.00591356028, -0.00942780823, 0.00910925493, -0.0100784693, 0.00197909423, -0.0110341273, -0.00692344038, 0.0290628616, -0.0376841202, 0.0123286722, -0.025050452, 0.00694716256, 0.0168087445, 0.0434587374, -0.00898725633, -0.0053069545, 0.0154396454, 0.0144094322, 0.00180795672, 0.00458173826, -0.00988191552, 0.0164291915, -0.0187336169, -0.00127251691, -0.0170256309, -0.0160225295, 0.0221631434, 0.0190589484, -0.00168849935, 0.010376689, -0.00774015579, -0.0288459752, -0.0107426858, 0.00757071283, -0.0029144194, -0.0227189157, -0.0273684319, -0.00438179588, 0.00197401084, -0.00170629087, -0.0419676416, -0.0162665267, 0.00334311021, 0.0143009881, 0.0189233925, -0.01173901, -0.0132843303, 0.032180611, 0.00175373489, 0.00823492929, -0.0164698586, 0.00225189724, -0.00657777674, -0.0154125346, -0.0275582075, -0.00326516642, 0.0102750231, -0.00407679845, 0.0238440167, -0.0242777914, -0.0289544184, -0.0160360839, 0.00838403869, 0.000935325283, 0.0118135652, 0.0043851845, 0.011434013, -0.0225020293, -0.00908892229, -0.0113187917, 0.0213498175, -0.0492604673, 0.00261958851, -0.0362201333, -0.0250775628, 0.0316112824, -0.00263483846, -0.00344816479, 0.0189098381, 0.0158598647, -0.00126404467, -0.0159140863, -0.0195605, -0.00725216, 0.0336717106, 0.0251588952, 0.00328211067, 0.0133656627, 0.00600167084, -0.0400698781, 0.00243828469, 0.0139621021, 0.00361591345, -0.0111832377, 0.0331294946, 0.0105325766, -0.016280083, -0.0258908886, -0.010376689, -0.00776048889, -0.04443473, 0.0336988233, -0.000953964, -0.00141569623, -0.0120236743, 0.0058356165, 0.0109053506, -0.0245353449, -0.0111561269, 0.0110273501, -0.0124371154, 0.0275039859, -0.0151278703, -0.00780115509, -0.000706153689, -0.0202111602, 0.0164291915, -0.00667605363, -0.0245217904, 0.0237626843, -0.0146940965, 0.0170662981, 0.0103563555, -0.00381585606, 0.0385245569, -0.0174187385, 0.0283037573, 0.00062439742, 0.0182727315, 0.00694038486, 0.035054367, 0.0187471732, -0.00301439082, 0.0214311499, -0.0227731373, 0.011434013, 0.020102717, 0.00189098378, 0.0205229353, 0.00679127499, -0.0227731373, -0.0156836435, 0.00308047351, -0.0193029456, 0.0205907114, -0.00129115558, 0.00659811, 0.00256536691, 0.0386872217, -0.0193165, 3.98455768e-06, 0.0521613285, 0.00470712641, 0.00974636059, 0.0228002481, -0.0245624557, 0.0349459238, 0.0171747413, 0.0512395613, -0.016280083, -0.0276937615, -0.00417846395, 0.0217293687, 0.000829847064, 0.0058085057, -0.0177440699, -0.0148296505, -0.0167816337, -0.0495044626, -0.0249962304, 0.0463596024, -0.0133588854, -0.00672688661, -0.00642188918, 0.0170662981, -0.00725216, -0.00234339666, 0.00862803683, 0.0109392395, 0.0109527949, 0.0048664026, -0.00324483332, -0.0201162715, 0.0189098381, -0.00167663838, -0.00750971353, -0.000792145962, 0.0233153552, 0.0196689423, 0.00143094605, -0.00262636645, -0.0329668298, -0.00177576253, -0.00496129086, -0.0592643805, -0.00763171213, -0.0118745649, 0.0197773855, 0.0306081809, 0.0199671611, -0.0207398217, 0.0232746899, 0.000297584251, 0.0227460265, -0.0181642883, 0.0201433823, -0.00138858531, 0.0209567081, 0.0187471732, 0.0242235698, -0.0125862258, -0.0036531908, -0.0389041118, -0.0057610618, -0.0178118479, -0.0163478591, -0.0202111602, 0.00997002516, -0.0165376365, 0.0203060471, -0.00216548145, 0.00506295636, -0.0396089926, 0.0163749699, 0.0136299944, 0.000659980462, -0.043784067, -0.00484268088, -0.00951591786, 0.00256028352, 0.0120711187, 0.0150194271, 0.00164190261, 0.0146263186, 0.0135418838, -0.000345028297, -0.00268228259, -0.0201840494, 0.0254028924, -0.038768556, 0.00470712641, -0.00276530953, -0.0284664221, -0.0141518787, 0.021498926, 0.00158683362, 0.00227392488, 0.038497448, 0.00197401084, -0.0192758348, 0.0441365093, -0.0167138558, -0.031638395, -0.0116237896, -0.00504601235, 0.0026839769, -0.00907536689, -0.0216751471, -0.0222444758, -0.0467120446, 0.0600777082, 0.0123964492, -0.0305268485, -0.0277886502, 0.0432960726, 0.0250233412, 0.0186929498, 0.00392091088, -0.0121660065, -0.026107775, 0.0193165, 0.00885170139, 0.0234102439, -0.00173679064, 0.0354610272, -0.00694716256, 0.0158734191, 0.00827559549, 0.0177440699, 0.0187200624, 0.014436543, -0.0495044626, -0.015561644, -0.0144636538, 0.0150465379, -0.00128098903, -0.0137384376, -0.0357321389, 0.0363827981, 0.00835692789, -0.00655405503, 0.0242777914, -0.00203162152, -0.0140705463, 0.00150380656, -0.00933969766, -0.0140976571, -0.0047647371, -0.025565559, -0.0168765225, -0.0281953141, -0.0135757728, 0.0210244861, 0.0026297553, 0.00416829763, -0.0199942719, -0.0574750639, -0.0298761874, -0.0400427692, -0.0335090458, -0.00206042686, -0.0012038924, 0.0104173552, -0.0049138465, -0.0102072461, 0.0150058717, -0.0226104725, 0.00290594739, -0.027815761, 0.00241625705, 0.00883136876, 0.00605589245, -0.0138807697, -0.029388193, -0.00914314389, -0.00165037473, -0.0186387282, -0.0109053506, -0.00984802656, 0.0323432796, 0.01058002, 0.0159140863, 0.0315299518, -0.00902114436, 0.0432689637, -0.0302015189, -0.00467662653, -0.0049138465, -0.0146127632, -0.00518495543, 0.0261348877, -0.0144907646, 0.0133995516, 0.0327499397, -0.00419879751, 0.0248335637, -0.0121185631, -0.0360845774, 0.00461562723, 0.0189233925, 0.0188962817, 0.0594270453, -0.0329939388, 0.0128370011, 0.0358948037, 0.0119965635, -0.0226104725, 0.00901436713, -0.0236949082, -0.0053815092, -0.0283037573, -0.0345663689, -0.00390057755, -0.029144194, 0.00415474223, 0.0340512618, 0.00624566851, 0.00645238906, -0.0293068588, -0.00234847981, -0.0235186871, -0.0172154084, -0.0268397704, 0.0324788317, 0.00880425796, 0.0161174163, 0.00547639746, 0.0362743549, -0.0101733571, 0.0122202281, 0.00879748, -0.0178254023, -0.00341427629, -0.0137384376, 0.00542217586, 0.0107969074, 0.0150329825, -0.0174322948, 0.0213227067, 0.0162665267, -0.00856703799, -0.0129454443, 0.00667605363, 0.0562279634, 0.00116407336, 0.00765882293, 0.0154803116, -0.0173916277, 0.00555773, -0.0234102439, -0.0048392918, -0.0151278703, -0.00142925163, 0.0205364898, -0.0053272876, -0.000507905381, 0.00240439596, -0.0151549811, -0.00151820923, 0.00415135315, 0.00358880241, 0.000202060764, -0.0147754289, 0.00803837553, 0.00409035385, -0.0249284524, 0.0102750231, -0.0148432059, -0.00887881313, 0.0129047781, 0.0137181049, 0.0161038619, -0.00109799055, 0.00594406, 0.0216344818, -0.0104241325, 0.0182049554, -0.0156294219, 0.00107087975, 0.00210617646, -0.0217564795, -0.010546132, 0.0053679538, -0.00414457545, -0.0130674439, 0.0335361548, 0.0126404474, 0.0237762406, 0.0194249451, 0.0029211971, 0.0178389587, -0.00385313365, -0.0162665267, -0.0392565504, -0.0331294946, 0.0318552814, -0.00605250383, -0.0107901292, 0.0324246101, -0.0249691196, -0.0219191443, -0.013616439, 0.0173916277, -0.00421235291, 0.00831626169, -0.00360235805, 0.00915669929, 0.00376841216, -0.00408357615, -0.0286019761, -0.0173916277, 0.00636089, 0.0238304622, 0.023139134, 0.00495112408, -0.00746226916, 0.00405985396, 0.00722504919, -0.00363624655, 0.0153176459, -0.0195333883, 0.0229086932, 0.00658794353, -0.015697198, 0.00614400301, 0.00314825075, -0.00672349799, 0.00680821948, -0.00794348773, -0.0113459025, 0.0118271206, 0.00856026, 0.0122812279, 0.0223122537, -0.0200349391, -0.00619822461, 0.00186726172, -0.0145992078, 0.00015048655, -0.0121863401, 0.000953964, 0.0386872217, 0.0132504422, 0.0127963349, -0.0264331065, -0.0275039859, -0.00893981196, 0.0260535534, 0.000476558402, 0.0150736487, -0.0155751994, 0.00111408764, 0.00246539549, 0.0216887034, 0.0432960726, -0.00720471609, 0.0238440167, -0.0161309727, 0.00671672029, 0.0259993318, 0.0204144921, -0.00866870303, -0.0161987506, 0.0036464131, -0.026961768, -0.028873086, -0.000606182322, -0.00182320655, -0.0269888788, 0.0133927744, -0.00503584556, 0.00421235291, 0.00147330679, 0.00181473442, -0.02347802, 0.0121321185, 0.00678110868, -0.00917025469, -0.0108240182, 0.0169171877, -0.00525612151, 0.013480884, -0.00166901341, -0.0244540125, 0.0208618212, 0.0375485681, 0.00564922951, -0.0310961772, 0.0044326284, 0.0191267245, 0.00308894576, -0.000965825049, -0.0347019248, 0.0018062623, 0.0101665799, -0.0437298454, 0.013684216, 0.0233153552, 0.0272871, -0.0262839962, 0.00878392439, 0.00842470583, 0.0167545229, -0.0249420088, 0.00372096803, 0.0127556687, 0.00748260226, -0.0219191443, -0.00210787077, -0.027815761, 0.0053950646, -0.00681838579, 0.00767915649, -0.0117322328, 0.0053340653, -0.0053543984, -0.00520528853, -0.00783504359, -0.00314994529, 0.00585256098, -0.0211464856, 0.0167545229, -0.0250911172, 0.00460546045, 0.0137926592, -0.00699460646, -0.00273311534, 0.0125184478, 0.00461223815, 0.0159818623, -0.0131487763, -0.0188962817, 0.00211295416, 0.012355783, -0.00952269603, -0.0218107011, -0.00346341473, -0.0118271206, 0.00885848, -7.9055746e-05, 0.00344647048, -0.0218920335, 0.0108443517, -0.00779437739, 0.0353796966, 0.02669066, 0.00514767785, -0.00608639233, -0.00973958336, 0.0270702112, -0.0233289115, 0.00221800874, 0.0187200624, -0.00688616326, 0.00811293069, -0.00157158368, -0.000794687599, 0.0298761874, 0.0219191443, 0.0052595106, -0.033102382, 0.00978702679, 0.00148347334, 0.0277886502, -0.00316688954, 0.0103089111, 0.0051714, -0.0173509624, -0.0140705463, 0.0014275572, 0.0158869755, -0.0123964492, -0.0367623493, 0.00330244377, 0.00209939876, -0.00742160296, -0.0323432796, -0.01242356, -0.00151990366, 0.0255791135, 0.00738771446, -0.0112171257, 0.00907536689, 0.00734704826, -0.0248877872, 0.00780793279, -0.00136994652, -0.0127488906, 0.000593897654, 0.0192758348, -0.0122134509, 0.00233831326, 0.0154125346, 0.0033549713, 0.0121388957, -0.00167663838, 0.0277073178, -0.0015461673, -0.00702171773, 0.00350746978, 0.0110205719, -0.0343765952, 0.0252537839, -0.0134063298, 0.00283986446, -0.00714371633, 0.00288561406, -0.0178389587, 0.00262636645, 0.0169714093, -0.0184489526, 0.02484712, 0.0150194271, 0.00629989058, -0.00351424771, -0.00758426823, -0.0163478591, -0.0105732428, -0.0188420601, -0.0206178222, 0.00462579355, 0.00164868031, -0.00510701165, -0.0228273589, -0.00691666268, 0.0113459025, -0.0250640064, -0.0139214359, 0.00618466921, -0.00339394319, 0.0138129927, -0.031638395, 0.00873648096, 0.0193978343, 0.0199400503, 0.00508667855, -0.0058762827, 0.0214582607, -0.0128166676, -0.0140569909, -0.0420218632, -0.00180795672, 0.0213091504, 0.0352170318, -0.00519851083, -0.00994291436, 0.00788926519, -0.0310961772, -0.00350746978, -0.0048257364, 0.0147212073, 0.0124438936, -0.0122744506, 0.0226240288, -0.0194385, -0.0163071938, 0.0226782504, 0.0104105771, -0.0242235698, -0.0103292447, -0.00405646535, 0.0299032982, -0.000271320576, 0.0129928887, -0.0152769797, -0.0115153454, 0.025565559, 0.0136299944, -0.0401783213, 0.00110900437, -0.0127014462, 0.00982091576, -0.00561195193, 0.022868026, -0.0184353981, 0.00800448656, -0.0144772092, 0.00283139246, -0.00269244914, -0.00483590271, -0.00826881826, 0.00560178515, -0.0216751471, -0.0179202911, 0.000178868257, -0.00979380496, -0.0175949596, 0.0137045486, 0.0344579257, -0.0114475684, -0.00557128573, -0.0224749185, -0.020509379, 0.00419540843, -0.00598133774, -0.0047918479, -0.0034024152, 0.022935804, 0.0267042145, -0.0113865687, 0.0144772092, -0.0112103485, -0.0228409152, -0.0117525654, -0.000116068448, 0.00630666828, -0.0172560737, 0.0169307441, 0.0044055176, 0.0325330533, 0.000244209717, 0.00795704313, 0.0143823214, 0.00704205083, -0.00698782876, 0.0205771569, 0.013514773, -0.0265279952, 0.0340241529, 0.04074765, 0.00970569439, -0.00466984883, -0.00638461206, -0.0209160428, 0.00285003101, -0.00156819483, -0.00108867115, 0.0201840494, -0.00572378421, -0.0256468914, 0.00101072749, 0.0297677442, -0.0108646844, 0.0217158142, -0.00814004149, -0.000862464833, -0.0121931173, 0.0190318357, -0.0227460265, -0.0118271206, 0.0168358553, 0.00231967447, -0.0343765952, -0.00362946885, 0.0101055801, -0.0607283674, 0.0183133986, 0.0197096094, 0.0150736487, -0.00779437739, 0.0131894425, -0.00503584556, 0.0222715866, 0.0157243088, 0.0300930757, 0.0150736487, -0.00773337809, -0.00867548119, 0.0425911918, -0.00872292556, -0.00303980731, 0.020888932, -0.0186387282, -0.00856703799, 0.0267584361, 0.011366236, 0.00910247769, -0.000903131149, -0.00098022772, 0.00851281546, -0.00142840436, -0.0196418315, -0.00856703799, -0.00650999974, 0.0327770524, 0.00307539036, 0.00390057755, -0.0103428, -0.0175949596, 0.0149245383, -0.00158429192, 0.00130555825, -0.0192351677, 0.00891270116, 0.0163749699, 0.0210651532, 0.0354881398, 0.00182320655, -0.00521545531, -0.0110070165, 0.00372774573, 0.0116915666, -0.011569567, -0.00470034871, -0.012491337, -0.0342952609, 0.000702764781, -0.00539167598, -0.00256367237, 0.00800448656, -0.0169985201, -0.0134402178, 0.0284122, -0.0136774378, 0.0053882869, -0.0125320032, 0.0242642369, 0.0152498689, 0.00786215439, 0.0483658053, 0.0293339696, 0.0288459752, 0.0300388541, 0.00114543457, -0.0465493798, -0.0024332013, -0.0165240802, -0.00668960903, -0.00713693863, 0.022935804, 0.00717760483, -0.0135893282, 0.00323466677, 0.00685905246, -0.0376027897, 0.0191809461, -0.0186793953, 0.0237897951, -0.00659133215, -0.0289273076, 0.0179338455, 0.0176898483, 0.0148703167, 0.0136435498, 0.00976669416, -0.0111222379, 0.00704882853, 0.00881103519, -0.000310716074, 0.00710305, 0.0117186774, 0.019519832, -0.0335903801, 0.0107901292, 0.00721827149, -0.00236711861, -0.0179745127, -0.00328380521, -0.00677094189, -0.0131962197, -0.019899385, 0.0283037573, 0.0344850384, -0.00269922684, 0.00111662934, -0.0218107011, 0.0275717638, -0.00553400815, -0.024467567, -0.00110476825, -0.0172560737, -0.0129251117, -0.0145585416, 0.0176898483, -0.00265178271, 0.0299846306, -0.00379552296, -0.00372435688, -0.0036599685, -0.0028805309, -0.0167138558, 0.00118525373, -0.00592372706, -0.00963113923, 0.0178118479, 0.0312588438, -0.0119152311, 0.00606267, -0.0193300564, -0.0115831224, 0.00462579355, 0.0135757728, 0.0194656104, 0.0128370011, 0.0160767511, 0.00683871889, -0.00375485676, -0.0255791135, -0.00038272934, 0.0307708476, -0.00759104593, 0.0216480363, 0.0136096608, 0.0115085682, 0.0113323471, -0.00262636645, 0.0100920247, 0.0237762406, 0.0271244347, 0.0229493584, 0.0202653818, 0.00421235291, 0.0188827273, -0.00189267821, 0.0141518787, -0.0101665799, 0.0146940965, -0.00280258711, 0.00673366431, -0.03453926, -0.00415135315, -0.00146314024, -0.00431063, 0.0133182192, -0.00110307382, 0.00755715743, 0.00106410193, -0.00787571, -0.00368707953, -0.00599150406, 0.00595422648, 0.0112035703, -0.0157243088, 0.00266872719, 0.00472407043, -0.00402257638, 0.0222580303, -0.0155751994, -0.00681160809, 0.0047715148, 0.000125917315, 0.00557806343, -0.00362269115, -0.00573395099, -0.00503923465, 0.00409035385, -0.00257722777, 0.00259756111, -0.00935325306, 0.0133385519, 0.0225020293, -0.00863481499, 0.0123083387, 0.00900081173, 0.00516123325, -0.0104241325, 0.00418185303, -0.00843148306, 0.0215938147, -0.00507651176, -0.0102208015, 0.0129928887, 0.0164563041, -0.00500873476, -0.00868903659, 0.0106342416, 0.00337699871, -0.0031855281, 0.0499924608, -0.0004812181, 0.0180151779, -0.000981922145, -0.0150329825, -0.0283037573, 0.000261789421, 0.000119669108, -0.0171069652, 0.00989547092, -0.0147347627, -0.00506973406, 0.00588983856, -0.0107291304, 0.0016944299, -0.00900758896, -0.00266025495, -0.0127082244, 0.0150600933, 0.0211600401, 0.0033956375, -0.0134198852, 0.00839081686, 0.00599828176, 0.0186116174, 0.00343630393, -0.00475457031, -0.00522562163, 0.01058002, -0.00666588731, -0.012525226, 0.0101869125, -0.00205534347, 0.0299575198, 0.0269075464, 0.00658794353, -0.0268804356, -0.0026839769, -0.000416617957, 0.0132978857, 0.0140705463, -0.0121727847, -0.0116847884, -0.034268152, -0.000686244108, 0.011467902, -0.00548995286, 0.0209024865, -0.00587967178, -0.00232814671, 0.00226714718, -0.0142196557, -0.0289273076, -0.021946257, -0.00412085373, -0.0165376365, 0.0128912227, -0.0299846306, 0.0196147207, -0.0272735432, 0.0188827273, 0.0303912945, 0.0275310967, -0.00645238906, -0.0490706898, -0.0189233925, -0.00411407603, -0.0156294219, 0.00271447678, -0.00240270165, -0.0201298278, 0.00432079611, -0.00719793839, -0.0136028836, 0.0264737736, -0.00180117902, -0.02900864, -0.0160225295, -0.00868903659, -0.0100106923, -0.0139349913, -0.00140722399, 0.00354474736, 0.00502229, -0.0019587609, 0.0141789895, -0.0321535021, -0.00733349239, 0.00609317, -0.000936172495, 0.0157649759, -0.0123286722, 0.0225020293, -0.0108375736, 0.0194927212, -0.012525226, -0.0165647473, -0.00628633471, 0.00648288894, 0.00422929693, 0.0132978857, -0.000565516, -0.0131623317, -0.023342466, 0.00945491903, -0.000765458681, 0.00783504359, -0.0101665799, 0.000905672787, 0.00655405503, 0.00388702215, -0.00210278761, -0.00336683216, -0.0104309106, -0.0163343046, 0.0127150016, -0.00553400815, -0.0374130122, 0.0115560116, 0.0254164487, 0.0280597582, -0.00581189478, 0.0175542943, -0.0284935329, -0.0152092027, -0.00169273547, 0.0113594579, -0.0125116706, 0.0246166773, -0.0108782398, -0.00565261813, -0.0170798525, 0.0122608952, 0.0252944492, 0.00899403356, 0.0212142617, 0.00480201421, 0.0193436109, 0.00634733448, 0.00134707172, 0.00289916946, 0.00228239712, -0.0179474019, 0.00638461206, -0.0143823214, -0.00400563236, -0.0179474019, 0.00551706366, -0.0035989692, 0.0140976571, 0.00115390681, 0.00952269603, 0.0140298791, 0.00683871889, -0.014436543, -0.00794348773, 0.0113865687, -0.00200789934, -0.00512734475, 0.00880425796, 0.00420557521, 0.0354068056, -0.0145585416, -0.0210380424, -0.000257765147, -0.000849756587, 0.0150194271, 0.00205364893, -0.00201467704, -0.013514773, 0.00531034311, 0.012457449, -0.00779437739, -0.0271379892, -0.0168223, 0.0122608952, -0.00609317, 0.00969891716, -0.0191402808, 0.0114204576, -0.00374807883, -0.00464612665, 0.00190623361, 0.0011835593, -0.0187200624, 0.0140163237, -0.0162529722, 0.0142738773, -0.0261619985, 0.00677094189, 0.00958369579, 0.00764526753, -0.000607029535, -1.64942157e-05, 0.0127082244, -0.0235593542, 0.0189911705, -0.0036531908, -0.00781471096, -0.00482912501, 0.00283308676, -0.00508667855, 0.0148567613, -0.0115153454, -0.0123693384, 0.0224206969, 0.0159547515, -0.00619822461, -0.0114611238, 0.00597117096, 0.0106884642, 0.00836370606, 0.00939391926, 0.00061761972, -0.00254842266, -0.0101191355, 0.0291984156, 0.0186793953, 0.000986158149, -0.00074978522, -0.0123286722, 0.0127556687, -0.00105054653, 0.0142061, 0.00722504919, 0.0151820919, 0.00178592908, -0.00664555421, -0.041018758, 0.0126065584, 0.00655405503, 0.0196418315, -0.00850603823, -0.0151278703, 0.0153447576, -0.0339699313, 0.00139027974, 0.00100818579, 0.0013021694, 0.00331430486, -0.00820781849, -0.0256740022, 0.0297406334, 0.00957014, 0.00866192579, 0.000355830271, 0.000229595258, 0.0135622174, -0.00277547608, 0.00699460646, 0.0236000195, 0.0196824986, 0.000109502529, 0.0140434355, -0.00447329506, 0.00199603848, 0.0101801353, -0.012559114, 0.0028805309, 0.0283308681, -0.0181507338, -0.00990902632, -0.0252673384, -0.00867548119, 0.0148974275, 0.00257892231, 0.00585933868, -0.00653711054, 0.00224173069, -0.00868225843, -0.00818748493, -0.0164291915, -0.00838403869, -0.00559161883, -0.0159276407, 0.0116305668, -0.0107087968, 0.0202518255, -0.00291611394, -0.0170662981, 0.03706057, 0.00277717062, -0.0102072461, 0.00720471609, 0.0165647473, -0.0152905351, -0.012728557, 0.00345155364, -0.000197083384, -0.00654049963, -0.00418185303, 0.00654727733, -0.0155345332, -0.0196147207, -0.00173679064, 0.0247657876, 0.0440280661, -0.0196418315, -0.00627616839, 0.0198858287, 0.00504601235, -0.000935325283, 0.0138333254, 0.00253317272, -0.00567972893, -0.00417507533, -0.0102411341, -0.0160631947, -0.020888932, -0.0211600401, -0.00700138416, -0.0121117849, 0.0048731803, 0.0296321902, 0.00579156121, -0.00708271703, 0.00504601235, 0.00300422427, -0.0108985733, 0.00502906786, -0.00455462746, -0.00239422941, 0.00877714716, 0.0123422276, -0.0120033417, 0.00599828176, -0.0024128682, -0.0257824454, -0.0207940433, 0.00302116852, 0.000127188148, 0.0245217904, 0.00778759969, -0.00131064153, -0.00665233191, 0.00919736549, -0.00672688661, -0.000794264, 0.00489012478, -0.0221224762, 0.00617789151, 0.00274667097, -0.0129251117, -0.00969213899, 0.0175949596, -0.00743515836, 0.0180016235, 0.01911317, -0.0101191355, 0.00567972893, 0.0189776141, 0.00303133507, -0.0116237896, 0.00832304, 0.0123083387, -0.00586611638, 0.0236813519, 0.0105935754, -0.00185878959, 0.0115627898, -0.0141789895, -0.022081811, -0.00684210798, 0.00457496056, 0.00921769906, -0.00704882853, -0.0109799057, 0.0233018, -0.00215870375, -0.000110667454, 0.000839166401, -0.00917025469, 0.00281105912, -0.00828237366, -0.0244811233, -0.0221360326, 0.0002439979, 0.00385991135, -0.00694038486, 0.0229086932, 0.0244404562, 0.00918381, -0.00150295929, 0.00748938, -0.0475524813, 0.00683533028, 0.0219869222, 0.00832981709, 0.0255791135, -0.000380187703, 0.000289747521, 0.00896014553, 0.0063507231, -0.00697427336, 0.0137994373, 0.00391413318, 0.017134076, 0.0188827273, 0.00174017949, -0.0287917536, 0.00227223057, 0.00369385723, -0.0119558973, 0.0180829559, -0.00933291949, 0.0115627898, -0.0217835903, -0.0305810701, 0.0104173552, -0.0349459238, 0.00268736575, 0.0204958245, 0.0101936907, -0.0240744594, 0.0103292447, 0.00767915649, 0.00837726146, 0.00682177488, -0.00732671469, -0.00824848469, 0.0101123573, 0.00936680846, 0.00433435151, 0.0177576263, -7.66729499e-05, 0.0151007595, 0.0151956473, -0.00164105534, -0.0120304525, -0.0260128882, -0.000851027435, -0.0303641837, 0.00180965115, -0.00538489828, -0.0165918581, 0.00600844854, -0.000975144387, 0.0109324614, -3.38091704e-05, -0.0176627375, 0.00320925028, 0.00638461206, -0.00994291436, -0.0157107543, -0.0104986876, -0.0136435498, 0.00425640773, 0.0102682449, -0.0212820396, 0.020753378, -0.0013182665, -0.0213091504, 0.013751993, -0.000368538516, -7.9955913e-05, 0.0231526904, -0.0217158142, 0.00534423208, 0.0206042677, 0.0126675582, 0.0307437368, 0.0128573338, 7.88439429e-05, 0.027544653, 0.01726963, 0.00286019756, 0.005273066, -0.0039175218, 0.00418524165, 0.0295779686, 0.0103563555, -0.0212142617, 0.0219327, -0.0137655484, 0.00593728246, 0.018123623, 0.0160225295, 0.019384278, -0.0152227581, 0.0210787077, -0.00126828079, -0.00522901071, 0.00840437226, -0.0104715768, 0.0187607277, 0.00140298798, 0.00776048889, 0.0188691709, 0.00379552296, 0.00550689735, 0.0186387282, -0.0187336169, 0.00771982269, -0.00362608, 0.0183133986, 0.0136706606, 0.00739449216, 0.0104919104, 0.00283308676, -0.0142196557, -0.0210515969, -0.00478507, -0.0222309195, 0.00401241, 0.0233560223, 0.0111629041, -0.0165918581, 0.0161987506, 0.0198722742, -0.00769948959, -3.80982e-05, 0.0250233412, -0.00255858921, 0.0128098903, 0.029930409, 0.0289273076, 0.0215395931, 0.00138604362, 0.00126235024, -0.0157514196, -0.0107359076, -0.00260264426, 0.00630666828, -0.00182828982, -0.0210380424, 0.00457834965, 0.00200281618, -0.0286833085, 0.00708271703, -0.00604233705, -0.000524849689, -0.000898895087, -0.000237431988, -0.004419073, -0.0130064441, 0.0109595722, -0.0212142617, -0.0167409666, 0.0124303382, 0.0142738773, 0.0184218418, -0.0100784693, -0.00906181149, -0.00150380656, -0.0193165, 0.0191538353, -0.00731315929, -0.00136062724, 0.0112577919, -0.00338377641, 0.00413102, -0.00671333121, -0.0344037041, -0.00721149379, -0.000338462385, 0.000758257404, 0.0283579789, 0.0278428718, -0.0109731285, 0.00453768345, -0.000334438111, 0.00996324793, 0.00740127, -0.0167680774, 0.0114543466, -0.0186522845, 0.0301201865, -0.0111290151, 0.0172967408, -0.00689971866, 0.0205907114, -0.0123286722, -0.000376163429, 0.00662522111, 0.00368707953, 0.00562889595, 0.00965825, -6.81478559e-05, 0.00160970842, -0.00372096803, -0.00610672543, 0.0171476305, 0.0195062775, 0.00758426823, 0.0181778446, -0.0164427478, -0.00898725633, 0.00714371633, 0.0201569386, -0.0109731285, 0.0155209778, 0.0103563555, 0.0465764888, -0.00235695206, -0.0302828513, 0.00220784219, -0.00320586143, -0.0191267245, -0.0043580737, -0.0167409666, 0.00570006203, 0.0176491812, -0.0112171257, -0.00967180543, 0.000162665267, -0.00511717843, 0.021878479, 0.00200789934, -0.0142332111, -0.00120219798, 0.0201569386, -0.00870936923, 0.0170256309, -0.0310148448, 0.0146940965, -0.0254435595, -0.0237084627, 0.0110137947, -0.00919058733, -0.0141789895, 0.0136028836, 0.0327228308, 0.00945491903, -0.0116983438, -0.00185878959, 0.0129657779, 0.000134707181, -0.0163207483, -1.37540055e-05, -0.000413864502, 0.00943458546, -0.0036667462, -0.000170184299, 0.000845944101, -0.00369046838, 0.00454446115, -0.00307369581, -0.00455801655, -0.0130877765, 0.00820781849, 0.00369724608, -0.0255926698, 0.00600844854, 0.0324517228, -0.00742838066, -0.00965825, 0.0376841202, -0.0243455693, 0.0320721678, 0.0053137322, -0.0131013319, 0.0152634243, -0.00484945858, -0.00188081723, -0.00113696244, 0.00506973406, -0.0209024865, 0.023925351, -0.00427335221, -0.0161038619, 0.00601522624, -0.0183540639, 0.0172831845, 0.00725893769, 0.050372012, 0.000367691275, -0.0232475791, 0.0102411341, -0.00556111895, -0.000551960547, 0.0143958768, -0.0184760634, 0.012593003, 0.0137045486, -0.0107087968, 0.00410390925, 0.0154667562, 0.0279784258, 0.0191267245, -0.0217022579, -0.0118610095, 0.0120914513, -0.00677094189, -0.012525226, -0.0383347832, -0.0104241325, 0.00878392439, 8.86928174e-05, -0.0188962817, -0.0120304525, 0.0101394681, 0.020373825, -0.00716404943, -0.0167816337, 0.0036193023, 0.018394731, -0.00109544897, 0.0153447576, -0.00175373489, 0.00548317516, 0.000988699845, -0.00572378421, -0.00744193606, -0.0137791038, 0.00328380521, 0.0206042677, 0.0159818623, 0.00307200151, 0.00205534347, -0.024711566, 0.024128681, -0.000579071406, -0.00923125446, 0.00664216513, -0.00792315416, 0.00597117096, 0.0116780112, 0.00196892745, -0.00993613712, -0.0256875567, 0.00206551, 0.0143958768, -0.0157243088, 0.0033685267, -0.0113052363, -0.0161309727, -0.00729960389, 0.00235864636, -0.0203602705, -0.0101936907, -0.0124438936, -0.0111357933, 0.00330074946, -0.00409035385, 0.0130471103, -0.00469018193, -0.00595083786, -0.00993613712, 0.0186387282, 0.00231967447, 0.0180558451, 2.88251658e-06, -0.00236372976, 0.00240100711, -0.0193165, -0.00285511441, -0.0223664753, 0.0137452157, -0.0195469428, -0.000683278835, -0.000427208142, 0.00455801655, -0.00710982783, 0.0130132213, 0.00755715743, 0.035054367, 0.00260433881, -0.00599150406, -0.00228239712, -0.00897370093, 0.00478507, -0.00494773546, -0.00305166817, -0.0102953557, -0.00689294096, 0.0104173552, 0.00689294096, 0.00103953271, -0.027029546, 0.00652016606, -0.00733349239, -0.00499179028, 0.000269202545, -0.025796, -0.00125726697, 0.0103428, 0.00217734231, 0.00562889595, 0.00902114436, -0.00441568438, -0.00628972379, 0.012288006, 0.0198722742, -0.00234509096, -0.00917025469, -0.000985311, 0.0121253403, -0.0149109829, 0.00604233705, 0.0177169591, -0.0206720456, -0.0145992078, -0.021092264, -0.00139112689, 0.00818748493, 0.016415637, 0.0101259127, 0.030987734, -0.000237643791, 0.0117593436, 0.0230849124, 0.0189233925, -0.01173901, -0.00377518986, 0.0187065061, -0.0161716398, 0.0300388541, -0.00734704826, 0.0237491298, 0.00310589, -0.00153007021, 0.00883136876, -0.0162665267, 0.000955658441, 0.0195876099, 0.000181727606, -0.0310419556, 0.00708949473, -0.0151956473, 0.00239761826, 0.0266635492, 0.0048528472, 0.00731993699, -0.0117796771, -0.0221766979, -0.0053611761, 0.00281953136, 0.0149380937, -0.00304150162, -0.00740127, -0.0199536067, -0.0198587179, -0.0172154084, -0.00283817016, -0.00484268088, 0.0208482649, -0.0182862878, -0.0039242995, -0.00395479938, 0.0257146675, -0.0103834663, -0.000600675412, 0.00905503333, 0.020238271, 0.00467323745, -0.0162665267, 0.000896353391, -0.0162258614, 0.00643544458, 0.00516462233, -0.0470915958, -0.0112442365, 0.0230984688, 0.00937358662, 0.00643883366, 0.00717760483, 0.00590678258, -0.00867548119, 0.0223122537, 0.0146534294, 0.0132707749, -0.00731993699, 0.00740127, 0.00725893769, 0.00231289677, 0.00022218212, 0.0278970934, -0.0139621021, -0.0294966362, -0.0111832377, 0.00505956775, 0.00682516349, 0.0190453921, -0.0125387814, 0.0150465379, 0.00960402843, 0.0123896711, 0.0131419981, 0.00562889595, -0.0169307441, -0.0154803116, 0.00627277931, 0.00715049403, -0.00640494516, 0.0146263186, -0.0135757728, -0.0161309727, -0.00512734475, 0.00705560623, -0.0134876622, 0.00546961976, -0.00134029402, -0.00307369581, 0.00209600967, -0.0253622271, 0.000774778076, 0.0111900149, -0.018530285, 0.000690903806, 0.00885170139, -0.0161716398, -0.00385991135, -0.0198858287, -0.0124100046, -0.0163071938, 0.00262636645, 0.0124845598, -0.00822815206, 0.0243862346, 0.0233153552, -0.00382602261, -0.060240373, 0.000515953929, 0.00833659526, 0.00790282059, -0.00592033798, 0.00595422648, 0.0139892129, 0.00271108793, -0.00881103519, -0.0146669848, -0.0158327539, 0.00505956775, 0.00467662653, 0.00230103591, -0.0174458511, -0.00303472392, 0.00548656425, 0.012288006, 0.00767915649, -0.0063371677, 0.005801728, -0.0120236743, -0.0127963349, 0.00464273803, -0.00772660039, 0.0163614154, 0.0181100667, 0.0410458706, -0.00309233461, 0.0270159896, -0.00272803218, 0.00641511148, 0.00112679589, 0.013684216, 0.00460546045, -0.0108172409, -0.0177711807, 0.0131419981, 0.0157378651, 0.00634055678, -0.00983447116, -0.000353924057, 0.0177847371, 0.0130199995, -0.000182363015, -0.0171476305, 0.00900081173, -0.000905672787, -0.00754360203, 0.0133656627, 0.0012038924, 0.0023993128, -0.00769271189, 0.00584578328, 0.0184489526, -0.0213498175, -0.0142603219, 0.00640494516, 0.000525273266, -0.0161038619, -0.010376689, -0.0127556687, -0.00277547608, 0.015493867, -0.00779437739, 0.00416490855, -9.46762739e-05, -0.00756393513, -0.00317027839, 0.00845181663, 0.00917703193, 0.00853314903, -0.00205534347, 0.000701917568, 0.0014368766, 0.0122541171, -0.00162919436, -0.0177305136, 0.00543234218, -0.0259857774, 0.0145992078, -0.000309021649, -0.0256604459, -0.0156565327, -0.0247386768, -0.00898725633, 0.00623550219, 0.00679466408, 0.0200620499, -0.0405578725, -0.0261484422, 0.00256706122, -0.00560856285, 0.00626600161, -0.0224071406, 0.0199807175, -0.00638800068, -0.0135351056, 0.00649644434, -0.0154803116, 0.0144772092, -0.00330074946, -0.00419879751, 0.00685905246, 0.0437027365, -0.00343799824, -0.00153091736, -0.00843826123, -0.00613383623, -0.00685227429, 0.0212413725, 0.0291984156, -0.00493756868, 0.0158327539, -0.00503584556, 0.00211973186, 3.55830271e-05, 0.0107087968, 0.0201976039, 0.0355152525, -0.00460884953, -0.002175648, -0.0047715148, 0.0114272349, -0.0229222476, -0.0132911084, -0.0126404474, 0.005869505, -0.00496806856, 0.0170120765, 0.0166054126, -0.0314757302, 0.00788248796, -0.0218378119, 0.00155040331, 0.0192351677, 0.00813326333, -0.0196011644, 0.00795026496, -0.0243455693, -0.0102682449, 0.00571022881, 0.0143958768, -0.00233153556, -0.00912958849, -0.0149245383, 0.0105529092, -0.00301608513, -0.00325330533, -0.00291103055, -0.0262839962, -0.0109256841, 0.0146534294, 0.00160208344, 0.0170798525, -0.00916347653, -0.00713693863, 0.000278945517, 0.00256706122, -0.0187471732, 0.0140569909, 0.00590678258, 0.0212820396, 0.023586465, 0.0130132213, -0.00763171213, 0.0144772092, 0.00247895089, 0.0164563041, 0.0123693384, -0.0249962304, 0.00687938556, -0.0189098381, -0.00482234731, 0.0151278703, -0.0162529722, 0.023993127, -0.0156565327, 0.00134368287, -0.00439535128, 0.0133995516, 0.0053815092, 0.0048257364, -0.0198316071, -0.00611689175, 0.0283579789, 0.0144636538, 0.0108240182, -0.00761815673, -0.00978702679, -0.024711566, -0.00446312828, 0.0208753757, 0.00623889081, 0.00744193606, -0.021878479, -0.00161225, 0.00166816625, 0.022081811, 0.00510362303, -0.00879748, -0.0110612381, -0.0241015702, 0.00942103, 0.0151278703, 0.00997002516, -0.0192351677, -0.0163614154, 0.00947525166, -0.000288476702, -0.00665910961, 0.0179609563, -0.0172967408, 0.0176627375, -0.00791637693, -0.0233018, 0.00746226916, -0.00522901071, -0.00725893769, -0.0138739925, -0.00988191552, -0.00946169626, 0.00402257638, -0.0237355735, -0.00416152, 0.00938036386, -0.0216887034, 0.00797737576, -0.0283037573, 0.0290899724, -0.0135689946, 0.00255689467, -0.0126201138, 0.0130945547, -0.0183811747, -0.000981074874, 0.000656168, 0.00939391926, -0.0053815092, -0.0138129927, 0.00511040073, -0.00950236246, 0.00230950792, -0.00265178271, -0.0174594056, -0.0151007595, -0.0232882444, 0.00903470069, 0.0057610618, -0.0374401249, 0.000563821523, 0.00760460133, 0.00146229297, 0.0063710562, -0.0131081101, -0.0181371775, 0.00852637086, 0.0106206862, -0.00609994773, -0.0272599887, -0.00141654338, 0.011603456, 0.0115221236, -0.0166325234, -0.0101869125, 0.00196384429, 0.0163207483, 0.0283037573, 0.00411746465, 0.0148838721, 0.0205364898, -0.0119762309, 0.027951315, -0.0195740536, 0.000504940108, 0.00179440121, -0.011366236, -0.0150194271, -0.0043309629, -0.0102614677, 0.0147483181, 0.00077266, 0.016686745, 0.0234644655, -0.0216480363, 0.00325669418, 0.0228815805, -0.0156429764, -0.00667944271, -0.0106545752, 0.0220411438, 0.0119016757, 0.0053679538, -0.00288222521, -0.0101733571, -0.000601946202, 0.0165240802, -0.00143772375, -0.0132572195, -0.00043758651, 0.00973958336, -0.0123083387, 0.0121998955, 0.00843148306, -0.00381246721, 0.0269346572, 0.00298389094, -0.0189505033, -0.0151685365, 0.00927869789, -0.0367081277, -0.0145314308, 0.00354813621, 0.0120101189, 0.0153854238, 0.00340749859, 0.00351424771, -0.025050452, 0.0186929498, 0.0373587906, -0.0170120765, -0.0262026638, -0.0053747315, -0.00364980195, 0.00623211311, 0.00078663911, 0.00280428142, -0.0211871509, -0.0187878385, 0.00989547092, 0.00602200394, 0.0161309727, -0.0134402178, -0.0110544609, 0.000138731455, -0.00699460646, 0.00487656938, 0.0111629041, -0.00761137903, -0.00327702751, -0.00798415393, 0.0228273589, -0.0043648514, -0.0128641119, -0.00225867517, -0.00115305954, -0.0148025397, -0.00283478131, -0.0446245074, -0.0057949503, -0.000459190516, -0.0172831845, 0.00758426823, 0.00935325306, 0.0113255698, 0.0241829026, 0.0129725551, 0.0110883489, -0.00224173069, 0.00690310728, 0.00822815206, -0.0118135652, -0.0157378651, 0.000526120479, -0.019763831, -0.0200756062, -0.00502229, 0.00816715229, 0.0128098903, 0.00438857358, -0.00176390156, 0.00646255584, 0.00462918263, 0.018394731, 0.0169578549, -0.0147212073, 0.00420557521, -0.00325669418, 0.020888932, 0.0120304525, -0.0217022579, -0.0204958245, 0.0134402178, -0.0228409152, -0.0123896711, -0.00748260226, 0.016415637, 0.000518495566, -0.00955658499, -0.00830270629, 0.000131953726, -0.00414457545, 0.00594067108, -0.00263992185, -0.013480884, 0.00979380496, 0.00230273022, -0.00203162152, -0.0222851429, 0.00457834965, -0.00307877921, -0.000970061112, 0.0160225295, 0.00698782876, 0.00038633, -0.00657438813, 0.00338716526, -0.0274768751, -0.0156023102, 0.0101733571, 0.00921769906, -0.0167545229, 0.0138333254, 0.00319400034, -0.00648966664, -0.00587289408, -0.0117118992, -0.00756393513, -0.0158463083, -0.0121117849, -0.00151227869, -0.0119694527, -0.00967180543, -0.00337191555, 0.0294966362, 0.0112239039, 0.00174017949, -0.0127488906, 0.00119372585, 0.000335920718, -0.0162936375, -0.00527645461, 0.013413107, -0.0109595722, 0.0111493487, 0.00668960903, -0.00333463796, -0.0043309629, -0.00207906542, -0.0100310249, -0.012762446, -0.00187573396, -0.00972602796, -0.0175949596, -0.00921092089, -0.000510870595, 0.00933969766, 0.00965825, -0.00919736549, 0.00330752716, -0.00950236246, 0.0214582607, 0.00482912501, 0.0133317746, 0.00605250383, 0.00764526753, 0.00346510904, -0.0178118479, 0.0207804888, -0.0302557405, 0.0180422887, -0.00900081173, 0.00621516909, 0.0164020807, 0.0264059957, 0.00773337809, 0.0191809461, 0.0122066727, 0.02484712, -0.00858737063, 0.0247793421, -0.00473423721, 0.0120575633, -0.00383280055, -0.0206720456, -0.00469695963, 0.0190182813, -0.0325872749, 0.000758257404, -0.00795026496, 0.01242356, 0.0280326474, 0.00713016093, 0.0269211028, 0.00101496349, 0.0164834149, 0.00198587193, 0.00178084581, 0.00099039427, -0.00040623956, 0.00375485676, -0.0235051308, -0.0038361894, -0.00378196756, -0.00974636059, 0.00380907836, 0.0134063298, -0.020373825, 0.0103428, 0.0157785304, -0.00560178515, -0.00457157195, -0.0108579071, -0.00332786026, -0.0214040391, -0.00774015579, -0.0254028924, -0.00814681873, 0.022488473, -0.0115560116, -0.00428690761, -0.025457114, 0.0273548756, -0.00700816186, 0.0189911705, 0.0226646941, -0.0166731905, -0.00863481499, 0.00678449729, 0.0137858819, -0.0190860592, -0.00736738136, -0.00354135851]
18 Oct, 2018
multimap rbegin in C++ STL 18 Oct, 2018 multimap::rbegin() is a built-in-function in C++ STL which returns an iterator pointing to the last element of the container. Syntax: multimap_name.rbegiin() Parameters: The function does not take any parameter. Return Value: The function returns a reverse iterator pointing to the last element of the container. (Note: Reverse iterators iterate backwards i.e when they are increased they move towards the beginning of the container) The following two programs illustrates the function. Program 1 // CPP program to illustrate // multimap::rbegin() #include <iostream> #include <map> using namespace std; int main() { multimap<char, int> sample; // Insert pairs in the multimap sample.insert(make_pair('a', 10)); sample.insert(make_pair('b', 20)); sample.insert(make_pair('b', 30)); sample.insert(make_pair('c', 40)); sample.insert(make_pair('c', 50)); // Show content of the multimap for (auto it = sample.rbegin(); it != sample.rend(); it++) cout << it->first << " = " << it->second << endl; } Output c = 50 Program 2 Output c = 50 c = 40 b = 30 b = 20 a = 10 Learn C++ Online – Master everything from basics to advanced concepts. Apply your knowledge with practical exercises and boost your skills. Take the Three 90 Challenge: finish 90% in 90 days for a 90% refund. Start now and level up your C++ programming!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum/Algorithm for Dynamic Time out timer Calculation/Difference between Round trip time (RTT) and Time to live (TTL)/Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms/Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm/Round Robin Scheduling Algorithm with Different Arrival Time/Selfish Round Robin CPU Scheduling/Find the order of execution of given N processes in Round Robin Scheduling/Calculate server loads using Round Robin Scheduling/set::lower_bound() Function in C++ STL/Implementation of lower_bound() and upper_bound() in List of Pairs in C++/Difference between std::set::lower_bound and std::lower_bound in C++/Difference between std::set vs std::vector in C++ STL/std::minmax() and std::minmax_element() in C++ STL/std::rotate vs std::rotate_copy in C++ STL/std::bitset::to_ullong and std::bitset::to_ulong in C++ STL/std::upper_bound and std::lower_bound for Vector in C++ STL/std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++/std::string::append vs std::string::push_back() vs Operator += in C++/Vector push_back() in C++ STL/vector :: cbegin() and vector :: cend() in C++ STL/unordered_multiset cend() function in C++ STL/unordered_multiset bucket() function in C++ STL/unordered_multiset emplace_hint() function in C++ STL/unordered_multiset end() function in C++ STL/unordered_multiset size() in C++ STL/unordered_multiset emplace() function in C++ STL/unordered_multiset find() function in C++STL/unordered_multiset erase() function in C++ STL/unordered_multiset clear() function in C++ STL/unordered_multiset swap() function in C++ STL/unordered_multiset bucket_size() function in C++ STL/unordered_multiset bucket_count() function in C++ STL/unordered_set bucket_count() function in C++ STL/unordered_set cbegin() function in C++ STL/array::cbegin() and array::cend() in C++ STL/array::rbegin() and array::rend() in C++ STL/multimap rbegin in C++ STL
https://www.geeksforgeeks.org/multimap-rbegin-in-c-stl?ref=asr10
PHP
multimap rbegin in C++ STL
unordered_multiset clear() function in C++ STL, What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, jQWidgets jqxTreeMap width Property, Round Robin Scheduling Algorithm with Different Arrival Time, Difference between Flow and TypeScript, unordered_multiset emplace() function in C++ STL, jQWidgets jqxTree destroy() Method, unordered_set bucket_count() function in C++ STL, jQWidgets jqxTree collapseAll() Method, Find the order of execution of given N processes in Round Robin Scheduling, jQWidgets jqxScrollView buttonsOffset Property, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Vector push_back() in C++ STL, jQWidgets jqxListBox enableHover Property, Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm, std::rotate vs std::rotate_copy in C++ STL, Selfish Round Robin CPU Scheduling, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxSlider buttonsPosition Property, std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++, std::upper_bound and std::lower_bound for Vector in C++ STL, Difference between Round trip time (RTT) and Time to live (TTL), jQWidgets jqxSlider rtl Property, Difference between std::set::lower_bound and std::lower_bound in C++, jQWidgets jqxTooltip opacity Property, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, unordered_multiset erase() function in C++ STL, jQWidgets jqxToolBar height Property, PHP, std::minmax() and std::minmax_element() in C++ STL, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, Node.js date-and-time Date.transform() Method, unordered_multiset size() in C++ STL, TypeScript Optional Parameters, jQWidgets jqxToolBar theme Property, Difference between std::set vs std::vector in C++ STL, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, Steps to Diagnose and Resolve a Slow Network, How to use Optional Chaining with Arrays and Functions in TypeScript ?, Calculate server loads using Round Robin Scheduling, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, jQWidgets jqxScrollView showButtons Property, Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms, jQWidgets jqxScrollView disabled Property, jQWidgets jqxSplitter destroy() Method, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, set::lower_bound() Function in C++ STL, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, jQWidgets jqxTree collapseItem() Method, std::string::append vs std::string::push_back() vs Operator += in C++, unordered_multiset swap() function in C++ STL, unordered_multiset cend() function in C++ STL, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), jQWidgets jqxSortable opacity Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, multimap rbegin in C++ STL, vector :: cbegin() and vector :: cend() in C++ STL, jQWidgets jqxSlider height Property, jQWidgets jqxSwitchButton onLabel Property, unordered_multiset bucket_size() function in C++ STL, unordered_set cbegin() function in C++ STL, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, jQWidgets jqxToolBar tools Property, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTree width Property, Implementation of lower_bound() and upper_bound() in List of Pairs in C++, jQWidgets jqxTree clear() Method, TLS Handshake?, Algorithm for Dynamic Time out timer Calculation, Adhoc TCP, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, jQWidgets jqxTabs position Property, Differences between Wireless Adhoc Network and Wireless Sensor Network, jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, std::bitset::to_ullong and std::bitset::to_ulong in C++ STL, unordered_multiset emplace_hint() function in C++ STL, unordered_multiset bucket_count() function in C++ STL, unordered_multiset find() function in C++STL, unordered_multiset bucket() function in C++ STL, Impact of Three-way Handshake and Slow Start Algorithm, array::rbegin() and array::rend() in C++ STL, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, array::cbegin() and array::cend() in C++ STL, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, unordered_multiset end() function in C++ STL, How to Sort an Array Having Optional Properties in TypeScript ?
GeeksforGeeks
[-0.0219664611, -0.00370479119, -0.00995375775, 0.0271466114, 0.0101963719, -0.0469492115, -0.0139929634, 0.0232123211, -0.00776366889, 0.00918657053, -0.029376043, 0.0227533206, -0.0060719233, -0.00838004146, -0.00153191481, -0.0131929908, 0.0186092, 0.0177829973, -0.0319464467, -0.019999316, -0.00473426422, -0.00483917864, 0.0101242438, 0.00503917178, -0.0203796308, -0.00112455164, -0.0353823975, -0.0216648318, -0.0225041471, -0.014779822, 0.0219140034, 0.0228188913, 0.0244319513, -0.0100783436, -0.0476049297, 0.0564439707, 0.0322874188, -0.00137208414, -0.0133175766, -0.00145896652, 0.0134946201, 0.0329431333, 0.026294183, -0.00654076, -0.0223336611, 0.0286678709, -0.0068259961, -0.0270679258, -0.0370610282, 0.00347201223, 0.0450082943, 0.0396838896, 0.0233565774, 0.0175207127, 0.0232254341, -0.00277859345, 0.0210484602, 0.0247073509, -0.0187141132, -0.0295071863, -0.0118356608, -0.0025622074, 0.0102226008, -0.0217041746, -0.00654403819, 0.0153043941, -0.0510146469, 0.0377429724, -0.00853085518, 0.001317168, -0.0155404517, 0.0321038179, 0.00128520187, 0.00518998643, -0.0131405341, 0.0377954282, 7.64830402e-05, 0.0239860639, 0.0097832717, 0.045742698, -0.034411937, 0.0217172895, -0.0195796583, -0.00178354548, 0.0335463919, -0.00182944559, -0.00187206711, -0.0287727863, 0.0713942796, 0.0127339903, -0.0144257359, 0.00719319656, -0.00486868573, -0.00673419563, 0.0012679894, 0.0151207941, 0.0166027099, 0.0239991788, -0.0357233658, 0.0530080236, 0.0190682, -0.00671124551, 0.00387855573, 0.0102422722, 0.00155486481, 0.0276711844, 0.00224910327, 0.00359987677, -0.0352774821, -0.00876035634, 0.0211927183, 0.018032169, -0.00780956866, 0.056024313, -0.0256122388, 0.00486868573, -0.020182915, 0.00645551691, -0.00380314863, 0.0210746881, -0.0274088979, 0.0141241066, 0.00566538, 0.0339922793, -0.0438280068, 0.0111406026, -0.00793415494, 0.0213763174, -0.0171535108, -0.00922591332, 0.00956688542, -0.0303465016, -0.00493753608, -0.0551325381, -0.00729155354, 0.033152964, 0.0392117724, -0.0138487061, -0.0141241066, -0.021795975, -0.0281433, -0.0511720181, 0.00508179329, 0.0410215482, -0.0485229306, -0.0430936068, -0.000976196083, 0.0447460115, 0.00683255307, -0.000485229306, -0.0388970301, 0.0246680081, 0.0420444645, -0.0139667355, -0.0133962631, -0.0143863931, 0.0157502815, -0.00405559875, 0.0181502, -0.0189632848, 0.0359331965, 0.0197108015, 0.0280121565, 0.0211140309, -0.0118487747, 0.0323923342, 0.044509951, -0.0262286104, -0.02738267, 0.0434345789, -0.0146617936, 0.0411526896, 0.00721942494, -0.0155929094, 0.00916689914, -0.0297432449, 0.0379003435, 0.0191206578, -0.0118684461, 0.0132979052, 0.00956032891, -0.0192255713, 0.00727188215, 0.0141634494, 0.00199665292, 0.00415067747, 0.0328382216, -0.00524244364, 0.0439329222, -0.0134946201, -0.00545882946, 0.0192255713, 0.0331791937, 0.0211664885, 0.0635256916, 0.0169699118, -0.00297858659, 0.0179665983, 0.0455328673, 0.0378741138, -0.0100652296, -0.0357758254, -0.00735056819, 0.0133700343, 0.0365364552, -0.0148847364, -0.0259269811, -0.00295235799, 0.0132585624, -0.0336250775, -0.0235664062, -0.00612765923, -0.00102619443, 0.0153437369, 0.0115930457, 0.00170158106, -0.0439329222, 0.0264908969, -0.00702271052, -0.0411526896, -0.0064128954, -0.0335726216, 0.0379790291, -0.0427001789, -0.0095341, -0.0150027657, -0.021428775, 0.0400773175, -0.00982261449, 0.0111799454, 7.34606e-05, 0.0382675417, -0.0220189188, -0.0263728686, 0.0152388224, -0.00265400764, -0.0448509231, 0.0125044901, -0.0022589392, 0.0137306778, 0.0211271457, 0.0203402881, -0.037821658, 0.0161437094, 0.0494933873, 0.0482606441, -0.014779822, -0.0098029431, -0.0205501169, -0.0180190559, 0.0393953733, 0.00790136866, 0.0399199463, 0.0120061468, -0.00234909984, 0.0203534011, 0.0105570154, -0.0188583713, -0.0165502541, 0.00223598909, -0.00209992821, 0.0410477743, -0.00604897318, -0.00181469205, 0.024497522, 0.0185174, 0.039106857, 0.00942262821, 0.0107668443, -0.0348315947, 0.0333890207, -0.0100586722, 0.000332365686, -0.0099865431, 0.014229021, -0.0120586036, -0.026661383, -0.00240811426, 0.0160912517, -0.0485229306, 0.00485229306, 0.00772432564, 0.0118684461, -0.00834725518, 0.0177961122, 0.0193304867, -0.0109766731, -0.0117635317, -0.0301891305, 0.00147781824, -0.0223074332, -0.00415723491, -0.0190682, -0.00437034247, 0.0157896243, 0.0389232598, 0.00492114294, -0.0333890207, -0.00517031504, -0.00440640654, 0.0251401234, 0.0112258457, -0.00873412751, -0.0571783707, 0.000166182843, -0.0284318142, -0.041992005, 0.000128376749, 0.0224385764, -0.0142945927, -0.00817021262, -0.0766924545, -0.00245565362, 0.0227664337, 0.00754072564, -0.0164322238, 0.0130815199, 0.00461295666, -0.0228188913, 0.0125110475, -0.0106619298, -0.0236844346, -0.00196550647, 0.0158683099, -0.0059997947, -0.0384511426, 0.00345234084, 0.0363528542, -0.00996031519, -0.0517752767, -0.0166289397, -0.00303268316, -0.0311858188, 0.00923902821, -0.00986195728, -0.0175207127, 0.000265974493, 0.00523916492, 0.0131667629, 0.036588911, -0.010720945, -0.0137175629, 0.0321038179, 0.00826201215, 0.0159863383, -0.0108389733, 0.00550800841, -0.0295596439, 0.000990949688, 0.0514343046, 0.000760219875, -0.00678665284, 0.00394412735, -0.00480639283, 0.023238549, -0.00809152611, -0.0442214385, -0.00824234076, -0.012786448, 0.0344906226, 0.000844233378, 0.0357495956, -0.0118291033, 0.0296645593, -0.0133044627, -0.0479459, -0.00552768, -0.0163928811, 0.0375331417, 0.0310809035, 0.029008843, -0.000615552708, 0.0311333612, 0.0236844346, -0.00488507887, -0.0327070765, 0.0119471317, 0.00499655027, 0.00870789867, -0.00644568121, 0.0103865294, 0.0419395491, -0.0460836701, -0.00248516095, 0.0424378924, -0.014229021, -0.012884805, -0.00492770039, 0.00898985658, -0.0208124034, -0.00222943188, -0.0166945104, 0.0082488982, -0.0101504726, -0.0113504315, 0.00963901449, -0.03097599, -0.016930569, -0.0324710198, -0.0653617, 0.0129503766, 0.0146355648, 0.00676698145, -0.00850462727, -0.0486803, -0.0125372754, 0.0154748801, -0.0505425334, 0.0258482955, 0.0473688692, 0.0012319251, 0.0129634906, -0.00479983585, -0.0188846, 0.0284055844, -0.0115799317, -0.0267400686, 0.0395789742, -0.0243794937, -0.0112848599, -0.00246385019, -0.0467131548, -0.025940096, -0.00650141668, 0.00314415479, 0.0231467485, 0.0215599183, 0.00679321028, -0.0122290896, 0.00898329914, 0.0145699931, 0.00888494216, 0.0337299928, 0.0285105, 0.0274351258, -0.0490999594, 0.00524244364, 0.0139142778, -0.0181370843, 0.00677353889, 0.0364839956, 0.0391330868, 0.0279596988, 0.00871445611, 0.0155929094, 0.026661383, -0.00982917193, -0.0153961945, 0.0259138681, 0.0187796857, -0.00666206703, 0.0335988514, -0.0121438466, -0.00406871317, 0.0297170151, -0.0241696648, 0.0303989593, -0.00544571551, 0.0569160841, 0.0444050394, -0.0234877206, -0.000245688308, -0.0367725119, 0.000357364828, 0.000324374152, -0.00451132096, 0.0228582341, 0.0138224782, 0.0013770021, -0.0130225047, -0.0342545658, -0.000661452767, -0.00949475728, 0.0128520196, 0.0315267891, 0.00870789867, -0.00358348386, -0.0259663239, -0.0122618759, -0.0211927183, 0.0343594812, -0.0263728686, -0.0369298831, -0.0193960574, -0.0166027099, -0.0175600555, 0.0068259961, -0.0160387959, -0.0124651473, -0.000498343608, -0.00987507217, -0.00223271037, -0.00833414122, -0.0394740589, 0.020182915, 0.0235008355, -0.0385298282, 0.0257827248, -0.00302940444, -0.0185042843, 0.0502015613, 0.0195534285, -0.0165502541, 0.0381101705, -0.00513097178, -0.00748171099, -0.0356971398, 0.0182944555, -0.056548886, -0.0182288848, -0.00723909633, 0.0333103351, 0.016576482, -0.00538670085, 0.0151470229, -0.0174289122, 0.0420444645, -0.000587684801, -0.0466869287, -0.0189632848, 0.0242090076, 0.000946688931, 0.00838004146, 0.0398937166, 0.00145814684, 0.0203009453, 0.00226385705, 0.00865544192, 0.0331791937, -0.00162043632, -0.0018425599, 0.00790136866, -0.0106422585, -0.00186223141, -0.00984884333, -0.0176387411, -0.0150945652, -0.00282449345, -0.023763122, -0.00551128667, -0.0145568792, 0.0226484053, 0.0141109927, 0.00802595448, -0.0160912517, -0.00395396305, 0.00604569493, -0.00236221426, -0.03244479, 0.0200517736, 0.0139405066, -0.00750794, 0.0114946887, 0.000630716095, -0.00074546627, 0.0172715392, -0.0133765917, -0.0321300477, -0.0204583164, -0.00432116352, -0.0126487473, 0.0434083492, 0.0158158522, -0.00479655713, -0.0217304043, -0.00591455167, 0.0113963317, 0.0245237518, -0.0116651747, -0.00281465775, -0.00285236142, 0.00254253601, 0.0314481035, -0.0225303769, 0.013861821, 0.019632116, 0.0086160982, 0.0195272, -0.0349102803, 0.00773088308, 0.00205074949, -0.0155797945, -0.00322939758, -0.0195140857, -0.00784235448, 0.0069899247, -0.0147404792, -0.00711451052, -0.0168781113, 0.00687845331, 0.00851774123, 0.00552112237, 0.0120127033, -0.00400969898, 0.00977671426, -0.0287727863, 0.017101055, -0.0258089527, -0.0195796583, 0.010281615, 0.00841282681, -0.00409166329, 0.00822922681, -0.0248122662, -0.00442279968, -0.029900616, 0.0276187267, 0.00540637225, 0.0301104449, -0.00683911, -0.0544505939, 0.0387396589, 0.0202484876, 0.0133110201, -0.0114684599, 0.0294809584, -0.00622601667, -0.0248122662, -0.0348315947, -0.00419985643, -0.0367987417, -0.0314743333, -0.0218222048, 0.0234746058, 0.00965212844, 0.0154224234, -0.0312382746, -0.0132323345, -0.00323103694, -0.0113635454, 0.0159863383, -0.00161961676, 0.00927181356, -0.0458738394, 0.0103275152, -0.00205894583, -0.0275400411, 0.0387921147, -0.0407068022, 0.0192386862, -0.0293498151, -0.00688501028, 0.0154617662, 0.0231729783, -0.0104717724, -0.0175469406, 0.0121438466, 0.0179403704, -0.00667846, -0.0129241478, -0.0429100059, 0.00073358143, -0.0214681178, -0.0102357157, -0.00954721402, -0.0111668305, 0.0065964954, 0.00377364131, -0.00572439423, 0.0240909792, -0.00692435307, -0.0244319513, -0.0120454896, 0.00167535245, 0.0185698569, -0.0216386039, -0.0204189736, -0.0100455582, 0.013153648, 0.00520637911, -0.0323398784, -0.00789481215, -0.0128651336, 0.015658481, 0.00726532517, -0.00709483912, -0.0184124839, 0.0290875286, 0.00381626282, 0.00784891192, 0.000387076929, 0.00644895947, 0.0112455171, -0.0202616025, -0.0111668305, -0.00772432564, 0.0188321415, -0.00266384333, 0.0137569066, -0.0359069668, -0.0107865157, -0.030084217, 0.0138487061, 0.00738991098, 0.00258679665, -0.00965212844, -0.00314579392, -0.0232910067, 0.00579980155, -0.0333103351, 0.0214681178, -0.0385036021, -0.0172190834, -0.0301104449, -0.00578340841, 0.056758713, -0.00147453975, -0.0290613, 0.0194747429, 0.0301891305, 0.00923902821, -0.0158027373, -0.0186223127, -0.00579324458, 0.00345561956, 0.00748171099, 0.0042359205, -0.0164453387, 0.00524900062, -0.033703763, 0.00477688573, 0.0291662142, 0.0149765369, 0.00769809727, 0.0369561128, 0.00222451403, -0.0162355099, -0.0229762625, -0.0143995071, -0.00672108168, -0.0449820682, 0.0198681727, -0.0172321964, -0.00971114263, -0.0211140309, 0.0236975495, 0.0137831345, -0.0213500895, 0.000493425759, 0.0047408212, -0.00891772751, 0.0299793016, -0.000356340257, 0.00332939415, 0.0180977415, -0.0148978513, -0.00439984957, -0.0111865029, -0.0257433821, 0.00726532517, -0.000923738873, 0.00800628308, 0.0150289936, -0.00729811098, 0.0111274878, -0.0183731411, 0.0307923891, -0.0111537166, 0.0351987965, -0.0188714862, 0.0179272555, 0.0226484053, 0.00817676913, 0.0295071863, -0.0128389047, -0.00820955541, 0.0290875286, 0.0202878304, 0.0288514718, 0.00294088293, -0.0425428078, -0.0208255164, 0.0202747155, -0.00701615354, 0.0318415351, -0.0137175629, -0.0316579342, 0.00744236819, 0.0160125662, 0.00470803538, -0.00488507887, 0.0590143725, 0.00899641309, 0.00870789867, 0.0134421634, -0.00714729633, 0.0123930182, 0.0445361808, 0.0475524701, -0.0321300477, -0.0197894871, -0.00327529781, 0.0136651061, -0.0104717724, -0.00179010269, -0.0333627909, 0.0130028334, -0.0314481035, -0.0333627909, -0.0223730057, 0.0333103351, 0.0060915947, -0.000468016777, 0.00783579703, -0.00495065, -0.0032785763, 0.0259794388, 0.0221894048, 0.00420313468, 0.0244712941, 0.0154093085, 0.014229021, -0.00371790561, 0.00391789852, 0.0142683638, -0.00773744, 0.00359987677, 0.0175469406, 0.0145306503, -0.00811775494, 0.0099668717, -0.0307661612, 0.015487995, -0.00578996586, -0.0347004533, 0.0143601643, -0.00950131379, 0.0254548658, 0.0111471592, 0.00256384676, -0.00112537132, 0.0409166329, -0.00921935681, 0.0189501718, 0.000639322388, 0.0256515816, 0.0149765369, 0.000895051344, -0.0115602603, 0.0235139485, 0.0027835113, -0.022713976, -0.0330480486, 0.00817021262, 2.18486384e-05, -0.0262679532, -0.00568833, 0.0345168523, -0.0183206853, 0.00977671426, 0.0102029294, 0.0156322513, -0.0287465565, 0.0154093085, 0.000849970907, 0.00124012155, -0.0452443548, -0.00721942494, 0.016051909, 0.0310546756, -0.00169994181, 0.0178747978, 0.0135208489, 0.0208648592, 0.00428509945, 0.00777678285, -0.0103209587, -0.0299530737, 0.0109111024, -0.0120848324, 0.000674976909, -0.000633584859, -0.0244450644, 0.000138622301, 0.0180715136, -0.0265302397, 0.0318153054, 0.0354873091, 0.021258289, -0.00718008215, 0.0516441353, -0.023592636, -0.0301629025, -0.0450869799, -0.00744892564, -0.000228680699, 0.00983572938, -0.0241434369, -0.0145831071, -0.0150027657, 0.0297170151, -0.00561948, -0.0130290622, -0.0212976318, 0.0167207401, 0.0109242164, 0.0260581244, -0.020366516, -0.000491786457, -0.0288252439, 0.00477360701, -0.00601946609, 0.0259663239, 0.0159469955, 0.0279334709, -0.00306874746, 0.0546604246, 0.0343070216, 0.0161961671, -0.00395724177, 0.0119930319, -0.0253106095, -0.0187927987, -0.0109963454, 0.00708828215, -0.00613749493, -0.0118225459, -0.00704238191, 0.0208124034, 0.0251138955, 0.000210648534, 0.0492048748, 0.000718418043, -0.0107340589, -0.00161961676, -0.0261236969, -0.0177436545, -0.0176125113, -0.0161043666, 0.0139273927, -0.0292973574, -8.37573825e-05, 0.0183993708, 0.0156191373, -0.000880297739, -0.0295596439, -0.0236450918, -0.0215074606, -0.0304776449, -0.00388839142, -0.00662600296, -0.00100488367, 0.0161437094, -0.00401625596, -0.0410215482, 0.0119274603, -0.0450869799, 0.00330480491, -0.0197108015, -0.0296383295, -0.00529162213, 0.00334578706, -0.0238418076, -0.0247860365, -0.0340709649, -0.00950131379, -0.0266089253, -0.00575390132, -0.00787514076, 0.0206681453, -0.00133192167, 0.0244319513, 0.0276974123, -0.0226746332, 0.0385036021, -0.0210878029, -0.0327333063, -0.0140060782, -0.0201304592, 0.00160978094, 0.037402, -0.00143601641, 0.0133306915, 0.0481819585, 0.00588504458, 0.0417034924, -0.0447984673, -0.024851609, -0.0122749899, 0.0285891853, 0.0337824486, 0.0190682, -0.000803661, 0.0140323071, 0.0135864206, 0.0307661612, -0.00545227248, 0.0136651061, -0.0246548932, 0.00968491472, -0.0120192608, -0.0248122662, -0.0206812602, -0.0169961397, 0.0240122937, 0.040339604, 0.0399986319, 0.00894395635, -0.00891117, -0.003691677, -0.0145437643, 0.00616044505, -0.0366675965, 0.0219926909, -0.0219926909, 0.00734401075, -0.0099013, 0.0183731411, 0.00552440109, 0.00793415494, 0.0218090899, -0.0370348, 0.00311956531, -0.0214025471, 0.0179010276, -0.00246221083, 0.00221303897, -0.0203927439, 0.0401560031, 0.0210091174, -0.0215599183, -0.00933082867, -0.0206419174, 0.0219664611, -0.00392445596, -0.00194091722, 0.0091209989, -0.0222943183, 0.00568833, -0.00600963039, 0.00684566749, -0.0153306229, -0.00555063, 0.0210746881, 0.023238549, 0.00616700202, 0.00125979295, -0.0251925811, -0.00561620109, 0.0242352355, 0.0108652022, -0.00274416828, -0.0129897194, 0.0200517736, 0.00190321356, -0.0325497054, 0.0125897331, -0.00853741262, -0.000150814507, 0.00130651263, 0.00803251192, 0.0095341, -0.0137569066, 0.0133634768, 0.0253499523, -0.00285564, 0.0106619298, -0.0180715136, 0.0269892402, 0.0071013961, -0.0278810132, -0.0158158522, -0.00259991107, -0.00171961333, -0.0193042569, 0.0286154151, 0.020904202, 0.0131208627, 0.0327857621, 0.0137962494, 0.0202222597, -0.0230811778, -0.0154748801, -0.0370085686, -0.00603913749, 0.0175731685, -0.00102947291, -0.0086160982, 0.0241696648, -0.0177698843, -0.015133908, -0.0156191373, 0.0129897194, 0.00784235448, 0.00171305612, -0.0184649415, 0.0122356471, 0.0188977141, -0.0172453113, -0.00167453289, -0.0109307738, 0.00495720748, 0.0310284458, 0.00476049306, 0.0157371666, 0.00518342899, 0.0224123485, 0.0276711844, -0.0141109927, -0.00675386703, -0.00650141668, 0.0102947298, -0.00297694723, -0.0316579342, 0.00537030818, 0.0105766868, -0.000806529773, 0.0251138955, -0.00229664263, -0.0021228781, 0.00310809026, -0.00910788495, 0.0100586722, 0.0361692533, -0.0167994257, -0.0131143052, -0.00106143905, -0.0199862011, 0.000817185151, 0.0189632848, 0.00640633795, 0.0135864206, 0.0232778918, 0.0131274192, -0.00732433936, -0.0186747704, 0.000284621405, 0.0192911439, -0.00700303912, 0.0270416979, -0.00913411379, 0.0279596988, 0.0296907872, 0.00386544154, 0.0324710198, -0.0175338257, 0.0180059411, -0.0117307464, 0.0166945104, 0.0194091722, 0.00565226562, -0.00923902821, -0.0303465016, 0.014045421, -0.0419657752, 0.0104980012, -0.0108324159, 0.0120717185, -0.0382937714, 0.0234746058, -0.00777678285, 0.0246024374, -0.0118356608, 0.0178223401, -0.0236582067, 0.00201796368, -0.00672763865, -0.00726532517, -0.00410805596, 0.02738267, 0.0183469132, 0.00528834341, 0.0192124564, -0.00919968542, -0.00123110542, 0.040024858, 0.0165633671, -0.0328119919, -0.00334742642, 0.020733716, -0.00783579703, -0.0198419448, -0.0363266245, 0.000134011803, -0.00521293655, -0.0311333612, 0.0110029019, -0.00250483234, 0.0209566597, -0.0358020552, 0.0145306503, 0.00169994181, -0.00236385362, -0.00665551, -0.0155404517, 0.0126225185, 0.014963422, -0.0142945927, 0.0042162491, -0.0154355373, 0.0119536892, -0.0178485699, -0.00740958238, -0.00546866516, -0.00706861075, -0.0231205206, -0.0131274192, -0.0270679258, 0.00925214216, 0.00883904193, 0.00195075292, 0.0194354, -0.0291662142, 0.00534080062, 0.0157240517, 0.0130225047, 0.000394043891, 0.0107930731, 0.0180583987, 0.0184387136, -0.0141503355, -0.0153830806, -0.0110029019, -0.0021032067, -0.00455394248, -0.00893084146, 0.00280810054, -0.000457361399, 0.0242876932, 0.00116061606, -0.00492442166, -0.00553751551, -0.00364905549, -0.0110488022, -0.00449820654, 0.00785546843, 0.00712106796, -0.018189542, -0.00576701574, 0.00947508588, -0.0193173718, 0.029533416, 0.0127667766, 0.00993408635, 0.00929804239, -0.00724565377, 0.0105963591, 0.019815715, 0.00507851457, -0.0128257908, -0.0107537303, -0.0082488982, 0.00355397677, 0.0191337708, 0.030451417, 0.0199337434, 0.0130159482, -0.0227664337, -0.00887182727, -0.00919312797, -0.00734401075, -0.0116323885, -0.0342807956, -0.00487852143, 0.0115209175, -0.0163535383, -0.0546604246, -0.0114356745, 0.0241565499, 0.00910132751, 0.0159863383, -0.000586045498, -0.0140060782, 0.0046195141, -0.0544505939, -0.0419133194, 0.000635224162, -0.0125569478, -0.000493015919, 0.000144154896, -0.0146486787, 0.000855708437, 0.0227926634, -0.000351627299, 0.0296907872, -0.00403920608, 0.0224648044, -0.0163404252, -0.00230811769, 6.64936233e-05, 0.00254909298, -0.0285629574, 0.0265958104, -0.0135077341, 0.0106422585, -0.0361430272, 0.00698336773, -0.00766531145, 0.0148322796, 0.0113110887, -0.0158683099, 0.00746203959, 0.0291924439, 0.0195272, -0.0132847913, 0.00910788495, -0.00696369633, -0.00872101262, -0.0339660496, -0.00891117, 0.00605225191, 0.00494081434, 0.000904067419, -0.00265400764, -0.00771121169, 0.0218615476, -0.0186878853, 0.00455394248, 0.0107471729, 0.00239827856, 0.0269367825, 0.00878658425, 0.00500310725, 0.0048359, 0.0337824486, 0.000170588421, 0.0113766603, 0.0166945104, 0.010084901, -0.00669485284, -0.0259269811, -0.00476377131, 0.0126290759, 0.0146880215, -0.00782924052, -0.00770465424, -0.00220648176, -0.0246417802, 0.00618667342, -0.020012429, 0.0254286379, 0.00297202938, -0.003288412, 0.0186878853, -0.0180452839, -0.0115209175, 0.00184419914, 0.00616044505, -0.0132061057, -0.0265958104, -0.00488507887, 0.0262023825, -0.00024630304, -0.00911444239, -0.0117307464, -0.000911444193, 0.0177043118, -0.0197108015, -0.0186878853, 0.00629158784, -0.0162879676, 0.00492442166, -0.00681288168, 0.00801284052, -0.0189370569, 0.0015122433, -0.0165895969, 0.0107996305, 0.00329988706, 0.0174551401, -0.00453427108, -0.00447853515, -0.0310284458, -0.0232123211, 0.013055291, -0.0232123211, -0.0288777, -0.00026433522, 0.0124848187, -0.000992588932, 0.00728499657, -0.00326382276, -0.0271466114, -0.00483917864, -0.00763252564, 0.00250811083, -0.00902264193, 0.00655059563, 0.00593094435, 0.00311136898, 0.00140487, -0.00965868589, -0.0346217677, 0.0100193294, 0.00927181356, 0.0160650238, -0.021612376, 0.0171928536, 0.0228451192, 0.0214943457, 0.0114028882, 0.0144257359, 0.00992752891, 0.012615962, -0.0133503629, 0.0274088979, -0.016222395, -0.0327070765, 3.3323653e-05, 0.035146337, 0.0112651885, 0.00511457911, 0.00872757, -0.00921935681, 0.00268843258, -0.00214746757, -0.0214025471, -0.0100586722, -0.0151601369, -0.0277760979, 0.00149421114, 0.0181370843, 0.00274252915, 0.0141896782, -0.00849151239, -0.00702271052, -0.00209173164, 0.0256778095, -0.0297170151, -0.0161305964, 0.0160781387, 0.00839315541, -0.0252843797, -0.0147011364, 0.00634732377, -0.0474475548, 0.0245237518, 0.0222943183, 0.0181370843, 0.00309333671, 0.0109242164, -0.0114487885, 0.0276449565, 0.00406215619, 0.0249171797, 0.0394478291, -0.0104914438, 0.00848495588, 0.0100127719, -0.00655715261, 0.00854397, 0.0115930457, -0.0018196099, -0.000822922681, 0.0295858737, 0.00533752237, 0.00722598238, -0.0047441, 0.00655715261, 0.00485557131, -0.00927181356, -0.0259007532, -0.0243926086, 0.000362692517, 0.0321825035, 0.00485229306, 0.027199069, -0.0162879676, -0.0417034924, 0.00968491472, -0.0174944829, -0.0085701989, -0.00353758386, -0.000101994461, 0.0139011638, 0.0147142503, 0.0266482681, 0.0190288574, 0.0111406026, -0.00545882946, 0.011356988, 0.0326808505, -0.0137175629, -0.0193829425, -0.0178879127, -0.0186747704, 0.0161961671, -0.0123602329, -0.0026081074, 0.0162879676, 0.0069899247, -0.0103078438, 0.0262286104, 0.00193272077, 0.0127077615, -0.0269892402, 0.0360118821, 0.00949475728, 0.000341996492, 0.0505949892, 0.0193698294, 0.016379768, -0.000609815179, 0.010904545, -0.0353299379, -0.011711075, -0.0274875835, -0.0132585624, 0.0163010806, 0.0210091174, 0.00516047934, -0.0146880215, 0.00836037, 0.0150289936, -0.00643584551, 0.0404445194, -0.0201042295, 0.0142814787, 0.00975704286, -0.0209566597, 0.011356988, 0.0190682, 0.024497522, -0.00162043632, -0.0107012736, -0.0247991513, 0.00371790561, -0.0018327242, -0.00417034887, -0.00409822026, 0.00815054, 0.0305038746, -0.0235270634, 0.0173108838, 0.00617028074, 0.00754728261, -0.0188452564, -0.00744236819, -0.00812431239, -0.000280523178, -0.00863577, 0.0155929094, 0.0139929634, 0.0056686583, -0.00214582821, -0.0305563305, 0.0238549206, 0.00114176422, -0.0271466114, 0.0103865294, -0.00985540077, -0.0284580421, -0.00800628308, -0.000722926052, -0.00091554242, 0.0287465565, -0.000871281663, -0.00595061621, -0.0107537303, -0.00371462689, -0.011979918, -0.0135208489, -0.00378019852, -0.0167600829, 0.0306874737, 0.0244844072, -0.00177698839, 0.0133503629, -0.0105963591, -0.0105635729, 0.00203435658, 0.00309825456, 0.0202484876, 0.00031720227, -0.00925214216, -0.019645229, -0.0112520736, -0.0161830522, 0.0103471866, 0.00989474356, -0.00247860374, 0.0295071863, 0.00301137241, 0.00997342914, 0.0125503903, 0.00106799626, 0.0144388499, 0.0103734154, 0.0215336885, 0.0194616299, 0.0261105821, -0.0190157425, 0.00548177958, -0.0154355373, 0.0281957556, -0.0231074058, -0.000984392595, -0.0142552499, -0.0065046954, -0.0177305415, 0.00562603679, 0.00384577014, 0.00151060405, 0.00935705658, 0.0119471317, 0.0336513072, -0.00655059563, -0.0108193019, -0.00916689914, 0.00877347, 0.0220976043, 0.0110094594, -0.0133175766, 0.0052358862, -0.0108193019, -0.00641945237, 0.0142027922, -0.0158027373, -0.00765875448, 0.0107340589, 0.00597356586, 0.0284055844, -0.00664239563, -0.00602274481, -0.00275892206, -0.0143732782, -0.0106619298, 0.00200484949, -0.00610143039, 0.017297769, 0.0342545658, 0.00644568121, 0.0207992885, 0.0159994531, -0.0149240792, -0.00822266936, 0.00895051379, -0.0141896782, 0.0230811778, -0.00277203624, 0.00383593421, -0.0138880489, 0.00851118378, -0.0264515541, -0.00914722774, 0.018701, -0.00113274809, -0.00559652969, 0.00958655681, 0.00243434287, 0.0188321415, 0.00087537989, -0.00864888448, -0.0215205755, 0.0216517188, 0.000508589146, -0.00715385377, 0.00754728261, -0.0152912801, 0.00933738519, 0.00409166329, -0.00853085518, 0.00267040031, 0.00346873375, -0.00017888732, -0.00943574309, -0.000298965169, 0.0216517188, 0.000925378175, -0.0156322513, 0.00820299797, 0.0124192471, 0.0155273378, 0.00163764891, 0.00757351145, -0.010904545, -0.000423756, -0.00276056118, -0.0153961945, 0.0166551676, -0.00387199875, 0.0155273378, 0.0311858188, 0.0021228781, -0.0401560031, -0.006485024, 0.0143995071, -0.000194255641, 0.0129766054, -0.00453099236, -0.00665551, -0.0347004533, -0.000296301325, 0.0200517736, -0.0156191373, 0.000511048071, 0.010353744, -0.00508835027, -0.0149109652, 0.00144667178, -0.0099668717, -0.0219402332, -0.0135601917, -0.00388183445, 0.00908821356, -0.0263990965, 0.00937672798, -0.0200517736, 0.0222943183, 0.00391789852, 0.0128651336, -0.00270318612, -0.0313694179, -0.0185698569, -0.00195567077, -0.00764564, 0.00222615339, -0.0109701166, -0.013068405, 0.00513097178, -0.0139536206, 0.00360315549, 0.00241795, -0.0134290485, -0.0261630397, -0.0210353453, -0.0176125113, -0.0126290759, -0.00630470226, 0.010366858, 0.019815715, -0.0124258045, -0.00986195728, 3.5628902e-05, -0.00407199189, -0.0159994531, -0.00870134123, -0.00429493515, 0.00941607077, -0.0265958104, -0.000771694875, -0.017664969, 0.0194878578, -0.0171403978, -0.0113701029, 0.00242778566, 0.0204058588, 0.0132520059, 0.0100652296, -0.0071013961, 0.00630798098, -0.0144257359, -0.00195403141, 0.00244909641, 0.000609405397, -0.0193304867, -0.00413756352, 0.00509490771, -0.000642191153, -0.00830135494, -0.00311628683, -0.000792595849, -0.0166027099, 0.0175469406, -0.0102291582, -0.0332054198, 0.0258745234, 0.0238811504, 0.0162617378, 0.00585553749, 0.00723253936, -0.00556046562, -0.0146486787, 0.0116127171, 0.020537002, -0.0104389871, 0.0339398235, 0.00553095806, 0.00744892564, -0.00963901449, 0.0156453662, 0.0348315947, 0.0119536892, 0.0172453113, 0.0144781927, 0.0283531286, 0.000511457911, 0.00414084177, 0.017835455, -0.00411789166, -0.0128323473, -0.00113028917, -0.00776366889, -0.0107996305, 0.000555308885, 0.0074030254, -0.0138355922, 0.00399986329, -0.00822266936, 0.0206288025, 0.0153306229, 0.0156453662, 0.00513752922, -0.00655059563, 0.0151601369, 0.0132716773, 0.0110094594, 0.0100324433, -0.00517031504, 0.0308973026, -0.0151863657, -0.0300579872, 0.00826201215, 0.00231139641, 0.0163404252, 0.00898985658, -0.0152125945, -0.0174813699, 0.00827512704, 0.0141372215, -0.0123733468, -0.00897018518, -0.00771776866, 0.000424985454, -0.0141372215, 0.0155797945, -0.000555718667, 0.0037211841, -0.00544243678, -0.00938984286, 0.0146224508, 0.00679976726, -0.0152125945, 0.00242122868, -0.0298743881, -0.000803251227, -0.0249827523, -4.22885132e-05, -0.0025458145, 0.019448515, 0.000703254598, -1.49585048e-05, -0.000262081187, 0.0079079261, 0.0014196235, -0.00881937053, -0.00269498979, -0.0149765369, -0.0168125387, 0.0114750173, 0.00802595448, -0.00311792619, -0.00961934309, 0.0288777, 0.00403592736, 0.00130159478, 0.000833578059, 0.0119733606, -0.00140814856, 0.000594241952, 0.0043178848, 0.00228516781, 0.00837348402, -0.02576961, 0.0448771529, 0.0318415351, 0.0239204932, -0.00423919922, -0.0213500895, 0.00231795339, -0.00783579703, 0.0200780015, 0.00904887076, 0.00233926415, -0.00652436679, -0.0240778644, -0.0248122662, 0.0140716499, -0.00192616356, 0.0303202737, -0.00586537318, -0.015133908, 0.0247598086, -0.0395527445, 0.0100455582, -0.0127077615, 0.0290613, -0.00091554242, 0.0119536892, -0.0346742235, 0.0311071314, 0.00419329898, 0.0108389733, -0.000420067605, 0.00576701574, 0.00911444239, -0.00645223819, 0.00873412751, 0.0124651473, 0.0204714313, 0.000858167361, 0.018360028, -0.0120323747, 0.00469164271, 0.011966804, -0.00601946609, 0.00271957903, 0.0200386588, -0.0209435448, -0.0060719233, -0.0294022728, -0.00681943865, 0.0236975495, -0.00390150584, -0.00822922681, 0.00111881422, -0.00630470226, -0.0104783298, -0.00581291597, -0.0132126622, 0.00199337443, -0.0185174, -0.00672108168, 0.00897674169, -0.0124520333, 0.0208779741, -0.0069899247, -0.0069899247, 0.0297957025, 0.011711075, 0.00627847388, 0.0143732782, 0.0222025197, 0.00328185479, -0.00322611909, -0.00387855573, 0.00693746749, -0.0101176864, -0.0125897331, -0.0036556127, -0.0101176864, 0.00548177958, 0.00101389969, 0.0120979464, 0.0252974946, -0.0329431333, -0.0252843797, 0.00801284052, -0.00905542821, -0.00479655713, -0.00662928121, 0.00610143039, 0.0172584262, 0.00227697124, 0.000933574629, -0.0209304318, -0.0287727863, -0.015133908, -0.0120520461, -0.0225303769, -0.00611454481, 0.0360381119, 0.000897510268, -0.0157502815, 0.0154617662, 0.0147404792, -0.00439329213, 0.000693828741, 0.00646535261, -0.0161830522, 0.0164322238, -0.0049801576, -0.0155404517, 0.00450148527, -0.000443017634, -0.0191075429, -0.0117635317, -0.0100652296, 0.00646207388, 0.0223730057, 0.00748171099, 0.00924558565, 0.0097177, -0.00608503772, -0.017297769, 0.0147535931, -0.00591127295, 0.00155814341, 0.00881281309, -0.0123143326, -0.00032293977, 0.00860954169, 0.00170977751, -0.00729811098, 0.0175993983, -0.00385888433, 0.00603258051, -0.0106553733, 0.0296645593, 0.0203796308, -0.0164453387, 0.0124782613, 0.0276187267, 0.0128126759, 0.0233959202, 0.00530801527, 0.00428182073, 0.00698336773, -0.0167338531, -0.0204320885, -0.00483262166, 0.00830135494, 0.0100521147, -0.00589160156, -0.0289301574, 0.0232910067, -0.00419985643, 0.0255597811, 0.0334939361, -0.00479655713, 0.00527195074, -0.018189542, -0.0318415351, -0.0122553185, 0.0107668443, 0.00787514076, -0.00104504626, 0.00714729633, 0.0183075704, 0.017835455, -0.0125372754, 0.0135077341, -0.053532593, -0.00546210818, 0.0196845718, -0.00249827513, 0.0244844072, -0.0136126485, 0.00587520888, 0.00435394933, -0.000597520557, -0.00920624193, 0.00919312797, -0.0042359205, 0.026464669, 0.0210746881, 0.00654403819, -0.0333890207, 0.0102881724, 0.00982917193, 0.00178846344, 0.00107783196, -0.0166158248, -0.00157863449, -0.0215992611, -0.0325234756, 0.0151732508, -0.016379768, 0.00536702946, 0.0260450095, 0.00966524333, -0.0340971947, -0.0187927987, 0.0274875835, 0.0011524196, -0.0158945378, 0.00660961, -0.00443591364, -0.00975048635, 0.00628503086, 0.012799562, 0.00937017146, 0.00264581107, 0.0150552224, 0.0242745783, 0.0110684736, -0.026661383, -0.0309497602, -0.00709483912, -0.0265433546, 0.00143765577, -0.0015950274, 0.0005282606, 0.00377036282, -0.00257368246, 0.0195665434, -0.00353430538, 0.00615060935, -0.0180977415, 0.00436706375, -0.00931115635, -0.00958655681, -0.0251270086, -0.0123864617, -0.00128602155, 0.00697025331, -0.0187796857, -0.00180813484, -0.00338676944, -0.0345168523, 0.00720631098, 0.0122946613, 0.00561948, 0.0207992885, -0.037113484, 0.00202452089, 0.00237532845, 0.0229762625, 0.0402346887, 0.00295727584, -0.00864232704, 0.0282482132, 0.0257433821, 0.0158158522, -0.0241565499, -0.00635388074, -0.00277695409, 0.0223992337, 0.0189501718, -0.0127208764, 0.0321300477, -0.0138093634, -0.00945541449, 0.00763252564, 0.003737577, 0.0289301574, -0.00867511332, 0.0157502815, 0.00576045876, -0.0121569615, -0.00382282, -0.00228352845, 0.0102881724, -0.0114881312, -0.000327038, 0.0119405752, 0.00132536446, 0.0289301574, 0.02738267, 0.00462935, 0.000638912548, 0.00157945417, 0.00912755635, 0.0140060782, 0.00541948667, 0.0124520333, 0.0135470778, -0.00239827856, 0.00272941473, 0.00280810054, -0.022713976, 0.00834725518, 0.0206550304, -0.000158601135, -0.0138880489, 0.019094428, -0.0022687749, -0.0164584536, -0.016025681, 0.0213369746, -0.000206960132, 0.00728499657, 0.01916, 0.0242876932, 0.0327070765, 0.00900952797, -0.00264417171, -0.00881281309, 0.00426542759, -0.010170144, 0.0111209312, 0.00678009586, -0.0146880215, 0.023592636, 0.0219664611, -0.0171535108, 0.0237368923, -0.0125700617, 0.0094423, -0.00596373, 0.000104555846, -0.00620634481, -0.00527195074, 0.00263105752, -0.0249040667, -0.01916, 0.0215336885, 0.00257040374, 0.0220713764, -0.0120454896, -0.00176551333, -0.00399658456, -0.0161568243, 0.0125635043, 0.00377692, -0.00191468862, -0.00255728955, -0.005898159, -0.00590471597, -0.0158027373, -0.024681123, 0.0121438466, 0.00664239563, 0.0144781927, 0.0352250226, 0.0307137035, -0.00469164271, -0.0079472689, 0.00282777217, 0.0239336081, 0.0165502541, -0.0133962631, 0.0114028882, -0.0139273927, 0.00999310054, -0.0154617662, 0.00447197817, -0.0184124839, 0.0247335806, -0.0111996168, 0.00499655027, -0.00109340518, 0.00434739236, 0.00435394933, -0.00645551691, 0.0023966392, -0.00714073936, -0.000275605329, 0.000377036282, -0.00126716972, 0.0113373166, 0.00966524333, 0.0124585899, -0.0172846541, 0.00608831644, 0.030267816, -0.00296547217, -0.00439001387, 0.0127208764, 0.0238549206, 0.0276187267, -0.0129634906, -0.0342807956, -0.00521621481, -0.00993408635, 0.000998326461, -0.00630142353, -0.0127536617, -0.0145831071, 0.00088685489, -0.0206681453, -0.00752761122, -0.00490802899, -0.00501950039, 0.0186878853, 0.00552112237, -0.00134257704, -0.0126880901, 0.0233303495, -0.020891089, 0.0204189736, 0.00459656399, 0.0280121565, -0.0174420252, -0.0178092271, -0.0138880489, -0.00331464061, -0.0236582067, 0.0207861736, 0.00860298425, -0.00112537132, 0.00511130039, 0.0105570154, 0.0176256262, 0.00381626282, -0.0115602603, -1.54323607e-05, -0.0025064717, 0.00346217654, 0.000845872681, -0.0164977964, -0.00435067061, 0.0113242026, 0.00633420935, -0.0037572484, -0.0233959202, -0.0196845718, 0.0113504315, 0.00550800841, -0.0261630397, 0.00799316913, 0.0221894048, 0.0116782887, -0.0237762351, 0.03832, -0.0184518266, 0.0385036021, -0.000147535931, -0.019094428, 0.0143208215, 0.00341627654, 0.00581947295, -0.00472770724, 0.00118684466, -0.0120913899, 0.0176125113, -0.0161961671, -0.0195140857, 0.0122684324, -0.025218809, 0.0036752841, -0.0181239694, 0.0346742235, 0.0121372892, -0.0147929369, 0.0185698569, 0.0042260848, -0.0195140857, 0.0110619161, -0.0210746881, 0.0123995757, -0.000866363815, -0.00358676258, 0.0231467485, 0.0145306503, 0.0201960299, 0.00729811098, -0.0241040923, -0.00838004146, 0.00562931551, 0.00939639937, -0.00437362073, 0.00458672829, 0.00235237856, -0.000262081187, 0.00900952797, 0.00225074263, -0.00914067123, 0.00342939072, 0.013055291, -0.0191993434, -0.0123077752, -0.00415723491, -0.000229090525, -0.0180190559, 0.0270154681, 0.0154355373, 0.00738991098, -0.00529162213, -0.0110422447, 0.0114225596, -0.0112258457, 0.00146552362, 0.00614077365, 0.0218484327, 0.0105898017, 0.00560636539, -0.0216648318, 0.0270154681, 0.00689156726, 0.00175895623, 0.0100914575, -0.00624896633, -0.0102619436, 0.00882592704, -0.00737679657, -0.0233041197, -0.0308448467, -0.0117373029, 0.0119864754, -0.0050522862, -0.00468836399, -0.010366858, -0.0213107467, -0.0106750447, 0.00999965798, -0.0121307326, -0.0124258045, -0.00374085549, -0.0132847913, -0.0097832717, -0.000672518, 0.0054653869, -0.0109307738, -0.00073399127, -0.00923902821, 0.0128257908, -0.00347201223, 0.019094428, 0.0132716773, -0.00150814513, 0.00442279968, -0.0144650787, -0.0016310917, -0.013238891, 0.00840626936, -0.00924558565, -0.00395396305, 0.00137782167, 0.00399330584, -0.00239008223, 0.00524900062, 0.00116799283, 0.0367987417, -0.0131011913, -0.00965868589, -0.00675386703, -0.00813742634, 0.00822266936, 0.00659321714, 0.00230156048, -0.0128913624, -0.0119274603, 0.0289039295, 0.0225434899, -0.0130093908, -0.0279859267, 0.0224779192, -0.00102127658, -0.0120258182, -0.00429165643, -0.0311858188, 0.000260237, -0.00837348402, -0.0164453387, 0.0246286653, -0.00701615354, -0.025572896, 0.00471787155, -0.00619650912, 0.0288514718, -0.00664239563, -0.00490147155, -0.00958, 0.0238811504, -0.0294547305, 0.00259663234, -0.00237205, -0.0230942909, -0.00551456539, -0.0195272, 0.00683255307, 0.00672763865, 0.0022687749, 0.0110225733, 0.0232254341, -0.00285236142, -0.00258679665, 0.0206156876, 0.0111078164, -0.0221762899, -0.00739646843, 0.00194583507, -0.0175469406, 0.00394740608, -0.00143847533, 0.00575390132, -0.0057309512, 0.00842594076, 0.0103144012, -0.00616044505, -0.00580635853, -0.0054752226, 0.0104848873, -0.0256515816, -0.0029851438, -0.0232123211, 0.0111930594, 0.0207206029, 0.0276449565, 0.00643256679, -0.0268449821, -0.00714073936, -0.0115668168, -0.00438345643, -0.00231631426, -0.00021433692, 0.00227533188, -0.017835455, -0.0203402881, -0.0352512524, -0.0133503629, 0.00395068433, 0.0113897743, -0.00794071145, 0.00599323772, 0.00837348402, 0.0354086235, -0.0149765369, -0.00521949353, -0.000899969193, 0.0165371392, 0.0157502815, -0.0151994796, 0.00780301169, -0.00381626282, -0.00288514723, 0.0159863383, -0.0443525799, -0.0236319788, 0.0187665708, 0.0128913624, 0.00771121169, -0.000617192, 0.0167863108, -0.0134815061, 0.02774987, 0.000977015705, -0.00553423679, -0.0261630397, 0.0205632299, -0.0128913624, 0.00471459283, 0.012884805, 0.0154617662, -0.0184649415, -0.0345693082, -0.00402609166, -0.00342283375, 0.00793415494, 0.000633994699, 0.000245483388, 0.020537002, -0.00467197131, 0.0140191922, 0.00229336414, -0.000647518842, -0.0241040923, -0.016930569, 0.00920624193, -0.00619323086, -0.00760629727, 0.00431132782, -0.0336250775, -0.00301956874, -0.00934394263, -0.0069177961, -0.00740958238, 0.00190321356, -0.0023704106, -0.00979638565, -0.00133028231, -0.00805874076, 0.000591373187, 0.00403592736, -0.0168649964, -0.00778334029, 0.0116258319, -0.00393429166, 0.00480967155, -0.00887838472, -0.00923247077, -0.0115537029, -0.00882592704, 0.0212976318, -0.00799972657, 0.0018425599, 0.0209828876, -0.00140732888, -0.0519326478, -0.00510474341, 0.0163404252, 0.0206681453, 0.0159207676, 0.0118159894, 0.0198681727, 0.00809152611, -0.0178223401, -0.0120389322, -0.0292711295, -0.00601618737, -0.000783169933, -0.0148847364, -0.00287039368, 0.00167781138, 0.00371790561, 0.00870789867, 0.0060719233, 0.0150421085, 0.0219271183, -0.0123799043, -0.00082251284, 0.00801284052, -0.00126553047, 0.0267138407, 0.0132782338, 0.0276974123, 0.000611044641, 0.0153437369, 0.00177862763, -0.0159338806, 0.00933082867, 0.0152650513, 0.000852429832, -0.00336381933, -0.00240155705, 0.0275400411, 0.0173764545, 0.0136257634, -0.00208517443, 0.00138110027, 0.0167207401, 0.0150814513, -0.00711451052, -0.000758170791, 0.00804562587, 0.00466213562, -0.00548833655, 0.0095996717, -0.0132716773, 0.00757351145, -0.00112455164, -0.00303760101, 0.0243794937, -0.0165633671, -0.00577357272, 0.00226385705, 0.0243008081, -0.0177174266, 0.000738499337, -0.00893084146, -0.00619323086, 0.0154093085, -0.0134093771, 0.00569816586, -0.00578013, -0.00292285089, 0.0012114339, 0.00697681028, 0.0167338531, 0.00485229306, -0.0041146134, -0.0228320062, -0.0151207941, -0.00455394248, -0.0226352904, -0.0136126485, 0.0152388224, -0.0178616829, 0.00646863086, -0.00487524318, -0.0192255713, -0.00185403496, -0.0183731411, -0.00564570865, 0.0252319239, 0.0208517462, 0.0159076527, -0.0436968654, -0.0172059685, 0.0051440862, -0.0105307875, 0.0148847364, -0.0219402332, 0.006485024, -0.0015950274, -0.0270941556, -0.0192649141, -0.0143470503, 0.0146749076, -0.00451132096, -0.00481622852, -0.00961278565, 0.0175469406, -0.00220156391, -0.00897018518, -0.00777678285, -0.0147535931, 0.00498671457, 0.00780956866, 0.0343594812, -0.0135470778, 0.0024900788, -0.014950308, 0.00143519684, -0.00275564333, -0.00396707747, 0.0174944829, 0.0202353727, 0.00264581107, -0.00642928807, 0.0164715666, 0.0140716499, -0.015133908, -0.00822922681, -0.00654731691, -0.00397691317, -0.00679976726, 0.0101242438, 0.0112783024, -0.0173895694, -0.00190157432, -0.0152388224, 0.0149240792, 0.015487995, 0.0153568517, -0.0195665434, 0.0101635866, -0.0221238323, -0.0190419722, 0.00759974, 0.0151732508, 0.0121569615, -0.019081315, -0.0134946201, 0.0147273652, -0.00915378518, -0.0215074606, -0.0216386039, -0.00723253936, -0.0259007532, 0.0221369471, 0.0144913075, -0.0020671424, 0.0113504315, -0.00970458612, 0.000265769602, -0.00329988706, -0.00403592736, 0.0237237774, 7.7200224e-05, 0.0102619436, 0.019094428, 0.0161305964, -0.00143109856, 0.0111668305, 0.00898985658, 0.00745548261, 0.0103930868, -0.0259269811, 0.0140323071, -0.0251007807, -0.021258289, 0.0157896243, -0.00403920608, 0.0181633122, -0.00796694, 0.0028195756, 0.0036752841, 0.0099013, -0.00381954131, 0.00763908261, -0.0117700892, -0.0144257359, 0.0325234756, -0.00531457225, 0.0015720774, 0.00518342899, -0.0266351532, -0.00910788495, -0.0106225871, 0.00468508573, 0.00733745378, -0.00234746072, -0.0228057764, -0.0033244763, 0.010170144, 0.0195272, -0.00162781309, -0.00576701574, -0.0133897057, -0.015487995, 0.0108783161, 0.00600307342, 0.00674731, -0.0267269537, -0.0156060234, 0.0184780564, -0.00646207388, -0.0015515862, 0.0211664885, -0.00964557193, 0.0288252439, -0.020182915, -0.00955377147, 0.0190682, 0.00451132096, 0.00630470226, -0.00729811098, -0.0185305141, 7.84809235e-05, -0.00316382619, -0.0174813699, 0.00117373036, 0.0143863931, -0.0269367825, -0.00799316913, -0.0133044627, 0.0254810955, -0.0143732782, 0.00155978266, -0.0108717587, 0.0192911439, -0.0232254341, 0.00374413421, 0.00451459968, 0.0122815473, -0.0101963719, 0.00168027042, 0.0195665434, 0.000739728799, -0.00177043118, -0.0197632574, 0.00112864992, -0.0267269537, 0.00314743328, 0.00476377131, 0.0110619161, -0.0444312654, 0.0086160982, -0.00284908293, -0.00264253258, 0.00425559189, -0.0220451467, -0.0232123211, -0.00208681379, 0.00247860374, 0.0184911713, -0.0187403429, -0.00526539376, 0.0129175903, 0.0169174541, -0.0179534834, 0.00148765405, -0.00211140304, 0.00127536617, 0.0172715392, 0.010989788, -0.000380519778, 0.0150027657, -0.0242745783, 0.0301629025, -0.0356971398, -0.000557767809, -0.000987671083, -0.00858331285, -0.00695058191, 0.00675386703, -0.00648830272, 0.00552768, -0.0222943183, 0.00662928121, 0.0162748527, -0.0100586722, 0.014596222, -0.00109340518, 0.0139273927, -0.00615060935, -0.0114094457, 0.0276187267, 0.0181502, 0.00880625565, 0.000716778741, -0.0163535383, -0.0120061468, -0.0024900788, 0.0206025746, 0.00558997272, 0.014766708, 0.00392445596, -0.0103078438, 0.000262286107, 0.00534080062, -0.0176518541, 0.0231992062, -0.00184092065, -0.0144913075, -0.0171666257, -0.00679321028, -0.019999316, 9.96892122e-05, 0.00201632455, -0.006173559, 0.0228582341, 0.000849151285, -0.00223107124, 0.00290973647, 0.00329660857, 0.0341234207, -0.0185829699, -0.0283268988, -0.0166813955, 0.00752105424, 0.0103930868, 0.00997998659, -0.000990949688, -0.0128192334, -0.0161699392, 0.0116127171, -0.00816365518, -0.00618339516, -0.00300645456, 0.000203784017, -0.0132651199, -0.0123143326, 0.0114487885, 0.0112783024, -0.00506867887, -0.00143847533, -0.00786202587, 0.0178747978, 0.0123733468, -0.00100078539, -0.00391134154, -0.00851774123, -0.00560308713, -0.0037670841, -0.0635256916, -0.00611126609, 0.00754072564, -0.00223107124, 0.0163928811, 0.0236713216, 0.00980950054, 0.014779822, 0.0139011638, 0.00723909633, -0.00516047934, -0.0128913624, 0.0140978778, -0.0158027373, 0.00420969212, -0.000491786457, 0.00699648168, -0.0191075429, -0.00676042447, -0.00662928121, 0.00318841543, -0.012701205, -0.00663256, 0.00965868589, -3.59618825e-05, 0.00201960304, 0.015684709, -0.0214025471, -0.00162289524, -0.00229664263, 0.0212058313, 0.0175862834, -0.0302153602, -0.0166027099, 0.00970458612, -0.0267531835, -0.0151732508, -0.0134815061, 0.00279826485, 0.00191796711, -0.0174157973, -0.0230156053, -0.0113963317, 0.00921935681, -0.00249499665, -0.000826611067, -0.0139929634, -0.000545473129, 0.0213238597, -0.00233598566, -0.0299268439, -0.00957344286, 0.00631781667, -0.0136651061, 0.00815054, -0.0115537029, 0.0069899247, 0.00366216968, -0.00591127295, -0.0186747704, -0.0157502815, 0.00831447, 0.00674731, -3.82159051e-05, 0.00799316913, 0.00263925386, -0.0195534285, -0.026464669, -0.0111537166, -0.000731532346, -0.0123667903, -0.000988490763, -0.0189501718, -0.00151962019, -0.00202779938, -0.00685222447, 0.0384773724, -0.00271957903, 0.00355725526, -0.00784891192, 0.00916689914, -0.00950787123, -0.0222680904, -0.0011294696, 0.00462279283, -0.0079472689, 0.0118487747, 0.0213763174, -0.000408182765, -0.00672108168, 0.00415067747, -0.0115930457, -0.00203763507, -0.0141765643, 0.0171272829, 0.0023507392, -0.00181469205, -0.0118291033, 0.0104848873, 0.0124782613, -0.0163404252, 0.00784235448, -0.00419002073, 0.036379084, -0.00377036282, -0.0253106095, -0.0143732782, 0.0202222597, 0.014045421, -0.00828168355, 0.0158289671, -0.0315530188, -0.00254089665, -0.0109570017, 0.00543587934, 0.015317509, 0.030267816, 0.00841282681, 0.0258745234, -0.00680632424, 0.0220189188, -0.0118750036, 0.00997342914, -0.00457689259, 0.000697107287, -0.00184092065, -0.0150027657, -0.00270646485, 0.0161043666, -0.00937672798, 0.00961278565, -0.00165486138, 0.0171403978, 0.0215074606, 0.0050621219, 0.0245106369, -0.0037015127, 0.0149371941, 0.003737577, -0.00643912377, 0.006576824, -0.000388306391, 0.00276384, -0.0466607, 0.00531457225, 0.00260318955, -0.0111209312, -0.00755384, 0.0187403429, -0.0160387959, -0.00141798425, 0.0099013, 0.00769809727, 0.00295727584, 0.00452443538, -0.00807841215, -0.00255892891, -0.0151470229, -0.0307137035, -0.0106029157, 0.0212451741, -0.00904887076, -2.20663551e-05, -0.0273302123, 0.0288252439, -0.00786858331, 0.00289990078, 0.022346776, -0.0307399314, -0.00798005518, -0.00329332985, -0.00352446944, -0.0254679807, -0.0104258731, 0.00354086235]
24 Oct, 2024
vector rbegin() and rend() Functions in C++ STL 24 Oct, 2024 In C++, std::vector::rbegin() and std::vector::rend() are built-in functions used to retrieve reverse iterators to the reverse beginning and reverse end of a vector. These functions allow easy traversal of vectors in reverse i.e. from the last element to the first. They are the member functions of the std::vector class, defined inside <vector> header file. Example: C++ // C++ Program to illustrate the use of // vector::rbegin() and vector::rend() #include <bits/stdc++.h> using namespace std; int main() { vector<int> v = {9, 11, 15, 56}; cout << *v.rbegin() << endl; cout << *--v.rend(); return 0; } Output56 9You may have noticed we have decremented the vector::rend() iterator before dereferencing. The reason is that rend() points to the theoretical element before the first element in the reverse order. vector::begin() MethodThe std::vector::rbegin() method is used to retrieve a vector::reverse_iterator pointing to the last element (reverse beginning) of the std::vector container. Syntaxv.rbegin() Parameters This function does not take any parameters.Return Value Returns a reverse iterator pointing to the last element of the vector container.If the vector is empty, it returns the same iterator as vector::rend().vector::rend() MethodThe std::vector::rend() method is used to retrieve a vector::reverse_iterator pointing to the theoretical element that comes before the first element (reverse end) of the vector. We have to be carful while using it as it does not point to the first element. We have to decrement it to access the first element. Syntaxv.rend() Parameters This function does not take any parameters.Return Value Returns a reverse iterator pointing to the position before the first element of the vector.Supported OperationsIn C++, vector uses random access iterators, so the iterators returned by vector::rbegin() and vector::rend() functions support all the operations allowed in the iterator arithmetic in C++ i.e. dereferencing, incrementing/decrementing, adding/subtracting integers, subtraction of another iterator of same container, comparision. More Examples of vector::rbegin() and vector::rend()Example 1: Traversing Vector in ReverseWe can traverse the vector in reverse order by incrementing and dereferencing the vector::rbegin() iterator until it is not equal to the vector::rend() iterator. C++ // C++ program to traverse vector in reverse // using vector::rbegin() and vector::rend() #include <bits/stdc++.h> using namespace std; int main() { vector<int> v = {9, 11, 15, 56}; // Printing all elements in reverse order for (auto it = v.rbegin(); it != v.rend(); ++it) cout << *it << " "; return 0; } Output56 15 11 9 Example 2: Modifying Elements in Reverse Order C++ // C++ program to modify vector elements in reverse // using vector::rbegin() and vector::rend() #include <bits/stdc++.h> using namespace std; int main() { vector<int> v = {9, 11, 15, 56}; // Doubling the values in reverse order for (auto it = v.rbegin(); it != v.rend(); ++it) *it *= 2; for (int i : v) cout << i << " "; return 0; } Output18 22 30 112 Difference Between vector::rbegin() and vector::rend()The following table lists some primary differences between the vector::rbegin() and vector::rend() methods: vector::rbegin()vector::rend()Returns a reverse iterator to the last element in the vector.Returns a reverse iterator to one element before the first element.Syntax: v.rbegin(); Syntax: v.rend(); We can dereference rbegin() as it points to a valid element.We should not dereference rend() as it does not point to a valid element. Learn C++ Online – Master everything from basics to advanced concepts. Apply your knowledge with practical exercises and boost your skills. Take the Three 90 Challenge: finish 90% in 90 days for a 90% refund. Start now and level up your C++ programming!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum/Algorithm for Dynamic Time out timer Calculation/Difference between Round trip time (RTT) and Time to live (TTL)/Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms/Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm/Round Robin Scheduling Algorithm with Different Arrival Time/Selfish Round Robin CPU Scheduling/Find the order of execution of given N processes in Round Robin Scheduling/Calculate server loads using Round Robin Scheduling/set::lower_bound() Function in C++ STL/Implementation of lower_bound() and upper_bound() in List of Pairs in C++/Difference between std::set::lower_bound and std::lower_bound in C++/Difference between std::set vs std::vector in C++ STL/std::minmax() and std::minmax_element() in C++ STL/std::rotate vs std::rotate_copy in C++ STL/std::bitset::to_ullong and std::bitset::to_ulong in C++ STL/std::upper_bound and std::lower_bound for Vector in C++ STL/std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++/std::string::append vs std::string::push_back() vs Operator += in C++/Vector push_back() in C++ STL/vector :: cbegin() and vector :: cend() in C++ STL/unordered_multiset cend() function in C++ STL/unordered_multiset bucket() function in C++ STL/unordered_multiset emplace_hint() function in C++ STL/unordered_multiset end() function in C++ STL/unordered_multiset size() in C++ STL/unordered_multiset emplace() function in C++ STL/unordered_multiset find() function in C++STL/unordered_multiset erase() function in C++ STL/unordered_multiset clear() function in C++ STL/unordered_multiset swap() function in C++ STL/unordered_multiset bucket_size() function in C++ STL/unordered_multiset bucket_count() function in C++ STL/unordered_set bucket_count() function in C++ STL/unordered_set cbegin() function in C++ STL/array::cbegin() and array::cend() in C++ STL/array::rbegin() and array::rend() in C++ STL/multimap rbegin in C++ STL/vector rbegin() and rend() Functions in C++ STL
https://www.geeksforgeeks.org/vector-rbegin-and-rend-function-in-c-stl?ref=asr10
PHP
vector rbegin() and rend() Functions in C++ STL
unordered_multiset clear() function in C++ STL, What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, jQWidgets jqxTreeMap width Property, Round Robin Scheduling Algorithm with Different Arrival Time, Difference between Flow and TypeScript, unordered_multiset emplace() function in C++ STL, jQWidgets jqxTree destroy() Method, unordered_set bucket_count() function in C++ STL, jQWidgets jqxTree collapseAll() Method, Find the order of execution of given N processes in Round Robin Scheduling, jQWidgets jqxScrollView buttonsOffset Property, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Vector push_back() in C++ STL, jQWidgets jqxListBox enableHover Property, Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm, std::rotate vs std::rotate_copy in C++ STL, Selfish Round Robin CPU Scheduling, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxSlider buttonsPosition Property, std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++, std::upper_bound and std::lower_bound for Vector in C++ STL, Difference between Round trip time (RTT) and Time to live (TTL), jQWidgets jqxSlider rtl Property, Difference between std::set::lower_bound and std::lower_bound in C++, jQWidgets jqxTooltip opacity Property, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, unordered_multiset erase() function in C++ STL, jQWidgets jqxToolBar height Property, PHP, std::minmax() and std::minmax_element() in C++ STL, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, Node.js date-and-time Date.transform() Method, unordered_multiset size() in C++ STL, TypeScript Optional Parameters, jQWidgets jqxToolBar theme Property, Difference between std::set vs std::vector in C++ STL, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, Steps to Diagnose and Resolve a Slow Network, How to use Optional Chaining with Arrays and Functions in TypeScript ?, Calculate server loads using Round Robin Scheduling, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, jQWidgets jqxScrollView showButtons Property, Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms, jQWidgets jqxScrollView disabled Property, jQWidgets jqxSplitter destroy() Method, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, set::lower_bound() Function in C++ STL, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, jQWidgets jqxTree collapseItem() Method, std::string::append vs std::string::push_back() vs Operator += in C++, unordered_multiset swap() function in C++ STL, unordered_multiset cend() function in C++ STL, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), jQWidgets jqxSortable opacity Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, multimap rbegin in C++ STL, vector :: cbegin() and vector :: cend() in C++ STL, jQWidgets jqxSlider height Property, jQWidgets jqxSwitchButton onLabel Property, unordered_multiset bucket_size() function in C++ STL, unordered_set cbegin() function in C++ STL, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, jQWidgets jqxToolBar tools Property, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTree width Property, Implementation of lower_bound() and upper_bound() in List of Pairs in C++, jQWidgets jqxTree clear() Method, TLS Handshake?, Algorithm for Dynamic Time out timer Calculation, Adhoc TCP, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, jQWidgets jqxTabs position Property, Differences between Wireless Adhoc Network and Wireless Sensor Network, jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, std::bitset::to_ullong and std::bitset::to_ulong in C++ STL, unordered_multiset emplace_hint() function in C++ STL, unordered_multiset bucket_count() function in C++ STL, unordered_multiset find() function in C++STL, unordered_multiset bucket() function in C++ STL, Impact of Three-way Handshake and Slow Start Algorithm, array::rbegin() and array::rend() in C++ STL, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, vector rbegin() and rend() Functions in C++ STL, array::cbegin() and array::cend() in C++ STL, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, unordered_multiset end() function in C++ STL, How to Sort an Array Having Optional Properties in TypeScript ?
GeeksforGeeks
[-0.0107503403, 0.00450039469, -0.0119865937, 0.0443894342, 0.0120805772, -0.0689409822, -0.00566435233, 0.00659334939, -0.0147265922, 0.00202427385, -0.0286579356, 0.0271541886, 0.0167436376, -0.0484958179, 0.00122902344, 0.0212693345, 0.0207632668, 0.0300170891, -0.0145386243, -0.025867328, -0.0164544545, 0.00247792806, -0.0150953, -0.0148494951, -0.0171918683, 0.0117624775, -0.0446786173, -0.00286290166, -0.0224549808, 0.00178750616, 0.0515322313, -0.0014947094, 0.0301327631, -0.0180160385, -0.00975989178, 0.0478596166, 0.0278193075, 0.0047642733, -0.0323883817, -0.0227441639, -0.00123625295, 0.0323594622, 0.017264165, -0.0163532421, -0.0314340815, 0.0305665359, 0.00481126504, -0.0421916507, 0.00478596194, -0.00168900355, 0.0158760902, 0.0309424717, 0.0405433141, 0.034296982, 0.0302773546, 0.00549084274, 0.0310581457, 0.00319726835, -0.0281952433, -0.0272987802, -0.00672709569, -0.00808986556, -0.00817662105, -0.0389528126, 0.0169894416, 0.0275012068, -0.0577207245, 0.0519081652, 0.00652828347, 0.0149507085, -0.0339788832, 0.0222091768, 0.0284121297, 0.0113648521, -0.023221314, -0.00975266285, 0.018044956, 0.0251877513, -0.0235104952, 0.0524865314, -0.0168882273, 0.0270963516, -0.0384033658, -0.0109599968, 0.0212404169, 0.000174412882, -0.019187225, -0.03452833, 0.0598606691, 0.00058378611, -0.0257371962, 0.00412445795, 0.0123046935, -0.0580966622, -0.0110829, 0.0258817878, 0.0423940793, 0.00554145, -0.0468185619, 0.0462112799, 0.0175822638, 0.0193462744, 0.00892126467, -0.0108587835, 0.0118781496, 0.0166713409, 0.00384973525, -0.0225995723, -0.02021382, 0.0113359336, 0.000933515606, -0.0110901287, -0.00905862544, 0.0408035778, -0.0407457426, -0.0020387331, 0.0134108141, -0.0364080109, 0.00897910073, 0.0355983041, 0.0184931885, 0.0471366644, 0.0480331294, 0.0529781394, -0.0410060063, 0.0115817385, 0.0008639312, 0.00302375923, -0.0187389925, 0.0270963516, -0.009745433, -0.035077773, 0.00528841559, -0.0165990461, 0.0140397856, 0.0441291705, 0.0386347137, 0.0269662198, -0.0261420514, 0.00890680496, -0.026590284, -0.0407746583, 0.0166424233, 0.0254769325, -0.0652972907, -0.0283253752, -0.00706688454, 0.0455461629, -0.00782960188, -0.00122631236, -0.0164833739, 0.00798142236, 0.0564194061, -0.0170183592, 0.0267204158, -0.0458064266, 0.00722593488, 0.00583063159, 0.0329378285, -0.0225995723, 0.0312027354, 0.0179582015, -0.00984664634, 0.0260697566, -0.0171774104, 0.0200113934, 0.0576628894, -0.00589208305, -0.0677264184, 0.0498549752, -0.0128396805, 0.0194474887, 0.00502815191, -0.000270204415, -0.0253178831, -0.0152688092, 0.0235104952, 0.0166568831, 0.0119287567, -0.0011937794, -0.000767687801, -0.00589208305, -0.0050353813, 0.0116612632, 0.00746812485, 0.0109238494, 0.058299087, -0.00989002362, 0.0144012626, -0.0261854287, 0.00384612032, 0.00590654183, 0.0312894918, 0.0343837366, 0.0235249549, -0.00576195121, -0.0177846923, 0.00476065837, 0.0273999926, 0.0493055284, -0.029901417, -0.0110178338, 0.0206042156, -0.000229312282, 0.0491320193, -0.0229465906, -0.00793804508, 0.00319003873, 0.00979604, -0.0462980345, 0.000354925694, -0.0188835841, 0.00737052597, 0.0324173, -0.00128595612, 0.0128902867, -0.0449099615, 0.00206403644, -0.0444472693, -0.0141409989, -0.0342391469, -0.0351356119, 0.0430591963, -0.0418735519, -0.0289615765, -0.0257227384, -0.0148350354, 0.022801999, 0.011791395, -0.00898633059, 0.0136783076, 0.0284699667, -0.00299664843, -0.0537589304, 0.00915261, -0.0188835841, -0.0281374063, 0.00472451048, -0.0143072791, 0.0179582015, 0.012275775, 0.0181172509, -0.0500863194, 0.013114403, 0.036697194, 0.0405433141, -0.00539685879, 0.00941287354, -0.00241466961, -0.0319256894, 0.0258094929, -0.0163966194, 0.0289904941, 0.0311159808, -0.0204451662, 0.00775007717, 0.0103527149, 0.00204777, -0.0239731874, 0.0149507085, 0.00817662105, 0.0334294364, -0.00947793946, 0.0126589416, 0.0119215269, 0.0328799933, 0.00624633068, 0.0201993622, 0.0246672239, -0.0585015155, 0.0313762464, -0.0205897577, 0.00792358629, -0.0259396248, -0.00711749168, -0.0148494951, -0.0277614705, 0.0133168306, 0.0449099615, -0.0255347695, -0.00715725403, -0.0154278586, -0.00464498578, 0.00801034085, 0.0143289678, -0.0261275917, -0.0240888596, 0.00369791454, -0.0132806823, 0.0229899678, 0.00266228174, -0.0180738736, 0.0118058547, -0.0249853227, 0.0331691727, 0.0319546089, -0.0228453763, -0.0538746044, -0.0173798371, -0.0284988843, 0.0200547706, -0.0188112874, 0.0195197836, -0.029901417, -0.00273999921, -0.04331946, -0.000207058823, -0.00907308515, 0.0311159808, -0.0175533462, -0.0127673848, -0.0387214683, 0.0121745616, 0.00277253217, 0.0268650055, -0.00313400966, 0.03163651, 0.00699458923, -0.00811878406, -0.0134252738, 0.00700181862, -0.0390395671, 0.0121890204, 0.01251435, 0.0197511297, -0.0282819979, 0.01973667, 0.0242045317, -0.00855978671, -0.0427410975, -0.00581978727, -0.0103888623, -0.0292507578, -0.0156736635, -0.0354826301, -0.00727654155, -0.0295254812, -0.00973097421, 0.00473896973, 0.00720063131, -0.00866823, -0.0205319207, 0.0195920803, -0.00921044592, 0.00516912807, -0.0460956097, 0.00153989403, 0.00978158, 0.0152398907, 0.0381141864, 0.00130041526, -0.0160496, -0.0115889683, -0.0319256894, 0.0301038437, 0.0100635327, -0.0358585678, -0.0160785187, -0.00456546061, 0.0152398907, 0.00954300538, 0.0462402, -0.0377382487, 0.0221224222, 0.000116350566, -0.0437821522, -0.032908909, -0.0169171467, 0.030797882, 0.0255926065, 0.00482572429, -0.0198812615, 0.0261998884, -0.0219199937, -0.0267637931, -0.0200547706, 0.00336716278, -0.0124782026, 0.000489350117, -0.00700181862, -0.0161363538, 0.0151097588, -0.018044956, -0.00999846682, 0.0225417353, -0.00737052597, -0.0413241051, -0.00147753919, 0.00581978727, -0.0257661156, -0.000553512364, -0.0133023709, 0.0141843762, -0.0138735054, -0.00315208361, 0.020575298, -0.0145024769, -0.0465872176, -0.0229032133, -0.0167580955, 0.00292616, 0.00471366616, 0.0239876453, -0.0100346152, -0.0202282798, 0.0277759302, 0.0081115542, -0.0353669561, 0.0194041114, 0.0267493334, 0.00794527493, -0.00913815107, -0.027009597, -0.0157748777, 0.0255347695, 0.0270240568, 0.00204415526, 0.0121384142, -0.0184208918, -0.0256649014, -0.00228453777, -0.0110250628, -0.0162375681, 0.0455750823, 0.0146470675, 0.0203150343, -0.0226284899, -0.00177666184, -0.00229176716, 0.0234960355, -0.036697194, -0.00674878433, 0.0416711234, 0.0202427395, 0.0177557729, -0.0588196144, 0.0179003645, 0.0207777247, -0.0106129786, -0.00331113371, 0.035309121, 0.0440134965, 0.0276602563, -0.0198957212, 0.00853809807, 0.034296982, -0.0127746146, -0.0139168827, 0.0142277535, -0.00456184568, -0.00528841559, -0.0225272775, -0.0187968295, -0.00247069867, 0.041150596, -0.0126806302, 0.0414108597, -0.0375647396, 0.0503755026, 0.0128324507, -0.00467028888, -0.0105551425, -0.0103960922, -0.00647767633, 0.0365526043, -0.000580171356, 0.0206186753, -0.0159194674, -0.0266481191, 0.00182546128, -0.0204885434, -0.00352079072, 0.0377093293, 0.048900675, 0.0378250033, 0.0268216282, -0.00378466933, -0.020329494, -0.0363501757, -0.030682208, 0.0269517601, -0.0311449, 0.00561013073, -0.0399649516, -0.0181317106, -0.00997677818, 0.0201270655, -0.0278337654, -0.0126083344, 0.00321534229, 0.00478234701, 0.0256504416, -0.0351356119, -0.0247539785, 0.0125360386, 0.0203873292, -0.0521684289, 0.0169460643, -0.00219055358, 0.0157315, 0.0467318073, 0.00898633059, -0.037969593, 0.0536432564, 0.0132734533, -0.0229755081, -0.0605547093, 0.0210090708, -0.0291206259, -0.0205897577, -0.0254769325, 0.0334583558, -0.011849232, 0.0184353516, -0.00506791426, -0.0287302304, 0.00085444242, 0.0190860108, -0.0670902207, -0.00579086924, 0.0521105938, -0.0242623687, -0.00751150213, 0.034296982, 0.00104376627, 0.0412373506, 0.00121275696, 0.000710303255, 0.0181317106, -0.017148491, 0.000979604, 0.00322618661, -0.0155724501, 0.0215151403, -0.00840073638, -0.00344668771, 0.000629874528, 0.0144229513, -0.00915261, 0.00968759693, -0.0310581457, 0.0495947115, -0.0127963033, 0.0013898809, -0.0163243227, 0.00362381176, -0.0034322287, 0.0132517647, 0.00210199156, 0.000848568394, 0.000229651167, 0.0252022091, 0.00992617197, 0.0109021608, -0.00255203107, 0.0320992, -0.0225417353, -0.00735968165, -0.00116305379, -0.0331980921, -0.00798142236, 0.0305954535, 0.0280072745, -0.0046016085, -0.0277036335, -0.0269662198, 0.0223393086, 0.0121890204, -0.0282386206, -0.0171918683, -0.00120010518, -0.0120155113, 0.00939841475, -0.007399444, 0.0256649014, 0.0117118703, 0.0147121334, 0.0102370419, -0.0149507085, 0.0230188854, 0.00500646327, -0.0426832624, -0.0153700225, -0.0338053741, -0.0108154062, -0.00764886336, -0.0103960922, 0.00402685907, -0.0153555637, -0.00543300668, -0.00304183294, 0.00192848232, 0.0213416312, 0.00199354836, -0.00345030264, -0.00704158144, 0.00724762352, 0.00918875728, -0.0369574577, 0.00870437734, 0.00827783439, 0.0195342433, 0.0341813117, -0.0224549808, -0.0135192573, -0.0292507578, 0.0406589881, 0.00848026201, 0.00713918032, -0.0159339271, -0.0529203042, 0.0242045317, 0.01973667, 0.027674716, -0.00924659427, -0.000875679194, 0.000235412212, 0.00967313722, -0.0323305465, 0.00895741209, -0.0188402068, -0.00587039441, -0.026286643, 0.00505345501, 0.00584147591, 0.0358585678, -0.019490866, -0.01829076, -0.0135409469, -0.0234815776, 0.0146832149, -0.0147627406, 0.00540408818, -0.00839350745, 0.00660780817, -0.00259360089, -0.00281590968, 0.00778622506, -0.0438978262, 0.00767778186, -0.00663672667, 0.0165990461, 0.016006222, 0.0812601373, -0.0200981479, -0.0022592342, 0.0208933987, 0.0215729754, 0.00679577654, -0.00135102205, -0.00501369266, 0.00977435149, -0.0116829518, 0.00328402291, -0.0127673848, -0.0241322368, 0.0275445841, 0.00499561895, 0.00440279581, 0.00782237295, 0.0144301811, -0.0226284899, -0.00314846891, 0.00755487941, -0.0104177808, -0.0243780408, -0.00222308654, -0.00829229318, 0.0104539292, -0.00751150213, -0.0205319207, -0.0199824758, 0.0106202085, 0.0137578333, -0.0119938226, -0.0130131897, -0.0178569872, 0.0413819402, 0.0142711308, 0.00144952466, -0.00697290059, -0.000990448287, -0.0092538232, -0.00954300538, -0.0103888623, -0.00657527521, 0.0190570932, -0.0169749819, 0.000766784127, -0.00626440486, -0.024059942, -0.00500284834, 0.0184353516, 0.0109599968, 0.0127456961, 0.00423290115, 0.00887788646, -0.0267927106, -0.00375575107, 0.00900078937, 0.00571857393, -0.0452280641, -0.0180160385, -0.0242768284, -0.0194041114, 0.0110973585, 0.0012208902, -0.000844501774, 0.0240454823, 0.012695089, -0.00715363957, -0.0159917641, -0.0107575702, 0.00380274304, 0.0252889637, 0.011307016, 0.0143651152, 0.00695482688, -0.0101285987, -0.048900675, 0.0224694405, 0.0148494951, 0.0155579904, -0.0171629507, 0.0209656935, 0.0105189951, -0.0135047985, -0.0123408409, -0.01396026, -0.00550891692, -0.0260842144, 0.0385479592, 0.0113576222, 0.00023428259, -0.00336535531, 0.00499200402, 0.0144807883, -0.0395600945, -0.00595353404, 0.0075621088, -0.0212548766, 0.0192161426, -0.018594401, -0.0179148242, 0.00747535424, -0.0184498113, 0.00275265099, -0.00279241358, -0.0204885434, 0.015398941, -0.00778622506, 0.0278916024, 0.0120733483, -0.0178569872, 0.0267927106, -0.0200547706, 0.0244503375, 0.000201297778, 0.0333137661, -0.00205680681, 0.031463, 0.0244937148, -0.013114403, 0.022614032, -0.00597522268, 0.00964421872, 0.00707049947, 0.00598245207, 0.0265469067, -0.00781514309, 0.00131306692, -0.00670902198, 0.0106274383, -0.0185365658, 0.000842242502, 0.0123553006, 0.00452208333, 0.000487994606, 0.0328799933, -0.022614032, -0.010584061, 0.0363790952, 0.0116974115, -0.0180738736, 0.0168303922, -0.0272987802, 0.0331980921, 0.0191149283, 0.0348753482, -0.019548703, -0.026228806, 0.00252130534, 0.0104394695, 0.0152977267, 0.00133927411, -0.017452132, -0.0272843204, -0.0337475389, -0.0498838909, -0.0339788832, 0.0445051081, -0.0152398907, -0.0138445878, -0.0120372, 0.0132806823, 0.00470643677, -0.00619572401, 0.00553060556, -0.000200958893, 0.024363583, 0.0122468574, 0.00613788748, -0.0340656377, 0.0416711234, -0.00711026182, -0.00253395713, 0.0136855375, 0.00090595294, 0.0206186753, 0.0100201555, -0.000875227328, -0.00349187246, 0.00438110717, -0.026286643, -0.0571423583, -0.011610657, -0.0191583056, 0.0253612604, 0.02310564, 0.0228164587, -0.0082489159, 0.0242768284, -0.0072910008, 0.0152543494, -0.00665480038, 0.0206909701, -0.0135626355, 0.0095791528, 0.0131288618, 0.0331691727, -0.00281952438, -0.0176256411, -0.0269806795, 0.00281410222, -0.021413926, -0.036697194, -0.0210090708, 0.00741751771, -0.021963371, -0.000356507167, -0.00865377113, -0.00640176609, -0.0356850587, 0.00808986556, -0.00422928669, 0.00542216236, -0.0370731317, -0.000250775, -0.0152832679, 0.00741751771, 0.00656443089, 0.020821102, 0.00746089499, 0.00381720229, 0.0115311313, 0.0134831099, -0.00516551314, -0.0155869089, 0.0029930335, -0.0372466408, -0.0020658439, 0.00119016459, -0.0157459583, 0.00896464195, 0.0249997824, -0.0225272775, 0.0156736635, 0.0187823698, 0.00697651552, -0.0290772486, 0.0421338156, -0.00104466989, -0.0414686948, -0.0253468, -0.00921044592, -0.0125577273, -0.00763440458, -0.0300170891, -0.0134469625, -0.0338632092, 0.0353669561, 0.0202861167, -0.0268650055, -0.021717567, 0.02984358, 0.0186377782, 0.0119865937, 0.00245262473, -0.0183196794, -0.0155435316, 0.0132083874, 0.015702581, 0.023163477, -0.00234418153, 0.0276602563, -0.0174087547, 0.0136855375, 0.00342499907, 0.0289760344, 0.0142494421, 0.0149362497, -0.0641405657, -0.0174810514, -0.020936776, 0.00242732139, 0.011133506, -0.000532727456, -0.0363212563, 0.0299303345, -0.00736691104, -0.00621379772, 0.0209223162, 0.0131794689, -0.0069114496, 0.00220320513, -0.00781514309, -0.0159628447, 0.0122974636, -0.0202571973, -0.0134686511, -0.0383744501, -0.00798142236, 0.0215729754, -0.0109383082, -0.0146253789, -0.0049269381, -0.0487560816, -0.0279638972, -0.0278771427, -0.012572187, -0.00584870577, -0.00184082403, 0.00289904932, -0.0144518698, -0.0116757229, -0.0090369368, -0.0309424717, 0.025086537, -0.0230622627, -0.000480313203, 0.00710303243, 0.00594630465, -0.0258962475, -0.0275735017, -0.0184208918, -0.0193173569, -0.030797882, -0.0255492292, -0.00147392438, 0.0346150845, 0.0158616323, -0.00252672751, 0.0135120284, -0.0201849025, 0.0319256894, -0.0274722893, 0.0101213697, -0.00626801932, -0.0328510739, 0.00439918088, 0.0300749261, -0.00748258363, 0.0260263793, 0.0450256355, 0.00582701713, 0.0278916024, -0.0208644792, -0.0286723934, 0.00397263747, 0.0161941908, 0.0139241125, 0.0619427823, -0.0210813675, 0.0144229513, 0.0208644792, 0.00706327, -0.0191583056, -0.0109961452, -0.0328221545, -0.0175822638, -0.00811878406, -0.0275735017, -0.00663311174, -0.0160929766, 0.00418229448, 0.0407457426, 0.030682208, 0.0147121334, -0.0375647396, 0.000283082045, -0.016121896, -0.00495585613, -0.0133674368, 0.0236840043, 0.00284121302, 0.024363583, 0.00942010339, 0.00874775462, -0.0230911821, 0.00863208249, 0.00238032918, -0.010526224, -0.00703435158, 0.00139801414, -0.00638730731, 0.0010076185, 0.0202282798, -0.0129481237, 0.0185510237, -0.00367080374, -0.0173942968, -0.0090369368, -0.0124348253, 0.0564194061, 0.00683915382, 0.00996954925, 0.00845134351, -0.0127023188, 0.00166279636, -0.0133674368, 0.00378828403, -0.00976712164, 0.00782237295, 0.0113142449, -0.00362923392, -0.00305990689, 0.004301582, -0.0326775648, -0.00777176581, 0.00183088344, -0.00207488076, 0.00338342926, -0.0135843242, 0.0111118173, 0.0122902347, -0.0219199937, 0.0102225831, -0.0136277014, -0.00613065809, -0.0109238494, 0.0222380944, 0.0200836882, 0.00411361363, 0.0153700225, 0.0143940337, -0.0164978318, 0.000164133366, -0.0170039013, -0.000632133742, 0.00114769104, -0.0174955092, -0.00736329611, 0.00557398284, -0.0129047465, -0.00794527493, 0.0406011492, 0.00512936525, 0.0135047985, 0.0271831062, 0.0108804721, 0.0206475928, 0.00952131674, -0.00543662114, -0.0357718132, -0.0333137661, 0.0117624775, 0.00221404945, -0.0179003645, 0.0242189914, -0.0142494421, -0.0183341373, -0.00842242502, 0.0198668018, -0.00117751292, 0.000488898309, 0.00416783523, 0.0112274904, -0.00235864054, -0.012810762, -0.0252455864, -0.00753319077, 0.00860316399, 0.0226429496, 0.00482210936, -0.0020423478, -0.0122251688, 0.0126300231, 0.0228742957, -0.00118654978, 0.00953577552, -0.0155435316, 0.0371020474, 0.00502092205, -0.0139385713, 0.0115022138, 0.00751873152, -0.000614059856, 0.0251009967, -0.00413168781, -0.000765880395, 0.0291495435, -0.00861762278, 0.00991171226, 0.0218332391, -0.0205897577, 0.00160676742, -0.00628247857, -0.0139024239, -0.0187245328, 0.00117932027, -0.00998400804, 0.0243780408, 0.00590292737, 0.0106997332, -0.0396179333, -0.023698464, -0.00605474785, 0.0215295982, 0.000527757104, 0.0148928724, -0.00390395685, 0.000883812434, 0.00252311281, 0.013114403, 0.0427989326, -0.0268216282, 0.0301906, -0.0211536624, 0.00391480094, 0.0278048478, 0.00816216134, -0.000798413414, -0.0159917641, -0.00782237295, -0.0283253752, -0.0104033221, 0.0126155643, 0.00469920738, -0.0284265894, 0.0050896029, -0.0214428436, -0.00169984787, 0.0197077524, 0.0248696506, -0.0272843204, 0.0105045354, -0.00675962865, -0.0153844813, -0.00984664634, 0.0164978318, -0.00965867843, 0.0154712358, -0.00458353432, -0.0207632668, 0.00740305893, 0.0112853274, -0.00624633068, -0.0196788348, 0.000838627748, 0.00746812485, 0.00887065753, 0.00588846812, -0.0224694405, 0.0184642691, -0.00228453777, -0.0199390985, -0.000204460695, 0.0197511297, 0.0297857448, -0.0198089667, 0.00746812485, 0.00254841615, 0.0209946129, -0.0147771994, -0.000682740589, 0.00890680496, 0.00743920635, -0.0023134558, 0.00684999814, -0.0370442122, 0.0053354078, -0.0112997862, -0.0134541914, 0.00703435158, 0.00482572429, 0.00836458895, -0.0061234287, -0.0136277014, -0.0130276484, -0.00973097421, -0.0145892315, 0.0106852744, -0.0177123956, 0.0135192573, 0.020633135, -9.90109402e-05, 0.00320811267, 0.0126878591, 0.00821999833, 0.015702581, -0.00697651552, -0.0128685981, 0.00676685851, 0.0145892315, -0.0103093376, -0.0145097058, 0.0129842712, -0.018348597, -0.000143574332, 0.00913092121, -0.000445295067, -0.0355404653, 0.0150953, -0.00391841587, 0.0351066925, 0.012810762, 0.00578725431, -0.0116757229, -0.00502815191, 0.00350090931, -0.0139024239, 0.0036491151, 0.00776453642, -0.0121239545, 0.0246816818, 0.0112274904, -0.0103454851, 0.0170761961, 0.0217031073, 0.00986110605, -0.0408614129, -0.00022072719, -0.00750427227, 0.013714456, 0.00237309956, 0.0113142449, -0.0177557729, -0.00623910129, -0.0331980921, 0.0149651673, 0.0222814716, -0.0154567771, -0.0254913922, 0.0158327129, 0.024059942, -0.00940564368, -0.0478596166, -0.00623910129, 0.0173942968, 0.0341813117, 0.0132156163, -0.0108949309, -0.0028610942, 0.00653912779, -0.0292652175, 0.00101394427, -0.00169623306, -0.00598245207, -0.00787297916, 0.0295110215, -0.00399071118, 0.023698464, 0.000871160708, 0.0106925042, 0.0251732916, 0.0146398377, 0.0186666977, -0.0037304475, 0.00356597523, -0.00160857476, 0.00754765, -0.0347596742, 0.0222670119, -0.0108804721, 0.00208933977, -0.011133506, 0.00986110605, -0.00910923257, 0.00553422, 0.0155146131, -0.0246961415, 0.030797882, 0.0119504454, -0.00301291491, -0.0119432155, -0.0126227932, 0.00488717575, -0.0140687032, 0.000227843775, -0.0300749261, 0.00589569751, 0.00489079, -0.0178280696, -0.0239153504, -0.00948516931, 0.0166568831, -0.0193751939, -0.0227875412, 0.000495224143, 0.00406300696, 0.006857228, -0.025867328, 0.0018905272, 0.0110178338, 0.0176979378, -0.000116350566, -0.0159628447, 0.0278626848, -0.0126661705, -0.0194619484, -0.0379406773, -0.000721147575, 0.0221224222, 0.0327354, 0.00378466933, -0.0111407358, 0.00730546, -0.0109021608, 0.00115130574, 0.0146687562, 0.00491609378, 0.00300026312, -0.0131939277, 0.0272843204, -0.0202282798, -0.029539939, 0.0223826859, 0.0218332391, -0.0102225831, -0.00232972228, 0.00579448417, 0.0245515499, -8.12759536e-05, 0.00922490563, -0.0194041114, -0.00900801923, 0.0351356119, 0.00608366588, -0.0372755565, 0.019548703, -0.011972134, 0.00837181881, 0.00378466933, 0.0163098648, -0.00597522268, 0.00968036707, -0.0378828384, -0.00679577654, -0.0101141399, -0.00525588263, -0.00775730656, -0.012268546, -0.0123119233, -0.0317811, 0.00714279478, -0.0094996281, -0.00902970787, 0.0191004705, 0.0398203582, -0.0212837942, 0.00523419399, -0.0119070681, -0.0368417837, 0.00756933866, -0.00216525, -0.00465583, -0.00833567, 0.0099623194, 0.0378539227, -0.0114516066, 0.00368707022, -0.00336174062, -0.0236261673, -0.0201849025, 0.0101792058, 0.0267059561, -0.0161797311, 0.00520889042, 0.00326414173, 0.0197511297, 0.00538601447, -0.00427989336, 0.00629332289, 0.00219959044, -0.0222236346, 0.020575298, 0.0155435316, -0.00845134351, 0.0367839485, 0.027067434, 0.0274578296, 0.00790912751, -0.0145530831, -0.00393287512, -0.0108515536, -0.0027219255, -0.0029424266, -0.0028845903, -0.0263011, -0.00927551184, -0.00115492055, 0.0206042156, -0.0145892315, 0.0193028972, 0.00279241358, -0.00587039441, 0.0188546646, 0.00635115942, -0.013953031, -0.0198812615, 0.0198234245, -0.000592823082, -0.00815493241, -0.0150808403, 0.00302737392, -0.0522841029, 0.0214283857, 0.0124492841, -0.00795250479, -0.0117624775, 0.00678493222, -0.00129047455, 0.0205030032, 0.0266047418, 0.0216018949, 0.017264165, 0.00726569723, -0.0193462744, 0.0328221545, -0.00744643621, -0.00819108, 0.0120878071, -0.010164747, 0.00181280961, 0.0315208361, 0.00900078937, 0.00500646327, -0.00560290087, 0.000774013635, 0.0118420022, 0.0115817385, -0.0170039013, -0.00813324377, -0.0130999442, 0.04126627, -0.00262071169, 0.0193607341, -0.0266914964, -0.00532094855, 0.00863931142, -0.0129192052, 0.0113865407, -0.0125432685, 0.0131216329, 0.0198523439, 0.0237418413, 0.0450834706, -0.00490524946, 0.00506429933, -0.00365995942, 0.0107937176, 0.0154567771, -0.0218187813, 0.0209946129, -0.00360935275, -0.033921048, 0.0203005746, -0.0186088607, -0.0280361939, 0.00975989178, -0.0192595199, -0.00549445767, 0.0265035294, -0.0129481237, 0.0126011046, -0.0142277535, 0.0204596259, 0.0126083344, 0.00991171226, 0.0462402, 0.0332270116, 0.0129047465, 0.00786575, 0.00295146368, -0.0337475389, -0.00329667469, 0.00466305949, 0.00375575107, -0.00916706864, 0.0220645852, 0.00850918, 0.0086826887, -0.00610174, 0.00713195046, -0.0193462744, 0.047772862, -0.03163651, 0.0268071704, 0.0110539813, -0.024247909, 0.00643429905, 0.022079045, 0.0132156163, 0.0113142449, 0.021471763, -0.0078079137, 0.0115961973, 0.00201342953, 0.00360573782, -0.00579086924, -0.00195378577, 0.0194474887, -0.0300460085, 0.0100129265, 0.00356597523, -0.0056065158, -0.010829865, -0.00519081671, -0.0105189951, -0.0310292263, -0.0170617364, 0.0153121864, 0.0344704911, 0.00149109459, 0.0165701285, -0.0143506564, 0.0216452722, 0.00181371323, -0.0117986249, -0.00697651552, -0.0105334539, -0.0215151403, -0.0105696013, 0.00896464195, -0.00773561792, 0.0253468, -0.00918875728, -0.00496670045, -0.00524865324, -0.0061776503, -0.0174665917, -0.00845134351, -0.00900078937, 0.00115943898, 0.0170617364, 0.0292073805, -0.0109383082, -0.00574387703, -0.0173509195, -0.0125360386, 0.0075621088, 0.00739582907, 0.0356850587, 0.00896464195, 0.0104250107, 0.00497754477, -0.004301582, -0.0195053257, 0.0035677827, 0.0155146131, -0.013114403, 0.0138445878, 0.0143651152, 0.0132517647, -0.0017856987, -0.000788020901, 0.00642706966, 0.00828506425, 0.0370731317, 0.0145747717, 0.00750427227, 0.00705965515, 0.0138301281, -0.00726208277, 0.0123842182, -0.0072367792, 0.0227007866, -0.00883450918, 0.0151531361, -0.0348175094, -0.00192125281, 0.00578725431, 0.00545108039, 0.0204740837, -0.00248877238, 0.0133457482, -0.0121094957, -0.0135987829, -0.00809709541, -0.0102442717, 0.000764976721, 0.0103671737, -0.00543300668, -0.0179726612, 0.00525588263, 0.00330209685, 0.0159773044, -0.0207054298, -0.0290338714, -1.36613073e-06, 0.00521250535, 0.00596437836, 0.0112853274, -0.0111045884, -0.0120444298, 0.0102298129, -0.00819108, 0.00852363929, -0.00144229515, 0.0144301811, 0.0145964604, -0.00141066592, 0.0225128178, 0.0118853794, 0.0105768312, 0.00884173904, -0.00113142456, -0.00256649, 0.0141699174, -0.00452208333, -0.0133746667, -0.00347741344, 0.0120444298, -0.00469197752, -0.00498838909, 0.0208355617, 0.00221224222, -0.0030743659, 0.047772862, -0.00245443219, 0.0239008907, -0.0201559849, -0.00170978846, -0.0196643751, 0.00999846682, -0.0120733483, -0.024059942, 0.0181606282, -0.00702712219, 0.00743197696, 0.0112925563, -0.0221368801, 0.00649936497, -0.0232646912, -0.00749704288, -0.0154278586, 0.00486548711, 0.039646849, 0.0117191, -0.0172930826, 0.0092827417, 0.00558844162, 0.0114371479, 0.00902247801, 0.00558482716, 0.000321489031, 0.00989002362, -0.00413168781, -0.00177485438, 0.0138084395, -0.00114859466, 0.0219199937, 0.0287302304, 0.0100996811, -0.0299881715, 0.00592100108, -0.00334005198, 0.0185076464, 0.0164110772, -0.0170617364, -0.0180738736, -0.0219055358, -0.00247612083, 0.00862485263, 0.00712472107, 0.0188980419, 0.000391525304, -0.00059327489, 0.00309786201, -0.0151820546, -0.0258962475, -0.030797882, -0.00193571195, -0.0110395225, 0.0137289148, -0.0237852186, 0.0093911849, -0.0207632668, 0.00728738587, 0.0411795154, 0.0141916061, 0.000377518038, -0.0443605147, -0.018594401, -0.00726569723, -0.0194764063, 0.00365092256, 0.0040557771, -0.0328221545, 0.00635838881, -0.00850195065, 0.00700181862, 0.0140397856, -0.0114805251, -0.0397914425, -0.0159483869, -0.0166568831, -0.00858870521, -0.027313238, 0.00187787553, 0.00423651608, 0.0102948789, -0.00547276903, 0.00865377113, -0.0244214181, -0.00886342768, 0.00179021724, -0.00116757222, 0.0180738736, -0.00748258363, 0.0254769325, -0.0150085445, 0.0138012106, -0.0234815776, -0.012810762, 0.00319726835, -0.00437026285, 0.00208753254, 0.0212982539, -0.0235394128, -0.0113431634, -0.0258094929, 0.00671625137, 0.00295688584, -0.0011025063, 0.00616319105, 0.0139096538, 0.0126589416, -0.00618849462, 0.0160929766, -0.00498477463, -0.0107431104, -0.0142422123, 0.0209656935, -0.00533902226, -0.0318100192, 0.00839350745, 0.0226863269, 0.0132300761, -0.000816035434, 0.0174376741, -0.0254046377, -0.0152254319, 0.00396179315, 0.0130999442, 0.00366718904, 0.0112202615, 0.00292977504, -0.0152688092, -0.00956469402, 0.0142205236, 0.0092538232, 0.0111985719, 0.039762523, -0.00385335, 0.0165845864, 0.0152398907, -0.00202065916, -0.000683644263, 0.00250323163, -0.0147265922, 0.0141554577, -0.0315786712, -0.00626801932, -0.0103960922, 0.00337258494, 0.00235502585, 0.0133023709, 0.00313220243, 0.015341104, 0.00979604, 0.0284988843, -0.0087911319, -0.0114443768, 0.0174087547, 0.00581978727, -0.0017956394, 0.0165845864, 0.0030743659, 0.0295110215, -0.0285278019, -0.0157893356, -0.0103960922, -0.00898633059, 0.00242370646, 0.0131433215, 0.00496308599, -0.0254335552, 0.0114588365, 0.00609089574, 0.00279060612, -0.0153266452, -0.0167870149, 0.0098249577, 0.00524142338, 0.0114226881, -0.00242370646, 0.000109290457, -0.00433773, 0.0117480177, 0.00119197194, -0.0108949309, -0.0196065381, 0.0106057497, -0.02310564, 0.0158905499, -0.026170969, -0.00612704316, 0.0206765123, 0.00570772961, -0.00955023523, -1.28917554e-05, 0.0212693345, -0.0157748777, 0.00795973372, -0.00485825725, -0.0108732423, -0.0014441025, -0.00567881111, 0.00591738615, 0.0186088607, -0.0135409469, -0.00848026201, 0.0167436376, 0.0164399967, -0.0131939277, -0.00477511762, -0.00981049892, 0.00480042072, 0.0137795219, -0.0108154062, 0.00157061964, 0.0138662765, -0.00226465636, 0.0237273816, 0.0100346152, -0.00561374519, 0.00191402331, -0.00255022361, 0.00434495928, 0.00188510504, 0.00804648828, 0.000645689142, 0.00466305949, -0.0029351972, 0.000597793376, -0.0179582015, 0.0163098648, -0.004301582, 0.0164689142, 0.00191583065, -0.011610657, 0.0186956152, -0.0276024211, -0.0119215269, 0.000250097219, 0.00845857337, 0.0126227932, 0.00134469627, -0.0305376183, 0.0392419957, 0.0138807353, 0.00869714841, 0.00146669487, -0.00311412849, 0.0109961452, -0.00145313947, 0.00754042, 0.0310292263, 0.0125794159, -0.00313581713, 0.0198089667, -0.00331836333, -0.00722593488, 0.00845134351, -0.0100635327, 0.00252311281, 0.0120372, -0.0300749261, -0.00895741209, -0.0274144523, 0.00235683308, 0.0093911849, 0.00150555372, -0.000557127176, -0.00629332289, -0.00183269079, 0.00344488048, 0.0118275434, -0.0159917641, 0.00255564577, -0.00305629219, -0.0147916581, 0.0120733483, 0.00275626569, -0.00388588291, -0.00461245282, -0.00219236081, 0.0265035294, 0.00350813894, -0.00613065809, -0.000692229369, 0.0140470145, -0.00374129182, -0.00284844264, 0.0048727165, 0.00830675289, -0.00804648828, -0.0125866458, 0.00574026257, -0.0164689142, -0.0167147182, -0.00647767633, 0.0168014728, 0.0294098072, -0.0151386773, 0.00220682, 0.0295110215, 0.0108660134, 0.00299122604, -0.00730546, -0.00862485263, -0.00035266648, 0.0118781496, -0.00882728, -0.0227007866, -0.0241611544, -0.00516189821, 8.29138953e-05, -0.00733799301, 0.00536794076, 0.0219055358, 0.0143578853, -0.0178280696, 0.00781514309, -0.000184579432, -0.00532817794, 0.00636923313, 0.000682288723, -0.00893572345, -0.00989725348, 0.0142928194, -0.00957192387, 0.00489802, -0.0048184949, -0.0214862209, -0.0138156693, 0.00618849462, -0.00878390297, 0.0364080109, 0.0083573591, 0.00838627759, 0.010287649, 0.0126734, -0.000830494508, -0.00407385128, 0.00391118648, -0.0062029534, 0.0127601549, 0.0030743659, -0.0165122915, -0.000987737207, 0.00684638368, -0.00629693782, 0.0195053257, 0.0160351414, -0.00827783439, 0.00827060454, 0.0291784629, 0.0154712358, -0.000760910101, 0.00743197696, 0.00900801923, -0.0063656182, 0.0226574093, -0.00197185972, -0.000431513734, 0.0121384142, -0.0183052197, -0.0195053257, -0.0116395745, 0.00255745323, 0.00332920766, -0.0017956394, -0.00782237295, 0.0216452722, 0.00113775034, -0.0104466993, 0.00587400887, 0.00101032958, -0.00761271594, -0.0196643751, -0.0273999926, -0.0296411533, -0.000952493167, 0.00749704288, -0.00288278284, 0.00677047344, 0.032908909, 0.0167870149, -0.00976712164, 0.00550530199, -0.035309121, 0.00183811295, 0.0270240568, 0.0140397856, 0.0257227384, -0.0129842712, 0.00193028979, 0.0151675949, -0.00143958407, -0.0149362497, 0.00118926086, -0.00431604125, 0.0189125016, 0.0229032133, 0.00147482811, -0.0482644737, 0.00239659566, 0.00352259795, -0.000833657454, 0.0128685981, -0.00761271594, 0.0154856956, -0.00842965487, -0.0349331833, 0.00666925963, -0.0358585678, 0.00263878563, 0.0154278586, 0.0069656712, -0.0184353516, 0.01059129, 0.0281952433, 0.000339336984, 0.0145530831, 0.00462329714, -0.00827783439, 0.0251877513, -0.00223573833, 0.020575298, 0.01347588, 0.00357501232, 0.00343945832, 0.00597522268, 0.0101792058, -0.0155001543, -0.0279783569, 4.52976456e-05, -0.0163532421, -0.00422205683, -0.00463414146, -0.0283542927, 0.00570411468, 0.00243455078, 0.0176690184, -0.0099623194, -0.0098249577, 0.00119920156, -0.00418590941, 1.55463549e-05, -0.0248841103, -0.00743920635, -0.0117624775, -0.000111606169, 0.0107431104, -0.0137506034, 0.0144591, 0.000867094088, -0.0326775648, 0.0190860108, -0.00521612, 0.00521973474, 0.012933664, -0.0202571973, -0.00445701741, 0.0225706547, 0.0023134558, 0.0196065381, 0.00950685795, -0.00568242604, 0.0223537665, 0.0125071211, -0.00609812513, -0.00653912779, 0.00436303299, 0.00622464204, 0.0269951373, 0.00574749196, -0.0138879651, 0.00738498475, -4.21912e-05, -0.0128613692, 0.0147844292, 0.0136349304, 0.017452132, 0.00263155601, 0.0208644792, 0.00817662105, -0.00738137029, 0.00247431337, -0.00479680626, 0.0182618424, 0.00819108, 0.0120733483, 0.00680662086, 0.0119576752, 0.00749704288, 0.00842965487, -0.0131650101, -0.00136096275, 0.0106708156, 0.0143000493, 0.015398941, 0.00915261, 0.0130493371, 0.0122613162, -0.0221224222, -0.02021382, -0.00743197696, -0.0192306023, -0.00490524946, 0.0205463804, 0.00331294117, -0.0152688092, 0.0277470108, 0.0182763021, -0.00529203052, 0.00751873152, 0.0256504416, -0.0115455911, 0.0200836882, 0.0184787288, 0.0202282798, 0.0264456924, 0.00604751846, 0.0054691541, -0.0132445348, -0.00462329714, 0.0013221039, 0.00863931142, 0.00285567204, -0.0224549808, -0.000964241161, -0.0130927144, -0.040254131, 0.0140108671, 0.011133506, 0.00962253, -0.00519081671, -0.00689337542, -0.0160206817, -0.0044642468, 0.013895194, -0.0209801532, 0.0010031, 0.012875828, 0.015760418, 0.0128179919, -0.00367984083, -0.0228164587, -0.00850195065, -0.0188402068, 0.00820553862, -0.0157893356, -0.00452208333, 0.0002430936, 0.000897367834, 0.00057294179, -0.00226827129, -0.0294098072, 0.00278337649, -0.00545469532, 0.00442086952, 0.0125577273, 0.0291784629, -0.00186160905, 0.0070994175, 0.00427989336, 0.017264165, -0.00140705111, 0.00513298, 0.00355332368, -0.0203728713, 0.0161074363, -0.000148883541, 0.0199101791, -0.0163966194, 0.0140614742, -0.00595714897, 0.00325871957, -0.00344849518, -0.00645960262, 0.0230767224, 0.00519081671, -0.0154712358, 0.00394371944, -0.0051438245, -0.00908754393, 0.00507875858, 0.0175967235, 0.0089284936, 0.0226574093, -0.0256793611, -0.0114949839, 0.0156447459, 0.0136493901, -0.00126065267, 0.020575298, 0.000177801732, 0.0563615672, -0.00967313722, -0.034644, -0.00778622506, -0.0122396275, -0.0175678059, -0.0144012626, -0.0251732916, 0.00221585692, 0.0195631608, -0.0110033741, -0.00744643621, 0.00799588207, -0.00683915382, 0.0257371962, 5.38262575e-05, -0.00177033595, -0.000475794746, 0.0202427395, -0.00808986556, 0.0252745058, -0.025086537, 0.0196354575, -0.0256504416, -0.0225851126, 0.0159050096, -0.0204162486, -0.0252022091, 0.00146850222, 0.0316654257, 0.0157170407, 0.00035741087, 0.00236587017, 0.0219199937, 0.00304544787, -0.0160785187, -1.80879942e-05, -0.0132445348, 0.00434134435, 0.00813324377, -0.00149109459, -0.00304544787, -0.0140542444, 0.00607643649, -0.00663311174, 0.003835276, -0.000790732, 0.00186883856, 0.00436664792, -0.0114226881, 0.0244647954, 0.0267782509, -0.00581255788, -0.0127673848, 0.0293085948, -0.0255203098, 0.02984358, 0.00620656833, -0.0179003645, 0.0101575172, 0.00708857318, 0.0050353813, -0.00716809835, -0.0104539292, -0.0162520278, 0.00997677818, -0.00368707022, -0.00986110605, 0.00520527549, -0.0144663285, 0.0127023188, 0.0153121864, 0.0412951857, -0.000699007069, -0.0196643751, 0.0205608383, -0.00632224092, -0.00717894267, 0.0124782026, -0.0148205766, 0.0160351414, 0.0159917641, -0.00818385, 0.00624271622, 0.00532817794, 0.0263011, 0.0132083874, -0.0139168827, -0.0110467514, 0.00387865328, -0.0100273853, -0.00983941741, -0.0414686948, -0.00537517, -0.0124131367, 0.00718617253, -0.0105696013, -0.0146036902, -0.00687168678, 0.0114660654, -0.013837358, -0.011849232, 0.013837358, 0.014075933, -0.00698013, 0.0113576222, -0.0123842182, 0.00130674115, 0.00378828403, -0.00289362716, -0.0130421072, -0.00761994533, 0.00739582907, 0.00616319105, -0.00259360089, 0.0076994705, -0.00628970796, -0.00698736, 0.0184208918, -0.00447509112, -0.00306894374, 0.00498838909, -0.00360212312, -9.72882754e-06, 0.00575110689, -0.0131433215, -0.017322, -0.0184642691, 0.0124131367, 0.00816216134, -0.00791635644, 0.00627886364, -0.0116251158, -0.00824168697, -0.0035948935, 0.00889957603, -0.00785852, -0.0127312364, -0.0266625788, -0.0131866988, 0.00533179287, 0.0183919743, 0.00884173904, -0.00617042044, -0.00094255252, -0.0023947882, 0.0137289148, -0.00537878508, 0.00416783523, -0.00840073638, -0.0194764063, 0.0063113966, -0.007399444, -0.00515466882, -0.0216741897, 0.0112636387, -0.0111985719, 0.00959361251, 0.00889234617, -0.00981049892, -0.0113793109, 0.00415337645, -0.00420759805, 0.0340656377, 0.000302511471, 0.00553783495, 0.00613788748, -0.00965867843, 0.00358404918, 0.00761271594, 0.00349910208, -0.0218476988, 0.00795250479, -0.00758379744, 0.0102804191, 0.00257191225, -0.0158471726, 0.0219344534, 0.000187290527, -0.00539685879, -0.00623910129, -0.0252745058, -0.0078079137, -0.00174774358, 0.00831398182, 0.00406662188, -0.00537155522, -0.0142855896, -0.00905139651, 0.0133023709, 0.0160929766, 0.0064487583, 0.00819831, -0.00916706864, 0.0170472786, -0.0176401, 0.00915261, 0.018594401, -0.0240454823, -0.00195920793, -0.0145024769, 0.00254841615, 0.006257175, 0.015037463, 0.00421844237, 0.0270385146, -0.0158760902, 0.000227843775, 0.0292796753, 0.00463775592, -0.017452132, -0.00331655587, 0.0193318166, -0.0118058547, 0.0245226324, -0.00904416665, 0.0260986742, -0.00861039385, 0.009745433, 0.000871160708, -0.00645960262, 0.0030165296, 0.0161363538, -0.00207668822, -0.0203584116, -0.00103111449, -0.0199246388, 0.00343584339, 0.0181606282, 0.00481488, 0.00885619782, -0.00997677818, -0.0249708649, 0.000195423767, 0.00910923257, 0.0028068726, -0.0117769362, -0.00382081699, -0.0143651152, -0.0263300203, -0.0188112874, -0.0118636908, -0.000595534162, 0.022498358, -0.0187968295, 0.00198089657, -0.00469197752, 0.0190426335, -0.0202861167, -0.0116034271, 0.00219597574, 0.0268650055, 0.0107720289, -0.0230622627, 0.0134831099, -0.0192595199, 0.0108081764, -0.00675962865, -0.0646032542, -0.0124637438, 0.0269662198, 0.0249853227, 0.00822722726, 0.0162664875, 0.00904416665, -0.00564266369, 0.023698464, 0.0224694405, 0.0109527679, 0.0053354078, 0.00542939175, 0.00412084348, -0.00737052597, 0.00459437864, 0.0253034234, -0.00847303215, -0.0251732916, -0.0163387824, -0.000281500601, -0.00129228202, 0.00744643621, -0.0118636908, 0.0124420552, 0.00976712164, 0.00272554019, 0.00759825669, 0.0127023188, -0.00551253138, -0.000469017017, 0.00852363929, 9.60739344e-05, -0.0170906559, 0.00508237351, -0.013533717, -0.0100635327, -0.0101358285, 0.0011296171, -0.0160496, 0.00261167483, 0.00279422081, 0.00733076315, -0.00481488, -0.0276457984, -0.0110901287, 0.0108804721, -0.0290483311, -0.00503899623, 0.0154712358, -0.0137795219, -0.0087911319, -0.0191004705, -0.0215440579, -0.0102442717, -0.0019881262, 0.00109527679, -0.0100996811, 0.0164978318, 0.0252889637, -0.00287193852, -0.0403698049, 0.0136710787, 0.0036220043, 0.00975266285, 0.00338523672, 0.00605836278, 0.0151675949, 0.00416783523, -0.0147121334, -0.0123119233, -0.00638369238, -0.0120516596, -0.00325510465, 0.00450400962, -0.0197222121, -0.0028032579, 0.00506791426, 0.0157315, 0.0125504984, 0.00182546128, -0.00205319212, -0.00472451048, 0.000750969455, 0.00413168781, 0.00207307329, 0.00516912807, 0.00798142236, 0.0244503375, 0.00640899595, 0.00902970787, -0.00639815163, 0.00184263149, 0.00366357435, 0.00848026201, 0.00913092121, -0.010887702, -0.0226863269, 0.0168303922, 0.0151386773, 0.0171195734, -0.000148318722, -0.00155254581, 0.0195197836, 0.0162231084, -0.0114009995, -0.0111696543, -0.00343765086, -0.003699722, -0.00981772877, 0.0150230043, 0.00407023635, -0.00563904876, -0.0106418971, 0.0221947171, 0.0170761961, -0.0186377782, -0.0169749819, -0.0029117011, 0.00466305949, -0.0125938756, -0.0100418441, -0.0172786228, -0.000872516248, 0.00965867843, 0.00101123319, 0.0045473869, 8.84490219e-05, -0.0148784127, -0.00339246611, 0.00646683201, 0.00499561895, 0.0110395225, -0.00674517, 0.0047895764, -0.000888782728, -0.003835276, -0.00409915484, -0.023640627, -0.00580894295, -0.0249708649, 0.00637646252, -0.0130204186, -0.0316943452, -0.00444617309, -0.0436664782, -0.0189847965, 0.000576556602, 0.00237852172, 0.00827783439, -0.0199824758, -0.0245660096, 0.00497393031, -0.0134831099, 0.00198631873, -0.0280217342, 0.0176545605, -0.000205590317, -0.00727654155, 0.00450762408, -0.0146615263, 0.0129987299, -0.00432688557, 0.00201162207, 0.00899355952, 0.0304219443, -0.00673794, -0.00252130534, -0.0175244287, -0.00799588207, 0.000581978762, 0.0245949272, 0.00684276875, -0.0107792588, 0.0207054298, 0.00453654258, 0.00456546061, -0.00969482586, 0.0107286517, 0.0235538725, 0.0348175094, 0.00122269755, 0.00703435158, 0.000440324744, 0.00651743915, -0.0183052197, -0.0187679101, -0.00327137113, 0.00377382501, 0.000986833475, 0.0214428436, 0.0246672239, -0.0182473827, -0.0123553006, -0.0326486453, 0.00825614575, 0.0109816855, 0.0127746146, -0.0204885434, 0.0113287047, -0.00690783467, 0.0023134558, -0.00621018326, 0.0182184651, -0.00161490066, -0.0115239024, -0.0103237964, 0.0168737695, -0.00650298, -0.0146470675, 0.00215440569, -0.0257227384, -0.0156881232, 0.00527395634, 0.00174322515, 0.0103671737, -0.0266192015, -0.0178714469, -0.0116901817, 0.0100346152, -0.00358043448, -0.00517635746, 0.0248262733, 0.00523780892, 0.018102793, -0.000921315746, -0.00461245282, 0.0173075423, 0.00748258363, 0.00705604, 0.0172352456, -0.0239587277, 0.0131433215, -0.017509969, -0.00965867843, 0.0167580955, -0.0176834781, 0.014379574, -0.0112202615, 0.00819108, 0.00365815219, 0.00804648828, -0.00326233427, -0.00515466882, -0.0166568831, -0.00118926086, 0.0195631608, 0.00461245282, 0.0115672797, 0.000540860696, -0.00287193852, -0.0234960355, 0.00662588235, 0.0164110772, 0.00514743943, 0.00417145, -0.0161363538, 0.0126806302, 0.00460883789, 0.0276457984, 0.011249179, -0.000344985077, -0.00697651552, -0.00418229448, 0.00730907451, 0.00738859968, 0.00588485319, -0.0216741897, -0.00701266294, 0.00234237406, 0.00160767115, -0.000489350117, 0.0195342433, -0.0116468044, 0.0102804191, 0.00440641027, -0.0187679101, 0.0170039013, -0.0133240595, -0.00090053078, -0.00977435149, -0.0162520278, -0.0141771464, -0.001917638, -0.0113503933, -0.00251588318, 0.0118275434, -0.0303930268, 0.000962433813, -0.027616879, 0.0277036335, -0.0134903397, 0.00209476193, -0.0092827417, -0.00529926, -0.0244358778, 0.00598968193, -0.00383166131, 0.0121311843, 0.00254118675, -0.00475704344, -0.00529926, -0.0137939807, -0.00704158144, -0.0141120804, -0.0267782509, -0.00727292709, -0.0248696506, 0.00569688529, 0.00350271678, -0.0246961415, -0.00303098862, 0.0210524481, 0.00991171226, 0.00401962968, 0.000530016376, -0.015702581, 0.00394371944, 0.0047353548, -0.000938937766, -0.00867546, -0.0145747717, 0.0140903918, 0.0179726612, -0.00801034085, -0.014198835, 0.0169460643, 0.0118636908, 0.019129388, 0.00248335022, 0.00926105306, 0.0122034801, -0.0243780408, 0.0214283857, -0.0113431634, -0.00425459, -0.00748981349, -0.0171340331, -0.014256672, -0.00563543383, -0.0227007866, 0.0089284936, 0.00202969601, -0.00324787525, 0.0221224222, -0.0293808896, 0.016121896, 0.0143868038, -0.000770398881, -0.00378828403, -0.0115239024, 0.00954300538, 0.00324606779, 0.000704429229, -0.00713195046, -0.00237309956, -0.0158616323, 0.00470643677, 0.00472812541, -0.0077067, 0.00386057957, 0.00179654313, -0.00494139735, -0.00143958407, 0.00258456403, -0.00623548636, 0.02984358, -0.00223754556, -0.0232068542, -0.0197222121, 0.0293230526, -0.0272554029, -0.010526224, 0.0647189245, 0.0116251158, 0.0148928724, -0.00653189793, 0.00409554, -0.0368996225, 0.0093911849, 0.0389238968, -0.0131360916, -0.0175388865, -0.000779435795, 0.00840073638, 0.0106780445, 0.00912369136, -0.00323522347, -0.021356089, -0.00945625082, 0.0014847687, 0.00694759702, -0.00242189923, 0.001917638, -0.0185799431, 0.00898633059, -0.00840796623, -0.000732895569, 0.00837904774, -0.012572187, -0.00521612, -0.0236840043, 0.0149940858, 0.00734160747, -0.0116251158, 0.00728738587, 0.00107629923, -0.0239153504, -0.0022050126, -0.0476571918, 0.00559928594, 0.017452132, -0.012752925, 0.0128975166, 0.0142205236, 0.00863931142, 0.0222814716, 0.00346837635, -0.0010347293, -0.00394010451, 0.00367803336, 0.0149362497, -0.00717532821, -0.0168303922, -0.00217970926, -0.00414253213, -0.022917673, -0.0128685981, 0.00720786117, 0.00940564368, 0.00441725459, -0.00576556567, 0.0107141929, -0.00779345445, 0.0254769325, 0.0184787288, -0.0175533462, 0.00556313852, -0.00699458923, 0.00403408846, 0.0014441025, -0.0199101791, -0.0139891785, 0.0199969336, -0.0224260632, -0.0189269613, -0.0163532421, 0.0219199937, 0.0118636908, -0.00238755881, -0.00626440486, 0.00918875728, -0.00819108, -0.00104466989, 0.00367080374, -0.011126277, -0.00297857448, 0.00155796797, -0.000395140058, -0.0279638972, 0.00455100136, 0.00577279553, -0.000367351488, 0.0122179389, 0.015398941, 0.00287736068, -0.00486910157, 0.000763169315, -0.025867328, -0.0178136099, 0.0123263821, 0.0238575134, -0.0135987829, 0.0204162486, -0.00919598714, -0.0102225831, -0.0126661705, -0.0112274904, 0.019548703, -0.0138084395, 0.00978881, -0.0043558036, -0.0242623687, -0.000512846163, 0.00651020929, 0.0238719732, 0.0157748777, 0.00926105306, -0.0219778307, 0.00794527493, -0.00335631846, -0.00739221461, -0.00282856124, 0.0106057497, -0.00493416749, -0.000998581527, -0.000124257887, -0.00514743943, 0.00173599564, 0.00781514309, -0.0138156693, 0.0023676774, 0.0129047465, -0.00194836361, -0.0146542974, -0.0135120284, -0.0104033221, 0.0185076464, 0.0144446399, -0.00913815107, 0.00468836306, -0.00434495928, 0.0164689142, 0.00311774318, 0.00428350829, 0.0033780071, 0.00904416665, 0.00354790152, -0.0138807353, 0.0158471726, -0.0341234729, 0.0126878591, 0.00160676742, 0.0110033741, 0.00408108067, 0.00681746518, -0.0020658439, 0.0260552969, 0.0102370419, 0.0121745616, -0.00669094827, 0.0356272198, -0.00194113411, 0.00156790856, 0.000568423362, -0.0144735584, 0.000835013, 0.0159917641, -0.0232936088, -0.00545831, -0.0124998912, 0.0145313945, 0.018594401, 0.0110033741, 0.0332559273, 0.00344668771, 0.0154423183, -0.00902970787, -0.00459799357, -0.00425097533, 0.00687891664, -0.0036455004, -0.0232646912, -0.00253757183, 0.000855346094, -0.00690783467, 0.0416711234, 0.00961530115, -0.0214428436, 0.00213813921, 0.00942733232, 0.0122974636, 0.00420036819, -0.0147844292, 0.00216344278, -0.00529564498, -0.00932611898, -0.027009597, -0.018044956, 0.0167147182, -0.00955023523, 0.00258275657, -0.0188835841, 0.0282819979, -0.00955746416, 0.0104828468, 0.0092538232, -0.00141247327, -0.0033237855, 0.0146253789, 0.0160929766, -0.0130637959, -0.00122540863, -0.0199969336]
12 Jun, 2023
multiset rbegin() and rend() function in C++ STL 12 Jun, 2023 multiset::rbegin() is a built-in function in C++ STL which returns a reverse iterator pointing to the last element in the multiset container. Syntax: reverse_iterator multiset_name.rbegin() Parameters: The function does not take any parameter. Return value: The function returns a reverse iterator pointing to the last element in the container. Below program illustrate the multiset::rbegin() method: CPP // CPP program to demonstrate the // multiset::rbegin() function #include <bits/stdc++.h> using namespace std; int main() { int arr[] = { 15, 12, 15, 11, 10, 10 }; // initializes the set from an array multiset<int> s(arr, arr + 6); multiset<int>::reverse_iterator rit; // prints all elements in reverse order for (rit = s.rbegin(); rit != s.rend(); rit++) cout << *rit << " "; cout << "\nThe last element in multiset is " << *(s.rbegin()); return 0; } Output: 15 15 12 11 10 10 The last element in multiset is 15 multiset::rend() in an inbuilt function in C++ STL which returns a reverse iterator pointing to the theoretical element right before the first element in the multiset container. Syntax: reverse_iterator multiset_name.rend() Parameter: The function does not accepts any parameter. Return value: The function returns a reverse iterator pointing to the theoretical element right before the first element in the multiset container. Below program illustrate the multiset::rend() function: CPP // CPP program to demonstrate the // multiset::rend() function #include <bits/stdc++.h> using namespace std; int main() { int arr[] = { 15, 13, 15, 11, 13, 10 }; // initializes the set from an array multiset<int> s(arr, arr + 6); multiset<int>::reverse_iterator rit; // prints all elements in reverse order for (rit = s.rbegin(); rit != s.rend(); rit++) cout << *rit << " "; return 0; } Output: 15 15 13 13 11 10 Let us see the differences in a tabular form -: multiset rbegin() multiset rend() 1. It is used to return a reverse iterator pointing to the last element in the container It is used to return a reverse iterator pointing to the theoretical element right before the first element in the multiset container 2. Its syntax is -: reverse_iterator rbegin(); Its syntax is -: reverse_iterator rend(); 3. It does not take any parameters. It does not take any parameters. 4. Its complexity is constant. Its complexity does not changes. 5. Its iterator validity does not changes. Its iterator validity does not change. Learn C++ Online – Master everything from basics to advanced concepts. Apply your knowledge with practical exercises and boost your skills. Take the Three 90 Challenge: finish 90% in 90 days for a 90% refund. Start now and level up your C++ programming!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum/Algorithm for Dynamic Time out timer Calculation/Difference between Round trip time (RTT) and Time to live (TTL)/Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms/Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm/Round Robin Scheduling Algorithm with Different Arrival Time/Selfish Round Robin CPU Scheduling/Find the order of execution of given N processes in Round Robin Scheduling/Calculate server loads using Round Robin Scheduling/set::lower_bound() Function in C++ STL/Implementation of lower_bound() and upper_bound() in List of Pairs in C++/Difference between std::set::lower_bound and std::lower_bound in C++/Difference between std::set vs std::vector in C++ STL/std::minmax() and std::minmax_element() in C++ STL/std::rotate vs std::rotate_copy in C++ STL/std::bitset::to_ullong and std::bitset::to_ulong in C++ STL/std::upper_bound and std::lower_bound for Vector in C++ STL/std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++/std::string::append vs std::string::push_back() vs Operator += in C++/Vector push_back() in C++ STL/vector :: cbegin() and vector :: cend() in C++ STL/unordered_multiset cend() function in C++ STL/unordered_multiset bucket() function in C++ STL/unordered_multiset emplace_hint() function in C++ STL/unordered_multiset end() function in C++ STL/unordered_multiset size() in C++ STL/unordered_multiset emplace() function in C++ STL/unordered_multiset find() function in C++STL/unordered_multiset erase() function in C++ STL/unordered_multiset clear() function in C++ STL/unordered_multiset swap() function in C++ STL/unordered_multiset bucket_size() function in C++ STL/unordered_multiset bucket_count() function in C++ STL/unordered_set bucket_count() function in C++ STL/unordered_set cbegin() function in C++ STL/array::cbegin() and array::cend() in C++ STL/array::rbegin() and array::rend() in C++ STL/multimap rbegin in C++ STL/vector rbegin() and rend() Functions in C++ STL/multiset rbegin() and rend() function in C++ STL
https://www.geeksforgeeks.org/multiset-rbegin-and-rend-function-in-c-stl?ref=asr5
PHP
multiset rbegin() and rend() function in C++ STL
unordered_multiset clear() function in C++ STL, What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, jQWidgets jqxTreeMap width Property, Round Robin Scheduling Algorithm with Different Arrival Time, Difference between Flow and TypeScript, unordered_multiset emplace() function in C++ STL, jQWidgets jqxTree destroy() Method, unordered_set bucket_count() function in C++ STL, jQWidgets jqxTree collapseAll() Method, Find the order of execution of given N processes in Round Robin Scheduling, jQWidgets jqxScrollView buttonsOffset Property, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Vector push_back() in C++ STL, jQWidgets jqxListBox enableHover Property, Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm, std::rotate vs std::rotate_copy in C++ STL, Selfish Round Robin CPU Scheduling, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxSlider buttonsPosition Property, std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++, std::upper_bound and std::lower_bound for Vector in C++ STL, Difference between Round trip time (RTT) and Time to live (TTL), jQWidgets jqxSlider rtl Property, Difference between std::set::lower_bound and std::lower_bound in C++, jQWidgets jqxTooltip opacity Property, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, unordered_multiset erase() function in C++ STL, jQWidgets jqxToolBar height Property, PHP, std::minmax() and std::minmax_element() in C++ STL, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, Node.js date-and-time Date.transform() Method, unordered_multiset size() in C++ STL, TypeScript Optional Parameters, jQWidgets jqxToolBar theme Property, Difference between std::set vs std::vector in C++ STL, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, Steps to Diagnose and Resolve a Slow Network, How to use Optional Chaining with Arrays and Functions in TypeScript ?, Calculate server loads using Round Robin Scheduling, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, jQWidgets jqxScrollView showButtons Property, Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms, jQWidgets jqxScrollView disabled Property, jQWidgets jqxSplitter destroy() Method, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, set::lower_bound() Function in C++ STL, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, jQWidgets jqxTree collapseItem() Method, std::string::append vs std::string::push_back() vs Operator += in C++, unordered_multiset swap() function in C++ STL, unordered_multiset cend() function in C++ STL, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), jQWidgets jqxSortable opacity Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, multimap rbegin in C++ STL, vector :: cbegin() and vector :: cend() in C++ STL, jQWidgets jqxSlider height Property, jQWidgets jqxSwitchButton onLabel Property, unordered_multiset bucket_size() function in C++ STL, unordered_set cbegin() function in C++ STL, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, jQWidgets jqxToolBar tools Property, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTree width Property, Implementation of lower_bound() and upper_bound() in List of Pairs in C++, jQWidgets jqxTree clear() Method, TLS Handshake?, multiset rbegin() and rend() function in C++ STL, Algorithm for Dynamic Time out timer Calculation, Adhoc TCP, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, jQWidgets jqxTabs position Property, Differences between Wireless Adhoc Network and Wireless Sensor Network, jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, std::bitset::to_ullong and std::bitset::to_ulong in C++ STL, unordered_multiset emplace_hint() function in C++ STL, unordered_multiset bucket_count() function in C++ STL, unordered_multiset find() function in C++STL, unordered_multiset bucket() function in C++ STL, Impact of Three-way Handshake and Slow Start Algorithm, array::rbegin() and array::rend() in C++ STL, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, vector rbegin() and rend() Functions in C++ STL, array::cbegin() and array::cend() in C++ STL, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, unordered_multiset end() function in C++ STL, How to Sort an Array Having Optional Properties in TypeScript ?
GeeksforGeeks
[-0.00620143861, 0.00943725184, -0.00914776511, 0.0364881344, 0.0201739743, -0.0624775663, -0.015091883, 0.00358319655, 0.0122484853, 0.00362179475, -0.0342751704, 0.0176522285, -0.00480225543, -0.0162884258, 0.0249987468, 0.000196307868, 0.0355617777, 0.0117917396, -0.000682303, -0.019993851, -0.0157995168, -0.00401420938, 0.00852376223, -0.00946941692, -0.0114700887, -0.000797293382, -0.053265471, -0.00914776511, -0.0163913555, -0.00989399664, 0.0484535657, -0.000264156202, 0.0334774777, -0.00262789195, -0.0531110764, 0.0551181808, 0.0472184233, 0.011733843, -0.0366425253, -0.00313127623, -0.00456745, 0.027044449, 0.0226185266, -0.00544555811, -0.0237507392, 0.0408368595, -0.00175782479, -0.042689573, -0.0215249117, -0.00188005238, 0.0175493, 0.0574340709, 0.0467809774, 0.0277906805, 0.0331686921, 0.0146544371, 0.0109232813, 0.0146029731, -0.0348412804, -0.0365653299, -0.0142813213, -0.00735938363, -0.00658742059, -0.0365910605, -1.39842969e-05, 0.0211646613, -0.0582060367, 0.0320622101, 0.00993259531, 0.00667104963, -0.0306469444, 0.0246127639, 0.00421041669, 0.00457388256, -0.0208687428, -0.00587978726, -0.00628506811, 0.00272277906, -0.0350471362, 0.045442909, -0.0363337398, 0.04119711, -0.0207786802, 0.00587013783, 0.0218851604, -0.0212547239, -0.0177165587, -0.0306726769, 0.0696825609, 0.00335804047, -0.0182569325, -0.00134771934, 0.00903197099, -0.0262338873, -0.0112577984, 0.0273532346, 0.0347383507, 0.0197236631, -0.0490968674, 0.0300551057, 0.0126923639, 0.00238022022, 0.00901267212, -0.00735295098, 0.00693480391, 0.0384695046, 0.0197493955, -0.00811848138, -0.0347898155, 0.00327762775, 0.00543269189, 0.0236092117, -5.33049206e-06, 0.0659771338, -0.038443774, -0.0119461324, -0.000278429477, -0.0228243824, 0.00765530299, 0.0332458876, 0.00136782252, 0.0178194866, 0.0328599066, 0.0511554368, -0.0495600477, 0.0105694644, -0.00729505345, 0.016249828, -0.0251531396, 0.0116759455, 0.0112835309, -0.0324739255, -0.00918636378, -0.0521847233, -0.00842726603, 0.0391385406, 0.0279193409, 0.016468551, -0.0148860263, -0.0146029731, -0.0370027758, -0.0563018583, 0.016468551, 0.031290248, -0.0573311448, -0.0385467038, -0.00362179475, 0.0507694557, 0.00665818388, 0.00885827933, -0.0226442572, 0.0238022022, 0.0431784838, -0.0238150693, -0.0216149744, -0.0082342755, 0.00726288836, -0.000344971108, 0.0344295651, -0.0188101735, 0.0299007129, 0.0252560675, 0.0121198241, 0.00443235599, -0.00689620571, 0.0345067605, 0.0319335498, -0.00806701649, -0.0481190495, 0.044954, -0.0315475687, 0.0151948119, -0.0109168477, -0.00629471755, 0.0115215527, -0.0280480012, 0.0362565443, 0.0192862172, 0.000904644548, 0.0114314901, 0.0177808888, -0.00702486653, 0.00565463165, 0.00148683356, 0.00591838546, 0.00244133407, 0.0519531332, -0.0249086842, 0.0347640812, 0.00690907193, -0.0102671124, 0.0119718648, 0.0308528021, 0.0189131014, 0.0464464612, -0.00229498278, -0.0242396481, 0.00732721854, 0.032268066, 0.0497401692, -0.0246127639, -0.0337090641, 0.0193505473, 0.0128467567, 0.0385209695, -0.0332716182, -0.012775993, -0.0136251533, 0.00357676344, -0.0405280739, 0.00568036363, -0.0210102685, 0.0185271204, 0.0237636045, 0.00456423312, 0.0070441654, -0.047372818, 0.0312130507, -0.0130912112, -0.0371057056, -0.0113735935, -0.0586692132, 0.046549391, -0.0445422828, -0.0353301875, -0.0144228479, -0.00233518914, 0.0444908217, -0.00835007, -0.00085559272, 0.00982966647, 0.0410684496, -0.0263496824, -0.0319850147, -0.0053168973, -0.00977820251, -0.0372858308, 0.00727575459, -0.00771320052, 0.00699913409, 0.00262145884, 0.0255777184, -0.0470640324, 0.0193762798, 0.045545835, 0.0456487648, 0.0106852595, -0.0206242874, -0.0182312, -0.0475272089, 0.0121069588, 0.00239951932, 0.0283310544, 0.00888401177, 0.0049341321, -0.000853984442, 0.0279193409, 0.000695169088, -0.0312387832, 0.00809274893, 0.0168545321, 0.0496372432, -0.010357175, 0.00195403211, 0.00825357437, 0.0270187166, 0.0151433479, 0.0139982682, 0.00538766058, -0.0381349884, 0.0268643238, -0.027044449, -0.0194920748, -0.0222454108, -0.0163012929, -0.00566428108, -0.0153492047, 0.0150532853, 0.034043584, -0.032113675, -0.00670964783, -0.00942438561, -0.00137666799, -0.0213190541, 0.0292316787, -0.0210102685, -0.00714066066, 0.00645876, -0.0221682135, 0.00503384415, -0.0148602938, -0.0153234722, 0.0081313476, 0.0011402542, 0.0206886176, 0.0424579829, 0.00234966329, -0.0453142487, -0.00468002772, -0.0165328812, 0.0237893369, -0.00883254688, 0.00567393051, -0.0506150611, -0.00238022022, -0.0350214019, -0.00509817433, 0.00867815409, 0.0203412343, -0.0289228931, -0.0175235681, -0.0503320098, -0.00275655231, 0.0304410867, 0.0221424811, -0.0297463201, 0.00131475, -0.00840153452, -0.0234033559, 0.00427796366, 0.000329893694, -0.0354845822, 0.00648449222, 0.019826591, 0.00529438211, -0.0309814624, -0.0075395084, 0.0375688821, -0.0144614466, -0.0416860208, -0.0146415709, 0.00579294143, -0.0279965363, 0.0028337487, -0.0181411393, -0.0172662474, -0.00590230292, 0.000229980738, 0.0202769041, 0.0329628363, -0.00639764639, -0.0131748412, 0.00964954216, 0.0149632227, 0.00168545323, -0.0134964921, 0.0159281772, -0.015259142, 0.00189452665, 0.0384695046, 0.00080774707, -0.0238279346, -0.0129625509, -0.0177680235, 0.0417889468, -0.0131748412, -0.0296948571, -0.0263110846, 0.0083114719, 0.00241560186, 0.0113092633, 0.0436673909, -0.00754594151, 0.0406310037, 0.00410748832, -0.0536257215, -0.0178066213, -0.0187458433, 0.0417632163, 0.0252946652, 0.0182183348, -0.0034834845, 0.0526221693, 0.0100676883, 0.00771320052, -0.00752020953, 0.00195885706, 0.014268456, 0.0217436347, 0.000461569754, -0.000718488765, 0.0274046976, -0.03448103, 0.00364431017, 0.0265040752, -0.0259122364, -0.00861382391, -0.00596341677, -0.00097058306, -0.0244583711, -0.00901267212, -0.0100290906, -0.00705059851, -0.0138310101, -0.0213576518, 0.0245998986, -0.0397046469, -0.0380835235, -0.0303381588, -0.0538315773, 0.0186300483, -0.00618213974, 0.0102092149, 0.00258125248, -0.0214605816, -0.00626898557, 0.00935362279, -0.0696825609, 0.0255391207, 0.0291802138, -0.00821497664, -0.00612424267, -0.00603096373, -0.00918636378, 0.027816413, 0.0153749362, -0.020598555, 0.0354331173, -0.00877465, -0.0281766616, -0.0043615927, -0.0260666292, -0.014487179, 0.014487179, 0.0146158393, 0.0193248149, 0.0244455058, 0.00789332483, 8.38806518e-05, 0.0242396481, -0.0165714789, 0.0142041259, 0.0373887569, 0.012171289, 0.0305182841, -0.0448253378, 0.0105244331, -0.00996476, -0.00606312882, -0.00157528766, 0.0472441576, 0.033760529, 0.0223998036, -0.00332265883, 0.00827930681, 0.0289486255, -0.018449923, -0.0149503564, 0.0117467092, 0.018668646, -0.0112449322, 0.000244254, 0.00176104135, 0.0280222688, 0.0481447801, -0.0232232306, 0.0508209206, -0.0342751704, 0.0578972511, 0.0289228931, -0.012338547, 0.00752664264, -0.0252046026, -0.000272800593, 0.0269157887, -0.00881968066, 0.012724529, 0.0238279346, 0.000701200042, -0.000729344552, -0.0241881851, -0.010659527, -0.00991972908, 0.00830503926, 0.0347383507, 0.0153234722, -0.00164846343, -0.0344038345, -0.023905132, -0.0119847311, 0.0136894835, -0.0170089249, -0.0344295651, -0.030183766, -0.0113156959, -0.00499846274, 0.0126859313, -0.0382893831, -0.0250759423, 0.00969457254, -0.0197107978, 0.0102156484, -0.027867876, -0.0390098803, 0.0253975932, 0.0351757966, -0.0409655198, 0.0163012929, -0.00124881149, -0.0139468042, 0.0461376756, -0.00710849557, -0.0262982175, 0.0354588479, 0.0165843461, -0.0245355684, -0.0497144386, 0.0110519417, -0.0606248528, -0.00633009942, -0.0174463708, 0.0330142975, 0.00738511607, -0.00385660026, -2.54808219e-05, -0.00105984136, 0.0251016747, 0.00217918819, -0.0407339334, -0.00985539891, 0.0402964875, -0.00868458766, 0.00388233224, 0.0315475687, -0.00943081919, 0.015863847, 0.00296080112, 0.00572861126, -0.00218240474, -0.0251016747, -0.0216664374, 0.00362501107, -0.0128531894, 0.0227343198, -0.0100033581, -0.0185399856, -0.0168802645, 0.00740441494, -0.0257063787, 0.00604704628, -0.00880038179, 0.0360506885, 0.00357354688, -0.00942438561, -0.00348026794, 0.014538643, 0.0119847311, 0.00627220189, -0.0183469951, 0.00925069395, 0.0112256333, 0.00584118906, -0.00627220189, -0.00840153452, -0.00367969181, 0.0277649481, -0.00419433415, -0.00286108907, -0.00642981147, -0.0252689328, -0.0154392663, 0.0462406054, 0.0286913048, -0.00229015783, -0.0238794, 0.000876500038, 0.000891778502, 0.0144614466, -0.0114379236, 0.015477865, 0.0157609172, 0.00880681537, 0.0187201109, -0.00201997068, 0.0133035015, 0.0223869365, 0.0124993734, 0.0236220788, -0.020045314, 0.0102606798, 0.00652952306, -0.0362822786, -0.00748804444, -0.0414287, -0.00171761843, 0.00435194327, -0.0121777216, 0.00712136179, -0.00492769945, 0.00176586618, 0.0203155018, 0.00269704685, 0.0323967263, 0.000186658319, -0.00692193769, -0.0133163678, 0.00736581674, 0.00255069556, -0.0283567868, 0.0191575568, 0.0122291856, 0.00646519288, 0.00977176894, -0.0252174698, -0.0166100785, -0.0268643238, 0.0252174698, 0.0164814182, 0.0243683085, -0.0208558757, -0.056404788, 0.0292831417, 0.0189517, 0.0109747453, -0.00486015249, 0.0107753212, -0.0117724407, -0.0220138207, -0.0255133882, 0.0120683601, -0.0323709957, -0.00607277825, -0.0178323537, 0.0241881851, 0.0133420993, 0.0398590416, -0.0163527559, -0.0184113253, -0.0132906353, -0.00276620197, -0.00471862592, 0.00160343223, 0.0203026365, -0.0161211677, 0.0131040774, -0.00441627344, -0.0180510767, 0.0390613452, -0.0269157887, 0.0222068112, -0.0247542914, 0.0116437804, 0.0141655272, 0.0398590416, -0.0138696078, -0.00199745502, 0.0124157434, 0.0489939414, 0.00280962489, 0.00202801195, -0.0211003311, 0.0198651906, -0.0228115171, -0.0068511744, -0.0121841542, -0.0323195308, 0.00103250099, 0.00103893399, -0.003235813, 0.0156579893, 0.00516893761, -0.0259251017, -0.0139982682, 0.0153234722, -0.000315419398, -0.0259379689, -0.0299007129, 0.00135254406, 0.00675467914, -0.00502741104, -0.0438475162, -0.0125637036, -0.00276298542, 0.023905132, 0.00212129089, -0.0102349473, -0.020984536, 0.0269672517, -0.0139210718, -0.00135254406, -0.00735295098, -0.0217050351, -0.00991329551, -0.0152334096, -0.0109811788, 0.00446452107, 0.0143842502, -0.00490196701, 0.00970743876, -0.0356132425, -0.0048279874, -0.0220781509, 0.0101448847, 0.00865885522, 0.00748804444, -0.00454171747, 0.00564498175, -0.0119911637, -0.0125765698, -0.0160568375, 0.0181282721, -0.0270959139, -0.00356389745, -0.03095573, -0.0081120478, 0.0486851558, -0.000816994521, -0.0114186248, 0.0388554893, 0.0335546732, -0.00507565914, -0.0160311051, -0.0159539096, -0.00972673763, 0.0280222688, 0.00462534698, 0.000554446597, -0.00636226451, 0.00930859149, -0.0475014783, 0.0135222245, 0.0151433479, 0.00759097282, -0.00301548187, 0.0434358045, 0.01255727, -0.00379870296, -0.0166615415, -0.0200067163, -0.010518, -0.0368483849, 0.045442909, -0.00822784286, -0.00288360473, -0.0212289914, 0.00769390119, 0.017845219, -0.0360506885, -0.00530724786, 0.013715215, -0.00631401688, 0.0227085873, -0.0114186248, -0.00883254688, 0.014487179, -0.0213061888, 0.00683830865, -0.00495986454, -0.0250759423, 0.0311873183, 0.00387911568, 0.0239694621, 0.0220652856, -0.00800912, 0.0165071487, -0.018887369, 0.0283310544, 0.00599558186, 0.0237507392, -0.019775128, 0.0297720525, 0.0151433479, -0.0160311051, 0.0345324948, -0.0300293732, 0.0260794945, 0.000907861046, 0.0111162718, 0.0222582761, 0.0167130064, -0.0144357141, -0.0246513616, 0.0174463708, -0.0148088299, 0.0158381145, -0.00548737263, -0.0119654313, 0.00341915432, 0.015091883, 0.00693480391, -0.00647484232, 0.061242424, 0.0117531419, 0.0182569325, 0.0142169911, -0.0114765214, 0.0300808381, 0.015259142, 0.0446709469, -0.036513865, -0.0359220281, 0.000736179645, 0.0212418586, 0.0123192482, 0.00470254337, -0.0274561625, 0.00460283132, -0.0263496824, -0.067521058, -0.0184241924, 0.041866146, 0.0040270756, -0.0127438279, -0.0118303383, 0.0065456056, -0.00491804956, -0.0132649038, 0.0168674, 0.00111934682, 0.0157737844, 0.015696587, 0.00772606628, -0.0296948571, 0.00534262974, 0.010408639, 0.00348026794, 0.0169703271, 0.02863984, 0.0129561182, -0.00423936546, 0.016134033, -0.0367197245, 0.00509174168, -0.00187522755, -0.0411713794, -0.0037697542, -0.00168866978, 0.0219237581, 0.0229916405, 0.0135350907, -0.00511425734, 0.0346354209, -0.0106402282, 0.005259, -0.00234162202, 0.0123063819, -0.00475722412, 0.016687274, 0.00842726603, 0.0256549157, -0.00362822763, -0.00776466448, -0.039550256, -0.00221778639, -0.008510896, -0.0291030183, -0.0172533803, 0.0262081549, -0.0229015797, 0.00874891784, -0.00685760751, -0.00582510652, -0.0147187673, 0.0187329762, 0.000143939, -0.0111870356, -0.041583091, -0.0076617361, -0.0085880924, 0.0215635095, 0.00930859149, 0.0212933216, 0.000323661719, 0.0146673033, 0.00427796366, 0.0220395532, 0.0104858354, -0.0155421952, 0.0166615415, -0.0378519371, -0.00361536164, -0.0182183348, -0.0337862633, -0.00226442586, 0.0315990336, -0.00954661332, 0.0077775307, 0.023956595, 0.00916706491, -0.0102220811, 0.0276362877, -0.0240080599, -0.0364881344, -0.0393186659, -0.00564176543, 0.0103057101, 0.00835650321, -0.0320879444, -0.0193119496, -0.0294118039, 0.0383408442, 0.0200967789, -0.0226056594, -0.025886504, 0.0281766616, 0.00829860568, 0.0246899612, -0.0049084, -0.0035413818, -0.0293088742, 0.0143456524, -0.00348026794, 0.0178580843, 0.00317309098, 0.0328084417, -0.00919923, 0.0373887569, 0.0107688885, 0.0198651906, 0.0156579893, 0.00876821671, -0.0319335498, -0.0285883751, -0.0148860263, 0.0038662497, -0.00414930284, -0.0127824266, -0.0229787752, 0.0179352816, 0.0203155018, 0.00778396381, 0.0347126164, 0.000683911261, -0.00515607186, 0.00824070908, -0.0101770498, 0.00321168918, -0.00187040283, -0.0102349473, -0.0129368193, -0.0329885669, -0.00901910476, 0.010826786, 0.00985539891, -0.00780326268, -0.0287427679, -0.0369255804, -0.0214477144, -0.0631980672, -0.0197879933, -0.0103893401, 0.0111548705, 0.00639121328, 0.00286752218, -0.0149374902, 0.00863312371, -0.0318820849, 0.00826644059, -0.0222196784, -0.0163527559, -0.0118110394, -0.00270508812, -0.0179481469, -0.0299007129, -0.0182698, -0.0101384521, -0.0192476194, -0.0080541512, -0.00880681537, 0.0378004722, -0.000306976057, 0.0124028772, 0.0190932266, -0.0178323537, 0.0403479487, -0.0218980275, -0.00584440585, -0.000424579834, -0.0284854472, 0.00348670105, 0.0286913048, 0.00126167759, 0.018887369, 0.0446966775, -0.0052782991, 0.0336833335, -0.0364109389, -0.0229273103, 0.00450311927, 0.0175235681, 0.0232360959, 0.0543976836, -0.0152076781, 0.0113542937, 0.0103893401, 0.0195692703, -0.0228758473, -0.0142298574, -0.0356132425, -0.011096973, -0.0098682642, -0.0376718119, -3.7819168e-06, -0.0303638913, 0.0111870356, 0.0492512621, 0.0355103128, 0.0141655272, -0.0182312, -0.00457709935, -0.0291287508, -0.0136508849, -0.0346868858, 0.0229787752, 0.00488910126, -0.00131394598, -0.0216278397, 0.0264268778, -0.0121519892, 0.00464464631, 0.0174206402, -0.0272760373, -0.0118239047, -0.0231974982, 0.00760383904, 0.0105501655, 0.0131362425, -0.0179224163, 0.0362565443, 0.00674181292, -0.0106723933, -0.00529438211, -0.0209588055, 0.0355617777, 0.00173370098, 0.00155598857, 0.0141783934, -0.0199681185, 1.54669087e-05, -0.0112706646, 0.00872961897, -0.0168416668, 0.00248154043, 0.0333488174, -0.00854306109, -0.0126666315, 0.00352529925, -0.017021792, -0.00375688821, 0.00327601936, 0.00249279826, -0.000916706456, -0.0153878024, 0.00283053215, 0.00160262804, -0.0192990843, 0.00789332483, -0.0189902987, 0.00678684423, 0.00641694525, 0.0123128155, 0.0200195834, -0.0136508849, 0.00817637797, 0.0167258717, -0.00395309553, 0.0149632227, -0.0187201109, -0.0088454131, -0.00151980284, -0.0219237581, -0.0127824266, 0.00102285144, -0.00355424779, -0.0149117587, 0.0342751704, 0.0180124771, 0.0195435379, 0.0300808381, -0.00385338371, 0.0145515092, -0.0113671599, -0.019556405, -0.0264783427, -0.0220138207, 0.0221553482, -0.0182955302, -0.0129689844, 0.0370285064, -0.0220781509, -0.00772606628, -0.0097331712, 0.0206242874, 0.0138696078, 0.0151819456, -0.00897407345, -0.00533619663, 0.00335482392, -0.0077389325, -0.0297720525, -0.0146158393, 0.0108332187, 0.0273275021, 0.00578007568, 0.0226957221, -0.0140240006, 0.0177808888, 0.0151690794, -0.0105565982, 0.00361536164, -0.0206500199, 0.0228115171, 0.0087231854, -0.0182183348, -0.00242364313, 0.00890331063, -0.00683830865, 0.0138567416, -0.00038980128, -0.00615640776, 0.0217822324, -0.00988113, 0.0210874658, 0.0390356146, -0.0187973063, -0.0144357141, -0.00941795297, -0.0120554939, -0.00504027726, -0.00707633048, 0.00828573946, 0.0328084417, 0.00880681537, 0.012775993, -0.0154649988, -0.0350986, 0.000982645, 0.0151819456, -0.0172019172, 0.012943252, -0.0123192482, 0.00138953398, -0.00196689833, 0.00876178406, 0.0338119939, -0.0191060919, 0.0288971607, -0.014705902, 0.00995189417, 0.0350728668, 0.0140240006, -0.0302609634, -0.0169059969, -0.00115553266, -0.0284854472, -0.00310393586, -0.00515928818, 0.00934075657, -0.0356132425, 0.0173305776, -0.00914776511, 0.0103378752, -0.00385016715, 0.00420076726, -0.0381607227, 0.00110889319, -0.0022419102, -0.00951444823, -0.00103491335, 0.0238536671, 0.00832433812, 0.00944368448, 0.0172533803, -0.0144614466, 0.00642337836, 0.0306469444, -0.0031409259, -0.0393701307, -0.00550023885, 0.0230945703, 0.00185432029, 0.000152382345, -0.0343781, -9.06654823e-05, 0.0139468042, -0.0451083928, 0.0157223195, -0.00481512118, 0.0298749804, -0.036513865, 0.014538643, 0.0154907312, 0.0177808888, -0.0151433479, 0.000775179826, 0.0130719123, 0.0146673033, -0.0149503564, -0.00342880376, -0.0245998986, -0.00554848649, -0.0127695603, 0.0063172332, -0.00410748832, 0.00541660935, -0.0104215052, -0.00819567777, -0.00763600413, -0.00243650936, 0.00349956704, -0.00614675786, 0.0110583752, -0.0246770941, 0.00294311019, 0.010189916, 0.0180382095, -0.0022998075, 0.0194534753, 0.0199552514, 0.0206628852, -0.00321490574, -0.0151304817, 0.00081779866, -0.00665818388, -0.00373437256, -0.0135865547, -0.00489231758, 0.00263432483, 0.00804128498, 0.00132439961, -0.000335522607, -0.0192347523, 0.00946298428, -0.00737225, 0.0217436347, 0.0182955302, 0.00812491402, -0.0130783459, -0.00190739275, 0.0116437804, -0.0136508849, 0.0173820406, 0.0119718648, 0.00357033033, 0.0154006686, -0.00522683514, -0.0098103676, 0.036513865, 0.0213319194, 0.00284661469, -0.0295661967, 0.0081313476, -0.0104215052, 0.0199166536, 0.00328727718, 0.0142169911, 0.000757086964, -0.0214863122, -0.00541017624, -0.00996476, 0.00853662752, -0.00959164463, -0.0402964875, 0.00545842387, 0.0176779609, -0.0101127196, -0.0447738729, -0.017845219, 0.00272438722, 0.0263496824, 0.00642659469, -0.00633331574, -0.00350600015, -8.36796171e-05, -0.0489167422, -0.0120747928, -0.00131877069, -0.00280801672, 0.00553883705, 0.0189259686, -0.00889687706, 0.00570931239, 0.0304925516, -0.000916706456, 0.0216407049, -0.00948871579, 0.0245741662, -0.00957877841, -0.00619500596, 0.00321329734, 0.00844656583, -0.0443878919, 0.0386496298, -0.00515928818, -0.000866850489, -0.0187201109, 0.00845299847, -0.0126023013, 0.00629793433, 0.0112320669, -0.023467686, 0.00850446243, 0.0303381588, 0.0120619275, -0.00571252871, -0.0169059969, -0.00847229734, -0.0196979307, -0.00973960385, -0.0148988925, 0.0156322569, 0.0117724407, -0.00964310858, -0.0175621659, 0.00558065157, 0.00589265348, -0.0135736885, 0.00120780093, -0.00332909194, 0.00512712309, 0.0187715758, -0.0196464676, -0.0031023277, 0.0241238549, 0.0340950489, -0.00472827535, -0.00189935148, 0.0268128607, -0.000504188531, -0.00661958568, -0.0362565443, -0.000464786252, 0.0300293732, 0.0220138207, -0.000972191337, 0.00533619663, -0.00122549175, -0.0236092117, 0.00862669, -0.0107302908, 0.0181926023, 0.0109425802, -0.00870388653, 0.020933073, -0.0262081549, -0.0203926973, 0.0105501655, -0.00670321519, -0.00782256201, -0.0110841068, -0.0070055672, 0.0241624527, -0.000125846112, 0.0125122387, -0.0214091167, -0.0133678317, 0.022528464, -0.00138551334, -0.0502805449, 0.0103636077, -0.00717925886, 0.0060888608, -0.00718569197, 0.0290000886, -0.0124479085, 0.00325672026, -0.0297720525, 0.000741808501, -0.00423293235, 0.0104536703, -0.000493332802, -0.00224351836, -0.0136251533, -0.0165200159, 0.00691550504, -0.0239694621, -0.0210874658, 0.0128081581, 0.0122613506, -0.0147959637, -0.000457951159, -0.00544234132, -0.0217565, 0.00610816, -0.00905127, -0.00691550504, -0.00428118, 0.0205599573, 0.018617183, -0.000838706, 0.0092764264, -0.00292220293, -0.0306984093, -0.000878108316, 0.00872961897, 0.0112770982, -0.00888401177, 0.0129625509, 0.0155421952, 0.0163527559, 0.00989399664, 0.0227600522, 0.0149117587, 0.00487945182, -0.0173177104, 0.042020537, 0.00937292166, -0.0175878983, 0.0178580843, 0.034867011, 0.016803069, 0.00862025749, 0.0075395084, -0.0220009554, 0.0029865331, -0.0081313476, -0.0165071487, 0.012338547, -0.0269415211, -0.0280994661, 0.0130461808, 0.0340693146, -0.00432942761, 0.014705902, -0.0116823781, -0.00568679674, 0.00416216906, 0.0117467092, -0.0273275021, -0.0158381145, 0.0159796402, -0.0028723469, -0.0271473769, -0.0106981257, 0.00869745389, -0.054912325, 0.0215120446, 0.0152462758, 0.0049727303, -0.0131298099, 0.0174077731, -0.0106402282, 0.0216149744, 0.0155421952, 0.0366682597, 0.0239437297, -0.0012552446, -0.00735295098, 0.0226442572, -0.00909630116, -0.00855592731, 0.0151562132, -0.00614997465, -0.0187329762, 0.0289486255, 0.0116051817, 0.0071277949, -0.001408029, -0.00154231838, 0.013329234, -0.00160745287, -0.015863847, -0.00768103497, -0.0094565507, 0.0428954288, 0.00328888558, 0.0207915455, -0.0198780559, -0.0275848228, 0.00762957102, -0.00318756537, -0.0166358091, -0.0163141582, 0.00361536164, 0.0164428186, 0.0127116628, 0.0379034, 0.00665818388, 0.011399325, -0.0228243824, 0.0106144957, 0.0201353766, -0.00179642299, 0.00114749139, -0.0129496846, -0.0259765666, -0.0001289621, -0.00638799649, -0.0097331712, 0.00367325894, -0.000504590629, -0.0125251049, 0.0217050351, -0.0017706909, 0.0105051342, -0.0277392156, 0.0215892419, -0.000320445193, 0.00288360473, 0.0511039719, 0.0143070538, 0.0160439722, 0.0171504524, 0.00114829547, -0.0465236567, -0.00941151939, -0.00934718922, 0.00157367939, 0.00381800206, 0.0255391207, 0.00330335973, -0.0131491087, -0.00466394518, 0.0191961545, -0.0283053219, 0.0280737337, -0.0202511717, 0.0214734469, 0.00679971045, -0.0264011454, 0.0212289914, 0.0251402725, 0.0321908705, 0.00579615822, 0.00464142952, -0.0157737844, 0.0118882358, -0.0144743128, -0.000562889909, -0.00205213577, 0.00374080567, 0.0330400318, -0.031727694, 0.0235448815, 0.0057446938, 0.00569644617, -0.0101577509, -0.00208269269, -0.0125765698, -0.016249828, -0.00532976352, 0.0283567868, 0.0293346066, -0.0116437804, 0.000208671336, -0.017626496, 0.0149760889, 0.00630115066, -0.0208687428, 0.00784186088, -0.00549380574, -0.0219366252, -0.00225638459, 0.00991329551, 0.00221778639, 0.0365653299, 0.00239630276, -0.0191575568, -0.0125701362, -0.00836936943, -0.0251788702, -0.0053168973, 0.00222421926, -0.00784829352, 0.0335546732, 0.0355103128, -0.00841440074, 0.00798982, -0.00975890364, -0.00945011806, 0.00773249939, 0.0121841542, 0.0191318244, 0.00635904819, 0.00930215791, -0.00207304326, -0.00168062851, -0.020817278, 0.00360571197, 0.0102156484, 0.00382443494, 0.0157609172, 0.0116437804, 0.01487316, 0.0111548705, -0.0102671124, -0.00130992534, 0.0155807929, 0.0249987468, 0.0168288015, 0.0232618283, -0.0146801695, 0.0211003311, -0.00567714684, 0.0172019172, -0.0166358091, 0.0145772407, -0.00877465, 0.000102275088, -0.0241624527, 0.00285948091, 0.0104987016, 0.00991329551, 0.0164170861, -0.00990043, 0.01839846, -0.0106016295, -0.029797785, -0.00300422404, -0.00816351268, 0.00694123702, 0.0129110869, -0.014705902, -0.00735295098, -0.00122951239, 0.005439125, 0.0147187673, -0.0141397947, -0.010826786, 0.0132520376, 0.0099454606, 0.0182440672, -0.00167258724, -0.0153363384, -0.00302834786, -0.00341915432, -0.00252013863, 0.00868458766, -0.00932145771, 0.00303156441, 0.040090628, -0.00838223565, 0.0227343198, 0.00802841876, -0.0131877074, -0.00768103497, 0.000222743591, 0.000514240179, 0.0264268778, -0.00611459278, -0.00345453597, 0.0100033581, 0.0237507392, -0.000211686827, -0.00995832682, 0.0244841035, -0.00508852489, 0.00341593777, 0.0270701814, 0.00523326825, 0.0149889551, -0.00268739741, -0.000728138315, -0.0238536671, 0.0171633177, -0.00524291769, -0.0170346573, -0.00212129089, -0.00538122794, 0.00688334, 0.00161388586, -0.0126023013, 0.0157351866, -0.0165200159, 0.0031007193, -0.0177551564, 0.012473641, 0.0185399856, 0.0104279378, -0.00789975841, 0.0177294239, -0.00200710469, 0.0133806979, 0.00245741662, 0.0080541512, -0.0107302908, 0.00865242258, 0.00252174679, -0.0234033559, 0.0111355707, -0.00404315814, 0.0222968739, 0.0188616384, 0.00316504971, -0.0257192459, -0.0129175195, 0.0104215052, 0.0112513658, 0.0106530944, 0.00206821854, -0.00719855819, -0.0203026365, -0.00619822228, 0.0155679276, -0.0105244331, 0.0110583752, 0.00982323382, 0.00262628356, -0.00894834194, -0.0125315385, -0.00775823137, -0.0214477144, -0.0099904919, -0.015645124, 0.00926356, -0.00943081919, 0.0131555423, -0.0250888076, 0.0156579893, 0.0191318244, 0.0227214545, -0.00738511607, -0.0461376756, -0.0216664374, 0.00033331124, 0.00400456, 0.000144140024, -0.004255448, -0.00952731445, -0.00192186702, -0.0116373478, 0.00279836706, 0.0159024447, -0.00565463165, -0.0204055645, -0.020984536, -0.00788689218, -0.0117081106, -0.0106402282, 0.000405280764, 0.0228758473, -0.00509174168, 0.000254104612, 0.0149117587, -0.0100097917, -0.0166229438, 0.00453528482, -0.0142427236, 0.0197493955, -0.0130075822, 0.0124929398, -0.0107881874, 0.0229659099, -0.0192604847, -0.00782899465, 0.00758453971, 0.0108911162, 0.00509817433, 0.0127888592, -0.0120104626, -0.000370301161, -0.0226957221, 0.00979750138, 0.00620787172, 0.012203454, -0.0161597654, -0.00667748274, 0.00681900932, 0.000144843638, -0.00776466448, 0.00572539493, -0.00317309098, -0.0194792077, 0.0132520376, -0.015863847, -0.0306469444, 0.0194148775, 0.0148216961, 0.0264011454, 0.00457709935, 0.00283214054, -0.0296433922, -0.0210874658, 0.00217597163, 0.0185271204, -0.0203283671, 0.0186815131, -0.00360571197, -0.00627220189, -0.0134964921, 0.0187587086, 0.0253847279, 0.0135736885, 0.016249828, 0.011096973, 0.0265298076, 0.00563533232, 0.00139194634, 0.0106530944, -0.00359927909, -0.0126730651, 0.00424579857, -0.00788045861, -0.00755237462, -0.00967527367, 0.00461248076, 0.00185592857, 0.00766816922, 0.00186718628, 0.0145257767, 0.0171761848, 0.0184885226, -0.00503706094, -2.08193887e-05, 0.00615640776, 0.00146833865, 0.00135174, 0.0124028772, -0.00623360416, 0.0298492499, -0.0200839136, -0.0269415211, 0.0032921019, -0.00667748274, 0.0029479349, 0.0034448863, -0.002203312, -0.020045314, 0.00752020953, 0.0149246249, -0.0161726326, -0.00832433812, -0.0119397, 0.0102542462, -0.000926356, 0.0157609172, -0.0115730166, 0.0120104626, -0.0048279874, 0.00800268631, 0.0054777232, 0.0127888592, -0.0170089249, 0.0144614466, -0.0339921191, 0.00157689594, -0.0360249542, -0.00252335519, 0.00997119304, 0.0184885226, -0.00282570743, -1.88593258e-05, 0.0171375852, -0.0120426277, 0.00937292166, -0.00950801466, 0.00204248633, -0.00363466074, -0.000756684924, 0.00672251405, 0.00979750138, -0.0177937541, -0.00860739127, 0.0246513616, 0.0102799786, -0.00656812126, -0.00777109759, -0.00183019636, 0.0123449806, 0.0136894835, 0.00640086271, -0.00701843342, 0.00861382391, -0.0183598623, 0.036899846, 0.0279708058, -0.000706426858, -0.00614032522, -0.0186943784, 0.0100998534, 0.00269704685, 0.00731435278, 0.0089998059, 0.00211807434, -0.00924426131, -0.0159667749, -0.0304153562, 0.00390163134, 0.00687690685, 0.0153492047, 0.000491322484, -0.00660028635, 0.0247542914, -0.0407339334, -0.00893547572, -0.00126167759, 0.0113349948, 0.0189517, -0.00392093044, -0.0302094985, 0.0288456958, 0.00481833797, 0.0121777216, -0.00254587084, -0.00639121328, 0.0124865072, -0.00786759332, 0.00567393051, 0.0161211677, 0.0216407049, 0.00390806422, 0.0185657181, -0.00229498278, -0.00124398677, 0.0212933216, -0.0115858829, 0.00917993113, 0.0286655724, -0.0215506423, -0.00800912, -0.033374548, 0.00604704628, 0.0236220788, -0.00347383507, -0.0103185764, -0.00827287417, 0.00160745287, -0.00880038179, -0.00504992669, -0.0104858354, 0.00197976432, -0.0121777216, -0.0128017254, 0.0161211677, -0.0066324519, 0.0199166536, -0.00123112067, -0.014538643, 0.0357419029, 0.0120554939, 0.0030251313, 0.00314253406, 0.0135608222, -0.0132134389, -0.00731435278, -0.0046285633, 0.00289486255, -0.0139725367, -0.0179738794, -0.000907056907, -0.0181411393, -0.00797052123, -0.00390806422, 0.0151433479, 0.0313417129, -0.0269157887, -0.0103314426, 0.0176908262, 0.000240836482, 0.00699913409, 0.002623067, -0.00150934909, 0.0119461324, -0.00636869762, 0.012775993, -0.00298170839, -0.025449058, -0.00726932148, 0.00158413313, -0.00294311019, 0.0131877074, 0.0327055119, 0.0120040299, -0.0175235681, 0.00561281666, 0.00543269189, -0.00496308086, 0.00780969579, -0.0110583752, -0.0109490138, 0.00361857819, 0.0103893401, -0.0142555898, -0.00265684049, -0.00124881149, -0.0181668699, -0.0174849704, 0.0110776741, -0.008645989, 0.0358705632, 0.00647805911, 0.00855592731, 0.00604061317, 0.0153749362, -0.0114507899, 0.0128210243, 0.00589587, -0.00703773228, 0.00423293235, -0.0070441654, -0.00793835614, -0.0031554, 0.00838223565, -0.0231589, 0.0206500199, 0.0116116153, -0.00480225543, -0.010710991, 0.0335289426, 0.015426401, -0.0123642795, 0.00989399664, 0.0294375345, -0.000303156441, 0.0137409475, -0.00234966329, -0.00830503926, 0.0122806504, -0.0172019172, -0.0245355684, -0.00760383904, -0.00357033033, 0.00295758457, -0.00449668663, -0.00370220747, 0.0179352816, 0.00593125168, 0.00538122794, 0.00544877443, -0.00593768479, 0.00603739638, -0.0151433479, -0.0273275021, -0.00954661332, -0.00276459381, 0.00399169372, 0.0044838204, 0.00665818388, 0.0247800238, 0.0269929841, 0.00170636061, 0.00661315257, -0.0502033494, -0.00386946625, 0.0153749362, 0.00526543334, 0.0191575568, -0.000793674786, 0.00584762217, 0.00506922603, 0.00334195793, -0.00153427711, 0.00412357086, -0.00512712309, 0.0193634145, 0.0267871283, 0.00901267212, -0.0346611552, -0.00605669571, 0.0134321619, -0.00513677252, 0.0147445, -0.0152720083, 0.00163800968, -0.00929572526, -0.0284597147, 0.0164428186, -0.0279965363, -0.00132037897, 0.0198651906, 0.00442270655, -0.019826591, -0.00183180464, 0.0177165587, 0.0140240006, 0.00611137645, -0.00759740593, -0.0062496867, 0.00648127543, 0.00455136737, 0.0176779609, 0.00860739127, -0.0111034056, 0.0148602938, 0.0138438754, 0.00356711401, -0.0150146866, -0.0294118039, 0.000786035613, -0.0123128155, 0.00306212134, 0.00883898, -0.00522683514, 0.0138567416, 0.0166486762, 0.0110519417, -0.0132391714, 0.00385016715, 0.00322133861, 0.00915419869, -0.00564819854, -0.0136122871, -0.00416216906, -0.0145901069, 0.00561603345, 0.00804771762, -0.0148345623, 0.000578972511, 0.00121182157, -0.0225155968, -0.000433023175, 0.000609529379, -0.00117643992, 0.0193634145, -0.0197107978, -0.00177229918, 0.0182312, 0.0100355232, 0.0339149237, 0.0185528528, 0.00160664867, 0.0301580336, 0.0152720083, 0.00689620571, -0.00415895227, -0.00250244793, 0.00410105521, 0.0209202059, 0.00565141486, -0.0196850654, 0.0280480012, -0.0224255342, -0.00727575459, 0.000702808262, 0.00127615186, 0.015529329, 0.000374723866, 0.0131555423, 0.0108139198, -0.0159281772, 0.00389519823, -0.005439125, 0.0192733519, 0.000337935, 0.00542304246, 0.0251917373, -0.00623682048, 0.017845219, 0.0213576518, -0.00717925886, 0.0141783934, 0.0110712405, 0.0143070538, 0.0173048452, 0.00920566265, 0.0121777216, 0.00804128498, -0.00199584686, -0.00921852887, 0.000835489482, -0.0212418586, 0.00114266656, 0.0216921698, 0.00356711401, -0.0138953403, 0.0268385913, -0.0004281984, -0.00228533312, -0.0112063345, 0.0238665324, 0.0103957728, 0.00854306109, 0.0324224606, 0.0160954352, 0.0310071949, 0.00142491562, 0.0108589511, -0.00807345, 0.000868458766, -0.00586692151, 0.0190288965, -0.00286591379, -0.0229015797, -0.00275655231, 0.0098103676, -0.0267871283, 0.0103507414, -0.0144485803, 0.000648127578, 0.00296401745, -0.000504992669, 0.000245058152, -0.00368290837, -0.00364431017, -0.0275333598, -0.0186300483, 0.00814421289, 0.0206757504, 0.0133935641, 0.00699913409, -0.0144485803, 0.0028723469, -0.0218465626, 0.0150790168, 0.000282852183, 0.00495021511, 0.00491483323, -0.00450311927, -0.000337331905, -0.000239831323, -0.0295661967, 0.00274207816, -0.00691550504, 0.00936005544, 0.0176522285, 0.0379805975, 0.00335482392, 0.00417825161, -0.000507405086, 0.0170861222, 0.00800912, -0.0211260635, 0.00845299847, -0.00774536561, 0.0170861222, -0.00916063134, 0.0168288015, 0.00234644697, 0.0218594279, -0.00896764081, 0.00220492017, 0.0146415709, -0.00819567777, 0.00305408, -0.00321973045, -0.0142298574, -0.00184145418, -0.0049341321, -0.00564176543, 0.0153749362, 0.0179224163, -0.000169872146, 0.00854949374, -0.0157351866, -0.00210360019, 0.0230302401, 0.0127309617, 0.002547479, 0.0200967789, 0.0222196784, 0.0429726243, 0.00284500653, -0.029463267, 0.00157207123, -0.00565784797, -0.015259142, -0.00739154918, -0.0200839136, 0.00249601481, 0.0166100785, -0.0128467567, 0.00120699685, -0.00824070908, -0.000130771397, 0.0187844411, 0.00464142952, 0.00349313417, -0.0026295, 0.0189002361, -0.0133163678, 0.0125251049, -0.0054777232, 0.0217822324, -0.0209588055, -0.025886504, 0.00200067158, -0.00766816922, -0.00764243724, 0.0254619233, 0.0222454108, 0.00764243724, -0.00351564959, -0.000210480634, 0.0235706139, 0.00200067158, -0.0233261585, -1.18357657e-05, -0.010273545, 0.0146415709, -0.00320686447, -0.00454493426, -0.00440662401, 0.00563533232, 0.0126344664, -0.00957877841, -0.00407210644, -0.0171118546, 0.010826786, 0.00309911114, -0.0254361928, 0.00559673412, 0.0330657624, -0.00881324802, -0.00982966647, 0.0348412804, -0.0264011454, 0.0442335, 0.00458031567, -0.00733365165, 0.0164942835, 0.00854949374, 0.00066662248, -0.00318756537, 0.0101641836, -0.0235320162, 0.0211003311, -0.0118625034, -0.0107881874, 0.00948228315, -0.0173048452, 0.00510782422, 0.000887757866, 0.0292574111, 0.00661958568, -0.0313674435, 0.0232232306, -0.0111741694, -0.0128467567, 0.00427474687, -0.0242010504, 0.022309741, 0.00669034896, -0.000441868586, 0.00871675275, 0.0136894835, 0.0243168455, 0.0120233288, -0.0311615858, -0.0154392663, 0.00916063134, -0.0137280812, -0.0163784884, -0.0233904887, -0.000470817235, -0.000512631901, 0.00363466074, -0.012943252, -0.0184885226, 0.0121326903, 0.0167902019, -0.0130140148, -0.0108718174, 0.00941795297, 0.0130590461, -0.00954661332, 0.0160954352, 0.00600201497, 0.010492268, -0.00562246609, 0.00447417097, -0.0065938537, -0.00990043, 0.00690263882, 0.0218722951, 0.0142298574, 0.0225541964, -0.00028566664, -0.00816351268, 0.0247800238, 0.00242042681, -0.00903197099, 0.0149760889, 0.000117302239, 0.000306574, 0.0128982207, -0.0138052776, -0.0199552514, -0.0264783427, 0.0046671615, 0.00202640379, -0.00253943773, 0.0059441179, -0.0147445, -0.0118753696, -0.00647162599, 0.018179737, -0.011618048, -0.0117467092, -0.00807345, -0.00595698366, 0.00344810286, -0.0102992775, 0.0108332187, 0.00129786332, 0.00508530857, -0.021975223, 0.0210231356, -0.00835007, 0.0147187673, 0.00815707911, 0.00484728627, 0.00620143861, -0.0119461324, -0.0173820406, -0.00993902795, 0.0208944734, -0.0133163678, -0.0119718648, 0.00209877524, -0.00141285372, -0.00948228315, 0.0189131014, -0.000469611026, 0.024895817, -0.0127309617, -0.0099454606, -0.000848355528, -0.00898050703, 0.0105115678, 0.000504590629, -0.0026825727, -0.0152848745, -0.00658742059, 0.00297205895, 0.0164170861, -0.00894834194, -0.0297463201, 0.0133678317, -0.00206017727, -0.00377297075, -0.00250566425, -0.0246384963, -0.000263151043, 0.012724529, 0.00365074328, 0.0124865072, -0.0103957728, -0.0125637036, -0.0103636077, 0.00645554345, 0.0210488662, -0.0119847311, -0.00353173236, -0.00745587936, 0.0192733519, -0.0136251533, 0.00192669185, 0.00115231611, -0.0210745987, -0.00739154918, -0.0185399856, 0.0113028297, 0.00343523687, 0.0125444038, 0.00987469777, 0.0154392663, -0.00523326825, 0.00402385881, 0.0230945703, 0.0121133914, -0.0166615415, -0.00627220189, 0.0173563082, -0.0121905878, 0.0277134832, -0.00606634514, 0.00706989737, 0.00801555254, 0.00251692208, 0.0120104626, -0.00229015783, -0.00203926978, 0.00853662752, 0.00972673763, -0.0328341722, 0.0110004777, -0.012943252, 0.00877465, 0.0231589, 0.00926356, 0.0127566941, -0.0132263051, -0.00507887546, -0.00423936546, 0.00142893626, 0.0141397947, -0.00511425734, 0.00237861206, -0.0190417618, -0.0225927942, -0.0133806979, -0.0104279378, 0.00101159362, 0.0272245742, -0.012338547, 0.00330335973, -0.00346096884, 0.0370542407, -0.0200581811, -0.00734008476, 0.00264879921, 0.0183855928, -0.000615962432, -0.00752664264, 0.00786116, -0.0150661515, -0.00250405609, 0.00962381, -0.0419948064, -0.00681900932, 0.0104665365, 0.0236220788, 0.00895477459, -0.00115231611, 0.00883898, -0.0145000443, 0.0137280812, 0.0063558314, 0.00445808843, -0.00974603742, 0.0129625509, -0.00475400733, 0.00393058, -0.00197815616, 0.0254876558, -0.0233647563, -0.0368483849, -0.00696053589, -0.00313288462, 0.0130526135, 0.0210874658, -0.0126151675, 0.0238279346, -0.000174998466, 0.0183212627, 0.0083114719, 0.00930215791, -0.0154006686, -0.018668646, 0.00781612843, -0.00737868296, -0.00147396745, 0.00207786798, -0.013933938, -0.00669034896, -0.0121777216, -0.0020505276, -0.0119847311, 0.0105887642, 0.00177229918, -0.00068431336, 0.00194920739, -0.0119461324, -0.00826000795, 0.00907057, -0.020264037, -0.00694767, 0.00665175077, -0.0151690794, 0.00359927909, -0.0188616384, -0.0150018204, -0.0156322569, 0.00169188634, 0.00492769945, -0.014268456, -0.000805334654, 0.0198651906, -0.00323902955, -0.0648449212, 0.000767540652, 0.010408639, 0.0137666799, 0.00755880773, -0.0013501317, 0.0166744087, -0.00300422404, -0.0102092149, -0.00285948091, -0.0111162718, -0.00816994533, -0.0028530478, -0.00101641845, -0.0173691753, -0.00514963875, 0.00127615186, 0.0207014829, 0.00767460233, 0.013933938, 0.0114057586, -0.0105372993, 0.00177873217, 0.0083886683, 0.00174817536, 0.0038469506, 0.0131298099, 0.0302352309, -0.0104729692, 0.0130912112, -0.00582832331, 0.0014844212, 0.00460926443, 0.0203026365, 0.00901267212, -0.00679971045, -0.0139468042, 0.015696587, 0.0184885226, 0.00762957102, 0.0017706909, 0.0194148775, 0.0193248149, 0.016687274, -0.00318756537, -0.00234483858, -0.000823025475, 0.00656168815, -0.0111291381, 0.00754594151, -0.00639121328, 0.00496629765, 0.00375367166, 0.0112127671, 0.0205728225, -0.0126923639, -0.00485693617, -0.00305086351, 0.0220524184, -0.012473641, -0.00645876, -0.0297720525, -0.00330657628, 0.00494699832, -0.00683830865, 0.00639121328, 0.00195081567, -0.0110905403, 0.00420398358, 0.0275848228, 0.00413965341, 0.00891617686, 0.000650137896, -0.00275655231, -0.00231589, -0.000841118395, -0.0195306726, -0.0138438754, 0.00492126634, -0.0122291856, 0.0115923164, -0.00406245701, -0.0230431054, -0.00941151939, -0.0199166536, -0.0143971164, 0.0132005727, 0.0151948119, 0.0223740712, -0.041042719, -0.0257964414, 0.00788689218, -0.0162369628, 0.0113800261, -0.0233261585, 0.0101384521, 0.00439697457, -0.0184885226, -0.00261985068, -0.0247028265, 0.0212804563, -0.00460283132, -0.00245580846, -0.00982323382, 0.0321394056, -0.0091220336, -0.000414126174, -0.0139854029, -0.00735938363, 0.00202962034, 0.0161083024, 0.0308270697, -0.00051343604, 0.00308946171, -0.00858165883, 0.014101197, -0.00581224076, 0.00341272121, 0.0088454131, 0.0231074356, 0.00529759843, 0.00115151203, 0.00493734889, -0.00371507346, -0.0205213595, -0.011733843, -0.00159539084, 0.00188166066, -0.00756524084, 0.026709931, 0.00906413607, -0.0199037883, -0.00157609186, -0.0226699896, -0.00733365165, 0.013026881, 0.01487316, -0.0200195834, 0.010794621, -0.0196207352, -0.00985539891, 0.000194197026, 0.0104987016, 0.00100516062, -0.0190932266, -0.0210231356, 0.00329692685, 0.00432621129, -0.00902553834, -0.0136251533, -0.0218336955, -0.027816413, 0.0221424811, 0.0123449806, 0.0128660556, 0.0013316368, -0.00693480391, 0.00301548187, 8.81023298e-05, -0.00213576527, 0.0175493, -0.00629150122, 0.00607921137, 0.0145901069, 0.0110841068, -0.0143842502, 0.0054777232, 1.85452136e-05, 0.0001070496, 0.0129818497, -0.0272503067, 0.0178580843, -0.0211775284, -0.023133168, 0.0111355707, -0.0159281772, 0.0110776741, -0.00806701649, 0.00840796717, 0.00304603856, 0.0087424852, -0.00622717105, 0.0049341321, -0.022914445, -0.00895477459, 0.0299007129, 0.0104279378, 0.00257321121, -0.00441949, -0.0111162718, -0.0177294239, 0.0080541512, 0.0193891451, 0.00968814, 0.00530081475, -0.0261824224, 0.000258527318, 0.00277424324, 0.0264783427, 0.0114572225, -0.00991972908, -0.00596985, -0.0123192482, 0.00819567777, -0.00357998, 0.00883898, -0.017626496, -0.0105244331, 0.00732721854, -0.000631642935, -0.0114765214, 0.0275333598, -0.00995832682, 0.0288714282, -0.0132777691, -0.0151562132, 0.0174721032, -0.00284018181, -0.00908343494, -0.0188745037, -0.00984253269, -0.00503062783, 0.00491804956, -0.0227085873, 0.00598914875, 0.0193762798, -0.0369770452, 8.74489706e-05, -0.0330400318, 0.0248314869, -0.00657133805, 0.00135817297, -0.00888401177, 0.0024702826, -0.0281251967, 0.000669436937, 0.00508530857, 0.00900623854, -0.0155807929, 0.00155679276, 0.0161469, -0.00726288836, 3.28184942e-05, -0.00946298428, -0.00227729185, -0.0191704221, -0.0156193916, 0.0084658647, 0.0056674974, -0.0480675846, 0.0052107526, 0.00809274893, -0.0019363414, 0.00725002214, -0.0155679276, -0.00997119304, 0.00742371427, -0.00178838172, 0.00806058384, -0.0147316335, -0.00420720037, 0.00788045861, 0.0133678317, -0.0164428186, -0.0183727276, -0.00661958568, 0.00945011806, 0.0186300483, 0.010189916, 0.00977820251, 0.0160182398, -0.0170089249, 0.0214091167, -0.0235062838, -0.00540696, -0.0046285633, -0.00451276917, -0.00682544243, 0.0012608734, -0.00312966807, 0.00468646083, -0.0182698, 0.00784829352, 0.0236092117, -0.0177036934, 5.13134473e-05, 0.020933073, -0.000952892238, -0.00736581674, -0.00392414676, 0.011566584, 0.0111355707, 0.0212289914, -0.00543590868, -0.0132777691, -0.00744944625, 0.00835650321, 0.00353816524, -0.0102928448, -0.00449025352, 0.0122420518, -0.0208687428, 0.00539409369, 0.002203312, -0.021537777, 0.0351243317, 0.00182376336, -0.020264037, -0.0153492047, 0.0135093583, -0.0248700846, -0.0101770498, 0.005439125, -0.00402064249, 0.0075781066, 0.00301709, 0.0117981732, -0.0220652856, 0.0223998036, 0.0316247642, -0.022361204, -0.0260151643, -0.00216953852, -0.00130831706, 0.0114057586, 0.0044838204, 0.00816994533, -0.0105951969, -0.0222582761, -0.00483763684, -0.00105019182, 0.000520271133, -0.013110511, -0.00556135271, -0.00683187554, -0.00997762568, 0.0127180964, 0.00336125703, -0.00582832331, -0.0026295, -0.00552275451, 0.0242010504, 0.00779682957, -0.00688334, -0.0103314426, -0.00719212508, -0.0187715758, -0.014101197, -0.0468067117, 0.00290612038, 0.00824714173, -0.00932145771, 0.0150275528, 0.00771963317, 0.0213447865, 0.0217436347, 0.0116759455, 0.00620465539, 0.00355103146, 0.00798338745, 0.00230463222, -0.00468646083, -0.00876178406, -0.00371829, -0.00970100611, -0.0228243824, -0.0087231854, 0.021203259, 0.0077003343, 0.00263914955, -0.0151819456, 0.0141269295, -0.00188166066, 0.0168674, 0.00558708468, -0.0182054695, 0.00707633048, -0.010492268, 0.0196207352, 0.0136766173, -0.0315475687, -0.0214605816, 0.0239179973, -0.0149760889, -0.0102542462, -0.0212675892, -0.00129062624, 0.00985539891, -0.00914133247, -0.0141140632, -0.00999692548, -0.00654882239, -0.00432942761, -0.00747517822, -0.0070891967, 0.00485693617, 0.00545520755, -0.0063558314, -0.0181282721, -0.0126794977, 0.00235127169, -0.00755237462, 0.0127309617, 0.000596663333, 0.00345775252, 0.00881968066, -0.00152543175, -0.0129689844, -0.0206886176, 0.00409140578, 0.0114379236, -0.00856236, 0.0166358091, -0.00930859149, -0.00324546243, -0.0129496846, -0.0070055672, 0.00331622595, -0.012087659, -0.00790619105, -0.00760383904, -0.0118046058, 0.00248475699, -0.00777109759, 0.0384952389, 0.00786116, 0.000812169746, -0.000464786252, 0.00239147805, 0.00582832331, -0.0181411393, -0.00293667731, 0.010357175, 0.000511425722, -0.00422971556, 0.0176650938, 0.00656168815, -0.00398526061, 0.0087231854, -0.0135865547, 0.00850446243, -0.00876821671, 0.00016183086, 0.00440662401, -0.00869745389, -0.0206757504, 0.0104472367, 0.016687274, -0.0161597654, 0.00833720434, -0.00163398904, 0.0237121396, -0.000517054636, 0.00446130475, -0.0122935157, 0.0121584227, 0.000101621736, -0.020264037, 0.0155035974, -0.0308270697, 0.0177808888, -0.0100741219, 0.00787402596, 0.00469289394, 0.0187072456, 0.0135479569, 0.0232875608, 0.0120940926, 0.0214605816, -0.00447095418, 0.0214863122, 0.00410748832, 0.00623038737, 0.000438250019, -0.0119397, -0.00506279292, 0.00446773786, -0.013715215, 0.00660028635, -0.0130719123, 0.0156837218, 0.0296691246, 0.00393379666, 0.0203283671, 0.00184306246, 0.027867876, -0.0037890533, -0.0062400368, 0.00871032, 0.0107881874, -0.00214541471, -0.0373887569, 0.00192186702, 0.00508530857, -0.0213447865, 0.00643946091, 0.00652309041, -0.0178580843, 0.00983609911, 0.0123642795, 0.00101159362, -0.000222944625, 0.000651746115, -0.000899015635, -0.0150661515, -0.0103378752, -0.0433586091, -0.0156322569, 0.0208816081, -0.00127454358, -0.00528473221, -0.0236349441, 0.0322423354, -0.0042843963, 0.0135994209, 0.0240595248, -0.0153878024, -0.0121584227, 0.0104022063, 0.00245098351, -0.0212933216, -0.0105823306, -0.00596663309]
24 Oct, 2018
map rbegin() function in C++ STL 24 Oct, 2018 The std::map::rbegin() is a function in C++ STL. It returns a reverse iterator which points to the last element of the map. The reverse iterator iterates in reverse order and incrementing it means moving towards beginning of map. Syntax: r_i rbegin(); const_r_i rbegin() const; Parameters: It does not except any parameters. Returns: It returns a reverse iterator which points to the last element of the map. Time Complexity: O(1) Below examples illustrate the map::rbegin() method: Example 1: // C++ Program to illustrate // map::rbegin() method #include <iostream> #include <map> using namespace std; int main() { map<char, int> mp = { { 'a', 1 }, { 'b', 2 }, { 'c', 3 }, { 'd', 4 }, { 'e', 5 }, }; cout << "Map contains following " << "elements in reverse order" << endl; for (auto i = mp.rbegin(); i != mp.rend(); ++i) cout << i->first << " = " << i->second << endl; return 0; } Output: Map contains following elements in reverse order e = 5 d = 4 c = 3 b = 2 a = 1 Example 2: // C++ Program to illustrate // map::rbegin() method #include <iostream> #include <map> using namespace std; int main() { map<char, char> mp = { { 'a', 'A' }, { 'b', 'B' }, { 'c', 'C' }, { 'd', 'D' }, { 'e', 'E' }, }; cout << "Map contains following " << "elements in reverse order" << endl; for (auto i = mp.rbegin(); i != mp.rend(); ++i) cout << i->first << " = " << i->second << endl; return 0; } Output: Map contains following elements in reverse order e = E d = D c = C b = B a = A Learn C++ Online – Master everything from basics to advanced concepts. Apply your knowledge with practical exercises and boost your skills. Take the Three 90 Challenge: finish 90% in 90 days for a 90% refund. Start now and level up your C++ programming!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum/Algorithm for Dynamic Time out timer Calculation/Difference between Round trip time (RTT) and Time to live (TTL)/Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms/Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm/Round Robin Scheduling Algorithm with Different Arrival Time/Selfish Round Robin CPU Scheduling/Find the order of execution of given N processes in Round Robin Scheduling/Calculate server loads using Round Robin Scheduling/set::lower_bound() Function in C++ STL/Implementation of lower_bound() and upper_bound() in List of Pairs in C++/Difference between std::set::lower_bound and std::lower_bound in C++/Difference between std::set vs std::vector in C++ STL/std::minmax() and std::minmax_element() in C++ STL/std::rotate vs std::rotate_copy in C++ STL/std::bitset::to_ullong and std::bitset::to_ulong in C++ STL/std::upper_bound and std::lower_bound for Vector in C++ STL/std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++/std::string::append vs std::string::push_back() vs Operator += in C++/Vector push_back() in C++ STL/vector :: cbegin() and vector :: cend() in C++ STL/unordered_multiset cend() function in C++ STL/unordered_multiset bucket() function in C++ STL/unordered_multiset emplace_hint() function in C++ STL/unordered_multiset end() function in C++ STL/unordered_multiset size() in C++ STL/unordered_multiset emplace() function in C++ STL/unordered_multiset find() function in C++STL/unordered_multiset erase() function in C++ STL/unordered_multiset clear() function in C++ STL/unordered_multiset swap() function in C++ STL/unordered_multiset bucket_size() function in C++ STL/unordered_multiset bucket_count() function in C++ STL/unordered_set bucket_count() function in C++ STL/unordered_set cbegin() function in C++ STL/array::cbegin() and array::cend() in C++ STL/array::rbegin() and array::rend() in C++ STL/multimap rbegin in C++ STL/vector rbegin() and rend() Functions in C++ STL/multiset rbegin() and rend() function in C++ STL/map rbegin() function in C++ STL
https://www.geeksforgeeks.org/map-rbegin-function-in-c-stl-2?ref=asr10
PHP
map rbegin() function in C++ STL
unordered_multiset clear() function in C++ STL, What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, jQWidgets jqxTreeMap width Property, Round Robin Scheduling Algorithm with Different Arrival Time, Difference between Flow and TypeScript, unordered_multiset emplace() function in C++ STL, jQWidgets jqxTree destroy() Method, unordered_set bucket_count() function in C++ STL, jQWidgets jqxTree collapseAll() Method, Find the order of execution of given N processes in Round Robin Scheduling, jQWidgets jqxScrollView buttonsOffset Property, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Vector push_back() in C++ STL, jQWidgets jqxListBox enableHover Property, Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm, std::rotate vs std::rotate_copy in C++ STL, Selfish Round Robin CPU Scheduling, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxSlider buttonsPosition Property, std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++, std::upper_bound and std::lower_bound for Vector in C++ STL, Difference between Round trip time (RTT) and Time to live (TTL), jQWidgets jqxSlider rtl Property, Difference between std::set::lower_bound and std::lower_bound in C++, jQWidgets jqxTooltip opacity Property, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, unordered_multiset erase() function in C++ STL, jQWidgets jqxToolBar height Property, PHP, std::minmax() and std::minmax_element() in C++ STL, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, map rbegin() function in C++ STL, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, Node.js date-and-time Date.transform() Method, unordered_multiset size() in C++ STL, TypeScript Optional Parameters, jQWidgets jqxToolBar theme Property, Difference between std::set vs std::vector in C++ STL, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, Steps to Diagnose and Resolve a Slow Network, How to use Optional Chaining with Arrays and Functions in TypeScript ?, Calculate server loads using Round Robin Scheduling, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, jQWidgets jqxScrollView showButtons Property, Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms, jQWidgets jqxScrollView disabled Property, jQWidgets jqxSplitter destroy() Method, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, set::lower_bound() Function in C++ STL, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, jQWidgets jqxTree collapseItem() Method, std::string::append vs std::string::push_back() vs Operator += in C++, unordered_multiset swap() function in C++ STL, unordered_multiset cend() function in C++ STL, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), jQWidgets jqxSortable opacity Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, multimap rbegin in C++ STL, vector :: cbegin() and vector :: cend() in C++ STL, jQWidgets jqxSlider height Property, jQWidgets jqxSwitchButton onLabel Property, unordered_multiset bucket_size() function in C++ STL, unordered_set cbegin() function in C++ STL, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, jQWidgets jqxToolBar tools Property, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTree width Property, Implementation of lower_bound() and upper_bound() in List of Pairs in C++, jQWidgets jqxTree clear() Method, TLS Handshake?, multiset rbegin() and rend() function in C++ STL, Algorithm for Dynamic Time out timer Calculation, Adhoc TCP, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, jQWidgets jqxTabs position Property, Differences between Wireless Adhoc Network and Wireless Sensor Network, jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, std::bitset::to_ullong and std::bitset::to_ulong in C++ STL, unordered_multiset emplace_hint() function in C++ STL, unordered_multiset bucket_count() function in C++ STL, unordered_multiset find() function in C++STL, unordered_multiset bucket() function in C++ STL, Impact of Three-way Handshake and Slow Start Algorithm, array::rbegin() and array::rend() in C++ STL, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, vector rbegin() and rend() Functions in C++ STL, array::cbegin() and array::cend() in C++ STL, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, unordered_multiset end() function in C++ STL, How to Sort an Array Having Optional Properties in TypeScript ?
GeeksforGeeks
[-0.0138688851, -0.00883613154, -0.00470620068, 0.0374190956, 0.014214647, -0.0582416356, -0.0112692695, 0.0121080615, -0.0190553106, 0.00188248022, -0.0301965196, 0.0451026894, -0.00415554317, -0.00640619546, 0.0147781102, 0.00308784377, 0.0189400557, 0.0301452968, -0.0278658308, -0.0149830058, -0.0125178536, 0.0132285859, 0.0230635852, 0.0078372648, -0.0151750958, -0.00398906507, -0.0351652429, -0.0281475615, -0.0317076258, -0.00696005439, 0.0297867283, 0.0276353229, 0.0110835824, -0.017633846, -0.0474846028, 0.052607, 0.0244850498, -0.00362089323, -0.0217317622, -0.00462616328, 0.0251509603, 0.0303245801, 0.0186455194, 0.00342880329, -0.0208609551, 0.0221415535, -0.00517361937, -0.0304526389, -0.0333467945, -0.005561, 0.027404815, 0.0321430303, 0.0123321665, 0.0178003237, 0.0264571719, -0.00142626697, 0.00571467215, 0.0310673267, -0.0332699567, -0.0176594574, -0.000189888786, -0.0159562603, 0.00497832801, -0.0222183894, -0.00847756397, 0.0200541764, -0.0418499708, 0.0391094871, -0.0148933642, 0.00554179121, -0.00862483308, 0.0338846445, 0.00995025318, 0.0122041069, -0.0235374067, 0.016686203, 0.00632295664, 0.0248052, 0.0190168917, 0.0505324304, -0.0240368396, 0.0205920283, -0.0270974711, 0.00149990141, 0.0174673684, -0.0081189964, -0.0108210603, -0.0277889948, 0.0747869685, 0.0164813064, -0.00535290316, 0.00252277963, -0.0135999592, -0.0314515084, 0.0131005254, 0.0238831677, 0.00376175903, 0.0173136964, -0.0414401777, 0.0571659319, 0.0129276449, 0.00402428163, 0.0152135137, 0.0124922413, 0.00209217821, 0.0117943147, 0.0126651218, -0.0151879014, -0.0347810648, -0.00840072799, 0.0194907133, 0.00983499922, -0.00582352327, 0.0594197847, -0.0409535505, 0.00287814578, -0.010603358, 0.00268125371, -0.00388981891, 0.0367787965, -0.0437196419, 0.0170831885, 0.00779244397, 0.0515569076, -0.0449746288, 0.0135871535, 0.00390582625, 0.0172496662, -0.0229483303, -0.00153911964, 0.00781805534, -0.0263803359, -0.00382899051, -0.0418243557, -0.00303661986, 0.0418243557, 0.028582966, -0.0158410072, -0.0217701793, -0.017864354, -0.0286085773, -0.0530167893, 0.00851598196, 0.0177362934, -0.0565512441, -0.0417475216, 0.00209698058, 0.0500201881, 0.00355686317, 0.0121528823, -0.0360616632, 0.0196699984, 0.0505580418, -0.028429294, -0.00279970909, -0.0188760273, 0.00877210218, 0.0098221926, 0.0143170943, -0.0150214238, 0.0357543193, -0.00146548531, 0.00862483308, 0.0137664368, -0.0278914422, 0.0382899046, 0.0644397289, -0.0220006872, -0.0228330772, 0.0356006473, -0.0240752567, 0.0285317414, -0.00330074341, -0.0262522753, -0.000329754199, -0.0292232651, 0.0355494246, 0.0121913, -0.0169423223, 0.00258680969, 0.0147140799, -0.021245135, 0.00758754788, 0.00386740849, 0.00225705537, 0.00837511662, 0.0227818526, -0.00544254482, 0.0524021, -0.0205536112, -0.0236014351, 0.0245106611, 0.0327833295, 0.0171216056, 0.0598808, 0.00744027924, 0.00686400943, 0.00277889939, 0.0347554535, 0.0296330564, -0.00626853108, -0.0235758238, 0.0159946792, -0.00411072234, 0.0436940305, -0.0302989669, -0.00768999569, -0.00382899051, -0.00372654246, -0.028352458, -0.0138048548, 0.00613406813, -0.00566024659, 0.0182357263, 0.0163532477, 0.0143427067, -0.036522679, 0.0189144444, -0.0190681163, -0.0280195028, 0.00557700777, -0.0425671041, 0.053938821, -0.0404669233, -0.0117110759, -0.0190553106, -0.008855341, 0.0542461649, 0.0085736094, 0.00872728, 0.0138944974, 0.041388955, -0.0196571909, -0.0272255298, -0.00341279572, 0.00836231, -0.0550657474, 0.0146116326, -0.0020297491, 0.0126459133, 0.0302989669, 0.0175185911, -0.0400059074, 0.0128636146, 0.037060529, 0.04797123, -0.00853519142, -0.00364330364, -0.0261242148, -0.0229739435, 0.0254326928, -0.00679357676, 0.0415170118, 0.0187351611, 0.00292936969, 0.0206944775, 0.022500122, -0.00189688697, -0.00468058884, 0.0182613395, 0.00256599975, 0.0283012334, -0.0112692695, 0.000501034257, 0.0103920596, 0.0210658498, 0.0357799307, 0.0060892473, -0.00504876068, -0.0258424841, 0.0344224945, -0.00327673228, 0.00898340065, -0.0196699984, 0.0107826423, -0.0144195426, -0.0232428685, 0.0160202906, 0.0110899853, -0.0442831069, -0.00114053336, 0.00252277963, 0.0123769874, 0.0120184198, 0.0173777267, 0.0133566456, -0.0211554915, -0.0207841191, -0.0189912803, 0.00488228304, -0.0262138583, -0.0155720813, -0.0101615516, -0.00738265226, -0.0108210603, 0.0275840983, -0.00468379026, -0.0497384593, -0.00412993133, -0.00197372283, 0.0121464795, 0.0179539956, -0.0236910786, -0.0290695932, -0.00835590716, -0.0201950427, -0.0256503932, -0.0154568274, 0.0284549054, -0.0221799705, 0.00551297795, -0.0734039247, 0.0290952045, 0.0150214238, 0.000313146418, -0.0310161039, 0.0073890551, 0.0175442044, -0.0245746914, 0.00567945559, -0.0114677623, -0.0209121779, 0.00656306883, 0.0163276345, -0.00830468349, -0.0493286662, 0.0111988364, 0.0294793844, 0.010718612, -0.0412096679, -0.00365290814, 0.0218726285, -0.0395448916, 0.015508052, -0.0144963786, -0.00586194126, -0.00787568279, -0.00126299052, 0.0209762082, 0.0105969552, -0.00709451735, -0.0155848879, 0.0282756221, 0.0064574196, 0.0259065144, -0.0189912803, -0.00540412683, -0.028582966, -0.00661429297, 0.0414401777, 0.000764757628, -0.0224360917, 0.00573708257, -0.00618209084, 0.0339614786, -2.2354202e-06, -0.0572683774, -0.0150086181, -0.0160330962, 0.0274560377, 0.00262682838, 0.0343456604, -0.00220423075, 0.0187991913, 0.00482785748, -0.0587026477, -0.0210786555, 0.000329153903, 0.0175826214, 0.0389814265, 0.0268669631, 0.0085544, 0.0221031345, -0.00171280093, 0.00568906032, -0.0273792017, 0.0170959942, 0.0184150115, 0.0145604089, -0.0097005358, -0.0067999796, 0.0323223136, -0.0416963, 0.00495271571, 0.0373422615, -0.011743091, -0.00518962648, 0.00473501394, 0.00897059496, -0.0108914925, -0.0135999592, -0.0169935469, 0.0149061698, -0.035959214, -0.00778604066, 0.0108850896, -0.0190553106, -0.00590676209, -0.0239984225, -0.0460503325, 0.00888735615, 0.00574988872, 0.00856080279, -0.00717775617, -0.0426439419, 0.0172240548, 0.00123337668, -0.0467418581, 0.0354725868, 0.0176978763, 0.0101039242, 0.016532531, 0.00303661986, -0.0135871535, 0.0248564221, -0.010603358, -0.0386228599, 0.0344224945, -0.0155848879, -0.0172496662, 0.0108978963, -0.0334748514, -0.0380337834, -0.00241232803, 0.00509358197, 0.0356518701, 0.0229227189, -0.00525045488, 0.00357927359, -0.00785007048, 0.0021209917, -0.00805496611, 0.0250997357, 0.0406974293, 0.018811997, -0.0412608944, 0.0205151923, 0.0131389434, -0.0246003028, -0.00111972354, 0.0407486558, 0.0502763093, 0.0324503742, 0.00333596, 0.016686203, 0.0464345142, -0.0165709481, 0.00982859544, 0.0181973092, 0.0143170943, 0.00061028538, 0.0190296974, 0.00369452755, -0.00341599737, 0.0297355037, -0.0191833694, 0.00973255094, 0.00828547403, 0.052607, 0.0269694105, -0.00239311904, -0.00793971214, -0.0178131294, 0.0129852723, 0.0221927781, -0.00904102717, 0.0236782711, 0.00062429189, 0.00230827928, -0.0185302645, -0.030862432, 0.00623331452, 0.0078628771, 0.0285317414, 0.0224360917, 0.0146500506, -0.00825986266, -0.0193754602, -0.0260857977, -0.0143042887, 0.0244082138, -0.0286854133, -0.0171600245, -0.0231020022, -0.0184022058, -0.0207585059, 0.0149702, -0.0228458829, -0.0221799705, -0.00604442647, -0.0128828241, -0.00563463476, -0.0129532572, -0.0425414927, 0.0280451141, 0.0281987861, -0.0443087183, 0.0157129467, -0.00793971214, -0.0161099322, 0.0428488366, 0.0063357628, -0.0153031554, 0.0431561805, -0.00465817796, -0.00283332495, -0.0393143818, 0.0215780903, -0.0394680537, -0.0227562413, -0.00193050271, 0.024818005, 0.00348322885, 0.00888735615, 0.0105201192, -0.0220134929, 0.00598359806, -0.00106609846, -0.0578830652, -0.00239151833, 0.027174307, -0.00238031312, -0.00551938079, 0.0352933034, -0.00464217085, 0.0199261177, -0.00180244283, 0.00603802316, -0.000908424787, 0.00420356542, -0.0034095943, 0.00977737177, 0.00117815088, 0.0113461055, -0.00510958908, -0.0128380032, -0.0222568065, 0.00397625938, -0.00996946171, 0.00542653725, -0.0240112282, 0.0266620666, 0.0109683285, 0.0126267038, -0.0361641087, -0.00882332586, 0.0150982598, -0.000255719584, -0.0235117935, 0.0289159212, 0.0201310124, 0.000954846502, 0.00263323123, -0.00314226933, 0.00512559665, 0.0194651019, -0.0333724059, -0.028582966, -0.0237038843, 0.0134847052, -0.01075703, 0.0456917658, 0.00828547403, -0.0105841495, -0.0113333, -0.0073890551, 0.0207072832, 0.0124794357, -0.00759395072, 0.00253718649, -0.0138944974, 0.00430281181, 0.0323735364, -0.0119159715, 0.034166377, 0.0151238721, 0.00644141203, 0.0216805376, -0.0278658308, 0.0143939303, -0.0066591138, -0.0209249854, -0.00958528183, -0.017902771, -0.0163916647, 0.00719056232, -0.0255223345, -0.0155464699, -0.00252438034, 0.0129148392, 0.00661429297, 0.00759395072, 0.0230123606, 0.00775402598, 0.0214628354, -0.0274560377, -0.00319349323, 0.000209698061, -0.0319125205, -0.00145668117, 0.0170063525, 0.00147108792, 0.00895138551, -0.0185302645, -0.0081189964, -0.0271999184, 0.0324247628, -0.0202718787, 0.0281475615, 0.0010652981, -0.0547584035, 0.023793526, 0.0140737807, 0.0174673684, -0.0207713135, 0.0246003028, 0.0124858385, -0.0115894191, -0.0343456604, 0.00401147595, -0.0472284853, -0.0122105097, -0.0127483616, 0.0161995757, 0.0148421405, 0.0163148288, -0.0250741243, -0.0301965196, -0.00978377461, -0.0190168917, 0.00542973913, 0.0119800018, 0.00662709866, -0.0335516892, 0.0113140903, 0.0064125983, -0.0353189148, 0.0278146062, -0.039032653, 0.0130877197, -0.0342688225, -0.00518962648, 0.0199261177, 0.0338590331, -0.0161355454, -0.0346786156, 0.00892577413, 0.0108786868, -0.0116406428, 0.00507117109, -0.0346017815, 0.00595478434, -0.00887454953, -0.0106545817, -0.000612286327, -0.00548096281, 0.00140145537, 0.0178003237, -0.0082150409, 0.02850613, -0.0138048548, -0.0150726484, -0.00861843, 0.0183253698, 0.0136639895, -0.0105457315, -0.00787568279, -0.00839432515, 0.00899620634, -0.00809978787, -0.0471772589, -0.00832389202, -0.0187479667, 0.0126907341, 0.00357607217, -0.0085223848, -0.0172880832, 0.0116342399, 0.00497512659, 0.00895778835, -0.00318709039, 0.00116534496, 0.00293097063, -0.0308368187, -0.0301452968, -0.00357287074, 0.0117751062, -0.0120952558, 0.00915628113, -0.0277121589, -0.0091370726, -0.0413377285, 0.0220134929, 0.0034704227, 0.000449410145, -0.00212899549, 0.000835590705, -0.0238191374, 0.00516081322, -0.0171984416, 0.0185686834, -0.0456661545, -0.0149958124, -0.0266108438, -0.0151110655, 0.0460247211, -0.00156713277, -0.0323991515, 0.0232812855, 0.0266620666, 0.00861202739, -0.0252662152, -0.0195291322, 0.00200413703, 0.00793971214, 0.0111284032, 0.00315187383, -0.0112564638, 0.00843914598, -0.0391351, -0.004181155, 0.0278914422, 0.0195675492, -0.0158410072, 0.0390582643, 0.00891937, -0.0243697949, -0.0094188042, -0.0170831885, -0.00778604066, -0.0453588106, 0.022692211, -0.0101039242, 0.000156072972, -0.0218085982, 0.0211811047, 0.0178003237, -0.0227946583, 0.00509998482, 0.0268669631, -0.017633846, 0.0238063317, -0.0139585268, -0.00337117631, 0.0186839364, -0.0150854541, -0.00168718898, -0.0115702106, -0.034320049, 0.000832389225, -0.00565704517, 0.00758754788, 0.00833669864, -0.00305422815, 0.0297355037, -0.0240752567, 0.0324503742, -0.00812539924, 0.02234645, 0.00549697038, 0.0133438399, 0.0194394905, 0.00663990481, 0.0400827415, -0.0153287677, -0.00115333928, 0.0296586677, 0.0217573736, 0.027404815, 0.00858641509, -0.0367019624, -0.02151406, 0.0129788686, -0.00943801366, 0.0300428476, -0.0200797897, -0.0203231033, 0.00264763809, 0.0264827833, 0.0066591138, 0.0103600444, 0.0489444882, 0.014214647, 0.00752351806, 0.0146500506, -0.00813820586, 0.0278914422, 0.0375215448, 0.0370349176, -0.0362665579, -0.0268669631, -0.000744348043, 0.0161611568, 0.00632295664, -0.0125370622, -0.022961136, -0.000703128811, -0.029607445, -0.0321942531, -0.000802375202, 0.0233325101, 0.0102319848, -0.00151510851, -0.0115638068, 0.0137792435, -0.00211779028, 0.0153671857, 0.0300940722, 0.0181973092, 0.0187223554, 0.00557380635, 0.00909865461, -0.0082662655, 0.00018698744, 0.00897699781, -0.0119864047, 0.00759395072, -0.00014496778, 0.0259577371, -0.00876569841, -3.86180582e-05, -0.0349347368, 0.00161675597, -0.0122937486, -0.0288390853, 0.0244466309, -0.00893858, 0.0194266848, 0.00861202739, 0.0128316, -0.00828547403, 0.0299916249, -0.0187607724, 0.0171984416, 0.00822144467, 0.0356774814, 0.00148149277, 0.0105329249, -0.0190937277, 0.0158794243, -0.00756833889, -0.00598359806, -0.0259705447, 0.0193114299, -0.00632935949, -0.0173008908, -0.0136767952, 0.0197724458, -0.0208481494, 0.0218470152, 0.0196059681, 0.00602521747, -0.0321430303, 0.0135231232, 0.00159754697, 0.00285733608, -0.0419011936, 0.000134562928, 0.00363369915, 0.0226794053, 0.00213539856, 0.0230507776, 0.0282500088, 0.0300172362, 0.00635177, -0.00190809218, -0.0158794243, -0.0216805376, 0.0123193609, -0.0240496453, 0.000652705203, 0.0022010291, -0.0218726285, 0.00304462365, 0.0126331076, -0.0198236704, 0.0303758029, 0.0373934843, 0.0163532477, -0.0177234877, 0.0696133524, -0.017825935, -0.0215652846, -0.027327979, -0.0139201088, 0.0145604089, -0.00155752827, -0.0216805376, -0.0301452968, -0.0183381755, 0.0315795653, -0.0120760463, -0.0119607933, -0.0174929798, 0.0171984416, 0.0181204733, 0.0413121171, -0.0138816908, 0.00146308413, -0.031810075, 0.00622691168, -0.0010957123, 0.0382386819, 0.00975175947, 0.0262138583, -0.00505516399, 0.0400827415, 0.0164941121, 0.0286341887, -0.00147989194, 0.00123257632, -0.041619461, -0.0243185721, -0.00585233653, 0.0116214342, -0.00805496611, -0.0167502332, -0.0198876988, 0.0214244183, 0.00584593369, -0.00722898031, 0.0444623902, -0.00537851499, -0.00849677343, 0.00975175947, -0.0171088, -0.015431216, -0.00980298407, -0.013074914, 0.00450450648, -0.0246899445, 0.00294057513, 0.0113845235, 0.00804856326, 0.00441486435, -0.0200925954, -0.0240752567, -0.0333724059, -0.0243697949, -0.00254358933, -0.000398386299, -0.0132029736, 0.00971974526, -0.00155192567, -0.0484578572, 0.0172368605, -0.0402108021, -0.00182805478, -0.0186071, -0.0271230824, 0.0208737608, -0.00664630765, -0.0126459133, -0.0331162848, -0.0294537731, -0.011896763, -0.0260986034, -0.0053465, -0.0102319848, 0.0297867283, 0.00786928, 0.0268413518, 0.0278914422, -0.0280963387, 0.0547071807, -0.0447697341, -0.0309648793, -0.00361128873, -0.0233453158, -0.00680638244, 0.0431305692, 0.00186487206, 0.0039794608, 0.0447441228, 0.0154952453, 0.0368300229, -0.038315516, -0.019042505, -0.022730628, 0.0276097097, 0.0173649192, 0.0270718597, -0.00608284445, 0.0293257125, 0.00812539924, 0.00987982, -0.0137536312, 0.01144215, -0.0124474205, 0.0144323483, -0.010872284, -0.0174673684, -0.0174289495, -0.014253065, 0.0282500088, 0.0269438, 0.0294281598, 0.00710092, -0.00449170033, -0.00891937, -0.0134334816, 0.0186839364, -0.0419011936, 0.0182741452, -0.0082150409, 0.0167374257, 0.00480544707, 0.0199517291, 0.00888095237, 0.00627173251, 0.0226025693, -0.0172752775, 0.0097005358, -0.0144323483, -0.00270526507, 0.012012017, -0.00559301535, -0.0138304671, 0.0469211414, 0.0175570101, -0.0220647175, -0.0135615412, -0.00985420775, 0.0184534285, -0.000950044254, 0.00605723215, 0.0232684799, -0.0120312255, 0.00245714886, -0.00987341721, -0.00350884069, -0.0128444061, -0.00475422293, 0.0091626849, 0.00329754199, 0.0161227398, 0.00715854717, -0.0221159421, 0.00130461, 0.00203134981, 0.0128700184, 0.00068832183, -0.0277889948, 0.0143555123, 0.00297739217, -0.033065062, 0.0135103175, -0.00554179121, -0.00236910768, 0.00365931098, 0.0194138773, 0.0183125623, -0.00876569841, 0.0104304776, 0.0130685112, 0.0087336842, 0.00283332495, -0.011858345, 0.0105009098, 0.0150854541, -0.0252534077, -0.0271999184, -0.00441166293, -0.0150086181, -0.0252149906, 0.0368300229, 0.0310673267, 0.0198876988, 0.0279938895, 0.0169167109, 0.0187223554, -0.0191833694, -0.00964931212, -0.0505836532, -0.0155592756, 0.0265596192, -0.00914347544, -0.0104432832, 0.0179283824, -0.0218982399, -0.0252021849, -0.0184406228, 0.01672462, -0.000207096833, 0.00260601868, -0.0136639895, 0.00717775617, 0.0158666186, -0.0142402584, -0.0116854645, -0.0137920491, -0.00358567666, 0.0318356864, -0.001244582, 0.0112436572, -0.00166157691, 0.010833866, 0.019157758, -0.0114229415, 0.0026700485, -0.00402748305, 0.0157513656, 0.0017304091, -0.0236526597, 0.00747229392, 0.00988622289, -0.00146788638, 0.0329626128, -0.0144835729, -0.000428200234, 0.0043668421, 0.00282692187, 0.0067999796, 0.0361641087, -0.0195291322, -0.000735944137, 0.016532531, -0.0149573945, 0.00245394744, 0.0179668013, 0.00216421206, 0.00959808845, 0.0239600036, 0.0179539956, -0.00168398744, -0.00302221323, -0.000249116478, 0.0235886294, 0.00772841368, 0.0204511639, -0.00454932731, 0.0322967023, 0.0336541384, -0.00213379785, 0.034704227, -0.0142786764, 0.0292488765, -0.0185174588, 0.015315962, 0.0264315587, -0.00175762188, -0.00761956302, -0.0195291322, 0.00648623286, -0.0370349176, 0.00647662859, -0.00306703406, 0.00571147073, -0.0265596192, 0.023793526, -0.00848396681, 0.0271486938, -0.00114293443, 0.0259321257, -0.0217573736, 0.00224745087, -0.00519603, -0.00881052, -0.00955326669, 0.0208993722, 0.0135359298, 0.00269566057, -0.0033903853, -0.0195163265, 0.00237070862, 0.021706149, 0.0220775232, -0.0269438, 0.00655026268, 0.0166221727, -0.00160154887, -0.0100911185, -0.022961136, -0.00311345584, 0.000515441, -0.0422597602, 0.0326296575, 0.00746589107, 0.0209121779, -0.036906857, 0.0087336842, 0.0123193609, -0.00219622697, -0.0182485338, -0.0131389434, 0.00477663334, 0.0291208178, -0.000643901061, 0.0204895809, -0.0129916752, 0.0115766134, -0.0158153959, -0.0055866125, -0.00990543142, 0.00736984611, -0.00188248022, 0.00356646767, -0.0210530441, 0.00872087758, 0.01227454, 0.00238831667, 0.020066984, -0.0325784348, 0.00281571667, 0.0169423223, 0.00993744656, 0.0117751062, 0.011096389, 0.00103008165, 0.0221799705, -0.020066984, -0.0187863838, -0.0095148487, 0.00416514743, -0.0060892473, -0.00838792231, -0.0066783228, 0.00500714127, 0.0108978963, 0.00187607727, 0.00368172163, -0.0101231337, -0.011896763, -0.0168398749, -0.00153671857, 0.0109555228, 0.0019593162, -0.0314002819, -0.00669112895, 0.0108402688, -0.0314002819, 0.021629313, 0.0138816908, 0.00752351806, 0.0146116326, 0.00394424424, 0.0117174787, 0.0254967231, 0.015277544, -0.00383539335, -0.012697137, -0.0031486724, 0.010872284, 0.0212195218, 0.0357287079, 0.0242801532, 0.0058683441, -0.00994384941, -0.0116726579, -0.00185206602, 0.00461655855, -0.00458454387, -0.0182229206, -0.0124154054, 0.00701127853, -0.0246259142, -0.0508141592, -0.00536891073, 0.0303501915, 0.0203615203, 0.0252918266, 0.00890016183, -0.00660788966, 0.00545214955, -0.0275072623, -0.0253942739, 0.00251637655, -0.0138176614, -0.00835590716, 0.0113333, -0.016801456, 0.00150230248, 0.015431216, 0.00460375287, 0.0194394905, 0.00162475975, 0.0214116126, -0.00587794837, 0.00411072234, 2.4511462e-06, 0.0116854645, -0.0340383165, 0.0233068988, -0.0168910976, 0.00875929557, -0.0362409465, 0.00377136352, -0.0049719247, 0.0248820353, 0.0136767952, -0.0104624927, 0.0153799914, 0.0245618857, 0.025010094, -0.0221287478, -0.000433802838, -0.00738265226, -0.00861202739, -0.0268413518, -0.0146884685, 0.0148165282, 0.00921390858, 0.00609565, -0.00188728247, 0.00583312754, 0.0179283824, -0.0171216056, -0.00361128873, 0.0173649192, -0.00229707407, 0.0257272292, -0.0147653045, -0.000176782662, 0.00220743218, 0.0314515084, 0.00797813, 0.00344160921, 0.0196828041, -0.0121848974, 0.00565704517, -0.0259321257, 0.000622691179, 0.015315962, 0.0206176415, -0.0044884989, -0.0163404401, -0.000374375057, -0.0330906734, -0.000252318, -0.0285573527, 0.0168142617, -0.00461015571, -0.00259001111, 0.0232940931, -0.0161355454, -0.00497832801, 0.0162636042, 0.0183637869, -0.0186327118, -0.0231020022, -0.00446608849, 0.0243697949, -0.000222904229, -0.00318388874, -0.00649583759, 0.00218662247, 0.0204639696, -0.00779884681, -0.0172752775, 0.000825185853, -0.0185814891, 0.00734423427, -0.00417475216, 0.00744668208, -0.0117302854, -0.00316948211, -0.0154824397, 0.0129020326, 0.0147909159, 0.00310225063, -0.000574268517, -0.00380657986, -0.030631924, -0.0372654237, 0.0047894395, -0.020412745, -0.0191065334, 0.0126074953, 0.0129852723, 0.00422917772, 0.000731141889, -0.0101551488, -0.0233325101, -0.00762596587, 0.00833029486, -0.0026892575, -0.0149189765, -0.00119015656, 0.0191961769, -0.000982059166, 0.00848396681, -0.0138432728, -0.0291976519, -0.00660148682, 0.0200541764, 0.0173265021, -0.0230251662, 0.0117046731, 0.00897059496, 0.0292232651, 0.0187351611, 0.0182229206, 0.00749150291, 0.0149830058, -0.0142658707, 0.0277889948, -0.0128444061, -0.0406462066, 0.0110515673, 0.0457942151, 0.00619489653, 0.00774122, 0.01315175, 0.00326072471, 0.00639979262, -0.000916428515, -0.00913067, -0.0140481694, -0.00291336235, -0.022461703, -0.00217541726, 0.0298379529, 0.0107506271, 0.0172112472, -0.00582352327, -0.00804216, -0.0182869509, 0.0140737807, -0.0130685112, -0.0123641817, 0.00850957911, 0.0131389434, -0.0256503932, -0.016532531, 0.0100655062, -0.0487908162, 0.0320405811, 0.0227178223, 0.0221543591, -0.00829187687, 0.0124794357, -0.0148421405, 0.0264315587, 0.00766438385, 0.0229227189, 0.0413377285, -0.00755553273, -0.00433802838, 0.0266108438, -0.00193690567, -0.00209858129, 0.012620301, -0.00907304231, -0.00115734118, 0.0365995131, 0.00121336733, 0.0181332789, -0.00649583759, -0.00137344224, 0.00856720563, -0.0109747322, -0.0210402384, -0.0157129467, -0.0017304091, 0.0176210403, 0.00781805534, 0.0147781102, -0.00916908775, -0.0361897238, 0.00990543142, -0.00293737347, -0.00930995308, -0.00386100542, 0.0078628771, 0.0170959942, 0.0131261377, 0.0380337834, 0.0104752984, 0.012921242, 0.000338958489, -0.00457493914, 0.0295818318, -0.0106737912, -0.0163148288, -0.0190681163, -0.0188504141, 0.0206560586, -0.0189784747, -0.00104929064, 0.0216037016, 0.00481505133, -0.0174417552, 0.0152519317, 0.00460375287, -0.00189208472, -0.0233965404, 0.0338078067, 0.0132670039, 0.00704329321, 0.053938821, 0.0328345522, 0.0229739435, -0.00254519, 0.00105409289, -0.0368812457, -0.00285893679, -0.0229739435, -0.0105521344, 0.0116150314, 0.0279938895, 0.00638058363, -0.00669112895, 0.020335909, 0.00847756397, -0.0134847052, 0.0412096679, 0.00547776138, 0.0138432728, 0.0202334616, -0.0256503932, 0.0211811047, 0.0268157385, 0.0170191582, -0.00531768659, 0.00683199475, -0.021590896, -0.00249396614, 0.00920750573, -0.00209698058, -0.0136767952, 0.0158922318, 0.0249076467, -0.0190681163, 0.0154568274, 0.00323191122, 0.00576589629, -0.0114677623, -0.0129724657, -0.0155848879, 0.00394744566, -0.0124922413, 0.0184406228, 0.0269438, 0.00486627547, 0.00291976519, -0.022961136, 0.0260857977, -0.00392503524, -0.024062451, 0.00526646245, -0.00598039664, -0.0290439818, -0.0180436373, 0.00743387593, 0.000531048339, 0.022538539, -0.00484386506, -0.010795448, -0.000118055199, -0.00186327123, -0.00699206954, -0.00301420945, -0.00453011831, -0.0214884486, 0.0253558569, 0.0284036808, 0.00246035052, 0.00695365155, -0.00973895378, -0.0160587095, 0.00315987761, 0.00253078341, 0.0186327118, -0.00139825384, 0.00118615467, -0.0162892174, -0.0194522962, -0.0221415535, 0.00565384375, 0.0198876988, -0.00776683167, 0.030631924, 0.00334236282, 0.0185046531, 0.0198876988, -0.00510958908, 0.00893217698, 0.00701127853, 0.0160587095, 0.0166349784, 0.01672462, -0.000201194081, 0.020182237, -0.0203743279, 0.0264571719, -0.0190168917, 0.00837511662, -0.0134334816, 0.00133902614, -0.024062451, -0.00201534247, -0.00218822318, -0.00375535595, 0.0130941225, -0.00526005961, 0.0350627936, -0.00620450126, -0.0121464795, -0.0123065542, 0.00142626697, 0.009540461, 0.00554819452, -0.0094444165, 0.0139073031, -0.012658719, -0.0106481789, 0.0128380032, -0.0255479459, -0.0148037225, 0.0144963786, 0.0033199524, 0.0222568065, -0.00360488566, -0.00583632896, -0.00420356542, -0.00999507401, 0.000586674316, 0.00155192567, -0.0150342304, 0.0233325101, 0.0235374067, 0.00767719, 0.0135231232, 0.0190937277, -0.00986701343, -0.0152903497, 0.00341919879, -0.0140225571, 0.0341151506, -0.00314387, 0.00226185773, -0.000509838399, 0.0070817112, -0.0303245801, -0.0144963786, 0.0143939303, -0.0108786868, -0.00761956302, 0.0189912803, 0.00101407419, 0.0120248226, 0.00528567145, -0.0189272501, -0.025048513, 0.0208353419, 0.00222343975, -0.0100270882, 0.0148165282, -0.0188760273, 0.011518986, 0.0116598522, -0.0231404211, 0.000459014642, -0.00277729868, 0.00136383774, -0.000521844, -0.000104048653, 0.0235886294, -0.000405589642, -0.00870166905, 0.00876569841, 0.0184534285, 0.02371669, 0.00614367286, 0.00567945559, -0.00617248612, -0.00188728247, 0.00258360803, -0.0100527005, 0.00840713084, -0.000978857744, 0.0191705637, 0.0251381546, 0.00403708778, -0.0460759439, -0.0103984624, 0.00898340065, 0.00100126816, 0.0140097514, -0.0085736094, -0.0106161637, -0.033065062, -0.010680194, 0.0110899853, -0.0155464699, 0.00583953038, 0.00752351806, -0.00368492305, -0.00745308492, 0.00495271571, -0.0102896113, -0.0209121779, -0.0046293647, -0.00546175381, 0.0167758446, -0.0326040462, 0.00628453866, -0.0197596401, 0.0197724458, 0.0206432529, 0.0222311951, -0.00957247615, -0.0364458412, -0.0219878815, 0.0134334816, -0.00455893157, -0.00230347714, -0.00840713084, -0.0188248027, 0.00925232656, -0.0057819034, -0.00279170531, 0.0144707663, -0.0120888529, -0.0327321067, -0.0219366569, -0.0098221926, -0.0130941225, -0.0106737912, 0.00850957911, 0.00364970649, -0.00773481699, -0.000748349936, -0.00595798576, -0.0185942948, -0.0130941225, -0.0154056037, -0.00667192, 0.0168142617, -0.0241008699, -0.0019192975, -0.0202846844, 0.00938678905, -0.00712012919, 0.00104849029, 0.00723538315, 0.00766438385, 0.0109939408, 0.0173393078, -0.0107634328, 0.00315187383, -0.0114549566, 0.0103984624, 0.00303181773, 0.00118935609, -0.0130300932, 0.00256599975, 0.00625252351, -0.00454292446, 0.00210178271, 0.00567305274, 0.00443727477, -0.0225257333, 0.0113589112, -0.019913312, -0.0375727676, 0.0204383563, 0.0127291521, 0.0348322876, -0.0006346968, 0.00870166905, -0.00964931212, -0.011122, 0.0122297183, 0.0158282015, -0.00392183382, 0.0257272292, 0.000555059523, 0.00368172163, -0.0144707663, 0.0248564221, 0.0301709082, 0.00288935099, 0.0263291113, 0.00936758053, 0.0315027311, 0.00848396681, 0.0145604089, 0.0197084155, -0.00404349063, -0.0135871535, 0.0105777457, -0.0160971265, -0.000169179111, -0.00125498686, -0.00824705604, -0.00981579, 0.0121720918, -0.000551858044, 0.0157513656, 0.022423286, 0.00442446908, 0.00763236871, -0.00219782768, 0.0171216056, 0.00192089821, 0.000527846802, 0.0147396922, 0.00184406224, 0.0356006473, -0.00676156161, -0.0244978555, 0.00953405816, 0.00993104372, 0.00933556538, 0.00963650644, -0.00563783618, -0.0160202906, -0.00598359806, 0.0198236704, -0.00336157181, -0.0115766134, -0.0185430702, 0.00480544707, -0.00720336847, 0.011134807, -0.00239792117, 0.015508052, 0.00641900161, -0.012658719, 0.0126523161, -0.00804856326, -0.00339678838, 0.00367531856, -0.017902771, 0.00504876068, -0.019234594, 0.00562823191, 0.00607323973, 0.0256247818, 0.0172880832, -1.41065966e-05, 0.0128187938, 0.00792050362, 0.010603358, -0.00498473085, -0.0200157594, -0.0107122092, -0.00793971214, 0.00459734956, 0.0163532477, -0.00582032138, -0.0198876988, 0.0150598418, 0.00509038, 0.00151670922, -0.00490789488, 0.00277889939, 0.00166798, 0.00793971214, 0.00200253632, 0.00674875593, 0.00984140206, -0.0236014351, 0.0443343297, 0.0234605707, 0.0018792788, -0.00510638766, -0.0209634025, 0.00414273702, 0.000890016148, 0.019990148, -0.00140705798, 0.00365931098, 0.00726099545, -0.0206176415, -0.031963747, 0.00695365155, 0.000152171153, 0.0326296575, -0.00395384897, -0.016455695, 0.0251381546, -0.0326552689, 0.00498152943, -0.00660788966, 0.01144215, -0.00438925251, 0.0090154158, -0.0286085773, 0.0399290696, 0.0165709481, 0.00797813, 0.00419075973, -0.00887454953, 0.014253065, 0.00663990481, 0.0135871535, 0.0132670039, 0.0298891757, -0.00895778835, 0.00744027924, -0.0152903497, -0.000850797805, 0.0174545608, -0.00179123762, 0.00587154552, 0.0194010716, -0.00861202739, -0.0164941121, -0.017825935, -0.000873208337, 0.0109363142, 0.000368372246, -0.00368172163, 0.00733783096, -0.00704969652, -0.0170447696, -0.0056410376, -0.016532531, -0.00326072471, -0.0124538234, -0.0148805585, 0.00810619071, -0.00445968518, 0.016455695, -0.0130300932, -0.00264763809, 0.0255479459, 0.00744668208, 0.00409151334, 0.0158025902, 0.0226025693, 0.000811979698, -0.00486627547, 0.00437644636, -3.53915493e-06, -0.0081446087, -0.00976456609, 0.00477663334, -0.0129916752, 0.00556420162, -5.75269e-05, 0.0114165386, 0.0371885896, -0.0307343714, -0.0192858186, 0.0170063525, -0.0112756724, -0.00716495048, 0.0057819034, -0.00124538236, 0.00866325106, -0.000249916862, -0.0175826214, -0.0222055838, -0.0127739729, -0.00723538315, -0.0037681621, -0.0218342096, -0.00503275311, 0.0337309726, -0.00389622198, -0.0114357471, 0.0162636042, 0.0102191782, -0.0108210603, 0.00363049773, -0.00089561881, -0.0168910976, 0.0108914925, -0.00370413205, -0.0223720614, 0.0111988364, 1.18993139e-05, -0.0153287677, -0.0275584869, -0.0164044704, 0.00380978151, 0.0140865864, 0.0138944974, 0.0140225571, 0.000364370382, 0.000552258221, -0.0188504141, 0.0148037225, -0.00784366764, -0.0130108837, 0.00111332058, -0.00212419336, -0.00382578885, 0.00471900683, 0.0105969552, -0.00460055145, 0.0164172761, 0.0128187938, 0.00918189343, -0.0144579606, 0.0232812855, 0.0194394905, -0.0209377911, 0.011518986, 0.0230507776, 0.0124730328, 0.0258937087, 0.00240432424, 0.00762596587, 0.00741466694, -0.0192730129, -0.0279170536, -0.0113397026, 0.00260601868, 0.0117943147, -0.0210146271, -0.0321430303, 0.0122681363, -0.00277249631, 0.0262010507, 0.0211811047, -0.00422917772, -0.0140353628, -0.0202846844, -0.0282500088, -0.0206688643, 0.00692163641, 0.00872728, 0.000710332126, 0.0154952453, 0.0187223554, 0.0107506271, -0.014368319, -0.00208577537, -0.0419011936, -0.00121736922, 0.0257144235, -0.00282852259, 0.0299404, -0.0103472387, 0.00279810838, 0.0135871535, 0.00375215453, -0.00632615807, 0.0135359298, 0.000685520528, 0.0333467945, 0.0217573736, 0.00197532377, -0.0284036808, 0.00973895378, -0.00209537987, 0.00229227194, 0.018056443, -0.0119479867, 0.00236590626, -0.0198620874, -0.0332699567, 0.0113397026, -0.0210146271, 0.0129084364, 0.0164172761, 0.00844554882, -0.0261370223, -0.0133438399, 0.0214884486, -0.00622691168, -0.00971334241, 0.0135743469, -0.00859922078, -0.00881052, 0.0148037225, 0.019157758, 0.0111988364, 0.00459094672, 0.00501994742, 0.026149828, 0.00438925251, -0.0231532268, -0.0297867283, 0.000675115676, -0.0295818318, 0.00864404161, 0.00404669205, -0.00040138769, 0.00328153442, -0.00201854389, 0.0183125623, -0.00615968043, 0.0082406532, -0.0193754602, -6.81818783e-05, -0.00483426033, -0.0178771596, -0.0233837347, -0.00490469346, -0.0117302854, -0.00230347714, -0.0269438, 0.00514480565, -0.00287814578, -0.0298379529, 0.0201694313, 0.00977737177, -0.00582352327, 0.0153415734, -0.0267132912, -0.00373934861, 0.0138432728, 0.0192089826, 0.0377520546, 0.00646702386, -0.00929714739, 0.0288134739, 0.0182741452, 0.00804216, -0.0193754602, -0.00396025181, -0.00491429772, 0.0319125205, 0.0197468344, -0.0203743279, 0.0210018195, -0.0196699984, -0.0020393536, 0.0107890451, 0.00561222434, 0.0295049958, -0.0153799914, 0.0116598522, -0.00407870719, -0.0104945069, -0.00153911964, -0.00210818578, 0.0136511829, 0.0026892575, 0.00416194601, 0.0176978763, -0.00411072234, 0.0155208576, 0.00832389202, -0.00529207475, -0.00405309536, -0.00169679336, 0.0140481694, 0.0218214039, 0.000569066091, 0.00733142812, 0.0192858186, -0.00717775617, -0.0121208681, 0.00548096281, -0.0155592756, 0.0197596401, 0.0145988259, 0.00395064754, -0.00891937, 0.0163404401, 0.0122041069, -0.0155464699, -0.0125754802, 0.0247795861, -0.0149702, 0.0146628562, 0.0200157594, 0.0272767544, 0.0281219501, 0.00993104372, -0.0150854541, -0.00963010266, -0.00575629156, -0.0133054219, 0.00595158292, 0.014291483, -0.0103600444, 0.0205792226, 0.0147524979, -0.0136383772, 0.0195291322, -0.00531128375, 0.00444367807, -0.00327353063, 0.0115766134, -0.0127163464, -0.0118327327, 0.00583312754, -0.0145988259, -0.0185686834, 0.0194779076, 0.00921390858, 0.022423286, -0.0113333, 0.00479904423, 0.00241232803, -0.0160074849, 0.00973255094, -0.00152151147, -0.00621410552, 0.000878810941, -0.0014102594, 0.00307343714, -0.00947643071, -0.0275328737, -0.000210298342, 0.00520883547, 0.0066591138, 0.0282756221, 0.0259449314, -0.0149573945, -0.000870807213, 0.00788848847, 0.0312978365, 0.0172112472, -0.0123001514, 0.00713933818, -0.0047702305, 0.0177619047, -0.0266876798, 0.00489829062, -0.0123257637, 0.0284036808, -0.00317108282, 0.0112628667, -0.0079333093, 0.00369132613, -0.000906824, -0.00254999241, 0.00105249218, -0.00588115025, -6.32170622e-06, -0.000858001178, 0.00269566057, 0.0125690773, 0.00409151334, 0.022244, -0.0139841391, 0.00134222768, 0.0208737608, 0.00270686578, -0.0133438399, 0.0161483511, 0.00583632896, 0.038878981, -0.0150214238, -0.0396473408, -0.0066591138, -0.0038481995, -0.00254358933, -0.00527286576, -0.0225513447, -0.00992464088, 0.0146372439, -0.0195419379, -0.0160330962, -0.000987661886, -0.00963650644, 0.0174417552, 0.00689602457, -0.0092331171, -0.00634536706, 0.0222824197, -0.0131773613, 0.0135103175, -0.000793170882, 0.0222952254, -0.00905383378, -0.0171216056, -0.010263999, -0.017710682, -0.0373934843, 0.012620301, 0.0232812855, -0.0027708956, -8.28887569e-05, 0.00450450648, 0.0230123606, -0.00817662384, -0.0113397026, -1.66452828e-05, -0.0135615412, -0.00373614696, 0.000963650586, -0.0137280189, 0.00139425194, 0.00973895378, 0.00664630765, -0.0149317821, -0.0108850896, -0.0180180259, 0.00867605675, 0.00999507401, -0.0258937087, 0.00241392874, 0.0308880433, 0.0105329249, -0.0322967023, 0.0369836949, -0.021360388, 0.0377008282, 0.0122425249, -0.0221031345, 0.0246643331, 0.00123977975, 0.00927153509, -0.00228266744, -0.00228746957, -0.00412352802, 0.0220262986, -0.0128123909, -0.0207969248, 0.00364010222, -0.0254326928, -0.000473421358, -0.00872087758, 0.0480992906, 0.00116854638, -0.0113909263, 0.0113589112, 0.007696399, -0.0162636042, 0.00117735052, -0.0128636146, 0.0072481893, 0.00559941819, -0.0154952453, 0.0126331076, 0.00779884681, 0.018811997, 0.00704329321, -0.00844554882, -0.00589075452, 0.00363049773, 0.00444687949, -0.00315667596, 0.000818382658, 0.0019897304, -0.00272447406, 0.010379253, 0.00632295664, -0.0112628667, -0.00228266744, 0.000604282541, -0.0221415535, -0.00776042882, 0.00579470955, -0.00141506165, -0.0079333093, 0.0219622701, 0.0190937277, 0.0173393078, -0.0111476127, -0.0082662655, 0.000154472233, -0.00893858, -0.00440846151, 0.00451731216, 0.0166990086, 0.00484386506, 0.00212899549, -0.0277633816, 0.0386228599, 0.00188408105, 0.000678317156, 0.0112564638, -0.0165581424, -0.00907304231, 0.016801456, 0.00115974224, -0.0230251662, -0.0290439818, -0.00599320233, 0.0101359393, -0.0156745296, -0.00697926339, -0.0109235076, -0.0248820353, -0.00900901295, 0.000980458455, -0.0148421405, -0.0150086181, -0.0105073135, -0.0171472188, -0.0127483616, -0.000265123963, 0.0132541973, -0.0161483511, -0.00699847238, -0.00722898031, 0.017787518, -0.00145988259, 0.0212963577, 0.0104112681, -0.0022410478, 0.0102704028, -0.0116534494, -0.00784366764, -0.0224745087, 0.0120440321, -0.0159690678, 0.00844554882, -0.00484386506, -0.00269726128, -0.0134462873, 0.00308624306, -0.0035312511, 0.0398266241, 0.000406990323, 0.000613887038, -0.014253065, -0.0118647479, 0.0116214342, -0.00733142812, 0.000445808459, -0.00949564, -0.0105073135, 0.0184150115, 0.000844394846, 0.000212299274, -0.0205920283, 0.0159306489, -0.00282372045, -0.0125242565, -0.00723538315, -0.0227050167, 0.00105409289, -0.0203615203, -0.0079333093, 0.0172752775, 0.00425158814, -0.0184022058, -0.00197212212, -0.0069856667, 0.0300428476, -0.00233709277, 0.00130701112, -0.00551938079, 0.020066984, -0.0205664169, 0.00559621677, 0.00304622436, -0.0110899853, 0.000621890824, -0.0181588903, 0.0110707767, 0.00169199123, -0.000368772424, 0.0164813064, 0.0321942531, -0.00105329254, 0.0052792686, 0.0256119762, 0.0136255715, -0.0171728302, -0.00610845629, 0.00522804447, -0.00799734, 0.00407230435, -0.00753632421, 0.0141506167, -0.00957887899, 0.0110259559, 0.00262042531, -0.0142018404, -0.00781805534, -0.000874809048, 0.0124794357, -0.0272255298, 0.0104368804, -0.0264571719, 0.00278370176, 0.0148677519, 0.0219750758, 0.00352804968, -0.0222824197, -0.00988622289, -0.00303661986, 0.00981579, 0.00268285442, 0.00169839419, 0.00192570046, -0.0166733973, -0.0281475615, -0.0335773, -0.0113397026, 0.00152231182, 0.0177362934, -0.0104112681, -0.00137344224, 0.00369772897, 0.0265083946, -0.0176850688, -0.00387701299, 0.00811259355, 0.0147396922, 0.00357287074, -0.0202206559, 0.00749790622, -0.00603162032, -0.00241232803, 0.0131773613, -0.0417219102, -0.0148805585, 0.015239126, 0.0122681363, 0.00689602457, 0.0101615516, 0.00720336847, -0.0191449523, 0.0360104367, 0.00278370176, 0.00352804968, -0.0154056037, 0.00654386, -0.0160202906, 0.00207457016, 0.000690322777, 0.0146500506, -0.0157513656, -0.0352420807, -0.00756193604, -0.0097261481, 0.00182005111, -0.00822784752, -0.00559621677, 0.0165965613, -0.00226025679, 0.00864404161, 0.00307823927, 0.000898019935, -0.0223976728, -0.01007191, 0.00666551664, -0.00835590716, -0.00929714739, 0.00797172729, -0.0368300229, -0.00360168424, -0.00261402223, 0.00125098496, -0.0160587095, -0.00674875593, -0.00820863806, -0.00993104372, 0.0024283356, -0.00883613154, 0.00270846649, -0.00334236282, -0.0144835729, -0.0111668212, 0.0149061698, -0.00216421206, -0.00111812283, -0.0202718787, -0.0123513751, -0.0136383772, -0.00571147073, 0.0101871639, -0.0051576118, 0.000309344643, 0.014253065, -0.0114933746, -0.0615199655, 0.00611165771, 0.00364970649, 0.0105905524, 0.0242033172, 0.00283972779, 0.0162379928, 0.0082150409, -0.00632935949, -0.00617568754, -0.0283012334, -0.0183637869, 0.00436364, -0.0112436572, -0.0076707867, -0.00386420684, -0.00252117892, 0.00492390245, 0.0104752984, -0.000349163281, 0.0185558759, -0.0139073031, 0.00628133724, 0.0135743469, -0.00966211781, 0.0238447506, 0.0189912803, 0.0223720614, 0.00459094672, 0.0187095478, 0.00348322885, -0.00183125632, 0.00525365677, 0.0225513447, -0.0234093461, -0.00846475828, -0.000414994051, 0.0271999184, 0.0171728302, 0.0175313968, -0.00434443168, -0.00922671426, 0.0143939303, 0.0104112681, 0.00155112532, -0.00754913, 0.002850933, 0.000840392953, -0.0175313968, 0.00736984611, 0.00116774603, 0.0111796279, -0.00625252351, 0.000411392364, 0.0264827833, -0.0232300628, -0.00770280184, -0.00121016591, 0.00963010266, -0.021782985, 0.00066991325, -0.00212419336, 0.00340319122, 0.0110067464, -0.00764517486, -0.00230667857, -0.000322150649, 0.000157873816, 0.0125114508, -0.00833029486, 0.0236270484, 0.0091626849, -0.00170479715, -0.00717135333, -0.0150214238, -0.00815101154, -0.00992464088, -0.0143427067, 0.0262778867, -0.0149445878, 0.00389622198, -0.00743387593, -0.0281219501, -0.0076515777, -0.0266364552, -0.00330074341, 0.0132029736, 0.0156745296, 0.00781805534, -0.0433098525, -0.0244210195, 0.00898980349, -0.012697137, 0.0110195531, -0.0231916439, 0.00902181864, -0.0069664577, -0.0244850498, -0.0159434546, -0.0159434546, 0.00483746221, -0.00265404093, -0.00112212473, -0.00729941297, 0.0257784538, -0.00513520138, -0.0133950636, 0.00525685819, -0.0180436373, 0.00622691168, 0.0199645348, 0.0335260779, -0.00608604588, 0.0170703828, -0.0150086181, 0.000268925738, -0.0148933642, -0.000513840292, 0.0236910786, 0.0267901272, 0.00040138769, -0.00594518, 0.0119671961, -0.00373614696, -0.0129852723, -0.0206432529, -0.0126459133, -0.00630694907, -0.0137664368, 0.00985420775, 0.00328793749, -0.0147781102, -0.0126715256, -0.02014382, 0.0126523161, 0.0185686834, 0.0210658498, -0.0109747322, 0.00413633417, -0.028429294, -0.0165965613, -0.00208737608, 0.0132670039, 0.0129276449, -0.0252790209, -0.0201310124, 0.00763236871, -0.0116470465, -0.0169935469, -0.0135999592, -0.0274560377, -0.0254454985, 0.016878292, 0.00749790622, -0.00258360803, 0.00460695429, -0.0113717178, 0.00276929489, 0.00662069581, -0.00922031142, 0.0127611673, 0.0192730129, 0.00136303739, 0.0261370223, 0.0164044704, -0.00285893679, 0.0147524979, 0.0137920491, 0.0109491199, 0.0112948818, -0.0262010507, 0.0196956098, -0.0219878815, -0.0257912595, 0.0260986034, -0.00820223521, 0.0260345731, -0.00048982905, 0.000164777055, 0.00298539596, 0.006518248, -0.00185846898, 0.00473181251, -0.0171600245, -0.00304462365, 0.034320049, -0.00032655269, 0.00315347454, 0.00900260918, -0.0253174379, -0.0144579606, -0.0104881041, 0.00818942953, 0.0117623005, -0.000238311433, -0.0291976519, -0.00297419075, 0.00553218694, 0.0234605707, 0.000531448517, -0.00540092541, -0.0182485338, -0.0127483616, 0.0162892174, 0.0163916647, 0.0112436572, -0.0204639696, -0.016647784, 0.0137280189, -0.00313586625, -0.000445808459, 0.0205536112, -0.00627173251, 0.0331931226, -0.0128251966, 0.00145508035, 0.00155672792, -0.0113140903, 0.0130044809, -0.0140481694, -0.0207328945, -0.000617088575, -0.00198332733, -0.0267132912, 0.00766438385, -0.000214500295, -0.014291483, -0.000721537392, -0.0202846844, 0.0276353229, -0.0283780694, -0.00993744656, -0.0149958124, 0.002679653, -0.0260986034, 0.00131661561, -0.00214340235, 0.010340835, -0.0144067369, 0.00216421206, 0.00957247615, 0.00371053512, 0.00519923121, -0.0197852515, -0.00696005439, -0.0266108438, -0.00125018461, 0.0045077079, 0.00801014528, -0.0402876399, 0.00396025181, 0.00391222956, -0.0128636146, 0.00998867, -0.0170063525, -0.0198108628, 0.000485827186, -0.000936437864, 0.0138048548, -0.0218598209, -0.00322390744, 0.0132798096, 0.0179411899, -0.0192217883, 0.00401147595, -0.00435403595, 0.00685120374, 0.0253686626, 0.00502314884, -0.0064158, 0.0256888121, -0.00372013962, 0.029607445, -0.0367787965, 7.7386183e-05, 0.0044820956, -0.0251765717, -0.0147909159, 0.00375535595, -0.0138304671, 0.00876569841, 0.000443007157, 0.0122489277, 0.0206560586, -0.0195931625, 0.0205920283, 0.00310545205, 0.0112052392, 0.0081189964, -0.0187863838, 0.0268669631, 0.0175313968, 0.0092331171, -0.00460695429, -0.0106609855, -0.021091463, -0.000751551415, 0.0216805376, -0.000635097, 0.00936117768, 0.00675515877, -0.0103664473, -0.00870807189, 0.008855341, -0.00589075452, 0.0343968831, 0.00510958908, -0.0171728302, -0.0208481494, 0.00510958908, -0.0211939104, -0.0031278627, 0.00554179121, 0.0121400766, 0.0202334616, -0.0019993349, -0.00778604066, -0.011057971, 0.00313426554, 0.0272255298, -0.00844554882, -0.0236526597, -0.0250229016, 0.00475422293, -0.00252438034, 0.0119159715, 0.00573067972, -0.0137024075, -0.0216421206, 0.00957247615, 0.00150550401, 0.00939959567, -0.0169039033, 0.00450450648, -0.0064125983, -0.0166990086, 0.00399867, 0.00921390858, -0.0022010291, -0.00272607477, -0.0239343923, 0.0210786555, 0.0134078693, -0.0115061803, 0.000138764881, -0.00586194126, -0.00955967, -0.00936117768, -0.0617760867, -0.00500394, 0.00394424424, -0.00335837039, 0.0136896009, 0.0183253698, 0.0015895433, 0.00963650644, 0.0148933642, 0.0118647479, -0.00389622198, -0.0110771796, 0.011365314, -0.00966852065, -0.00564744091, -0.00502314884, -0.0062909415, -0.0161867682, -0.00517682079, -0.013190168, -0.000596679, 0.00152071111, -0.000432602275, 0.00674235262, 0.00723538315, 0.00700487569, 0.0225897636, -0.0176082328, -0.00413633417, -0.00733142812, 0.0197340269, 0.0110451644, -0.03070876, -0.00907944515, 0.0103728501, -0.0318612978, -0.0220519118, -0.011134807, 0.00876569841, 0.0115638068, -0.0214756429, -0.0224104784, 0.00658227783, 0.00285893679, -0.0025483917, 0.000156873357, -0.0138176614, 0.00532729086, 0.0174289495, -0.00111892319, -0.039032653, -0.0150854541, 0.00492710387, -0.00707530836, 0.00596118765, -0.0187735781, 0.00820223521, -0.0154952453, -0.00622050883, -0.0170831885, -0.0187863838, -0.0016695807, 0.00758754788, -0.00150630437, -0.00131101301, 0.00959808845, -0.0108530745, -0.019157758, -0.00539772399, -0.00185206602, -0.0139457211, 0.00750430906, -0.0160971265, -0.00468699168, 0.000476622867, -0.00658227783, 0.0279426668, -0.00494951429, 0.00199613348, -0.0134334816, 0.0188760273, -0.0113140903, -0.0121336738, -0.000480224553, 0.0128316, -0.0124922413, 0.00835590716, 0.00271647028, 0.000359368045, -0.00411392376, 0.00879131071, -0.00121096626, 0.0034704227, -0.0114933746, 0.00660148682, 0.00906023663, -0.00986701343, -0.000118255295, 0.0102447905, 0.0178771596, -0.0143939303, 0.00291816448, 2.89135205e-05, 0.0215012543, 0.004181155, -0.0284549054, -0.00624612067, 0.0136639895, 0.0279938895, -0.00619169511, 0.0123769874, -0.0195291322, 0.00501034269, -0.00284613087, 0.0116406428, 0.016609367, 0.0399546809, 0.00985420775, 0.018965669, 0.00142306543, 0.0173265021, -0.00794611592, 0.0237423014, -0.0140097514, 0.00401147595, -0.00412352802, -0.019157758, -0.000394584495, 0.0231404211, -0.0139585268, 0.020066984, -0.00459414814, 0.0231788382, 0.0183125623, 0.00132381904, 0.0258168727, 0.00321590365, 0.0127483616, 0.00678717345, -0.0158666186, -0.00722898031, -0.00181684957, 0.00980298407, -0.0424134322, 0.00659508398, -0.00876569841, -0.000606283487, -0.000777163426, 0.0218342096, -0.0185686834, -0.00267164921, 0.010680194, 0.00371693796, -0.00076155609, -0.010680194, -0.00729941297, -0.00235310034, -0.0103344321, -0.029684281, -0.0130108837, 0.0263291113, -0.0223976728, -0.00835590716, -0.0375983827, 0.026188245, -0.0177362934, 0.0108274631, 0.0278658308, -0.0289671458, -0.0145091843, -0.00504555926, 0.0161867682, -0.0259321257, -0.01144215, -0.00068351964]
03 Jun, 2020
map upper_bound() function in C++ STL 03 Jun, 2020 The map::upper_bound() is a built-in function in C++ STL which returns an iterator pointing to the immediate next element just greater than k. If the key passed in the parameter exceeds the maximum key in the container, then the iterator returned points to the number of elements in the map container as key and element=0. Syntax: map_name.upper_bound(key) Parameters: This function accepts a single mandatory parameter key which specifies the element whose upper_bound is returned. Return Value: The function returns an iterator pointing to the immediate next element which is just greater than k. If the key passed in the parameter exceeds the maximum key in the container, then returned iterator points to map_name.end(). Note that end() is a special iterator that does not store address of a valid member of a map. Below is the implementation of the above approach: // C++ function for illustration // map::upper_bound() function #include <bits/stdc++.h> using namespace std; int main() { // initialize container map<int, int> mp; // insert elements in random order mp.insert({ 12, 30 }); mp.insert({ 11, 10 }); mp.insert({ 15, 50 }); mp.insert({ 14, 40 }); // when 11 is present auto it = mp.upper_bound(11); cout << "The upper bound of key 11 is "; cout << (*it).first << " " << (*it).second << endl; // when 13 is not present it = mp.upper_bound(13); cout << "The upper bound of key 13 is "; cout << (*it).first << " " << (*it).second << endl; // when 17 is exceeds the maximum key, so size // of mp is returned as key and value as 0. it = mp.upper_bound(17); cout << "The upper bound of key 17 is "; cout << (*it).first << " " << (*it).second; return 0; } Output: The upper bound of key 11 is 12 30 The upper bound of key 13 is 14 40 The upper bound of key 17 is 4 0 Learn C++ Online – Master everything from basics to advanced concepts. Apply your knowledge with practical exercises and boost your skills. Take the Three 90 Challenge: finish 90% in 90 days for a 90% refund. Start now and level up your C++ programming!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum/Algorithm for Dynamic Time out timer Calculation/Difference between Round trip time (RTT) and Time to live (TTL)/Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms/Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm/Round Robin Scheduling Algorithm with Different Arrival Time/Selfish Round Robin CPU Scheduling/Find the order of execution of given N processes in Round Robin Scheduling/Calculate server loads using Round Robin Scheduling/set::lower_bound() Function in C++ STL/Implementation of lower_bound() and upper_bound() in List of Pairs in C++/Difference between std::set::lower_bound and std::lower_bound in C++/Difference between std::set vs std::vector in C++ STL/std::minmax() and std::minmax_element() in C++ STL/std::rotate vs std::rotate_copy in C++ STL/std::bitset::to_ullong and std::bitset::to_ulong in C++ STL/std::upper_bound and std::lower_bound for Vector in C++ STL/std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++/std::string::append vs std::string::push_back() vs Operator += in C++/Vector push_back() in C++ STL/vector :: cbegin() and vector :: cend() in C++ STL/unordered_multiset cend() function in C++ STL/unordered_multiset bucket() function in C++ STL/unordered_multiset emplace_hint() function in C++ STL/unordered_multiset end() function in C++ STL/unordered_multiset size() in C++ STL/unordered_multiset emplace() function in C++ STL/unordered_multiset find() function in C++STL/unordered_multiset erase() function in C++ STL/unordered_multiset clear() function in C++ STL/unordered_multiset swap() function in C++ STL/unordered_multiset bucket_size() function in C++ STL/unordered_multiset bucket_count() function in C++ STL/unordered_set bucket_count() function in C++ STL/unordered_set cbegin() function in C++ STL/array::cbegin() and array::cend() in C++ STL/array::rbegin() and array::rend() in C++ STL/multimap rbegin in C++ STL/vector rbegin() and rend() Functions in C++ STL/multiset rbegin() and rend() function in C++ STL/map rbegin() function in C++ STL/map upper_bound() function in C++ STL
https://www.geeksforgeeks.org/map-upper_bound-function-in-c-stl?ref=asr10
PHP
map upper_bound() function in C++ STL
unordered_multiset clear() function in C++ STL, What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, jQWidgets jqxTreeMap width Property, Round Robin Scheduling Algorithm with Different Arrival Time, Difference between Flow and TypeScript, unordered_multiset emplace() function in C++ STL, jQWidgets jqxTree destroy() Method, unordered_set bucket_count() function in C++ STL, jQWidgets jqxTree collapseAll() Method, Find the order of execution of given N processes in Round Robin Scheduling, jQWidgets jqxScrollView buttonsOffset Property, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Vector push_back() in C++ STL, jQWidgets jqxListBox enableHover Property, Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm, std::rotate vs std::rotate_copy in C++ STL, Selfish Round Robin CPU Scheduling, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxSlider buttonsPosition Property, std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++, std::upper_bound and std::lower_bound for Vector in C++ STL, Difference between Round trip time (RTT) and Time to live (TTL), jQWidgets jqxSlider rtl Property, Difference between std::set::lower_bound and std::lower_bound in C++, jQWidgets jqxTooltip opacity Property, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, unordered_multiset erase() function in C++ STL, jQWidgets jqxToolBar height Property, PHP, std::minmax() and std::minmax_element() in C++ STL, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, map rbegin() function in C++ STL, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, map upper_bound() function in C++ STL, Node.js date-and-time Date.transform() Method, unordered_multiset size() in C++ STL, TypeScript Optional Parameters, jQWidgets jqxToolBar theme Property, Difference between std::set vs std::vector in C++ STL, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, Steps to Diagnose and Resolve a Slow Network, How to use Optional Chaining with Arrays and Functions in TypeScript ?, Calculate server loads using Round Robin Scheduling, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, jQWidgets jqxScrollView showButtons Property, Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms, jQWidgets jqxScrollView disabled Property, jQWidgets jqxSplitter destroy() Method, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, set::lower_bound() Function in C++ STL, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, jQWidgets jqxTree collapseItem() Method, std::string::append vs std::string::push_back() vs Operator += in C++, unordered_multiset swap() function in C++ STL, unordered_multiset cend() function in C++ STL, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), jQWidgets jqxSortable opacity Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, multimap rbegin in C++ STL, vector :: cbegin() and vector :: cend() in C++ STL, jQWidgets jqxSlider height Property, jQWidgets jqxSwitchButton onLabel Property, unordered_multiset bucket_size() function in C++ STL, unordered_set cbegin() function in C++ STL, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, jQWidgets jqxToolBar tools Property, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTree width Property, Implementation of lower_bound() and upper_bound() in List of Pairs in C++, jQWidgets jqxTree clear() Method, TLS Handshake?, multiset rbegin() and rend() function in C++ STL, Algorithm for Dynamic Time out timer Calculation, Adhoc TCP, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, jQWidgets jqxTabs position Property, Differences between Wireless Adhoc Network and Wireless Sensor Network, jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, std::bitset::to_ullong and std::bitset::to_ulong in C++ STL, unordered_multiset emplace_hint() function in C++ STL, unordered_multiset bucket_count() function in C++ STL, unordered_multiset find() function in C++STL, unordered_multiset bucket() function in C++ STL, Impact of Three-way Handshake and Slow Start Algorithm, array::rbegin() and array::rend() in C++ STL, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, vector rbegin() and rend() Functions in C++ STL, array::cbegin() and array::cend() in C++ STL, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, unordered_multiset end() function in C++ STL, How to Sort an Array Having Optional Properties in TypeScript ?
GeeksforGeeks
[-0.0149588035, 0.0135148549, 0.00325205154, 0.00108454493, 0.038809292, -0.0317162089, -0.0225585345, 0.0255224295, -0.0341734551, 0.00171468931, -0.0473463237, 0.0310069025, 0.0204179436, -0.00930333696, 0.00179068663, -0.00193318154, 0.0150981322, 0.037061356, -0.0446104221, -0.0292082988, -0.0469410047, 0.00807471387, -0.00811904576, 0.0236224961, -0.0253831018, -0.00605761865, -0.0255604275, -0.0173273869, -0.00122624822, 0.0249271169, -0.0157441087, 0.0208992604, 0.00719441194, 0.00944899861, 0.0085496977, 0.00673209503, 0.00904368, -0.00490182638, -0.0209372584, -0.00631410955, 0.0218112282, 0.00340404618, 0.0423811674, 0.0213552434, -0.00736540603, 0.00966432411, 0.0148828067, -0.0115515906, -0.0399492532, 0.0174287166, 0.0255984273, -0.0169853978, 0.0153514566, 0.0145281525, 0.0418745168, 0.0144521547, 0.0165547468, 0.0378719941, -0.011393263, -0.0332868211, 0.0300189368, -0.0467636772, 0.0118745798, -0.0160860978, 0.00264407299, 0.00891068485, -0.0350094251, 0.0504622124, 0.000935716846, 0.00862569455, -0.0104496302, 0.056086015, 0.0221912134, 0.0237491596, -0.0293096285, -0.00190468261, -0.0340721272, -0.0139075071, -0.0157567747, 0.0213172454, 0.00494299177, 0.0178340357, 0.00667509716, -0.0230271854, 0.0427358188, 0.00474033225, 0.00761873042, -0.0311842281, 0.0456743836, 0.0117605831, -0.0158454385, -0.0053514773, -0.0354907438, 0.00834703818, 0.00242874725, 0.0407852232, 0.00602595322, 0.00180018623, -0.0343507826, 0.0537047647, 0.0196453035, -0.0142368292, -0.0023575, 0.0203926116, 0.0492715873, 0.00571879745, 0.0390372835, 0.00852436479, -0.00210417551, -0.0179986954, 0.0239138193, 0.0102216378, -0.00141465827, 0.0454970561, -0.0309309047, 0.0154781183, 0.00955666136, 0.00357187353, 0.0139961708, 0.00346421055, -0.0131982, 0.0166560765, 0.0120835723, -0.0019078491, -0.0459023751, -0.0165167488, 0.0237871576, 0.0448384136, 0.0110449418, -0.037542671, 0.00576946232, -0.00291956333, -0.0148194749, -0.045117069, -0.0490942597, 0.038834624, 0.0234578364, 0.0116529204, -0.000340800441, -0.0145154856, -0.0540087558, -0.015604781, -0.0132868625, 0.0321721956, -0.0256364252, -0.0209119264, 0.00816337764, 0.0426344909, -0.0040120245, 0.000409277185, -0.0283469968, 0.000246793352, 0.0592779, -0.00380619848, 0.0165040828, -0.00913867634, 0.0102723027, 0.00208200957, 0.00311747286, -0.014325493, 0.018125359, -0.0209879242, 0.0358707309, 0.0102089718, -0.0236604959, 0.0538060963, -0.00324255181, 0.00883468706, -0.0280430075, 0.0208485946, 0.0213679094, 0.0015183629, 0.0265990589, -0.0201899521, -0.0134388572, -0.0154654523, 0.027840348, 4.4084376e-05, 0.00828370638, 0.0123938946, 0.0115199257, -0.00644393871, 0.0238124896, 0.00135132717, 0.019822631, -0.0217478964, 0.0373146795, -0.00262190704, 0.0728560835, -0.0112476014, -0.0108486162, 0.0172893871, 0.00968965702, 0.0216085687, 0.0554273687, 0.0261177421, -0.0261937398, 0.00887901895, -9.31659742e-05, 0.0238124896, 0.0248257872, -0.00740340445, 0.00157852739, 0.0190246589, 0.032906834, 0.01855601, 0.00418935157, 0.00852436479, -0.00529764593, 0.00593095645, -0.0174413826, 0.0276883524, 0.0114565939, -0.0065991, 0.0206586011, 0.0281950012, -0.0435971245, 0.0142748281, -0.0204052776, -0.0447877459, 0.0107916174, -0.0025474932, 0.0492209233, -0.029081637, -0.0311082322, -0.0230271854, 0.0177960359, 0.0302722622, 0.0142748281, -0.00809371378, 0.0154907852, 0.0367826968, -0.0153007917, -0.00540847518, -0.0165927466, -0.0100063123, -0.0618111454, -0.0173147209, -0.00455983868, 0.0473969877, 0.0117795831, 0.0357694, -0.016884068, 0.0246231277, 0.0184673462, 0.038378641, -0.019379314, -0.0250917785, -0.0298162773, -0.0115705905, 0.0241544787, 0.02870165, 0.03772, 0.0180746932, -0.000792034436, 0.0188853312, -0.0254084338, -0.00304780877, -0.0204559416, -0.00791005325, -0.0229258556, 0.0274603609, 0.0122102341, 0.0208485946, 0.0166687425, 0.0343761146, 0.0573019721, 0.00565546658, -0.0463583581, -0.0390879475, 0.0140088368, 0.0111526055, 0.0143001601, -0.0203166138, 0.0266243909, -0.0038156982, -0.0360480584, 0.0489676, -0.0120329075, -0.0176820401, 0.0297909454, -0.0027374865, -0.00636794139, -0.00944899861, 0.0252311062, -0.00291164685, -0.00964532513, -0.0171247274, 0.0110196099, -0.0294616241, -0.0337681361, 0.0126282191, -0.00757439854, -0.00131887, 0.0197593011, 0.0348827653, -0.00128007971, -0.0552247129, -0.0311335642, 0.018961329, -0.00114470941, -0.00354970759, -0.0262444038, -0.0272070374, 0.0204559416, -0.0256364252, 0.00105525425, -0.0203292798, 0.0106079578, -0.0330588296, 0.00419885153, -0.0299429391, -0.00878402218, 0.00197434681, 0.0124572255, -0.042989146, 0.0420518443, 0.0422291718, -0.0235971641, -0.0010956279, -0.0122229, -0.000766702, -0.0102849696, 0.0245597977, 0.0502595529, -0.0450410731, 0.00124920579, 0.0389612876, -0.0368080288, -0.0403545722, 0.00176377082, -0.0121785691, -0.0584672615, -0.00528497947, 0.0153514566, -0.0301962644, -0.0238504894, 0.0213932432, 0.00592779, 0.0293349605, 0.0123938946, 0.0110132769, -0.0229131877, 0.0123495627, 0.0121912351, -0.0111652715, 0.00555097032, -0.0387079641, -0.00800505, 0.0575046316, 0.000681600883, -0.0128308786, 0.0337174721, -0.0157187767, 0.0199239608, -0.0235338341, -0.0467383452, -0.0231411811, -0.00611145, 0.0210512541, -0.00309372367, 0.0282203332, -0.0264723953, 0.0215452369, -0.023191845, -0.000459150411, -0.0241544787, 0.00745406933, -0.000947591441, -0.0332614891, 0.0133628603, -0.0369093604, 0.0346041061, 0.0263204016, -0.0174287166, -0.000456379668, 0.00646293769, 0.0440277755, -0.00530714542, -0.000811429578, -0.0203292798, 0.031589549, 0.0232931748, -0.00860036258, 0.0292842966, 0.0158581045, -0.0155287832, 0.00398035906, -0.0153641226, 0.0108739482, -0.0260417443, -0.00720074493, 0.0290563051, -0.0288283117, -0.00474349875, -0.0168460701, -0.0532994457, -0.0329828337, -0.050588876, -0.0502595529, 0.0448130816, 0.016453417, 0.012235567, -0.00333754858, -0.000218888075, 0.00884102, 0.00781505648, -0.0292336307, -0.00138774258, 0.0125712212, 0.0123685617, -0.016440751, 0.0106522897, -0.0117035853, 0.012647219, 0.00563646713, -0.0234198365, 0.0222798772, 0.013071537, -0.0110512758, -0.00682075834, -0.0237618256, -0.0191639885, -0.0173780508, -0.015984768, 0.0308042429, -0.00529764593, -0.00103150518, 0.00411968725, 0.0108296163, -0.00307155796, 0.0157567747, -0.00532931136, 0.0269030482, -0.00373653439, -0.0426851548, 0.0104559632, 0.004854328, -0.0200252905, -0.0224445388, 0.0106269568, 0.0511208549, 0.0321468599, -0.0312348939, -0.00468650088, 0.0562886745, -0.0187966675, 0.0280936714, -0.00205192738, 0.0172133911, -0.00938566774, -0.0111652715, 0.0338694677, 0.00511715235, 0.0643443912, -0.0337174721, -0.0102849696, 0.00394552713, 0.0657123402, 0.00884735305, 0.00146532315, 0.00946799852, 0.0347814336, 0.00308897393, 0.0196073055, 0.0140721686, -0.0175173804, -0.00612411648, 0.00886635296, -0.00548763899, 0.0308295749, -0.0192019865, -7.30286629e-05, 0.0221785475, 0.0282203332, 0.0167954061, -0.0210005902, -0.0087713562, -0.0330081657, -0.00661176583, 0.0229385216, -0.0196579713, -0.0313362218, -0.00791005325, 0.0121532362, -0.0371373519, 0.0154781183, -0.00406268938, -0.0270550419, 0.00661176583, -0.0220518857, -0.0373906754, -0.00886635296, -0.0456743836, 0.00871435832, 0.0269537121, -0.038859956, 0.00796705112, -0.0132868625, 0.00883468706, 0.0200252905, 0.00305414177, -0.025332436, 0.0407598913, 0.0255604275, -0.0133501943, -0.0218872242, 0.0205572713, -0.0108169504, -0.0280683395, 0.0108929472, 0.0173780508, 0.0265990589, 0.0137301804, 0.00597845484, -0.0183786824, 0.0310828984, 5.39303837e-05, -0.0281950012, -0.0155034512, 0.00374920061, 0.0172387231, -0.0107789515, 0.0325775146, 0.00724507682, -0.00600378728, -0.00884735305, -0.0141354995, -0.0217605624, -0.019366648, -0.0188346673, 0.00589612452, -0.00694742054, -0.0225712, -0.00180335285, -0.00993664842, -0.0157187767, 0.0109436121, -0.000466671, 0.00882835407, -0.0173400529, -0.0211525839, 0.0175047126, 0.0145661505, -0.0246611275, 0.00488282694, 0.0298416093, -0.0161747597, -0.0234198365, 0.0158327725, 0.00275173597, -0.0137935113, -0.0307282452, -0.032045532, 0.00155636156, 0.00601328723, -0.0529447906, -0.0434451289, 0.0182393547, 0.0124128936, -0.00142257463, 0.0481316298, 0.0082963733, 0.0192653183, 0.0119569097, -0.0411905423, -0.00777705805, 0.0150981322, -0.0310828984, 0.010962612, 0.00080588815, -0.00156823616, 0.0243824702, 0.0115515906, -0.00602278672, 0.0194933098, -0.00513298484, 0.0251044445, -0.0112159364, -0.00852436479, -0.000423526682, -0.00384736387, 0.0283723287, -0.0234958343, -0.018138025, -0.0260924101, -0.0258390848, -0.0372133479, -0.0312855579, 0.0146421483, -0.0165040828, 0.0297909454, 0.00421468401, -0.0195819736, 0.00917667523, -0.0254337657, -0.0135401869, -0.0085180318, -0.0325521789, 0.0117859161, 0.0263457336, -0.000814596133, 0.00784038939, -0.0137428464, -0.0069157551, -0.00345471106, 0.0191893205, -0.0042558494, 0.0338188037, -0.00145107356, -0.0593285672, 0.0202406161, 0.00961999223, -0.00410068827, 0.00836603716, 0.0103356345, -0.00158961036, 0.0213425774, -0.0101519739, -0.00139961706, -0.0042558494, -0.0372386798, -0.0102533037, 0.0297656134, -0.00515198428, 0.0216718987, -0.0507155359, -0.0180746932, 0.0133375274, -0.0394679345, 0.00179385312, -0.0228751898, -0.00239074859, -0.0271817036, 0.0165800788, 0.00810638, -0.0466623493, 0.0183153506, -0.0234958343, 0.028676318, -0.0588725805, 0.0347307697, 0.0101899728, 0.0231031813, 0.00646927115, -0.0231285151, 0.0104559632, -0.00883468706, 0.00515198428, 0.0208232626, -0.0597845502, 0.0193539821, 0.0172260571, 0.00370170223, -0.0141988304, -0.0409372188, -0.0122229, 0.0241291448, -0.0258390848, 0.0135275209, 0.00293856254, -0.027840348, 0.0122862319, 0.00307789096, 0.0023606664, 0.0217858944, -0.0089866817, -0.0184546802, -0.00328055047, -0.0249777827, -0.0239898171, -0.00660543283, -0.0102533037, -0.00129907904, -0.000680413388, 0.00448384136, -0.0136795156, 0.00672576204, 0.0123558957, -0.00725774281, 0.0137175145, -0.0255477615, 0.0177073721, -0.037922658, -0.00336604752, -0.00619378081, 0.0301455986, -0.0024873286, 0.00929700397, -0.0105826249, 0.00209150929, -0.0367067, 0.0134008592, 0.0134008592, -0.000571958895, -0.00315705477, 0.00658010039, -0.0129068764, -0.00348637649, -0.010107642, -0.00282931654, -0.0267510526, -0.0268270504, -0.0323748551, 0.00820770953, 0.0374160074, -0.00349904271, 0.0193159822, -0.0352374204, -0.0271817036, 0.00364787085, -0.0170993954, -0.032501515, -0.00115262589, -0.000601645384, -0.0191386547, -0.00212317472, -0.028676318, 0.0353387482, -0.0326281786, -0.00598795479, 0.00599428779, 0.00299872714, 0.0240151491, 0.0206966, -0.0246737935, -0.0103609664, -0.0173527189, -0.00872702431, -0.00308739068, -0.0322228596, -0.0289296415, 0.00484799501, 0.0067004296, -0.0170360636, 0.0339201316, 0.0213172454, -0.00946799852, -0.0130335381, -0.00432868, 0.0170867275, -0.00558580225, 0.00519948266, 0.0230651833, -0.000797575922, -0.031209562, 0.00825204141, -0.00972132199, -0.0345534422, 0.0295882858, -0.00195059762, 0.0265990589, 0.0102216378, -0.0119189117, 0.0212539136, -0.0159467682, 0.0137428464, -0.00887901895, -0.0104052983, -0.0162127595, 0.0244078021, -0.0217478964, 0.0164154191, 0.033362817, -0.0254084338, -0.0129828732, -0.00690308912, 0.0180493612, 0.0105192941, 0.0180113614, -0.0396452621, -0.0233058408, -0.00565229962, -0.00392969418, 0.0123938946, -0.0440024436, 0.0162254255, 0.0243571382, -0.00701075187, 0.0154654523, 0.00567446556, 0.047017, -0.00233058422, 0.0190499928, -0.00589929102, -0.0117415842, 0.00880302116, 0.0227231961, 0.0394172706, -0.0175173804, -0.0148321418, -0.0115452576, 0.00163552538, 0.0328308381, -0.0244078021, 0.00316180475, -0.0256364252, -0.0481316298, -0.0176187102, -0.027409697, 0.0267763846, -0.0164914168, -0.0198859628, -0.00865736, 0.0206966, -0.0309055727, 0.0290309712, 0.0521848202, 0.0236984938, 0.0409118831, -0.00159277697, 0.00623494573, -0.0183660164, 0.00965799112, 0.00893601682, -0.0132615305, -0.00626661163, 0.00197909656, 0.0107219536, 0.0038821958, 0.00493349181, -0.010544627, 0.0115325917, -0.0212919135, -0.0302722622, 0.0142368292, 0.0116782533, 0.0107219536, 0.0350854248, -0.0199239608, -0.0353640802, 0.0241038129, -0.0131222019, -0.00710574817, -0.00979732, 0.00819504354, 0.0199872926, 0.00864469353, -0.00174952135, 0.0321721956, 0.000139625263, 0.00187301706, -0.0299936049, 0.0136161847, 0.00585179264, 0.00841670204, -0.0177327059, 0.0110829407, -0.0104179643, 0.00795438513, 0.00627927762, 0.0198606309, -0.0108549492, -0.00520581566, 0.0124382265, 0.00904368, -0.0431411378, -0.00854336377, 0.0134135252, 0.0152754588, 0.00171310606, 0.0085180318, -0.00365420384, 0.0191639885, 0.011374264, 0.0361240543, -0.00154052873, -0.0305762514, 0.0315642171, 0.0106966216, 0.000216315253, 0.000616290665, -0.000454796391, 0.00987965055, -0.0194806438, -0.00488599343, -0.00714374706, 0.0416211933, 0.0131475348, -0.00159277697, 0.0430904739, -0.00716274651, 0.0178847, -0.0299936049, -0.0284736585, -0.00903101359, -0.00518681621, -0.000104991072, -0.0160860978, -0.0353134163, 0.0298162773, 0.0134388572, 0.0207599308, -0.0127358828, 0.00224508718, -0.0103926323, 0.0258897506, 0.0238758214, 0.0155034512, -0.0263710655, 0.0135148549, -0.0221405495, 0.00133866095, -0.00517415, -0.00587079208, 0.0176820401, 0.0482329577, 0.0443570949, 0.025281772, -0.0143001601, -0.0103229675, -0.0132488646, -0.031640213, -0.0440784395, -0.0114692608, 0.0114945928, -0.0414438657, -0.0115199257, 0.0198606309, 0.0167320743, 0.012647219, 0.0269030482, -0.00669409614, 0.00885368604, 0.0155034512, -0.00520898215, 0.00950599648, 0.00887268595, -0.025294438, 0.0111652715, -0.0138821751, 0.00784038939, 0.00182076881, 0.0138188442, -0.00955666136, -0.00169727323, -0.00483216206, -0.0280936714, -0.0253957678, -0.0215579029, 0.00177485379, -0.00894235, -0.00663076527, -0.0221152175, -0.033362817, 0.00534514384, -0.0354400799, -0.0170740616, -0.00376819982, -0.0192399845, -0.00112966832, 0.00477199769, 0.0167447403, -0.0364787094, -0.0474983193, 0.0110892737, -0.00984798465, -7.92628198e-05, -0.0386572964, 0.00689042266, 0.0428878143, 0.0239644852, 0.000752056716, -0.00943, 0.0197593011, -0.00145740667, -0.0268523823, -0.0324001871, -0.0286256522, 0.0135528538, 0.0366813689, 0.00242241425, 0.0128942104, 0.0465356857, 0.00677642692, 0.0319695361, -0.011817582, -0.00571246445, -0.0192779843, 0.00066616392, 0.0242051426, 0.00650410308, 0.00626344467, 0.0117795831, -0.0165420808, 0.0087016914, -0.00985431764, -0.00872702431, -0.00841036905, 0.0389106236, -0.00996831339, 0.00939200073, 0.00894868281, -0.0200379565, 0.0498542339, 0.0571499765, 0.0174287166, -0.0375933349, 0.0158201065, -0.0351867527, -0.0102533037, 0.0259657465, -0.0365293734, 0.0310828984, 0.00509498641, -0.00355604081, 0.00728940871, 0.0402025767, 0.000972132257, 0.00174477149, 0.0144014899, -0.0082330415, 0.00303197606, -0.00239074859, -0.00734007359, 0.00864469353, -0.005481306, -0.0121089043, 0.0527421311, 0.0047244993, -0.0306522474, -0.0310322344, -0.00081855437, 0.011367931, -0.0108549492, 0.00208359282, 0.0197466332, 0.00712474762, -0.00567763206, -0.00759339798, 0.0110069439, -0.0203292798, 0.00096421584, 0.0110322759, 0.00877768919, -0.00793538522, -0.0213805754, -0.0202152841, 6.61018275e-05, 0.000604416069, -0.0166940764, -0.0157947745, -0.0345534422, 0.00739073846, -0.0194933098, -0.0258264188, 0.0157947745, -0.0254970975, -0.0155921141, 0.0065737674, -0.00521531515, 0.0138188442, 0.0231411811, 0.028270999, 0.0128372125, -0.00105525425, -0.0157314427, 0.00324255181, 0.016060764, 0.0233311746, -0.0169220679, -0.0205319393, 0.00331854913, -0.0167700723, -0.00269790436, 0.0377959944, 0.0454463921, 0.0148068089, 0.0112856, 0.00105050451, 0.00012052698, -0.00756806554, -0.0123558957, -0.0199366268, -0.0004694417, 0.0244711339, 0.0262697358, -0.0165420808, 0.0262697358, -0.0357187353, -0.0244078021, -0.0248004552, 0.00305255852, 0.0187460035, 0.0121342372, -0.0247877892, 0.0289043095, 0.0101899728, -0.0233565066, -0.0165547468, -0.0127295488, 0.0068270918, 0.00785938837, 0.0075490661, 0.000718016236, -0.0163394213, 0.0289043095, 0.0588219166, -0.0188979972, 0.00376186683, -0.00822037552, 0.0125838881, 0.00790372, -0.00374603411, 0.0129955402, 0.0241544787, -0.00197434681, 0.00832803827, -0.0107662855, 0.00506965397, 0.00592779, 0.0147941429, 0.0181633569, 0.0441037714, -0.00914500933, 0.010538293, 0.0183660164, -0.00940466672, 0.0279923417, -0.0057029645, -0.0140848346, -0.00041877685, -0.0170487296, 0.0305002537, -0.0168967359, 0.00315863825, 0.0104116313, 0.0156427789, -0.0253831018, 0.0115832565, -0.0119695766, 0.0307535771, 0.0390879475, 0.0107599525, 0.0201646201, -0.00940466672, 0.0278150141, -0.016453417, 0.00768839428, 0.0145028196, 0.0016751074, -0.0198986288, -0.0418998487, -0.0174033828, 0.0169474, 0.0137428464, -0.0350854248, -0.0110006109, -0.00371436845, 0.0447624139, -0.0183533505, 0.0115325917, -0.00810638, 0.0135528538, -0.0376946665, 0.00566179957, -0.0192653183, -0.0190373249, 0.00274856924, 0.0192019865, 0.000828845659, -0.00649777, 0.000329717499, -0.0211652499, -0.025345102, 0.0463583581, 0.0252437722, -0.00644393871, 0.00783405546, 0.064547047, 0.00887268595, -0.0338188037, 0.000178514514, -0.0108422823, -0.0331854932, -0.0321215279, 0.012254566, 0.0103166346, 0.0167067423, -0.0279923417, 0.00274856924, 0.0195439737, 0.00803038199, -0.0230651833, 0.0169094019, 0.00442684302, 0.0262444038, -0.0234325044, 0.0094553316, -0.0309562366, 0.00266940542, -0.00377453305, 0.0276376884, -0.00896768272, 0.00777705805, -0.0226471983, 0.0129005434, -0.00187143369, -0.00471183332, 0.0111399386, 0.00711208163, 0.0247244574, -0.0528434627, -0.00383469765, -0.00671309559, 0.00827104, 0.0195059758, -0.00696008699, -0.0100949761, 0.0021912558, -0.0103039686, -0.00982898567, -0.0028008176, -0.00257282564, 0.00248574535, -0.0102279708, -0.0304242559, -0.0197339673, 0.013071537, 0.00102042221, 0.0249777827, -0.00860669557, -2.52582195e-05, -0.00671942858, -0.0181886889, 0.00979732, 0.00601012073, -0.0270297099, -0.00796071813, 0.00433501322, -0.02953762, -0.00458200462, 0.00626977812, -0.00931600388, 0.0396199301, 0.0110449418, 0.0154527863, 0.0240404829, 0.0199112948, -0.0139075071, -0.0211652499, -0.00702341786, 0.000455983856, 0.00212950795, 0.00241608103, 0.0111082736, -0.0169474, -0.0121089043, -0.000642018917, -0.0287776478, -0.00374286738, -0.00120724889, -0.00744140334, 0.0278910119, 0.00633944198, -0.00119695766, -0.0274603609, 0.00617478136, 0.00198701303, 0.0360480584, 0.0280176736, -0.00803038199, -0.00430018129, 0.0164154191, 0.00198859628, -0.0415705293, -0.00718807895, 0.0397212617, 0.00630777655, -0.0214565732, 0.00712474762, 0.0101836398, 0.0236478299, 0.021507239, 0.0187333375, 0.0253831018, 0.0393159427, -0.0123875616, 0.00268523814, 0.00203292794, 0.0152881257, -0.0103103016, 0.0201012883, -0.00202659494, 0.0107789515, -0.0109056141, 0.00296864496, -0.00526598, 0.0127675477, 0.0210132562, -0.00109325291, -0.0188726652, 0.0306269154, 0.033337485, -0.0321975276, -0.0276123565, 0.0118872458, 0.000550188823, 0.0140595017, -0.0211779159, -0.00345471106, 0.0211652499, 0.0149588035, -0.00118824956, 0.013945506, 0.0143128261, 0.0173653848, -0.00713741407, -0.0115009258, -0.00702975085, -0.00286098197, -0.00649143662, -0.00490499288, -0.00579479476, 0.0152627928, 0.0346547738, 0.019429978, 0.0202912819, 0.00442684302, -0.00259499135, -0.0121975681, -0.00866369344, 0.00526281353, 0.0136541836, 0.0180873591, -0.00153815385, -0.000857344654, -0.0259404145, 0.0132995294, -0.000150906111, 0.00311272312, 0.0110639418, -0.00506648747, 0.0310828984, -0.0253577679, -0.0199492928, 0.0129258754, 0.0121152373, -0.0254717655, 0.00727040926, 0.00578846177, 0.0176947061, -0.00029072928, -0.0100316452, 0.00663076527, -0.000979256933, -0.011817582, -0.0186193399, -0.00994931441, 0.00614944892, -0.00144394883, -0.0102469707, 0.0118555799, 0.000782534771, 0.00207884307, -0.0116212554, -0.0393919386, 0.019379314, 0.0147941429, 0.000583437679, 0.00690308912, 0.00144315721, -0.0221025515, -0.0162507575, -0.0110449418, -0.0172893871, -0.00401835749, 0.000788076257, 0.0131728668, 0.0237238258, 0.0165040828, -0.00593729, -0.00864469353, -0.0119125778, 0.0185180102, 0.0141734984, -0.0101963058, -0.0196579713, 0.0251677763, -0.00425268291, 0.0205572713, 0.0138441762, 0.00202817819, 0.00537047628, 0.0225838665, -0.00267257192, -0.00229416881, -0.0047244993, 0.0239011534, -0.00012062594, 0.00339771295, 0.0235085, 0.00872069132, -0.0200379565, -0.0143128261, 0.00455667218, -0.00339771295, -0.0313362218, -0.00638694037, -0.00573463039, 0.00553830387, 0.000231950122, -0.00624444569, -0.01393284, 0.00982265174, 0.00316972099, -0.0128878774, -0.0241291448, -0.0107852845, -0.00603545317, 0.0232931748, 0.0190246589, 0.0233438406, 0.00979732, -0.0105129611, -0.0121722352, -0.0161367618, -0.0190373249, -0.0374160074, 0.0142494952, 0.00949333049, -0.0141228335, -0.0248257872, 0.00750473421, 0.0165040828, -0.0191893205, 0.0264723953, 0.00169727323, 0.00842303503, 0.0158707704, -0.0020075955, 0.00963899214, 0.00430334779, 0.00720074493, 0.0058232937, 0.0177200399, 0.00367953628, 0.00121754024, 0.0227231961, -0.00534514384, -0.00833437126, 0.0067004296, 0.0134261912, 0.00191734883, 0.0209499244, -0.00886635296, 0.00164977496, -0.00618744735, -0.00117558334, -0.00887268595, -0.0305762514, -0.00589929102, -0.0150981322, -0.00431284728, 0.0225332025, 0.0128752105, 0.00140911678, 0.00188726652, -0.0224192068, -0.00155398669, 0.00199017953, -0.0131348679, -0.0125712212, 0.0175933763, 0.0128182126, 0.0148321418, 0.0477009788, 0.00779605703, 0.000432234694, -0.0154021215, -0.00153815385, 0.0286003202, 0.00614311593, -0.030778911, -0.0195313077, 0.00434451271, -0.00287206494, -0.0135275209, -0.022811858, -0.0080493819, 0.0345787741, -0.00252216076, 0.0135781858, -0.000150807158, 0.00507915346, -0.0237111598, 0.0172007252, 0.00999364629, 0.0209499244, 0.0311842281, 0.0157821085, 0.0080493819, 0.0283723287, 0.00884102, -0.0157441087, -0.00251266104, -0.0173400529, 0.0217098985, 0.0263710655, 0.0350094251, 0.00960099325, 0.00619061431, -0.00127532985, 0.0236224961, -0.0216592327, 0.0317415409, 0.000337831792, 0.0120709063, 0.0401772447, -0.00752373366, -0.00234325044, 0.0263204016, 0.00260924082, -0.0207472648, 0.00320297, -0.00958832726, -0.0044775079, 0.0138821751, -0.0255730953, -0.0172260571, 0.00195059762, 0.0140468357, -0.0299682729, -0.00558896875, 0.00677642692, 0.0112222694, -0.0119379107, 0.00542430812, 0.00559530174, 0.0106966216, -0.00837237, 0.0105952919, 0.0319188684, 0.00813804474, -0.00662443228, -0.00859402865, 0.0186066739, -0.0270550419, -0.0195819736, 0.00698541943, 0.00190626585, -0.00477833068, 0.00179543637, 0.0224698707, -0.00640277332, 0.0092400061, -8.86635244e-05, 0.0089550158, -0.00473399926, -0.0273590311, 0.0131095359, -0.00584229315, -0.0233818386, -0.00816971064, 0.0140975006, 0.0337428041, 0.0120012416, 0.0224698707, -0.013071537, 0.00645660469, 0.0165800788, 0.00277073518, 0.0092020072, -0.00939200073, -0.00217542285, -0.0148574738, 0.00182076881, 0.00629194407, 0.000868427567, 0.00309214042, -0.018581342, 0.032932166, 0.0342241228, 0.00508865295, 0.00925267208, -0.0152121279, -0.00671942858, 0.0134388572, 0.00254907645, 0.00125791377, 0.00901201461, -0.000177623922, 0.0244204681, -0.0192906503, 0.0124825584, -0.01393284, -0.0190753248, -0.0211272519, 0.022368541, -0.0143761579, 0.00811904576, 0.00404369, -0.000196722205, 0.00468333438, -0.00593095645, 0.0306775812, 0.000114787603, -0.025307104, -0.00648510363, -0.00965799112, 0.00646293769, 0.0114819268, -0.0255477615, 0.0271310396, -0.0157187767, 0.0080493819, -0.0047276658, 0.000564438349, -0.0107789515, 0.0216085687, -0.0106649557, 0.0137555134, -0.0104749622, -0.0094869975, -0.000136062896, 0.000131708875, 0.0121089043, 0.00236224965, -0.00884735305, 0.0126915509, 0.0259024166, 0.0238884874, 0.0259404145, -0.00221658824, 0.00418301858, 0.00437617814, -0.0141101666, -0.00866369344, 0.00680175936, -0.00379353226, -0.000364945416, 0.00960099325, -0.0131982, -0.00180335285, -0.000632519252, 0.00238916534, -0.00958199427, 0.00187935017, 0.0157567747, 0.00392652769, 0.0172007252, 0.00224033743, -0.0038790293, -0.00573463039, 0.0135655198, 0.0140468357, -0.011798582, 0.00362570491, 0.00213267445, -0.00130937027, 0.009702323, 0.00592779, 0.00523748109, -0.00188409991, 0.0200126246, 0.0101773059, 0.00589612452, -0.000658247503, 0.00307155796, -0.00289581413, 0.0132741965, 0.00695375353, 0.0225078687, 0.00384736387, -0.00996831339, -0.000733453198, -0.0114882598, 0.0154021215, -0.0162000936, 0.00680175936, 0.00355920731, -0.00492715882, 0.0171120614, 0.0208992604, -0.00505382102, -0.00671309559, -0.0229385216, -0.000342779531, -0.0116149224, -0.0128118796, -0.0137048485, -0.0306522474, -0.00838503614, 0.0205192734, -0.0117162522, -0.00960099325, -0.0207092669, -0.0141481655, 0.0229005218, 0.0150601333, -0.0057029645, -0.0101963058, 0.00328371697, -0.0200759564, -0.0111399386, -0.0271057077, 0.0019838463, 0.00989864953, 0.0122988978, 0.00194584776, 0.0196073055, 1.41134324e-05, -0.0189233292, -0.00687142322, 0.00343571161, -0.0333121531, 0.00364787085, -0.00803038199, -0.0213552434, 0.00890435092, -0.00303514255, -0.0150981322, 0.0169220679, -0.00624761218, 0.00146769802, -0.0116592534, -0.0181506909, -0.00624444569, -0.00196009735, 0.00881568808, -0.0150981322, 0.0118745798, 0.00175902108, 0.00443317648, -0.0177327059, -0.0146168154, -0.00433184672, -0.0107662855, -0.00300664362, -0.0173527189, -0.0175933763, -0.0310322344, 0.00202342845, 0.00139882544, -0.00183976814, -0.00376503333, 0.00637110788, -0.00692842109, -0.00774539262, -0.0057029645, -0.0157567747, -0.0213552434, -0.0109436121, 0.00415135315, -0.00282931654, -0.0119695766, 0.0254464317, 0.00538630923, 0.0146294823, -0.00972132199, -0.0158581045, 0.0180113614, -0.0293349605, 0.0251804423, -0.0114249289, -0.0305762514, 0.0106966216, 0.00739707146, 0.0101583069, 0.00796071813, 0.00227675261, 0.00548763899, -0.0109436121, 0.00609245105, 0.0369600244, -0.00896135, 0.0244458, 0.00300981, -0.0132235317, -0.0186700057, -0.000748098537, 0.0104052983, -0.00872702431, 0.0218745582, -0.00726407627, 0.0208485946, 0.00519314921, -0.00134420244, 0.00706774974, 0.0174540486, -0.00178593677, 0.015630113, -0.0129702073, -0.0117099183, -0.0188093334, -0.000403537793, -0.0184673462, 0.00996831339, 0.00238283235, 0.00125633052, 0.0164914168, 0.00541480817, -0.00249682833, 0.0087650232, 0.0112919332, 0.00281981681, -0.00884102, 0.0231791791, 0.0149968024, 0.00675109448, -0.00416401913, -0.0353640802, -0.00407852232, 0.0130968699, -0.0238758214, 0.00508548645, -0.0025712424, -0.0124635585, -0.000327144662, 0.0163647532, -0.0197213013, -0.0112729343, -0.0364787094, -0.0201519523, 0.0114819268, 0.0252184402, 0.0168460701, 0.0306269154, -0.0193413142, -0.0117289182, 0.005699798, 0.012653552, -0.000944424886, -0.00306205824, -0.00138615922, -0.000583833491, -0.00415135315, -0.0013584519, 0.0254211, 0.0062032803, 0.00612728298, -1.14107288e-05, 0.0155287832, 0.00472133281, 0.00744773634, -0.0134388572, 0.00131491176, -0.000947591441, 0.00987965055, -0.00681442535, 0.0144901536, -0.0105066281, -0.0252311062, 0.000868427567, -2.80536933e-05, 0.00444900896, 9.17806e-05, 0.000624998705, -0.00279765087, 0.00277073518, -0.0147814769, 0.00436984515, 0.00639960682, -0.0111399386, 0.00215642364, 0.0112602683, -0.0244204681, -0.00234483369, -0.00541480817, 0.00263140677, -0.000226210745, 0.0158707704, 0.0196199715, 0.00406268938, -0.0043856781, -0.0137175145, -0.0195313077, 0.00805571489, -0.0085496977, 0.0321468599, 0.00403419044, -0.0196199715, 0.00287523144, -0.0194679778, 0.00189043302, 0.006326776, -0.00660543283, -0.0195566416, 0.00221658824, -0.0355920717, 0.0246231277, -0.0158327725, -0.00964532513, 0.00870802533, -0.0131855328, 0.00740340445, 0.0201266203, 0.0154654523, 0.00626977812, 0.0212159157, 0.016022766, -0.00831537228, 0.00848003291, 0.00410385476, 0.0237744916, 0.019011993, -0.00199017953, 0.0175173804, -0.00354970759, 0.00456933817, -0.018986661, 0.0206206031, 0.00619061431, 0.00616844837, -0.015186796, 0.00886635296, 0.0184040144, 0.00806838088, -0.0158201065, -0.0155287832, 0.00707408274, -0.00246832916, -0.0126978839, -0.000847053365, 0.00905001257, 0.00443950947, -0.0172767211, -0.0319188684, 0.00451867329, -0.0149208046, 0.00567446556, 0.0121975681, 0.0201266203, -0.00830903929, -0.0281190034, -0.0210132562, -0.0120329075, -1.88880022e-05, -0.0115959225, 0.0181760229, -0.0060766181, 0.00685875723, -0.00551613793, 0.0176820401, 0.0128688775, -0.0212032497, -0.00417035213, -0.00421151752, 0.0146041494, 0.00482899556, -0.0225585345, 0.0126155531, 0.0186826717, -0.015617447, -7.80258852e-05, -0.0172513891, -0.0186066739, 0.0085116988, 0.018935997, -0.0267257206, -0.000853386475, 0.0249524489, -0.0100569772, -0.0154401204, 0.00712474762, -0.00740340445, -0.00671309559, -0.0333121531, -0.00218333933, -0.0113235991, 0.00279448438, -0.010949946, -0.0277896821, 0.0145661505, 0.0271310396, -0.0203039479, 0.0109309461, -0.00933500286, 0.00806838088, -0.00402785745, -0.000797971734, 0.0115325917, 0.00937300175, -0.00206301035, -0.00791005325, -0.00115341751, 0.00483216206, 0.00294964551, 0.022330543, 0.0108106174, -0.0287776478, 0.00081855437, 0.00989864953, -0.00586129259, 0.0184420142, 0.00328371697, 0.00609245105, -0.0234958343, 0.0301455986, 0.0281190034, -0.00199176278, 0.014338159, 0.0129385423, 0.0074160709, 0.0203546118, -0.00904368, 0.00915134232, -0.0150094684, -0.00337238051, -0.0147308121, -0.00374603411, 0.0097339889, 0.0100189783, -0.00707408274, -0.012672551, 0.0142494952, 0.00849269889, -0.000240856054, 0.0269030482, 0.000397996337, 3.93345435e-05, 0.0169474, -0.0108486162, 0.0070487503, 0.012678884, -0.0112919332, 0.0208992604, 0.0117225852, 0.0193159822, 0.0208105966, -0.00140753353, 0.00482582906, -0.0193286482, -0.0115515906, 0.0208359286, 0.00882202107, 0.00186510058, 0.00129987067, 0.0111716045, 0.00168619025, 0.0166560765, 0.00683342479, -0.0114755938, 0.0123748947, 0.0144648207, 0.0210385881, 0.00750473421, -0.0234325044, 0.0156427789, -0.0111842705, 0.000739390496, 0.00720707793, -0.0163900871, 0.00015852564, 0.00287523144, -0.00737173902, 0.000742557051, -0.00121754024, 0.0279923417, 0.0200126246, 0.00446167542, -0.0065421015, 0.000366726599, 0.0299936049, 0.0082330415, 0.00480999611, -0.00496832421, 0.0005794795, -0.0209372584, 0.0136035187, 0.00622861274, 0.0327295065, 0.0162634235, -0.00183976814, 0.0151234642, -0.00500315614, -0.0132488646, -0.00982265174, -0.00106950384, -0.0328815021, 0.00345154456, -0.0217225645, -0.00214692391, -0.00559846824, -0.0277136844, 0.000708120759, -0.00846736692, 0.0145534845, -0.0131475348, 0.00305097527, -0.0145914834, -0.00906901248, -0.00798605, -0.0111209396, -0.00703608431, -0.0181126911, -0.000325759291, -0.00319347018, 0.00617161486, -0.0169094019, 0.0153894555, 0.0018049361, -0.000227002383, 0.0181886889, -0.00474983174, -0.00694742054, 0.00258232513, 0.00635844143, 0.0182140209, -0.0105129611, -0.00764406286, 0.00556363631, 0.0082963733, 0.013920174, 0.00103388, -0.00250632782, -0.00248574535, 0.0115072588, 0.0133628603, -0.0231665131, 0.00365103735, -0.0118872458, 0.00631410955, -0.00097688206, 0.00569029851, 0.0367320329, 0.00255540945, -0.00123337295, -0.023204511, 0.00406585587, 0.0269537121, -0.00186035084, 0.00780239049, 0.0116465874, -0.0279923417, 0.00320455316, 0.000545834831, 0.0165420808, 0.00166560768, -0.0158074405, -0.0108169504, -0.000405121071, 0.00159594347, 0.00438884459, -0.0205952711, 0.0054464736, 0.00568396552, -0.0150221344, -0.0251677763, -0.0233818386, 0.00140753353, 0.00495249126, 0.043394465, 0.0125775542, -0.000704954204, 0.00642493926, 0.00628877711, -0.0125142233, -0.0107599525, -0.00392336119, -0.00787838735, -0.0022973353, 0.0297149476, 0.0213805754, 0.0182773527, -0.00422101701, -0.0189106632, -0.00120249903, -0.0187586695, -0.0126218861, 0.0114565939, 0.0210892539, -0.0163267553, 0.00685242424, -0.00833437126, -0.0217225645, 0.00676376047, 0.00228150259, 0.00162285916, 0.0087713562, 0.00687142322, -0.0104306303, -0.0158454385, 0.00140832516, -0.0110829407, -0.0132361976, 0.00552880438, 0.000575917133, 0.0165927466, -0.00968332402, 0.0114755938, 0.00401835749, -0.0182013549, 0.0181000251, -0.00672576204, 0.00955666136, 0.00365737057, -0.010557293, -0.0157441087, 0.00581062771, -0.0215959027, -0.0108422823, 0.0235718321, -0.00398352556, 0.0245597977, 0.0125078904, -0.0105319601, 0.0029733947, -0.00295914523, 0.0147814769, 0.0137555134, 0.0038188647, -8.06481839e-05, -0.0147814769, 0.0364027098, -0.0322735235, -0.00777072459, 0.00494299177, 0.0177453719, 0.0169094019, 0.0178087018, -0.0145028196, 0.0114122629, 0.0069220881, -0.0129195424, -0.0203546118, -0.00201867847, 0.00517098373, 0.00609878404, 0.00142890774, -0.0107662855, 0.0219885539, -0.00239233184, -0.0138441762, 0.00253482698, 0.0132488646, 0.0123432297, -0.0132995294, -0.00175902108, 0.0128688775, 0.00785305537, 0.00202817819, -0.0329828337, 0.0115072588, -0.00193634816, -0.015174129, -0.0159341022, -0.0141988304, -0.0118872458, 0.0161747597, 0.00128087134, -0.0226471983, 0.0132235317, 0.0226218663, 0.00694108754, 0.0111969365, -0.00927800499, -0.0194933098, 0.00884102, -0.0085116988, 0.00136399339, -0.00753006665, 0.0215959027, -0.00572196394, -0.0105952919, 0.00468650088, -0.00848003291, -0.0065421015, 0.0269537121, 0.0167827383, -0.00166560768, -0.0046010036, 0.0152374608, 0.0135908518, 0.00107900344, -0.0156934448, -1.76634367e-05, 0.00329321669, 0.00604495266, 0.00770739373, -0.0169474, -0.00402785745, -0.00325205154, -0.000621040526, 0.00276756869, 0.0140215037, -0.00860036258, -0.00204559416, 0.0120392404, -0.00410068827, 0.00391069474, 0.0240784809, -0.00706141675, -0.0218492262, 0.0123938946, 0.00880302116, 0.0160860978, 0.0102026388, -0.00933500286, 0.0207979307, 0.00241133128, -0.01939198, 0.0175300464, 0.00798605, 0.0075427331, 0.0319948681, -0.0207599308, -0.0225458685, 0.00938566774, -0.0102723027, 0.00813804474, -0.00481632957, 0.0190626588, -0.00288631441, 0.0243444704, 0.00254907645, 0.0134388572, -0.0234958343, 0.0301709324, 0.00613678247, 0.0308042429, -0.0135908518, -0.00240341481, 0.0151361311, 0.0136035187, 0.00779605703, 0.0174920466, -0.00739073846, -0.0109436121, 0.00232900097, -0.025763087, -0.0276123565, 0.0143761579, -0.00835970417, 0.000401954516, 0.025737755, 0.00955032837, -0.0239391532, -0.00770106073, 0.0119315777, -0.013945506, -0.025712423, 0.00511398539, 0.0012254566, 0.0087016914, 0.00515515078, 0.00301297661, 0.0122862319, -0.00793538522, 0.00494299177, 0.0124318935, 0.0229511876, 0.00420835102, 0.0170740616, 0.0170233976, 0.0212665796, -0.0042621824, -0.019417312, 0.032957498, -0.00381253171, 0.00471816631, 0.013084203, -0.0282963309, -0.000690308865, 0.022761194, -0.018973995, -0.0197719671, -0.0148954727, 0.00321405288, 0.00491449283, 0.0121785691, -0.00328055047, -0.00620644679, -0.0182393547, -0.0171373934, 0.0102469707, 0.00365737057, 0.00263615674, -0.00662443228, 0.0212159157, 0.00508548645, 0.0232805088, -0.00846736692, 0.000938091776, -0.0230651833, 0.00671309559, 0.022799192, 0.0146674803, 0.0107029546, 0.0112729343, -0.0135275209, -0.00354020786, -0.00968332402, -0.0235844981, -0.00423368346, 0.00805571489, -0.0277390182, -0.0106206238, 0.00609245105, 0.00142969936, -0.0131222019, 0.000326155103, -0.0115009258, 0.0389359556, 0.0145534845, -0.0212159157, -0.0152627928, -0.017302053, 0.0206839349, -0.00372386817, -0.0144014899, -0.00617478136, -0.000957091106, -0.00117558334, 0.02277386, 0.0233818386, -0.0102406377, -0.000929383736, -0.0113362651, -0.00891701784, -0.00353387487, -0.0232805088, 0.00748573476, -0.0351614207, -0.00406902237, 0.00448067486, -0.0204939414, -0.00739073846, 0.00412285421, 0.00373653439, 0.000826470728, -0.00536731, 0.0167320743, 0.00115658401, 0.0106712887, -0.0197086353, 0.00138853421, 0.00449334085, -0.0141481655, -0.00277548516, -0.00539580872, 0.0142241633, 0.0204559416, -0.0168080721, 0.00194268115, 0.0159214363, 0.00268682162, -0.00500948913, -0.0121152373, 0.00421151752, -0.0276123565, 0.000838345324, 0.00878402218, 0.00435401266, 0.0188346673, -0.00413868669, 0.0104876282, 0.00238758209, 0.00218017283, 0.0087333573, -0.00645660469, 0.00385686336, -0.0105129611, 0.015199462, -0.0144014899, -0.00917667523, -0.0100063123, 0.00928433798, 0.00120249903, 0.00237649912, -0.0119949086, -0.0102279708, -0.0180493612, 0.00837237, 0.00659276638, 0.0228498578, -0.00449017435, -0.00121595699, 0.00787205435, -0.0126282191, -0.0221405495, -0.0199112948, -0.00138299272, -0.00707408274, 0.00556680281, -0.00519314921, 0.0200632904, 0.00668776315, -0.0244458, -0.00281031709, -0.00516781723, 0.0183406845, -0.0195186418, 0.013945506, -0.0118365809, 0.00867635943, -0.0029100636, 0.0140341697, -0.0395439342, -0.013502189, 0.00705508329, 0.0182140209, 6.71037412e-07, 0.0128625445, -0.0155287832, 0.00204401091, -0.00688408967, 0.00489866, 0.0159467682, -0.0087016914, 0.0116782533, 0.0152247939, -0.00105683762, -0.000407693908, 0.00168302376, -0.00450284034, -0.0102279708, 0.0188726652, -0.0186700057, 0.000167233666, -0.00101329747, 0.00444267597, -0.0157947745, -0.0116529204, -0.00940466672, 0.00531664491, 0.000881093787, -0.0224065408, -0.011374264, 0.0337934718, -0.00519314921, 0.0132741965, 0.0106966216, -0.0237998236, -0.00203292794, -0.00582962669, -0.00282298331, 0.0026773219, -0.0169094019, -0.0247497894, 0.000443317636, 0.00282773329, -0.00075284834, 0.0127485488, -0.00695375353, -0.00711208163, -0.00512665184, 0.0161874276, 0.00659276638, 0.00649143662, -0.0281443372, -0.00386003, -0.0406332277, 0.00706774974, 0.000461129501, -0.000756014895, -0.00117241684, 0.00603861967, -0.0106586227, -0.0346801057, -0.00112096034, 0.00285306573, -0.0201139543, 0.0228245258, 0.00153102912, 0.0212919135, 0.0107346196, 0.0121849021, -0.0155794481, -0.0259657465, -0.0277896821, 0.00122624822, 0.00273906975, 0.0184420142, -0.028270999, -0.00201551197, 0.00069782947, -0.00362253841, 0.00788472, -0.00270740408, -0.0182900187, 0.00814437866, 0.00399619201, -0.0123305637, 0.0325521789, 0.00632994249, 0.0154147875, -0.0110132769, 0.0138695091, 0.00653576851, -0.0364027098, 0.0162887573, 0.000607978494, -0.00397085957, -0.0173147209, 0.00374920061, -0.00453133974, 0.021899892, -0.00808738, -0.00986698363, -0.0102659697, -0.0031665545, 0.0200252905, 0.0030335593, -0.0254464317, -0.0150601333, 0.0144394888, -0.0097403219, 0.0129575413, -0.000227991928, 0.0159087703, -0.0118872458, -0.019366648, 0.0144648207, -0.00275015272, -0.0101773059, 0.00281506707, 0.0159214363, -0.0165294148, -0.000991131528, 0.00113600143, -0.0013917007, 0.00397719257, 0.00810638, 0.00286889845, -0.0219885539, -0.00944899861, 0.00548447249, -0.00603228621, 0.0161747597, 0.0215832349, -0.00473716576, -0.0149588035, -0.0373146795, -0.0297656134, -0.0103483, -0.000380580284, 0.0275616907, -0.00845470093, 0.00540214218, 0.000669330475, -0.0217225645, -0.0165547468, -0.00358137325, -0.0122925648, 0.00540847518, 0.00339454645, 0.00450284034, -0.0368840285, 0.0004694417, 0.0158201065, -0.0182900187, -0.000192764011, -0.00999364629, 0.0171880573, -0.00113916805, -0.00760606397, -0.0210132562, -0.0100063123, 0.00773905916, -0.00429384783, -0.0170613956, -0.00597845484, 0.0255730953, -0.012640886, -0.00939200073, 0.0145534845, -0.00638377387, 0.0170233976, 0.00664343126, 0.0225585345, -0.00793538522, -0.00085655303, -0.0164154191, 0.0082647074, 0.00379669899, 0.00343571161, 0.029132301, 0.0216718987, -0.00901201461, -0.0163394213, 0.00330271642, 0.0246357936, -0.00407852232, -0.00922100712, 0.00302089308, -0.00242558075, -0.00907534547, -0.0019379314, 0.00767572829, 0.00404685689, 0.0167447403, -0.0115769235, 0.0033533813, 0.0243064724, 0.0186066739, 0.00840403605, -0.00150886329, -0.0318428725, -0.0114312619, 0.00175902108, 0.00482266257, -0.000361580955, -0.0126282191, -0.0158834383, 0.0213299114, -0.00235433341, -0.0239518192, -0.0117859161, -0.0201266203, 0.00542747462, 0.0273843631, -0.0163900871, 0.0124825584, 0.0201012883, 0.00727040926, -0.00366687, -0.00292114657, -0.000492003397, 0.0163014233, 0.0242684744, -0.013046205, 0.0181506909, 0.020253282, -0.00025174109, -0.0097403219, -0.0212792456, -0.00453767274, 0.00453450624, -0.0226851963, 0.0192273185, -0.0201139543, 0.00558263576, 0.0195819736, -0.0158201065, 0.0177833699, 0.00252532726, 0.0104876282, -0.0294616241, 0.0264470633, -0.0122039011, -0.00256174267, -0.00846103393, -0.00055414706, 0.037517339, -0.00600378728, -0.0136795156, -0.00209309254, -0.00161652605, 0.00192843168, 0.00298289442, 0.0179860294, 0.00179701974, 0.0060734516, -0.0310575664, -5.04669624e-05, 0.00348637649, 0.0247624572, -0.00340404618, -0.00509498641, -0.0198732968, -0.0146168154, 0.00951866247, -0.0230905153, 0.0153387906, -0.0154781183, -0.00488282694, -0.00624761218, -0.00761873042, 0.00844203401, -0.0139835048, 0.000677246833, 0.0145534845, 0.000835178769, 0.0117289182, 0.012647219, -0.00638377387, 0.00757439854, -0.0286256522, 0.0116719203, 0.00884102, 0.000843095127, -0.0288536455, 0.0011288767, 0.0145154856, -0.00549080549, 0.00934133586, -0.0182900187, 0.0232425109, -0.0175807104, -0.0137808453, -0.00961365923, -0.00508232, -0.0279670097, -0.0127232159, 0.0142748281, -0.00033506105, -0.0247244574, 0.00784672238, 0.00202976144, -0.00288314791, 0.00339454645, -0.0224318728, 0.00856236368, -0.0182773527, -0.0169600658, -0.00480366312, 0.00861936156, -0.0491195954, 0.0214692391, -0.00651676906, -0.00209467579, -0.00448067486, -0.00930333696, -0.0308802407, -0.0010441714, -0.00803038199, 0.00508232, -0.00100379775, -0.00414501969, 0.0166687425, 0.009708656, -0.00398035906, 0.0213299114, -0.0194806438, -0.00955032837, 0.00562380068, -0.00110671076, -0.00756806554, 0.037973322, 0.0144394888, 0.0136415167, -0.0201646201, -0.00718174549, 0.00261874055, -0.0399999171, 0.00396135962, -0.0175553784, 0.00613044947, -0.00645660469, -0.0147814769, 0.00585495913, 0.0222672112, -0.00450284034, 0.00827104, 0.0129385423, 0.0285496563, 0.00085655303, -0.00212000823, 0.0085180318, 0.00740340445, 0.000755619083, 0.0177580379, -0.0140595017, -0.016478749, -0.0280936714, 0.0143761579, 0.00750473421, 0.0255984273, -0.0127105499, 0.00239391532, -0.0224698707, 0.0183913484, -0.00188726652, 0.0187966675, 0.0131602008, -0.00779605703, -0.00222767121, 0.00308422418, 0.00128087134, -0.0230398513, 0.00159752672, 0.0358960629, 0.0238378234, -0.00798605, -0.0132741965, -0.0118492469, 0.00400252501, 0.0302975941, -0.00665609771, -0.00242874725, -0.0110702747, 0.017302053, 0.015174129, 0.00296389498, -0.00963265914, 0.00887901895, -0.00538630923, -0.0100696431, -0.0270803738, -0.00284039951, -0.00475299824, 0.00134657731, -0.00735273957, 0.00235433341, 0.0107599525, 0.00194901426, 0.0107599525, 0.00282614981, 0.00611145, 0.0124825584, -0.0104496302, 0.0212285817, 0.0159467682, -0.0124318935, -0.0241038129, -0.0228245258, -0.0449144095, 0.00320455316, -0.00414185319, 0.0256617572, 0.00130462041, 0.0312348939, -0.0021105085, 0.00924633909, 0.0144901536, -0.0059531224, -0.000126761137, -0.0207979307, 0.0190499928, -0.00969599, 0.0211272519, -0.0327295065, -0.00665609771, -0.0186066739, -0.0162634235, -0.00972765591, 0.0130082062, 0.00154369534, -0.0015603198, 0.0302722622, -0.00228150259, 0.00483216206, 0.000585416798, -0.0060734516, -0.00455667218, 0.0111019406, -0.0143001601, 0.0117225852, -0.0416718572, 0.00616528187, 0.00335971429, -0.0218492262, -0.0150854662, -0.0292336307, 0.000460337877, 0.000199196074, -0.0200759564, -0.0210765861, -0.00844203401, -0.00257757539, -0.0106649557, 0.00907534547, -0.026168406, 0.000833595463, 0.00709308218, 0.013071537, -0.0154274534, -0.013071537, -0.00326788425, -0.000980048673, 0.0186700057, -0.0424065, 0.013058871, 0.0145661505, 0.00298447767, -0.0109372791, 0.00433501322, -0.00870802533, 0.00808738, -0.0065991, 0.0300442688, 0.00505698752, -0.0202659499, -0.000327144662, -0.0113552641, -0.0058581261, 0.0104939621, 0.00834703818, 0.00131807837, 0.0165420808, -0.00622861274, 0.00773905916, -0.0051076524, 0.00956932735, 0.0166180786, -0.00583279366, 0.00210892526, -0.0175300464, -0.00687775668, 0.00971498899, -0.000929383736, -0.00712474762, -0.0197846331, 0.000405318977, -0.0113552641, -0.0138948411, 0.017302053, -0.0159087703, 0.00108454493, 0.00797338411, 0.0150474673, 0.0202406161, -0.00595945586, -0.013084203, 0.00498415669, 0.0179100316, -0.032906834, 0.00457567116, -0.00787838735, 0.025281772, 0.00765672885, -0.0235971641, -0.0140215037, 0.0255350955, 0.0152247939, 0.0111462716, -0.00479099713, -0.00778339105, 0.00173368864, -0.00732107414, 0.018568676, 0.00696008699, 0.00556363631, 0.00791638624, 0.00366370357, 0.0235465, 0.0202659499, -0.0155667821, 0.0131982, -0.0110956067, 0.0258644167, -0.0122862319, 0.00373653439, 0.00120249903, 0.0192399845, -0.0205192734, 0.0157061107, 0.0231665131, 0.0354400799, 0.0115072588, -0.00880935509, 0.0178593677, -0.00559530174, 0.0253957678, 0.00372703467, -0.00240816479, -0.000833595463, -0.0170867275, 0.00525964703, -0.0339961313, 0.0106586227, 0.0047244993, 0.0197466332, 0.00703608431, 0.0247877892, -0.0253831018, -0.0166307446, 0.00390119525, -0.00297972793, 0.0116212554, -0.000515356776, -0.0166940764, 0.00649777, -0.00799238402, -0.00417351909, -0.0335148126, 0.0206206031, -0.00879668817, -0.0201266203, -0.0106902877, 0.00480999611, -0.0149714695, 0.00583596, 0.0130335381, -0.0234451704, -0.00797338411, 0.00696642, 0.0122862319, -0.00493982527, -0.0159087703, 0.00605128566]
19 Nov, 2024
Set upper_bound() in C++ STL 19 Nov, 2024 In C++, the set upper_bound() is a built-in method used to find the first element in the set that is just greater than the given value. In this article, we will learn about set upper_bound() function in C++. Let’s take a quick look at a simple illustration of the function: C++ #include <bits/stdc++.h> using namespace std; int main() { set<int> s = {1, 3, 5, 6, 7}; // Finding upper bound of 3 cout << *s.upper_bound(3); return 0; } Output5Explanation: In the above code, we found the upper bound 5 which is just greater than 3 in the given set s. This article covers the syntax, usage, and common examples of set upper_bound() method in C++: Table of Content Syntax of set upper_bound()Examples of upper_bound()Find Upper Bound in Set of StringsFind Not Existing Upper BoundCheck if an Element Exists in the Setset upper_bound() in C++ – FAQsSyntax of set upper_bound()The set upper_bound() is the member method of std::set class defined inside <set> header file. s.upper_bound(k); Parametersk: Value whose upper bound is to be searched.Return ValueReturns an iterator to the first element that is just greater than the given value.If all the elements are less than or equal to the given value, returns iterator to the end.Examples of upper_bound()The following examples demonstrate the use of set upper_bound() function in different cases. Find Upper Bound in Set of Strings C++ #include <bits/stdc++.h> using namespace std; int main() { set<string> s = {"hello", "geeks", "welcome"}; // Finding upper bound of string "hello" cout << *s.upper_bound("hello"); return 0; } OutputwelcomeFind Not Existing Upper Bound C++ #include <bits/stdc++.h> using namespace std; int main() { set<int> s = {1, 5, 3, 7, 6}; // Finding upper bound of 7 in s auto it = s.upper_bound(7); if (it != s.end()) cout << *it; else cout << "Upper Bound Not Exists."; return 0; } OutputUpper Bound Not Exists.Explanation: In the above code, we are trying to find the upper bound of 7 and all the elements are less than or equal to the 7 in the set container. Hence the upper bound of 7 does not exist in the given set container. Check if an Element Exists in the Set C++ #include <bits/stdc++.h> using namespace std; int main() { set<int> s = {1, 5, 3, 7, 6}; // Finding upper bound of 7 in s auto it = --s.upper_bound(7); if (*it == 7) cout << "Exists."; else cout << "Not Exists."; return 0; } OutputExists.Explanation: As set is sorted, if the given value exists in the set, the set upper_bound() will return the iterator to the element next to the given element. This iterator can be decremented to point to the given element in the set. Set upper_bound() in C++ – FAQsHow set upper_bound() is different from std::upper_bound() algorithm?set upper_bound() is a member function that works directly on a set, taking advantage of the set’s internal tree structure for efficiency. std::upper_bound() is a generic algorithm that works on any sorted range (like vectors or arrays) and requires random-access iterators. Does set upper_bound() works with custom comparators?Unllike the std::upper_bound() algorithm, the set upper_bound does not take comparator as argument but insted, it uses the comparator defined for the set during its initialization. What is the time complexity of set upper_bound()?The time complexity of set upper_bound() is O(log n), where n is the number of elements in the given set container. Learn C++ Online – Master everything from basics to advanced concepts. Apply your knowledge with practical exercises and boost your skills. Take the Three 90 Challenge: finish 90% in 90 days for a 90% refund. Start now and level up your C++ programming!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum/Algorithm for Dynamic Time out timer Calculation/Difference between Round trip time (RTT) and Time to live (TTL)/Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms/Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm/Round Robin Scheduling Algorithm with Different Arrival Time/Selfish Round Robin CPU Scheduling/Find the order of execution of given N processes in Round Robin Scheduling/Calculate server loads using Round Robin Scheduling/set::lower_bound() Function in C++ STL/Implementation of lower_bound() and upper_bound() in List of Pairs in C++/Difference between std::set::lower_bound and std::lower_bound in C++/Difference between std::set vs std::vector in C++ STL/std::minmax() and std::minmax_element() in C++ STL/std::rotate vs std::rotate_copy in C++ STL/std::bitset::to_ullong and std::bitset::to_ulong in C++ STL/std::upper_bound and std::lower_bound for Vector in C++ STL/std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++/std::string::append vs std::string::push_back() vs Operator += in C++/Vector push_back() in C++ STL/vector :: cbegin() and vector :: cend() in C++ STL/unordered_multiset cend() function in C++ STL/unordered_multiset bucket() function in C++ STL/unordered_multiset emplace_hint() function in C++ STL/unordered_multiset end() function in C++ STL/unordered_multiset size() in C++ STL/unordered_multiset emplace() function in C++ STL/unordered_multiset find() function in C++STL/unordered_multiset erase() function in C++ STL/unordered_multiset clear() function in C++ STL/unordered_multiset swap() function in C++ STL/unordered_multiset bucket_size() function in C++ STL/unordered_multiset bucket_count() function in C++ STL/unordered_set bucket_count() function in C++ STL/unordered_set cbegin() function in C++ STL/array::cbegin() and array::cend() in C++ STL/array::rbegin() and array::rend() in C++ STL/multimap rbegin in C++ STL/vector rbegin() and rend() Functions in C++ STL/multiset rbegin() and rend() function in C++ STL/map rbegin() function in C++ STL/map upper_bound() function in C++ STL/Set upper_bound() in C++ STL
https://www.geeksforgeeks.org/set-upper_bound-function-in-c-stl?ref=asr8
PHP
Set upper_bound() in C++ STL
unordered_multiset clear() function in C++ STL, What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, jQWidgets jqxTreeMap width Property, Round Robin Scheduling Algorithm with Different Arrival Time, Difference between Flow and TypeScript, unordered_multiset emplace() function in C++ STL, jQWidgets jqxTree destroy() Method, unordered_set bucket_count() function in C++ STL, jQWidgets jqxTree collapseAll() Method, Find the order of execution of given N processes in Round Robin Scheduling, jQWidgets jqxScrollView buttonsOffset Property, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Vector push_back() in C++ STL, jQWidgets jqxListBox enableHover Property, Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm, std::rotate vs std::rotate_copy in C++ STL, Selfish Round Robin CPU Scheduling, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxSlider buttonsPosition Property, std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++, std::upper_bound and std::lower_bound for Vector in C++ STL, Difference between Round trip time (RTT) and Time to live (TTL), jQWidgets jqxSlider rtl Property, Difference between std::set::lower_bound and std::lower_bound in C++, jQWidgets jqxTooltip opacity Property, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, unordered_multiset erase() function in C++ STL, jQWidgets jqxToolBar height Property, PHP, std::minmax() and std::minmax_element() in C++ STL, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, map rbegin() function in C++ STL, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, map upper_bound() function in C++ STL, Node.js date-and-time Date.transform() Method, unordered_multiset size() in C++ STL, TypeScript Optional Parameters, jQWidgets jqxToolBar theme Property, Difference between std::set vs std::vector in C++ STL, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, Steps to Diagnose and Resolve a Slow Network, How to use Optional Chaining with Arrays and Functions in TypeScript ?, Calculate server loads using Round Robin Scheduling, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, jQWidgets jqxScrollView showButtons Property, Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms, jQWidgets jqxScrollView disabled Property, jQWidgets jqxSplitter destroy() Method, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, set::lower_bound() Function in C++ STL, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, jQWidgets jqxTree collapseItem() Method, std::string::append vs std::string::push_back() vs Operator += in C++, unordered_multiset swap() function in C++ STL, unordered_multiset cend() function in C++ STL, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), Set upper_bound() in C++ STL, jQWidgets jqxSortable opacity Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, multimap rbegin in C++ STL, vector :: cbegin() and vector :: cend() in C++ STL, jQWidgets jqxSlider height Property, jQWidgets jqxSwitchButton onLabel Property, unordered_multiset bucket_size() function in C++ STL, unordered_set cbegin() function in C++ STL, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, jQWidgets jqxToolBar tools Property, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTree width Property, Implementation of lower_bound() and upper_bound() in List of Pairs in C++, jQWidgets jqxTree clear() Method, TLS Handshake?, multiset rbegin() and rend() function in C++ STL, Algorithm for Dynamic Time out timer Calculation, Adhoc TCP, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, jQWidgets jqxTabs position Property, Differences between Wireless Adhoc Network and Wireless Sensor Network, jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, std::bitset::to_ullong and std::bitset::to_ulong in C++ STL, unordered_multiset emplace_hint() function in C++ STL, unordered_multiset bucket_count() function in C++ STL, unordered_multiset find() function in C++STL, unordered_multiset bucket() function in C++ STL, Impact of Three-way Handshake and Slow Start Algorithm, array::rbegin() and array::rend() in C++ STL, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, vector rbegin() and rend() Functions in C++ STL, array::cbegin() and array::cend() in C++ STL, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, unordered_multiset end() function in C++ STL, How to Sort an Array Having Optional Properties in TypeScript ?
GeeksforGeeks
[-0.0059334836, 0.0121750338, -0.00159568677, 0.0269557945, 0.0454140939, -0.0198959429, -0.0244399197, 0.0296257, -0.0147743421, 0.000189532933, -0.0326036736, 0.013323864, 0.0169693138, -0.020999847, -0.0179191846, 0.0132468473, 0.0164173618, 0.0210897, -0.00895959232, -0.0311917048, -0.0193568282, -0.0037064217, -0.0230279509, 0.0090687, -0.0388676897, 7.76683883e-05, -0.0388933606, 0.00630893931, 0.0174442492, 0.0150439, -0.00842689443, 0.0135805858, -0.00379306544, 0.00627684919, -0.0149027035, 0.009312585, 0.018509645, 0.00787494238, -0.0212950781, -0.0166997556, -0.00395351648, 0.00638916483, 0.0359410606, 0.0170848388, 0.00731657259, 0.0151594253, 0.0267247446, 0.0113471057, -0.0144919483, 0.029574357, -0.0134907337, 0.0046562925, 0.00737433508, 0.00542966696, 0.0434373356, 0.0223733094, 0.0269301217, 0.0234130323, -0.0254668072, -0.0268274341, 0.0187792033, -0.0460559, 0.01028171, -0.0358127, -0.0012354739, 0.0156471971, -0.0198189262, 0.0466720313, 0.00384761882, 0.0112636713, -0.0138886524, 0.05416831, 0.0297027174, 0.0169051345, -0.0144662764, -0.0138501441, -0.013991341, -0.0293689799, -0.0530900769, 0.0311917048, 0.00142480631, 0.0152107701, 0.0127077317, 0.00278222305, 0.0492392518, 0.00604259036, 0.00865152664, -0.0297027174, 0.0268274341, 0.022591522, -0.0140683576, -0.0403310023, -0.00304536289, -0.0087542152, -0.0253256112, 0.0353762694, 0.00953721721, 0.00284961262, -0.0355816483, 0.0279056653, 0.0442075022, -0.0168537889, 0.00205537933, -0.0336305611, 0.0397148691, 0.0151465889, 0.0322185904, 0.0314741, -0.0042230743, -0.0128938546, 0.0234515406, -0.0147101618, 0.0112508349, 0.049675677, -0.0281880591, 0.00849749334, 0.00912646204, -0.0416916274, 0.0398432314, 0.00662984187, 0.0176624637, 0.0254411362, 0.0441048145, -0.00854241941, -0.0528847, -0.00852316525, 0.00014310237, 0.0127077317, -0.00309028919, -0.0224888343, 0.0118220411, 0.0253256112, -0.0225401781, -0.00815733708, -0.0396635272, 0.0346061066, 0.0418456607, 0.0357356817, 0.00335342926, -0.0377381109, -0.0350682065, -0.0107053015, -0.0186123345, 0.0456964895, -0.0389960483, -0.0140811931, -0.00698283454, 0.0257106926, -0.0135164056, -0.000157141854, -0.0239136405, 0.00477823522, 0.0424361229, 0.00150824082, 0.0330401026, -0.01714902, 0.0162633285, -0.0131313223, -0.000530692225, 0.0012459032, 0.0275205821, -0.00128360931, 0.0191257782, 0.00470121903, -0.0132981921, 0.0627941638, 0.00186604692, 0.0112636713, -0.0317564942, 0.0209228303, 0.0125665348, -0.0133752087, 0.00620945962, -0.00231210119, -0.0277773049, -0.000542324909, 0.0404850356, -0.0056125815, 0.0504715145, 0.0121429432, 0.00912646204, -0.00700850645, 0.00563825341, 0.00501570338, 0.0238751322, -0.00450225966, 0.030909311, -0.00217411318, 0.0625374392, 0.00313361106, -0.0030116681, 0.0133623723, 0.0141967181, 0.0137089472, 0.0290609132, 0.0086001819, -0.0427185148, 0.00631214865, 0.0123354848, 0.028008353, 0.00425516488, -0.0146203097, -0.0209613387, 0.00289774779, 0.0497270226, -0.00434822636, 0.00972334, 0.00363582326, 0.00486487895, 0.0193054825, 0.017700972, 0.010949187, 0.0252229217, 0.00849749334, -0.00152027467, 0.0257620383, -0.0611511432, 0.0224374905, -0.029343307, -0.043308977, 0.0212308969, -0.0185353179, 0.0313714109, -0.0238751322, -0.0608944222, -0.0260187592, 0.0105705224, 0.0225016698, 0.0104357433, -0.0222834572, 0.00275655091, 0.0225401781, -0.0302161612, 0.00238590874, 0.0113021797, -0.0265963841, -0.0598161928, -0.0290609132, -0.0007260415, 0.0322442651, -0.00363582326, 0.0425901562, -0.0159552637, 0.0122520505, -0.000315687648, 0.0515497476, 0.00137185736, -0.017957693, -0.00826644339, -0.0183299407, 0.00824077148, 0.0214362741, 0.0229894426, 0.0298567507, -0.00511839194, 0.00438673468, -0.0224759988, -0.00477502635, 0.000440839562, -0.000712804263, 0.0012250446, 0.0425644815, 0.0188947283, 0.0190487616, 0.0102432016, 0.0131249046, 0.0492135771, -0.0142095545, -0.0251073968, -0.0440791436, 0.0112636713, -0.00183716579, 0.0158012304, -0.0192541387, 0.0143892597, 0.0161863118, -0.00291860662, 0.0297540631, -0.0141582098, -0.0266734, 0.00892108399, -0.0229637697, 0.0134008806, 0.00665551377, 0.0522942394, -0.0396121815, -0.0248635113, -0.0220780782, 0.0287528466, -0.0101405131, -0.0107887359, 0.0268274341, -0.00665551377, 0.0108785881, 0.040408019, 0.0523969308, -0.0147871785, -0.0388933606, -0.0410754979, -0.0160579514, -0.000627364032, -0.0383542441, -0.00373209384, 0.00953079853, 0.0116423359, -0.0127398223, 0.0220909156, 0.00770807359, 0.0141197015, -0.018509645, 0.00177138078, -0.0289838966, -0.0213720948, 0.00228642905, 0.0266220551, -0.0418199897, 0.0306782611, 0.0191899575, -0.032500986, -0.0153391305, -0.0103779808, 0.013760291, -0.00734866317, 0.0296770465, 0.0536548682, -0.0165842324, -0.00167831907, 0.0594567806, -0.0243243948, -0.0301648173, -0.00280949986, -0.0148385232, -0.0519605, 0.00911362562, -0.00593990181, -0.0451830439, -0.021782849, 0.0246196259, 0.00648864498, 0.00992871728, -0.00227680197, 0.0198959429, -0.0193183199, 0.00227840641, 0.0266734, 0.000122544574, 0.0121365255, -0.032295607, -0.00577624142, 0.0555546097, 0.000803860312, -0.00138629798, 0.0363774858, -0.0115075568, 0.0740385801, -0.0558113307, -0.0333738402, -0.0212308969, -0.0132725192, -0.0142994067, 0.0178036597, 0.00571206119, -0.0180090386, 0.0426158272, -0.0161863118, -0.01691797, -0.000934628, 0.00885690376, 0.00519540859, -0.0257748738, -0.0188690554, -0.0259160716, 0.0578651056, 0.0286244862, -0.0130286338, 0.0105641037, 0.0116230818, 0.0343493819, 0.00581154088, 0.00511839194, -0.0194466803, 0.0461585894, 0.04020264, -0.0130029619, 0.0210897, -0.00443487, -0.0259032343, 0.022681376, -0.0047461451, 0.0170591678, -0.0154418191, 0.0012595416, 0.002512665, -0.0338872857, -0.0050477935, -0.0125793703, -0.0568895638, -0.0308066215, -0.0389447063, -0.00503495708, 0.040613398, -0.00899810065, 0.0226171948, 0.00460815709, 0.00927407667, 0.00731657259, -0.00803539436, -0.051241681, -0.00208105147, 0.00951154437, 0.0070213424, -0.0109427692, -0.00661700591, 0.00153230852, 0.0230151135, 0.0244784281, -0.021115372, 0.0162248202, 0.0260444321, -0.0208458137, -0.00939601939, -0.0285217967, 0.000715211034, -0.0268531051, -0.023117803, 0.0118412953, -0.00410755, 0.0229252614, -0.00781718, -0.00212437334, -0.0204607323, 0.0189075638, -0.000473732041, 0.0275719259, 0.00926765893, -0.0322185904, 0.032732036, -0.0126050431, -0.00255438243, -0.0327577069, 0.00766314706, 0.0323983, 0.0156215243, -0.0485974476, 0.00343365478, 0.044926323, -0.0179191846, 0.0273665488, 0.00688014552, 0.0126435515, -0.0133880442, -0.0239521489, 0.0439507812, 0.0154803274, 0.0569922514, -0.0282394029, 0.0197932553, -0.0153006222, 0.0804566294, 0.00997364428, -0.0118669672, 0.0227583926, 0.0212694053, -0.0199729595, 0.0434630103, 0.0105063422, -0.021115372, -0.00339193735, -0.00737433508, -0.00546496641, 0.0213592574, -0.0450546853, 0.00244206656, 0.0107502276, 0.0335535444, 0.0131056504, -0.00539115863, -0.0229252614, -0.0103073819, -0.0027742004, 0.0362234525, -0.0208329782, -0.0271098278, -0.0155059993, 0.0172132, -0.030241834, -0.00923556834, -0.0319105275, -0.0369166024, 0.0231819823, -0.0497013517, -0.0197290741, -0.0254411362, -0.0468774103, 0.00507988362, 0.0397405438, -0.023926476, -0.00900451932, -0.0017408951, 0.0161092952, 0.00941527355, -0.0061709513, -0.0321415775, 0.0466206893, 0.0342210233, -0.0223604739, -0.025749201, 0.00476539927, -0.0175597742, -0.0296257, 0.0139014879, 0.00731657259, 0.00718821166, 0.0278543215, -0.00613886118, 0.000161052842, 0.0213592574, -0.0148770316, -0.029317636, -0.0265193675, 0.013413717, 0.00718179392, -0.0185866617, 0.0282650758, -0.00331812981, -0.00700850645, 0.00183877023, -0.0074770241, -0.025376955, -0.0252229217, -0.0126563869, -0.00968483184, -0.00958856102, -0.0108721703, -0.0144791128, -0.00763105694, -0.00925482251, 0.0109812776, -0.0142095545, 0.0246581342, -0.0169436429, 0.00477181748, 0.017174691, 0.0012009769, -0.0478016101, 0.00116808445, 0.0185609907, 0.0119568203, -0.0111417286, 0.0283164196, 0.0113791963, 0.01189264, -0.0151594253, -0.0297027174, 0.00443487, 0.01445344, -0.0353506, -0.0184069574, 0.0278543215, 0.021667324, -0.00786852464, 0.0430265814, 0.00926765893, 0.0182529241, -0.00283677643, -0.0459788851, -0.00622871378, 0.0180732179, -0.0331684649, 0.0351965651, 0.011295761, -0.00647580856, 0.0440277979, 0.0140170129, -0.00400807, 0.023143474, 0.00330208475, 0.0124895182, -0.0185353179, -0.00903019123, 0.0110775474, -0.0170720033, 0.010326636, -0.0312943943, -0.0107502276, -0.0119118942, -0.0367882401, -0.0316538028, -0.0479299687, -0.00653357105, -0.0164045263, 0.0349655151, 0.0106924651, -0.0133752087, -0.000255317893, -0.00922273286, -0.00984528288, 0.00879272353, -0.0221422594, -0.00667476794, 0.0535521768, -0.00695716217, 0.00893392, -0.00313040195, -0.0109876953, -0.0185609907, 0.0103458902, 0.000147213941, 0.0212180614, -0.0057858685, -0.060689047, 0.0133752087, 0.00390859, -0.00750269601, 0.00930616725, -0.000674296, -0.0101726037, 0.00902377348, 0.000180908683, -0.000281992921, -0.00414284877, -0.0137859629, -0.00620945962, 0.0212052241, -0.00684163719, 0.0171233471, -0.02867583, -0.0258903988, 0.0057858685, -0.0376610942, 0.0162890013, -0.0206147637, 0.00733582675, -0.00438031647, -0.00386045477, 0.0129901255, -0.0361721106, 0.0255309884, 0.0010084355, 0.0251972489, -0.0493162684, 0.043360319, 0.00413322169, 0.0491622351, -0.000446054211, 0.0001424004, 0.0203965511, 0.0121878702, 0.0157498848, 0.0135035692, -0.0659261718, 0.0160066076, 0.0070855231, 0.0188562199, -0.0112379994, -0.0571976267, -0.00217250874, 0.0421280563, 0.00551631069, -0.0133623723, 0.00859376416, -0.0220652428, 0.0152107701, 0.00144004915, -0.0102432016, 0.00849749334, -0.000486167, -0.0147358347, -0.00263781706, -0.00301648164, -0.0430009104, -0.0194595158, 0.0127398223, -0.00492585031, 0.0103779808, -0.011732189, -0.0215132907, 0.015120917, 0.0104164891, -0.0196135491, 0.0183556117, -0.0275975987, 0.00816375483, -0.0366342068, -0.0151594253, 0.000149219573, 0.0111866547, -0.00243404415, 0.00864510797, 0.00394709827, 0.0258262176, 0.000969124958, 0.0346061066, -0.0047204732, -0.011802787, 0.00420061126, 0.0133367, -0.0138244713, -0.00411396753, 0.0078621069, -0.0185866617, -0.016366018, -0.0231819823, -0.0207046177, 0.0141197015, 0.0238622967, -0.00775941787, 0.015583016, -0.0313457362, -0.0232076552, -0.00466271071, -0.00314002903, -0.0307296049, 0.0187535305, 0.00592064764, -0.0154289836, 0.0172773805, -0.0281110425, 0.0503431559, -0.0282394029, -0.00160852284, 0.00277099153, -0.0235157218, 0.0108144078, 0.0196007136, -0.00261374936, -0.0172902159, -0.0338102691, 0.000254315091, 0.000660256483, -0.0211538803, 0.0087542152, 0.00476219039, 0.00916497, -0.000831137, 0.0219882261, 0.00315446965, -0.023348853, -0.0322699361, -0.0277259592, 0.0131249046, -0.0106282849, 0.00234900485, 0.0248763468, -0.0236312468, -0.0220395718, 0.0363004692, 0.00787494238, -0.0148513587, 0.0483150519, 0.0095757246, 0.0377637856, 0.0107823173, -0.00472689094, 0.0167511012, -0.0345547609, 0.0289838966, 0.00611639814, 0.00267472072, -0.00802897569, 0.0167382639, -0.0039021722, -0.00327641261, 0.0285731424, -0.0196520574, -0.00645013666, -0.0350168608, 0.0185224824, 0.0115974098, 0.0262498092, -0.00401769718, -0.0120530911, -0.0133495359, -0.00378664723, -0.0119439838, -0.0320902318, 0.0113856141, 0.00252229208, -0.0141453743, 0.0267760884, 0.00843331311, 0.0303958673, -0.0112829255, 0.0114818849, 0.00818300899, -0.0190102533, 0.0215004552, 0.0039021722, 0.0220780782, -0.0197034013, -0.0178036597, -0.00680954708, 0.00233937777, 0.0497783683, 0.00960781518, -0.00995439, -0.0338359401, -0.0462099314, -0.0415375941, -0.0299337674, 0.0427955315, -0.0127911661, -0.0187920388, 0.00322346366, 0.0346317776, -0.0275205821, 0.0149283754, 0.0395608358, 0.0144662764, 0.0344264, -0.0064565544, -0.00761822099, -0.0221550949, 0.0133110275, 0.0180218741, 0.0101084225, 0.00456002168, 0.0031416337, 0.0201526657, 0.0090751173, -0.00228001084, -0.0123996651, 0.00413001282, -0.00260572671, -0.0394324772, 0.00511197373, 0.00494510448, 0.0163018368, 0.0248121675, -0.00540720392, 0.0051312279, 0.0120595088, -0.0127526578, -0.0109363506, 0.00079664, 0.00475577218, 0.000730052765, 0.000350184651, 0.00738075329, 0.0368909314, -0.0195365325, -0.00475256331, -0.0384312607, 0.00839480478, 0.00831136946, 0.0141710462, -0.0292406194, 0.0187278595, -0.0238751322, 0.00254956889, 0.0138501441, 0.00282875379, 0.00384120061, 0.00471084611, 0.0201526657, 0.0197419096, -0.041974023, -0.0290095694, -0.0127013139, -0.00529809715, 0.0114690484, 0.00731015485, -0.0110197859, 0.0284191091, 0.00301648164, 0.0311917048, 0.0266734, -0.0155316722, 0.0334765278, 0.00345932692, 0.00677745696, -0.011732189, -0.00294106966, 0.00123627612, 0.00919064227, -0.00202970719, -0.0128810192, 0.0245041, 0.00946020056, 0.00672611268, 0.0270328112, -0.0109299328, 7.5963595e-05, -0.0415632688, 0.00317051494, 0.00353634357, 0.000684324186, -0.0220267344, -0.0323212817, -0.0456451438, 0.0294973403, 0.025376955, 0.00112716935, -0.0156086888, -0.00666193198, -0.0250175446, 0.00873496104, 0.0337845944, 0.00173287245, -0.0344007276, 0.00793912355, -0.0136447661, -0.0180090386, -0.016134968, 0.0204735678, 0.00613244344, 0.0272638611, 0.0194980241, 0.0178935137, 0.00521145342, 0.00471726386, -0.0141325379, -0.0389960483, -0.0331427902, -0.00313200662, -0.00364545034, -0.0297797341, 0.00188851007, 0.027982682, 0.00176175369, 0.0227070469, 0.0230022781, -0.00363261416, 0.0133110275, -0.00375776598, 0.00080466253, 0.00447016908, 0.0245041, -0.0142480629, 0.00847823918, -0.019523697, 0.0141453743, 0.00861301832, -0.00335342926, -0.0265707113, -0.00949870888, -0.0163403451, -0.0074064252, -0.0507282391, -0.0182785951, 0.0181887429, -0.00610356219, -0.0186765138, -0.0149027035, -0.0132596837, -0.00637632888, -0.0285474695, -0.0117129348, -0.0176239554, 0.0043353904, 0.00587251224, 0.0141453743, 0.00368395867, -0.0284961257, -0.0289068799, 0.00257524103, -0.0108015714, 0.000932221243, -0.0310119987, 0.0131698307, 0.0212437324, 0.0302161612, -0.000975543051, -0.000768962142, 0.0215004552, 0.0124445921, -0.0113535235, -0.032526657, -0.0272381883, 0.0158525743, 0.0394068025, -0.0159937721, 0.0194723532, 0.0555032641, -0.00904302765, 0.0325523317, -0.00187888299, -0.00197836268, 0.0158140659, -0.00558370026, 0.0036197782, 0.0120338369, 0.00949870888, 0.0107887359, 0.0202681907, 0.00178742583, -0.00430009095, -0.0148128504, -0.0271868445, 0.0352222361, -0.0113856141, -0.00881839544, 0.0217058323, -0.0394838192, 0.0399972647, 0.0576597266, 0.0264936946, -0.025608005, 0.00386045477, -0.034092661, -0.0137731275, 0.0322442651, -0.0299337674, -0.00156680553, 0.0343750566, -0.0107951537, -0.00735508092, 0.0349655151, -0.0120338369, 0.0087542152, -0.00217892672, -0.0237724427, -0.00411717687, 0.00296192826, -0.0128425108, 0.0313970819, 0.00592385652, -0.00716253975, 0.0364031568, 0.00867078081, -0.0447209477, -0.0236569177, 0.000777787, -0.00183716579, -0.00667476794, 0.0142994067, 0.0165200513, 0.0256850217, -0.00317051494, -0.00455681281, 0.0176496264, -0.012540862, 0.00225112983, 0.0243757404, -0.000725640333, -0.0316794775, -0.0196007136, -0.0230151135, 0.000832741498, 0.00781718, -0.0135420775, -0.00723955641, -0.0189589094, 0.00856809132, -0.0147871785, -0.0156471971, 0.0236184094, -0.0303701945, -0.000931418967, 0.00148658, -0.0115589015, 0.0165585596, 0.0177651513, 0.0252999384, 0.0197804179, -0.00877988711, -0.0168281179, -0.0008070693, 0.00976184849, 0.011295761, -0.0122777224, -0.016366018, 0.0102752922, -0.0206404366, -0.00263781706, 0.0344264, 0.0450033396, -0.00564146275, 0.0161991492, 0.00772732776, 0.00630893931, 0.00424874667, 0.00350425323, -0.000310473, -0.00696358038, 0.0231049657, 0.00164061307, -0.0143250795, 0.0219112094, -0.0416916274, -0.0103908172, -0.0121108536, 0.00789419655, 0.0253641196, 0.0197162386, -0.0100121526, 0.0179705303, -0.0143507514, 0.00211795536, -0.0251715779, -0.0175212659, 0.00751553196, 0.0235670656, 0.00421986543, -0.00248057488, -0.0125216078, 0.0290095694, 0.0518834852, -0.00840764, -0.00545533933, -0.0155316722, 0.00514085498, 0.00748986, 0.0111224744, 0.0155958524, 0.00880555902, 0.00424874667, -0.00488734245, 0.000808673853, 0.0157498848, 0.0253512822, 0.0154803274, 0.0227327198, 0.028650159, -0.00119857013, 0.0122584682, -0.000155637623, -0.00967199542, 0.0239136405, -0.00174410408, 0.00451509561, 0.00197034026, -0.0117963692, 0.0311146881, -0.0186893512, -0.00192541385, 0.00332775689, 0.0265707113, -0.0293689799, 0.00890824851, -0.0181374, 0.00625759503, 0.0162119847, 0.0121557796, 0.0143635878, -0.00806748401, 0.0386623107, -0.0308836382, 0.00897242874, 0.0176367909, -0.00190936879, -0.0273922216, -0.0141967181, -0.0213720948, 0.0170591678, -0.00333096599, -0.0216544885, 0.00582116796, 0.010647539, 0.0127334036, -0.017611118, 0.00683521945, 0.00428404566, -0.00348499906, -0.0303445235, -0.00901093706, -0.0186636783, -0.0158910826, 0.00637632888, 0.015005392, -0.00561579037, 0.00513764611, 0.00780434441, -0.0149155399, -0.0123739932, 0.0253127739, 0.0166227389, -0.020216845, 0.00789419655, 0.0499067269, 0.00950512663, 0.00287047122, -0.0115974098, 0.0137346191, -0.0410241522, -0.0211282074, 0.0175854471, 0.0127077317, 0.0120274182, -0.0176624637, 0.0113214338, 0.0179705303, 0.0100185703, -0.00354917953, 0.0185738262, 0.0169436429, 0.0226428676, -0.0367368981, 0.00296834647, -0.0262626447, -0.00356843369, 0.0119183119, 0.0283164196, -0.0014071567, 0.0259032343, -0.0161734764, 0.0162890013, 0.00625117728, -0.00143684016, 0.00247255224, 0.0165200513, 0.00329566677, -0.0454140939, -0.00106459344, -0.0118990578, 0.00306461705, 0.0325523317, -0.00308708032, -0.0047204732, 0.00323629985, -0.0039856066, -0.0123483213, -0.00527884299, -0.0105769401, 0.00516331801, 0.00380590139, -0.0162248202, -0.0209485032, 0.0198317636, -0.00697641633, 0.0358383693, -0.0202681907, 0.00930616725, -0.00195429497, 0.00439636176, 0.0276746154, 0.0210511927, -0.0300878, -0.0190872699, -0.00557407318, -0.0412808731, -0.0103458902, 0.00703417882, -0.00267311628, 0.0435143523, -0.0100763328, 0.00588213932, 0.043360319, 0.0404850356, 0.000619742612, -0.0115075568, -0.00635707472, -0.0131569952, 0.00818300899, 0.00538794976, 0.020216845, -0.0116744265, -0.00507988362, 0.00137185736, -0.0138373077, 0.0158012304, -0.00329245767, -0.0227583926, 0.0306012444, -0.00546175754, 0.00971692242, -0.0309863277, -0.00512160081, 0.0108978422, 0.0328347236, 0.0188177116, -0.0131441588, -0.00519219926, 0.0110968016, -0.000689939945, -0.0242987238, -0.00695716217, 0.0460045561, 0.00709835906, 0.00629931223, 0.00145448977, 0.0346831232, 0.0322442651, 0.0228610802, 0.00414605811, 0.0121621974, 0.0257877093, -0.00965274125, -0.00846540276, 0.00579549558, 0.00536869559, -0.023258999, 0.00783001631, 0.000597279402, 0.00643409137, 0.0112829255, -0.00615490647, -0.00545213046, 0.00986453705, 0.0216929968, -0.0130157974, -0.0314484276, 0.0360694192, 0.00842047669, -0.0295230132, -0.040151298, 0.00405299617, 0.00369037664, 0.01189264, -0.0123996651, 0.0112123266, 0.0271098278, 0.0161092952, -0.000355599885, 0.0054810117, 0.00978752, 0.013875816, 0.00457606697, -0.0140041765, -0.00489376, -0.0143764233, -0.0320388861, -0.0256850217, -0.00263621239, 0.020191174, 0.0173158888, -0.00224792073, 0.0281110425, 0.0144919483, -0.0139528327, -0.00686089136, 0.0149540482, 0.0157113764, 0.0135934222, 0.0314997695, 0.0155188357, 0.00820226315, -0.0314227529, 0.0229766052, 0.000630171911, -0.0023843043, 0.0177138075, -0.0123868296, 0.0466463603, -0.0359924026, -0.0362234525, 0.00745135173, 0.022681376, -0.0101918578, 0.01714902, 0.00171843194, 0.03406699, -0.000208385944, 0.00394709827, -0.0132211754, -0.0167639367, 0.00704701478, -0.00679671112, -0.0303958673, 0.00463382946, -0.0223861448, -0.021551799, 0.0138373077, 0.0140426848, 0.0264680237, -0.00888899434, -0.0331684649, 0.00966557767, -0.00503174821, 0.00172003638, 0.0147615066, -0.00609072577, -0.0213592574, -0.00167831907, -0.0162633285, -0.0192541387, -0.00784285273, 0.0112636713, 0.0015796416, 0.0110711297, -0.000702776073, 0.00938960165, -0.0043033, 0.00228963792, -0.000475336565, -0.0065207351, -0.0116359182, -0.00539115863, 0.0161478035, -0.020306699, 0.0318078361, 0.0212565698, 0.00217571761, -0.0139143243, 0.0298567507, -0.0131056504, -0.000977949821, -0.0040497873, 0.0290095694, -0.0171105117, 0.0192027949, 0.0199344512, 0.0205120761, 0.000553155376, 0.00315446965, 0.00255277799, 0.0038989631, -0.0162248202, 0.00829853397, -0.025633676, -0.00258326367, 0.0202425178, 0.0126756411, -0.00727164652, 0.0164943784, 0.000307263952, -0.00611639814, -0.0143635878, -0.010256038, -0.0145818014, 0.017611118, 0.0090687, 0.00649506273, 0.0213335864, -0.0142994067, -0.0137346191, -0.00815733708, -0.020075649, -0.0333481692, -0.0024500892, 0.0102496203, 0.00940243807, -0.0131826671, -0.00235863193, 0.0198445991, -0.0154161472, 0.023926476, 0.0150182284, 0.00680954708, -0.00692507206, 0.00999931619, 0.00233937777, -0.00578907784, 0.00121541752, 0.00733582675, 0.0205377489, 0.0202040095, -0.00204093871, 0.0170591678, -0.00801614, -0.00787494238, -0.00358126988, 0.00635707472, -0.00367433159, 0.0133495359, -0.0113471057, 0.00146973261, 0.0082086809, 0.00209228299, -0.00979393814, -0.0319362, 0.00709835906, -0.00345611782, -0.00258807722, 0.0283934362, 0.00242762594, -0.0050477935, -0.00658491533, -0.0109684411, -0.0104100714, -0.0150952451, -0.0154546555, -0.0239778217, 0.00406904146, -0.00106539566, 0.00453114044, 0.0385082774, 0.000350385206, -0.00370963081, -0.0156857055, -0.00322185922, 0.0453370772, 0.013760291, -0.00425516488, -0.0166997556, -0.00649506273, -0.0134008806, -0.017174691, -0.0253256112, -0.0157755576, 0.0191642866, 0.00215646345, 0.0120274182, 0.00153471529, 0.00770807359, -0.0323983, 0.020191174, 0.00881839544, 0.0198317636, 0.0476475768, 0.0116359182, -0.00177779887, 0.0333481692, 0.013413717, -0.0227712281, 0.000708793, -0.00453435, 0.0235413946, 0.0349141732, 0.0271868445, 0.0069956705, -0.00278382748, 0.000612121134, 0.0199729595, -0.0385082774, 0.0186380055, -0.0118284589, 0.0182015784, 0.046286948, -0.000111012145, -0.0169949867, 0.0283420924, 0.0132340118, -0.012540862, 0.0140041765, -0.0159937721, -0.00368716754, 0.00843973085, 0.00174731307, -0.013092814, -0.024709478, 0.0292662904, -0.00942169223, 0.0119889108, 0.00549384765, 0.00054713845, -0.00706626894, 0.0173543971, -0.0172517076, -0.00877346937, -0.013875816, 0.0216801595, 0.0197547469, -0.00958856102, -0.0138886524, -0.000683923077, 0.00872212462, -0.0206019282, -0.0135292411, 0.00906228088, 0.00877988711, 0.00523712579, -0.00129644538, 0.0238366239, -0.000931418967, 0.0138886524, 0.00155236491, 0.00883765, 0.00261535379, -0.0167125929, 0.00103330542, -0.0130735599, -0.0243629031, 0.00127317989, 0.0158140659, 0.0338359401, 0.00575056951, 0.0108593339, -0.010763064, 0.0108464984, 0.0252485946, 0.0177523158, 0.0134907337, -0.0127526578, 0.00890824851, -0.0259674154, 0.00702776061, -0.00364865921, 0.00628647627, 0.00240837177, -0.0112444172, 0.027315205, 0.0235413946, 0.0066041695, 0.00791345071, -0.0257620383, -0.0147743421, 0.0045728581, 0.000482957985, 0.0113214338, 0.0253897905, 0.00489376, 0.0221037511, -0.0066041695, 0.019523697, 0.0110582933, -0.0118092047, -0.00440598885, 0.0238237884, 0.000872854318, 0.0121621974, 0.0233873613, 0.0161606409, -0.00402090605, -0.00468838261, 0.0238494594, -0.00807390176, -0.0239906572, -0.0013076769, -0.00761822099, -0.0111802369, 0.0210255198, -0.0185609907, 0.00833062362, -0.010557686, 0.00303252693, 0.00879914127, -3.31933334e-05, -0.0171361826, 0.0201398283, -0.00255759154, 0.00703417882, -0.00200563949, -0.0191899575, 0.00553235598, 0.00566713465, 0.0186765138, 0.00438994355, -0.0214619469, 0.00865794439, 0.0147615066, 0.0219112094, 0.0239649843, -0.00373209384, -0.00251426967, 0.0169436429, -0.0194210075, 0.00541041279, 0.000840764085, -0.000553957594, 0.0120851807, 0.0125087723, 0.00282073137, 0.0154674919, -0.00580191379, 0.00617416063, -0.000787815196, -0.00741284341, 0.0162376575, -0.00306943059, 0.0118348775, 0.013991341, 0.0158654097, -0.00241799885, 0.0218855385, 0.00796479546, 0.000265346112, 0.00443487, -0.00219657645, -0.00779150799, 0.00135982351, 0.00281752227, 0.00607468095, -0.00887615792, 0.0123226484, -0.000537511369, 0.0198574346, -0.000308667921, 0.0109235151, 0.00301327277, 0.0211538803, -0.00413964, -0.00089772424, 0.00101645803, -0.00190295069, 0.00623513199, 0.0158654097, 0.0231306385, -0.0151722617, 0.0295230132, 0.00138629798, -0.0027084155, 0.00538153201, 0.0245297737, -0.00188851007, -0.011340688, -0.0197547469, 0.00801614, -0.0244655926, -0.0153134586, -0.0139656691, -0.0280340258, -0.00912004337, 0.0126563869, 0.0167639367, -0.0217700135, -0.00571527, -0.0147101618, 0.0165457241, 0.0122263785, -0.0155445077, -0.02401633, 0.00192220486, -0.0182144158, -0.0129516171, -0.0252229217, 0.00368716754, 0.0192798115, 0.01189264, 0.00924198702, 0.02033237, -0.00980035681, -0.0311917048, -0.00210030563, -0.00552914664, -0.0398175605, 0.00915213395, 0.000870447548, -0.0111288922, -0.000804261421, -0.00633140281, -0.00104453706, 0.0215646345, 0.0070213424, 0.0115268109, -0.00579870492, -0.0197419096, -0.00470763678, 0.00258165901, -0.00128200476, -0.00931900274, 0.0227712281, 0.00551951956, 0.0114177046, -0.00709194131, -0.0138116358, -0.00228482438, -0.0236440822, -0.00670044031, -0.0152749503, -0.00109507912, -0.0224888343, -0.00659775175, -0.00426158262, 0.0132340118, -0.00237307255, 0.00154674915, -0.0049836128, -0.0172132, -0.0126178786, -0.0152107701, -0.0147358347, 0.000772572297, -0.00917780586, 0.000259529741, 0.00305659464, 0.00515690027, 0.0023153103, 0.0168794617, -0.00752836838, -0.0238366239, 0.0227840636, -0.0267247446, 0.0205890927, -0.016250493, -0.0358383693, 0.00962706935, 0.0144406045, 0.0219625551, 0.00113037846, -0.00428404566, -0.0135934222, -0.0221679322, 0.00107903406, 0.0231306385, -0.0306782611, -0.0121878702, 0.00904302765, -0.0227840636, -0.0255823322, -0.0012009769, 0.00170720031, -0.000367032015, 0.011064712, -0.00982602872, 0.00851033, -0.00237628166, -0.0218085218, 0.00275173737, 0.0260444321, -0.00915855169, 0.0117899505, -0.00306301261, -0.0142865712, -0.0151465889, 0.00594311068, -0.0185738262, -0.00577945076, 0.0063667018, -0.00117289799, 0.0129837077, 0.0127398223, -0.00865794439, 0.0128746005, 0.0075604585, 0.00853600167, -0.0164430346, 0.0332968235, 0.015698541, -0.00542645808, -0.00984528288, -0.0349911898, -0.0131120682, 0.00460173935, -0.0247864947, 0.0121108536, 0.0092291506, 0.00252550119, -0.00313200662, 0.0107694818, -0.0201526657, -0.017264545, -0.0341440067, -0.00818300899, 0.0113984505, 0.018509645, 0.00438994355, 0.0462099314, -0.0187278595, -0.00386687298, -0.0056125815, 0.00836913195, -0.0141838826, -0.0173800699, -0.0250432156, -0.00119696558, -0.00286565768, -0.00937676523, 0.0373530276, 0.0126114609, -0.00219497178, -1.30241215e-05, 0.0141838826, -0.024593953, 0.000851193385, -0.0143250795, -0.00429367274, 0.0166997556, 0.0050895107, -0.00278382748, -0.000417975272, -0.0153262941, -0.0105897766, -0.00791345071, 0.0072331382, -0.00313361106, -0.00650148094, 0.00642446429, 0.00161494093, 0.00595273776, -0.00380590139, 0.0116615901, 0.00209388766, -0.0140170129, 0.000149921543, 0.012194288, -0.0273665488, -0.00799688604, 0.013413717, 0.0107373912, 0.00232654181, 0.00838196836, 0.0174570866, 0.0022126215, -0.00886974, -0.0057858685, -0.0070855231, 0.0106282849, -0.00519861747, 0.0164430346, -0.000826323463, -0.00564146275, 0.00414284877, -0.00897242874, 0.00454076752, 0.0120980171, 0.00128360931, -0.00451188674, -0.0217315052, -0.0231049657, 0.0087285433, -0.0238494594, 0.0017104093, 0.00793270487, -0.0056960159, 0.00392784411, 0.0212694053, 0.00761180278, 0.0179833658, 0.0193568282, 0.0152749503, 0.002299265, 0.008966011, 0.00383157353, 0.0233360156, 0.0151850972, -0.000740482064, 0.00542324921, -0.00402090605, 0.0114754671, -0.0133880442, 0.0260572676, 0.0124381734, 0.009704086, 0.014106866, 0.00596557418, 0.0159295909, 0.00904302765, -0.0183684491, -0.00696358038, -0.00459853, -0.00298760063, -0.00546817528, 0.016481543, 0.00176496268, 0.00516331801, -0.0140170129, -0.0369936191, -0.00228322, -0.0115075568, 0.00831778813, 0.0330914482, 0.00454397686, -0.0111481464, -0.033861611, -0.0167639367, -0.0188433845, -0.0127013139, -0.011963238, -0.000843973074, -0.0170078222, -0.0129644535, -0.0193439908, 0.000705182843, 0.00744493352, -0.025749201, -0.00981961098, -0.00481995288, 0.011963238, -0.00158445514, -0.00407866854, 0.0110390391, 0.00675178459, -0.0116487537, 0.013022216, -0.00832420588, -0.0255823322, -0.00373209384, 0.0196263846, -0.00834346, 0.010833662, 0.0231563114, 3.5976158e-05, -0.00585325807, 0.00609714398, -0.00863869, -0.0136704389, -0.0245554447, -0.0135677494, 0.0127526578, -0.00163098599, 0.000904944551, -0.0112636713, 0.000541121524, 0.0157370493, -0.0214619469, 0.00583079504, 0.00383157353, 0.00183235225, 0.00401127897, 0.00511518307, 0.00582437683, 0.0223476365, 0.00322988187, -0.0118605494, -0.0103523089, 0.0118348775, -0.00483920705, 0.0166099034, -0.00361336, -0.0336562358, 0.0028592397, 0.00850391109, -0.00395351648, 0.0163916908, 0.00406583212, 0.000790221966, -0.00845256727, 0.0216288157, 0.0225401781, 0.00913288, 0.0230279509, 0.013413717, 0.0067582028, 0.0237467717, -0.00741926162, 0.00426800083, -0.0104999235, -0.00192220486, -0.0213464219, -0.0101918578, 0.00881839544, 0.00135019643, -0.00518578151, 0.00467554666, 0.0192156304, 0.00272125169, -0.0121814515, 0.0166869201, 0.00203291606, 0.00732940901, 0.00550026586, -0.0199857969, 0.0114690484, 0.00974901207, -0.0136319306, 0.008966011, -0.0055708643, 0.0199729595, 0.0188433845, -0.00406262325, 0.00814450067, -0.0204478949, -0.0263139904, 0.0175084304, 0.00597199192, 0.0124445921, 0.00172645447, 0.018047547, -0.00490659615, 0.0178550053, 0.0135677494, -0.0204607323, 0.00999289844, 0.00488734245, 0.00108464982, -0.00648543565, -0.0240933448, 0.00129484083, -0.00272606523, -0.000958695658, 0.00705985073, -0.0200243052, 0.00414284877, 0.000298439147, 0.00223187567, -0.000948266359, 0.0100699142, 0.0255438238, 0.0242858864, 0.00745777, 0.00587572157, 0.00377381127, 0.0220652428, 0.0121236891, 0.0242602155, -0.0197419096, -0.0106924651, -0.00345290895, 0.00728448248, 0.0118541317, 0.0339386277, -0.0080995746, 0.00281591783, 0.0108593339, -0.000797843386, -0.0132340118, -0.0109235151, -0.00920989644, -0.0177779887, 0.00684163719, -0.0187021866, -0.0069956705, 0.00204254314, -0.0104164891, 0.00547780236, -0.00890183, 0.0274178945, -0.00277740951, -0.0024019538, -0.00840122253, -0.00450225966, -0.00068592868, -0.00977468491, -0.00733582675, 0.00208426057, 0.00403053313, 0.00535585964, 0.00445091492, -0.0164558701, -0.00187888299, 0.00826002564, 0.00806748401, 0.027315205, -0.00510234665, -0.0136704389, -0.00178261229, 0.0110582933, 0.0212822407, 0.0037032126, -0.0117578609, 0.0167767722, 0.000860820466, -0.00131650176, 0.00280949986, 0.0142994067, 0.00503816642, 0.000920989667, -0.00340477354, -0.0329117402, 0.0145818014, -0.0098581193, -0.0281110425, -0.00204254314, -0.0027052064, 0.0242217071, 0.00886332151, 0.00316891028, -0.0157113764, 0.00712403143, 0.0292662904, 0.0066041695, 0.0132596837, 0.00695074396, -0.0119118942, 0.0103523089, -0.0130799785, 0.00728448248, -0.00883123185, -0.0223861448, 0.00416852115, 0.0117578609, -0.00442203367, 0.000279385567, -0.0107694818, 0.0143507514, 0.00999931619, -0.0166740846, -0.0272895321, -0.0260572676, -0.000586047827, -0.00482958, 0.0315511152, 0.0162376575, -0.00451509561, 0.0195493698, -0.00292021106, -0.00993513595, 0.000612121134, 0.00144245592, 0.00216609053, 0.0102496203, 0.0267760884, 0.0178036597, 0.0196777303, -0.00203612517, -0.0085167475, -0.00702776061, -0.00501891226, -0.0147871785, 0.0170720033, 0.013323864, -0.0204350594, -0.0121621974, -0.0170848388, -0.0391500816, 0.0123290671, -0.0167639367, 0.00421665655, 0.00087526103, 0.0119183119, -0.00361336, 0.00249501551, -0.0190615971, -0.00836913195, -0.020858651, 0.00197675824, 0.0166612472, 0.0061292341, -0.00377060217, -0.00425837375, -0.0059334836, -0.0287528466, 0.0332198068, 0.00293946522, 0.0144919483, -0.00282394025, -0.0117129348, -0.0101405131, 0.00968483184, -0.0121236891, -0.0108464984, -0.00817017257, -0.0197419096, 0.0317821652, 0.0151979337, -0.00140234316, 0.0108978422, 0.0136576025, 0.00216288166, 0.00573452422, -0.00374493, -0.00890824851, -0.0196777303, 0.0297797341, -0.0244655926, 0.00517615443, 0.0150824087, 0.00487771537, -0.00453114044, 0.0215389635, -0.00436106231, -0.00295871939, 0.00579228671, -0.000660256483, -0.0195493698, -0.00308708032, 0.00182112062, 0.00760538504, 0.0158140659, -0.015351967, 0.0131441588, 7.35192225e-06, -0.0119118942, -0.0169564784, 0.0130029619, 0.0188048761, -0.000819504261, 0.00284961262, 0.00770165538, 0.0138116358, 0.00416210294, -0.0247351509, 0.00826002564, -0.00626401324, -0.0370449647, -0.00610356219, -0.00645976374, 0.00362940505, 0.00233937777, 0.00754120434, -0.00738075329, -0.0103073819, 0.0126692234, -0.00317051494, 0.00668118615, 0.00143764238, -0.00908795372, 0.00112636713, -0.00942811, -0.00103651453, 0.000480150076, 0.0208201427, -0.0191899575, -0.020306699, 0.00738075329, -0.0135035692, 0.00306943059, 0.0330914482, 0.0262498092, -0.0107117193, -0.00832420588, 0.024042001, 0.0222834572, 0.00117690919, -0.0105833579, -1.56941296e-05, 0.00491622323, 0.0204478949, 0.000177398804, -0.0102303661, 0.00797763187, -0.0142095545, 0.00843973085, 5.66593153e-05, 0.0115524828, 0.00481995288, 0.00248859753, 0.0208714865, -0.0114818849, 0.00838838611, 0.0254668072, 0.00193985447, -0.0103138005, 0.0200114679, 0.000872052042, 0.0135035692, -0.00778509025, 0.00617736951, 0.0204093866, 0.0111609828, -0.0210640281, 0.0226942115, 0.00847182143, 0.00540720392, 0.0315767862, -0.0149283754, -0.0135934222, -0.0045728581, -0.0115460651, 0.0152877858, 0.0116615901, 0.00648864498, 0.00955647, 0.0146074733, 0.0137346191, 0.00146331452, -0.0193439908, 0.0378664732, 0.00553877372, 0.0452600606, 0.017611118, -0.0147358347, 0.0136832744, 0.015005392, -0.00115364383, 0.0308322944, -0.0174827576, -0.011109638, 0.0164430346, -0.0157755576, -0.0255053155, -0.0098131923, -0.00380911049, 0.00336305634, 0.021667324, 0.0091007892, -0.0172260366, 0.0159039181, 0.0143764233, -0.012354739, -0.0100699142, 0.0160579514, 0.00801614, 0.00932542142, -0.00269397488, -0.00827928, 0.0191257782, 0.00462099351, 0.0189845804, -0.00164141529, 0.0292406194, 0.0122135421, 0.0269301217, 0.00698283454, 0.034041319, -0.00592385652, -0.0103779808, 0.0280340258, -0.00962706935, -0.00680954708, 0.0126178786, -0.0227583926, 0.0105961943, 0.024940528, -0.0308579672, -0.0149155399, -0.0149540482, 0.0139014879, -0.000904944551, 0.0055644461, 0.0125793703, -0.0086066, 0.000906549045, -0.0152749503, 0.0168281179, 0.00383478263, 0.00653036218, -0.00586288515, 0.0150567368, 0.0111417286, 0.00572810648, 0.000344769418, 0.00972975791, -0.0111288922, -0.00725881, 0.00743851578, -0.00800330378, 0.0107951537, 0.00691223564, -0.00627364032, -0.000685527571, -0.0103523089, -0.0246196259, 0.0107053015, 0.0157242138, -0.017726643, -0.0189845804, 0.0204093866, 0.00242120796, -0.00920347869, 0.023374524, -0.0144791128, 0.0244014114, 0.0173158888, -0.0321159028, -0.000839961809, -0.029317636, 0.00145448977, -0.00960139744, -0.019960124, -0.0194851886, -0.00283838087, -0.00369037664, 0.023233328, 0.0104614152, -0.0227198843, -0.00377381127, -0.00979393814, 0.00156359654, -0.00643730024, -0.0188433845, -0.00498040393, -0.0193568282, -0.00137426413, -0.000143503508, -0.0197290741, -0.0111353099, -0.0103843985, 0.0128489286, -0.00366470451, -0.0138116358, 0.00998648, 0.0120659266, 0.00186123338, -0.0208073054, 0.00276136445, 0.00659133354, -0.0212180614, 0.00507988362, -0.00743851578, 0.0319618694, 0.0179705303, 0.00811241, -0.00339193735, 0.018509645, 0.00650789868, 0.00428404566, -0.0102496203, 0.00359731494, -0.0136576025, -0.00189653272, 0.00493226852, 0.0109042609, 0.0236184094, -0.00267472072, 0.0141453743, 0.00183556124, -0.0157498848, 0.0043771076, -0.00541041279, -0.00221101684, -0.00592385652, 0.020768797, -0.00639879191, -0.0173672326, -0.0145561285, 0.0183812845, 0.0124060838, -0.0176367909, -0.0119439838, -0.000765753153, -0.00592064764, 0.0165970679, -0.0083627142, 0.0159424264, -0.0119118942, -0.00098356558, 0.00904302765, -0.0128746005, -0.00549705653, -0.0101469308, 0.000675098214, 0.0111160558, -0.000730855041, -0.0179833658, 0.0247223135, 0.00421344722, -0.0261471197, -0.0120915994, 0.00160050031, 0.00585967628, -0.0221037511, 0.0247736592, -0.0130286338, -0.00734224496, 0.00810599234, 0.0125536984, -0.0295230132, 0.0103779808, 0.0131955035, 0.0285217967, 0.00202168454, 0.00768240122, -0.0193568282, -0.0230151135, -0.000433218112, -0.000834346, 0.00107582496, 0.00748986, 0.0127975838, 0.0125986245, -0.00459532114, -0.0149283754, 0.00421344722, -0.0110582933, -0.00351388031, 0.0144149316, -0.00539115863, -0.00444770604, 0.00827286206, 0.00483278884, -0.0018548154, -0.0118669672, -0.00112716935, -0.00249341107, 0.00189653272, -0.0127847483, -0.0112893432, 0.0321672484, 0.0110390391, 0.0082536079, 0.00393426232, 0.00211795536, 0.00383157353, -0.0137217827, -0.0135292411, -0.011340688, -0.0152877858, -0.0189845804, 0.00260251784, 0.00466271071, -0.00840764, 0.0165072158, -0.000724035839, -0.00378022925, -0.00206179731, 0.00317051494, 0.00701492466, 0.00314002903, -0.0263396613, -0.000416370749, -0.0427955315, 0.00587572157, 0.00215165, 0.00527563412, -0.013323864, 0.0107053015, -0.00629610335, -0.0379948355, 0.0177651513, -0.00686730957, -0.0103138005, 0.00560616329, -0.00696358038, 0.0122969765, 0.0104357433, 0.0213977657, -0.009312585, 0.00832420588, -0.027315205, 0.0074770241, 0.0179833658, 0.0206789449, -0.0243243948, -0.00233456423, -0.0167382639, -0.00759254862, 0.0157242138, -0.0122648869, -0.017842168, 0.0114690484, -0.00182914315, -0.00703417882, 0.0291122571, -0.00444449717, 0.0132340118, -0.0102624558, 0.0175854471, 0.0153776389, -0.0244270843, 0.0170848388, -0.00330850296, 0.00337589229, -0.0124574276, -0.0136190942, 0.00355238863, 0.023233328, -0.0109941131, -0.00279185013, 0.0142865712, 0.000920187391, 0.0160707887, -0.00343365478, -0.00658491533, -0.0250688884, 0.0173415616, 0.00291218841, 0.0127269858, 0.00402090605, 0.0144919483, 0.0124574276, -0.00822151732, 0.00243243948, -0.00318816444, 0.00540078571, -0.00591422943, 0.00680312887, -0.01005066, -0.00805464759, -0.0125536984, 0.00344969984, 0.0135805858, -0.000281190645, 0.00178421685, -0.0036165691, -0.00358126988, 0.00506062945, 0.00193985447, 0.000889701652, 0.0188305471, -0.00697641633, -0.00695716217, -0.0218727011, -0.0140683576, -0.00322185922, -0.00489055132, 0.0113856141, 0.000258727494, 0.00419098418, -0.00241799885, -0.0216288157, -0.0220395718, -0.00019986197, -0.0220010635, -0.004460542, -0.00406262325, 0.0249276925, -0.0354019441, -0.00486167, 0.00797763187, -0.0165457241, -0.00982602872, 0.00568638882, 0.0204864033, 0.000339354185, 0.00119215215, -0.00748986, -0.0143892597, 0.0165328868, -0.0113727776, -0.00867078081, -0.00490338728, 0.0138886524, -0.0222577844, -0.0225273427, 0.0140298493, -0.0201141573, 0.0108208256, 0.0144662764, 0.0144406045, 0.0024019538, -0.00104132795, -0.00958214328, 0.00849749334, 0.0117450245, 0.00852958392, 0.0172388721, 0.0232204907, 0.000818702043, -0.00697641633, 0.0064148372, 0.0187021866, -0.0100314068, 7.39579555e-05, -0.00028239403, 0.00791345071, -0.00815091841, 0.0165842324, 0.0108464984, -0.00973617658, 0.0140811931, -0.00242762594, -0.00601691846, 0.016250493, 0.0132596837, 0.00182272517, -0.00451188674, -0.0300878, -0.00866436213, -0.0116744265, 0.00310633448, -0.010647539, -0.00962706935, -0.0146716535, 0.00186925603, 0.0233103447, -0.0148000149, -0.0148641951, -0.0257106926, 0.00398239773, 0.0196777303, -0.00976826623, 0.0222706199, 0.00382194645, 0.0310376715, -0.00464024767, 0.00622871378, 0.0115460651, -0.00302610872, 0.00637953822, -0.0153391305, 0.0166099034, 0.00925482251, -0.00564467162, -0.00455360394, -0.0211538803, -0.0203195345, -0.00266188476, -0.0199857969, 0.0128296744, -0.0186893512, -0.00565750757, 0.0109748589, -0.0214362741, 0.0144662764, -0.00301808631, 0.0192541387, -0.0164302, 0.0123419026, -0.00334380218, 0.00865794439, 0.00808032, 0.0135805858, 0.0317051485, 6.94452683e-05, 0.00597199192, -0.0057184794, 0.0137089472, 0.00716253975, -0.00494831381, 0.0320388861, -0.00682238303, 0.023900805, -0.0295486841, 0.0167767722, -0.00976184849, 0.0180218741, 0.00466271071, -0.00514727319, -0.0185866617, -0.00834987778, 0.00840764, -0.0183042679, 0.0107245557, -0.0311146881, -0.00144004915, -0.0107694818, -0.00657849759, -0.00611318927, -0.031140361, -0.00170399132, 0.0112572536, 0.00126515736, 0.00677745696, 0.0111353099, -0.0219112094, -0.00619662367, -0.0237852801, 0.00254475535, 0.0114883026, -0.00799688604, -0.0242987238, 0.00339514646, 0.00163259055, -0.0197804179, 0.0187663678, -0.0179191846, 0.023348853, 0.00333096599, -0.00775941787, -0.00349141727, -0.0225786865, -0.0193439908, -0.0194595158, 0.00847823918, -0.00648543565, -0.0299080964, -0.000588053488, -0.0013076769, -0.00813808292, 0.00257203192, -0.0107309734, 0.00939601939, -0.0119889108, -0.0268531051, -0.00182593416, 0.00496756798, -0.0283677652, 0.024825003, 0.00726522831, 0.00623513199, -0.00567034399, -0.00662342366, -0.0235413946, -0.00852958392, -0.00711119547, 0.00776583608, -0.00523391692, -0.0126114609, 0.0187663678, -0.00635386584, 0.00630252156, -0.0034240277, -0.0168281179, 0.0106347026, -0.0142352264, 0.00425195554, -0.00761822099, 0.0354019441, 0.000488573743, 0.0127654942, -0.0218341928, -0.0255309884, 0.00202328898, -0.0314997695, 0.000962706923, -0.0162633285, -7.52616179e-05, -0.0121301077, -0.0225786865, -0.00132933783, 0.01297729, -0.0082151, -0.00354597066, 0.016481543, 0.012932363, -0.00874779746, 0.00352671649, -0.00822793506, 0.00465950137, 0.009704086, -0.00410434045, -0.0255951677, -0.0290609132, -0.0120980171, 0.00329566677, -0.00419419305, 0.0107373912, -0.0172003638, -0.00141838822, -0.0141838826, 0.0154289836, -0.0127141494, 0.0225530136, 0.0150695723, -0.0212694053, 0.0144149316, 0.0118412953, -0.0127847483, -0.0251202323, 0.00417493889, 0.0301648173, 0.0173929054, -0.00930616725, 0.00246292516, -0.0236312468, 0.026416678, 0.0320132151, -0.00295069674, 0.00554519193, -0.0134522254, 0.00311596156, 0.0110005317, 0.0141197015, -0.00707910489, 0.00895959232, 0.00711119547, 0.00976826623, -0.00331812981, -0.0156857055, -0.00802897569, -0.00688014552, -0.00668118615, 0.0103523089, 0.0237339344, 0.0065207351, 0.0140940296, -0.00592385652, 0.00417814823, 0.00447658729, -0.0136961108, 0.0237724427, 0.0122841401, -0.0120659266, -0.0250688884, -0.0206276011, -0.0260187592, 0.0128360922, 0.00367433159, 0.0126499692, -0.00262016733, 0.0284961257, 0.0106218662, 0.00489376, 0.00791986939, -0.00793270487, -0.00335984724, -0.00654640701, 0.00221422594, -0.00161333638, 0.0158397388, -0.0226428676, -0.0115589015, -0.0136190942, 0.0108914245, 0.0141197015, 0.0208458137, 0.0204992406, -0.00482958, 0.0361207649, -0.0214234386, 0.0167639367, -0.0130607244, -0.0178036597, 0.00588534866, -0.00175854471, -0.0083627142, 0.00780434441, -0.0438224189, -0.00352992537, 0.00833704229, -0.0143122431, -0.0216416512, -0.0351452231, -0.0104164891, -0.0030967074, -0.0165457241, -0.0109620234, -0.0144919483, -0.019960124, 0.00350425323, 0.00902377348, -0.0178935137, -0.00246452983, -0.00186444249, 0.000212998915, -0.00461136643, -0.0143507514, -0.00445412425, -0.0222321115, 0.0141710462, -0.019960124, -0.00463382946, 0.0150182284, 0.0134008806, -0.00838196836, -0.00737433508, -3.08367053e-05, -0.0010493506, -0.00895959232, 0.0364288315, 0.00449905032, -0.0153134586, -0.00429688208, -0.0176881347, -0.00435143523, 0.0171618555, 0.00551310182, -0.00137827545, 0.0135292411, 0.00585325807, 0.000223227675, -0.00129002728, 0.0419226773, -0.000396113785, 0.014568965, -0.00847823918, -0.00963990577, 0.00611960702, 0.00112155359, -0.0168666262, -0.00321223214, -0.0350168608, 0.00999289844, 0.00446696, -0.0203837156, 0.02549248, -0.0143122431, -0.000374051771, 0.00931900274, 0.0213335864, 0.019292647, 0.0068480554, -0.0207174532, 0.0117578609, 0.0198702719, -0.0171105117, 0.0113342693, -0.0109170964, 0.0157755576, -0.00467554666, 0.00736149913, -0.0166484118, 0.0287528466, 0.00136543938, -0.000967520464, -0.0104485797, -0.00609714398, 0.000374854018, -0.00903660897, 0.0168409534, 0.000129564316, -0.00679029291, 0.00313361106, 0.00586288515, 0.0171875283, 0.0275462549, -0.0242858864, 0.0179833658, -0.0045247227, 0.0158012304, -0.00519219926, 0.00751553196, 0.00394068053, 0.00477502635, -0.027751632, 0.0156600326, 0.0156215243, 0.0243372321, 0.0174442492, -0.00178100786, 0.0278286487, -0.000909758033, 0.04020264, 0.0010597799, -0.000669482455, -0.00341119152, -0.0195493698, 0.00206179731, -0.0258133821, 0.000153932822, 0.0093831839, 0.01714902, 0.00590460235, 0.00865794439, 0.00548422057, -0.0188562199, -0.00628968515, -0.00293465168, 0.00275815534, 0.00774658192, -0.0173158888, -0.000242281239, -0.00856167357, 0.0127398223, -0.0289068799, 0.0154546555, -0.00534623256, -0.0252614301, 0.00141357468, -0.00392463524, -0.0162248202, 0.0129708713, 0.00373851205, -0.0227327198, -0.00674536685, 0.0140940296, 0.00249020196, -0.00888257567, -0.0230792947, -0.00410434045]
25 Jun, 2020
multimap upper_bound() function in C++ STL 25 Jun, 2020 The multimap::upper_bound(k) is a built-in function in C++ STL which returns an iterator pointing to the immediate next element which is just greater than k. If the key passed in the parameter exceeds the maximum key in the container, then the iterator returned points to key+1 and element=0. Syntax: multimap_name.upper_bound(key) Parameters: This function accepts a single mandatory parameter key which specifies the element whose lower_bound is returned. Return Value: The function returns an iterator pointing to the immediate next element which is just greater than k. If the key passed in the parameter exceeds the maximum key in the container, then the iterator returned points to key+1 and element=0. // C++ function for illustration // multimap::upper_bound() function #include <bits/stdc++.h> using namespace std; int main() { // initialize container multimap<int, int> mp; // insert elements in random order mp.insert({ 2, 30 }); mp.insert({ 1, 40 }); mp.insert({ 2, 60 }); mp.insert({ 2, 20 }); mp.insert({ 1, 50 }); mp.insert({ 4, 50 }); // when 2 is present auto it = mp.upper_bound(2); cout << "The upper bound of key 2 is "; cout << (*it).first << " " << (*it).second << endl; // when 3 is not present it = mp.upper_bound(3); cout << "The upper bound of key 3 is "; cout << (*it).first << " " << (*it).second << endl; // when 5 is exceeds the maximum key it = mp.upper_bound(5); cout << "The upper bound of key 5 is "; cout << (*it).first << " " << (*it).second; return 0; } Output: The upper bound of key 2 is 4 50 The upper bound of key 3 is 4 50 The upper bound of key 5 is 6 0 Learn C++ Online – Master everything from basics to advanced concepts. Apply your knowledge with practical exercises and boost your skills. Take the Three 90 Challenge: finish 90% in 90 days for a 90% refund. Start now and level up your C++ programming!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum/Algorithm for Dynamic Time out timer Calculation/Difference between Round trip time (RTT) and Time to live (TTL)/Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms/Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm/Round Robin Scheduling Algorithm with Different Arrival Time/Selfish Round Robin CPU Scheduling/Find the order of execution of given N processes in Round Robin Scheduling/Calculate server loads using Round Robin Scheduling/set::lower_bound() Function in C++ STL/Implementation of lower_bound() and upper_bound() in List of Pairs in C++/Difference between std::set::lower_bound and std::lower_bound in C++/Difference between std::set vs std::vector in C++ STL/std::minmax() and std::minmax_element() in C++ STL/std::rotate vs std::rotate_copy in C++ STL/std::bitset::to_ullong and std::bitset::to_ulong in C++ STL/std::upper_bound and std::lower_bound for Vector in C++ STL/std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++/std::string::append vs std::string::push_back() vs Operator += in C++/Vector push_back() in C++ STL/vector :: cbegin() and vector :: cend() in C++ STL/unordered_multiset cend() function in C++ STL/unordered_multiset bucket() function in C++ STL/unordered_multiset emplace_hint() function in C++ STL/unordered_multiset end() function in C++ STL/unordered_multiset size() in C++ STL/unordered_multiset emplace() function in C++ STL/unordered_multiset find() function in C++STL/unordered_multiset erase() function in C++ STL/unordered_multiset clear() function in C++ STL/unordered_multiset swap() function in C++ STL/unordered_multiset bucket_size() function in C++ STL/unordered_multiset bucket_count() function in C++ STL/unordered_set bucket_count() function in C++ STL/unordered_set cbegin() function in C++ STL/array::cbegin() and array::cend() in C++ STL/array::rbegin() and array::rend() in C++ STL/multimap rbegin in C++ STL/vector rbegin() and rend() Functions in C++ STL/multiset rbegin() and rend() function in C++ STL/map rbegin() function in C++ STL/map upper_bound() function in C++ STL/Set upper_bound() in C++ STL/multimap upper_bound() function in C++ STL
https://www.geeksforgeeks.org/multimap-upper_bound-function-in-c-stl?ref=asr6
PHP
multimap upper_bound() function in C++ STL
unordered_multiset clear() function in C++ STL, What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, jQWidgets jqxTreeMap width Property, Round Robin Scheduling Algorithm with Different Arrival Time, Difference between Flow and TypeScript, unordered_multiset emplace() function in C++ STL, jQWidgets jqxTree destroy() Method, unordered_set bucket_count() function in C++ STL, jQWidgets jqxTree collapseAll() Method, Find the order of execution of given N processes in Round Robin Scheduling, jQWidgets jqxScrollView buttonsOffset Property, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Vector push_back() in C++ STL, jQWidgets jqxListBox enableHover Property, Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm, std::rotate vs std::rotate_copy in C++ STL, Selfish Round Robin CPU Scheduling, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxSlider buttonsPosition Property, std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++, std::upper_bound and std::lower_bound for Vector in C++ STL, Difference between Round trip time (RTT) and Time to live (TTL), jQWidgets jqxSlider rtl Property, Difference between std::set::lower_bound and std::lower_bound in C++, jQWidgets jqxTooltip opacity Property, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, unordered_multiset erase() function in C++ STL, jQWidgets jqxToolBar height Property, PHP, std::minmax() and std::minmax_element() in C++ STL, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, map rbegin() function in C++ STL, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, map upper_bound() function in C++ STL, Node.js date-and-time Date.transform() Method, unordered_multiset size() in C++ STL, TypeScript Optional Parameters, jQWidgets jqxToolBar theme Property, Difference between std::set vs std::vector in C++ STL, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, Steps to Diagnose and Resolve a Slow Network, How to use Optional Chaining with Arrays and Functions in TypeScript ?, Calculate server loads using Round Robin Scheduling, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, jQWidgets jqxScrollView showButtons Property, Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms, jQWidgets jqxScrollView disabled Property, jQWidgets jqxSplitter destroy() Method, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, set::lower_bound() Function in C++ STL, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, jQWidgets jqxTree collapseItem() Method, multimap upper_bound() function in C++ STL, std::string::append vs std::string::push_back() vs Operator += in C++, unordered_multiset swap() function in C++ STL, unordered_multiset cend() function in C++ STL, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), Set upper_bound() in C++ STL, jQWidgets jqxSortable opacity Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, multimap rbegin in C++ STL, vector :: cbegin() and vector :: cend() in C++ STL, jQWidgets jqxSlider height Property, jQWidgets jqxSwitchButton onLabel Property, unordered_multiset bucket_size() function in C++ STL, unordered_set cbegin() function in C++ STL, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, jQWidgets jqxToolBar tools Property, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTree width Property, Implementation of lower_bound() and upper_bound() in List of Pairs in C++, jQWidgets jqxTree clear() Method, TLS Handshake?, multiset rbegin() and rend() function in C++ STL, Algorithm for Dynamic Time out timer Calculation, Adhoc TCP, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, jQWidgets jqxTabs position Property, Differences between Wireless Adhoc Network and Wireless Sensor Network, jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, std::bitset::to_ullong and std::bitset::to_ulong in C++ STL, unordered_multiset emplace_hint() function in C++ STL, unordered_multiset bucket_count() function in C++ STL, unordered_multiset find() function in C++STL, unordered_multiset bucket() function in C++ STL, Impact of Three-way Handshake and Slow Start Algorithm, array::rbegin() and array::rend() in C++ STL, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, vector rbegin() and rend() Functions in C++ STL, array::cbegin() and array::cend() in C++ STL, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, unordered_multiset end() function in C++ STL, How to Sort an Array Having Optional Properties in TypeScript ?
GeeksforGeeks
[-0.021871645, 0.0165307429, -0.0036441884, 0.0103365993, 0.0289711356, -0.0283719115, -0.0380636938, 0.0292577203, -0.0261052866, 0.0186019707, -0.040147949, 0.0119063025, 0.00738607626, -0.0118411705, -0.0241382699, -0.0218325648, 0.00748377573, 0.0242555104, -0.0471562557, -0.0305082723, -0.0329833254, 0.000232239676, -0.0174947102, 0.0231612772, -0.0288148168, -0.00839563739, -0.0150066316, -0.022197308, 0.00209890935, 0.0150326844, -0.0375686847, 0.0198525228, 0.0199046284, 0.00199469645, 0.00127660576, 0.00948987063, 0.0301174745, 0.00591732841, -0.0250371061, -0.00685198605, 0.00946381781, 0.000253814971, 0.0375947393, 0.0199958161, -0.00304496544, 0.0251543447, 0.00342273642, -0.00335109024, -0.031055389, 0.0132219885, 0.0332699083, -0.000449824438, 0.0220930967, 0.00286747795, 0.0347549431, 0.0267826691, 0.0237214193, 0.0375947393, 0.00104049884, -0.0413724482, 0.0138863446, -0.0431180112, 0.0109488489, -0.0216762461, 0.00543860113, -0.00312800985, -0.0419195667, 0.0328009538, 0.0109944418, 0.0028023452, -0.00666635716, 0.0464267656, 0.00592709845, 0.0142901689, -0.0298829973, 0.00765312137, -0.0252585579, -0.0206992514, -0.00830445066, 0.0208164901, -0.0125120394, 0.0106101576, 0.0148372855, -0.0233436488, 0.0592970364, 0.00441275723, 0.0129354037, -0.0347549431, 0.0395487249, 0.0188103952, -0.0205429327, 0.000404027815, -0.0215980858, 0.0157752, -0.0100435009, 0.0302216876, 0.0234999675, 0.00890367385, -0.0230831169, 0.049761571, 0.00922282506, -0.0292577203, -0.00240340573, 0.0203214791, 0.047234416, 0.016139945, 0.0313419737, 0.0203605592, -0.00661750743, -0.0188234225, 0.0236562863, 0.0135346269, -0.0013653494, 0.0525492616, -0.0209207032, 0.00876038149, -0.00985461473, 0.00464072265, 0.0217674319, -0.00707995147, -0.00250110519, 0.0202042405, 0.00822629128, -0.0203475337, -0.0487194471, -0.00299285888, 0.0150587372, 0.0482244343, 0.00853241608, -0.0445509367, 0.0193965919, 0.00157214655, -0.0197743624, -0.0477294251, -0.0546074659, 0.0298829973, 0.0381679088, 0.00968527, 0.000893135555, -0.0253497437, -0.0531484857, -0.00498267077, -0.00550699094, 0.0384805463, -0.0149805779, -0.0276684761, 0.00567307975, 0.0472083613, 0.0155146681, 0.00571867311, -0.0309772305, -0.00432808464, 0.0440298729, -0.00226825499, 0.0185498632, -0.0031052134, 0.0123622334, -0.00445835, -0.00721673062, -0.0210509691, 0.0304040611, 0.0135476533, 0.0379594825, 0.01290935, 0.0014060575, 0.0411900766, 0.00012965528, 0.00261671632, -0.0304040611, 0.03491126, 0.024998026, 0.00221940526, 0.0267305616, -0.0155146681, -0.0079462193, -0.0160487592, 0.0233436488, 0.0134434402, 0.00432808464, 0.0273037329, 0.00390797714, -0.00745120924, 0.0276163705, 0.0100890938, 0.0224448144, -0.0338691324, 0.0419456176, -5.02490511e-05, 0.0659145415, -0.0102844927, -0.00807648525, 0.0151238702, 0.0160096791, 0.0210249163, 0.0469999351, 0.0412421823, -0.0149024185, 0.018641049, 0.0129223773, 0.0358231217, 0.0115089919, -0.021311501, -0.0108511494, 0.0246202555, 0.0236041807, 0.0199306831, -0.0168303531, 0.0148893921, 0.00396659644, -0.00357905542, -0.032410156, 0.0134694939, 0.0189015809, -0.0105450246, 0.0213245265, 0.0196831767, -0.054346934, 0.0242815632, -0.000766940473, -0.0607039072, 0.0144985942, -0.00733397, 0.0417371951, -0.0259489659, -0.0305864327, -0.0127530312, 0.0035985955, 0.0343120359, 0.0142510887, -0.00550373411, 0.0173253641, 0.0450459458, -0.0203475337, -0.00747726252, 0.00680639315, -0.00824583136, -0.0591407157, -0.0202042405, -0.000794214895, 0.045072, 0.0129484301, 0.030169582, -0.0087734079, 0.0299611557, 0.0100825801, 0.0442643501, -0.0183023587, -0.0213896595, -0.0266002957, -0.00608016085, 0.0483547, 0.0335304402, 0.0285021774, 0.00268347748, -0.0114959655, 0.0248286799, -0.0272255726, -0.0100369873, -0.0378813222, -0.0215329528, -0.0221061222, 0.0384284407, 0.00859103631, 0.00879294798, 0.0304301139, 0.00822629128, 0.0589844, 0.00876038149, -0.0306385383, -0.0239819512, 0.00527251232, 0.00753588229, 0.00873432867, -0.00706692506, 0.0253757965, -0.00792016648, -0.03227989, 0.0247635469, -0.0021559007, -0.0431180112, 0.028059274, -0.000365151587, -0.00536044175, -0.0183674917, 0.0261443648, -0.00244574226, -0.00986764207, -0.0193444863, -0.0104798917, -0.0345725678, -0.0204387195, -0.00241154735, -0.0210900493, -0.0159054659, 0.0318630375, 0.0342859849, 0.00607364764, -0.0392360874, -0.0271474123, 0.0116522843, 0.012069135, 0.000214938729, -0.0181851201, -0.0441861935, 0.0201781876, -0.0244899895, -0.0171950981, -0.00360510871, -6.19780694e-05, -0.0298569445, 0.00465374906, -0.0378292166, -0.0253106635, 0.00339017, 0.00161611126, -0.0363441855, 0.0356146954, 0.0227965321, -0.0263006855, 0.00100874656, -0.00490776775, 0.00500546722, -0.0129809966, 0.023057064, 0.041007705, -0.0430659056, 0.00388843706, 0.0492926165, -0.0398613662, -0.05783806, -0.0142901689, -0.0212463681, -0.0413463973, -0.00536695495, 0.0205299053, -0.0300653689, -0.0150717646, 0.0207904372, 0.00344227627, 0.0429616943, -0.0017406781, 0.0122710476, -0.023552075, 0.0264179241, 0.00703435857, 0.0134434402, 0.0066761272, -0.0434567034, 0.013964504, 0.0582549088, 0.000657842786, -0.00127172086, 0.0270171463, -0.00424341159, 0.0245160423, -0.0305603798, -0.0362139195, -0.0208164901, -0.00675428659, 0.0327488482, -0.00645467499, 0.0291274544, -0.0300653689, 0.0167131145, -0.0287627093, -0.0101477131, -0.0116262315, -0.0121668344, 0.00478075864, -0.0202563461, 0.0218976978, -0.0517937206, 0.0381939597, 0.0395487249, -0.021311501, -0.00413268572, 0.0191230346, 0.0258187, -0.00742515596, -4.99691851e-05, -0.0105580511, 0.0325664729, 0.0308990702, -0.0144334612, 0.0220670421, 0.00579357566, -0.00743166963, 0.00756844878, -0.0183544643, 0.000179522685, -0.018641049, 0.00724929711, 0.0168043, -0.0204778, 0.000208323661, -0.0197483096, -0.0495010391, -0.0348591544, -0.0569522493, -0.0566396117, 0.0324622616, 0.0126097389, 0.0144204348, -0.00400241977, 0.000757984701, -0.0151368976, 0.0160096791, -0.0315504, -0.00169997, 0.0246723611, 0.000332788652, -0.00976342894, -0.0119258426, -0.0136648929, 0.0121147288, 0.0095419772, -0.0253757965, 0.0311596021, 0.0101346867, -0.0152801899, -0.00135720777, -0.0301435292, -0.00396985328, -0.0266002957, -0.0132871214, 0.0350675806, -0.00118379132, 0.0101151466, -0.00408057915, -1.94762779e-05, 0.01409477, 0.0208946504, 0.00913815293, 0.0167131145, -0.00347158615, -0.0470259897, 0.00063341792, -0.00161204045, -0.0129875103, -0.0099523142, 0.0178073477, 0.0482765399, 0.0218325648, -0.0118541969, -0.00148991623, 0.0293358807, -0.0205689855, 0.00176673126, 0.00599548779, 0.0127009246, -0.0113005666, 0.0189015809, 0.0201651603, -0.00239689252, 0.0634655431, -0.041033756, 0.0120365685, -0.000492975, 0.0725320503, 0.0142510887, -0.0170518067, 0.0203996394, 0.0159315187, 0.00219335197, 0.000660285237, 0.00423689838, -0.0188103952, 0.0198525228, 0.0072362707, -0.00956151728, 0.0358491763, -0.0361878648, -0.00499569718, 0.0196831767, 0.0350675806, 0.0125967124, -0.021376634, -0.0137691051, -0.0253497437, -0.00690409262, 0.0368652493, -0.0104668653, -0.0313419737, -0.0145507008, -0.00545488438, -0.0434567034, 0.00593035482, -0.00846077, -0.0112745138, 0.00340319658, -0.00408057915, -0.0178985335, 0.0015526067, -0.0370736755, -0.00446812, 0.0337388664, -0.0370997265, 0.0159054659, -0.00368326833, -0.00767917465, 0.0318630375, -0.00636674557, -0.0247505195, 0.0480420627, 0.0137560787, -0.0267826691, -0.0177552421, -0.00387541042, -0.0280853268, -0.0180548541, 0.0147330733, 0.0239168182, 0.0311856549, 0.00343576306, 0.0109814154, -0.0136909457, 0.0530442744, -0.00221126364, -0.0217544045, -0.0291795619, -0.000785259122, 0.0145767536, 0.00291958451, 0.0320714638, 0.0117760375, 0.00160796964, -0.00222103344, -0.00744469604, 0.0118281431, -0.0275903177, -0.0316025056, 0.00891018752, -0.0146288602, -0.0156579614, -0.0089883469, -0.0227314, -0.0166870616, 0.00488171447, -0.0149675515, 0.0103821922, -0.0176510289, -0.0235781278, 0.0233566761, 0.0123231541, -0.016270211, 0.00199469645, 0.0114373462, -0.0173514169, -0.0318369865, 0.0102063334, 0.00273069879, -0.0190057941, -0.0212593935, -0.0382200144, -0.00483286474, 0.0124208536, -0.0277205836, -0.0491884, 0.0190579016, 0.00250924681, 0.00190351042, 0.0478075854, 0.00124159688, 0.018380519, 0.00398287969, -0.0332178026, -0.00707995147, 0.0205559582, -0.0240470842, 0.00384284393, 2.13081421e-05, -0.00746423611, 0.0265221372, -0.00397310965, -0.011528532, 0.022262441, 0.00227965321, 0.0320714638, -0.024802627, -0.0159445461, 0.00496313069, 0.0169997, 0.0334783345, -0.0167000871, -0.0157361198, -0.0136648929, -0.0153844021, -0.028059274, -0.0406429581, 0.0141077964, -0.0151108438, 0.0182893313, -0.00652957801, -0.0303519536, 0.0153713757, -0.014954525, 0.00623647962, -0.00968527, -0.0313940831, 0.00743166963, 0.0290232413, 0.000276407955, 0.0105645638, -0.0109749017, -0.00919677224, -0.00249459199, 0.0189667139, 0.00825885776, 0.0384805463, -0.00832399074, -0.0465049259, 0.0258447547, 0.0117304437, 0.00345204631, -0.00580660254, 0.0201130547, -0.00551024731, 0.0115220184, -0.0134564675, -0.00237572426, -0.00849985, -0.0375686847, -0.0156840142, 0.0209597833, 0.00248645036, 0.0157230943, -0.048979979, -0.00193119189, 0.012779085, -0.0338430814, -0.0011268, -0.0238126051, 0.00548093766, -0.0469999351, 0.0264309514, 0.000459187286, -0.0347549431, 0.0250501316, -0.0257926472, 0.0433264375, -0.0561185479, 0.0286324434, 0.00291632768, 0.0123296669, 0.00151189859, -0.0229267981, 0.00773128122, 0.00696922559, 0.00351717928, 0.00730140368, -0.0652371645, 0.0126357917, 0.00670869369, 0.00113819831, -0.0196701512, -0.0438996069, -0.00916420575, 0.0168043, -0.0190318469, 0.0175077375, -0.00217381213, -0.0292056147, 0.00230733468, -0.00795924664, 0.00296680583, 0.0104017323, -0.0264439769, -0.0264960825, 0.0033380636, -0.0124469064, -0.0082067512, -0.00386238378, 0.00373863126, 0.00418804865, 0.00505431695, -0.00821326487, -0.0164916627, 0.0218976978, 0.00476447539, -0.0122580212, 0.00891018752, -0.0342078246, 0.0228616651, -0.0308990702, 0.00412942888, -0.011528532, 0.022001911, -0.00335760345, 0.0142901689, -0.0299872104, -0.00782246701, -0.0251803976, 0.00513573317, 0.0214808472, -0.00470911199, -0.00623322325, 0.00373863126, -0.0134173874, -0.00190676702, -0.0222363882, 0.00423364155, -0.0168694332, -0.0308209118, -0.0341036133, 0.014394382, 0.0525753163, -0.00629509939, 0.0165567957, -0.0308730174, -0.0278508496, 0.0218195375, -0.0110791149, -0.0187973697, 0.0101477131, 0.00518132607, -0.0111247078, -0.00135883619, -0.0295443051, 0.0222363882, -0.0450459458, 0.0053832382, 0.0136648929, -0.001327898, 0.0247635469, 0.0205429327, -0.00988718122, 0.00624299329, -0.0183674917, -0.00465700589, -0.00281537161, -0.0318369865, -0.0232915431, 0.00272418559, -0.00290330127, -0.010968389, 0.0371778868, 0.0312117096, -0.00783549342, -0.0249589458, -0.0214287397, 0.0165828485, -0.0039014637, 0.0105124582, 0.0302216876, -0.000134133166, -0.0358231217, 0.00764660817, -0.00653609121, -0.0258447547, 0.0334783345, 0.0093400646, 0.0194747522, 0.00160308473, -0.0134825204, 0.0170648322, -0.0194747522, 0.0237083938, -0.0155276945, 0.0159054659, -0.0308209118, 0.0167000871, -0.0172341783, 0.0138472645, 0.0245942, -0.0272776783, -0.0206471439, -0.00488171447, 0.0107664764, 0.0163223166, 0.0032615324, -0.0522626787, -0.0275382102, 0.00406755274, -0.0095419772, 0.0140556907, -0.0342078246, -0.000618763035, 0.0224187616, -0.0125055257, 0.025427904, -0.00389495026, 0.0581506975, 0.00487520127, 0.0177291892, -0.00760101527, -0.000624462147, 0.00849333685, 0.0301174745, 0.0429877453, -0.0135606797, -0.00139954418, -0.0153844021, -0.00316871796, 0.0124729592, -0.0145507008, -0.00700179208, -0.00890367385, -0.0478075854, -0.0236953665, -0.04374329, 0.0222884957, -0.0111247078, -0.00329572731, 0.00806997251, -7.43558758e-06, -0.0245551225, 0.0362399742, 0.0465570316, 0.0145897809, 0.0449938402, -0.00959408376, 0.0123557206, -0.00925539155, 0.0125315795, 0.0157752, -0.0121147288, -0.00806345884, -0.00281537161, 0.00554607064, 0.0103561385, 0.0110791149, 0.000630161259, 0.0113005666, -0.0140426634, -0.0206341185, 0.00135069457, 0.0167261418, 0.0136258127, 0.0302998479, -0.0204126667, -0.00933355186, 0.0212463681, -0.000763276767, 0.00405452587, -0.0142120095, 0.00377119775, 0.0167000871, -0.00920979865, -0.00426295167, 0.0361097082, -0.0010991185, -0.0103300856, -0.0308209118, 0.0144074084, 0.0158663858, -0.00841517653, -0.0108837159, 0.0185368378, -0.0052301758, 0.00185303239, 0.0149675515, 0.0269910935, -0.00427272124, 0.00524645904, 0.0102389, 0.0121994009, -0.0430398509, -0.0143553019, 0.0258056745, 0.0265872702, 0.00793319289, 0.016270211, -0.0239558984, 0.0114568854, 0.0178073477, 0.0265872702, 0.00130754395, -0.0387150235, 0.037412364, 0.00547442446, -0.00775733404, -0.00556235388, -0.000154080131, 0.0057968325, -0.00297820405, -0.0170127265, -0.00100874656, 0.0339472927, 0.0075879884, 0.00772476755, 0.0401740037, -0.017025752, -0.00318337278, -0.0597138889, -0.0190579016, -0.00417827861, 0.0103887049, -0.0051845829, -0.0123948, -0.0295703579, 0.017025752, 0.00745772244, 0.0129158637, -0.0131959356, 0.00123345526, -0.0126357917, 0.0206992514, 0.0229919311, 0.0153844021, -0.0274079442, 0.0113526732, -0.023942871, -0.00426946487, 0.00221777684, 0.00771174114, 0.0171039123, 0.0653934777, 0.0493186675, 0.0141077964, -0.00654911809, -0.00175370462, 0.000723789912, -0.0261573922, -0.0528097935, -0.00191165204, -0.00433785422, -0.0443425104, -0.00908604637, 0.0223536287, 0.0210509691, 0.0177552421, 0.0317067206, 0.0110856276, 0.014394382, -0.0116653107, -0.0208164901, -0.00721673062, -0.00311009819, -0.0330614857, 0.0215980858, -0.0224838946, 0.00649375515, 0.00706041185, 0.000646037457, 0.000329328468, -0.0276684761, -0.0190579016, -0.0166089013, -0.0362399742, -0.016895486, -0.00273884041, -0.00159657141, 0.00469608558, -0.0222494155, -0.0371778868, 0.0142510887, -0.0408513844, -0.00914466567, -0.00669566728, -0.0143162217, -0.0143422754, 0.00340970978, 0.0134304138, -0.0438475, -0.0348852091, 0.0182372257, -0.0096917823, -0.00551676052, -0.0423624702, -0.000142478326, 0.0295443051, 0.0171429925, 0.00843471661, -0.00721021742, 0.0138602918, 0.0155016417, -0.0250631589, -0.0357189104, -0.0358752273, 0.0246332809, 0.0317327715, -0.0109293088, 0.018771315, 0.0422061495, 0.00645141862, 0.0363702402, -0.0233045686, -0.0131959356, -0.0169997, -0.00526599912, 0.0409816504, -0.00318337278, 0.0119063025, 0.0113982661, -0.0153713757, 0.0211030748, -0.00249296357, -0.0153192692, -0.0138081852, 0.0347288884, -0.0035985955, -0.00259229145, 0.0103105456, -0.0188755281, 0.0564832948, 0.0500742123, 0.021936778, -0.0357449614, 0.0171690453, -0.0344423, -0.00956803, 0.0140556907, -0.0373863131, 0.0288669225, 0.00246039708, -0.012069135, -0.0153062427, 0.047521, -0.00057683367, 0.0140817435, 0.0138733182, -0.020386612, -0.00836958364, -0.0177161619, 0.00530182198, 0.00808299892, -0.000400160556, -0.0288669225, 0.0589844, 0.0132285021, -0.034155719, -0.016074812, -0.0201130547, 0.0154755889, 0.00205494463, -0.00700830529, 0.00624624966, 0.00116099475, 0.00561120361, 0.00029839031, 0.0151890032, -0.0256754085, 0.00627881614, 0.0172472056, 0.0289450828, -0.0108316094, -0.0168694332, -0.0255842227, -0.00991323497, 0.00743166963, -0.0115350448, -0.0125576323, -0.0251022391, 0.0134825204, -0.0184717048, -0.0189146083, 0.0161920507, -0.0171820726, -0.00479052821, -0.00526274228, -0.00269324752, 0.00832399074, 0.0149154449, 0.0260531791, 0.0196701512, -0.00304659363, 0.00047709886, -0.00124322518, 0.0172993112, 0.00914466567, -0.0164656099, -0.0185107831, 0.00329898391, -0.00808951259, -0.00124729599, 0.0299611557, 0.0368391946, 0.00943125132, 0.0187582895, 0.00476447539, 0.00270790234, -0.0122580212, -0.0156579614, -0.00516178599, 0.00527576869, 0.0072297575, 0.0262876581, -0.0145507008, 0.0179636665, -0.0235781278, -0.017950641, -0.020451745, 0.0084672831, 0.0319411978, 0.00934657827, -0.0187973697, 0.0214026868, 0.0131373154, -0.0240601115, -0.000104060062, -0.0133913346, 0.0164525826, 0.0137169985, 0.00663379068, 0.00410663243, -0.00633092271, 0.0396529399, 0.055962231, -0.0204387195, -0.00409034919, -0.0142120095, 0.00249622017, -0.00409686239, -0.00850636326, 0.00677382667, 0.0242424831, 0.00745772244, 0.00438019074, -0.00452022674, 0.0062104268, 0.00288701802, 0.00786806, 0.0250761844, 0.0459057, -0.0152150569, 0.00135395117, 0.0117630102, -0.00795924664, 0.0204126667, -0.00509665301, -0.0050706, 0.00170485489, -0.0115545848, 0.0252455305, -0.0198525228, 0.000798285706, 0.00720370421, 0.00774430763, -0.0226532388, 0.0167000871, -0.0205038525, 0.028788764, 0.0390537158, 0.0243206434, 0.0128377043, -0.0172341783, 0.0282677, -0.0201781876, 0.0150587372, 0.008102539, -0.00530182198, -0.025362771, -0.044524882, -0.00866268203, 0.0111312205, 0.0149805779, -0.0318109319, -0.00966572948, -0.0182502531, 0.0457493849, -0.0191230346, 0.00201586471, -0.00980902184, 0.0131373154, -0.0323841, 0.000839400862, -0.0140817435, -0.0180939324, 0.0100369873, 0.0287366565, 0.00802438, -0.0128702708, 0.024568148, -0.00835655723, -0.0212463681, 0.0518197753, 0.0144464877, -0.0149675515, 0.00310032838, 0.0629444793, -0.00585219543, -0.035901282, -0.0109097688, -0.0136779193, -0.0433785431, -0.0178985335, 0.00734699657, 0.00281537161, 0.0253757965, -0.0212854482, 0.00487520127, 0.00495987386, 0.0046244394, -0.0165046901, 0.00900788698, 0.00270301732, 0.0305603798, -0.0291274544, -0.00578706246, -0.0280071683, 0.00721021742, -0.00760101527, 0.0246202555, -0.000652957824, 0.0105971303, -0.033295963, 0.00662402064, -0.0111768143, -0.00849985, 0.0145637272, 0.0239037927, 0.022327574, -0.0589322932, -0.0036376752, -0.00131731387, 0.0109553616, 0.017090885, -0.00282351323, 0.00548419449, 0.000282514171, -0.0104473252, -0.000625683402, -0.00186768733, -0.0153322965, 0.0032273375, -0.00462118257, -0.0237605, -0.0232785158, 0.0104212714, -0.00422387151, 0.010903256, -0.000648887, 0.00904045347, -0.000900463, -0.0230961442, 0.00637325924, 0.0146809667, -0.019266326, -0.00601502787, -0.0179115608, -0.0315504, 0.00282351323, 0.0153844021, -0.0106166704, 0.0268868804, -0.000508851139, 0.0158012528, 0.0260140989, 0.0185368378, -0.0186540764, -0.0213896595, -0.0154755889, -0.00166658929, 0.00401544617, 0.00450068666, 0.00910558645, -0.0096005965, -0.0234869421, 0.00178627111, -0.0227183718, -0.011268, 0.00411965884, -0.0177291892, 0.0317848772, 0.00793319289, 0.00498592714, -0.0360054933, 0.00222754688, 0.00437693438, 0.0209207032, 0.0247505195, -0.00989369489, -0.00978296902, 0.00642862218, -0.0106492369, -0.0462965, -0.00777687412, 0.0342078246, 0.00700179208, -0.0159836262, 0.0086236028, 0.0112419473, 0.0220279638, 0.0148893921, 0.0292577203, 0.0153453229, 0.0316025056, -0.0208034646, -0.00185303239, 0.000915117911, 0.00654260488, 0.000337877165, 0.019631071, 0.00536695495, 0.010688317, -0.029804837, 0.0139384512, -0.00328921387, 0.00161692547, 0.0167521946, -0.0101151466, -0.0211161021, 0.0238386597, 0.0270953067, -0.0214547925, -0.0225490276, 0.00716462452, -0.00551350415, 0.0106362104, -0.0158273056, -0.00790714, 0.0262876581, 0.00167554512, 0.0126748718, 0.0014825887, 0.0304561667, 0.0121342679, 0.00991974771, -0.0120170293, -0.00195724517, 0.00409686239, 0.00738607626, 0.00500872359, 0.015019658, 0.0318630375, 0.0190839544, 0.0243857764, 0.00774430763, 0.0221061222, -0.0022047502, -0.0148372855, -0.00879294798, 0.00371583481, 0.00525297225, 0.0153453229, 0.0181069598, -0.00715811085, -0.0246984139, 0.0239168182, 0.00965921581, 0.00681941956, 0.0112354336, -0.00325176236, 0.0305082723, -0.0287627093, -0.0175728686, -0.00311823981, 0.0115545848, -0.00985461473, 0.0104147587, 0.00202889135, 0.0175598431, -0.000322408101, -0.0126878982, -0.00864314195, -0.00850636326, -0.0121668344, -0.0337649211, -0.0047709886, 0.00325176236, -0.00225034333, -0.0115415584, 0.0157491472, 0.00404475629, -0.00459187292, -0.00841517653, -0.0382721201, 0.0115676112, 0.00397310965, 0.00715159765, 0.0103691658, 0.00248970697, -0.0167521946, -0.0110400347, -0.00522691896, -0.0104668653, -0.00248970697, -0.0100760674, 0.00920328591, 0.0254800096, 0.017520763, -0.00353997573, -0.0145897809, -0.00806345884, 0.00264439778, 0.00600525783, -0.00642862218, -0.0118607096, 0.0155407218, 0.00509991, 0.0224187616, 0.0103952186, 0.00378096756, 0.00747074932, 0.014654913, -0.000101261379, 3.74768897e-05, 0.00539626461, 0.0286063906, -0.00356602902, -0.00872130226, 0.0236562863, 0.0178334, -0.0215069, -0.00782898068, 0.00968527, -0.00800483953, -0.0246202555, -0.0195268579, 0.00211519259, 0.0120170293, 0.00840866379, -0.00346507295, -0.0166870616, -0.000637081626, 0.0075423955, -0.0162962638, -0.0208555702, -0.0162181035, -0.0113005666, 0.022692319, 0.0166089013, 0.0148633393, 0.00812859181, -0.0153322965, -0.00619414356, 0.00217544055, -0.00476121856, -0.0445769913, -0.00257275137, 0.00770522794, -0.00818069838, -0.0257926472, 0.00438344758, 0.0186931565, -0.0228616651, 0.0262225252, 0.00433459785, 0.00925539155, 0.0211291276, 0.000956640171, -0.000654179079, 0.0113526732, -0.0125120394, 0.0155276945, 0.0118867634, -0.00825234503, 0.00468631554, 0.0141989831, -0.012713952, 0.00202237815, 0.00545162801, 0.00863011554, -0.00649701152, 0.0107664764, -0.0124403927, 0.00991974771, -0.011808604, -0.0036376752, -0.00953546353, -0.0333480686, -0.0158142801, -0.013124289, 0.00380702084, 0.0319933034, 0.0144855678, 0.00956803, -0.000529612298, -0.0278769024, -0.00129288901, -0.00818721205, -0.0157361198, -0.0137560787, 0.00950289704, 0.00312963827, 0.00573495589, 0.0337649211, 0.0118216304, 0.000740073156, -0.0198134426, 0.0112940529, 0.0297787841, -0.00563074322, -0.0323841, -0.0168173276, 0.000880923122, -0.00171299651, -0.00951592345, -0.0244509093, -0.00686501293, 0.0330354311, 0.00421410194, 0.0246072281, -0.00462769577, 0.0204647724, -0.0299611557, 0.0283198059, 0.0134825204, 0.0110204946, 0.0260401536, 0.0103821922, 0.000821896421, 0.0292837732, 0.0186801292, -0.0171039123, -0.0110270083, -0.0288408697, 0.0194617249, 0.0225881059, 0.0244769622, 0.00962665, -0.00335760345, -0.0098611284, 0.030039316, -0.0141599029, 0.0368913, -0.0137039721, 0.0159315187, 0.0349373147, 0.000401585334, -0.0123557206, 0.0269910935, 0.00548419449, -0.0135346269, 0.00361162191, -0.0144464877, 0.00213961746, -0.00129126071, -0.0194356721, -0.0152801899, -0.00849333685, 0.0242945906, -0.0314461887, -0.00255158334, 0.00500546722, 0.00913815293, -0.0128898108, 0.00162425288, 0.00657842774, 0.00383958733, 0.00447463337, 0.00995882787, 0.0129875103, -0.00230407808, -0.0164786354, -0.00957454368, 0.00845425669, -0.0147982063, -0.0246072281, 0.00880597439, 0.00166414678, 0.00548745086, 0.000962339342, 0.0186019707, -0.00737305, 0.0125120394, 0.00849985, 0.012069135, -0.00803089235, -0.0325664729, 0.0131438291, -0.0153322965, -0.0154234823, -0.00548419449, 0.0229007453, 0.0216632187, 0.0090144, 0.0340775587, -0.00665007392, 0.00701481849, 0.00407732278, 0.00701481849, 0.00756844878, -0.00805043243, -0.00233827275, -0.0179115608, 0.00633417908, 0.00437042071, 0.011938869, -0.00434436789, -0.0181330126, 0.0380897485, 0.020126082, -0.01075345, 0.00664681755, 0.000123549064, -0.00619414356, 0.0142380623, 0.00561446, 0.00490776775, 0.0238386597, -0.0108055566, 0.0133327143, -0.0218195375, 0.0193835646, -0.0134825204, -0.0274861045, -0.0193705391, 0.0196831767, -0.0101672532, 0.00863662921, 0.00104375544, 0.00545488438, -0.001177278, -0.000164867772, 0.034025453, -0.00164053612, -0.0192142203, -0.00362464855, -0.00842820387, 0.0117499838, 0.00691711903, -0.0275382102, 0.0255451426, -0.0176640563, 0.00204354618, -0.0023887509, 0.00520412251, -0.0148893921, 0.0172472056, -0.00748377573, 0.0123101277, -0.00971783604, -0.0072362707, -0.000895578065, -0.00695619872, 0.00597594818, 0.00148665952, -0.0014443231, 0.005236689, 0.0293619335, 0.0194877777, 0.0360054933, -0.00819372479, -0.00165193446, 0.0152671635, -0.00778990053, -0.00471562566, 0.00796575937, -0.00331689534, 0.000531647704, -0.00945079047, -0.00592058524, -0.00455279322, 0.00291632768, 0.00969829597, -0.00954849, 0.00456581963, 0.00502826367, -0.00414896896, 0.0212984737, 0.00290492945, 0.00810905173, -0.00428900449, 0.0160878375, 0.00831096433, -0.0160357319, 0.00190025382, -0.00243922882, -0.00106492371, -0.00150538527, 0.0086691957, 0.0127530312, 0.00122531364, 0.0193835646, 0.00851939, 0.0148112327, 0.00158110238, 0.00543534476, 0.000713612884, 0.00898183323, 0.00734699657, 0.0135606797, 0.000592302764, -0.00045552355, -0.00741212955, -0.00741212955, 0.0079462193, -0.021441767, 0.0113852397, 0.00815464556, -0.00075147138, 0.0209337305, 0.0140817435, -0.00566656655, 0.000683895953, -0.0122319674, -0.00254018488, -0.00378748099, -0.00773779443, -0.00471236883, -0.0292056147, -0.0134694939, 0.0213375539, -0.0201521348, -0.0176119488, -0.00611924054, -0.00821977854, 0.0179245882, 0.0111247078, -0.00892321393, -0.0186019707, -0.00585219543, -0.00939217117, -0.0111572742, -0.0217153244, 0.0017439347, 0.0149024185, 0.00972434878, -0.00468305917, 0.0139384512, -0.00149561535, -0.00980902184, -0.00286259316, -0.00216567051, -0.0248547327, -0.00200772309, -0.00750982901, -0.016139945, 0.00844123, 0.000852427445, -0.0108446358, 0.0112940529, -0.0106687769, 0.00909256, -0.0167261418, -0.024008004, -0.00448766025, 0.0016674035, 0.00635371916, -0.00603782432, 0.0110139819, -0.00887762103, 0.0030987, -0.00439647399, -0.0123296669, -0.000781595358, -0.0138472645, -0.00216567051, -0.0127074383, -0.0185628906, -0.0291274544, 0.0133001478, 8.98122307e-05, -0.00793319289, 0.000760834257, 0.0125576323, 0.000271319441, -0.00714508444, -0.0113852397, -0.00521714939, -0.0145116206, -0.0149675515, 0.000492160849, -0.00118541962, -0.0207383316, 0.0200088415, 0.00683244644, 0.0155016417, -0.0122515075, -0.0208946504, 0.0125185531, -0.0278247949, 0.020451745, -0.010473378, -0.0358752273, 0.0209207032, 0.00774430763, -0.00327455904, 0.0163223166, 0.00483612157, 0.00360836531, -0.0151238702, 0.00690409262, 0.0356146954, -0.0153713757, 0.0223145485, 0.00145490724, -0.00552327419, -0.0216111131, -0.000915932062, 0.0138863446, 0.00196538679, 0.0103821922, -0.00149480114, 0.027173467, 0.0030742751, -0.00719719101, 0.0099523142, 0.0142771425, 0.00178464281, 0.0130331032, -0.00902091339, -0.0200479217, -0.0234739147, 0.00996534154, -0.021871645, 0.00405452587, -0.00119763205, 0.00501198042, 0.0165828485, 0.0065686577, -0.00310358498, 0.00233827275, 0.0118672233, 0.0128572444, -0.00651003839, 0.0193444863, 0.00239037932, -0.001177278, -0.0086691957, -0.0459838621, -0.00592058524, -0.00612575375, -0.015149924, 0.00818069838, -0.0103365993, -0.0108837159, 0.0050706, 0.0217153244, -0.0204778, -0.00592709845, -0.0234999675, -0.0162311308, -0.00146304886, 0.0161008649, 0.0267305616, 0.019331459, -0.0173644442, -0.0149284722, 0.0113917524, 0.0150066316, 0.000712391629, -0.0047775018, -0.0155537482, -0.00384284393, -0.00353997573, 0.00974388886, 0.0117955767, 0.00400893297, -6.97126097e-06, -1.27912463e-05, 0.00896229409, 0.0116783381, 0.00228779484, -0.0151108438, 0.00799181312, 0.00321593927, 0.0113591859, 0.00053205475, 0.00835655723, -0.0108576622, -0.0189927686, 0.00191653706, -0.00611598371, 0.00593686849, 0.00312963827, 0.0175077375, -0.00530833518, -0.00147688959, -0.00581637211, -0.00103317143, 0.00910558645, -0.013899371, 0.0039014637, 0.017950641, -0.00332015194, 0.00426946487, -0.0030351954, 0.000825153, -0.00552978739, 0.0171039123, 0.0280071683, -0.000209850215, -0.0022389451, -0.022536, -0.012994023, 0.0134304138, -0.00307264691, 0.030664593, -0.00302705378, -0.0186671037, 0.00342924963, -0.0217804573, -0.00422061514, 0.00476447539, 0.0156579614, -0.00479052821, -0.00422387151, -0.032175675, 0.0110791149, -0.0161269177, -0.00566005334, 0.00483286474, -0.00315731973, 0.00786806, 0.00775733404, 0.00315731973, 0.0150066316, 0.0125380922, 0.0117890639, 0.0018986254, 0.00403498625, 0.00797227304, 0.0119649228, 0.0161790252, 0.00516178599, 0.023877738, -0.00255646813, 0.00252553, -0.0168043, 0.0111572742, 0.0164656099, 0.000703028752, -0.0138472645, 0.000884179783, 0.0209858362, 0.0099067213, -0.0112614864, -0.0134955468, 0.000479948416, -0.000644409098, -0.0107273962, 0.00236595445, 0.00427272124, 0.0119714355, -0.0135997599, -0.0319151431, 0.0144985942, -0.011378726, 0.0122254547, 0.0153453229, 0.021011889, -0.00589778833, -0.0165958758, -0.0216241386, -0.0114959655, -0.00654911809, -0.011808604, 0.00615180703, -0.00389820687, 0.00289027463, -0.0053832382, 0.0142120095, 0.00546139758, -0.033295963, -0.0182763059, -0.0165567957, 0.00583265536, 0.0101151466, -0.0259750206, 0.0207774099, 0.0240861643, -0.00994580146, 0.0108316094, -0.0192793533, -0.0311596021, 0.00326316082, 0.00117239309, -0.0271474123, 0.00341947982, 0.0357449614, -0.00314754969, -0.0078550335, 0.00410988927, -0.00430203136, 0.000756763446, -0.0266524032, -0.00312800985, -0.006982252, 0.00973086245, -0.00713857124, -0.0169215407, 0.0122775612, 0.0197352841, -0.0216632187, 0.0131633691, -0.0144464877, 0.00159819971, 0.00303682382, -0.00141582743, 0.00377771095, 0.0198394954, 0.00467328914, -0.00654260488, -0.000788922829, -0.00835004356, 0.0160096791, 0.023617208, 0.0072818636, -0.0173253641, 0.00217055553, 0.00600851467, 0.00247993693, 0.00524320221, -0.00976994261, 0.0102128461, -0.0237865523, 0.0361357592, 0.0350936316, 0.00655563129, 0.0103821922, 0.0268347748, -0.00193282031, 0.016074812, -0.00502500683, 0.0124469064, -0.0130786961, -0.00254832651, -0.0161269177, -0.00138977426, 0.0118346568, 0.00566330971, 0.00266719423, -0.00779641373, 0.0115610985, 0.0128051378, 0.0107273962, 0.033165697, -0.00540929148, 0.00760752847, 0.000590674405, -0.0138081852, 0.003491126, 0.017390497, -0.0179897211, 0.0141989831, 0.005689363, 0.0131373154, 0.0297527313, -0.00552001735, 0.0205689855, -0.0303519536, -0.00738607626, 0.0106557505, 0.000558108, -0.0049761571, -0.0141989831, 0.0171169396, -0.00739910314, 0.010193306, 0.00227476819, -0.0120951887, 0.00630161259, 0.00771825435, 0.0160487592, -9.61728729e-05, -0.024802627, 0.0168564077, 0.00582939899, 0.00418804865, -0.00649049832, -0.0184326246, 9.78011958e-05, 0.0010242156, -0.00617460348, 0.00589453196, 0.00453325314, 0.0249459185, 0.0276684761, 0.00372560462, -0.00585545227, -0.00795924664, 0.0349633656, 0.0122905876, 0.00413268572, -0.00309707178, 0.00308567355, -0.0141468765, 0.00647421507, 0.0060638776, 0.0328791142, 0.00533113163, 0.00652957801, 0.0193054061, 0.00195724517, -0.0189927686, -0.0146158338, 0.00120007456, -0.0296224654, 0.00889716111, -0.0226141606, -0.00264602597, -0.00582614215, -0.0219628308, -0.00218195375, -0.00986764207, 0.0210900493, -0.0155146681, 0.00577729242, -0.0145767536, 0.00242457399, -0.00731443, -0.0113591859, 0.00192630698, -0.0120300557, 0.00028007169, -0.000267859257, -0.00111133093, -0.0159054659, 0.0141208237, 0.00827188417, 0.0138212116, 0.0337128155, -0.0109097688, 0.00247830874, -0.00430203136, 0.0123296669, 0.0251152646, -0.00211193576, -0.00748377573, 0.0092944717, 0.00486868806, 0.0172993112, -0.00904696621, -0.00442252727, -0.00926190522, 0.00710600475, 0.0168173276, -0.0198655501, 0.0141208237, -0.0111312205, 0.000960711, -0.00922282506, -0.000326682435, 0.0268087219, 0.00914466567, -0.00151352689, -0.00252553, 0.00129370322, 0.0171169396, -0.00488171447, 0.00673474697, -4.33795612e-05, -0.0281634871, 0.00243597222, 0.00111458753, 0.0260271262, 0.0122775612, -0.0109618753, -0.00674126, 0.00278769014, -0.000812533544, 0.00310032838, -0.0154886153, 0.00313615147, 0.00676731346, -0.0089167, -0.0137821315, -0.0201781876, -0.00208099768, 0.00273558381, 0.0386108123, 0.00993277505, -0.000479541341, 0.00689757941, 0.000405656145, -0.0166740343, -0.0201651603, -0.00480029825, 0.00696271239, -0.00585545227, 0.0263658185, 0.0137039721, 0.028424019, -0.00737956306, -0.000396700372, 0.000512514904, -0.00665984396, -0.00386889721, 0.0245290678, 0.0221191496, -0.0190709271, 0.0100695537, -0.00459512975, -0.0209597833, 0.00839563739, -0.00335109024, -0.000451452739, 0.00339668337, 0.00716462452, -0.0117369574, -0.0131568555, -0.0022389451, -0.0228616651, -0.0152280834, 0.00572844269, 0.000563807087, 0.0185498632, -0.00682593323, -0.00185954571, 0.000243027316, -0.0219237506, 0.0243076161, 0.000233257379, 0.0107208835, 0.00249296357, -0.0120495958, -0.0194617249, -0.000117544616, -0.00848030951, -0.00237735268, 0.0189797413, 0.00282351323, 0.0257405415, 0.00817418471, -0.00738607626, -0.00146793388, -0.00498918397, 0.00913815293, 0.00255972496, 0.00750982901, -0.00601502787, -0.00815464556, 0.0327488482, -0.0245811753, -0.00489474088, 0.000414815469, 0.0117890639, 0.00235618441, 0.0141208237, -0.00485891802, 0.0096005965, 0.0101346867, -0.0222233627, -0.0238647126, -0.0089167, 0.00572844269, 0.00982856192, -0.00370280817, -0.00281862845, 0.024802627, -0.008102539, -0.0141989831, 0.00427923491, 0.0289711356, 0.00510968, -0.0183023587, 0.00212333421, 0.0296224654, 0.00799832586, -0.0065686577, -0.0239558984, 0.00604433753, -0.00709297787, -0.0142901689, -0.012994023, -0.000878480671, -0.00833701715, 0.0112028671, -0.00434762426, -0.0240470842, 0.00844123, 0.0256754085, -0.00106492371, 0.0147851789, -0.0120951887, -0.0247765742, 0.0131503427, -0.0147461, 0.00827188417, 0.000850799144, 0.0193054061, -0.00678685308, -0.0105906175, 0.00100711826, -0.00361487875, 0.00161936798, 0.0379073769, 0.00353346253, -0.00249133538, -0.00393728679, 0.0188103952, 0.0106492369, 0.00480029825, -0.020191215, -1.61433036e-05, 0.00412291568, 0.00997185428, 0.0108316094, -0.00940519758, -0.0144074084, 0.00257437979, 0.00637325924, 0.00331038213, 0.000667612709, -0.00983507559, -0.000661506492, 0.0133327143, -0.00492730737, 0.00831096433, 0.0220279638, -0.00743818283, -0.021376634, 0.010818583, 0.00599874463, 0.0192533, 0.0019719, -0.010473378, 0.0220409892, 0.00612901058, -0.0142380623, 0.00973737612, 0.00588801876, 0.00138407515, 0.0224187616, -0.0249198657, -0.0276945289, 0.00584568223, -0.0176640563, 0.00814161822, -0.0121082151, 0.00335434685, 0.00152166851, 0.00448440341, 0.012368747, 0.0106101576, -0.0287366565, 0.0318109319, -0.00324687758, 0.0331396461, -0.00695619872, 0.00580660254, 0.0238516852, 0.0186671037, 0.00989369489, 0.0154104559, -0.0248938128, -0.00866268203, 0.00477424497, -0.0184977576, -0.027929008, 0.0130526433, -0.0111116813, 0.014954525, 0.0234087817, 0.0186931565, -0.0222363882, 0.00276163709, 0.0147461, -0.00857800897, -0.021441767, 0.0036409318, 0.00414896896, 0.00633092271, 0.0159315187, 0.000763276767, 0.00420758827, -0.011463399, 0.00653283484, 0.01913606, 0.0127530312, 0.00438670395, 0.0234087817, 0.0203605592, 0.0229789037, -0.00514875958, -0.0103691658, 0.0210379418, -0.000606957648, 0.00120821618, 0.0144204348, -0.0208555702, -0.00525622908, 0.0124534201, -0.0119258426, -0.019565938, -0.0107339099, -0.0030010005, 0.00105352548, 0.0163223166, 0.000946056098, -0.0151368976, -0.00925539155, -0.0187843423, 0.0258447547, 0.00696271239, 0.00321105425, 0.0050836266, 0.0180027466, 0.00891018752, 0.0199827887, -0.00635046232, -0.000556479616, -0.0181590654, -0.00607039081, 0.0169866737, 0.0137821315, 0.0127204647, 0.0147851789, -0.0103691658, 0.00163809361, -0.00960711, -0.0261443648, -0.000130469431, 0.00134173874, -0.0173253641, -0.0146288602, 0.0105775911, -0.00676080026, -0.00719067734, 0.017885508, -0.00719067734, 0.0300132632, 0.00158680149, -0.0184847303, -0.00666310079, -0.01745563, 0.0189797413, 0.0078876, -0.00958757, -0.00970481, -0.00450394349, 0.0100044208, 0.0318890922, 0.00752936862, -0.0225229729, 0.0072297575, -0.000920002873, -0.00579031929, -0.00118704804, -0.0231612772, 0.00377445435, -0.0271213595, -0.016074812, 0.011743471, -0.0235390477, -0.0132350149, 0.00536695495, -0.000845100032, 0.0143422754, -0.00874735508, 0.00806997251, -0.00398613652, 0.0192402732, -0.021311501, -0.00138244685, -0.00999139436, -0.0260531791, -0.000770197134, -0.00428900449, 0.0212724209, 0.0253888238, -0.0164395571, 0.00403172942, 0.00952243712, 0.00281862845, -0.00953546353, -0.0108772023, 0.00369629473, -0.025623301, -0.00757496199, 0.00081212644, -0.00388192362, 0.0163744241, 0.00108039274, 0.00746423611, -0.000928144495, -0.00663704751, 0.0228095595, -0.0093856575, 0.000667205662, -0.00966572948, 0.0149936052, -0.0154365087, -0.0111963535, -0.00598897459, 0.00773128122, -0.00369303813, 0.0109097688, -0.0103561385, -0.0211942606, -0.012004002, -0.00142803986, 0.000343576306, 0.0096461894, -0.00122287113, 0.00895578, 0.00562748685, -0.00638954248, -0.027433997, -0.0102193598, -0.00234478619, -0.0099067213, 0.00535718491, 0.00310358498, 0.0197352841, 0.015644934, -0.0153453229, 0.000623648, -0.00638628565, 0.0262876581, -0.0143031953, 0.0217804573, -0.00676080026, 0.00402521621, -0.00562423, 0.0110660875, -0.0469478294, -0.0232003555, 0.0203214791, 0.0217674319, -0.00172602315, 0.00460164296, -0.0111377342, 0.00915769301, -0.0062560197, 0.00364744524, 0.00339994, -0.0132480413, 0.0141859557, 0.00760101527, 0.0019719, 0.00487845764, 0.00297657563, -0.0137300259, -0.0102389, 0.0149414986, -0.00797878578, 0.00925539155, 0.0156058548, -0.00354323233, -0.010688317, -0.0114373462, -0.00652957801, 0.00618763, -0.00383307412, -0.0143422754, -0.0177291892, 0.0207253043, -0.014029637, 0.00799832586, 0.00236595445, -0.0252064504, 0.0051292195, -0.00733397, -0.00354323233, -0.0011740214, -0.0153713757, -0.0241252445, 0.00557538029, 0.00598246139, 0.00524320221, 0.0122971, -0.00647421507, -0.00724929711, -0.0079006264, 0.0208685976, 0.00823280495, 0.0103170592, -0.0217153244, -0.00170648331, -0.0385587066, 0.00164216442, 0.0125771724, -0.00456907647, 0.00256460975, 0.0143031953, -0.0053441585, -0.0369173549, -0.000385098567, 0.016074812, -0.00918374583, 0.0129679702, 0.00372234802, 0.0312377624, 0.0128572444, 0.00425969483, -0.0176249761, -0.0251803976, -0.023682341, -0.00225685677, 0.00322082429, 0.021011889, -0.0204126667, -0.000979436678, 8.71407622e-07, -0.00150375697, 0.0144464877, 0.00893624, -0.0185759161, 0.000441682816, -0.00153876597, -0.00623647962, 0.0353541635, 0.0024685387, 0.020946756, -0.00909907278, 0.0108576622, -0.00176673126, -0.0346246772, 0.00918374583, 0.00597594818, 0.00803089235, -0.0137300259, 0.00207936927, -0.000508037, 0.0179766938, -0.00777687412, -0.00119600375, -0.00415222533, -0.00240503415, 0.0179245882, -7.31473529e-06, -0.0204908252, -0.00691711903, 0.0154495351, -0.00221126364, 0.0202954262, -0.0126423053, 0.0188234225, -0.00948987063, -0.0222884957, 0.00452999678, 0.00103724224, -0.00997836795, -0.00133278291, 0.0320193581, -0.00474493532, 0.000377160468, 0.0060638776, -0.00695619872, 0.00800483953, 0.00553304376, 0.00135069457, -0.0278508496, -0.0110400347, 0.00402521621, 0.00149642944, 0.0159445461, 0.00663379068, -0.00731443, -0.0239558984, -0.0348591544, -0.0270953067, -0.0260271262, -0.0034846128, 0.023682341, -0.0113982661, 0.0061974, 0.00382656069, -0.0209858362, -0.0105319982, 0.00509991, -0.0110074682, 0.0123752598, 0.00127253495, 0.00997185428, -0.0325925276, -0.00339668337, 0.0160487592, -0.00912512653, -0.00411314564, -0.0164004769, 0.013274095, 0.00606713397, -0.0072883768, -0.0237735268, -0.0140166106, 0.00967224315, -0.0102779791, -0.0177422147, -0.00232036132, 0.0227704793, -0.000290655793, -0.0131959356, 0.00584242539, -0.0128377043, 0.0210379418, -0.00104131305, 0.0270953067, -0.017950641, -0.0167521946, -0.0134694939, 0.00841517653, -0.00581311574, 0.00137349102, 0.0133783072, 0.0125576323, -0.00325664738, -0.0126944119, 0.0131373154, 0.0246072281, -0.00339994, -0.00526925549, 0.000223283889, -0.00650026836, -0.000608586, 0.00242131739, 0.0106166704, 0.0154755889, 0.0204778, -0.0202693734, 0.00245714048, 0.0216241386, 0.0170387793, 0.00332666538, 0.00251250342, -0.0307948589, -0.018836448, 0.0095419772, 0.0104929181, 0.00271604396, -0.0127465185, -0.0110139819, 0.0243206434, -0.000532868959, -0.0227053463, -0.0142641161, -0.0051292195, -0.00143211067, 0.0343120359, -0.0109944418, -0.00193119189, 0.0204387195, 0.0180548541, -0.000802763563, -0.00939217117, 0.00770522794, 0.0251934249, 0.00680639315, -0.00775733404, 0.0117304437, 0.0202954262, -0.00634394912, -0.0122775612, -0.0125185531, -0.00382656069, -0.00573169952, -0.0168694332, 0.0276684761, -0.024802627, -0.00553955743, 0.0158924386, -0.00854544248, 0.00952243712, -0.00296843424, 0.0112549737, -0.0184586775, 0.0209728088, -0.0211942606, -0.00218683877, -0.0150326844, -0.0108641759, 0.0450459458, -0.0115545848, -0.0116913645, -0.00674777338, -0.0111116813, 0.00499569718, 0.00480029825, 0.0203214791, 0.00241154735, 0.00337714329, -0.0215720329, 0.00512270629, 0.00706692506, 0.0151238702, 0.00247993693, -0.00273558381, -0.0239819512, -0.0161920507, 0.00646118866, -0.0286063906, 0.0089753205, -0.00798529945, -0.00686501293, -0.00551024731, -0.0103496257, 0.00983507559, -0.0124273663, -0.00504129, 0.00853241608, -0.0113266194, 0.00895578, 0.0170648322, 0.00594338169, 0.00157377485, -0.0216111131, 0.00531810522, 0.00952243712, 0.0018220942, -0.027173467, -0.000402806589, 0.0274861045, -0.0142510887, 0.0129679702, -0.0198394954, 0.0168824606, -0.0129158637, -0.00784200709, -0.00756193511, 0.00101851649, -0.0191490874, -0.00583591219, 0.0146418866, 0.0016323945, -0.0112549737, 0.00494033424, 0.0134434402, 0.00160145632, -0.00417502178, -0.0156319086, 0.00874735508, -0.0258187, -0.0146939931, -0.00240503415, 0.009848102, -0.0554932728, 0.026183445, -0.0109749017, 0.00856498256, -0.00692363223, 0.000139119904, -0.0224708673, -0.0106557505, -0.0106166704, 0.0128637571, 0.00451371353, -0.00360510871, 0.0131568555, 0.0115155056, 0.0100304745, 0.0187452622, -0.0175728686, -0.00427272124, 0.00287236297, 0.00629509939, -0.00196538679, 0.0297006238, 0.00556235388, 0.0200870018, -0.0197092295, -0.00429226132, -0.00678034, -0.0230310112, 0.0123557206, -0.0102454126, 0.0072883768, -0.0105971303, -0.0325143673, 0.000234885694, 0.0120821623, 0.0044095004, 0.00279420358, 0.0124143399, 0.0254669823, -0.00478727184, 0.00283979648, 0.0078029274, 0.00774430763, 0.00848682318, 0.0164135024, -0.0242555104, -0.0241903774, -0.0222103354, 0.0124729592, 0.0163483694, 0.024998026, -0.00769871473, 0.000362709106, -0.0245551225, 0.011658798, -0.00145002222, 0.0177161619, 0.0107990429, -0.00563074322, 0.00520412251, 0.00184163416, 0.00453651, -0.0180418268, 0.00071646244, 0.022822585, 0.0274079442, 0.000262363668, -0.00991323497, 0.00407732278, -0.00268510589, 0.0364223458, -0.0182241984, -0.00674777338, -0.017820375, 0.0144464877, 0.0212333407, 0.0072297575, -0.0169997, 0.0107078571, -0.00873432867, -0.00854544248, -0.0249719732, -0.0121928882, 0.00249947701, 0.00748377573, -0.0096917823, 0.00266719423, 0.0216241386, 0.00324687758, 0.00800483953, -0.00169834169, -0.005236689, 0.0044648638, -0.0180288, 0.021871645, 0.00650026836, -0.022627186, -0.0187843423, -0.017090885, -0.0525492616, 0.00335760345, -0.00972434878, 0.0283198059, 0.00507385656, 0.0314982943, 0.00869524851, 0.0116327442, 0.0140426634, -0.0113982661, 0.00649049832, -0.0126032252, 0.0230049565, -0.0135867335, 0.020946756, -0.0325925276, 0.00888413377, -0.0199437086, -0.0119453827, -0.0096917823, 0.01745563, -0.00290655787, -0.00851939, 0.0226532388, -0.0107339099, 0.00550699094, 0.00353671913, -0.0102063334, 0.00452348311, 0.00812207907, -0.00803740602, 0.020386612, -0.0416329801, 0.00267045083, 0.00892321393, -0.0222494155, -0.012648819, -0.026183445, -0.00546465442, 0.000650108268, -0.017950641, -0.020582011, -0.00947033055, -0.000999790733, -0.00730140368, 0.00588476192, -0.0172211509, -0.000995719922, 0.00672823377, 0.00651003839, -0.0135737062, -0.00309055834, -0.000136779199, 6.3860818e-05, 0.0229267981, -0.0336867608, 0.00495010428, 0.0208425429, 0.00151678349, -0.0228356123, 0.00360836531, -0.0127074383, 0.000271115889, -0.00836958364, 0.0379594825, -0.00222103344, -0.0246853884, -0.0116783381, -0.0113005666, -0.00343250646, 0.009848102, 0.00659471098, -0.0117760375, 0.0205559582, 0.000617948826, -0.00460489932, -0.00281537161, 0.0170127265, 0.0134825204, 0.00102991471, 0.0061029573, -0.015149924, -0.012004002, 0.0117369574, -0.0026118313, -0.00314429309, -0.0105775911, 0.0167000871, -0.00877992157, -0.0167782474, 0.0159705989, -0.0217934847, 0.00233827275, 0.0119844628, 0.0212203152, 0.0200218689, -0.00311498321, -0.0251673721, 0.00012965528, 0.0107925292, -0.0312638171, 0.011463399, -0.0138602918, 0.0380115882, 0.00453325314, -0.0194877777, -0.0227183718, 0.0307427514, 0.00640256889, 0.00582288578, -0.00410011923, -0.0193054061, -0.00502175046, -0.011268, 0.013899371, 0.000245673349, 0.00456256326, 0.0114178061, 0.011938869, 0.01409477, 0.0187582895, -0.0138212116, 0.005549327, -0.00782898068, 0.0168564077, -0.0083630709, 0.0120105157, 0.00204028958, 0.0125250658, -0.0222494155, 0.0144725414, 0.0239949785, 0.026613323, 0.0101151466, -0.0104408115, 0.0227704793, -0.00879294798, 0.019565938, -0.000670869369, 0.00241643237, 0.00331201032, -0.0169085134, 0.00119274715, -0.0401740037, 0.0140035842, 0.00926841889, 0.0129419165, 0.00141745585, 0.020191215, -0.0267566144, -0.0146158338, -0.00254344172, -0.000139527, 0.0124273663, 0.00618437352, -0.0148893921, 0.00778990053, -0.0133783072, -0.00634720596, -0.0341817699, 0.00806345884, -0.0048230947, -0.00917723216, -0.0106687769, 0.0125901988, -0.0101998197, 0.00232524634, 0.0100174472, -0.0211812351, -0.00509665301, 0.00595966494, -0.000441682816, -0.0089883469, -0.0170648322, 0.00715159765]
12 Jun, 2023
multimap empty() function in C++ STL 12 Jun, 2023 The multimap::empty() is a boolean type observer function in C++ STL which tells whether the container is empty or not. This function returns true when the multimap container is empty (i.e. the size of the container is 0). Being an observer function it does not modify the multimap in any way. Syntax: multimap1.empty() Return Value: This method returns a boolean type value. It returns true when multimap is empty else returns false. Below program illustrate the multimap::empty() function: CPP // C++ program to demonstrate // std::multimap::empty #include <iostream> #include <map> using namespace std; int main() { // declaring multimap multimap<char, int> mmap; // checking if mmap is empty or not if (mmap.empty()) cout << "multimap is empty\n"; // inserting values to mmap // thus making it non empty mmap.insert(pair<char, int>('a', 26)); mmap.insert(pair<char, int>('b', 30)); mmap.insert(pair<char, int>('c', 44)); // checking that mmap is now not empty if (mmap.empty()) cout << "multimap is empty\n"; else cout << "multimap is not empty\n"; return 0; } Output: multimap is empty multimap is not empty Time Complexity : O(1) Learn C++ Online – Master everything from basics to advanced concepts. Apply your knowledge with practical exercises and boost your skills. Take the Three 90 Challenge: finish 90% in 90 days for a 90% refund. Start now and level up your C++ programming!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum/Algorithm for Dynamic Time out timer Calculation/Difference between Round trip time (RTT) and Time to live (TTL)/Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms/Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm/Round Robin Scheduling Algorithm with Different Arrival Time/Selfish Round Robin CPU Scheduling/Find the order of execution of given N processes in Round Robin Scheduling/Calculate server loads using Round Robin Scheduling/set::lower_bound() Function in C++ STL/Implementation of lower_bound() and upper_bound() in List of Pairs in C++/Difference between std::set::lower_bound and std::lower_bound in C++/Difference between std::set vs std::vector in C++ STL/std::minmax() and std::minmax_element() in C++ STL/std::rotate vs std::rotate_copy in C++ STL/std::bitset::to_ullong and std::bitset::to_ulong in C++ STL/std::upper_bound and std::lower_bound for Vector in C++ STL/std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++/std::string::append vs std::string::push_back() vs Operator += in C++/Vector push_back() in C++ STL/vector :: cbegin() and vector :: cend() in C++ STL/unordered_multiset cend() function in C++ STL/unordered_multiset bucket() function in C++ STL/unordered_multiset emplace_hint() function in C++ STL/unordered_multiset end() function in C++ STL/unordered_multiset size() in C++ STL/unordered_multiset emplace() function in C++ STL/unordered_multiset find() function in C++STL/unordered_multiset erase() function in C++ STL/unordered_multiset clear() function in C++ STL/unordered_multiset swap() function in C++ STL/unordered_multiset bucket_size() function in C++ STL/unordered_multiset bucket_count() function in C++ STL/unordered_set bucket_count() function in C++ STL/unordered_set cbegin() function in C++ STL/array::cbegin() and array::cend() in C++ STL/array::rbegin() and array::rend() in C++ STL/multimap rbegin in C++ STL/vector rbegin() and rend() Functions in C++ STL/multiset rbegin() and rend() function in C++ STL/map rbegin() function in C++ STL/map upper_bound() function in C++ STL/Set upper_bound() in C++ STL/multimap upper_bound() function in C++ STL/multimap empty() function in C++ STL
https://www.geeksforgeeks.org/multimap-empty-function-in-c-stl?ref=asr10
PHP
multimap empty() function in C++ STL
unordered_multiset clear() function in C++ STL, What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, jQWidgets jqxTreeMap width Property, Round Robin Scheduling Algorithm with Different Arrival Time, Difference between Flow and TypeScript, unordered_multiset emplace() function in C++ STL, jQWidgets jqxTree destroy() Method, unordered_set bucket_count() function in C++ STL, jQWidgets jqxTree collapseAll() Method, Find the order of execution of given N processes in Round Robin Scheduling, jQWidgets jqxScrollView buttonsOffset Property, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Vector push_back() in C++ STL, jQWidgets jqxListBox enableHover Property, Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm, std::rotate vs std::rotate_copy in C++ STL, Selfish Round Robin CPU Scheduling, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxSlider buttonsPosition Property, std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++, std::upper_bound and std::lower_bound for Vector in C++ STL, Difference between Round trip time (RTT) and Time to live (TTL), jQWidgets jqxSlider rtl Property, Difference between std::set::lower_bound and std::lower_bound in C++, jQWidgets jqxTooltip opacity Property, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, unordered_multiset erase() function in C++ STL, jQWidgets jqxToolBar height Property, PHP, std::minmax() and std::minmax_element() in C++ STL, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, map rbegin() function in C++ STL, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, map upper_bound() function in C++ STL, Node.js date-and-time Date.transform() Method, unordered_multiset size() in C++ STL, TypeScript Optional Parameters, jQWidgets jqxToolBar theme Property, Difference between std::set vs std::vector in C++ STL, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, Steps to Diagnose and Resolve a Slow Network, How to use Optional Chaining with Arrays and Functions in TypeScript ?, Calculate server loads using Round Robin Scheduling, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, jQWidgets jqxScrollView showButtons Property, Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms, jQWidgets jqxScrollView disabled Property, jQWidgets jqxSplitter destroy() Method, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, set::lower_bound() Function in C++ STL, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, jQWidgets jqxTree collapseItem() Method, multimap upper_bound() function in C++ STL, std::string::append vs std::string::push_back() vs Operator += in C++, unordered_multiset swap() function in C++ STL, unordered_multiset cend() function in C++ STL, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), Set upper_bound() in C++ STL, jQWidgets jqxSortable opacity Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, multimap rbegin in C++ STL, vector :: cbegin() and vector :: cend() in C++ STL, jQWidgets jqxSlider height Property, jQWidgets jqxSwitchButton onLabel Property, unordered_multiset bucket_size() function in C++ STL, unordered_set cbegin() function in C++ STL, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, jQWidgets jqxToolBar tools Property, multimap empty() function in C++ STL, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTree width Property, Implementation of lower_bound() and upper_bound() in List of Pairs in C++, jQWidgets jqxTree clear() Method, TLS Handshake?, multiset rbegin() and rend() function in C++ STL, Algorithm for Dynamic Time out timer Calculation, Adhoc TCP, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, jQWidgets jqxTabs position Property, Differences between Wireless Adhoc Network and Wireless Sensor Network, jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, std::bitset::to_ullong and std::bitset::to_ulong in C++ STL, unordered_multiset emplace_hint() function in C++ STL, unordered_multiset bucket_count() function in C++ STL, unordered_multiset find() function in C++STL, unordered_multiset bucket() function in C++ STL, Impact of Three-way Handshake and Slow Start Algorithm, array::rbegin() and array::rend() in C++ STL, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, vector rbegin() and rend() Functions in C++ STL, array::cbegin() and array::cend() in C++ STL, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, unordered_multiset end() function in C++ STL, How to Sort an Array Having Optional Properties in TypeScript ?
GeeksforGeeks
[-0.0281271785, 0.0149908587, -0.014527224, 0.0311705247, 0.0318600312, -0.0292208809, -0.0331201702, 0.0144083435, 0.00371502247, 0.00253661745, -0.00902899075, 0.0192586761, -0.0262250863, -0.0181887504, -0.01516918, -0.0373523235, 0.0186761618, 0.0224565677, -0.00904087909, -0.0157041438, -0.0148363141, 0.0146817686, -0.012803453, 0.0105387755, 0.0108240899, -0.00841081049, 0.0141111417, -0.0153475013, -0.00435995031, -0.000619294238, -0.00352778542, 0.0122922668, 0.000509329606, -0.0187593773, -0.0374474265, -0.00940346532, 0.0323831066, 0.00321572344, 2.93486773e-05, -0.0150978509, 0.0188069306, 0.0054239328, 0.0110677946, 0.000861885201, -0.0165600851, 0.017130712, -0.0248222947, -0.0182957426, -0.0344991833, 0.0179153252, 0.0589648373, -0.00491274567, 0.0448418073, -0.00260200165, 0.00421134941, 0.0223495755, 0.025678236, 0.000609263661, -0.0135761779, -0.0510711558, -0.0201621708, -0.00305523444, 0.0216600671, -0.00820871349, -0.0416795798, -0.0037328545, -0.0363537222, 0.017701339, -0.00560522592, -0.0119356243, -0.0403243415, 0.0403956696, -0.0501676649, -0.0115433177, -0.0234076139, 0.0149195306, -0.0398725942, 0.00388442748, 0.00631851, 0.0261537582, -0.0340236612, -0.0132908644, -0.00235532434, -0.00244597089, 0.0321215689, 0.0221474785, -0.00256633759, -0.027128581, 0.0578711331, 0.0684752911, -0.0184383988, -0.0207684617, -0.0162628833, 0.0399676971, -0.00251432718, 0.0135167381, 0.0127202366, 0.0185335036, 0.000830679, 0.0408949666, 0.0106041599, -0.0225397851, -0.00380715495, 0.0289117917, -0.00405680435, -0.00605400046, 0.0441760756, 0.00500487816, -0.00507917861, -0.000372802519, 0.0228132103, 0.00433320226, -0.0258922204, 0.0250838324, -0.0114541575, 0.0227537695, -0.0179985408, 0.00779857533, 0.0294110905, 0.00255296356, -0.0197342, 0.029934166, -0.0316698253, 0.00883878116, -0.0425355211, 0.0292446576, -0.0281271785, 0.0174873546, 0.00531099597, -0.0260586534, 0.00904682279, -0.0162034426, -0.0214104168, -0.0638627261, -0.0173090324, 0.000897549442, 0.00770347053, 0.0333103761, -0.0200789534, -0.0173209216, -0.0588697307, -0.00174308859, 0.0126370201, 0.0425830744, -0.0157635827, -0.0437956564, 0.0181887504, 0.029458642, 0.0148838665, -0.0105268881, -0.043653, -0.00374771468, 0.0297915079, -0.011097515, 0.00580137921, -0.018818818, 0.0374712, -0.0118999602, -0.0367103666, -0.0211607683, 0.00256633759, -0.0312418528, 0.0328110792, -0.0215530749, -0.036520157, 0.0193775576, 0.0233957265, 0.0208160132, -0.0139328204, 0.0338810049, 0.0073171081, 0.048883751, -0.00511484314, -0.00558739388, 0.0214341935, -0.0175586827, 0.0322642289, 0.0226348881, 0.00209527276, 0.0259635486, -0.0169642791, -0.0164887551, -0.0035961417, 0.0221593659, 0.0146579929, -0.0256306827, 0.0145985521, -0.0312418528, 0.0309089869, -0.0213747527, -0.0337621234, 0.0428208336, 0.0366152599, 0.00679403311, 0.0261775348, 0.0354502313, -0.00230628601, 0.0390404277, 0.0120663932, 0.0454837643, 0.00072368636, -0.00732305227, -0.0397537127, 0.0240257941, 0.00529613625, 0.0078580156, -0.0140160369, -0.0105506638, 0.0317887031, -0.00740626873, -0.00784018356, 0.00314736716, -0.0106338803, 0.0076856385, 0.0365914851, -0.00700207427, -0.0565396696, 0.0313369595, 0.031622272, 0.00471362052, 0.0172733683, -0.00146891992, 0.0137307234, -0.0496445894, -0.0619606301, -0.0289117917, 0.00249649514, 0.0105506638, 0.0177845564, 0.00104540738, 0.025606906, 0.0368767977, -0.0143845668, -0.0116087021, 0.0071922834, -0.0247034132, -0.0250362791, -0.0219810456, 0.0136356186, 0.00754892547, 0.034356527, 0.0300292689, -0.0251551606, -0.0112758363, 0.0254166983, 0.0296012983, 0.000159560223, -0.0413704887, -0.00882094912, -0.00383984717, 0.0435341187, 0.0285551492, 0.0296012983, -0.0165244192, 0.00468984433, 0.0168097336, 0.00161231973, -0.0235264935, -0.026890818, -0.0330726169, -0.0257971156, 0.0308376588, -0.0111391237, 0.00911815092, -0.0159894563, 0.00918948, 0.0225397851, 0.0157398079, -0.0252264887, -0.0119177923, 0.0209467821, 0.00349212112, -0.00410732906, 0.00426484598, 0.0164530911, 0.00344159687, -0.0486222133, 0.0151572917, -0.0248698462, -0.0581564493, 0.0250125024, -0.00345645682, -0.0410376228, -0.0196747594, 0.0552557595, 0.0158824641, -0.00461554388, -0.0127915656, -0.036924351, -0.0189733636, -0.0250838324, -0.00663354434, -0.00695452187, 0.0251551606, 0.00534368819, 0.0223257989, -0.00434509, -0.000452118227, -0.0400628038, 0.0217670593, -0.0079234, -0.00198085, -0.0249174, -0.0376614109, -0.0228845384, -0.0299103893, -0.0100097563, -0.0357355438, 0.0262013096, -0.06067672, 0.00579543505, -0.032026466, -0.00849997159, 0.0122090494, -0.0148125375, -0.00466012442, 0.0141824698, -0.00107661355, -0.0315747187, -0.0263677444, 0.0120188408, 0.0206139162, 0.0100038126, 0.0160607845, 0.00545365317, -0.0451033451, -0.0124943638, 0.0074359891, -0.0133146401, -0.0446991511, -0.0071685072, 0.0443425067, -0.0220523737, -0.00756675797, 0.0142300222, -0.0302194785, -0.00499001797, -0.0240139049, 0.0137782758, 0.0459830612, -0.0264152959, -0.00663354434, 0.00927269645, 0.0221474785, 0.0236097109, -0.0202810504, -0.00907059852, 0.000348654867, -0.0303859115, 0.0441523, 0.000518617162, 0.00435103429, 0.00460068369, -0.0014785789, 0.00348617719, -0.0123160426, -0.0404194444, -0.0225754492, -0.00158854364, 0.00169107819, -0.0078580156, 0.0351886936, 0.0456977487, -0.00885661319, -0.0283887163, -0.0113649964, -0.0204831474, -0.0244418755, 0.0254404731, -0.00602428056, 0.0478376, -0.0386362337, 0.0073111644, 0.0407998636, -0.0461019427, 0.00816116109, 0.00132849207, 0.0393257402, -0.0167740695, -0.00201057014, -0.00511484314, 0.0482893474, 0.00505837472, 0.00367935817, 0.00466309628, -0.0125181396, -0.00202543032, 0.0132552, -0.0276992079, 0.0227775462, -0.0285789259, 0.037328545, 0.00858318806, -0.0117275827, 0.0133384168, 0.0169523899, -0.036520157, -0.010069197, -0.0451271199, -0.0576333739, 0.0257495642, 0.00208189851, 0.0215649623, -0.0105387755, -0.0257495642, -0.0117038069, 0.0054001566, 0.0133621925, -0.013683171, 0.0247747414, -0.00487113744, 0.0149908587, -0.00308198272, 0.00907654315, 0.0129223345, -0.0162985474, -0.0631969869, 0.0411565043, 0.00154842134, 0.00553092547, -0.016726518, -0.0315747187, -0.0133621925, -0.0100870291, -0.00337621244, 0.0239663534, -0.000708083273, 0.00725766784, -0.00174308859, -0.032739751, 0.041013848, 0.0113293324, 0.0330488384, 0.00685941754, 0.00669892877, -0.0315033905, -0.016821621, 0.0111807315, -0.00795312, -0.0337621234, 0.041108951, 0.0303621367, 0.0334292576, 0.0114303809, 0.00688913791, 0.019900633, -0.00970661081, -0.00776885496, 0.024156563, -0.00153504731, -0.0306236725, 0.0453173295, -0.025369145, 0.00968877878, 0.0263439678, -0.01830763, 0.020673357, -0.00498110196, 0.0318600312, -0.0014785789, -0.0187593773, 0.0304096881, -0.0071685072, -0.000642327359, 0.00476711662, 0.00184413721, -0.0024221947, 0.0422977582, -0.00637200661, -0.0339761078, -0.00718039554, -0.0191279072, -0.000877488288, -0.00642550271, 0.0170474946, 0.00329596805, -0.0213272013, 0.000558739353, -0.0329299606, -0.0159775689, 0.0289117917, 0.00471956469, -0.0303621367, 0.00210864679, -0.0164649803, -0.0143726794, 0.0201740582, -0.00081061793, 0.00665732, -0.00215025502, -0.0139565961, -0.00670487247, 0.024964951, -0.0413467139, 0.00204029027, 0.0544473678, -0.0247509666, -0.00411030091, -0.00243408279, -0.0207565743, 0.0451746732, 0.00472253654, -0.00896955, 0.0597732253, 0.0131957596, -0.0371383354, 0.00122670038, 0.00349212112, -0.0192943402, -0.00803039223, -0.0133503051, 0.0432012528, 0.0152048441, -0.0113055566, 0.0220999252, 0.01091325, 0.0326446444, -0.000368344481, -0.000858913176, 0.0162866581, -0.0016673021, 0.0182244144, 0.0352600217, 0.0274852216, 0.00735871634, 0.0280082971, -0.0139209321, 0.00921325572, 0.0405145474, -0.0248936228, 0.000502642535, 0.0058459593, -0.00309387082, -0.00475522876, -0.00638389448, -0.0268432666, -0.0141586941, -0.00448477501, -0.0296488516, -0.0294348653, -0.00754892547, -0.00889227819, 0.0257733408, 0.00504054269, 0.00593512, -0.0076618623, 0.0319551378, -0.0237048157, -0.00684158551, 0.0151572917, 0.0328586325, -0.0275089983, 0.0164412037, -0.0176775623, -0.00274317269, 0.0125775803, -0.018616721, -0.0516893379, 0.011335277, -0.0146698812, -0.0235978235, 0.00523372367, -0.00187980139, 0.00607777666, 0.00545365317, -0.0118702399, -0.00314439507, -0.0209705587, -0.00309981476, -0.00373582658, -0.0124230348, -0.00873773266, 0.0220999252, -0.0198411923, -0.0271761324, 0.0261062067, 0.0144796716, 0.023883136, -0.0378040671, -0.0108359773, -0.000874516321, 0.00771535886, 0.0273901187, 0.000724800862, -0.00541798864, -0.00843458716, -0.0192824528, -0.0265104, -0.048883751, 0.033239048, 0.00950451382, 0.0363775, 0.00529019209, -0.000973335875, 0.0239425767, -0.024560757, 0.00787584763, -0.0249174, -0.00737654883, -1.18706578e-06, -0.00228845375, -0.00495732622, 0.00965905841, 0.0223614629, 0.0159537923, 0.030742554, -0.00658599194, -0.00315331109, 0.0290068947, 0.00879717339, -0.063815169, -0.00974227488, 0.0150978509, 0.00631256634, 0.0187712647, 0.0205663648, 0.00353967352, 0.0142656863, -0.0333103761, -0.0176656749, -0.0263439678, -0.0314320624, -0.00200462621, 0.018414624, -0.00409841258, -0.0182957426, -0.0329299606, 0.00862479582, 0.00125493458, -0.0232887324, 0.0216125157, -0.0116443662, -0.00879717339, -0.0414418206, 0.0266768336, 0.0224684551, -0.0071625635, 0.016417427, -0.0138971563, 0.0410376228, -0.00756675797, 0.00470470451, -0.00520103145, 0.019793639, -0.0015068131, -0.0202097222, -0.029458642, 0.0157635827, 0.019627206, -0.0265341774, -0.0285551492, 0.0117275827, -0.0175230186, -0.00819682516, -0.00123413047, -0.00691291364, -0.00497813, 0.0216957312, 0.00997409225, -0.00533774449, -0.018818818, -0.0338096768, -0.019389445, -0.036115963, 0.0107587054, 0.00870206859, -0.043272581, -0.0537340865, -0.00826815423, 0.00983738, 3.48283356e-05, -0.00143697066, -0.0169167258, -0.0040776087, -0.00649683131, -0.0349747092, -0.0075132614, 0.025606906, -0.00915976, 0.000514902116, 0.0152999489, 0.00234640809, 0.0227062181, -0.0238712486, 0.0073408843, -0.00553686963, -0.00129802886, 0.0284838211, 0.00189763354, -0.0452697761, -0.0105922725, -0.0248460695, 0.00309089874, 0.00996220391, -0.0107408734, -0.0055487575, -0.00810766499, 0.0170712713, -0.0385411307, -0.00598861603, -0.00121332635, 0.0224922318, -0.031622272, -0.00929647218, -0.00990870781, 0.0498823486, 0.00454718759, -0.0250838324, -0.00485924957, -0.0015751695, 0.0208041258, -0.0274376702, -0.0231936276, -0.00109295966, -0.00422026543, -0.0112401722, -0.000655701442, 0.000152315915, 0.00503162667, -0.0495019332, -0.0170356072, 0.0213985294, 0.00561117, 0.0197579749, 0.0216719545, -0.0115433177, 0.0111747878, -0.0203761552, -0.0175230186, -0.00575977098, -0.0367341414, 0.00191249361, 0.00221266737, -0.00670487247, -0.0239544641, 0.00533180032, 0.0278180875, 0.0017356585, -0.0033583804, -0.00266292808, 0.013445409, 0.0167384055, -0.00842864346, 0.0312418528, 0.0282222833, -0.0216362905, 0.0360446349, -0.00696046604, -0.0328586325, 0.00679403311, 0.0155377099, 0.0296488516, 0.00860102, -0.0200551767, 0.0152523965, 0.00402411213, 0.0395397283, -0.0192467887, 0.0295537468, -0.00939752068, 0.00316222711, -0.0285075959, 0.0108359773, 0.040847417, 0.0040776087, -0.0153950527, -0.0071387873, 0.0333341546, 0.0174279138, -0.00831570663, -0.0330726169, 0.0025277012, 0.0261537582, 0.013445409, -0.00268373219, -0.039801266, -0.0162866581, 0.0123517066, 0.0175586827, 0.0127202366, -0.015371277, 0.0294824187, 0.0168453977, -0.000573228, 0.00930836052, 0.00119103619, 0.0281985067, 0.0389691, 0.0128272297, -0.00989087578, 3.20420695e-05, -0.0128510054, 0.0215055216, 0.0073171081, 0.00969472248, -0.0377565175, -0.0155971507, -0.04206, -0.00069545221, -0.0297201797, 0.00422918145, 0.0178915486, 0.00666326424, -0.00124973361, -0.0248222947, -0.0230271947, 0.0391355343, 0.0318838097, 0.0187712647, 0.0350222588, -0.0188307054, 0.00930836052, 0.0198055282, -0.00633634254, 0.00521886349, 0.00707934704, -0.000829936, -0.00124304648, -0.00412218878, 0.0173684731, 0.0109667461, -0.0338572301, 0.0249887276, -0.0226943288, 0.00577760302, 0.00195707381, 0.0384460241, 0.00965905841, 0.022670554, -0.0261775348, 0.0162985474, 0.0113768848, 0.000579543528, 0.0238355845, 0.00940940902, -0.017737003, 0.000615579251, -0.0232055169, -0.00877934135, 0.0512138121, 0.00447585899, -0.00454718759, -0.03459429, -0.0160251204, 0.0172733683, -0.00917759165, 0.0074597653, 0.0490264073, -0.00104392134, 0.0336194672, 0.0204950366, 0.0120842252, -0.00605994463, 0.0150146345, 0.0110261869, 0.0081136087, -0.0395872779, -0.0305998977, 0.0189020336, 0.0360208564, -0.00939752068, 0.00908843055, 0.012839118, 0.0172614809, 0.0153118363, 0.022670554, -0.0160370097, -0.0502627678, 0.0263915192, 0.000727029925, -0.0243705474, -0.0225635599, -0.00294229784, -0.00130991696, -0.0075370376, -0.0170831587, 0.0053228843, -1.08141985e-05, 0.014527224, 0.00707340287, 0.0293397624, -0.0225635599, -0.0199600719, -0.0497396924, -0.0228369869, -0.000780154718, 0.00304334634, -0.0391117558, -0.00300768227, -0.0168097336, 0.0199481845, 0.000554281345, -0.0226467773, -0.0171188228, 0.0245845336, -0.0137782758, 0.0102177979, -0.0261775348, 0.00939157698, -0.0251313839, 0.00986115541, -0.0241684504, 0.00923108775, 0.0215411857, -0.00566466618, -0.00191843766, 0.0561117, 0.0222069193, 0.00352184125, 0.00393792382, -0.0202216096, -0.00579543505, -0.0212320965, -0.0243705474, -0.00446991483, 0.00871395692, 0.000465120829, -0.00359911378, 0.0355453342, 0.0309803151, -0.00146446191, 0.0352600217, -0.00611046888, -0.000216957313, -0.0167740695, -0.0197223108, -0.00409544073, 0.00200908422, -0.0106338803, -0.00971255451, -0.0303859115, 0.0254880264, 0.0217432827, 0.00862479582, 0.0102831824, -0.0232530683, -0.0209824461, -0.0135524021, -0.0592501499, -0.0009763079, 0.00126459368, -0.00112119375, -0.000483324431, 0.00483844522, -0.0453648828, 0.0339047797, -0.0503578745, -0.0262250863, 0.0122922668, -0.0247509666, -0.0242160019, 0.00671081664, 0.0174041372, -0.0117038069, -0.0146342162, -0.0148006491, -0.014551, -0.00123933156, -0.0145153357, 0.00587270735, 0.0186048318, 0.00227507972, 0.0402292348, -0.0107765375, 0.0522124134, 0.003471317, -0.0176418982, -0.0293397624, -0.0165719725, -0.0036436941, 0.0330012888, -0.0183670707, 0.0101167494, 0.0308376588, 0.00423512561, 0.01516918, -0.0507858433, -0.0329299606, -0.000802444876, 0.02047126, 0.0170474946, 0.00201651431, 0.000482952921, -0.00474928459, 0.000196524692, 0.0228964258, -0.00204177643, -0.00884472579, -0.0218265, 0.0247509666, -0.014087365, -0.00905276649, -0.0134929614, -0.00294527, 0.0340712145, 0.0396586098, 0.00376257487, -0.0387788899, 0.00245488691, -0.029458642, -0.0286027, -0.0204593726, -0.0369956791, 0.0213985294, -0.0132670887, -0.0476236157, -0.0325495414, 0.0412753858, -0.0124943638, 0.00750731723, 0.0255355779, -0.048883751, -0.0199838486, -0.00401222426, -0.00411921693, -0.000127611027, -0.0137426108, -0.00659193611, 0.0465299152, 0.0222901348, -0.0120663932, -0.00409841258, -0.0498823486, -0.00358128175, 0.00398547621, 0.00288582942, 0.00607183296, -0.000239247442, 0.00691291364, 0.00817899313, 0.0208635665, -0.00981954765, 0.00382795907, 0.0117454147, 0.0163104348, -0.0171426, -0.0205663648, -0.0395397283, 0.00772130257, -0.000397878903, -0.0142537979, -0.00478197681, -0.0161321145, 0.0133978575, 0.00714473147, -0.0126726851, -0.019425109, -0.00759647787, 0.00784018356, 0.00777479913, -0.0110915713, 0.00633039838, -0.0238593612, 0.00821465813, 0.0220048204, 0.00719822757, 0.026248863, -0.0055012051, 0.0338334516, -0.0078639593, -0.0257257875, -0.0142894629, 0.0054952614, -0.001490467, -0.00488896947, 0.00858913176, 0.0213985294, 0.000737060443, 0.0562068038, 0.0050732349, 0.0178677719, -0.0262013096, -0.0261775348, -0.0294110905, 0.0155258216, -0.0140398126, 0.0236572623, 0.0041489373, 0.00495435391, -0.02010273, -0.00809577666, -0.0288404617, 0.0002154713, 0.0216244031, 0.00295567187, -0.0255355779, -0.0141586941, 0.00211607688, -0.0273187887, -0.00511484314, -0.00656221574, 0.0159656815, 0.015573374, 0.00770347053, 0.0215174109, 0.000985223916, 0.0212796479, 0.0436054468, -0.0205663648, -0.000750434527, -0.0176894516, 0.0108062578, -0.0012876268, -0.0193656683, 0.0118226875, 0.026962148, 0.0158824641, 0.00899332669, 0.0142656863, -0.0145391123, 0.0214698575, -0.0114719896, 0.0101048611, 0.0296250749, -0.0121555533, -0.0371383354, -0.031146748, -0.0347369462, 0.00598564418, 0.00473739672, -0.0163342115, 0.0113768848, -0.0119712884, 0.0299579408, -0.0316698253, -0.0260586534, 0.0194607731, -0.0124824755, 0.00116577407, 0.00784612726, -0.0368767977, 0.00891011, 0.0227537695, 0.0314558372, 0.00966500212, -0.00666920841, 0.035806872, -0.0133503051, 0.00639578281, -0.00262131984, 0.00923703145, -0.00795312, -0.012767789, 0.0229796432, -0.00759053417, 0.0171782635, -0.0125300279, -0.0189733636, -0.0485508852, 0.0328824073, 0.00946290512, 0.0121198893, -0.0144083435, 0.00334352022, -0.023681039, -0.00435697846, -0.0184027348, -0.0179153252, -0.00771535886, 0.00198828, -0.00825032219, 0.00650871918, 0.0143132387, -0.0155139342, -0.0120128971, 0.0210181121, 0.000748205523, 0.0360684097, 0.012363595, 0.0259397738, -0.0121555533, -0.0382082649, 0.0221593659, 0.013445409, -0.0200314019, -0.0308614355, 0.00441641873, -0.00435697846, 0.0276041031, -0.00700801844, 0.0168335102, 0.00659193611, -0.0227181055, -0.00465715211, -0.0154426051, -0.0278656408, 0.0173803605, -0.0228013229, -0.0158824641, -0.0135999545, 0.0255593546, -0.0186999366, 0.000251135527, -0.00664543221, 0.0167027414, -0.00215322711, 0.0169761665, -0.0325019881, -0.0107289851, 0.0204474833, 0.0220999252, 0.00408652471, -0.0267719384, -0.019900633, -0.0179153252, -0.00512078684, 0.00642550271, -0.00217848923, -0.00035571339, 0.00816116109, -0.0113709411, -0.00210716086, -0.00391712, -0.0131482072, 0.00103129027, -0.00238950248, -0.0287691336, -0.010253462, 0.0178083312, -0.0153593887, -0.000518617162, 0.0314082876, 0.00927269645, 0.00643739104, -0.0176062342, -0.00370016228, -0.000422026555, -0.0117751351, 0.0118405195, -0.0158705767, -0.0119594, 0.0159537923, 0.010271294, 0.00826221, -0.0125538036, 0.00188574544, 0.0362823941, 0.0154069411, 0.0131719839, -0.00478197681, -0.00154544937, -0.0208397899, 0.0146342162, 0.00187088537, 0.0145391123, -0.00261686184, -0.00113531086, -0.0204237085, -0.0120901689, -0.0235027187, -0.0272474606, -0.00740626873, -0.0163460989, 0.00840486679, 0.0153831653, -0.000767523656, -0.0416320264, -0.0180104282, 0.00932024885, 0.0323593318, 0.0169642791, -0.0058162394, -0.0249411743, -0.0121852737, -0.0457215235, -0.0374474265, 0.00381904305, 0.0104198949, -0.00562603027, -0.00219334918, -0.0070139626, 0.0150978509, 0.0128510054, 0.00204772037, 0.0157279186, -0.00380121102, 0.0203880426, -0.0295061953, -0.0156565905, 0.00431834208, -0.0200195126, -0.0137426108, 0.00561117, -0.0152880605, 0.0225397851, -0.0109786345, -0.00169999432, -0.00405977666, -0.0132314237, 0.00502865436, -0.0181649737, 0.0151335159, 0.0272712372, 0.0125894686, 0.00186939933, 0.000254107552, -0.0103366785, -0.00213539484, 0.00784612726, -0.000864114205, -0.0142062455, -0.000518988643, -0.0262013096, -0.0121852737, 0.00744193327, 0.0159062408, -0.00655627158, 0.0250362791, 0.00797095243, 0.0216481797, 0.0169405024, -0.00595889613, 0.0297439564, 0.0181768611, 0.0153950527, 0.00885661319, 0.020067066, 0.000774210668, 0.0343327522, -0.00474334089, -0.00933808088, -0.00479089282, 0.013005551, 0.0110321306, -0.0129698869, -0.00435103429, -0.0111272354, -0.0145866647, -0.00847025122, -0.00115462893, 0.004273762, 0.00422026543, 0.0108716413, 0.0170474946, -0.0277229846, 0.00446694298, -0.000715141825, -0.00916570332, 0.00160934776, -0.0105328318, 0.000751177547, 0.0218502767, -0.000231445898, -0.00106175337, 0.00521886349, 0.0117751351, -0.0142419105, -0.0369481258, -0.00889227819, 0.00423809746, -0.0122447144, -0.00982549135, -0.00484438939, -0.0124349231, -0.00480278116, -0.00435995031, -0.0328586325, 0.0273425654, 0.029458642, -0.00286799739, -0.000829193043, 0.0112104518, -0.00887444615, -0.0208754539, -0.00117766217, -0.0144796716, -0.0285075959, 0.00177875278, -0.00346834492, 0.0290306713, 0.0191041324, -0.0188307054, -0.0134572973, -0.00578057487, 0.00533774449, 0.0317649283, -0.00553389732, -0.00858318806, 0.012601356, -0.00433617411, -0.0117038069, -0.0100038126, -0.0285313725, 0.0341663174, 0.0113293324, 0.0251313839, -0.00162866584, 0.00107661355, 0.0284838211, -0.00962933805, 0.00570924673, 0.0362823941, 0.0343803056, 0.00791745633, -0.026486624, 0.0230985247, 0.00197193399, -0.0114363255, -0.000882689317, 0.0244418755, 0.0164055396, 0.00722794794, -0.000373174, 0.00801850483, 0.0327159725, 0.000722571858, -0.0242635552, -0.0185335036, -0.0263677444, -0.0154782701, 0.0251551606, 0.00405680435, 0.0077569671, -0.0104852794, -0.0305523444, 0.00480575301, 0.00507917861, 0.00221861154, -0.0267481618, -0.0131244315, 0.00904087909, 0.0101583572, -0.0171663761, -0.00707934704, 0.0142775746, -0.0283649396, 0.0212915372, 0.0330963917, 0.00417568535, 0.00440453086, -0.0159419049, 0.0111331791, -0.00153801928, -0.0221831426, -0.00562900212, 0.0110915713, 0.00380121102, 0.0180579815, -0.00402114028, -0.0166433, 0.00143176969, 0.0197104234, 0.00304037449, 0.0073408843, 0.0101048611, -0.0107943695, 0.0132908644, -0.02010273, -0.00833353866, 0.016928615, -0.0227656569, -0.0128747821, -0.00467498414, 0.0120366728, 0.00411030091, 0.0107765375, 0.0221831426, -0.0101226931, -0.0286740288, 0.00911815092, -0.00583109912, -0.00885661319, -0.0123041542, 0.00999192428, 0.00493949372, 0.00567952637, 0.00635417458, 0.0128747821, 0.00818493776, 0.00494840974, 0.0175705701, 0.039087981, -0.0261775348, 0.00425890181, 0.00526047172, -2.0746078e-05, 0.00263320794, 0.000100026977, 0.00419946155, -0.0116800303, 0.01830763, 0.00374177075, 0.0109905228, -0.00668109627, 0.00830976199, 0.00079872983, 0.0034356527, 0.0185453929, 0.0034832051, 0.041822236, 0.00280707097, -0.012399259, -0.00256485143, 0.0128866704, -0.00832759403, -0.0108240899, -0.011317444, 0.0209467821, 0.0121377213, -0.00794123206, 0.00227062171, -0.00485033356, -0.00392603595, 0.0153593887, 0.00460068369, 0.0279845223, -0.032026466, 0.00215025502, 0.0133859692, -0.00349212112, 0.00462148804, 0.00722794794, 0.018105533, -0.0102772377, 0.00753109343, -0.01128178, 0.00417568535, -0.0147412093, -0.0316936, -0.0513564721, -0.011555206, 0.0160251204, -0.0303859115, 0.00634823041, 0.00484141707, -0.0103426222, 0.00103797729, 0.00222158339, 0.018414624, 0.0107884249, 0.0118880719, 0.0361397378, 0.0193181168, 0.0145153357, 0.0135524021, 0.00222009746, 0.00254404731, 0.0119296806, -0.0167859569, 0.0164530911, -0.0171901528, -0.00212202081, -0.00919542369, 0.0193181168, 0.00636606244, 0.0124111474, 0.00131437497, 0.0123279309, -0.01621533, -0.033643242, 0.021184545, -0.0104852794, 0.00334054814, -0.00609263685, 0.00980171561, 0.00793528836, 0.0172614809, 0.0233719498, -0.00251284125, 0.0078520719, 2.9232584e-05, 0.00523669552, -0.00438967068, -0.00592323206, -0.0115730381, -0.00894577429, -0.00647899928, -0.00382201513, 0.0039617, -0.0109964665, -0.00653843954, 0.0292684324, 0.024560757, -0.00676431274, 0.00704962667, -0.000659416488, -0.0150621869, 0.00401816843, 0.0216006264, 0.0125181396, 0.0184502881, -0.0349271558, -0.00478494912, -0.0416082516, 0.0217195079, -0.00471362052, -0.0260111019, -0.0304810163, -0.00576274283, -2.4797775e-05, 0.0265104, 0.00287096947, -0.00633039838, 0.0133621925, 0.00900521409, 0.020709021, -0.000214914049, -0.00956989825, -0.00851186, 0.00387848355, 0.0193537809, 0.01621533, -0.00833353866, 5.63290268e-05, -0.00533477217, -0.00541501679, -0.00526344404, 0.00148080802, -0.0163817629, 0.0069901864, -0.00156625349, 0.0263915192, -0.0138020515, -0.00562603027, 0.00611046888, -0.0144202309, 0.00938563235, 0.0157992467, 0.00801850483, 0.00729927607, 0.0308614355, 0.00978982728, 0.0289593432, 0.0101761892, -0.0162272174, 0.0072160596, -0.00468687247, -0.000110429042, 0.00988493208, -0.00190060551, -0.000516016618, -0.019389445, -0.00493057771, -0.00954017788, -0.00349806529, 0.0195677672, -0.007905568, 0.00435697846, 0.0104912231, -0.00232263212, 0.02010273, -0.00886255782, -0.0224446803, 0.00615207711, 0.0197342, -0.00332866, 0.00371205038, -0.0106636006, -0.00122372841, -0.0178202204, -0.00930836052, -0.00637200661, 0.0154307177, 0.0285789259, 0.00326327584, -0.00887444615, 0.0109786345, 0.00530208, -0.00659788, -0.0185216162, 0.0242041145, -0.0153118363, 0.0124111474, 0.00672270451, 0.0227418821, -0.00714473147, -0.00491869, 0.00657410361, -0.0162272174, 0.00798878446, -0.00200165412, 0.0037447426, 0.00648494344, 0.0128153414, -0.0253215935, -0.0213034246, 0.0111926198, 0.0100929728, 0.00686536171, 0.0224327911, 0.0161440019, -0.0417509079, -0.0111569557, 0.0168572869, -0.0273425654, 0.00617585331, 0.00115165696, -0.0057924632, 0.00558144972, 0.00816710573, -0.00427673385, -0.0311229732, -0.000706968771, 0.000908694521, -0.0167978462, 0.0031978914, -0.00263172202, 0.00260348781, 0.00895171799, 0.00282044499, -0.00734682847, -0.00140576449, -0.00639578281, 0.0157041438, -0.00658004778, -0.007786687, 0.000189930521, -0.000563568901, -0.000280855689, 0.00294081168, 0.00628284598, -0.00839892309, 0.00269710622, -0.00629473431, -0.0114779333, -0.0191754606, -0.017297145, -0.00647899928, -0.00562305795, -0.00968283415, -4.26531e-05, -0.00544176484, 0.00318897539, 0.00199273811, 0.0230271947, -0.0159656815, -0.010437727, 0.00067204755, 0.00822654553, -0.0195083264, 0.00448180316, -0.011721639, 0.0212083198, 0.00469281618, -0.0293159857, 0.00196896191, 0.0079650078, 0.0058221831, -0.00594403595, -0.0144558959, 0.00424701348, -0.00517725525, 0.0122566018, 0.0123873707, -0.011923736, -0.0131125432, 0.00270453631, 0.00226021977, 0.0378040671, -0.00555173, -0.00829193, 0.00710906694, -0.0215055216, 0.0176181234, -0.0144796716, -0.0317411534, 0.0109845782, -0.00372096663, -0.000385990832, 0.0192467887, -0.00584298745, 0.00121852732, -0.00061446469, 0.00258862763, 0.029054448, 0.0042797057, 0.0239306893, 0.0202453863, 0.0139328204, -0.00694263401, 0.0011813771, 0.00707340287, 0.0164412037, 0.0152880605, 0.0205544755, 0.0192824528, -0.00860696379, -0.00379526708, 0.0111034596, -0.00209527276, -0.000967391883, -0.00368233025, -0.0141349174, -0.0151572917, -0.00209973077, -0.00823249, -0.0247509666, 0.00536449254, 0.00368233025, 0.0167978462, 0.0219572689, -0.00203434634, -0.0185572803, 0.0167740695, -0.00165244204, 0.00459176768, -0.003952784, 0.00410435675, 0.00183373515, 0.00131883298, -0.000930984621, -0.0459355116, 0.0164887551, 0.0297439564, 0.00503162667, 0.00482655736, -0.0181649737, -0.0117513593, 0.00574788265, 0.000325993227, -0.0239901301, -0.00740626873, -0.0233362857, 0.0180817582, -0.0161558893, 0.0135167381, 0.0107349288, 0.0202334989, -0.00978388358, -0.0103901746, 0.0102831824, -0.00324544357, 0.0223376863, -0.0159062408, -0.0269383714, -0.00272236858, -0.0085713, 0.00948668178, 0.00653249538, 0.0127321249, -0.00908843055, -1.16849069e-05, 0.00818493776, -0.00157962751, -0.0168335102, -0.0120188408, 0.0129223345, -0.00810766499, -0.00923108775, -0.0199838486, 0.00982549135, 0.00482358504, -0.0223495755, 0.00747759733, -0.0142656863, 0.00416974118, 0.0206971336, -0.0012616216, -0.00441047456, -0.00314736716, -0.019591542, -0.00899332669, -0.00549823325, -0.00744193327, 0.0225516725, 0.0228607617, 0.0242041145, -0.0074894852, -0.022397127, 0.000651986455, -0.0262013096, 0.00559036573, 0.00910626352, -0.00926080812, 0.00817899313, -0.0299817175, -0.0072873882, 0.0105982162, -0.0106636006, 0.0176181234, 8.60492073e-05, -0.0107289851, 0.0053763804, -0.0178915486, -0.00749542937, 0.0119059039, 0.0207209103, 0.00967094675, 0.00330191199, -0.0351411402, 0.0138614923, -0.00573599478, -0.00553389732, 0.0213747527, 0.0118524078, 0.0109786345, 0.024964951, 0.0138614923, 0.0244180989, 0.0140160369, 0.0152999489, 0.0119475126, -0.0118107991, 0.0163223222, 0.0236097109, 0.00056319742, -0.0075608138, 0.00648494344, -0.0256306827, -0.00679403311, -0.0291495528, -0.000543136266, 0.0494543798, -0.0131006548, -8.01051719e-05, 0.00265698414, 0.0145391123, 0.00738249253, -0.00924297608, 0.011739471, 0.00214431109, -0.000452489738, 0.00817304943, 0.00246826094, -0.00842269883, 0.0218740515, 0.00237612845, -0.0284362677, 0.0106457686, 0.0170593839, 0.00817304943, -0.00186642725, 0.0205544755, -0.00421729358, -0.00508809462, -0.00884472579, -0.000306675094, -0.0141111417, -0.0203167144, -0.0147412093, -0.000563568901, 0.0012995149, 0.00881500542, -0.00126830873, 0.00582515541, -0.0317649283, -0.0194964372, -0.00697829807, 0.00414299313, 0.00681186514, -0.00620557368, 0.026486624, 0.0390166529, -0.00548634538, 0.0114779333, -0.00992654, -0.021386642, 0.00913598295, -0.00321275136, -0.0163223222, 0.00197342, 0.0403718911, -0.0105268881, -0.0141111417, 0.00764403027, -0.00306415046, 0.00915976, -0.00367935817, -0.0210537761, -0.0185335036, 0.0116384225, 0.00355750555, -0.0137188351, 0.0074835415, 0.00248014904, -0.00594403595, -0.0257971156, -0.0101880776, -0.00655032741, -0.00895171799, 0.0153118363, 0.0258922204, 0.0245369803, -0.0141824698, -0.0202572737, 0.0175586827, -0.017332809, 0.0208397899, 0.00669298461, -0.00606291648, -0.00808983296, -0.00147932197, 0.0118524078, 0.0073349406, 0.0273901187, -0.0252502654, 0.00201205607, -0.017737003, 0.0440096408, 0.0432012528, -0.0038814554, 0.00609858101, 0.0212915372, 0.00248163496, 0.0178083312, -0.0303621367, 0.0107408734, 0.00735871634, 0.00460662786, -0.0279845223, 0.0239188, 0.00624718191, 0.00762619823, 0.00893983, 0.0033346042, -0.00318005914, 0.0157992467, -0.00294229784, 0.0116740866, 0.0146104405, 0.0111391237, -0.0142062455, -0.0216006264, 0.0176418982, -0.00846430752, 0.00572707877, -0.00140353548, -0.0155852623, 0.0154901575, 0.00833353866, -0.0124587, 0.0272950139, -0.0136950593, -0.0165600851, 0.0216957312, -0.00356642157, 0.000458805269, -0.0121198893, 0.0116919186, -0.0071625635, 0.00262577785, -0.00892199762, -0.00840486679, -0.00392009178, -0.00788773596, -0.000114794195, -0.00856535602, -0.0153118363, 0.00830381829, 0.010711153, 0.00893388595, -0.000649385911, -0.0314558372, -0.00940940902, -0.0109073063, -0.00614613341, 0.00807200093, 0.0174516905, -0.00103500532, 0.0295537468, 0.00800067279, -0.00489788549, -0.0241090097, 0.0203880426, -1.82616568e-05, -0.0211013276, 0.00356047763, -0.00642550271, 0.00436589448, -0.00183819316, 0.0115314294, 0.0145747764, -0.00315033901, 0.0194964372, 0.0142656863, 0.00490085781, -0.00108775857, -0.0250362791, -0.00303740241, -0.0434865654, -0.00858318806, -0.0222663581, -0.0103366785, 0.00586676365, 0.01516918, 0.00238801655, -0.020911118, -0.0078164069, -0.00809577666, 0.0149076423, -0.0136118419, 0.0195439905, -0.0120545048, -0.00776885496, 0.0077094147, -0.0117275827, -0.0126132444, -0.00488005346, 0.0216125157, -0.0103069581, 0.0169999432, 0.00857724436, 0.00646711094, 0.011555206, -0.0187237132, 0.0287453588, 0.0191160198, 0.016821621, 0.005126731, 0.0103010144, -0.00945101678, -0.00206852448, 0.0132195363, 0.0222901348, -0.0131482072, -0.0259635486, -0.0117275827, 0.0103426222, 0.00945101678, -0.00471064867, 0.0252740402, 1.69149625e-05, -0.00124230352, -0.000319491926, -0.0176300108, 0.0277943127, 0.00453232741, 0.00759053417, 0.0122090494, 0.00807200093, -0.00756675797, -0.00857724436, -0.00299133616, -0.00272831251, -0.0126251327, 0.00995626, -0.00414002128, 0.0377565175, 0.0227181055, 0.00749542937, -0.00106992642, 0.0167146288, -0.00429456588, 0.00269562029, -0.0085713, 0.00786990393, 0.0078104632, 0.0127202366, -0.00485330541, -0.0172258168, 7.85262891e-05, -0.0104793357, 0.00449369103, 0.00129802886, -0.0125775803, 0.00942129735, -0.0142181339, -0.0058459593, -0.0138614923, -0.00370313437, -0.00639578281, 0.00247717695, 0.045246, 0.00838109106, 0.0128272297, -0.00611641305, -0.00127425266, -0.00696641, 0.000369830494, 0.0165481959, 0.0127915656, 0.00563197397, -0.0110321306, 0.0177726671, -0.00520103145, -0.0248222947, 0.00811955333, -0.00522480765, 0.00394981168, 0.00803633686, -0.00491571752, 0.0102415737, -0.0149789704, -0.0157041438, -0.00456204778, -0.0116087021, 0.0203642678, 0.0015870576, 0.0123517066, 0.00900521409, -0.020506924, -0.00411921693, -0.0169048384, 0.0152761722, 0.00454718759, 0.0211607683, 0.000665360538, -0.00889822189, -0.0148838665, -0.00216808706, -0.0228013229, 0.0157992467, 0.0172733683, -0.00654438371, 0.0238118079, 0.0264152959, -0.00841081049, 0.00921325572, -0.00191100757, -0.0156328138, 0.0148006491, -0.00338810054, 0.00744193327, -0.0129817743, 0.0262726396, 0.000570627453, 0.0148244258, -0.0119594, 0.0221712533, 0.00664543221, -0.00254999148, -0.0105744395, 0.0164412037, 0.0227894336, -0.0360684097, -0.0131838722, -0.0129579986, -0.0103961192, -0.0174160246, -0.0147174327, -0.0129817743, 0.0143132387, -0.0148125375, -0.000980023, 0.0122684902, 0.0258922204, -0.029934166, 0.0133621925, 0.00272831251, 0.0267957151, 0.0103485668, 0.00468687247, -0.0249411743, -0.00938563235, -0.0117870234, 0.000168476268, -0.0073408843, 0.0208279025, -0.000220672329, 0.0132076479, -0.011097515, -0.00326921977, 0.020304827, 0.00246974686, 0.0133027527, 0.0182957426, -0.0155614866, 0.00518022757, 0.0254642498, -0.021790836, -0.00496921409, 0.0147174327, 0.00169553631, -0.00814927369, -0.0191397965, 0.0144558959, 0.000876745326, -0.014527224, 0.0452222265, -0.0101108048, 0.0111272354, 0.00551309343, 0.00976605155, 0.0108003132, 0.0142419105, -0.022623, -1.18010012e-05, 0.00880311709, 0.0124705872, 0.0107765375, -0.0270810276, -0.00136192725, 0.029102, 0.000739289448, -0.00339404447, -0.0278418642, -0.0127796773, 0.000601090665, 0.0248936228, 0.00606291648, -0.00866046082, 0.00675836904, -0.00756675797, -0.00161231973, 0.000610378222, 0.00659193611, 0.0283411629, 0.0128153414, -0.0328110792, 0.0193300042, 0.00636606244, -0.0203761552, 0.00493057771, 0.00609263685, -0.00862479582, 0.000719228352, -0.0290068947, -0.0201859456, -0.00470767636, -0.0240614582, -0.00438075466, -0.0289117917, -0.00789962336, 0.0136950593, -0.00801256, 0.0226467773, 0.00867829286, -0.0360208564, 0.0159537923, -0.0219810456, 0.0156328138, -0.00484736124, -0.0162391067, 0.0113471644, 0.00195112976, 0.0138496039, 0.0139090437, -0.0224684551, 0.00867829286, 0.0180104282, 0.000384133338, -0.0215649623, -0.00967689, -0.00587270735, 0.00308198272, 0.027057251, 0.00668109627, -0.00697829807, 0.000133555062, 0.0181768611, 0.0128747821, -0.00267778826, 0.00539421244, -0.00079798681, -0.00495435391, 0.0245132037, -0.00332568819, 0.0168453977, -0.0167146288, -0.0227775462, 0.00420837756, -0.013885268, -0.0267719384, 0.00995626, 0.0191516839, 0.00782829523, -0.011079683, -0.00883283745, 0.00810172129, -0.00247271894, 0.00829193, 0.0310754199, -0.00960556231, -0.00652655168, 0.0139922611, -0.00959961768, -0.013243312, 0.0110856267, -0.00183522108, 0.0242754426, 0.0179509893, 0.0114601012, -0.00633039838, -0.0161083378, -0.00616396545, 0.0170118306, -0.00677620107, -0.0292684324, 0.000705111248, -0.00348914904, 0.00432131393, 0.00288880151, -0.0114541575, -0.00780451903, -0.00571816275, -0.0274138935, 0.0114422692, -0.0172020402, 0.016013233, 0.00404788833, 0.00754298177, 0.00966500212, -0.0134572973, -0.00866640452, -0.00274614454, -0.00895766262, -0.0119772321, -0.0251313839, 0.00430051, -0.00448477501, -0.0120723369, 0.00981360301, -0.0151572917, 0.00811955333, -0.0244180989, -0.0436767749, -0.00772130257, 0.00606291648, 0.00738249253, -0.00341782067, -0.0182481911, -0.0112758363, 0.0078520719, 0.0152999489, 0.0192943402, 0.0154901575, -0.00500487816, 0.0153356129, 0.0213034246, -0.00455313176, 0.00478792097, -0.0271999091, 0.00638983864, -0.0308614355, -0.0156447031, -0.000481838419, 0.0070436825, -0.0315984935, 0.00625907, -0.0117691914, 0.0231698528, -0.0150978509, -0.00458582398, 0.000587716582, 0.00245340075, -0.0306474492, 0.00218146131, -0.0215174109, -0.00115537201, -0.00764403027, -0.012565692, 0.0178202204, 0.000129747161, -0.00425295765, 0.00518022757, 0.00663948804, -0.00286948332, -0.0141943581, 0.00715661934, 0.0217670593, -0.0108538093, -0.0229202025, -0.0144558959, -0.00764403027, 0.00384281925, 0.00471064867, 0.0038160712, -0.00307901064, 0.0144083435, 0.0298866127, -0.00345051289, 0.00588459568, -0.00197342, 0.0122684902, -0.0218146127, -0.013041215, -0.0212915372, 0.0213034246, 0.00360505772, 0.00600644853, -0.00902304705, -0.018414624, -0.00841675512, -0.0225516725, -0.00905276649, 0.015811136, 0.00323355547, 0.00756675797, 0.00926675182, 0.000521589129, -0.0198174156, -0.00245785876, -0.00277883676, -0.0110202422, 0.0071150111, 0.00490680151, 0.0150978509, 0.0249411743, -0.00644333521, 0.0166433, -7.71331543e-05, 0.00496624224, 0.00491869, 0.0133384168, -0.00944507308, 0.00262726401, -0.00431239791, 0.00976010691, -0.0338810049, -0.012767789, 0.00849997159, 0.0117929671, -0.00918353535, 0.00414299313, -0.0125300279, -0.0164768677, 0.00692480197, -0.0105209434, 0.00258862763, 0.000990425, 0.00340296049, 0.0170356072, -0.0317649283, 0.00160043163, -0.00287096947, -0.0182957426, -0.0112520605, 0.00652060751, -0.0112520605, 0.00420837756, -0.0129698869, -0.00571816275, 0.013243312, -0.00254553347, 0.0233481731, 0.00605994463, 0.00798284076, -0.00365261012, -0.00496327, 0.00451152353, 0.00184710918, -0.00108330057, -0.00201651431, -0.0349509306, -0.000740032468, -0.0224209037, -0.00818493776, -0.00243556872, -0.00734682847, -0.0195202138, -0.00248609297, -0.0128628938, 0.0132908644, 0.00995626, -0.0214460809, -0.00422918145, -0.00621151738, 0.00901115872, 0.00356344949, 0.00505837472, -0.000482952921, -0.00388739957, -0.0273425654, -0.000557996391, 0.0194488857, 0.00299133616, 0.000485553435, 0.000431685621, -0.00500785047, -0.0206852444, -0.00328110787, 0.0107289851, 0.0144321192, 0.0232055169, -0.0077807433, 0.0211964324, 0.0178321078, -0.000910923525, 0.00384876318, -0.0340712145, -0.0259635486, 0.00656221574, 0.0011954942, 0.020067066, -0.0119296806, 0.00483250106, -0.0073171081, -0.00514159119, 0.0123279309, 0.00357236573, -0.00792934373, -0.00658004778, 0.00431239791, -0.00114719896, 0.0299103893, -0.00754892547, -3.82415128e-05, -0.000974821916, 0.00483547337, 0.00576274283, -0.0159775689, -0.0122922668, 0.0022617057, -0.01516918, -0.0070674587, -0.00131734693, 0.017130712, 0.00879122876, -0.00211161887, -0.00614018925, 0.0129461102, 0.00578651903, 0.0214698575, -0.00663354434, 0.00201205607, -0.000548708835, 0.00587865151, 0.00284422119, 0.0302194785, -0.0163104348, 0.00303591648, -0.00101197208, -0.00488599762, 0.014967083, -0.00116874604, -0.00602725241, -0.00839892309, 0.0250362791, 0.00192438159, -0.0116800303, -0.0150027471, -0.00420837756, -0.0106457686, 0.000815075939, 0.00850591529, -0.017130712, 0.00150904211, 0.00209378661, -0.000544622308, 0.0110856267, -0.00334946439, -0.00668109627, -0.0200076252, -0.0276041031, -0.0148482015, -0.0235383827, -0.00518022757, 0.00675836904, -0.0119653447, 0.000366858469, 0.0122684902, 0.00408949656, -0.00977793895, -0.000845539093, -0.00900521409, 0.0310991965, 0.0140754776, 0.0163342115, -0.0450557917, -0.013041215, 0.0154069411, 0.000112007925, 0.0133027527, -0.0298390612, 0.00221712538, 0.00569438655, -0.00964717, -0.0186880492, -0.00889227819, -0.00192883972, -0.00422918145, -0.000588831084, -0.00690697, 0.00177132268, 0.014967083, -0.0298152845, 0.0016673021, -0.0107170967, 0.018783154, -0.002824903, 0.0331677198, -0.0109548587, -0.00918948, -0.00794717576, 0.00443425076, -0.00467498414, -0.00779263116, 0.0101643018, -0.00266590016, -0.00374177075, -0.0209705587, 0.0208516773, 0.0311943013, -0.0037447426, -0.00459474, -0.016013233, -0.0116978632, -0.00524263969, 0.00638389448, 0.0240139049, -0.000401222438, 0.00433320226, -0.00484736124, 0.00287988549, 0.0139447087, 0.00265847, -0.00687130541, -0.00891605392, -0.0101583572, -0.0167146288, 0.00894577429, -0.00990870781, 0.0150740752, -0.00322463945, -0.0121317776, 0.0110202422, 0.00560522592, -0.0267957151, -0.0279607456, 0.0100929728, -0.0021131048, 0.018985251, 0.0111212917, -0.000499299, 0.00826221, 0.00288731558, -0.0148363141, 0.00315628317, 0.0300292689, 0.0365439318, 0.010069197, 0.00277735083, 0.0185453929, 0.0250600558, -0.00744787697, 0.0115849264, -0.0178796593, 0.00592917576, -0.00287691341, -0.0268194899, 0.0281271785, -0.0151454033, 0.00950451382, -0.00207595457, 0.00393792382, 0.021386642, -0.0212796479, 0.0237999205, 0.0153356129, 0.0304810163, -0.00943912938, 0.000534591731, -0.00913003925, -0.0164649803, 0.0189971384, -0.0340712145, 0.00403897231, 0.0025752536, -0.0179153252, 0.0195202138, -0.0202810504, 0.0103961192, 0.00551309343, -0.00463932, -0.0248936228, -0.00897549465, -0.00318005914, -0.00164204, -0.000588459545, -0.00818493776, -0.0233957265, -0.0213985294, -0.00949262548, -0.0241090097, 0.00409841258, -0.0122447144, -0.025369145, -0.012363595, -0.0019407277, 0.000230145641, 0.00170891033, -0.00703179464, 0.013041215, -0.0164887551, -0.00398547621, 0.0075370376, 0.00497813, -0.00477306079, -0.0121733854, -0.0269145947, -0.0032097795, 0.0182600785, 0.00135524024, 0.0203404911, 0.0178915486, 0.0101999659, -0.0136593943, -0.016417427, 0.00160340371, -0.0159775689, 0.00371205038, 0.0142181339, 0.00828004256, -0.00854157936, -0.0120604485, 0.00356939365, 0.010877586, -0.0163223222, 0.0239544641, 0.031146748, 0.000463263306, 0.00712689897, -0.0113412207, 0.0195439905, -0.0302670319, 0.0124111474, -0.00139164738, 0.00895171799, -0.0371383354, -0.00333757629, -0.0168691743, 0.00916570332, 0.00158854364, -0.00615802128, -0.00341187674, -0.010515, -0.00824437756, 0.0117751351, -0.000578429, -0.00683564134, 0.0128985578, 0.00757864583, 0.0104198949, 0.000686907675, -0.00186048332, 0.00419351738, 0.000404194434, 0.00210270262, -0.0138496039, 0.00981954765, -0.0159300156, 0.0252502654, -0.0158349127, -0.00540610077, 0.00365261012, -0.0177964438, 0.000619294238, 0.0131125432, -0.0165600851, 0.00754892547, -0.0288404617, -0.0148363141, 0.00172674248, 0.0119475126, -0.00543582067, -0.00263172202, 0.0314320624, 0.00409544073, -0.0041251611, -0.0139209321, 0.00545662502, 0.0178915486, 0.00587567966, -0.00737060467, -0.00222752756, -0.00592323206, 0.00671676081, 0.00589648355, 0.0104852794, -0.00943912938, 0.0112401722, -0.0161440019, -0.00883283745, -0.00787584763, 0.0150978509, 0.0192586761, -0.00956989825, 0.000204326236, -0.00674648071, 0.00666920841, -0.0117097506, 0.00329002389, 0.0175111294, 0.0163817629, -0.00612235721, 0.0200195126, 0.0133503051, -0.0109310821, 0.0237642564, -0.0534487702, 0.00206852448, -0.00964717, -0.00411921693, 0.00399142038, 0.00570033072, -0.00325733167, -0.01621533, -0.0154782701, -0.0150146345, -0.00987898745, -0.00183522108, 0.00279072486, 0.0143013503, -0.00170445233, -0.0151929557, 0.00585784763, -0.00943912938, 0.00946290512, 0.00866046082, -0.0202453863, 0.0126845725, 0.0206376929, 0.0134335216, 0.00825626589, -0.0292922091, -0.0142181339, 0.00356939365, -0.0586319715, 0.00859507639, 0.00615207711, 0.0117810797, 0.0216600671, 0.0202334989, -0.00244448474, 0.0143726794, 0.00920136739, -0.000425741571, -0.0129579986, -0.00510592712, 0.0322166756, -0.0300768223, 0.0188663695, -0.0230985247, -0.00216660113, -0.011721639, -0.00402708445, 0.0276992079, -0.00797689613, 0.00293040974, -0.0140160369, 0.027366342, -0.0129936626, 0.025202712, 0.00130620191, -0.013041215, 0.00797095243, -0.00320086326, -0.00507917861, 0.0254642498, -0.033785902, 0.000133926558, 0.0164412037, -0.0147649851, -0.0176418982, -0.0183551833, -0.00112193683, 0.00864262786, -0.0197698642, -0.0015989457, -0.00463337591, 0.00298093399, -0.00317411521, 0.00702585047, -0.0140398126, 0.00130248687, 0.0255118031, -0.00178172474, -0.0136475069, -0.00178766879, -0.00424404163, -0.00147189188, 0.0210537761, -0.0177607797, 0.0072160596, 0.0258208923, -0.00533774449, 0.0131482072, -0.0124824755, -0.00906465482, 0.019020915, 0.00586379133, 0.0351886936, 0.00369719043, -0.0179628767, 0.00629473431, -0.00853563566, -0.00119995221, 0.00237612845, -0.00256039342, 0.000980023, -0.0138733797, 0.00272831251, -0.0156090381, 0.0259397738, 0.00629473431, -0.00606291648, -0.0108062578, -0.00865451619, -0.0057924632, -0.016619524, -0.00343268085, -0.0233957265, -0.0142775746, -0.00101048616, 0.0130531034, -0.0124349231, 0.00400628, 0.0190922432, -0.025678236, -0.00441047456, 0.0153475013, 0.0201383941, 0.0245845336, 0.00653843954, -0.0156328138, -0.00848214, 0.00723389164, -0.0230628587, 0.0194013342, -0.00104243529, 0.0315984935, -0.00723389164, 0.00186939933, -0.00730522024, 0.0285313725, 0.0133384168, -0.00918353535, -0.00257228152, -0.00580137921, -0.0277229846, -0.0147530977, 0.0190803558, 0.00713284314, 0.0259397738, 0.000464006298, 0.0312894061, -0.0192705654, 0.00784612726, -0.0111331791, -0.000213799547, -0.00374771468, 0.02817473, -0.00137753028, -0.0029081197, -0.00292297965, -0.000492611958, -0.00123041542, 0.0018961475, 0.00157219754, 0.019425109, 0.0182719659, -0.0164530911, 0.0340712145, 0.00557550555, 0.0156922545, 0.00128911284, 0.00534368819, 0.0193775576, -0.00849402696, -0.0055190376, -0.0572529547, 0.0126726851, 0.0236572623, 0.00685941754, 0.000993397, 0.0189139228, -0.0190446917, -0.0114601012, 0.00080393086, 0.00307306671, 0.00816116109, -0.00269264821, 0.00612830091, 0.00972444285, -0.00478494912, -0.0368767977, -0.0224684551, 0.0231936276, 0.0108716413, 0.00452043954, 0.000962933816, 0.00732305227, -0.000464377808, 0.00849402696, 0.0376614109, -0.012565692, -0.000232003149, -0.00893388595, -0.00453827158, 0.0133978575, 0.000504500058, 0.0071625635]
12 Jun, 2023
multimap value_comp() function in C++ STL 12 Jun, 2023 The multimap::value_comp() method returns a comparison object that can be used to compare two elements to get whether the key of the first one goes before the second. Here the 1st object compares the object of type std::multimap::type. The arguments taken by this function object are of member type type. It is defined in multimap as an alias of pair. Syntax: multimap::compared_value value_comp() const; Here compared_value is a nested class type Parameters: It does not accepts any parameter. Return Value: This method returns the comparison object which is an object of the member type multimap::compared_value, which is a nested class that uses the internal comparison object to generate the appropriate comparison functional class. Below program illustrate the multimap value_comp() function: CPP // C++ program to show // the use of multimap::value_comp #include <iostream> #include <map> using namespace std; int main() { multimap<char, int> m; // making of pair m.insert(make_pair('a', 10)); m.insert(make_pair('b', 20)); m.insert(make_pair('c', 30)); m.insert(make_pair('d', 40)); pair<char, int> p = *m.rbegin(); // last element multimap<char, int>::iterator i = m.begin(); do { cout << (*i).first << " = " << (*i).second << '\n'; } while (m.value_comp()(*i++, p)); return 0; } Output: a = 10 b = 20 c = 30 d = 40 Time Complexity: O(1) Learn C++ Online – Master everything from basics to advanced concepts. Apply your knowledge with practical exercises and boost your skills. Take the Three 90 Challenge: finish 90% in 90 days for a 90% refund. Start now and level up your C++ programming!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum/Algorithm for Dynamic Time out timer Calculation/Difference between Round trip time (RTT) and Time to live (TTL)/Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms/Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm/Round Robin Scheduling Algorithm with Different Arrival Time/Selfish Round Robin CPU Scheduling/Find the order of execution of given N processes in Round Robin Scheduling/Calculate server loads using Round Robin Scheduling/set::lower_bound() Function in C++ STL/Implementation of lower_bound() and upper_bound() in List of Pairs in C++/Difference between std::set::lower_bound and std::lower_bound in C++/Difference between std::set vs std::vector in C++ STL/std::minmax() and std::minmax_element() in C++ STL/std::rotate vs std::rotate_copy in C++ STL/std::bitset::to_ullong and std::bitset::to_ulong in C++ STL/std::upper_bound and std::lower_bound for Vector in C++ STL/std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++/std::string::append vs std::string::push_back() vs Operator += in C++/Vector push_back() in C++ STL/vector :: cbegin() and vector :: cend() in C++ STL/unordered_multiset cend() function in C++ STL/unordered_multiset bucket() function in C++ STL/unordered_multiset emplace_hint() function in C++ STL/unordered_multiset end() function in C++ STL/unordered_multiset size() in C++ STL/unordered_multiset emplace() function in C++ STL/unordered_multiset find() function in C++STL/unordered_multiset erase() function in C++ STL/unordered_multiset clear() function in C++ STL/unordered_multiset swap() function in C++ STL/unordered_multiset bucket_size() function in C++ STL/unordered_multiset bucket_count() function in C++ STL/unordered_set bucket_count() function in C++ STL/unordered_set cbegin() function in C++ STL/array::cbegin() and array::cend() in C++ STL/array::rbegin() and array::rend() in C++ STL/multimap rbegin in C++ STL/vector rbegin() and rend() Functions in C++ STL/multiset rbegin() and rend() function in C++ STL/map rbegin() function in C++ STL/map upper_bound() function in C++ STL/Set upper_bound() in C++ STL/multimap upper_bound() function in C++ STL/multimap empty() function in C++ STL/multimap value_comp() function in C++ STL
https://www.geeksforgeeks.org/multimap-value_comp-function-in-c-stl?ref=asr10
PHP
multimap value_comp() function in C++ STL
unordered_multiset clear() function in C++ STL, What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, jQWidgets jqxTreeMap width Property, Round Robin Scheduling Algorithm with Different Arrival Time, Difference between Flow and TypeScript, unordered_multiset emplace() function in C++ STL, jQWidgets jqxTree destroy() Method, unordered_set bucket_count() function in C++ STL, jQWidgets jqxTree collapseAll() Method, Find the order of execution of given N processes in Round Robin Scheduling, jQWidgets jqxScrollView buttonsOffset Property, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Vector push_back() in C++ STL, jQWidgets jqxListBox enableHover Property, Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm, std::rotate vs std::rotate_copy in C++ STL, Selfish Round Robin CPU Scheduling, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxSlider buttonsPosition Property, std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++, std::upper_bound and std::lower_bound for Vector in C++ STL, Difference between Round trip time (RTT) and Time to live (TTL), jQWidgets jqxSlider rtl Property, Difference between std::set::lower_bound and std::lower_bound in C++, jQWidgets jqxTooltip opacity Property, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, unordered_multiset erase() function in C++ STL, jQWidgets jqxToolBar height Property, PHP, std::minmax() and std::minmax_element() in C++ STL, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, map rbegin() function in C++ STL, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, map upper_bound() function in C++ STL, Node.js date-and-time Date.transform() Method, unordered_multiset size() in C++ STL, TypeScript Optional Parameters, jQWidgets jqxToolBar theme Property, Difference between std::set vs std::vector in C++ STL, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, Steps to Diagnose and Resolve a Slow Network, How to use Optional Chaining with Arrays and Functions in TypeScript ?, Calculate server loads using Round Robin Scheduling, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, jQWidgets jqxScrollView showButtons Property, Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms, jQWidgets jqxScrollView disabled Property, jQWidgets jqxSplitter destroy() Method, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, set::lower_bound() Function in C++ STL, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, jQWidgets jqxTree collapseItem() Method, multimap upper_bound() function in C++ STL, std::string::append vs std::string::push_back() vs Operator += in C++, unordered_multiset swap() function in C++ STL, unordered_multiset cend() function in C++ STL, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), Set upper_bound() in C++ STL, jQWidgets jqxSortable opacity Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, multimap rbegin in C++ STL, vector :: cbegin() and vector :: cend() in C++ STL, jQWidgets jqxSlider height Property, jQWidgets jqxSwitchButton onLabel Property, unordered_multiset bucket_size() function in C++ STL, unordered_set cbegin() function in C++ STL, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, jQWidgets jqxToolBar tools Property, multimap empty() function in C++ STL, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTree width Property, Implementation of lower_bound() and upper_bound() in List of Pairs in C++, jQWidgets jqxTree clear() Method, TLS Handshake?, multiset rbegin() and rend() function in C++ STL, Algorithm for Dynamic Time out timer Calculation, Adhoc TCP, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, jQWidgets jqxTabs position Property, Differences between Wireless Adhoc Network and Wireless Sensor Network, jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, std::bitset::to_ullong and std::bitset::to_ulong in C++ STL, unordered_multiset emplace_hint() function in C++ STL, unordered_multiset bucket_count() function in C++ STL, unordered_multiset find() function in C++STL, unordered_multiset bucket() function in C++ STL, Impact of Three-way Handshake and Slow Start Algorithm, array::rbegin() and array::rend() in C++ STL, multimap value_comp() function in C++ STL, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, vector rbegin() and rend() Functions in C++ STL, array::cbegin() and array::cend() in C++ STL, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, unordered_multiset end() function in C++ STL, How to Sort an Array Having Optional Properties in TypeScript ?
GeeksforGeeks
[-0.0181060601, 0.00404033391, -0.0104478672, 0.0280845109, 0.0111050503, 0.0143239051, -0.0512334444, 0.012902244, -0.0279235672, 0.00652824063, -0.0153700328, 0.0214456227, -0.0197423119, -0.000908656, -0.00224481616, -0.0256301332, 0.00237390562, 0.0307132434, -0.03479046, -0.00379556674, -0.00939503312, -0.00846290682, -0.0026924382, 0.0203324351, -0.018226767, 0.00882502738, -0.0316252522, -0.00175025244, 0.00932126772, 0.0152895618, 0.0151822669, 0.0206140839, 0.000596410246, -0.00752407406, -0.0115811722, 0.00987115595, 0.0359438807, 0.0215931535, 0.00470422255, -0.00608229497, 0.00790631305, 0.0253753085, 0.0232964642, -0.0128150666, 0.00498587266, 0.0263812, -0.000958950608, -0.0270249713, -0.00696077431, 0.0253216606, 0.0646453425, 0.00369162438, 0.0115744667, 0.00887197, 0.0127144773, 0.013284483, 0.00409062859, 0.0165905152, 0.00331776775, -0.0265957899, -0.00410404, 0.0017670173, 0.0164027493, -0.0252948366, -0.0190985408, 0.0158394501, -0.0546400659, 0.0239134114, -0.00472098729, -0.0045231618, -0.021995509, 0.0116079962, -0.0153834447, 0.0166039281, -0.0208823234, 0.000914523669, 0.0161076877, 0.0168721657, 0.0161479227, 0.0105216326, -0.0301767662, 0.00393639179, 0.0240609422, -0.00490540126, 0.0667912439, -0.000349547539, 0.0423815921, -0.0297207627, 0.0218345672, 0.0253082477, -0.0423011221, -0.0309010092, 0.0243828278, 0.0127748316, 0.002082197, 0.02878193, 0.00869090855, 0.020426318, -0.0297475867, 0.0597634092, 0.0164966322, 0.00536811166, 0.0118896458, -0.000439239608, 0.0552570112, 0.00258179, 0.0314911343, -0.00522393361, 0.0107429288, 0.0171001684, 0.0130363628, -0.00135124859, -0.0211639721, -0.00802031439, -0.0214053858, 0.000192167325, -0.0276285056, 0.0101326881, 0.0105685741, -0.0106691634, -0.0375264846, 0.0383848473, 0.0208555, -0.0168587528, -0.0456540957, 0.0117152911, -0.00373186, 0.0380093157, -0.0108099887, -0.0156248594, 0.00475451723, -0.0205872618, -0.0146860266, -0.0249595381, -0.0264482591, 0.0220893938, 0.0390554406, 0.00381903746, -0.013626487, -0.0126675358, -0.0324836113, -0.00563970255, -0.0142300222, 0.0428107716, -0.00414762879, -0.0673277229, 0.024208473, 0.0685079694, 0.00565982, -0.00033173486, -0.0290233437, -0.0142568462, 0.0111989332, -0.0205336139, 0.006068883, 0.0082818456, 0.018199943, -0.0156248594, -0.00145016133, -0.0384384952, 0.0279235672, -0.0168587528, 0.0138947247, 0.0364535339, -0.00918044336, 0.033261504, 0.0238195285, 0.00180725299, -0.046941638, 0.0261666104, 0.0274943877, 0.0277089775, 0.0263946112, -0.0353537574, 0.00529099302, -0.0162418056, 0.0330737345, 0.050777439, -0.0374728367, 0.0116951736, 0.00260023144, -0.0172342863, 0.0130028334, 0.011728703, 0.0138142528, -0.021941863, 0.0275212117, -0.0104679847, 0.0476927049, 0.0155846234, -0.0133850724, 0.0590659901, 0.0467270464, 0.0317057222, 0.0457882136, 0.0202117283, 0.00620970782, -0.00350050488, 0.031008305, 0.0498922542, -0.0160272159, -0.0175695848, -0.0097906841, 0.0221966878, -0.00238899398, -0.00560952583, -0.0335297398, -0.0125669464, -0.0104143377, -0.037070483, -0.0526282825, -0.0164295733, 0.000716279086, 0.0122383554, 0.0397260375, 0.0202653762, -0.0361316502, 0.0294525251, -0.00354074058, -0.00583752804, 0.0291038156, -0.0121578844, 0.0221296288, -0.0475317612, -0.0487120077, -0.00302605913, 0.0280040391, -0.00889879279, -0.0118427044, 0.010991049, 0.0277089775, 0.0505360253, -0.0268908516, -0.0440178439, 9.80744953e-05, -0.0415232293, -0.0239536464, -0.0269847345, -0.028030863, 0.0538621768, 0.00404033391, -0.00185251818, -0.000688617059, -0.00975715462, 0.047102578, 0.0222101, -0.00395315653, -0.0380629599, -0.0298817046, -0.015933333, 0.0411476977, -0.000865905546, 0.0149810882, -0.0128687145, 0.00465392787, 0.0275480356, 0.0288087539, -0.0107764583, -0.0560080782, -0.0542913564, 0.00180054712, 0.0376874283, -0.0223442186, 0.0462442189, 0.0090060886, -0.0109172836, 0.0211237371, -0.0129827159, -0.0351391695, 0.00886526331, -0.0195143092, 0.00218110974, -0.0128016546, -0.0296134669, 0.0325104371, -0.0059146462, -0.00323059061, 0.00331441476, -0.0135795446, -0.0486583598, -0.00391962659, -0.00499257818, -0.0288624, 0.00048576211, 0.0153432097, -0.00887197, 0.00212243269, -0.0230014026, -0.0293988772, -0.0412013456, 0.020493377, 0.0069071264, -0.0220759809, -0.0107496353, -0.0100455107, 0.0159869809, -0.00599847082, -0.0374460146, -0.0067327721, 0.0210030302, 0.00649135793, -0.0170733444, -0.00380227249, -0.0284600444, 0.000617366342, -0.00972362515, -0.00908655953, 0.012137766, -0.00596829364, -0.0241145901, 0.00350721087, 0.0133180134, 0.0249461271, 0.0259251948, 0.00330938539, -0.0314911343, 0.0208957344, 0.0243828278, -0.00335632707, 0.00918044336, -0.0263141412, -0.0155309755, -0.0294793472, -0.0122517673, -0.00244767102, 0.00762466295, -0.0300962962, 0.00329597341, -0.0159199201, -0.0339857452, -0.0377142541, 0.0177171156, -0.00619964907, 0.00898597, 0.0268506166, 0.00558940787, -0.0177573506, -0.00644441601, -0.0203726701, 0.00720218848, -0.00631700316, 0.0119969416, -0.00217608013, 0.059173286, 0.0255094264, -0.0282722767, 0.0197423119, -0.00311323651, 0.0124864755, 0.0197691359, 0.00077369879, -0.0136935459, 0.0221564528, 0.00820808, 0.0243560039, -0.0180524122, -0.00321885501, -0.0486315377, -0.00513005024, -0.0039296858, 0.0138813127, 0.0356488191, 0.00886526331, 0.00255831913, -0.0438569, -0.0258447248, -0.0167916939, -0.0148737933, 0.00783254765, -0.00503616687, 0.0294793472, -0.0374996625, 0.0192863066, 0.052225925, -0.0606754199, 0.00616611913, -0.00954927, 0.0177841745, 0.0104411617, 0.00898597, -0.0121645899, 0.0406648703, 0.0131503642, -0.0167246349, -0.0104545727, -0.00811419729, 0.00461704517, 0.00726254191, 0.0172611102, 0.00248958333, -0.00666571269, 0.0185888875, 0.00217440375, -0.0153834447, 0.0205470249, -0.0126138888, -0.0153163858, -0.01365331, 0.00707477517, -0.035621997, 0.00877808593, 0.00942856353, 0.012902244, -0.00324400235, -0.00608564774, -0.0044661616, 0.0263275523, 0.00649806391, 0.0334760919, 0.0587441064, 0.013217424, -0.0049590487, -0.0209359694, -0.0134856617, -0.00324400235, -0.0234037582, -0.0373923667, 0.0473976433, -0.00389950885, -0.000463967794, -0.0141495503, -0.0539426468, -0.000732205692, -0.0475585833, 0.0231221095, 0.0270786192, -0.00491210725, 0.000224858828, 0.00259184907, 0.000147530853, -0.0154907405, 0.00296402909, 0.0291574635, 0.0362121202, 0.00865737908, -0.0385726131, -0.00133280724, 0.00930785574, 0.00746372, -0.0150481481, 0.0266092028, 0.0134588378, 0.0369900092, -0.0193399545, -0.0154773286, 0.0289965197, -0.0192326587, -0.0177037027, 0.0094084451, 0.0489802435, -0.0250668339, 0.0527892224, 0.00339656277, -0.00142752868, 0.0261531975, 0.00852996577, 0.00953585841, -0.00819466822, 0.0592805818, -0.00732960133, -0.0191656, 0.0195947811, -0.0130631868, 0.00854337774, -0.0254423674, 0.0329127945, -0.0108837541, 0.033422444, 0.00385592016, -0.0142434342, -0.0147799095, -0.0330469124, -0.000160523632, 0.00732289534, 0.0108368127, 0.0200776085, -0.00244096504, -0.00966327172, -0.00951574, 0.0317861959, 0.072102353, -0.0121444725, -0.0326982029, -0.000435886643, 0.0226258691, -0.0309546571, 0.0557934903, -0.0269310884, -0.00304617686, 0.0146860266, -0.00182737084, 0.0129424799, 0.0293184053, -0.0277626254, 0.0094822105, 0.029989, -0.0277089775, -0.00649806391, 0.00443933764, -0.0380629599, 0.0335029177, -0.00100756867, 0.00969009474, 0.0518503897, -0.00613258965, -0.0433204249, 0.00803372543, -0.0199032538, -0.0451980904, -0.0193936024, 0.00234205229, 0.0293452293, 0.0247851852, 0.0154370926, 0.0016152953, -0.00121712964, 0.0498386063, 0.00377544877, -0.0306595955, 0.0118762339, 0.000137052819, -0.0149542643, 0.0210566763, 0.03487093, 0.0102936309, 0.0108636357, 0.00707477517, 0.00358432927, 0.0331810303, -0.00595488213, -0.00361115299, 0.0100857457, 0.00747042615, -0.0239938833, -0.0167514589, -0.0220893938, 0.00361450599, -0.0123456502, -0.0317057222, 0.00217775675, 0.011306229, -0.0250534229, 0.0010779812, 0.0129290679, -0.00402021594, 0.0105149271, 0.0335833877, -0.0184681807, -0.0426498316, 0.0314643085, 0.0358097628, -0.0143507291, 0.00322723761, -0.00747713214, -0.000721727672, 0.0351391695, -0.00270417356, -0.0354610533, -0.016711222, 0.0120774126, -0.039296858, 0.0247985963, 0.0284063965, 0.0117354095, 0.0152761498, -0.0239938833, 0.0213383269, -0.0021475798, -0.00481822388, -0.010622222, -0.0269176755, -0.0065248874, 0.0155309755, 0.00574699743, -0.031732548, 0.0164429843, 0.00838243496, 0.0343881026, -0.0181731191, -0.0334492698, -0.00463045714, -0.000448460283, 0.0215260927, -0.00404368667, -0.00681659626, -0.00355415256, -0.0340125673, -0.0247985963, -0.0407453403, 0.0142970812, 0.0243694149, 0.0119499993, 0.00811419729, -0.00952915195, 0.0349782258, 0.00808066782, 0.0118091749, -0.0294257011, -0.00842267089, 0.00950903445, 0.00297241146, -0.0170465205, 0.029559819, -0.0107026929, -0.00425827689, -0.0058777635, 0.0291038156, -0.00120874716, 0.0415500551, -0.000564557035, -0.0608900078, 0.00633041514, -0.0182535909, 0.0193265434, -0.00289361668, 0.0483633, -0.0260995496, 0.0301231183, 0.0128217731, -0.0185218286, -0.0163491014, -0.0215260927, -0.0120774126, 0.0139081366, 0.023443995, -0.000104623272, -0.0472635217, -0.0100119803, 0.005686644, -0.0133247189, 0.0383312, -0.00471763453, -0.00387939112, -0.0153566217, 0.019755723, -0.00147698505, -0.0244096518, -0.00235378789, -0.0248522442, 0.0398601554, -0.0227734, -0.0201044325, -0.0168319307, 0.0267701447, 0.000487438607, -0.00480816467, -0.0199032538, 0.0172611102, -0.0315984264, -0.0286746342, -0.0619093142, -0.00513005024, 0.011359876, 0.0131771881, -0.00409062859, -0.015946744, -0.0127144773, -0.0188839491, 0.0293988772, 0.0301499423, -0.00560952583, 0.00838243496, 0.000499174, 0.0112190517, -0.00602194155, 0.0124864755, -0.0242621209, -0.0252948366, -0.00712171709, -0.0292915814, -0.00748383813, -0.0168319307, 0.00997845083, 0.000620719336, 0.0154773286, -0.00641759252, -0.00296570547, 0.0129827159, -0.0160406288, -0.000445945567, 0.00203525531, -0.0234976429, 0.0171269923, 0.00552234845, 0.00516022695, -0.00747713214, 0.00307803019, 0.0102802189, 0.00859702565, -0.00173181109, 0.00279470393, -0.0209896173, 0.0107764583, 0.0283527486, 0.0016865459, 0.0122182379, 0.00994492136, -0.0105015151, -0.0203726701, -0.0250802469, 0.0193399545, -0.014377553, -0.00992480293, -0.0174086411, -0.0106490459, 0.0180390012, 0.000668499211, -0.0083422, -0.00566987926, -0.000794654828, -0.000286050607, -0.00503952, -0.0237792917, -0.00875126198, 0.0123724742, -0.00449298508, -0.00343009247, 0.0114068175, -0.0167916939, -0.0296134669, 0.0140154315, 0.0413354635, 0.00846290682, 6.2868261e-05, 0.0270249713, -0.0220357459, 0.00255161338, -0.00248958333, -0.0255630743, 0.00359774125, -0.0254691914, 0.0113263465, -0.0143239051, -0.00561958458, -0.00798678398, 0.00534799369, 0.0186157115, -0.0320812576, -0.00545528904, -0.0167648699, 0.051608976, 0.00457010372, 0.00848973077, 0.0330469124, 0.00260190782, -0.00576711539, 0.0266360268, 0.00636059185, -0.0156382713, 0.0110111665, 0.0360243544, 0.00727595389, -0.0134588378, -0.017435465, 0.0320812576, -0.0181194711, 0.0315984264, -0.00899267662, 0.0286746342, -0.0368827134, 0.00896585267, 0.00456675049, 0.00761795696, 0.0303645339, -0.0345222205, -0.0266896728, 0.0155577995, 0.0290769916, 0.0141763743, 0.00635388587, -0.026528731, 0.0258581359, 0.0371777751, -0.00522393361, -0.0286209863, -0.0311692469, -0.0456809178, 0.0161345117, 0.0184815936, 0.0386530869, 0.00831537601, 0.0530038141, -0.0252277777, -0.0256703701, 0.00810749177, -0.00887197, 0.00324567896, 0.0264750831, -0.00211237371, -0.0346831642, 0.0198093709, -0.0269042645, 0.0323763192, 0.0123724742, 0.00458351569, -0.0373118967, -0.0255496632, -0.0185620636, 0.0255764872, -0.046271041, 0.0206543207, 0.00318700192, 0.00955597591, -0.0288087539, 0.00892561674, -0.00752407406, -0.00129508623, 0.0574029163, 0.00598170562, 0.0270786192, -0.0194606613, -0.00638741581, 0.02348423, 0.009844332, 0.0199032538, 0.0240743533, -0.0138544887, 0.00453657378, 0.00218110974, 0.0328323208, 0.0390017927, -0.0418182909, 0.0168587528, 0.00173181109, -0.0220893938, -0.00313670724, 0.0311960708, 0.0308741853, 0.0214858577, -0.0377142541, 0.00359103526, 0.0200105496, -0.031732548, -0.00459022168, -0.0155443875, 0.013613075, 0.0290233437, 0.00103020133, -0.0135057792, 0.0230148137, -0.0163356904, -0.0173549931, -0.0410672277, -0.0153163858, 0.0284063965, -0.0184681807, -0.0124998875, 0.0326982029, 0.0103003364, -0.000929612084, -0.00396992126, 0.0186693594, -0.000352481409, 0.0146055548, 0.0192997195, 0.0250802469, -0.046271041, -0.0379556678, 0.00130263041, 0.00550223049, 0.00889879279, 0.0353537574, -0.00822149217, 0.0068132435, 0.0156248594, 0.0204397291, -0.0185620636, -0.0310619511, 0.0210432652, 0.000676881638, -0.0248656552, 0.0122182379, 0.000778728223, 0.0163356904, -0.0224112794, -0.0215797406, 0.00509316754, -0.00472098729, 0.0316789, 0.0264482591, 0.00108384888, -0.0129357744, -0.00178378227, -0.0403429829, 0.0106557515, 0.00839584693, -0.0192863066, -0.0321617275, 0.000787948899, 0.00149458821, 0.00836231746, 0.00589117547, -0.00825502258, -0.0195008963, 0.00303947111, -0.0218345672, 0.0199703127, -0.0187364183, 0.0315447785, -0.0236317609, 0.0101662176, -0.0232428163, 0.00490204804, 0.0136197805, -0.00183575333, 0.00283326302, 0.0432667769, 0.00158595678, 0.000150045584, 0.00073891168, 0.00433874829, 0.00820808, -0.0297207627, -0.0278162733, 0.000467739883, 0.00621641381, -0.031813018, 0.000642932777, 0.0312497187, 0.0383043773, 0.0141763743, 0.02121762, 0.0256703701, 0.00981080253, 0.0134588378, -0.00147195556, -0.0256167222, -0.0333688, -0.00343344547, 0.00948891696, -0.0206006728, 0.0237524677, 0.0343344547, -0.017435465, 0.00800690241, -0.00881161634, 0.0201983154, -0.0366413, -0.0586904585, -0.00435216026, 0.0147530856, 0.0153297978, 0.0346831642, -0.00416774675, -0.0463515148, 0.031732548, -0.0316520743, -0.0184279457, -0.00310485391, -0.0390017927, -0.0231489334, 0.0354878791, -0.00253149541, -0.0317593701, -0.00100337749, -0.0264348481, -0.0201312564, -0.00708148116, 0.0124864755, 0.00558940787, 0.0250265989, 0.000259645924, 0.0120371766, -0.00485175336, 0.0114604654, -0.00372180133, -0.00883843936, -0.0234976429, 0.00985774398, -0.0072692479, 0.0282722767, -0.021941863, 0.0180926472, 0.026542142, 0.00932126772, 0.0296134669, -0.0504555553, -0.0161345117, -0.0147530856, 0.0188973621, 0.0201178454, 0.00670594815, 0.00148285273, 0.00875126198, -0.00205369666, 0.0276016835, 0.00279638031, -0.0159601569, -0.0150213242, 0.0298012327, -0.0110312849, -0.0295061711, 0.00582411606, -0.0112123452, 0.0323494934, 0.0649672225, 0.0455199778, 0.00755760353, 0.01520909, -0.0291306395, -0.010581986, -0.00609570695, -0.0395650938, 0.0303913578, -0.0298012327, -0.0383848473, -0.0131235402, 0.0108904596, -0.0436959565, 0.0154102687, 0.0149274403, -0.0094084451, -0.00451980904, -0.0102601005, 0.00678641954, 0.00346026919, 0.00708148116, -0.00373521307, 0.0395114459, 0.0149676763, -0.0262604933, 0.00293217576, -0.0134588378, 0.0210700892, 0.00634382712, 0.00507975556, -0.00861714315, -0.000917038415, 0.00278129196, 0.0138142528, 0.0132643655, -0.0191387758, 0.0074234847, 0.0161479227, 0.0386262611, -0.00684006698, 0.0162954535, -0.0458418615, 0.0082617281, -0.0116616441, 0.018964421, -0.0168319307, 0.020520201, 0.0111050503, 0.0135527216, 0.000492468069, -0.0231757574, -0.004922166, 0.0269445, 0.0105015151, -0.00885855779, 0.0129894214, -0.0262604933, 0.014444612, 0.0178109985, -0.00716865854, 0.00956268236, -0.0103003364, 0.00879820436, 0.00344015146, 0.00222637481, -0.0145653198, 0.0240207054, -0.00981080253, -0.0140690794, 0.0240475293, 0.00223643379, 0.0267433207, 0.0288087539, -0.00281314529, 0.0291038156, -0.0143507291, -0.03487093, -0.00461704517, 0.00106121635, -0.00215931539, 0.0122450609, -0.00974374264, 0.0138813127, -0.0122584729, -0.0175695848, -0.0120774126, 0.000449717656, 0.0142970812, 0.0143239051, -0.0281381588, -0.0105886925, 0.00337309181, -0.0203190222, -0.0102735125, -0.00666571269, 0.0104881031, 0.0131906, -0.000498754904, -0.00635723863, -0.00639747456, 0.0351123437, 0.0706538707, -0.0114805829, -0.0152895618, 0.0093883276, -0.00716195256, -0.00335465046, -0.00714854058, -0.0045768097, 0.0109843435, -0.0139215486, 0.0137740178, 0.0104746912, 0.00111067272, 0.0286746342, 0.00718207052, 0.0139483726, 0.0524405129, -0.00361785898, -0.00369497738, -0.0134521322, -0.0185218286, 0.0140288435, -0.0100924522, -0.0159869809, 0.010581986, 0.013599663, -0.00849643629, -0.0226929281, -0.0098242145, -0.00901279412, 0.0183340628, -0.017462289, 0.0265555549, -0.0250936579, 0.0161881596, 0.0355951712, 0.01520909, 0.00655841734, -0.0134789562, 0.0179451164, -0.0140288435, 0.0129961278, 0.0119701177, 0.00842937641, -0.0109441075, -0.0150749711, 0.00852996577, 0.0157723892, 0.00439239619, -0.0262470804, 0.00324735534, -0.0222369246, 0.0111117559, -0.000793816638, 0.0263275523, -0.00810078532, 0.00840925891, -0.0209493823, 0.00286511634, -0.0234037582, 0.007973372, 0.00454327976, 0.010253395, 0.00244096504, 0.0118829403, 0.0290769916, -0.0149945, -0.00715524657, 0.00489869528, -0.0144312, -0.00708148116, 0.00162619248, 0.0246108305, -0.0203324351, -0.0175964087, 0.00229846383, 0.0200641975, -0.0324836113, -0.0236854088, -0.00683671422, -0.00148620573, 0.0106892809, 0.00285841036, 0.0148201454, -0.01903148, -0.0146994386, 0.0118762339, -0.0201849043, 0.00244264165, 0.0251338929, -0.0180792361, 0.00141914631, 0.0112659931, -0.0127413012, -0.0274005048, 0.0195277203, 0.0146189667, 0.00596829364, -0.0103875138, 0.0318666659, -0.0208555, 0.00481487066, 0.0235781129, 0.0140288435, 0.0376337804, -0.0224246904, 0.00135292509, -0.010991049, 0.0225856341, 0.00401015719, 0.0171672273, -0.00856349617, 0.0116482321, 0.00649806391, -0.00502275536, 0.0174757, -0.00283829262, -0.0216333885, -0.00916703139, -0.0267030858, -0.0119634112, 0.0119499993, 0.016657576, 0.0117957629, 0.0131771881, 0.00716195256, -0.0217406843, -0.0149542643, -0.00476457598, 0.0127077717, -0.0023839646, -0.013244248, -0.00624323776, -0.0206677318, -0.00541505311, 0.0292647574, 0.0018055765, 0.00103439251, -0.0225453973, 0.0170599315, 0.0308205374, 0.00830196403, -0.010964225, -0.00358097628, -0.0128083611, -0.0263007283, 0.00574699743, 0.0406916924, 0.00759783946, -0.0278967451, -0.0410135798, -0.00869761501, -0.0223173946, -0.0132643655, -0.0111385798, -0.0160406288, 0.00495234272, -0.00254826038, 0.0119231762, -0.0562226698, -0.0226392802, -0.000118087555, 0.0312765427, 0.0125736529, -0.0122450609, -0.0337443314, -0.0121310605, -0.0213383269, -0.0370973051, 0.00390956784, 0.00151722075, -0.00454663299, 0.00851655379, 0.00749054411, 0.0255496632, 0.00869090855, -0.00141244032, 0.00492551876, 0.0044862791, 0.00804043189, -0.0333956219, -0.00390286185, 0.0138410768, -0.00808737334, 0.00619294308, 0.0118695283, -0.0186827723, 0.0162954535, -0.0133716604, 0.0057235267, -0.0138008418, -0.00948891696, 0.0011919823, -0.00290535204, 0.00320879626, 0.03487093, 0.0154505046, -0.00887867529, -0.00905303, 0.0106155155, -0.00697418628, -0.0209896173, -0.000101165511, 0.0138544887, 0.00731618935, 4.50817861e-05, -0.0188973621, 0.00811419729, 0.0252411887, -0.00574699743, 0.00932126772, -0.0243291799, 0.020426318, 0.00678977231, 0.0020017256, 0.0199837256, -0.0132107176, 0.0243291799, 0.00141411682, -0.00777219376, -0.0110312849, 0.0193936024, -0.0109441075, -0.0113330521, -0.0193801895, -0.00952244643, -0.00541505311, 0.00417445274, 0.0109843435, -0.0254021324, -0.0146323787, -0.00242252368, -0.0236317609, 0.0196081921, 0.0120505886, 0.0368827134, 0.015906509, -0.0372582488, 0.000225906624, -2.28683311e-05, -0.00761125097, -0.0057604094, -0.00695406832, 0.000562461384, 0.00631029718, -0.000273896061, -0.0306327716, -0.00523399236, -0.00140489615, -0.00517699216, -0.0282722767, -0.00180222362, 0.00387939112, -0.0295329951, -0.0223442186, 0.00526416907, -0.000322514185, 0.00372515409, 0.00662882952, -0.0289428718, 0.0110111665, 0.0131503642, -0.0045231618, 0.0267030858, -0.00551228924, -0.0329664424, 0.00464051589, 0.0123456502, 0.00694736233, -0.0155309755, -0.0274273288, -0.0161076877, 0.00347032817, 0.00682330225, -0.0191656, 0.00494228397, 0.00581070408, -0.015893098, 0.0192460716, -0.00787278358, -0.00158679497, 0.025697194, -0.0108971661, 0.0314374864, -0.0329127945, -0.0265555549, 0.00893902872, 0.0222369246, -0.0045768097, -0.0148603814, 0.00291541102, 0.0142434342, -0.0342539847, -0.0128418906, 0.0163759254, 0.00174354657, -0.00916703139, -0.0187498312, 0.0197691359, 0.011017873, -0.0125401234, -0.00801360793, 0.0253753085, 0.004368925, -0.0197825469, 0.00454998575, -0.0188034791, 0.0267701447, 0.0150213242, -0.000441754324, -0.0137002524, -0.00662882952, -0.0187095962, 0.0121914139, 0.00234205229, 0.0173549931, 0.0208823234, -0.0279235672, -0.00714854058, -0.0002062079, -0.020426318, -0.015973568, 0.0246778894, 0.00728266, 0.000262789341, -0.00938162114, -0.0350050479, 0.022733165, -0.037928842, 0.0180255882, 0.0340662152, 0.0157858022, 0.00524069835, 0.00371174235, 0.00767160486, 0.0116750561, 0.00469751656, 0.0288087539, 0.0199032538, -0.0101460991, 0.00160188333, 0.00134035142, -0.0126407119, -0.0130363628, 0.0378215462, 0.0291306395, 0.00271758554, -0.0183474738, -0.0111654038, 0.0135191912, -0.00873785, -0.0191521887, -0.00336973905, -0.034173511, -0.0256703701, -0.000171735141, 0.00906644203, -0.00919385534, 0.0184279457, 0.00928103179, -0.0216870364, -0.0444202, 0.0157589782, -0.0369363613, 0.00517363893, -0.000253568665, 0.00449633831, -0.0153566217, -0.00775207626, -0.00100505399, 0.00316688395, -0.0119567057, -0.0253484845, 0.02121762, 0.0115610547, -0.00769172236, -0.0217809193, -0.00556258392, -0.00220625685, 0.0192326587, 0.000872611476, -0.0127949491, -0.0126608303, 0.0440983139, 0.0178914703, 0.0171135794, -0.00138645479, 0.000444688194, -0.0250802469, -0.00508981477, 0.0127748316, 0.0144982599, 0.0300694723, 0.0292647574, 0.0130363628, -0.0164832212, -0.0168587528, -0.00816113874, 0.00440580817, 0.0105685741, 0.00352397584, 0.027266385, 0.0328323208, 0.00750395609, 0.0169258136, -0.00141076383, 0.00105702505, -0.00126071821, -0.000362959458, -0.0202787872, 0.0119231762, 0.0361852944, 0.00812090281, 0.0103137484, 0.00285673398, 0.0140154315, -0.00722901197, 0.0182535909, -0.00693395035, 0.013244248, -0.0213785619, -0.0166039281, -0.0200910214, -0.0190583039, 0.0241950601, -0.0175695848, 0.00388944987, -0.00670930091, 0.0182133559, -0.0144177889, -0.00322891399, -0.00325573795, 0.0152895618, 0.000608983915, 0.0126608303, -0.00411409931, 0.00203525531, -0.0241145901, -0.00997845083, 0.00920056086, 0.00108384888, -0.0265957899, 0.00554917194, 0.0023068462, -0.00792643055, -0.00376203703, 0.0198496059, 0.0156650953, -0.00274776225, 0.0162820425, 0.0138008418, 0.00674953684, -0.0217272714, 0.0128284786, -0.0144982599, -0.00576711539, -0.00420127669, 0.00202854932, 0.00518369814, 0.0118628219, 0.0285405163, -0.00735642528, -0.00921397284, -0.0120103527, 0.0114336414, 0.0134387203, -0.00806725584, -0.0162820425, -0.00973703712, -0.00808066782, -0.0199703127, 0.00554581918, 0.00933468, -0.00565982, 0.0245035347, 0.0117219975, -0.000167229577, 0.00543517107, -0.00377880177, -0.0119097643, -0.0041208053, 0.0175829958, 0.0171135794, 0.0217540953, -0.0356756449, 0.00897926465, -0.0387067311, 0.0281918067, -0.011400112, -0.0268640276, -0.00373521307, 0.00518034492, -0.0253753085, 0.00411074609, 0.0068501262, -0.000233450817, -0.00253317202, 0.00095224462, 0.0195679571, -0.00482157664, -0.00316017796, -0.0216468014, 0.00455669174, 0.0128284786, 0.0119567057, -0.00513340347, 0.0123791806, -0.0101192761, -0.00424821815, 0.00804713741, -0.0126675358, -0.0262470804, 0.0144177889, 0.00168067822, 0.00979739055, -0.0161076877, 0.000491210725, -0.00317191356, -0.0187766552, 0.0132375415, 0.018991245, 0.000399213488, -0.00251808343, 0.000871773285, 0.0308473613, 0.0358097628, 0.00883173384, -0.0123523567, 0.0169660486, 3.79305202e-05, -0.01520909, 0.00751736807, -0.00171839923, 0.0148737933, -0.00245773, 0.0207347926, -0.00632370915, -0.0192863066, -0.00387268513, -0.013680134, 0.0109977545, -0.00293888175, 0.00328759104, 0.0210298542, 0.0118896458, -0.000462291297, -0.00617617834, 0.0133582484, -0.00653829938, -0.0226124581, 0.00564305531, -0.00400009798, -0.00324735534, -0.0104277497, -0.000342003361, 0.0199166667, 0.0151152071, 0.0146860266, -0.00424821815, 0.00312497187, 0.0163625143, 0.00763136894, 0.00777889974, 0.0195143092, 0.00834890548, 0.0196618401, -0.00750395609, 0.0169392247, -0.00962974131, -0.00574029144, 0.00276117423, -0.00364468293, 0.021244444, -0.00245940639, 0.00249461271, 0.0110446969, -0.00136717514, -0.00914020743, -0.010977637, 0.0100924522, -0.0170196965, 0.00201513735, 0.0081678452, 0.00454663299, -0.024972951, 0.00736313127, 0.0302304141, 0.002843322, -0.00504957885, 0.0205604378, 0.0101125697, 0.00640753331, 0.0184145328, 0.00355079956, -0.0299621765, -0.00327753206, 0.00891891122, -0.00413757, -0.0177171156, -0.0045231618, -0.00811419729, 0.0210969131, 0.00147782336, -0.00888538174, -0.00849643629, -0.018924186, 0.0241950601, 0.0168855768, -0.00237893499, 0.0147799095, -0.0084562, -0.0206006728, 0.00478469394, 0.00695406832, 0.0011936588, -0.000463548669, -0.0112794051, 0.00250970107, -0.00987115595, -0.00277793896, -0.000582998386, -0.0114805829, 0.0135460151, 0.00278799795, -0.00458351569, 0.00918044336, 0.0171940513, -0.0029204404, -0.0286746342, -0.00740336673, 0.00606217701, 0.0196618401, -0.0128687145, -0.0103338659, 0.00620300183, 0.0114671709, 0.00573358545, -0.0100253923, 0.013626487, 0.000970686, -0.00218278612, 0.0144580239, -0.0018055765, 0.00743689667, 0.0238329396, -0.0203592591, -0.00112911407, 0.000659697631, -0.0186291244, 0.0208957344, 0.00219955109, 0.00279470393, 0.00173181109, -0.0132509535, 0.00473439926, -0.0354342312, 0.0121712955, 0.00662882952, -0.023470819, -0.0024979657, 0.00144345534, -0.00126490952, 0.00274440926, -0.0078794891, 0.0167916939, 0.0150615592, 0.000430018932, 0.0121042365, -0.00156248594, 0.00879820436, 0.00713512907, -0.0127211837, 0.000141558368, -0.00685347896, 0.0124060037, 0.0281918067, 0.0159869809, 0.00454327976, 0.018991245, -0.00400345121, -0.0119365873, 0.00288188132, 0.00790631305, -0.00863055512, -0.00192796008, -0.012862009, 0.00918044336, -0.0129961278, -0.000251892168, -0.0156114474, -0.0178109985, 0.0244230628, 0.0135326032, 0.0138276648, -0.00597499963, -0.0196618401, 0.00774537027, 0.0148737933, 0.00375868403, -0.0135728391, 0.0110782264, 0.0118427044, 0.00713512907, -0.00123892387, -0.0140959034, -0.0199971367, 0.0186023, 0.0123858862, -0.0192192476, -0.0234037582, -0.00734301331, -0.00255664275, -0.00883173384, -0.014364141, -0.00894573517, -0.0307400655, -0.0124194156, -0.00783254765, -0.00149207341, -0.00520046288, 0.0156919193, -0.0232025813, 0.00795996, 0.0213919748, -0.0109374011, 0.00519040367, -0.0094822105, -0.00445274962, -0.0200776085, 0.00824831612, 0.000322723761, 0.024248708, 0.025697194, -0.0196618401, -1.52193588e-05, 0.011306229, -0.00570340874, 0.0125870649, -0.00832208153, -0.00204699067, 0.0122383554, -0.0333688, -0.00362791796, 0.0137337819, -0.000644609274, -0.0252411887, 0.00448292634, -0.0178244095, -0.00306126522, 0.0283795726, 0.000407386338, -0.00806725584, 0.0134521322, -0.00822819863, -0.00353403459, -0.00694065634, -0.000214799904, -0.00462710438, 0.0310619511, 0.0201312564, -0.0249461271, -0.0155175645, -0.0180390012, -0.028755106, 0.00973703712, 0.021284679, -0.00223475718, 0.0125468289, -0.00221799244, -0.0125267114, 0.0161479227, 0.0145787317, 0.0256569572, 0.00172175223, -0.00579393934, -0.00501269614, -0.0132911894, 0.004539927, 0.00489869528, 0.0329127945, 0.0304718278, -6.22395819e-05, -0.0111519918, -0.00309982453, -0.0137203699, -0.00272764452, 0.01287542, 0.00767160486, -0.000671433052, 0.0119097643, 0.0213651508, 0.00571011472, 0.00293217576, 0.0122584729, 0.00738324877, -0.0162015706, 0.00573693868, 0.00736983679, 0.00580399809, -0.0123456502, 0.0146189667, -0.0111318743, 0.00677636079, -0.0266226139, 0.0107965767, 0.0242218841, -0.0154773286, -0.00466398709, 0.00667577144, -0.00798007846, -0.00816113874, 0.0059515289, -0.0203592591, 0.00599511759, 0.0239268225, 0.0233232882, 0.0061057657, 0.00209393236, 0.00745701417, -0.00322891399, -0.0116348201, 0.00226828689, -0.00290870504, 0.012466358, -0.00112492277, 0.00991809741, -0.00456339773, -0.00487522408, -0.015128619, -0.00309144217, -0.00765819289, -0.01895101, -0.0227734, -0.00677636079, 0.00849643629, -0.0182133559, 0.00444604363, 0.000383496401, -0.024248708, -0.0245169457, 0.00521387486, 0.00541505311, 0.00783254765, -0.0135460151, 0.00117102615, 0.0226124581, 0.00482828263, 0.0257910769, -0.00671936, -0.00714183459, 0.0029942058, 0.00971691869, -0.0125267114, -0.00351056387, 0.0158126261, 0.00236217026, -0.00806725584, 0.00171085505, -0.00704795169, 0.000250634825, -0.0208957344, 0.000805971154, -0.0194204263, -0.0173415821, 0.0126407119, -0.00903961807, 0.00973703712, 0.00536140567, -0.00712171709, -0.00354744657, -0.00533122895, -0.0120371766, -0.00383915543, -0.00796666648, 0.0284332205, 0.0170599315, -0.00634382712, -0.0214053858, -0.00594482291, -0.000228421355, 0.0119432937, 0.00462375116, -0.00622312, -0.0188571271, 0.0176232327, 0.00325238495, 0.00457010372, 0.00666906545, -0.00132358656, -0.0051132855, -0.000562461384, 0.0383580253, 0.023551289, 0.00458016247, 0.024208473, 0.0145384958, -0.0100253923, 0.0218077432, -0.0176634677, -0.0122249434, -0.0139751956, 0.0118225869, -0.0142702581, 0.00244096504, 0.00677971356, 0.00048199002, 0.00920056086, -0.0114470534, -0.0170062836, 0.00427839486, 0.0133917788, 0.0526282825, -0.00511999149, 0.00306461821, -0.000206836587, -0.00916032493, -0.0115007013, -0.0139215486, 0.00283996901, 0.0165100452, -0.0240072943, 0.00985774398, 0.0342003368, -0.0153163858, 0.0230952855, -0.0407989882, -0.027266385, -0.00387603813, 0.0118494108, 0.0017653408, -0.00227666949, 0.0132643655, -0.0102466885, -0.00127329188, 0.00416439399, 0.00192796008, -0.0117018791, 0.00059599115, 0.0237524677, -0.0203592591, 0.00362121197, -0.00128754205, 0.00489198929, 0.0022733165, 0.00791301858, -0.0200776085, 0.00529099302, -0.00437898422, -0.00301935314, 0.00918044336, 0.009462093, 0.00298917643, 0.0269579124, 0.00248958333, -0.00566317327, -0.00446280837, 0.0271456782, 0.0103606898, -0.0156114474, 0.0191790126, -0.000460195704, -0.0114939949, -0.00606217701, 0.00969680119, 0.0290501676, -0.0116012907, 0.00181898847, 0.0381434336, -0.000810581492, -0.0177037027, -0.0282186307, -0.0136197805, -0.0154236807, -0.000724661513, -0.0296402909, 0.00536811166, -0.0142702581, -0.0108636357, 0.00538487639, -0.0175829958, 0.0142300222, -0.0064678872, -0.00856349617, -0.0112525811, 0.0220759809, 0.0072692479, 0.00122215902, -0.00444604363, 0.0070613632, -0.00481151789, -0.0192863066, 0.0172879342, -0.000903626496, 0.00390286185, 0.00212243269, -0.0028030863, 0.0159601569, -0.0158260372, 0.0070613632, -0.0182804149, 0.0155577995, 0.0169660486, -0.00419457071, -0.0102064535, 0.00254155439, 0.009844332, 0.0323763192, -0.0130900107, 0.0023018166, 0.00592470542, 0.0349245779, 0.0156919193, -0.0145787317, 0.0291842856, -0.0168989897, 0.000422474724, 0.00546199456, -0.0058777635, 0.0378751941, 0.00918714888, -0.0118158804, 0.0193399545, 0.0198361948, -0.00275614462, -0.0228538718, 0.0104411617, 0.0104076313, -0.0193667784, -0.00144094066, 0.00105702505, 0.0151956789, 0.0122651793, 0.0150347361, 0.00282488065, 0.00460028043, 0.0327250287, 0.00235043489, -0.00329597341, 0.00171420805, 0.0282186307, 0.0112458747, 0.0127345957, -0.011688468, -0.0414695852, 0.00264214352, -0.00966327172, 0.00889208727, -0.0243560039, -0.00575035065, -0.0120304711, -0.00749054411, -0.0235781129, -0.021968687, -0.0129760094, 0.00702783372, 0.0226392802, 0.00345691619, 0.0206140839, 0.000392926653, 0.012084119, -0.0126407119, -0.00364803569, 0.00335968, 0.0269042645, 0.0192594826, -0.00370503636, 0.0101125697, 0.0179048814, -0.0302035902, 0.00758442748, -0.0135661336, 0.000785015058, 0.00602864753, -0.00363462395, -0.00385592016, -0.00869090855, -0.0164295733, -0.00333788572, -0.00622982578, 0.016630752, 0.00397662725, 0.0242218841, 0.0111117559, 0.010213159, -0.00850314181, -0.00843608286, 0.00393639179, -0.018991245, 0.00761125097, 0.00890549924, -0.00432198355, -0.00298582343, -0.00096481829, -0.0129089504, 0.0269445, 0.0129894214, 0.00883843936, -0.0071954825, 0.0171269923, 0.00305791246, -5.09232923e-05, 0.0135124857, 0.00404033391, 0.00656847609, 0.0132777775, -0.0097906841, -0.0160674509, 0.0138679007, -0.0306864195, -0.00336135644, -0.0194874853, 0.0146994386, -0.00308305956, 0.00671265414, 0.0084562, 0.0264482591, 0.000161152318, -0.00955597591, -0.00764478091, 0.0081678452, -0.00449298508, -0.0147664975, 0.00928773824, 0.00688030291, 0.00433874829, -0.0261934344, -0.0117488215, 0.00865737908, 0.0253753085, -0.00117773213, -0.0165368672, 0.0165234562, 0.0228002239, 0.0292915814, -0.0201044325, -0.0243157689, -0.0146055548, -0.00264717313, 0.000914523669, -0.0108904596, 0.0190583039, 0.0013059834, -0.00310317753, -0.0253350716, -0.0156382713, -0.00704795169, 0.0100186868, 0.00467404583, 0.0165100452, -0.00543517107, -0.0184547696, 0.020479966, -0.0153968567, -0.00881161634, 0.00959621184, 0.0164429843, -0.00685683219, -0.00831537601, 0.00245270063, -0.000278087275, -0.0135594271, 0.0484974161, -0.00527758105, -0.00777219376, 5.17091466e-05, 0.0162954535, 0.00648129871, 0.0193667784, -0.00899267662, -1.56384813e-05, -0.0145653198, -0.00860373117, -0.00224816916, -0.0145921428, -0.0135124857, 0.0162954535, -0.00100924517, -0.000259017252, -0.0201983154, -0.0205738489, 0.00615941361, 0.0152493259, -0.00798007846, 0.0149006164, 0.0237524677, -0.0157053303, -0.00494563673, -4.44334546e-06, 0.00138813129, 0.0138276648, 0.0199032538, -0.0157723892, 0.00905973557, -0.00447957357, -0.0198093709, -0.00536140567, 0.0127882436, -0.00292546977, 0.0173549931, -0.0240207054, -0.0256033093, 0.0119298818, -0.00771854632, 0.0022246982, -0.00596158812, 0.00343344547, 0.0159199201, -0.00480481191, 0.00865737908, 0.0194740742, -0.00934809167, 0.0218211561, -0.012070707, 0.000932965, -0.00458686845, -0.00983092, 0.0114738774, 0.013680134, 0.0365608297, 0.000515938911, -0.028057687, -0.00453657378, 0.0141629623, 0.0128217731, -0.0176902916, 0.0110379905, 0.00218110974, -0.00635388587, 0.0106155155, 0.0359707065, 0.00663888874, -0.000499593152, 0.0051132855, -0.000720470329, -0.0136466045, 0.00175025244, 0.000719212927, 0.0181194711, 0.0276285056, 0.0121578844, -0.00291038142, -0.00083447143, 0.00280476292, 0.0154907405, -0.0105752805, -0.00744360266, 0.00937491562, 0.0275480356, -0.0126943598, 0.00949562248, -0.0250668339, 0.0090463236, 0.0203056112, 0.0135594271, 0.0258849598, -0.0103472779, 0.00670259539, 0.0209896173, -0.0122584729, -0.00102181884, -0.00724913, -0.00874455646, 0.00630359119, 0.0058777635, 0.00167397235, -0.0184547696, -0.0121176485, -0.0101192761, 0.00454663299, -0.0116079962, -0.0112928171, 0.0194070134, 0.0145787317, 0.00232696394, 0.00263208454, -0.0156382713, -0.0236719977, -0.00274776225, -0.00225655152, 0.0212712679, 0.00859702565, 0.0156785063, -0.0082416106, 0.0110715209, 0.0148872053, -0.0124194156, -0.021915039, -0.0201446675, -0.0212980919, -0.0143373171, -0.015866274, 0.00404368667, -0.00946879853, -0.013230836, 0.00921397284, 0.00983092, 0.026528731, -0.00253317202, -0.0170599315, -0.00773195829, 0.000775794382, 0.011373288, 0.00915361941, -0.00472098729, -0.0113799945, -0.0101528056, 0.0376337804, 0.0139215486, -0.000903626496, 0.00187766552, 0.00608229497, 0.00495234272, -0.013230836, -0.0172745232, -0.0173013471, 0.00720889447, 0.00350721087, 0.000760286872, 0.0119164698, -0.010622222, -0.0188973621, 0.0151956789, -0.0140824914, 0.0169928726, -0.00486181257, -0.0101259816, -0.00922738481, 0.00286008697, -0.0269847345, -0.00315514859, -0.0118829403, -0.0137337819, -7.76947e-05, -0.000582579232, 0.01520909, 0.0274943877, 0.00422474742, -0.00594482291, 0.0249863621, 0.00567323202, -0.0203592591, 0.00471092854, 0.00100170099, -0.00482828263, -0.00428845407, -0.00118611462, 0.0141629623, -0.0024208473, 0.00552905444, 0.0176232327, -0.0223173946, -0.00129592454, 0.021150561, 0.00773866428, 0.00731618935, 0.00382574345, 0.0228136349, -0.0281113349, -0.0131302467, -0.0129625974, -0.00619964907, 0.000721308577, 0.0012707772, -0.00502610812, -0.0340393931, -0.01287542, -0.00599511759, -0.0082416106, -0.0049590487, 0.0027293209, 0.00959621184, 3.11394365e-06, -0.0196081921, -0.0182938259, -0.0118695283, 0.00451645628, 0.00372515409, 0.00478469394, -0.00758442748, 0.0147664975, 0.00555923115, -0.0180390012, 0.00305455946, -0.0170196965, 0.00736983679, 0.0138544887, -7.62801574e-05, 0.0094822105, 0.00374191906, -0.0146055548, 0.0150749711, -0.0392163843, -0.0211237371, 0.0153566217, 0.0203458462, -0.0044292789, -0.00825502258, -0.0149408523, -0.0106758699, 0.00174689945, 0.00630694441, -0.012070707, -0.0193131305, 0.0127010662, -2.63522797e-05, 0.00233702292, -0.000216685949, 0.00946879853, -0.0159601569, -0.0160272159, -0.0132375415, -0.0255228393, 0.0045231618, 0.00868420303, -0.0108099887, -0.00619964907, -0.00174354657, -0.00386597915, 0.0153297978, 0.00133196893, -0.0110849319, -0.0151152071, -0.0045231618, 0.00140741083, 0.0122785913, 0.00662547676, -0.0184547696, 0.00327920867, -0.0199434906, -0.0180255882, 0.015973568, -0.000542762689, -0.00623317901, -0.0154773286, 0.00126826239, 0.00166642817, 0.000923744345, -0.0124730635, 0.00748383813, -0.0152895618, -0.0161345117, -0.0106825754, 0.0274407398, 0.0180658251, 0.0174891129, -0.0255496632, -0.00385592016, 0.011400112, 0.00633041514, 0.00516358, 0.0108904596, 0.000636226847, -0.0200373735, 0.00390621484, 0.0368827134, 0.024972951, 0.0223039836, -0.00375197805, 0.0112995226, 0.0177171156, -0.00335632707, -0.0156919193, -0.012862009, -0.0255764872, 0.00886526331, 0.0164832212, 0.0153163858, -0.015128619, 0.011017873, -0.000840758265, 0.00283829262, 0.0193533655, 0.0139081366, -0.00622312, -0.0164698083, 0.00537146442, -0.000265304086, 0.0253350716, 0.00568329124, 0.00805384386, 0.000146273494, -1.70399198e-05, 0.0153968567, -0.00300929416, -0.00774537027, 0.0090463236, -0.0230550505, -0.0234037582, 0.0051132855, 0.0142970812, 0.0115476428, -0.0221162178, 0.00653494662, -0.00514346221, 0.0163625143, 0.031008305, -0.00854337774, 0.00164631032, -0.00197490165, 0.00325406133, -0.00475116447, 0.0203994941, -0.00259687845, -0.00603870628, -0.00685683219, -0.014377553, 0.0162954535, 0.009079854, -0.00301264715, -0.00398333324, 0.0496508405, -0.0126876542, -0.000263418, 0.00421133544, -0.0019564603, 0.0081678452, 0.00250802469, 0.0127815371, -0.0323494934, 0.00225152215, 0.0171806384, 0.0101528056, 0.00784596, -0.00556929, 0.000891052885, -0.00743019069, -0.0306595955, -0.000275363, -0.0299621765, -0.00339488615, 0.00376203703, -0.0199166667, -0.0199971367, 0.0078794891, -0.0216736253, -0.018991245, 0.0008441112, 0.00913350098, 0.0234305821, 0.0135795446, -0.0147664975, -0.0415768772, 0.0078794891, 0.0161479227, 0.000392297981, 0.00232696394, -0.0180390012, 0.0174757, 0.0130967172, -0.00190784223, -0.0314643085, 0.00354409358, -0.00601523556, 0.0209493823, 0.0223844554, -0.0160808638, -0.00750395609, 0.00614600163, -0.00390286185, 0.0221966878, -0.010199747, 0.0255362503, -0.0147664975, 0.0105618685, -0.0146592027, -0.00360444724, -0.00632706191, -0.0125401234, -0.0100253923, -0.000101165511, 0.00357427029, 0.00861043762, -0.00549887726, -0.00895244069, 0.00809408, 0.0228806958, -0.0126071824, -0.022679517, -0.00236552325, -0.00923409, -0.0203056112, 0.00148620573, 0.0174891129, -0.00447957357, -0.00771854632, -0.0340662152, 0.0110245785, 0.00736313127, 0.00308305956, 0.00335632707, 0.0113196401, -0.0240072943, -0.0168319307, 0.010635634, -0.0187498312, -0.00583417481, -0.0298012327, 0.00407051062, 0.0176768787, -0.0149810882, -0.0189107731, 0.00222637481, -0.011768939, 0.00013066121, 0.0245571826, 0.000665146217, 0.00212243269, 0.0174086411, 0.0107093994, -0.0103673963, 0.0189778339, 0.00930115, 0.00403698068, 0.0178914703, -0.00359438825, 0.00345691619, 0.00927432626, -0.00911338348, 0.00490204804, -0.0140422555, -0.0130765988, -0.00351056387, -0.0573492683, 0.0286746342, -0.00966997724, 0.00435886625, -0.0240341183, 0.00366144767, 0.0042951596, -0.00534464046, 0.0292379335, 0.00415098201, 0.0105283381, -0.00910667796, 0.00426163, -0.00381903746, -0.0262873173, 0.017422054, -0.000821059512, 0.0098644495, -0.0113531705, -0.0183340628, 0.0168319307, -0.022786811, -0.00756430952, -0.00420462945, -0.0217004474, -0.0173013471, 0.00179384113, 0.0048484006, 0.000856265775, -0.00275782123, 0.0129961278, -0.00724242395, -0.0177171156, 0.0140824914, -0.0031937079, 0.0111788157, -0.0306059476, -0.021284679, -0.0114470534, -0.00559276063, 0.0195008963, -0.00579729211, 0.0070613632, 0.0169794615, -0.0177707635, 0.0133180134, -0.00554917194, -0.00484169461, -0.00975044817, -0.0296134669, -0.0270920303, 0.000433791021, -0.0133515429, -0.01895101, -0.000789625396, 0.00818125717, -0.00363797694, 0.000543181784, -0.00357762328, 0.018226767, -0.0153968567, -2.70464511e-06, -0.013230836, -0.000732624845, 0.00209225575, -0.0250534229, -0.0127681252, 0.0108770477, 0.00632706191, 0.0193265434, 0.00924079679, 0.00671265414, -0.00321717863, -0.0246376544, 0.00344685744, -0.0168319307, 0.00746372, 0.0054586418, 0.021941863, -0.0398601554, 0.00759783946, -0.0214992706, 0.0169124, -0.00541170035, -0.00989798, -0.00190616574, -0.00194472494, -0.00839584693, 0.0376606062, -0.0217809193, -0.000639579783, 0.0290233437, -0.00565982, 0.0164027493, -0.00912679546, 0.0005582702, 0.00508981477, 0.0223308075, 0.0173818171, -0.0123389447, 0.0143373171, -0.00134705729, -0.00372515409, -0.0104746912, 0.0145653198, 0.00278632157, -0.0283259246, 0.0103673963, 0.0108569302, -0.00495569548, -0.0143507291, -0.0222101, -0.00150213239, 0.0251875408, -0.00285673398, -0.0200910214, 0.00360109424, 0.035702467, 0.00378550775, -0.0122249434, -0.000276829931, -0.0233903471, 0.00633712113, 0.00228672824, -0.00840925891, -0.0186559483, 0.00266393786, -0.00628012046, -0.00343009247, 0.0147933215, 0.00961632933, -0.00509987352, -0.0298280567, 0.00191957771, -0.00414427603, 0.00553911319, 0.000855427526, -0.00330435601, -0.00159350096, -0.010226571, 0.00850984827, -0.0087177325, -0.000413673173, 0.0119432937, 0.0321617275, -0.0136466045, 0.0192326587, 0.00482828263, -0.000713345245, 0.0294257011, -0.00455333898, -0.0193131305, -0.0117018791, -0.00985774398, -0.0013478956, 0.00779901771, 0.00709489314, 0.00816113874, -0.0175964087, -0.0163356904, 0.00580735132, -0.00277961558, -0.00210566772, 0.0188973621, -0.0112726986, -0.0211103242, 0.0273870919, 0.01060881, 0.0177171156, -0.0229745787, -0.000457261835, 0.0169660486, 0.0111452863, 0.0153432097, -0.00616611913, -0.0130095398, -0.0236317609, -0.00522058085, -0.00688030291, 0.00903961807, 0.00581070408, 0.0178512335, 0.018267002, 0.0277089775, 0.0110245785, 0.00201178435, 0.0199166667, -0.00971691869, 0.0154773286, -0.0192058347, 0.022022333, -0.0201849043, 0.0110849319, -0.00922738481, 0.0118158804, -0.0307132434, 0.00475116447, 0.00773195829, 0.0250534229, 0.0087177325, 0.00043462927, 0.0412013456, -0.00205872604, 0.0330469124, 0.0054217591, -0.0100589227, 0.00305958884, 0.00258514308, -0.00108133419, 0.0203726701, -0.0330737345, 0.000800941663, 0.00759113347, -0.0117219975, -0.0335833877, -0.0156785063, 0.0077252523, -0.0106624579, -0.00763136894, 0.0261666104, 0.00556593714, -0.0019648429, -0.0154907405, 0.0106021045, -0.0145519078, 0.0110514024, 0.00783925317, 0.00875126198, -0.0203190222, -0.00227834587, 0.0206140839, 0.0102601005, 0.00437898422, -0.0081678452, 0.0147664975, 0.000688617059, 0.00679312553, -0.0127949491, -0.00171001675, 0.0109239891, 0.00101595116, 0.0222637486, 0.023511054, -0.000135061986, -0.032644555, -0.00852326, -0.00973033067, -0.000994156813, 0.0155712115, -0.00443933764, -0.0139751956, 0.00873114448, 0.018991245, -0.00236719963, 0.00532452296, 0.00930115, -0.0112659931, 0.00800690241, 0.00543517107, -0.00497246068, -0.015866274, 0.00359774125, -0.00665230071, 0.000692389149, -0.0161613356, 0.0179317053, -0.0113531705, 0.00905303, 0.0109843435, -0.012084119, 0.0104881031, 0.00854337774, 0.00921397284, 0.0339589231, -0.00945538655, -0.0219284501, 0.00458016247, 0.00136801344, -0.00398333324, 0.01895101, -0.00428510085, 0.0322690234, -0.00163289835, -0.012506593, -0.0374728367, 0.0260727257, 0.0271188542, -0.000742683769, -0.00740336673, 0.00677636079, -0.000854170125, -0.00998515636, 0.0241414141, -0.00316017796, 0.0170331076, -0.00396321528, 0.0231086966, -0.0095828, 0.00441921968, 0.00059599115, 0.00476457598, -0.006833361, 0.0252948366, -0.00306294183, 0.00683671422, 0.00411409931, 0.0172342863, -0.00920726638, 0.0239670593, 0.000888538139, 0.030310886, 0.0189107731, 0.00047612231, 0.0119701177, -0.0149945, -0.00285170437, -0.0128083611, -0.012137766, 0.00208890275, -0.00541505311, -0.00394309731, -0.0392700322, -0.00346362218, -0.00618623709, 0.0153432097, 0.009462093, -0.000636645942, -0.0224381033, 0.000716698181, 0.000205160104, -0.00243090629, 0.00639747456, 0.000468159, 0.00230852258, 0.00273099728, -0.00587105751, -0.00783254765, -0.0208555, 0.0177573506, -0.015866274, 0.00289026368, 5.4904951e-05, 0.0200910214, -0.0174488779, 0.00297241146, -0.00169995788, -0.0265823789, 0.0198764298, 0.00790631305, -0.0145921428, -0.00622647302, -0.00609905971, 0.0108368127]
18 Nov, 2020
multimap swap() function in C++ STL 18 Nov, 2020 The multimap::swap() is a built-in function in C++ STL which swaps two multimap container. The contents of multimap1 are in multimap2 and contents of multimap2 are in multimap1 after swap() function is called. Syntax: multimap1_name.swap(multimap2_name) Parameters: This function accepts one parameter which is to be swapped with the multimap1_name, Return Value: The function does not returns anything. // C++ function for illustration // multimap::swap() function #include <bits/stdc++.h> using namespace std; int main() { // initialize container multimap<int, int> mp1, mp2; // insert elements in random order mp1.insert({ 2, 30 }); mp1.insert({ 1, 40 }); mp2.insert({ 10, 60 }); mp2.insert({ 9, 20 }); cout << "\nThe multimap1 before applying swap() is : \n"; cout << "KEY\tELEMENT\n"; for (auto itr = mp1.begin(); itr != mp1.end(); ++itr) { cout << itr->first << '\t' << itr->second << '\n'; } cout << "\nThe multimap2 before applying swap() is : \n"; cout << "KEY\tELEMENT\n"; for (auto itr = mp2.begin(); itr != mp2.end(); ++itr) { cout << itr->first << '\t' << itr->second << '\n'; } // performs swap operation of two multimap mp1.swap(mp2); cout << "\nThe multimap1 after applying swap() is : \n"; cout << "KEY\tELEMENT\n"; for (auto itr = mp1.begin(); itr != mp1.end(); ++itr) { cout << itr->first << '\t' << itr->second << '\n'; } cout << "\nThe multimap2 after applying swap() is : \n"; cout << "KEY\tELEMENT\n"; for (auto itr = mp2.begin(); itr != mp2.end(); ++itr) { cout << itr->first << '\t' << itr->second << '\n'; } return 0; } Learn C++ Online – Master everything from basics to advanced concepts. Apply your knowledge with practical exercises and boost your skills. Take the Three 90 Challenge: finish 90% in 90 days for a 90% refund. Start now and level up your C++ programming!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum/Algorithm for Dynamic Time out timer Calculation/Difference between Round trip time (RTT) and Time to live (TTL)/Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms/Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm/Round Robin Scheduling Algorithm with Different Arrival Time/Selfish Round Robin CPU Scheduling/Find the order of execution of given N processes in Round Robin Scheduling/Calculate server loads using Round Robin Scheduling/set::lower_bound() Function in C++ STL/Implementation of lower_bound() and upper_bound() in List of Pairs in C++/Difference between std::set::lower_bound and std::lower_bound in C++/Difference between std::set vs std::vector in C++ STL/std::minmax() and std::minmax_element() in C++ STL/std::rotate vs std::rotate_copy in C++ STL/std::bitset::to_ullong and std::bitset::to_ulong in C++ STL/std::upper_bound and std::lower_bound for Vector in C++ STL/std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++/std::string::append vs std::string::push_back() vs Operator += in C++/Vector push_back() in C++ STL/vector :: cbegin() and vector :: cend() in C++ STL/unordered_multiset cend() function in C++ STL/unordered_multiset bucket() function in C++ STL/unordered_multiset emplace_hint() function in C++ STL/unordered_multiset end() function in C++ STL/unordered_multiset size() in C++ STL/unordered_multiset emplace() function in C++ STL/unordered_multiset find() function in C++STL/unordered_multiset erase() function in C++ STL/unordered_multiset clear() function in C++ STL/unordered_multiset swap() function in C++ STL/unordered_multiset bucket_size() function in C++ STL/unordered_multiset bucket_count() function in C++ STL/unordered_set bucket_count() function in C++ STL/unordered_set cbegin() function in C++ STL/array::cbegin() and array::cend() in C++ STL/array::rbegin() and array::rend() in C++ STL/multimap rbegin in C++ STL/vector rbegin() and rend() Functions in C++ STL/multiset rbegin() and rend() function in C++ STL/map rbegin() function in C++ STL/map upper_bound() function in C++ STL/Set upper_bound() in C++ STL/multimap upper_bound() function in C++ STL/multimap empty() function in C++ STL/multimap value_comp() function in C++ STL/multimap swap() function in C++ STL
https://www.geeksforgeeks.org/multimap-swap-function-in-c-stl?ref=asr10
PHP
multimap swap() function in C++ STL
unordered_multiset clear() function in C++ STL, What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, jQWidgets jqxTreeMap width Property, Round Robin Scheduling Algorithm with Different Arrival Time, Difference between Flow and TypeScript, unordered_multiset emplace() function in C++ STL, jQWidgets jqxTree destroy() Method, unordered_set bucket_count() function in C++ STL, jQWidgets jqxTree collapseAll() Method, Find the order of execution of given N processes in Round Robin Scheduling, jQWidgets jqxScrollView buttonsOffset Property, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Vector push_back() in C++ STL, jQWidgets jqxListBox enableHover Property, Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm, std::rotate vs std::rotate_copy in C++ STL, Selfish Round Robin CPU Scheduling, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxSlider buttonsPosition Property, std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++, std::upper_bound and std::lower_bound for Vector in C++ STL, Difference between Round trip time (RTT) and Time to live (TTL), jQWidgets jqxSlider rtl Property, Difference between std::set::lower_bound and std::lower_bound in C++, jQWidgets jqxTooltip opacity Property, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, unordered_multiset erase() function in C++ STL, jQWidgets jqxToolBar height Property, PHP, std::minmax() and std::minmax_element() in C++ STL, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, map rbegin() function in C++ STL, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, map upper_bound() function in C++ STL, Node.js date-and-time Date.transform() Method, unordered_multiset size() in C++ STL, TypeScript Optional Parameters, jQWidgets jqxToolBar theme Property, Difference between std::set vs std::vector in C++ STL, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, Steps to Diagnose and Resolve a Slow Network, How to use Optional Chaining with Arrays and Functions in TypeScript ?, Calculate server loads using Round Robin Scheduling, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, jQWidgets jqxScrollView showButtons Property, Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms, jQWidgets jqxScrollView disabled Property, jQWidgets jqxSplitter destroy() Method, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, set::lower_bound() Function in C++ STL, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, jQWidgets jqxTree collapseItem() Method, multimap upper_bound() function in C++ STL, std::string::append vs std::string::push_back() vs Operator += in C++, unordered_multiset swap() function in C++ STL, unordered_multiset cend() function in C++ STL, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), Set upper_bound() in C++ STL, jQWidgets jqxSortable opacity Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, multimap rbegin in C++ STL, vector :: cbegin() and vector :: cend() in C++ STL, multimap swap() function in C++ STL, jQWidgets jqxSlider height Property, jQWidgets jqxSwitchButton onLabel Property, unordered_multiset bucket_size() function in C++ STL, unordered_set cbegin() function in C++ STL, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, jQWidgets jqxToolBar tools Property, multimap empty() function in C++ STL, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTree width Property, Implementation of lower_bound() and upper_bound() in List of Pairs in C++, jQWidgets jqxTree clear() Method, TLS Handshake?, multiset rbegin() and rend() function in C++ STL, Algorithm for Dynamic Time out timer Calculation, Adhoc TCP, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, jQWidgets jqxTabs position Property, Differences between Wireless Adhoc Network and Wireless Sensor Network, jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, std::bitset::to_ullong and std::bitset::to_ulong in C++ STL, unordered_multiset emplace_hint() function in C++ STL, unordered_multiset bucket_count() function in C++ STL, unordered_multiset find() function in C++STL, unordered_multiset bucket() function in C++ STL, Impact of Three-way Handshake and Slow Start Algorithm, array::rbegin() and array::rend() in C++ STL, multimap value_comp() function in C++ STL, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, vector rbegin() and rend() Functions in C++ STL, array::cbegin() and array::cend() in C++ STL, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, unordered_multiset end() function in C++ STL, How to Sort an Array Having Optional Properties in TypeScript ?
GeeksforGeeks
[-0.0323986821, -0.00203901227, -0.0128667615, 0.0412939116, 0.0311708897, -0.00559397181, -0.0336264744, 0.0105928406, -0.0176526457, 0.0211731531, -0.0378611051, 0.0248941146, 0.00445074681, -0.0267107468, -0.02085994, -0.041619651, -0.017878158, 0.0455285423, -0.038738098, -0.00249630213, 0.0123781506, -0.00911447871, -0.0356059745, 0.012415736, -0.0185922831, -0.0129920468, 0.000376833574, -0.00519932434, 0.000791644095, 0.00224886439, -0.0113445502, 0.00597609114, 0.0100415871, 0.00969705358, -0.0368838832, -0.00629556738, 0.0277380832, 0.0338018723, -0.00929614156, -0.00860081054, -0.00253701978, 0.00983486697, 0.0312460605, -0.0183166564, -0.00983486697, 0.0323485695, -0.0236036796, -0.0317472, -0.0210353397, 0.0213360228, 0.0710115, 0.0204840861, 0.0229146127, -0.000333179603, 0.0255205389, 0.0145706367, -0.000395039038, 0.0142448964, -0.00530581642, -0.0335262455, -0.0227016285, -0.0231025405, 0.0362825133, -0.0260592643, -0.0192187075, -0.0252574403, -0.064697139, 0.0211606231, -0.0100415871, 0.000952948467, -0.0439750105, 0.0371845663, -0.0297927558, -0.0157859, -0.0265604034, -0.00689067086, 0.0102169858, -0.0168633517, -0.0243553892, 0.0261344351, -0.0438246652, -0.00375541556, -0.00680297147, 0.00225982675, 0.0681048855, 0.0149715487, 0.0221002605, -0.0299681537, 0.0479590707, 0.00720388303, -0.0470570177, -0.0213861372, 0.0172141492, 0.0549249128, -0.0273872856, 0.00082688051, 0.0339772701, 0.0103172138, -0.0281640515, 0.0464807078, -0.015597973, -0.0124345291, 0.00244462211, -0.00348605309, 0.0208724681, 0.0253827255, 0.0292415023, 0.0163371544, -0.0109812235, 0.00370216952, 0.0280638225, -0.00629869942, -0.0319476575, 0.0371344537, -0.0235159807, -0.00493935822, 0.00165532704, -0.0189305525, 0.0107682394, -0.00477962, -0.00825627614, 0.0400661193, -0.00545302639, -0.00311489636, -0.0451025739, -0.0181287285, 0.00355809182, 0.00876994431, 0.01628704, -0.0326241963, -0.000607631868, -0.0246059597, -0.0271868296, -0.0653486177, -0.0257836375, -0.00566287851, 0.00737301772, 0.0219373908, -0.0306196362, -0.0274123419, -0.0392392389, 0.00557204708, 0.031296175, 0.0184669979, 0.0151594756, -0.0445513204, 0.0102921566, 0.0314966291, 0.0125284921, 0.0354055203, -0.0377859324, -0.00289564789, 0.0288907029, -9.58233941e-05, 0.00604813, -0.00156371249, 0.0230273698, -0.00745445304, -0.00399345718, -0.042922616, 0.0142323673, -0.0165376104, 0.0432984717, 0.00296298857, -0.0115011558, -0.0123405652, 0.0270866, -0.0166002531, -0.0100917006, 0.0419704504, 0.0112944357, 0.0363827422, 0.0173143763, -0.0307198633, 0.0014078893, -0.0528702401, 0.00977848843, 0.0290911589, -0.00708486233, 0.00596043048, -6.53830721e-05, -0.024242634, 0.0241549332, 0.0242802184, -0.00517739961, -0.00315874629, -0.0150968339, -0.0158610716, 0.0338018723, -0.012616192, -0.0142950099, 0.0168132372, 0.0376606472, 0.00378360483, 0.0488360636, 0.0383873023, -0.00413127057, 0.0167631228, 0.0376857072, 0.045904398, -0.0099538872, -0.0154225742, -0.0214237217, 0.0195193905, 0.00682802824, 0.00262785121, -0.0396902636, 0.00163340219, 0.0338018723, -0.0258588083, -0.0209351107, 0.0286401343, 0.000301858381, 8.65738402e-05, 0.00127712323, -0.0143576525, -0.0308702048, 0.0232152957, 0.0294169, -0.0371093936, 0.0186549257, -0.0273371711, 0.0203086864, -0.0112819076, -0.0383622423, -0.0167881809, 0.00715376902, 0.0294920709, 0.00060880644, 0.00833144784, 0.0350046083, 0.0394898094, -0.0224635862, -0.0143827097, 0.00370216952, 0.00549687631, -0.0425968729, -0.00770502305, 0.00272494718, 0.00389949325, 0.0273371711, 0.028314393, 0.0122278091, -0.0108183529, 0.018579755, 0.0296173561, -0.0123029798, -0.00436931197, -0.0157232583, 0.00486418745, 0.0613896139, 0.0175398886, 0.0145455794, 0.00634881342, -0.00846926123, 0.0254954826, -0.0199578889, -0.0204840861, -0.0304943509, -0.0447267182, -0.0135182431, 0.0347540379, -0.0206970703, 0.0126099279, 0.0467563346, 0.0200205315, 0.0199954733, 0.00170230889, -0.0508907363, -0.0186674539, -0.0151093621, -0.0177027602, -0.0225387588, 0.0119709745, 0.0436993837, -0.00187614176, -0.0241925195, 0.00112991338, -0.00290661026, -0.0493873172, 0.039940834, -0.000904400542, -0.024831472, -0.00495188683, 0.0219624471, -0.0153348753, -0.000886390859, -0.0118832756, -0.00467939209, -0.0156105021, 0.00314151961, -0.0247187149, -0.00486418745, -0.0167881809, 0.0333007313, 0.0277631395, 0.0202460438, -0.0311708897, -0.0363576859, 0.0119709745, 0.00878873747, 0.00028482746, 0.0291663315, -0.0261845496, -0.0293667857, -0.0106429541, 0.0129795186, 0.0102670994, -0.0028909496, -0.0276378542, 0.0247563012, -0.0226139296, -0.0273872856, 0.0417699926, 0.0075985305, -0.000243131057, 0.0159237143, 0.00229114806, -0.00831891876, -0.0123593574, -0.0406424291, 0.00454784278, -0.00751709566, 0.00760479504, 0.0223132446, -0.0322733968, -0.0108246179, 0.0328497067, -0.0252198558, -0.0411686264, -0.0361321718, 0.0244932026, -0.0131925028, 0.00460735336, 0.0285900198, -0.00356748817, 0.00755468104, 0.00819989853, -0.0188052673, 0.0356811471, -0.0159237143, 0.00319789769, 0.00642085262, 0.0409932286, 0.0339522138, -0.0149089061, 0.00218152371, -0.0181537848, 0.00109389401, 0.0238667782, 0.00064443436, -0.0208223537, 0.0321982242, 0.0155228022, 0.00138048327, -0.0228770282, -0.0193941072, -0.0182540137, 3.66311579e-05, 0.00888896547, 0.00688440679, 0.0245558452, -0.00411561, -0.0304692946, -0.0198326036, -0.0280638225, -0.016687952, -0.0422460772, 0.0113758715, -0.00495501887, 0.008444204, -0.0216116495, 0.0160740558, 0.0586834587, -0.0420456193, -0.00794306397, 0.0161742847, 0.00677791424, 0.00843794, 0.00796185713, 0.0154225742, 0.0182540137, -0.00928361341, -0.00475143082, 0.0102107218, -0.0227768, 0.0200831741, -0.015698202, -0.0267107468, -0.0139817977, -0.0138314562, 0.0236537941, 0.0153724607, 0.0141947819, 0.000528154254, 0.00299744192, -0.0497130565, -0.00311802863, -0.0148086781, -0.0503895953, 0.00923349895, -0.030795034, -0.00782404374, -0.0125848707, -0.00594163779, -0.00992256589, 0.00937131234, -0.00387443625, -0.0156355593, 0.0469818488, -0.0151594756, -0.00455723936, -0.011125301, 0.00375541556, 0.00731037557, 0.0010304685, -0.0463554226, 0.0652985051, -0.00766117312, 0.00971584581, -0.018780211, -0.0574306101, -0.00665262947, -0.0145205231, -0.00867598131, 0.0296424124, 0.0133428443, 0.0236412659, 0.010630426, 0.0111691514, 0.0168508217, -5.28056371e-05, 0.00898919348, 0.0273872856, -0.0223257728, -0.0295672417, 0.00488298, -0.0191560648, 0.00757347373, -0.0243553892, 0.0472574756, 0.0365831964, 0.02285197, -0.0142448964, -0.0087135667, 0.017978387, -0.0268610884, -0.010730654, 0.0146082221, 0.0465809368, -0.0350046083, 0.0585331172, -0.0360319428, 0.00993509497, 0.0147961499, -0.0364328548, 0.00769875851, -0.00226139301, 0.0686060265, 0.0209977534, 0.00719135487, 0.0153599316, 0.0154726887, -0.0218998045, -0.01093111, 0.00579756, -0.0147460354, 0.0510160215, -0.0108872596, -0.0123781506, -0.015497745, -0.0203462727, 0.00341088208, 0.0128291762, 0.0116765555, 0.00490490487, -0.00126616075, -0.0355308056, 0.0103234779, -0.0219248626, 0.0416447073, 0.0146207511, -0.0112505862, -0.0130296322, 0.00250569847, -0.0120398812, 0.00163653435, 0.0104550272, -0.0261845496, -0.0125034358, 0.00309140561, 0.00642711669, 0.0274624564, -0.0315467454, 0.00255111419, 0.0393645242, -0.0389636122, 0.0196697339, -0.0124032078, -0.0132300882, 0.0565786734, 0.00809340645, -0.0149339633, 0.0353052914, -0.0115074208, -0.0523189865, -0.00806208514, -0.00507403957, -0.00373349083, -0.0252073277, -0.000971741218, 0.0554761663, 0.0297927558, -0.0099538872, -0.0126850987, -0.0156105021, 0.0288155321, -0.022062676, -0.00642711669, 0.00625798199, -0.00213297596, 0.0156480875, 0.018379299, 0.0315968581, -0.0147209791, 0.0167505946, 0.00561276451, -0.0185546968, 0.039940834, -0.0268360302, -0.0190934222, 0.0065774587, -0.0301936679, -0.00861333869, 0.0120398812, -0.0356560908, 0.00680923555, -0.0287403613, -0.0330501646, 0.0111440942, 0.00790547859, -0.0201207586, 0.0163371544, 0.00142120093, 0.0149464915, -0.00741060311, 0.0107369181, -0.0416447073, -0.0351800062, 0.024142405, 0.0157733727, 0.0171139203, -0.0153599316, -0.00189023628, -0.027913481, 0.012121317, -0.0134931868, -0.0279635955, -0.00239764014, -0.0204966143, -0.0136936428, 0.0254829545, 0.00357688451, 0.0127101559, -0.00799944252, -0.020371329, -0.00508030364, 0.00484852679, 0.0176651739, -0.0116327051, 0.0179533307, -0.00619847188, 0.0153849889, -0.000468643935, -0.0401663482, 0.0364579149, 0.00468565617, 0.043423757, -0.0302938949, -0.022751743, -0.0158360153, -0.0115074208, 0.00932746287, 0.0159362424, -0.00211888133, 0.00123014138, -0.0268360302, -0.0111566223, -0.0145706367, 0.0217995774, 0.0253827255, 0.00752335973, 0.00277819321, 0.00811219867, 0.0298679266, -0.0226264577, 0.0156355593, -0.0375854783, -0.00556891505, 0.00704727694, 0.0349043794, 0.00969078857, 0.00699716294, -0.0128417052, -0.000289721385, 0.0145079941, 0.0209476389, 0.0295171291, 0.0231150687, -0.00900172163, -0.0419704504, -0.00259653013, 0.0171264485, -0.0104988767, 0.0145956939, 0.0380866155, 0.00804329198, 0.0275877398, -0.00748577435, -0.0181537848, -0.00307887699, -0.0365330838, 0.00431919796, 0.00249003782, 0.00884511601, 0.00821242668, -0.0467813909, 0.00744192442, -0.00707859825, -0.0187551528, 0.00313838734, -0.0133303162, -0.00105395948, -0.0487358347, 0.0403668024, -0.004222102, -0.0214237217, 0.00651481608, -0.0234533381, 0.0589841418, -0.0431481265, -0.0140569685, 0.0210102815, 0.027512569, -0.00254641613, -0.0317973122, -0.0212483238, 0.0189305525, -0.00811846275, -0.00396526791, -0.0507403947, 0.0134556014, 0.00132097292, 0.00474829879, -0.0142699527, -0.0190057233, -0.00143686146, 0.0164624397, -0.00132958626, 0.0124470573, -0.0192437638, -0.00544049777, -0.0144578805, -0.00594163779, 0.0299180411, -0.000354712945, -0.0483098663, -0.0172016211, 0.0132927308, -0.0037898689, -0.00121291471, 0.00550000835, 0.00503958622, 0.0208223537, 0.00848805346, -0.018980667, -0.00821242668, 0.0413440242, 0.00221754308, -0.000302641391, 0.0009921, -0.00751709566, 0.0121839587, -0.0205843132, -0.00120743352, -0.00874488801, 0.0129795186, -0.00927108433, 0.0250569843, -0.0512415357, 0.00896413624, -0.022651514, -0.0129294042, 0.0411686264, -0.00593224121, -0.0306196362, 0.0173770189, 0.00800570659, -0.0257585812, -0.0337517597, 0.0351549499, -0.0132426163, -0.0116013838, -0.031195946, 0.0140694967, 0.0478087291, -0.00128573657, -0.0217494629, -0.0228394419, -0.0173269045, 0.0167631228, -0.017088864, -0.0212984364, 0.0332005061, 0.00353616709, 0.00789921451, -0.02186222, -0.018767681, -0.0162745118, -0.0259339791, -0.0203212146, 0.00152377796, 0.00843794, 0.0220752042, 0.0350797772, -0.00660878, -0.0215865932, -0.0443508625, -0.0178656299, -0.00848805346, -0.0207597129, 0.00285493024, 0.0153223462, -0.00488611218, -0.0185546968, 0.0207972974, 0.0151344193, -0.0209852252, -0.0139442123, -0.0174146052, 0.00705354149, 0.0205341987, -0.0226891, 0.0374351367, 0.0116890837, -0.0144578805, 0.0324487947, -0.00825627614, -0.0440000668, 0.006308096, 0.0154852169, 0.039640151, 0.0117830476, -0.0281640515, 0.0149840768, -0.00613269722, 0.0109937526, -0.0180285014, 0.0323235095, -0.0201458167, 0.0104237059, -0.0103234779, 0.0134305442, 0.042120792, -0.0405923165, -0.017489776, -0.00129904808, 0.0107870316, 0.00991003774, -0.0101981927, -0.0312711187, -0.0145956939, 0.0116389692, 0.0148838488, 0.0179909151, -0.0333508477, -0.0203462727, 0.0347540379, 0.0186799821, 0.0323736258, -0.0118895397, 0.0350046083, 0.00351424213, 0.000619768864, -0.00370530155, 0.00500200083, 0.0206219, 0.0315968581, 0.0190057233, -0.0217745192, 0.00327620073, -0.00717256218, -0.0123343011, -0.00702848425, 0.0196572039, -0.0307449214, -0.0111440942, -0.0373098515, -0.0212859083, -0.0464055352, 0.00675912155, 0.0091520641, 0.0152847609, 0.00300683826, 0.000559475506, -0.0380615592, 0.0195319206, 0.0288907029, -0.00762358773, 0.0268109739, -0.0475832149, 0.00739181042, 0.0108559392, 0.0251321569, 0.00732290372, -0.00288625155, -0.00682802824, -0.0133052589, 0.0284897927, 0.0141822537, 0.0207221266, -0.00555638643, 0.0327995941, -0.00167098769, 0.00697837025, 0.00592284463, 0.0145330513, 0.013017104, 0.0254704244, -0.0300934389, 0.00234909239, -0.00999147259, -0.00973463897, 0.00233813, 0.00323548331, 0.00838156138, 0.0457540564, -0.0128103839, -0.01628704, 0.0268610884, 0.0118143689, -0.00440376531, -0.0144453514, 0.00363639486, -0.00396526791, -0.0100666434, -0.00242582941, 0.0343280695, 0.0143576525, 0.0213234946, 0.0434989259, 0.0275877398, -0.00209852261, 0.0191811211, 0.00281734485, 0.0118519543, -0.0421458483, -0.0233155247, 0.0296173561, 0.0290661026, 0.0175900031, 0.0416447073, 0.0137437563, 0.0244556181, 0.0244055036, 0.0239670053, -0.0184669979, -0.0334761329, 0.0225888714, -0.027312113, 0.00228958204, -0.00882632285, -0.0170262214, 0.00714124087, -0.0108371461, -0.0378109887, 0.0293417294, -0.00453218212, -0.00159973186, 0.0284647346, 0.0100165298, -0.0356059745, -0.0270364862, -0.0447768308, 0.00205467269, 0.0254704244, 0.00298647932, -0.0230774824, -0.00272494718, -0.00387130422, 0.014006855, -0.000698463467, -0.00717882626, -0.0465308204, 0.00445074681, -0.0344784111, 0.0108997887, -0.0295923, 0.0309203193, -0.0461048521, 0.00851311069, -0.0106930686, -0.00977848843, 0.0275877398, 0.016086584, 0.00561902905, 0.0628429204, 0.0403668024, 0.00994762313, 0.00648349477, -0.00722894026, 0.0161742847, -0.0159362424, -0.026034208, 0.00996015128, 0.0082061626, -0.0186674539, 0.00988498051, -0.000281695335, 0.0424214751, 0.015698202, 0.0319977701, 0.00405923137, 0.00817484129, -0.0132676736, -0.013806399, -0.0350797772, -0.017690232, -0.00351737416, 0.00246654707, -0.0255080108, 0.00987871643, 0.0145581085, 0.00264037983, -0.0125472853, -0.0228018556, -0.027312113, -0.0152847609, -0.0600365363, 0.013017104, -0.00354556344, 0.0173018482, 0.023541037, -0.00211731531, -0.0414693095, 0.0342528969, -0.0707609281, -0.00939637, -0.00755468104, -0.0483349226, -0.0349294357, 0.0114823636, 0.00204840861, -0.0378611051, -0.0203462727, -0.0123343011, -0.0182164274, -0.0122904507, -0.0240296479, 0.00327620073, 0.0257585812, 0.00739807496, 0.0207095984, -0.00323548331, 0.0250820424, -0.0080245, -0.01827907, -0.00709112687, -0.0230148416, 0.021260852, 0.0218371619, -0.0288907029, 0.0209601689, 0.00374288717, -0.0191560648, 0.0294419583, -0.0531709231, -0.0172767919, -0.0189054944, 0.0218496919, 0.0267608594, -0.0164123252, 0.0075985305, 0.0112568503, -0.0203212146, 0.0238166638, 0.00204371032, -0.0139316833, -0.0313713439, 0.0265102908, -0.0155729158, -0.00539038377, 0.0205592569, -0.0167881809, 0.026234664, 0.0308200922, 0.0230524261, -0.0218246337, 0.00283300527, -0.0364829712, -0.0135683576, -0.0240547061, -0.0421709046, 0.0387631543, -0.00228175172, -0.026034208, -0.000559475506, 0.042020563, -0.0114698345, 0.00264507788, 0.0199829452, -0.0166378375, -0.000584140944, -0.0153849889, 0.00800570659, 0.0089829294, -0.011519949, -0.0175148323, 0.0633440614, 0.0265854616, -0.0376606472, -0.0234909244, -0.0431230702, -0.00208129571, 0.0046574669, -0.00575997448, 0.0130546894, 0.00939637, 0.0140820257, 0.0141571965, -0.0126850987, -3.46001725e-05, -0.00493309414, 0.012221544, 0.00734796096, -0.0124533214, 0.00152221182, -0.0260843206, 0.0179408, 0.004272216, -0.00390262553, 0.00229584635, -0.0068468214, 0.00182289572, 0.0112067368, -0.0188929662, -1.71410338e-05, -0.0102232499, 0.0170387495, 0.0124094719, -0.00813725591, 0.0145205231, -0.00233499776, 0.00906436425, -0.00386504, 0.000309297146, 0.00639892742, -0.0149339633, 0.033776816, 0.0140569685, -0.026635576, -0.0273622274, -0.00794932805, 0.00641145604, 0.00134916208, 0.0237289649, 0.0163872689, 0.0231025405, 0.0287403613, 0.00277819321, 0.0112317931, -0.0275877398, -0.0111002447, -0.0158485435, -0.0144704087, -0.0124971718, 0.0252073277, -0.0076486445, 0.0090768924, -0.0100666434, -0.00398092857, -0.00778645789, 0.00518679572, 0.0114886276, -0.00363013078, -0.0236913785, 0.00754841696, 0.00801197067, -0.016199341, -0.0200205315, -0.00838156138, 0.0164373815, 0.0419704504, 0.00374601921, 0.0277881958, 0.00487358356, 0.0343280695, 0.0546242259, -0.0179032162, -0.00826880522, -0.0107619753, 0.0193439927, -0.0177278165, -0.00848805346, 0.0242551621, 0.0167505946, -3.18840357e-05, 0.0193815771, -0.0034923174, 0.00739807496, 0.0154852169, 0.00136012444, -0.0106116328, 0.0473326445, -0.0130546894, -0.0156606156, -0.0116765555, -0.0336515307, 0.0191184804, 0.0177152883, 0.00705354149, 0.00416572392, -0.0202084593, 0.0281640515, -0.0173770189, -0.0335011892, 0.0169635788, -0.00415945938, -0.0144077661, 0.0227893274, -0.0116327051, 0.0133553734, 0.0219499189, 0.0158234853, 0.00395900384, -0.00572238909, 0.016487496, -0.00616715057, 0.0115700625, 0.00402791053, 0.0247061867, -0.0114385141, -0.000297747465, 0.0372096226, -0.0104237059, 0.0402415171, 0.00493309414, -0.004372444, -0.0480342396, 0.0394396931, -0.0129294042, 0.0164499115, -0.000751318061, 0.00706606964, -0.0283895638, 0.00154491968, 0.00769249443, 0.000836276857, 0.0117642544, 0.000846456271, -0.000312625052, -0.00124110375, 0.0201834012, -0.0172517337, -0.0299430974, 0.0058006919, 0.00552193308, -0.00465120282, 0.00843794, 0.0343280695, -0.00668395078, -0.0401162319, 0.00100932666, -0.0127790626, -0.0232027676, -0.0252699703, -0.00929614156, -0.000163653429, 0.0299932119, 0.0122653944, 0.0168007091, -0.0132426163, -0.0159612987, 0.0146959219, -0.0224134736, 0.0104800845, 0.011125301, -0.0303440094, -0.011726669, 0.00788042136, 0.0233656392, -0.00403417461, -0.00100227946, 0.00261375681, 0.00821242668, -0.00639892742, -0.00647096662, -0.033275675, -0.00695957756, 0.000691024645, 0.0186799821, 0.0198576599, -0.0388884395, -0.00147366396, -0.0125222281, 0.0226264577, 0.0175524186, 0.00938384049, 0.021461308, 0.0116514983, 0.00323548331, 0.0122716585, -0.000956863631, -0.00860081054, -0.00936504826, -0.00734796096, -0.0191936512, -0.0286401343, 0.00224416633, 0.000160129799, -0.00632062461, 0.0243178047, -0.00164906285, -0.0181537848, -0.00453218212, -0.000121565528, 0.0117517263, -0.0145079941, -0.0188303236, -0.00600114791, -0.0144704087, 0.005415441, 0.00439436873, -0.0044914647, 0.00401851395, -0.008544432, 0.00465120282, 0.024631016, 0.00861960277, -0.0196697339, -0.0169510506, -0.0209852252, -0.00784910098, 0.0111879436, 0.0362324, 0.00267639919, 0.00590718444, 0.00186517928, 0.00572552113, -0.0362324, -0.0198701899, 0.00228801602, -0.0246560741, 0.0118770106, -0.0130296322, -2.62743538e-06, -0.0420957357, -0.0287904758, 0.0122090159, 0.0239544772, 0.0227266848, -0.0103172138, -0.0178280454, -0.010730654, -0.0322232842, -0.0445262641, -0.010229514, 0.00991630182, -0.0121401092, -0.000650698552, 0.000634254946, -0.0044695395, -0.00769249443, 0.00687187817, 0.0295672417, 0.0090518361, 0.02186222, -0.0320478827, -0.00161147735, 0.00848805346, -0.00172423373, 0.0106993327, 0.00408742065, 0.000301858381, 0.0102169858, -0.0205843132, 0.00421583792, 0.00378360483, -0.0100979647, 0.00900172163, -0.0224385299, 0.00360507378, 0.031195946, 0.0182164274, -0.0215114225, -0.0130546894, 0.0215991214, -0.00764238043, -0.0088137947, -0.00526823103, -0.00606065849, 0.0112505862, -0.011225529, -0.0129544614, 0.0174020752, 0.0165626667, -0.000656179793, 0.0309203193, -0.00964067504, -0.0135934148, -2.60602428e-05, -0.0049268296, 0.0242927466, 0.0309704337, 0.0235911515, 0.00668395078, 0.0227266848, 0.020459028, 0.0265854616, 0.00870730262, 0.000583357934, -0.0101981927, 0.0100729084, 0.00304129161, -0.0147961499, 0.00779898651, 0.0104863485, -0.0226640422, 0.0105114048, -0.0152722327, -0.00174302654, 0.0017461587, 0.0115324771, 0.0188303236, -0.0342528969, -0.00763611635, -0.00518053165, -0.00991003774, -0.0175398886, -0.0134430723, 0.01271642, 0.0223633591, -0.000243522576, -0.0211230386, -0.0191310085, -0.0044914647, 0.0123468293, -0.0127540054, -0.00377734052, -0.00749830296, 0.0052463063, -0.0131423883, 0.00397779653, 0.00855696, -0.0105991047, -0.0219624471, -0.0367585979, -0.00617028261, 0.005265099, 0.00558770774, 0.0162745118, -0.014207311, -0.0256458241, -0.0117705185, -0.00959682558, -0.00873862393, -0.0264601763, 0.0044695395, -0.0117955757, 0.0200080033, 0.0199203026, -0.00351737416, -0.0232528821, 0.0133428443, -0.011031338, -4.26751794e-05, -0.00559710385, -0.015497745, 0.000849588425, -0.00365831982, 0.004222102, -0.0249317, -0.0301184952, 0.0157608427, 0.0029598563, 0.0273622274, -0.00358314882, -0.00789921451, 0.02543284, -6.82215541e-05, 0.0043912367, 0.0100227939, 0.0282642785, -0.00275000418, 0.000159836156, 0.0172266774, 0.000427926338, -0.0353052914, -0.0427472182, 0.0233280528, 0.031195946, 0.0128918188, -0.00865718815, 0.015597973, 0.0133303162, 0.0084755253, -0.00762358773, -0.0212984364, -0.0185421687, -0.00840661861, 0.0297175851, 0.00603873329, -0.00737301772, 0.00368337682, -0.0179408, -0.00167725189, 0.00304755592, -0.00389322895, -0.0125222281, -0.0163246263, 0.00631436, -0.00500200083, -0.00153160817, -0.0286150761, 0.0231150687, -0.0208474118, 0.0255205389, 0.0268861447, 0.0101919286, 0.0192813501, -0.00534026977, -0.00698463479, 0.00547495112, -0.0136184711, 0.0104926126, 0.00973463897, 0.00413440261, 0.0270114299, 0.0108872596, -0.0135433, -0.000291287462, 0.0251572132, 0.00843794, -0.0158736, 0.00248690578, 0.00604186533, -0.00455723936, -0.0168633517, -0.00378360483, -0.00093728787, -0.0302437805, -0.0238291919, -0.00597609114, 0.00607318664, -0.0218872763, 0.0157107301, 0.0094214268, -0.0296674706, -0.0331253335, 0.0214111935, -0.0339522138, -0.0110125449, -0.0333508477, 0.00560650043, -0.0166628957, -0.00414693123, 0.00069689739, 0.0107932966, 0.0173644908, -0.0345034674, 0.00977848843, 0.0116640264, -0.0226891, -0.00939637, 0.00399972126, -0.00319946371, -0.0229271408, -0.00311959465, -0.0123217721, -0.0203838572, 0.0204840861, 0.0156606156, 0.023152655, -0.00908315741, 0.0288907029, -0.00616088603, 0.00517739961, 0.00765490904, 0.00273121148, 0.0390137248, 0.0352050625, 0.00107823336, -0.00404670322, 0.00992256589, -0.0154852169, -0.00954044703, -0.01628704, 0.0232904684, 0.0169385225, 0.0125786066, 0.00377420848, -0.00607318664, -0.0209852252, 0.0150341913, -0.0102483071, 0.0124094719, -0.00876368, -0.010329742, 0.015297289, -0.00498634, -0.0171264485, -0.00112599821, 0.0229146127, -0.00286276056, 0.00775513705, 0.00407802453, 0.00695331348, 0.00402477803, -0.0406925455, -0.0388132706, -0.0147460354, 0.0104550272, -0.0371093936, -0.00363639486, -0.00302719697, 0.00878247339, -0.0116514983, -0.00344533543, 0.00475456286, 0.0119521823, 0.00441629346, 0.0275626834, 0.0113007007, 0.000124208251, -0.00386190787, 0.0178405736, 0.00187144359, -0.00716003357, -0.0248565283, 0.00324801169, -0.0125848707, 0.0028408356, -0.00174772472, 0.0204089135, 0.00215646671, 0.011726669, 0.00704727694, -0.000965476967, -0.0157232583, -0.0134054869, 0.0126788346, -0.0028517982, 0.0222380739, -0.00972211, 0.000184208, 0.00833771192, 0.0183041282, 0.0301936679, -0.00539664831, 0.0156480875, -0.0209476389, 0.0143952379, -0.00859454554, -0.0115575343, -0.00436617946, -0.00746071711, -0.0160364714, -0.00572238909, 0.00296768663, -0.0205091424, -0.0168508217, 0.0361572281, 0.0044914647, 0.00648349477, 0.000649915542, 0.00424089469, 0.00264664413, 0.00658372277, 0.00895787217, 0.0098536592, 0.024831472, -0.010035323, 0.0178656299, -0.0389385559, 0.0204465, -0.010129286, -0.0132426163, -0.00674032886, 0.000810436846, 0.00609824387, 0.0258838665, 0.00363013078, 0.00624232134, 0.00554072578, 0.0237790793, 0.0134681296, -0.00887017231, -0.0180410296, -0.00363013078, 0.00554072578, 0.0125848707, 0.0158986561, -0.0186799821, 0.0190808941, -0.0164624397, 0.00404043868, 0.00461361744, 0.00768623035, -0.00188397209, 0.0266606323, 0.00512102153, 0.0017211017, 0.00247907545, 0.0050897, 0.00554072578, -0.0301936679, 0.0196572039, 0.00603873329, -0.00150420214, 0.00741060311, 0.0343531258, 0.00184638659, 0.0322984532, 0.00631436, -0.0245182607, 0.00409055268, 0.00208756, -0.00271241856, 0.0241674613, -0.00131470873, -0.00478901621, -0.0158485435, 0.00653987331, 0.00899545755, -0.00645217346, 0.00111033767, -0.00234909239, 0.00271868287, 0.0145831658, -0.0104675554, 0.0225888714, -0.00714750495, -0.00318536931, -0.00342027843, 0.0234032236, -0.00787415728, -0.0113696074, 0.00185421691, -0.00785536505, -0.0116514983, -0.00640205946, -0.00693452079, 0.00146818277, 0.00833771192, 0.00858828146, -0.0018354241, 0.00467312755, 0.00838782545, 0.00382119021, -0.0186173394, -0.0106742755, -0.00127947226, 0.0110062808, -0.00199046428, 0.0214487799, -0.0206720121, 0.00438497216, 0.00944021903, 0.00387130422, 0.00676538609, 0.00577250309, 0.00211261702, 0.0169761069, -0.00389636122, -0.016049, -0.00535593042, -0.000147894942, 0.0129043469, 0.00399345718, -0.00404670322, 0.00138596445, -0.0282893367, -0.0105615193, 0.0471572466, -0.0215364788, -0.00073252531, 0.00615775399, -0.0033732967, -0.00632688869, 0.0108183529, -0.00202648365, -0.0168633517, -0.0145455794, -0.00368337682, -0.00912700687, -0.00429414073, 0.020459028, -0.00840035453, 0.00841914676, -0.00141415361, -0.00273434352, -0.0150216622, -0.0147961499, 0.00196853932, 0.00599488383, -0.0133553734, -0.00420644134, -0.0115575343, -0.0183667708, 0.00264037983, -0.0116389692, -0.0189054944, 0.0128667615, -0.000305773516, -0.00435365131, -0.00782404374, -0.00687814225, -0.000756016234, -0.00846926123, 0.00915832818, -0.00434112269, 0.00407802453, 0.00153552333, 0.0240421779, -0.00783657189, -0.0256583523, -0.0154100461, -0.00973463897, 0.00786162913, -0.0203086864, -0.000750535, -0.022939669, 0.0215865932, -0.000947467226, -0.0165877249, 0.0140444404, 0.00451025739, -0.00412813807, -0.00842541084, 0.000884041772, 0.00754215242, -0.00522751361, 0.00936504826, 0.0138189271, -0.00696584163, -0.00876994431, 0.0026967579, 0.00462301355, 0.0094903335, -0.000840192, 0.00442255801, 0.0152471755, -0.0162619837, 0.0154351024, 0.00928361341, -0.0372096226, 0.0167255383, 0.0108120888, -0.0120837307, 0.0175649468, -0.00525570242, 0.00665262947, 0.00883258693, 0.000530894846, 0.0180410296, -0.00457603205, 0.0216742922, 0.00341714639, 0.0206093695, -0.022952199, -0.0127727985, 0.0166002531, 0.00833144784, 0.0090581, 0.016086584, 0.0081059346, -0.00993509497, -0.00708486233, -0.00286119455, 0.0028267412, 0.00561276451, 0.00415632734, -0.0148337353, 0.00237571541, -0.0212859083, -0.00803076383, -0.00739807496, 0.00851937477, 0.000193310727, 0.0159111861, 0.0257836375, -0.00380239752, -0.00353929913, 0.00861333869, 0.0128667615, 0.00614835788, -0.00932746287, 0.0198326036, 0.000156997674, 0.00120899954, -0.0101606073, -0.0313964039, 0.00319946371, 0.011325757, 0.0153474035, 0.00618281122, -0.0133428443, 0.00556265051, -0.0101731364, 0.00647723069, -0.0223132446, 0.0066964794, -0.0276127979, 0.0104926126, -0.0148587925, 0.00556265051, 0.00816231314, 0.0211105105, -0.0209977534, -0.00533087365, 0.0108371461, 0.00356748817, -0.000136443108, -0.00989124458, -0.0323736258, -0.00553759374, -0.0105051408, 0.0029598563, 0.00954044703, 0.00268736156, 0.00171170535, -1.47919409e-05, 0.0103798565, -0.006408324, 0.0181287285, -0.00734169642, 0.0151594756, 0.00336390035, -0.0193189364, 0.000915362965, 0.019168593, -0.00955924, -0.00670900755, 0.0183918271, -0.0105489912, 0.0037898689, 0.0297676977, -0.00773634436, -0.0147460354, -0.012916876, -0.00442882208, 0.00326054, 0.00841288269, -0.017489776, 0.0180159714, 0.026034208, 0.0161742847, -0.0173143763, -0.016487496, -0.00808714237, -0.0355057493, 0.00600114791, 0.000845673261, -0.0191184804, 0.0083752973, -0.0253701974, -0.0207597129, 0.0201959293, 0.0129544614, 0.0134681296, 0.0126412492, -0.00824374799, 0.00252918946, -0.0253075548, -0.0114322491, 0.00495501887, 0.031296175, 0.0142574245, 0.0119772386, -0.0191059504, 0.0113696074, -0.00368024479, 0.00647096662, 0.00760479504, 0.00821242668, 0.000723128906, 0.00300370599, 0.00497381156, 0.00966573227, -0.000234321968, 0.00362386648, 0.00122074503, -0.0144453514, 0.00557204708, 0.00771128712, 0.000980354496, -0.00421270542, 0.00426281942, -0.0137688136, -0.00477648759, -0.0199829452, 0.00643338077, 0.0230398979, -0.0055845757, -0.0123781506, -0.00313682132, -0.00413127057, -0.00217995769, -0.00674032886, 0.00293323328, 0.0055344617, 0.00548747974, -0.00362699851, 0.00593537325, 0.00209069229, 0.0286401343, -0.0146708647, -0.0282392222, 0.00878247339, -0.0100603793, 0.0125034358, -0.000464728771, 0.00586646656, -0.00870103762, -0.00643338077, -0.0134430723, 0.0109499022, -0.00889523, -5.37354863e-05, -0.0128792906, -0.0123844147, 0.00573491724, 0.00811846275, 0.00778645789, 0.00992256589, -0.0254077837, -0.0250820424, -0.00933999103, -0.0102169858, 0.00792427175, -0.00999147259, 0.00937131234, 0.017690232, 0.0164749678, 0.00513041764, -0.000167568593, -0.0263348911, 0.00647096662, -0.00459482474, -0.0124909068, -0.00818110537, 0.0453782, -0.00125206623, 0.00868224539, 0.00536845904, -0.0140444404, -0.002161165, -0.0145079941, 0.00528702373, -0.022350831, 0.0127602695, -0.011325757, -0.00439750077, 0.0157608427, 0.000580225838, -0.0263098348, -0.0192688219, -0.00952791888, -0.00967826, -0.000223555282, 0.00702848425, 0.00561276451, 0.0374852493, 0.0057505779, -0.00301623461, -0.00993509497, -0.0116765555, 0.00928361341, -0.000559475506, 0.000923976302, 0.000524630654, 0.00910195, 0.00996641535, 0.00358628109, 0.00432546204, -0.0117642544, 0.00685934955, -0.0094151618, 0.0396902636, 0.0348292105, 0.00432859408, 0.0274875127, 0.0168132372, 0.00138674746, 0.012115052, -0.0127540054, 0.00746071711, -0.00206563529, 0.00406862795, -0.0280387662, 0.0132802017, -0.00412500603, 0.0133303162, 0.0135057149, -0.00797438528, 0.00349858147, 0.00959682558, 0.0110501302, 0.0255581252, 0.00423149858, 0.0203212146, -0.00192625576, -0.00954044703, 0.00258086948, 0.00413440261, -0.00972211, -0.00958429649, 0.00483913, 0.0114948917, 0.0113445502, -0.00419391273, 0.0312460605, -0.0267608594, -0.0244932026, 0.00879500154, -0.00928987749, -0.00199672859, -0.00951539, 0.00986618828, 0.00111425284, -0.0129795186, 0.00526823103, -0.00324801169, 0.0109060528, 0.00282987324, 0.00210478669, -0.0106053688, -0.00710365549, 0.0118895397, -0.00698463479, 0.0114948917, 0.0134180151, -0.00817484129, 0.00348292082, -0.016888408, -0.0124470573, 0.00452905, 0.00483599817, -0.00918964949, 0.0291412733, 0.0017461587, -0.013906627, -0.0270114299, 0.0203838572, 0.00537785562, -0.00945901219, 0.00240233843, 0.00625171792, -0.000589622185, -0.011125301, 0.0127038918, 0.0148212062, 0.0103986487, 0.0260592643, 0.00526196696, 0.0145956939, -0.0156105021, -0.0400160067, -0.0161617547, -0.0169761069, 0.00126381172, 0.00354556344, -0.00112599821, -0.0028408356, 0.00394960726, -0.00306478259, -0.0213109665, 0.015698202, -0.00834397599, -0.00266387081, -0.0107431822, 0.0139692696, -0.00895787217, -0.00942769088, -0.00560336839, -0.011125301, -0.00524004223, -0.0138314562, 0.000552428246, 0.0113633424, 0.0129920468, 0.0234032236, 0.00138674746, 0.0245182607, -0.0244305599, 0.00930240564, -0.00878247339, 0.0158986561, 0.0122779226, -0.00637387065, -0.0182414856, 0.0136811137, 0.0241173487, 0.00638639927, -0.0117329331, -0.0156355593, -0.0208474118, 0.0267107468, 0.00825001206, 0.000332396565, 0.0137186991, -0.00963441096, -0.000531286409, 0.00109859218, 0.0146833928, 0.0108997887, 0.0046104854, -0.00305068796, 0.0306446925, 0.0055344617, 0.0119709745, -0.0125848707, 0.0128417052, 0.00634254934, -0.0184544697, 0.00724773295, -0.0205592569, 0.0351800062, 0.0163371544, 0.00245558447, 0.00421270542, 0.0084755253, -0.0127414772, 0.0133052589, -0.00644590938, 0.0161742847, 0.0197950173, 0.0205467269, 0.0102357781, -0.0140444404, -0.00697210617, 0.00442882208, 0.0137437563, 0.00981607381, -0.0142824817, 0.0116389692, -0.00762358773, -0.00303346128, -0.0242802184, -0.00692199217, 0.013806399, -0.00501452899, 0.0188679099, 0.0131549174, 0.0412438, -0.00228644977, -0.00788042136, -0.00592597714, -0.0198326036, -0.00261062454, 0.0306948069, 0.00636447407, -0.0140319113, 0.014207311, 0.0172517337, -0.0159362424, 0.0108120888, 0.0120649384, 0.00472950609, 0.013317788, -0.00598861929, 0.00129591592, -0.00454471074, -0.0122466013, -0.011620177, -0.0154601596, 0.0225763433, 0.000363326282, 0.0138690416, -0.000402477832, -0.0170512777, 0.0058508059, -0.0130797466, 0.00413127057, -0.00318380306, 0.0132050309, -0.0188553818, -0.00292540295, -0.00505524687, 0.000700812554, -0.00501766149, 0.00726652564, 0.0106930686, 0.00540604442, 0.0198451318, 0.0170638077, 0.0013444639, 0.00184168841, 0.00962188188, -0.00767370174, 0.0125034358, 0.00126459473, -0.0104612913, -0.0147209791, 0.0151594756, -0.00441316143, -0.000248416502, -0.0341526717, 0.00397153199, -6.16636753e-05, 0.00717882626, -0.0107181249, 0.0229146127, -0.00655240146, -0.00923976302, -0.0338269286, 0.00122622622, -0.00724146888, -0.012115052, 0.0131423883, -0.00511788903, 0.0193189364, -0.0184920542, -0.00330125773, 0.00678417878, 0.022551287, -0.0139692696, 0.00635194592, 0.00912074279, 0.0314465165, 0.0199954733, 0.0052463063, -0.0178155173, -0.00405609934, -0.0163120981, 0.00281891087, 0.0155353304, -0.008444204, -0.00781151513, 0.00811219867, -0.0147710927, -0.01827907, -0.00394647522, -0.00105317635, 0.00549061177, 0.0189931951, -0.00452905, -0.0242927466, 0.0373599641, -0.019569505, -0.0113570783, -0.00530268438, -0.000343750522, -0.0221879594, -0.0164499115, -0.00171953556, -0.00341714639, -0.000130961897, 0.0431982428, 0.00333884335, 0.00972837489, 0.0056942, 0.0145956939, 0.00466999551, 0.0115011558, -0.00908315741, -1.46328875e-05, 0.0102796284, 0.0208098255, -0.00649602339, -0.0028768552, -0.0169385225, 0.0136685856, -0.00449459674, -0.00635821, 0.0163120981, -0.00435365131, 0.00615775399, 0.0125284921, -0.00734796096, -0.00711618364, 0.00239764014, 0.0180159714, 0.000469426945, -0.0117454622, -0.00022962378, 0.0296173561, 0.00828133337, -0.00888896547, 0.0232654102, 0.0163747389, -0.00467939209, 0.000390145084, -0.00392141799, -0.00896413624, 0.0132426163, -0.0232528821, -0.0164123252, 0.000366066903, -0.00201552128, 0.00533087365, -0.0208849963, -0.00626424607, 0.0203337427, -0.0148212062, 0.0324237384, 0.003229219, -0.000261728041, 0.0237916075, -0.013317788, 0.0148212062, 0.00665262947, -0.00891402271, 0.0285399053, 0.000723912, 0.00010081521, 0.00746698165, -0.0281891078, -0.00840035453, 0.0183041282, -0.00200455892, -0.0197824892, 0.0168508217, -0.0166628957, 0.0163622107, 0.0222380739, 0.00846299715, -0.00883885194, 0.0140193831, 0.0158109572, 0.00454471074, 0.00098426966, 0.0119960317, -0.000118922799, 0.00467626, 0.0365330838, 0.000198008915, 0.0145079941, -0.00166159135, 1.19779243e-05, 0.0251947977, -0.000186067686, -0.0241173487, -0.00237571541, 0.00180566893, 0.0214988925, -0.00873862393, -0.0229772553, 0.0221002605, 0.00769249443, 0.00757347373, 0.0144202951, -0.0169385225, -0.00823748391, 0.0156230303, -0.00115966855, 0.00866971724, -0.0238291919, -0.014006855, 0.022952199, 0.0123656224, 0.00551880104, -0.0125472853, 0.00387756852, 0.00109702616, 0.0185296405, -0.0155102741, -0.0289909318, 0.0169259943, 0.0122528654, -0.0147209791, -0.00104378, -0.00878247339, 0.00257460517, -0.000898919359, -0.00850684661, 0.023541037, 0.001652195, 0.00116671587, 0.00347039243, -0.00730411103, 0.0307449214, 0.00473890221, -0.0211731531, 0.010530198, -0.0084755253, -0.0200581159, -0.0183166564, 0.00972211, -0.00485165883, -0.0199829452, 0.032899823, -0.0139817977, 0.026234664, -0.00430666935, -0.0292415023, -0.0173143763, -0.00536845904, 0.00782404374, 0.00682802824, -0.00352050643, -0.00309923594, -0.00648349477, 0.0134180151, 0.00712244818, 0.00158485433, -0.0225763433, 0.00945274718, 0.00350797782, 0.00166315737, -0.00584454183, -0.0319977701, 0.00143216329, -0.0262597203, -0.0125347571, 0.00223946804, 0.00451652147, -0.0209852252, 0.00718509033, -0.018980667, 0.0344533548, 0.00126224558, 0.000519149413, -0.00529642031, 0.00719761895, -0.0309704337, -0.00778645789, -0.0242927466, -0.000305186259, 0.00755468104, -0.0126099279, 0.0121087879, -0.00287842122, -0.00544049777, -0.000789295, -0.00922723487, 0.00895160809, -0.0163371544, 0.00295202597, 0.00860081054, -0.0134681296, -0.0174020752, -0.00677165, 0.0114635704, 0.00678417878, -0.00106022367, 0.00271085254, -0.00129669893, 0.0138940979, 0.0108183529, -0.00127399107, -0.00803076383, 0.000674189476, 0.0150091341, -0.0218371619, -0.00477022352, -0.0205091424, 0.0102608353, -0.018579755, 0.0126850987, 0.00949659757, -0.0191936512, -0.00202648365, -0.00906436425, -0.0178405736, 0.0187050402, 0.020170873, 0.0214111935, 0.000813569, 0.0159612987, -0.0208348837, 0.00213297596, -0.00578503124, -0.0090581, 0.00922723487, 0.00246498082, 0.00828759745, 0.0196196195, -0.0129669895, -0.000490568811, 0.000330047478, 0.0105552552, 0.0132551454, 0.0106429541, 0.00301936665, -0.000570829434, -0.00496754749, 0.0209476389, -0.0363075696, -0.0138690416, 0.0203212146, 0.0179909151, -0.0227768, -0.020459028, 0.000143196754, -0.0200581159, 0.00893907901, 0.011820633, -0.00550940447, -0.00614209333, -0.000381727499, -0.000319280807, 0.00427534804, 0.000592754281, 0.0201834012, -0.00326054, -0.0129544614, 0.00235222443, -0.0142574245, 0.00544363, 0.00183699024, -0.00809340645, 0.0198200755, 0.0113007007, 0.0164248534, -0.0143701807, 0.0108496742, -0.014307538, -0.0102984207, -0.000167372826, 0.000722345896, -0.00988498051, 0.00308044301, -0.0228644982, 0.00716003357, -0.00134289777, -0.00153395731, 0.00431919796, -0.00170074287, -0.0118143689, 0.00206250302, -0.00259966217, 0.0143576525, 0.0257335231, -0.000865249, 0.00152299483, -0.0220752042, 0.0146708647, -0.00441629346, -0.00362073444, -0.00761732366, 0.00150341913, -0.0364328548, -0.00147288095, 1.53302753e-05, -0.0109436382, -0.00744192442, 0.0118582183, -0.000555951847, -0.0409932286, 0.00180566893, 0.0232528821, 0.0122591304, 0.0279886518, -0.00721641164, 0.0192813501, -0.00345159974, -0.00608258322, -0.000615462195, -0.0181162, -0.0440251231, 0.0164373815, 0.00148540945, 0.00574118178, -0.00201395527, -0.00221910933, 0.00159659982, 0.00345159974, 0.00592910917, 0.0092460271, -0.00321042631, -0.0081059346, 0.0151845329, -0.00131157658, 0.0118394252, 0.00349544943, -0.00147366396, -0.00726652564, 0.00465120282, 0.0118456893, -0.0180410296, 0.00982860196, 0.0103109498, -0.00601367652, -0.0110751875, 0.00095059938, 0.00716629764, 0.0170136932, -0.00308670732, -0.00375854783, 0.006408324, 0.00779898651, 0.0187050402, -0.00493935822, -0.000916146033, -0.00360507378, 0.0148462635, -0.00354869547, 0.0305444654, -0.00176181924, 0.0131048029, -0.00118002738, 0.00126302871, 0.0186549257, 0.0130421603, -0.00652108, -0.010530198, 0.0411435701, 0.00418764865, -0.00863213092, -0.0126913628, -5.91677635e-05, 0.005315213, -0.00473890221, -0.00374601921, -0.022350831, -0.012014824, -0.00155353302, 0.0141697247, 0.00683429278, -0.00493935822, 0.00108528067, -0.0191560648, -0.0446515456, -0.012515964, -0.0152221182, 0.00310080196, 0.00100306247, -0.0152346473, -0.0119083319, 0.0189305525, -0.00795559306, -0.011927125, 0.00224103406, -0.0142574245, 0.0301435534, 0.016888408, 0.0055814432, -0.0429476723, -0.0126412492, -0.00196853932, 0.00358941313, -0.00390889, -0.0264100619, 0.0233656392, 0.00609511184, -0.0108559392, -0.0206720121, -0.00236005476, 0.00320102973, -0.00606692256, 0.0122967158, -0.00658372277, 0.000227666198, 0.01271642, -0.0316219144, -0.00132410508, -0.0129544614, 0.0257084668, -0.00304598967, 0.0327244215, -0.0158610716, -0.0263348911, -0.00043967177, -0.00145722029, 0.000658920384, -0.00424715877, 0.00581948459, 0.0158360153, -0.0244556181, -0.0129544614, 0.0136560565, 0.0211105105, -0.00865092408, 0.00367084821, -0.00727905426, -0.00883885194, -0.0125284921, -0.000705510727, 0.012616192, -8.76994454e-05, 0.000434582093, -0.0101167578, -0.000691807712, 0.0138189271, 0.00383685087, -0.00813725591, 0.00441942597, -0.0398907214, -0.0314465165, 0.000757973816, 0.00118629169, 0.00994135905, -0.0200080033, -0.00387130422, 0.0143451244, -0.00195444492, -0.0202335157, -0.0067967074, 0.00511475699, -0.0160740558, 0.0411435701, 0.00790547859, 0.000580617343, 0.013906627, 0.00361760217, -0.00127555709, 0.00902677886, 0.0294920709, 0.0195193905, 0.0203838572, -0.0029097423, 0.00160129799, 0.0212859083, -0.00212044735, 0.00890775863, -0.0198075473, 0.000626424619, 0.000445544516, -0.00998520851, 0.0288907029, 0.00805582106, -0.0139943259, 0.00183072593, 0.00113461155, 0.0165376104, 0.000968609063, 0.0302187242, 0.0121839587, 0.0106366901, -0.0084755253, 0.00584454183, -0.00952165388, -0.0268610884, 0.0213736091, -0.0169009361, 0.00548121566, 0.00579442782, -0.0276879687, 0.0125535494, -0.0136059429, 0.0169259943, 0.00576937059, -0.0111566223, -0.0148963779, 0.0108371461, 0.00339208939, 0.00726026157, 0.00860081054, -0.0126224561, -0.0156105021, -0.0180285014, 0.00782404374, -0.0154351024, 0.0152722327, -0.0117454622, -0.0212107375, 0.00192312361, -0.0056816712, 0.00141415361, -0.00105865765, -0.0101104937, 0.0187927391, -0.0138439843, -0.0179533307, -0.000620160368, 0.00960935373, 0.00724146888, -0.00068358588, -0.0218496919, -0.00477022352, 0.0176401176, -0.0101355501, 0.00969705358, 0.0195193905, -0.00908942148, -0.00595729798, -0.00869477354, 0.00677165, -0.0102796284, 0.00204057829, 0.0146082221, -0.00855696, -0.0220877323, -0.0201959293, 0.0197574329, -0.000597452512, -0.00162400585, 0.0189931951, 0.0235660952, 0.000779507158, -0.015197061, -0.0214863643, -0.00108293153, -0.0269613154, 0.00937131234, -0.00632062461, 0.0125723425, -0.057129927, 0.012916876, -0.00979728159, 0.0190683659, -0.00742313173, 0.00900172163, -0.00749830296, -0.00251666084, -0.00939637, 0.00437557604, -0.00841914676, -0.0056346897, 0.00984113105, 0.0050458503, 0.00917712, 0.00629556738, -0.0192938782, 0.00983486697, 0.00520245638, 0.00229741237, 0.00186987757, -0.00505211484, -0.00877620932, 0.0115450062, -0.0277631395, -0.00550940447, -0.00537159108, -0.0142323673, 0.00164123252, 0.0170387495, -0.0116013838, -0.00712871226, -0.0305194072, -0.0121651664, 0.0122466013, 0.00230054441, 0.00547808316, -0.00475143082, 0.040842887, -0.000666750711, -0.00664636539, -0.0133679016, -0.00172736589, 0.0176651739, 0.0128103839, -0.0129795186, -0.0213485509, -0.0116327051, -0.00103203452, 0.0124282641, 0.0118832756, 0.00582574913, 0.00696584163, -0.00972837489, 0.00756720966, -0.0126850987, 0.0211230386, 0.0107932966, -0.000894221128, -0.000844890194, 0.00685308548, 0.00767996581, -0.00201865332, 0.0041030813, 0.00929614156, 0.0126725705, -0.0151594756, 0.00811846275, -0.00485479087, 0.00102811947, 0.0319977701, -0.0264100619, -0.00173676223, -0.0400911756, 0.00564095378, 0.0236287378, 0.00622979272, -0.00619533937, 0.00341401412, -0.0318975411, -0.0128542334, 0.00778645789, -0.00930240564, 0.00116906501, 0.00169917685, -0.00622666068, -0.0227266848, 0.0223132446, 0.00635507796, 0.00472010951, -0.00211261702, -0.020258572, 0.0101606073, 0.0212483238, 0.0245057307, 0.0143200671, -0.0297927558, -0.0201458167, -0.0132050309, -0.0415945947, 0.0014830603, -0.00362386648, 0.0220000334, 0.0142198391, 0.0274123419, 0.00158485433, 0.00465120282, 0.00677791424, -0.00930240564, -0.00647723069, -0.0046386742, 0.020659484, -0.0211856812, 0.00318223704, -0.0343531258, -0.0138565125, -0.0238793064, 0.00149402278, 0.00776140112, 0.0025385858, -0.00482660159, -0.00200769096, 0.0302688386, -0.0346788689, -0.000636604032, 0.00883258693, -0.0117454622, -3.57257777e-05, -0.00112678134, -0.00478275213, 0.0186674539, -0.0215490069, 0.00432859408, 0.00201238901, -0.015497745, -0.00991630182, -0.0196196195, 0.0114322491, -0.00485165883, 0.00079477625, 0.0140319113, -0.00623605726, 0.00648975931, -0.00357062044, -0.00193565211, -0.00616715057, -0.00123327354, 0.0157357864, -0.00144625781, -0.018579755, -0.012121317, -0.0125472853, -0.000654222211, 0.0117955757, -0.013017104, 0.0252824984, 0.00291757262, -0.00615149, -0.00997894444, -0.0224886443, 0.00589778787, 0.0174647179, 0.00459795678, 0.0169886351, -0.00997268, -0.0153849889, -0.00744192442, -0.0203963853, 0.00107588433, 0.00311489636, -0.00225043041, -0.0093211988, 0.0119960317, 0.0134430723, -0.0117579903, -0.000858201762, 0.011025073, 0.00917712, 0.000985835795, 0.0152471755, 0.00679044286, -0.0196822621, 0.00562216109, -0.00501452899, 0.00103125151, -0.0044413507, 0.0273622274, 0.00265447446, -0.00180566893, 0.0276127979, -0.0210102815, 0.0145330513, -0.0105364621, 0.0215991214, 0.0332005061, -0.00923349895, -0.0121589024, 0.000605674286, 0.00785536505, -0.0138189271, 0.0159111861, -0.00974716712, 0.0319727138, 0.00220344868, -0.00271085254, -0.0278132539, 0.0125097, 0.0195068624, -0.00439750077, -0.00372722652, -0.0104550272, -0.00769249443, -0.0145956939, 0.0111127729, -0.00641145604, 0.0149715487, -0.00149089063, 0.0269613154, 0.00349858147, 0.00573804975, -0.00559710385, 0.0267358031, 0.0132676736, -0.00903304294, -0.00697837025, -0.00892028678, -0.0010805825, 0.00511162495, 0.0204339717, 0.0144829378, 0.0107557112, 0.0220000334, 0.00770502305, 0.0129920468, 0.00726652564, -0.0159362424, 0.00729784695, 0.00241486705, -0.0100415871, 0.00215020264, -0.0130045749, -0.0157733727, -0.0418451652, -0.00908315741, 0.0188929662, 0.00796812121, 0.0010108928, 0.00627364265, -0.0128229121, -0.0139442123, -0.00337956077, 0.0146583365, 0.0138940979, 0.000674189476, -0.0104675554, 0.0101543432, -0.0170638077, -0.0274373982, -0.0151344193, 0.0135182431, -0.00336076808, 0.00954671111, -0.0066776867, 0.0126913628, -0.00809967052, 0.00959056057, 0.015798429, 0.00615462195, 0.00798691437, 0.00326367235, -0.0198200755, -0.00397466403, -0.0124658505, 0.00779898651]
25 Jan, 2018
multimap::swap() in C++ STL 25 Jan, 2018 multimap::swap() is used to swap the contents of one multimap with another multimap of same type and size. Syntax:- multimap1.swap(multimap2) Parameters : The name of the multimap with which the contents have to be swapped. Result : All the elements of the 2 multimap are swapped. Examples: Input: multimap1 = { ('a',1), ('b',2), ('c',3) multimap2 = ( ('d',4), ('e',5) ) multimap1.swap(multimap2); Output: MultiMap 1 data ('d', 4), ('e', 5) MultiMap 2 data ('a',1), ('b',2), ('c',3) Input: multimap1 = { ('abc',10) , ('bef',12) , ('efg',13) multimap2 = ( ('def',14), ('ehi',15) ) multimap1.swap(multimap2); Output: multimap 1 data ('def',14), ('ehi',15) multimap 2 data ('abc',10) , ('bef',12) , ('efg',13) // CPP Program to illustrate... #include<iostream> #include<map> using namespace std; int main() { // initialize multimap multimap<char,int > m1; multimap<char,int> m2; // iterator for iterate all // element of multimap multimap<char,int >:: iterator iter; // multimap1 data m1.insert(make_pair('a',1)); m1.insert(make_pair('b',2)); m1.insert(make_pair('c',3)); // multimap2 data m2.insert(make_pair('d',4)); m2.insert(make_pair('e',5)); // swap multimap1 data with // multimap2 data m1.swap(m2); // multimap1 data cout << "MultiMap 1 data" << "\n"; for( iter = m1.begin() ; iter != m1.end() ; iter++) cout << (*iter).first << " " << (*iter).second << "\n"; // multimap2 data cout << "MultiMap 2 data" << "\n"; for( iter = m2.begin() ; iter != m2.end() ; iter++ ) cout << (*iter).first << " " << (*iter).second << "\n"; } Output:- MultiMap 1 data d 4 e 5 MultiMap 2 data a 1 b 2 c 3 Learn C++ Online – Master everything from basics to advanced concepts. Apply your knowledge with practical exercises and boost your skills. Take the Three 90 Challenge: finish 90% in 90 days for a 90% refund. Start now and level up your C++ programming!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum/Algorithm for Dynamic Time out timer Calculation/Difference between Round trip time (RTT) and Time to live (TTL)/Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms/Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm/Round Robin Scheduling Algorithm with Different Arrival Time/Selfish Round Robin CPU Scheduling/Find the order of execution of given N processes in Round Robin Scheduling/Calculate server loads using Round Robin Scheduling/set::lower_bound() Function in C++ STL/Implementation of lower_bound() and upper_bound() in List of Pairs in C++/Difference between std::set::lower_bound and std::lower_bound in C++/Difference between std::set vs std::vector in C++ STL/std::minmax() and std::minmax_element() in C++ STL/std::rotate vs std::rotate_copy in C++ STL/std::bitset::to_ullong and std::bitset::to_ulong in C++ STL/std::upper_bound and std::lower_bound for Vector in C++ STL/std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++/std::string::append vs std::string::push_back() vs Operator += in C++/Vector push_back() in C++ STL/vector :: cbegin() and vector :: cend() in C++ STL/unordered_multiset cend() function in C++ STL/unordered_multiset bucket() function in C++ STL/unordered_multiset emplace_hint() function in C++ STL/unordered_multiset end() function in C++ STL/unordered_multiset size() in C++ STL/unordered_multiset emplace() function in C++ STL/unordered_multiset find() function in C++STL/unordered_multiset erase() function in C++ STL/unordered_multiset clear() function in C++ STL/unordered_multiset swap() function in C++ STL/unordered_multiset bucket_size() function in C++ STL/unordered_multiset bucket_count() function in C++ STL/unordered_set bucket_count() function in C++ STL/unordered_set cbegin() function in C++ STL/array::cbegin() and array::cend() in C++ STL/array::rbegin() and array::rend() in C++ STL/multimap rbegin in C++ STL/vector rbegin() and rend() Functions in C++ STL/multiset rbegin() and rend() function in C++ STL/map rbegin() function in C++ STL/map upper_bound() function in C++ STL/Set upper_bound() in C++ STL/multimap upper_bound() function in C++ STL/multimap empty() function in C++ STL/multimap value_comp() function in C++ STL/multimap swap() function in C++ STL/multimap::swap() in C++ STL
https://www.geeksforgeeks.org/multimapswap-c-stl?ref=asr5
PHP
multimap::swap() in C++ STL
unordered_multiset clear() function in C++ STL, What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, jQWidgets jqxTreeMap width Property, Round Robin Scheduling Algorithm with Different Arrival Time, Difference between Flow and TypeScript, unordered_multiset emplace() function in C++ STL, jQWidgets jqxTree destroy() Method, unordered_set bucket_count() function in C++ STL, jQWidgets jqxTree collapseAll() Method, Find the order of execution of given N processes in Round Robin Scheduling, jQWidgets jqxScrollView buttonsOffset Property, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Vector push_back() in C++ STL, jQWidgets jqxListBox enableHover Property, Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm, std::rotate vs std::rotate_copy in C++ STL, Selfish Round Robin CPU Scheduling, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxSlider buttonsPosition Property, std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++, std::upper_bound and std::lower_bound for Vector in C++ STL, Difference between Round trip time (RTT) and Time to live (TTL), jQWidgets jqxSlider rtl Property, Difference between std::set::lower_bound and std::lower_bound in C++, jQWidgets jqxTooltip opacity Property, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, unordered_multiset erase() function in C++ STL, jQWidgets jqxToolBar height Property, PHP, std::minmax() and std::minmax_element() in C++ STL, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, map rbegin() function in C++ STL, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, map upper_bound() function in C++ STL, Node.js date-and-time Date.transform() Method, unordered_multiset size() in C++ STL, TypeScript Optional Parameters, jQWidgets jqxToolBar theme Property, Difference between std::set vs std::vector in C++ STL, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, Steps to Diagnose and Resolve a Slow Network, How to use Optional Chaining with Arrays and Functions in TypeScript ?, Calculate server loads using Round Robin Scheduling, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, jQWidgets jqxScrollView showButtons Property, Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms, jQWidgets jqxScrollView disabled Property, jQWidgets jqxSplitter destroy() Method, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, set::lower_bound() Function in C++ STL, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, jQWidgets jqxTree collapseItem() Method, multimap upper_bound() function in C++ STL, std::string::append vs std::string::push_back() vs Operator += in C++, unordered_multiset swap() function in C++ STL, unordered_multiset cend() function in C++ STL, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), Set upper_bound() in C++ STL, jQWidgets jqxSortable opacity Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, multimap rbegin in C++ STL, vector :: cbegin() and vector :: cend() in C++ STL, multimap swap() function in C++ STL, jQWidgets jqxSlider height Property, jQWidgets jqxSwitchButton onLabel Property, unordered_multiset bucket_size() function in C++ STL, unordered_set cbegin() function in C++ STL, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, jQWidgets jqxToolBar tools Property, multimap empty() function in C++ STL, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTree width Property, multimap::swap() in C++ STL, Implementation of lower_bound() and upper_bound() in List of Pairs in C++, jQWidgets jqxTree clear() Method, TLS Handshake?, multiset rbegin() and rend() function in C++ STL, Algorithm for Dynamic Time out timer Calculation, Adhoc TCP, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, jQWidgets jqxTabs position Property, Differences between Wireless Adhoc Network and Wireless Sensor Network, jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, std::bitset::to_ullong and std::bitset::to_ulong in C++ STL, unordered_multiset emplace_hint() function in C++ STL, unordered_multiset bucket_count() function in C++ STL, unordered_multiset find() function in C++STL, unordered_multiset bucket() function in C++ STL, Impact of Three-way Handshake and Slow Start Algorithm, array::rbegin() and array::rend() in C++ STL, multimap value_comp() function in C++ STL, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, vector rbegin() and rend() Functions in C++ STL, array::cbegin() and array::cend() in C++ STL, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, unordered_multiset end() function in C++ STL, How to Sort an Array Having Optional Properties in TypeScript ?
GeeksforGeeks
[-0.0309009366, -0.0033441782, -0.0130586931, 0.0468019322, 0.0440192595, -0.000312636781, -0.0296023544, 0.0135688502, -0.0235467255, 0.014443405, -0.0338691212, 0.0223409, -0.0134098399, -0.0250308178, -0.021612104, -0.0506976768, -0.0137941148, 0.0465899184, -0.0428266823, 0.00816913694, 0.00980561413, -0.00318185566, -0.0332065821, 0.00660553901, -0.0184186548, 0.00447215512, -0.00648628129, -0.00434295973, -0.00226092292, 0.00940808933, -0.0129725626, 0.00685067941, 0.00834802352, 0.00490943249, -0.0323585272, -0.00584692881, 0.0320670083, 0.0321465135, -0.00750659546, 0.00637696218, -0.00504194107, 0.00150645373, 0.0221288875, -0.0194919705, -0.00427008, 0.0180078782, -0.0218108669, -0.0380563848, -0.0164840333, 0.0120913824, 0.0572435856, 0.0105012832, 0.0151854511, -0.014059131, 0.00331602036, 0.0186969209, -0.0107397977, 0.0113625871, -0.00413094647, -0.0367578045, -0.00727470592, -0.0383214019, 0.0393814668, -0.0221156366, -0.023970753, -0.0182728954, -0.0665721744, 0.0108193029, -0.0182463937, -0.000888633833, -0.0126081649, 0.0430651978, -0.00949422, -0.0138868699, -0.0217843652, -0.00276445458, 0.0178223662, -0.0141651379, -0.0295758527, 0.039885, -0.0375528522, -0.00821551494, -0.00558853755, 0.0134098399, 0.0706004277, 0.016802052, 0.0194257181, -0.0325175375, 0.0517047383, 0.00388249336, -0.0413690917, -0.0244875345, 0.0193992164, 0.0349026881, -0.0179283731, -0.010759674, 0.0411835797, 0.00808300637, -0.0288338065, 0.0475174785, -0.0133369612, -0.00657903729, 0.0120715061, -0.0248055551, 0.0263824034, 0.0185379125, 0.0271642022, 0.0202075168, -0.010713296, 0.000667510554, 0.0329415649, -0.0128533058, -0.035777241, 0.0280387569, -0.029549351, -0.0184849091, 0.00260544452, -0.0298938733, 0.00501212664, -0.0155564751, -0.0175573509, 0.03209351, -0.00850040745, 0.00550572, -0.0396994874, -0.0161792636, 0.0112764565, 0.0234539695, 0.0167490505, -0.0434097201, 0.00481005153, -0.0171598252, -0.031907998, -0.0574556, -0.0307419263, -0.00302450196, 0.0234009661, 0.0351147, -0.0138471173, -0.0258921217, -0.0299468767, 0.0165900402, 0.0172128286, 0.0307949297, -0.0084209023, -0.0375793539, 0.0207110476, 0.0313514657, 0.00539640058, 0.0230299439, -0.0371023268, -0.00705606723, 0.0228179302, -0.00291683897, -0.00245968532, 0.0182728954, 0.021333836, 0.00597612467, -0.00865279231, -0.0395404771, 0.0339751281, -0.0196112283, 0.0473849699, 0.00765898, -0.0170935709, -0.0123497741, 0.0341871418, -0.0186174158, -0.00156856701, 0.0400705114, -0.00175739138, 0.0326765478, 0.0109186843, -0.0199690014, -0.00275617279, -0.0442842767, 0.00849378202, 0.0183258988, -0.0113029582, 0.00201246981, -0.00980561413, -0.0289133117, 0.0339221247, 0.0263559017, -0.0150131909, -0.0136086028, -0.00150148466, -0.0150131909, 0.0368108079, -0.0103820255, -0.0164707825, 0.0172658321, 0.0307419263, 0.0110511929, 0.036519289, 0.0305564143, 0.0104350289, 0.0242755208, 0.0476764888, 0.0438602492, -0.000373507792, -0.0153444614, -0.0343196504, -0.00415744819, 0.0148806823, 0.0135224722, -0.0482595228, -0.00973273534, 0.0285422876, -0.0246200431, -0.0197702385, 0.0185246617, 0.00828839466, 0.00219632522, 0.00945446733, -0.0226456691, -0.0310069434, 0.0215988532, 0.0336041041, -0.0266739223, 0.0302648973, -0.0240900088, 0.0263691526, -0.00601256406, -0.0530563258, -0.0207110476, -0.00846065488, 0.0330740735, -0.000801261165, 0.00773185957, 0.0483920313, 0.029734863, -0.0167623, -0.0114553431, -0.013688108, -0.0116938576, -0.0435157269, -0.00425682915, 0.00410444476, 0.0117601119, 0.0351147, 0.0284097809, 0.00946109276, -0.0171465743, 0.00954059791, 0.0353267156, -0.00219135615, 0.00718857534, 0.00328454957, 0.00607881835, 0.0589396916, 0.0114818448, 0.0167358, 0.0220891349, -0.0212013293, 0.0319875032, -0.0145759135, -0.0254548453, -0.0379503779, -0.0397789925, -6.21132699e-07, 0.0295228492, -0.0154902209, 0.0114818448, 0.0368108079, 0.0115812253, 0.0240635071, 0.000354873802, -0.0380563848, -0.0198099911, -0.0132177034, -0.0206050407, -0.0107861757, 0.00310897618, 0.0435687304, -0.0008418418, -0.0155299734, -4.4255703e-05, -0.0097526107, -0.0390369445, 0.0491075777, 0.015861243, -0.0233214609, -0.00328289322, 0.00013985837, -0.0235997289, -0.00373342144, -0.00195615389, -0.0096068522, -0.024355026, -0.00237024226, -0.0399380028, 0.00276445458, -0.00587674323, 0.0140723819, 0.0190149415, 0.027084697, -0.025295835, -0.0173320863, 0.0241960157, -0.00214663451, -0.000514711952, 0.0283832792, -0.0299468767, -0.0179681256, -0.0130454423, 0.00843415316, 0.0155034717, 0.00230067549, -0.0319345, 0.0202207677, -0.0265546646, -0.0171863269, 0.0349556915, -0.00698318752, -0.00375992316, 0.0248055551, -0.00334583456, -0.00359097496, -0.0202075168, -0.0497701205, 0.00360422581, -0.021426592, 0.0115812253, 0.0277737398, -0.0230299439, -0.0165900402, 0.0429856926, -0.0224734079, -0.0356447324, -0.0384539105, 0.021519348, -0.0140723819, 0.0131381983, 0.0245007854, -0.00666185515, 0.0166827962, 0.00908344425, -0.0348761864, 0.0239972547, -0.0116342288, 0.00288039935, 0.0081823878, 0.0290193185, 0.0330210701, 0.00201909523, 0.00609869463, -0.00316529209, -0.00286714849, 0.0319875032, 0.000690285466, -0.00954059791, 0.0329415649, 0.0263426509, -0.00370691973, -0.0225264113, -0.00995799899, -0.0174380932, -0.00631070789, 0.00280586327, 0.0086726686, 0.0133634629, 0.0114420922, -0.0267931782, -0.0202472694, -0.0341606401, -0.0194919705, -0.0373143367, 0.00616163621, -0.000492351188, 0.00543946587, -0.0291253254, 0.0221553892, 0.062649928, -0.0441517681, -0.00335742906, 0.0137941148, 0.0188161787, 0.00154123723, 0.00932195876, 0.00586349238, 0.0233877152, -0.0232684575, -0.00815588608, 0.00098801509, -0.0109319352, 0.0337366126, -0.0166297927, -0.0153179597, -0.0167755503, -0.0247393, 0.0183391497, 0.00613513449, 0.0304504074, -0.00264022802, 0.0012671107, -0.0343726538, -0.00784449186, -0.0149866892, -0.049823124, 0.00574423512, -0.0471994579, -0.0192667078, -0.0117667373, 0.00363735296, -0.00606556749, -0.000901056454, -0.0102230152, -0.0113559617, 0.0455298536, -0.00884492882, 0.0170273166, -0.0272172056, -0.00166297925, 0.0151059469, -0.00750659546, -0.0308214314, 0.0797169954, -0.0125617869, 0.0031570103, -0.00716869906, -0.0520492606, -0.00859316345, -0.0382418968, -0.00944121648, 0.0244610328, -0.00161494489, 0.024355026, -0.00335742906, 0.00983874127, 0.0331800804, -0.005333459, 0.0101037584, 0.0196509808, -0.0176103543, -0.0289928168, 0.0110114403, -0.0254548453, 0.0197834894, -0.0338426195, 0.040786054, 0.0425881669, 0.0224999096, -0.0179548748, -0.0124359047, 0.0139001207, -0.0260246303, -0.010806052, 0.00948759448, 0.0496906154, -0.0235069729, 0.0500086322, -0.0423496552, 0.00805650465, 0.00787761901, -0.0345846675, 0.00430320716, 0.00524401618, 0.0618018731, 0.0219566263, -0.00582705252, 0.032279022, 0.0144036524, -0.0327030495, 0.00177064224, 0.00584030338, -0.0119191222, 0.0496641137, -0.0194522198, -0.0178753696, -0.0106602926, -0.0213470869, -0.00166712014, 0.00599931367, 0.00774511043, 0.00492930878, 0.0112433294, -0.0283302758, 0.00975923613, -0.0343991555, 0.0475439802, 0.00694343494, 0.00153378362, -0.00795712322, 0.0107729249, -0.0173320863, 0.00685730483, 0.0138868699, -0.0262896474, -0.021519348, -0.00109153718, 0.00820226409, 0.0240105037, -0.0337631144, 0.00770535786, 0.0330475718, -0.0473849699, 0.0264884103, -0.0145229101, -0.0127274226, 0.0389044397, 0.00912319683, -0.00717532448, 0.0421906449, -0.0186174158, -0.0497966222, -0.0134230908, 0.00594299752, -0.000915963668, -0.0188029278, 0.0100110024, 0.0416871123, 0.0373673402, -0.00912319683, -0.00201909523, -0.0104085272, 0.0245670397, -0.0174115915, -0.00910332054, 0.00515126, 0.000733764726, 0.00205056602, 0.0242092665, 0.0375528522, -0.0190016907, 0.0310334451, 0.0062908316, -0.00785774272, 0.0392489582, -0.0215723515, -0.00558853755, 0.00785774272, -0.0212808345, -0.00681755226, 0.011514972, -0.0269124359, -0.00311228889, -0.0329150632, -0.0254680961, 0.0105807884, 0.0130918203, -0.0157684889, 0.01547697, -0.00599268824, 0.00644321647, -0.00879855175, 0.0157949906, -0.0417666174, -0.0282772724, 0.0224336553, 0.0225396622, 0.0222083908, -0.00235864776, -0.00361085124, -0.0136218537, 0.020194266, -0.00912319683, -0.0276942346, -0.00905031711, -0.0125816632, -0.00900393911, 0.010945186, 0.00475373538, 0.0176898576, -0.0135489739, -0.00173420238, -0.00502869, 0.0232552066, 0.0181801394, -0.00375329773, 0.00658235, -0.00904369168, 0.00872567203, -0.0144566558, -0.0268461816, 0.029072322, 0.00706931809, 0.0374203436, -0.030582916, -0.0255608521, -0.0254150927, -0.01963773, -0.00162074214, 0.0193197113, 0.00819563866, 0.0156889837, -0.0126876701, -0.0158347432, -0.0281977672, 0.0276677329, 0.0378708728, 0.0133170849, -4.11500405e-05, 0.00751322089, 0.0262233932, -0.0177163593, 0.0218108669, -0.0243020225, -0.0034253397, 0.00208700588, 0.0411305763, 0.007599351, 0.0110445675, -0.0158082414, 0.00510488218, 0.00135489739, 0.0197834894, 0.0130984457, 0.0263426509, -0.0242490191, -0.036333777, -0.012038379, 0.018882433, -0.0111770751, 0.0139398733, 0.0285157878, 0.0116607305, 0.0208700579, -0.0119721256, -0.0228179302, 0.00417069905, -0.0466959253, 0.00354791, 0.00785774272, 0.00665522972, 0.0105410358, -0.0477824956, 0.00494255964, -0.00855341088, -0.00521088904, -0.000413881411, -0.0122967707, 0.00431645801, -0.0528708138, 0.0224071536, 0.000616991776, -0.0133303357, 0.00893768482, -0.00704281637, 0.0592577122, -0.0393019617, -0.019067945, 0.0125021581, 0.0288868099, -0.00635377318, -0.0152384546, -0.0221023858, 0.0142976455, -0.0101103839, -0.0105609121, -0.0429326892, 0.00955384877, -0.00393218407, 0.00403487775, -0.0168418046, -0.0159672499, -0.0067579234, -0.00365722924, 0.00642002746, 0.0100905076, -0.0271907039, -0.00915632397, -0.00602581492, -0.0141121345, 0.024355026, -0.00234870962, -0.0490545742, -0.0157154854, 0.00441583944, -0.00718857534, 0.00227914285, -0.0160997584, 0.00452847127, 0.0241562631, 0.0121178841, -0.0208303053, -0.00456159841, 0.0469609424, -0.000127953332, 0.00580717623, 0.00816913694, 0.00717532448, 0.0101170093, -0.00800350122, 0.00296652969, -0.00489286892, 0.0100176279, -0.0184054039, 0.0193064604, -0.045582857, 0.0176633578, -0.0217843652, -0.00407794304, 0.0380298831, -0.00309572532, -0.0376323573, 0.00987849385, 0.0173055846, -0.0159142464, -0.0203002729, 0.0297083613, -0.0160335042, -0.0176103543, -0.0148674315, 0.0103422729, 0.0471464545, 0.000560675748, -0.0237852409, -0.0177296102, -0.0256536081, 0.0166430436, -0.020287022, -0.024169514, 0.0384539105, -0.00147001399, -0.0151722012, -0.02426227, -0.0145096593, -0.0176103543, -0.0263028983, -0.0262498949, 0.0088118026, 0.0155432243, 0.0250573196, 0.0322260186, -0.0194257181, -0.0248320568, -0.05173124, -0.0133634629, -0.00525726704, -0.0139796259, -0.00206050416, 0.00900393911, 0.0108259283, -0.025481347, 0.00986524299, 0.0230961982, -0.0197702385, -0.015198702, -0.0242092665, 0.0131050711, 0.0207905527, -0.0225264113, 0.0343726538, 0.0152782071, -0.0243417751, 0.0339486264, -0.0119456239, -0.0419786312, 0.0201810151, 0.0296553578, 0.0268196799, 0.011190326, -0.0325440392, 0.0164972842, 0.007692107, 0.0164045282, -0.013780864, 0.0355387256, -0.0218771212, -0.000535002269, -0.00579723809, 0.0172393303, 0.035777241, -0.0436217338, -0.00675461069, -0.00363404024, 0.0250705704, 0.0122106401, -0.00742046488, -0.0268461816, -0.00264188438, 0.02426227, 0.00931533333, 0.0179813765, -0.0265016612, -0.0212410819, 0.016046755, 0.0136616062, 0.0307949297, 0.00166463561, 0.0131580746, 0.0128533058, -0.0104482798, 0.00748671917, 0.003267986, 0.0279857535, 0.0408655591, 0.0200750083, -0.0201545134, 0.00777823757, -0.00657572458, -0.0174910966, -0.0142976455, 0.0230696965, -0.0370228216, -0.0152517054, -0.0306094177, -0.01708032, -0.0514132231, 0.0183391497, 0.00572435884, 0.018882433, 0.0036241021, -0.0105940392, -0.049849622, 0.0146554187, 0.0335246, -0.00660885172, 0.0246200431, -0.0470404476, 0.0104151526, 0.0151722012, 0.0245802905, 0.000929214468, 0.0139001207, -0.00359097496, -0.00510488218, 0.0362277701, 0.0160070024, 0.00461128913, -0.00380298821, 0.030768428, -0.00357109867, 0.0060456912, 0.00493262149, 0.0157287363, 0.00465104124, 0.0235334747, -0.0249380618, -0.000641837076, -0.0195714757, -0.0043827123, 0.0245272871, 0.0131912017, 0.0157022346, 0.0299733784, -0.00476367353, -0.0157022346, 0.021797616, 0.00969298277, -0.0032795805, -0.0181933902, 0.00708919438, -0.0106006647, -0.000158492359, -0.00407131761, 0.0283037741, 0.0104880324, 0.0209098104, 0.0411835797, 0.0108590554, -0.0137676131, 0.0197039843, -0.00130934769, 0.0122768944, -0.0274822228, -0.0291783288, 0.0155829769, 0.024924811, 0.0126942955, 0.0361217633, 0.0199027471, 0.0232022032, 0.0256138556, 0.0241562631, -0.0114619685, -0.0408125557, 0.0205387864, -0.00974598527, -0.0121576367, -0.00711569609, -0.026143888, 0.0099381227, -0.00783786643, -0.0432772115, 0.0244212802, 0.00654259743, 0.000200625858, 0.0398054942, 0.0105874138, -0.0448143072, -0.0245935414, -0.0388514362, 0.0116938576, 0.011468594, 0.00730783306, -0.0324115306, 0.000628172187, -0.00850703288, 0.00929545704, -0.00408788119, -0.0148541806, -0.0549114421, 0.00162157032, -0.0254945979, 2.88309075e-05, -0.024540538, 0.0255211, -0.0493460931, 0.000710161694, -0.0109716877, -0.0117402356, 0.024076758, 0.00991824642, -0.015847994, 0.0676322356, 0.0426411703, 0.00477361167, 0.0142843947, -0.00102114212, 0.030397404, -0.0230961982, -0.0243815277, 0.0144169033, 0.00690368284, -0.0211748276, 0.0118727442, 0.00229405, 0.0323055238, 0.0116872322, 0.0311129503, -0.00349159376, 0.0142181413, -0.00728133135, -0.0128135532, -0.0399380028, -0.0253090858, 0.00887805596, 0.00792399701, -0.0300793853, 0.0208170544, 0.0122768944, -0.00890455768, -0.00765235443, -0.0159937516, -0.0233214609, -0.00641340204, -0.0631799623, 0.0219698772, -0.00654922286, 0.0203400254, 0.0212675836, -0.000543284055, -0.034266647, 0.0389044397, -0.0641340166, -0.00856003631, 0.000836458639, -0.0383744054, -0.029257834, 0.0103356475, -0.0104615306, -0.0472259596, -0.00938821305, -0.0140193785, -0.014443405, -0.00310069439, -0.026143888, 0.00799687579, 0.0248850603, 0.0022344212, 0.0188956838, -0.00109567808, 0.00518438732, -0.0112764565, -0.0217446126, -0.00602912763, -0.0237984918, 0.0234937221, 0.0181801394, -0.0210290682, 0.0338691212, -9.76731098e-05, -0.0171333235, 0.0332065821, -0.0597347431, -0.0200882591, -0.0124292793, 0.0175441, 0.0203665271, -0.0191076975, 0.00292180805, 0.00689043198, -0.0040911939, 0.0270051919, 0.0137676131, -0.00957372505, -0.0179548748, 0.0195714757, -0.0184716582, -0.00683080312, 0.00293174619, -0.0181138851, 0.0172923338, 0.0303709023, 0.0279062483, -0.0199027471, -0.00812275894, -0.0334450975, -0.0202340186, -0.0232419558, -0.0326500461, 0.0378708728, 0.00959360134, -0.0249778144, 0.000760266383, 0.035406217, -0.0199027471, 0.00338061806, 0.0274027176, -0.0296023544, 0.00812275894, -0.0103886509, 0.00943459105, 0.0250043161, -0.0116938576, -0.0220626332, 0.0741516501, 0.0276942346, -0.0426146686, -0.02586562, -0.0390104428, -0.0221951418, 0.00914969854, -0.000738319708, 0.0180211291, 0.0148939332, 0.0222216416, 0.0069103078, -0.00705606723, -0.00991824642, -0.00248287432, 0.0155564751, 0.0150264418, -0.00674798526, 0.00620138878, -0.040574044, 0.0133833382, 0.00289696269, 0.00829502, 0.0108193029, -0.00106752, 0.00511482032, 0.0242225174, -0.0284627844, -0.00212675822, -0.00861966517, 0.0157419872, 0.0198762454, -0.0160335042, 0.0186174158, -0.00399181247, 0.000745359226, -0.0106072901, 0.00501875207, 0.00208203681, -0.0178223662, 0.0369168147, 0.0091165714, -0.0266341697, -0.0254018418, 0.00538977515, 0.0067347344, 0.0167623, 0.0317489877, 0.0197569877, 0.0235997289, 0.0364397839, 0.00573098427, 0.00522082718, -0.0243682768, -0.0100640059, -0.00374004687, -0.0134230908, 0.000815754232, 0.0189221855, -0.000397524913, -0.000579723855, -0.0211615767, -0.00198431173, -0.00265513523, 0.00999775156, -0.000397110824, 0.0030228456, -0.025203079, 0.000989671447, 0.00484317867, 0.000656330201, -0.019915998, -0.0119456239, 0.0198762454, 0.0371818282, 0.0128466804, 0.0280917604, 0.00989837, 0.0324910358, 0.063869, -0.0225529131, -0.00997787528, -0.00667179329, 0.0157419872, -0.016696047, -0.014350649, 0.0250838213, 0.00950747076, 0.000464607234, 0.0140061276, 0.00192468311, 0.0160202533, 0.0162587687, -0.0119058713, -0.0172393303, 0.0396199822, -0.00735421106, -0.0116209779, -0.00983874127, -0.052102264, 0.0191209484, 0.0184981599, -0.000378890923, 0.00108822447, -0.0181006342, 0.0188029278, -0.0131978272, -0.0330740735, 0.0116474796, 0.00206381688, -0.0055156583, 0.0266209189, -0.0122437673, 0.0097989887, 0.0262101423, 0.00527714333, -0.00230398821, -0.00475373538, 0.0142711438, -0.0146421678, 0.00967310648, -3.08237104e-05, 0.0180608816, -0.00665522972, 0.00519763818, 0.0387189277, -0.0106337918, 0.0457153656, -0.00334086572, 0.00194290304, -0.0447613038, 0.0439927578, -0.00843415316, 0.0152252037, -0.00371023244, 0.0127141718, -0.029072322, 0.0035015319, 0.00258888095, 0.0142976455, 0.0080896318, 0.0024679671, 0.00312553952, -0.000166360027, 0.0185114108, -0.0128400549, -0.0238249935, 0.00468085567, 0.00125800073, -0.0159274973, 0.00642996561, 0.0318019912, -0.0096996082, -0.0420581363, 0.0118594933, -0.0246730465, -0.02472605, -0.0188426804, -0.0174645949, -0.00186505436, 0.0274292193, 0.0121046333, 0.0262631457, -0.0160070024, -0.0186306667, 0.0151191978, -0.0220626332, 0.00322326459, 0.00487961806, -0.0284362826, -0.0131713254, 0.00406469218, 0.023970753, -0.0105807884, -0.00522414, 0.00771198329, 0.0148939332, -0.00636702403, -0.000284478767, -0.0341076367, -0.00201412616, -0.00286549213, 0.025295835, 0.0165767893, -0.0343196504, -0.00307253632, -0.00628089346, 0.0147349229, 0.0124624055, 0.0143639, 0.0259318743, 0.0150529435, 0.00391230779, 0.00703619095, -0.00171101349, -0.00693680951, -0.0183524, 0.00181702012, -0.0181006342, -0.00824201666, 0.00921595283, -0.00922257826, -0.0229504388, 0.0169743132, -0.0106934197, -0.0174778458, -0.00284064678, -0.00389905693, -0.000501875184, -0.00850703288, -0.0126545429, 0.00142032339, -0.0130586931, 0.0151059469, -0.001657182, -0.00017961087, 0.00850703288, -0.00958697591, 0.0116938576, 0.0168153029, 0.000708919426, -0.0301323887, -0.0205387864, -0.016325023, -0.0088118026, 0.00815588608, 0.0396729857, -0.00137725822, 0.00140541617, -0.00628089346, 0.00809625722, -0.0292843357, -0.0281182621, -0.00383942807, -0.0192932095, 0.00994474813, -0.0166165419, -0.00924245454, -0.0465634167, -0.0286747962, 0.0187366735, 0.0219963789, 0.0225396622, -0.0035015319, -0.0146686696, 0.000558605301, -0.0303179, -0.0361747667, -0.0156889837, 0.00135406922, -0.0215988532, -0.00250606332, 0.00113625871, -0.00447215512, 0.00287874299, 0.0103025204, 0.0245670397, 0.0109584369, 0.0187764261, -0.0283037741, -0.0149734383, 0.00972611, -0.0125684123, 0.00779811386, -0.00182861462, -0.0101965135, 0.00165386929, -0.0209363122, -0.00469410652, 0.00678442512, -0.0188029278, 0.00429658173, -0.0143904015, 0.00771198329, 0.0306359194, 0.00689043198, -0.01963773, -0.00626101717, -0.000944121683, 0.00342202699, -0.00436614873, -0.00493262149, -0.00932195876, 0.00561503926, -0.0148939332, -0.0152384546, 0.0148276789, 0.0271111988, -0.0113824634, 0.0302383956, 0.00471729552, -0.00269654393, -0.00127622054, -0.00588336866, 0.0155829769, 0.0157287363, 0.0263691526, -0.000494007545, 0.0223143976, 0.0193859655, 0.027270209, 0.00987849385, 0.0113228345, -0.0151059469, -0.00714219734, 0.0166562945, -0.00987849385, 0.0137411114, 0.00950084534, -0.0260776337, 0.0182596445, -0.0168153029, 0.00863291603, -0.00309075625, 0.0043827123, 0.0099381227, -0.0216253549, -0.00358434953, -0.0103488984, -0.00358103681, -0.0121046333, -0.0174380932, 0.0130321914, 0.035008695, -0.000294623926, -0.0247658025, -0.0191872027, 0.00154040905, 0.00978573784, -0.0140061276, 0.0057873, -0.0145096593, 0.00226257928, -0.0123696504, 0.00171598257, -0.00141452614, -0.00843415316, -0.0187499244, -0.0336836092, 0.000548253127, -0.000500218826, 0.000986358733, 0.0096996082, -0.000746187405, -0.0324910358, -0.0124292793, -0.00317026116, -0.00959360134, -0.0396199822, -0.00741383946, -0.00477029895, 0.0174513441, 0.0180873834, 0.00997125, -0.0278797466, 0.0113162091, -0.00667841872, -0.00380298821, -0.00692355866, -0.00909669511, -0.00459803827, -0.0208833087, 0.00341208884, -0.0193594638, -0.0340811349, 0.016325023, 0.0139266225, 0.0233877152, -0.00301456382, 0.00756622432, 0.0316164829, -6.33555319e-05, 0.00396531075, 0.0160997584, 0.0298143681, 0.00197603018, 0.00218638708, 0.0126346666, 0.00971285906, -0.0280122552, -0.0408125557, 0.0267534256, 0.0347436778, 0.00331933307, -0.00928883161, 0.0213735886, 0.0155299734, -0.00242987112, 0.000391313573, -0.0233744644, -0.0109319352, -0.0112300785, 0.0321730152, -0.00181205105, -0.00297315512, 0.00451853313, -0.0101633873, -0.00570448255, 0.00101617305, -0.00405144133, -0.0156094786, -0.0125087835, 0.00464110356, 0.00451853313, 0.00379636278, -0.0237852409, 0.0273232125, -0.0152384546, 0.0273762159, 0.0309009366, 0.0175838526, 0.00339221256, -0.00837452523, -0.0031570103, 0.00322492095, -0.0148276789, 0.00823539123, 0.0135622248, 0.000441832381, 0.0159009956, 0.00647634314, -0.0152649563, 0.00356116076, 0.0232552066, -0.00259881909, -0.0201280117, 0.00707594352, -0.0016720891, 0.00255244109, -0.0208303053, -0.00767223071, 0.00793724693, -0.0326500461, -0.0201412626, -0.00515788561, 0.0141651379, -0.0235202238, 0.026899185, -0.00648296857, -0.0156359803, -0.0233347118, 0.0167755503, -0.0293108374, -0.00657572458, -0.0289663151, 0.00474379724, -0.0130653186, -0.000348869507, -0.00297646783, 0.0113427108, 0.0149866892, -0.0265546646, 0.0105874138, 0.0226324182, -0.0202605203, -0.021333836, 0.00902381539, -0.00493924692, -0.0264884103, -0.0110445675, -0.0158347432, -0.0137278605, 0.0119124968, 0.0184716582, 0.007784863, -0.0131779509, 0.0272172056, -0.0121708876, 0.00456159841, 0.0137941148, -0.00381292636, 0.0442842767, 0.0278002415, 0.00188493065, -0.0088648051, -0.00392887136, -0.00718195, -0.00246134168, -0.0257993676, 0.0198894963, 0.0110180657, 0.00519763818, -0.00426014187, -0.0142313922, -0.0272967108, 0.00674798526, -0.0117866136, 0.00993149728, -0.0130321914, -0.00558191212, -0.00311891409, -0.00761260185, -0.0274822228, 0.00734758563, 0.0234539695, 0.00799025, 0.00805650465, -0.00732770935, 0.00914307311, 0.00455497298, -0.0418196209, -0.0438602492, -0.0126479175, 0.0229769405, -0.0242092665, 0.00585024152, -0.00932858419, 0.00647634314, -0.0117866136, -0.0116938576, -0.00195449754, 0.0129195591, 0.0156227294, 0.0162455179, 0.00169444992, 0.00529039418, -0.00358103681, 0.0232684575, -0.00472392095, -0.0104549052, -0.0262233932, 0.00722170249, -0.0137543622, 0.000101244623, -0.00181536376, 0.0134959705, 0.0057873, 0.0227649268, 0.00336902356, -0.00765235443, -0.00119091838, -0.0137013588, 0.0144169033, -0.00330939493, 0.0186969209, -0.00806313, -0.00398849975, 0.00263194623, 0.0217181109, 0.030768428, -0.000415744813, 0.0153577123, -0.0187631752, 0.00386261707, 0.00120334106, -0.0128996838, -0.00829502, -0.00318351202, -0.0234937221, -0.00900393911, 0.00469410652, -0.0192137044, -0.0118064899, 0.0283567775, 0.00581711438, 0.00622457778, 0.00473717181, 0.00670160726, -0.00598606281, 0.010991564, 0.0131315729, 0.0131912017, 0.0263294, -0.0198364928, 0.0119655, -0.0393814668, 0.0177826136, 0.00307750539, -0.00434958516, -0.00420713844, -0.0040216269, 0.0105277849, 0.0173718389, 0.00895093568, 0.00669166911, 0.0108921826, 0.0198364928, 0.00383942807, -0.0122305164, -0.0188691821, -0.000709747605, 0.00212841458, 0.0215458497, 0.0158877447, -0.0104681561, 0.00946771819, -0.0167755503, 0.00644652918, 0.000337275036, 0.00655253557, -0.00500881393, 0.0148939332, -0.00370691973, 0.00522745261, -0.00107497361, 0.00361416396, 0.00938158762, -0.021890372, 0.0142711438, 0.00500881393, 0.0108723063, 0.000973107875, 0.0286482945, 0.00137063279, 0.035777241, 0.00664197886, -0.0155432243, 0.00806313, -0.00882505346, -0.00102528301, 0.026143888, 0.000852194033, 0.00424689101, -0.0166430436, 0.0179813765, 0.00183855277, -0.00277604884, 0.00790412072, 4.17970514e-05, 0.00243318384, 0.0134959705, -0.00900393911, 0.0211218242, 0.000801261165, -0.00719520077, -0.00926895626, 0.0174513441, -0.00518438732, -0.00745359203, 0.00799687579, -0.00395868579, -0.00636371132, -0.00959360134, -0.00535333529, -0.00406469218, 0.0143373981, 0.00630076975, -0.00696993666, -0.00186505436, 0.00728795677, 0.00716869906, -0.020393027, -0.00310235075, -0.00479017524, 0.00246631075, -0.00238846219, 0.0160202533, -0.0207905527, 0.00257231737, 0.00180045655, 0.00542621501, -0.000582208333, 0.0067579234, 0.0030924126, 0.0168550555, -0.00660553901, -0.0125352852, -0.00444896612, 0.000669166911, 0.0135555994, 0.00369698158, -0.000402493984, 0.00998450071, -0.0288338065, -0.000461708609, 0.058038637, -0.0161130093, -0.00104681565, 0.00703619095, -0.00846065488, -0.00206050416, 0.0103488984, -0.000574340695, -0.0136483554, -0.00618151249, -0.011793239, -0.0148144281, -0.00819563866, 0.0225529131, -0.0138073657, 0.0125087835, -0.00676454883, -0.00700968923, -0.00466429209, -0.0277207363, 0.00650947029, 0.00326136057, -0.00556203583, -0.0081823878, -0.0116872322, -0.00742709031, 0.00712894695, -0.0148409298, -0.0146156661, 0.0102163898, -0.00329780043, 0.0022112322, -0.0125419106, -0.00545602944, 0.000648048415, -0.00983874127, 0.00834139809, -0.00238846219, 0.00384274079, 0.00336902356, 0.0101832636, -0.00448540598, -0.0339751281, -0.0120450044, 0.00390568236, 0.00526057975, -0.0235864781, -0.00502206478, -0.0210555699, 0.0203665271, -0.0060456912, -0.0150264418, 0.0112764565, 0.00650615757, -0.00687055569, -0.00791074615, 0.00784449186, 0.0103290221, -0.00718195, 0.0155564751, 0.00564816641, -0.00505519193, -0.0033441782, -0.000862132176, 0.00245471625, 0.0075861006, 0.0082287658, -0.00188658701, 0.016603291, -0.0113228345, 0.0117799882, 0.00309075625, -0.0362807736, 0.0141121345, 0.00272967108, -0.0090701934, 0.0146819204, 0.00373342144, 0.00441583944, 0.00861304, -0.00387255521, 0.0138471173, -0.0140326293, 0.0162985213, 0.0086726686, 0.0186306667, -0.0271377, -0.013303834, 0.0171995778, 0.006535972, 0.0179151222, 0.0239177495, 0.00129029958, -0.0134495925, -0.00701631466, -0.00946771819, 0.00408456847, 0.00356116076, -0.00375992316, -0.0129129337, 0.000481170777, -0.036148265, -0.00989837, -0.00420713844, 0.00291187, 0.0067579234, 0.0250838213, 0.0237322375, -6.48566056e-05, -0.0101633873, 0.007692107, 0.0139928767, 0.00535002258, -0.0103157712, 0.0228974354, 0.00267169857, -0.000120706783, -0.00932858419, -0.0413955934, -0.0115083465, 0.0141386362, 0.0146156661, 0.0129261846, -0.0104747815, 0.0012894714, -0.0110776946, -2.34995186e-05, -0.0222216416, 0.00594962295, -0.0311129503, 0.00439596316, -0.020764051, 0.00209363131, 0.000682417769, 0.0221421383, -0.0159142464, -0.0134893451, 0.00838115, -0.00612188363, 0.00298640598, -0.0150264418, -0.0294168442, -0.0051877, -0.0126744192, 0.00305266, 0.0132707069, 0.00520426361, 0.000503117451, -1.53083329e-05, 0.0120913824, -0.00677117426, 0.01132946, -0.0170273166, 0.00679105055, 0.00651609572, -0.0177561119, -0.000994640402, 0.00556866126, -0.00244974717, -0.0103886509, 0.0221421383, -0.0168153029, 0.0105542867, 0.0451853313, -0.0109186843, -0.0224071536, -0.0058005508, -0.00981886499, 0.00938821305, 0.00854678545, -0.0111770751, 0.0221156366, 0.0341076367, 0.0141783888, -0.0228576828, -0.00423364, -0.00226754835, -0.0311659537, 0.012177513, -0.00609869463, -0.0151324486, 0.00159920962, -0.0168285538, -0.0232949592, 0.00901056454, 0.00429326901, 0.0193727147, 0.0128665566, -0.00128533051, 0.00243152748, -0.0235599764, 0.000348248373, 0.0070030638, 0.0297613647, 0.00752647175, 0.0147349229, -0.025666859, 0.0124425301, 0.00121493556, 0.0118329916, 0.00242987112, 0.00844740402, -0.00450196955, -0.000536658627, 0.00854016, 0.00383280264, -0.00341540156, -0.00253256503, 0.00442246441, -0.0142313922, 0.000541627698, 0.0102693932, -0.00425351644, 0.00190977589, 0.00504525378, -0.0173585881, 0.00476036081, -0.018882433, 0.00628089346, 0.0228311811, -0.0086262906, -0.0159274973, -0.00210853829, -0.00490280706, -0.0176766068, 0.000843912247, 0.00850040745, 0.0055388473, 0.000506430166, -0.00158513058, 0.0103422729, -0.00214829086, 0.0215723515, -0.0183258988, -0.0217181109, 0.0046046637, -0.00497568678, 0.00620470149, 0.0123829013, 0.0104151526, -0.00434295973, 0.00364397839, -0.00612519635, 0.0165767893, -0.0218241177, -0.000951575232, -0.0270184427, -0.00674136, 0.00628089346, 0.00240502576, 0.0173320863, 0.0135622248, -0.0172393303, -0.0329415649, -0.00825526752, -0.01547697, 0.0111240717, -0.010898808, 0.0107729249, 0.0188029278, 0.0167623, 0.000488624384, -0.00561172655, -0.0157154854, 0.00133088022, 0.000360049919, -0.016987564, -0.00661547715, 0.0452913381, 0.00397193618, 0.00309738168, 0.00570448255, -0.0149601875, -0.00147084217, -0.00932195876, -0.00226589199, -0.0276412312, 0.0183656514, -0.0093087079, 0.00110727246, 0.011700483, -0.000667924643, -0.0203400254, -0.0164840333, -0.0112433294, -0.0131978272, -0.00810288265, 0.0128731821, 0.0164840333, 0.0371818282, 0.00368041825, -0.012131135, 0.003244797, -0.00278598699, 0.00889793225, -0.00642996561, -0.0027131075, -0.00742709031, 0.00586680509, 0.00912982225, -0.00311063253, 0.00952072162, -0.0190546941, 0.00382617721, -0.0138868699, 0.0347436778, 0.0294168442, 0.0139001207, 0.0233347118, 0.0156889837, 0.00702956552, 0.0243020225, -0.0149601875, 0.00795049779, 0.000333548232, 0.0118727442, -0.0374468453, 0.0193859655, -0.00653928472, 0.0149204349, 0.0170935709, -0.0104814069, 0.0122768944, 0.000710989872, 0.00636371132, 0.0274822228, 0.00895756111, 0.0271111988, -0.00505519193, -0.013071944, 0.0117998645, 0.00354459719, 0.000216361208, -0.00910994597, 0.00410444476, 0.00790412072, 0.00909669511, -0.00465435395, 0.0265944172, -0.0216253549, -0.0262896474, 0.00153378362, -0.0121046333, 0.00446221698, -0.0119389985, 0.0116474796, -0.00502869, -0.0139796259, 0.00429989444, -0.0050253775, 0.0141651379, -0.00161080412, 0.00615169806, -0.00865279231, -0.00467423024, 0.0197569877, -0.00392555865, 0.013966375, 0.00440921402, -0.0181933902, 0.00179880019, -0.0198497437, -0.0130321914, -0.00570117, 0.0126479175, -0.0072945822, 0.0222216416, -0.00642665289, -0.00646309229, -0.0278797466, 0.0242092665, 0.00933521, -0.0120052518, 0.00361085124, 0.00544940401, 0.000556534855, -0.00398849975, 0.010097133, 0.0168550555, 0.00854016, 0.0234672204, 0.000468334038, 0.0107000452, -0.0202472694, -0.037658859, -0.0220096298, -0.00964660477, 0.00106586365, 0.0119124968, 0.000496492, 0.00171266985, 0.00245140353, -0.000867101189, -0.0165635385, 0.00712232152, -4.74131266e-05, -0.0132243289, -0.0100110024, 0.0109186843, -0.007784863, -0.00734758563, -0.000987186912, -0.00824201666, 0.00108905265, -0.00625439174, 0.00636371132, 0.0162720196, 0.0162455179, 0.0144964084, -0.00616494892, 0.0272437073, -0.0300263818, 0.0109186843, -0.00462454, 0.0252693333, 0.016603291, 0.00228576828, -0.0139531242, 0.00948759448, 0.0292048305, 0.00150479737, -0.00352140819, -0.007645729, -0.0203665271, 0.0227649268, 0.00812938437, -0.00802337751, 0.0196509808, -0.00865279231, -0.00171432621, 0.0157022346, 0.00981886499, 0.00835464895, 0.00610200735, -0.00490943249, 0.023970753, -0.00477029895, 0.00459803827, -0.007692107, 0.0196112283, 0.00427670544, -0.00776498672, 0.0182198919, -0.021890372, 0.034266647, 0.0143373981, 0.00639683846, 0.00402493961, 0.00547259301, -0.0123564, 0.0175838526, -0.0106801689, 0.00942134, 0.0227649268, 0.0215060972, 0.015755238, -0.0140061276, -0.00598937552, 0.00604900392, 0.0156889837, 0.00986524299, -0.00688380655, -0.00226423563, -0.00533014629, -0.00375329773, -0.0202472694, -0.0106536672, 0.0132905832, -0.00377648673, 0.015847994, 0.0129063092, 0.0360157564, -0.00776498672, -0.00687718112, -0.00491605792, -0.0202075168, -0.00234042783, 0.0291783288, 0.0015114228, -0.0181006342, 0.012084757, 0.0207242984, -0.0239840038, 0.00811613351, 0.0175706018, 0.00760597643, 0.000644735701, -0.00958697591, 0.00440921402, 0.011283082, -0.0151191978, -0.00684405398, -0.0168815572, 0.0262498949, 0.0100441296, 0.00820888951, -0.00748671917, -0.0115480991, -0.00294996612, -0.010713296, 0.0152252037, -0.0110246912, 0.0263691526, -0.0146686696, -0.00113874325, -0.00630076975, 0.000868757546, -0.00166463561, 0.00558191212, 0.00722170249, 0.0123829013, 0.0251765773, 0.0208038036, -0.0128864329, -0.00644652918, 0.0137278605, -0.00640677661, 0.0268726833, -0.00408788119, -0.0118462425, -0.0232022032, 0.0166165419, -0.0102097644, -0.00339552527, -0.0441517681, 0.0040680049, -0.000602084619, 0.00662872801, -0.00137725822, 0.0172393303, -0.00872567203, -0.0108391792, -0.0271642022, -0.000228369783, -0.00378642487, -0.00452184584, 0.0113360854, 0.000716373033, 0.0138338665, -0.0184451565, 0.00734758563, 0.00829502, 0.0239840038, -0.00558191212, 0.0107530486, 0.0072482042, 0.0292048305, 0.0211483259, 0.00133502111, -0.0238117427, -0.0039984379, -0.00857328717, 0.00553553458, 0.0140193785, -0.00244974717, -0.0121377604, 0.0120450044, -0.0155829769, -0.0190149415, -0.00786436815, -0.00676454883, 0.00114619685, 0.0194522198, -0.00918282568, -0.0280387569, 0.029734863, -0.0174778458, -0.0126942955, -0.0120648807, -0.00236692955, -0.0271377, -0.0221818909, -0.00380630093, 0.00372017059, -0.00789749529, 0.0435422286, 0.00543946587, 0.00666848058, 0.0069103078, 0.0233347118, -3.57668905e-05, 0.00180211291, 0.00753309717, -1.46095581e-05, 0.0171333235, 0.0116209779, -0.00491274521, 0.00458478741, -0.0270449445, 0.00321663916, -0.000465849502, -0.00302118924, 0.0112035768, -0.00269820029, 0.0115878507, 0.0140193785, -0.0112963328, -0.00525395432, 0.00141038524, 0.0218108669, 0.00206878595, -0.00625107903, 0.00298640598, 0.0244742837, 0.0186836701, -0.00318848109, 0.0227384251, 0.0250705704, -0.0145494118, -0.000672065536, -0.00345184142, -0.00760597643, 0.0119920019, -0.0249778144, -0.0159672499, -0.0010832554, -0.00689705741, 0.0108921826, -0.0253620893, 0.00254912837, 0.0307949297, -0.0116938576, 0.0247923043, 0.00348828104, -0.00721507706, 0.0208170544, -0.0145891644, 0.00728795677, 0.013211078, -0.000280130829, 0.0342401452, -0.00330939493, 0.000650118862, 0.00974598527, -0.0191872027, -0.00963997934, 0.0193594638, 0.00606888, -0.0153312106, 0.0118528679, -0.0193859655, 0.00795712322, 0.014536161, 0.0194787215, -0.00271145115, 0.0183258988, 0.0175043475, 0.00204890966, 0.00765235443, 0.0137411114, 0.000667510554, 0.00669498183, 0.0242755208, 0.00733433478, 0.00565479184, -0.0161262602, -0.00762585271, 0.0232419558, -0.00818901323, -0.0190149415, 0.00557197398, 0.00870579574, 0.016510535, -0.0103091458, -0.0289133117, 0.0245802905, 0.0143904015, 0.00735421106, 0.0130586931, -0.0149469366, -0.00753309717, 0.0158744939, -0.00516782375, 0.00959360134, -0.0295758527, -0.0193727147, 0.0278797466, 0.00668504369, 0.00642002746, -0.00939483847, -0.000286549213, -0.00401500147, 0.025481347, -0.0192004535, -0.0286217928, 0.0207905527, 0.00964660477, -0.0145891644, 0.00423032744, -0.0074933446, 0.0123431487, 0.00797037408, -0.0109981894, 0.0207242984, -0.000395868556, 0.00586349238, 0.0110048149, -0.00854678545, 0.0320140049, 1.323789e-05, -0.0190414432, 0.0136086028, -0.0119257476, -0.0263824034, -0.0106404172, 0.0182861462, -0.00738733774, -0.0102892695, 0.0287012979, -0.00816913694, 0.0256933607, -0.00246465439, -0.0264619086, -0.00403819047, -0.00804987922, 0.0070494418, 0.00120085652, -0.00704281637, -0.015291458, -0.0111108208, 0.00931533333, 0.00874554832, 0.00537321158, -0.0254018418, 0.00477361167, -0.00535002258, 0.00289696269, -0.00461791456, -0.0353002138, -0.0053168959, -0.00139547803, -0.00760597643, 0.00904369168, -0.00517776189, -0.0194257181, -0.00368373073, -0.0147084221, 0.0337896161, 0.00128533051, -0.00084267, 0.00321995188, 0.00567798084, -0.0283037741, -0.00369035616, -0.0284892861, 0.00844740402, -0.00238514948, -0.00247293618, 0.00761260185, -0.00490612, -0.00255078473, -0.00189321244, -0.00400506333, 0.000376613432, -0.0175573509, 0.00464110356, 0.0151854511, -0.00488955621, -0.0226324182, -0.00294334069, 0.00572104612, -0.00658566272, -0.00610532, 0.0112632057, -0.00562497741, 0.00315204123, 0.0160070024, -0.00137311732, -0.00432308344, 0.00160417869, 0.0252163298, -0.0240502562, 2.4664143e-05, -0.0251898281, 0.00859316345, -0.021227831, 0.0162852705, 0.00522082718, -0.0169345606, -0.00806313, -0.0225926656, -0.0211218242, 0.0246730465, 0.0246995483, 0.0190811958, 0.00178223674, 0.011746861, -0.00973936077, -0.00121245102, -0.00716869906, -0.0221951418, 0.00783786643, 0.00211516372, 0.0112565802, 0.0235864781, -0.0132972086, 0.00587343052, -0.0063140206, 0.00850703288, 0.0151456995, 0.00531358318, -5.4090302e-05, -0.00191971404, -0.00251931418, 0.0069566858, -0.0200485066, -0.0152252037, 0.0218771212, 0.00762585271, -0.0165635385, -0.0234407187, -0.00261041359, -0.0224204045, 0.00583367795, 0.0150264418, -0.00239343126, -0.00628751889, 0.000344521599, -0.00274789101, 0.0112433294, -0.000637282094, 0.013257456, -0.0013739455, -0.00683080312, -0.000108387649, -0.00781136472, -0.00215822901, -0.002111851, -0.0147614246, 0.031695988, 0.00921595283, 0.011839617, -0.0169743132, 0.00846065488, -0.0173718389, -0.011839617, -0.00489949435, -0.00622457778, -0.00897743739, 0.00170770078, -0.0172923338, 0.00258391188, 0.00280420692, -0.00450859498, 0.00777823757, -0.00264354073, -0.00932858419, 0.00815588608, -0.00441583944, 0.00907681882, 0.0247923043, -0.00987186842, 0.00761260185, -0.0288868099, 0.00981224, -0.00632727146, -0.00506844278, -0.00217976165, -0.000648048415, -0.0317754894, 0.00162819575, 0.000749500119, -0.0134628434, -0.00948096905, 0.00770535786, -0.00319841923, -0.0363602787, -0.00322988979, 0.0250043161, 0.0174248423, 0.0244610328, -0.00413425919, 0.0216518566, -0.0134495925, 0.000875383, -0.0103621492, -0.0160600059, -0.0403620303, 0.0152384546, 0.0107000452, 0.00523739075, -0.00671485811, 0.00126379798, -0.00407131761, 0.00844077859, 0.00285058492, 0.00705606723, 0.000397317868, 0.00184849079, 0.0209628139, -0.00519432547, 0.0102760186, 0.00508831907, 0.0072945822, -0.00589993224, 0.00845402945, 0.0167888012, -0.0123829013, 0.00450528227, 0.00730120763, -0.00175739138, 3.11083932e-05, 0.00380630093, 0.00537983701, 0.0104085272, -0.00147415488, -0.00158678694, 0.00262035173, 0.00779811386, 0.0168683063, -0.00495581049, -0.00303775282, 0.00154786266, 6.05086752e-05, -0.00405806676, 0.031510476, -0.00140127528, 0.00408125576, 0.00586349238, 0.00395537307, 0.0117667373, 0.0160070024, -0.00484317867, -0.0092093274, 0.0362807736, 0.00304106553, -0.012084757, -0.0131978272, 0.00215160358, -0.000508914702, -0.00994474813, -0.000578895677, -0.0268726833, -0.00660553901, 0.00495249778, 0.00559847569, 0.00185180351, 0.0028356777, 0.00839440059, -0.0198364928, -0.0351677053, -0.0100905076, -0.0175573509, 0.00580717623, 0.0110776946, -0.0215988532, -0.0164707825, 0.0180608816, -0.0104416544, -0.0190016907, -0.00622457778, -0.0114487177, 0.0307419263, 0.019438969, 0.00837452523, -0.0442842767, -0.0111770751, -0.00141783885, 0.00858653802, 0.000102538652, -0.0307949297, 0.0200617574, -0.00307253632, -0.0101501364, -0.00284892856, 0.00153378362, 0.0126810446, -0.010991564, -0.00631070789, -0.00938821305, 0.00738733774, 0.013873619, -0.0243682768, -0.000431480177, -0.0274822228, 0.0113228345, -0.00229405, 0.030291399, -0.0138206156, -0.0285952911, -0.0067579234, -0.00151556369, -0.00226589199, 0.00535002258, 0.00687718112, 0.0169345606, -0.0179283731, -0.0134694688, 0.0153179597, 0.0172923338, 0.00127290795, 0.00570448255, -0.0119522493, -0.0139928767, -0.00895093568, 0.00621795235, 0.0129063092, -0.000674964162, 0.00456491113, -0.00660553901, -0.00142446428, 0.0109319352, 0.00514794746, -0.00661216443, -0.00328289322, -0.0387189277, -0.026607668, 0.00317688659, 0.00792399701, 0.00946771819, -0.0226721708, -0.0114155905, 0.00654922286, 0.00165055657, -0.0176236052, -0.00651609572, 0.0011172106, -0.00203234609, 0.0306094177, 0.00290358812, 0.00212841458, 0.00312388316, -0.00441583944, -0.0013168013, 0.00277936156, 0.0220096298, 0.0104681561, 0.0228576828, 0.00263360259, 0.00021222033, 0.0189221855, 0.000757367758, 0.00590655766, -0.0201280117, -0.00893768482, -0.00451522041, -0.0144831575, 0.02472605, -0.00283402135, -0.0176501069, -0.00258888095, 0.00345846661, 0.0275617279, -0.00883167889, 0.021426592, 0.0135821011, 0.0232022032, -0.00718195, 0.00702956552, -0.0162720196, -0.0298938733, 0.0278797466, -0.026899185, 0.00406469218, 0.0132375797, -0.0132177034, 0.00795049779, -0.0208700579, 0.00805650465, 0.00809625722, -0.000632727169, -0.0141386362, 0.0120185027, 0.00425682915, 0.00609538192, 0.00701631466, -0.014443405, -0.0127274226, -0.0316694863, 0.00555872312, -0.0117998645, 0.00902381539, -0.00978573784, -0.0152119529, 0.00309738168, -0.00320173195, -0.0088648051, 0.00603575306, -0.0113427108, 0.00389574422, -0.0199557506, -0.0219963789, 0.00146670127, -0.00127373612, -0.000267087045, -0.000538729073, -0.0275087245, 0.00505519193, 0.0172790829, -0.00452515855, 0.0074005886, 0.0138868699, -0.00941471476, -0.00672479626, -0.0060920692, 0.00702294, -0.00519101275, 0.00322160823, 0.00207872409, -0.00419388758, -0.0135953519, -0.0120980078, 0.014151887, 0.00788424443, -0.00699643837, 0.015861243, 0.0329945683, 0.0112168277, -0.0113360854, -0.0181536376, -0.00562829, -0.0199690014, 0.00859316345, -0.0057376097, 0.0117137339, -0.0509361923, 0.0222216416, -0.0125154089, 0.0221818909, -0.00381292636, 0.00598606281, -0.0052705179, 0.00197271747, 0.00320504466, 0.00433302158, -0.0109385606, -0.00349159376, 0.00730120763, 0.0116011016, 0.00650284486, 0.00670160726, -0.0129261846, 0.0082751438, 0.00884492882, 0.00415744819, 0.00481005153, -0.00634052232, -0.00819563866, -0.00202903338, -0.0316694863, 0.00187002344, 0.00389905693, -0.0110246912, 0.00244643446, 0.0150794452, -0.0130851949, -0.0100905076, -0.0287012979, -0.022367401, 0.00832814723, -0.00179383112, -0.00148326484, -0.00515788561, 0.0365722924, -0.0026021318, -0.0150926961, -0.00190977589, 0.00838777516, 0.0231757015, 0.0123961521, -0.0137941148, -0.0183524, -0.00317191752, -0.00396531075, 0.00482330238, 0.000987186912, -0.00610863278, -0.00455166027, -0.00780473929, 0.00893105939, -0.0151456995, 0.0209230613, 0.00908344425, -0.00302781467, 0.0040216269, -0.00286217942, 0.000549495395, -0.00810950808, 0.00589993224, 0.00442909, 0.0137013588, -0.019544974, 0.0112565802, -0.00603244035, 0.00936833676, 0.0371553265, -0.0226324182, 0.00613844721, -0.0390369445, -0.00368041825, 0.0123298978, 0.00567798084, -0.00340877613, 0.0096068522, -0.0347171761, -0.014443405, 0.0121377604, -0.00997125, -0.000986358733, -0.00683742855, 0.00252759596, -0.0133303357, 0.0159672499, 0.0154637191, 0.00181702012, -0.000356323115, -0.0112234531, 0.00531027047, 0.00856003631, 0.019067945, 0.0066883564, -0.0109186843, -0.0289133117, -0.0131978272, -0.0385864191, -0.000782213057, 0.0015958969, 0.0195847265, 0.0130918203, 0.0241032597, 0.00797037408, 0.00816913694, 0.00624114089, 0.000867101189, -0.00781799, -0.00881842803, 0.00999775156, -0.0308214314, -0.000963169732, -0.0307419263, -0.0105145341, -0.0198762454, 0.00271973293, 0.00899731368, -0.00251103239, -0.0125684123, 0.000334169366, 0.0277472381, -0.0328885615, 0.00455166027, 0.0026667295, -0.0181138851, -0.000268950447, 0.0023569914, -0.0034253397, 0.0245537888, -0.0185114108, -0.00368041825, 0.00498231221, -0.0166297927, -0.00343527785, -0.0193992164, 0.00246631075, -0.00550903287, 0.00405475404, 0.00848715659, -0.00301622017, -0.00398518704, -0.00550572, -0.00233048969, -0.00673142169, 0.00153792452, 0.0211880784, -0.00188989972, -0.0215723515, -0.019253457, 0.00295659155, 0.00468416838, 0.00167871453, -0.00578398723, 0.0242755208, 0.00611525821, -0.00263857166, -0.00633058418, -0.025388591, 0.00510488218, 0.0147481738, -0.00185014715, 0.00898406282, -0.00943459105, -0.0237057358, -0.0166695453, -0.0215458497, 0.000622789, 0.000521337381, 0.0111240717, -0.0086726686, 0.000696082658, 0.0230829474, -0.0111571988, 0.0148011772, 0.0106404172, 0.000327336922, -0.00471398281, 0.0166430436, 0.00276114186, -0.0258391183, 0.00268660579, 0.00245140353, 0.00658235, 0.00499887578, 0.0203532763, 0.0101170093, 0.00743371574, 0.0266739223, -0.013688108, 0.00520757632, -0.00557197398, 0.034637671, 0.0250838213, -0.00414419733, -0.0082287658, -0.00126959523, 0.00123398355, -0.014244643, 0.00848715659, 0.000147829574, 0.0374468453, 0.00378642487, -0.00580386352, -0.0234009661, 0.0121642621, 0.0233479626, 0.00279426877, -0.00693018408, 0.00413094647, -0.00903706625, -0.0128996838, 0.0164045282, -0.00116358849, 0.0203002729, -0.00236196048, 0.0312984623, 0.00125882891, 0.00931533333, -0.00519101275, 0.0228974354, 0.0128003024, -0.00147415488, -0.00897743739, -0.00661547715, -0.0169080589, -0.00170438807, 0.0229106862, 0.000562746194, 0.0113824634, 0.0177561119, 0.014059131, 0.0190414432, 0.0179416239, -0.00854016, 0.00398187432, 0.00728795677, -0.0088648051, -0.00208038045, -0.0242887717, -0.0146024153, -0.0414751, -0.00645315461, 0.0241297614, 0.000719685748, -0.00335411634, -0.000213255553, -0.00432308344, -0.0166165419, -0.00385599164, 0.0156757329, 0.0113427108, 0.000274540653, 0.00298474962, 0.0118462425, -0.0110578183, -0.0197437368, -0.0164972842, 0.0229901914, -0.00443902798, 0.00280751963, -0.000824864197, 0.0134562179, -0.00547590572, 0.00752647175, 0.0167755503, 0.00746684289, 0.0106006647, -0.00422370201, -0.0253620893, -0.00519432547, -0.0153709631, 0.00296321698]
13 Nov, 2020
multimap equal_range() in C++ STL 13 Nov, 2020 The multimap::equal_range() is a built-in function in C++ STL which returns an iterator of pairs. The pair refers to the bounds of a range that includes all the elements in the container which have a key equivalent to k. If there are no matches with key K, the range returned is of length 0 with both iterators pointing to the first element that has a key considered to go after k according to the container’s internal comparison object (key_comp). Syntax: iterator multimap_name.equal_range(key) Parameters: This function accepts a single mandatory parameter key which specifies the element whose range in the container is to be returned. Return Value: The function returns an iterator of pairs. The pair refers to the bounds of a range that includes all the elements in the container which have a key equivalent to k. If there are no matches with key K, the range returned is of length 0 with both iterators pointing to the first element that has a key considered to go after k according to the container’s internal comparison object (key_comp). Program below illustrate the above method: C++ // C++ program to illustrate the // multimap::equal_range() function #include <bits/stdc++.h> using namespace std; int main() { // initialize container multimap<int, int> mp; // insert elements in random order mp.insert({ 2, 30 }); mp.insert({ 1, 40 }); mp.insert({ 3, 60 }); mp.insert({ 1, 20 }); mp.insert({ 5, 50 }); // Stores the range of key 1 auto it = mp.equal_range(1); cout << "The multimap elements of key 1 is : \n"; cout << "KEY\tELEMENT\n"; // Prints all the elements of key 1 for (auto itr = it.first; itr != it.second; ++itr) { cout << itr->first << '\t' << itr->second << '\n'; } return 0; } Output: The multimap elements of key 1 is : KEY ELEMENT 1 40 1 20 Learn C++ Online – Master everything from basics to advanced concepts. Apply your knowledge with practical exercises and boost your skills. Take the Three 90 Challenge: finish 90% in 90 days for a 90% refund. Start now and level up your C++ programming!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum/Algorithm for Dynamic Time out timer Calculation/Difference between Round trip time (RTT) and Time to live (TTL)/Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms/Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm/Round Robin Scheduling Algorithm with Different Arrival Time/Selfish Round Robin CPU Scheduling/Find the order of execution of given N processes in Round Robin Scheduling/Calculate server loads using Round Robin Scheduling/set::lower_bound() Function in C++ STL/Implementation of lower_bound() and upper_bound() in List of Pairs in C++/Difference between std::set::lower_bound and std::lower_bound in C++/Difference between std::set vs std::vector in C++ STL/std::minmax() and std::minmax_element() in C++ STL/std::rotate vs std::rotate_copy in C++ STL/std::bitset::to_ullong and std::bitset::to_ulong in C++ STL/std::upper_bound and std::lower_bound for Vector in C++ STL/std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++/std::string::append vs std::string::push_back() vs Operator += in C++/Vector push_back() in C++ STL/vector :: cbegin() and vector :: cend() in C++ STL/unordered_multiset cend() function in C++ STL/unordered_multiset bucket() function in C++ STL/unordered_multiset emplace_hint() function in C++ STL/unordered_multiset end() function in C++ STL/unordered_multiset size() in C++ STL/unordered_multiset emplace() function in C++ STL/unordered_multiset find() function in C++STL/unordered_multiset erase() function in C++ STL/unordered_multiset clear() function in C++ STL/unordered_multiset swap() function in C++ STL/unordered_multiset bucket_size() function in C++ STL/unordered_multiset bucket_count() function in C++ STL/unordered_set bucket_count() function in C++ STL/unordered_set cbegin() function in C++ STL/array::cbegin() and array::cend() in C++ STL/array::rbegin() and array::rend() in C++ STL/multimap rbegin in C++ STL/vector rbegin() and rend() Functions in C++ STL/multiset rbegin() and rend() function in C++ STL/map rbegin() function in C++ STL/map upper_bound() function in C++ STL/Set upper_bound() in C++ STL/multimap upper_bound() function in C++ STL/multimap empty() function in C++ STL/multimap value_comp() function in C++ STL/multimap swap() function in C++ STL/multimap::swap() in C++ STL/multimap equal_range() in C++ STL
https://www.geeksforgeeks.org/multimap-equal_range-in-c-stl?ref=asr10
PHP
multimap equal_range() in C++ STL
unordered_multiset clear() function in C++ STL, What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, jQWidgets jqxTreeMap width Property, Round Robin Scheduling Algorithm with Different Arrival Time, Difference between Flow and TypeScript, unordered_multiset emplace() function in C++ STL, jQWidgets jqxTree destroy() Method, unordered_set bucket_count() function in C++ STL, jQWidgets jqxTree collapseAll() Method, Find the order of execution of given N processes in Round Robin Scheduling, jQWidgets jqxScrollView buttonsOffset Property, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Vector push_back() in C++ STL, jQWidgets jqxListBox enableHover Property, Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm, std::rotate vs std::rotate_copy in C++ STL, Selfish Round Robin CPU Scheduling, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxSlider buttonsPosition Property, std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++, std::upper_bound and std::lower_bound for Vector in C++ STL, Difference between Round trip time (RTT) and Time to live (TTL), jQWidgets jqxSlider rtl Property, Difference between std::set::lower_bound and std::lower_bound in C++, jQWidgets jqxTooltip opacity Property, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, unordered_multiset erase() function in C++ STL, jQWidgets jqxToolBar height Property, PHP, std::minmax() and std::minmax_element() in C++ STL, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, map rbegin() function in C++ STL, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, map upper_bound() function in C++ STL, Node.js date-and-time Date.transform() Method, unordered_multiset size() in C++ STL, TypeScript Optional Parameters, jQWidgets jqxToolBar theme Property, Difference between std::set vs std::vector in C++ STL, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, Steps to Diagnose and Resolve a Slow Network, How to use Optional Chaining with Arrays and Functions in TypeScript ?, Calculate server loads using Round Robin Scheduling, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, jQWidgets jqxScrollView showButtons Property, Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms, jQWidgets jqxScrollView disabled Property, jQWidgets jqxSplitter destroy() Method, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, set::lower_bound() Function in C++ STL, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, jQWidgets jqxTree collapseItem() Method, multimap upper_bound() function in C++ STL, std::string::append vs std::string::push_back() vs Operator += in C++, unordered_multiset swap() function in C++ STL, unordered_multiset cend() function in C++ STL, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), Set upper_bound() in C++ STL, jQWidgets jqxSortable opacity Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, multimap rbegin in C++ STL, vector :: cbegin() and vector :: cend() in C++ STL, multimap swap() function in C++ STL, jQWidgets jqxSlider height Property, jQWidgets jqxSwitchButton onLabel Property, unordered_multiset bucket_size() function in C++ STL, unordered_set cbegin() function in C++ STL, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, jQWidgets jqxToolBar tools Property, multimap empty() function in C++ STL, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTree width Property, multimap::swap() in C++ STL, multimap equal_range() in C++ STL, Implementation of lower_bound() and upper_bound() in List of Pairs in C++, jQWidgets jqxTree clear() Method, TLS Handshake?, multiset rbegin() and rend() function in C++ STL, Algorithm for Dynamic Time out timer Calculation, Adhoc TCP, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, jQWidgets jqxTabs position Property, Differences between Wireless Adhoc Network and Wireless Sensor Network, jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, std::bitset::to_ullong and std::bitset::to_ulong in C++ STL, unordered_multiset emplace_hint() function in C++ STL, unordered_multiset bucket_count() function in C++ STL, unordered_multiset find() function in C++STL, unordered_multiset bucket() function in C++ STL, Impact of Three-way Handshake and Slow Start Algorithm, array::rbegin() and array::rend() in C++ STL, multimap value_comp() function in C++ STL, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, vector rbegin() and rend() Functions in C++ STL, array::cbegin() and array::cend() in C++ STL, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, unordered_multiset end() function in C++ STL, How to Sort an Array Having Optional Properties in TypeScript ?
GeeksforGeeks
[-0.0120617291, 0.0221668072, -0.0102273682, -0.00500426628, -0.0194506645, -0.0291953068, -0.039647948, 0.0336235203, -0.0368159525, 0.0088692978, -0.0429433621, -0.00918467902, 0.0124286013, -0.0381032228, -0.0286289081, -0.0296329781, 0.00428017601, 0.0227589514, -0.0259771291, -0.0352197364, -0.0306627955, -0.00430592149, -0.031641122, 0.0318213403, -0.0340611897, -0.00731169945, -0.0285259262, -0.0188713931, 0.00494312076, 0.00407099444, 0.00365263154, -0.00754340831, -0.00891435146, 0.007234463, -0.0399826393, -0.00126957102, 0.0422739796, 0.00158253883, -0.0267237462, -0.0111735128, -5.01583127e-05, 0.00384894037, 0.0190258659, 0.00618855562, -0.00733744493, 0.0365070067, 0.00875987951, -0.0165156871, -0.00640739128, -0.00871482491, 0.0332630835, 0.00229295157, 0.0187040474, 0.0102595501, 0.0231193881, 0.039647948, 0.0245611314, 0.0366872251, 0.0190258659, -0.0456723757, -0.000681449077, 0.000809773919, 0.0120552927, -0.0334175564, 0.0103947138, -0.0247413497, -0.0263118204, 0.0349365361, -0.00459877588, -0.0124543468, -0.0156532153, 0.0338294841, 0.00436706701, -0.00413214, -0.0203775, -0.00780729856, -0.0426086709, -0.00222376059, -0.0244581494, 0.0317183584, -0.0339582078, 0.0132331457, -0.00924904272, -0.03334032, 0.0392360203, -0.00863758847, 0.0166315418, -0.0294012707, 0.0376398042, 0.0168761238, -0.0346275903, 0.00123095291, -0.014468926, 0.0148808528, 0.0142629631, 0.0291953068, 0.0472943373, 0.00726664485, -0.040652018, 0.063179262, -0.0229520425, -0.0247670952, -0.000612660544, 0.0131559102, 0.036841698, 0.0133361276, 0.0133361276, -0.00684828172, -0.0218836069, -0.00683540897, 0.0224628802, 0.00879206136, -0.0149323437, 0.0461357944, 0.000281590532, -0.00929409638, -0.0163097233, -0.0114180939, 0.00771719, 0.00569295604, -0.0323362462, 0.0256166942, 0.0157175791, 0.000440085772, -0.0456723757, 0.0119330026, 0.00988624152, 0.0297359601, 0.00255040568, -0.0119265663, 0.0213944446, -0.012615256, -0.0344731174, -0.0570003614, -0.0304310862, 0.0255652033, 0.0321817771, 0.00796177145, -0.00707999058, -0.0118622025, -0.0568458885, 0.0105234403, 0.00780729856, 0.0124479104, -0.0145590352, -0.0469853915, -0.00184884295, 0.0383606777, -0.0145590352, -0.0284229442, -0.0324649736, 0.00317795039, 0.0379744954, -0.0176742319, 0.00549986539, -0.0166057963, -0.0132846367, 0.00195504283, 0.0114502758, -0.031589631, 0.0393390022, -0.00969315, 0.0295557436, 0.0275218543, -0.00296233245, 0.0501263328, 0.00498173898, -0.00420615822, -0.0545802899, 0.0463160127, 0.0473200828, -0.00578306522, 0.00418684911, -0.0271099284, -0.00803900789, -0.0143788178, -0.00887573324, 0.0066037, -0.0175583772, 0.0124672195, 0.0130336192, 0.00153587526, -0.00725377211, 0.0111027127, 0.0359148607, -0.0146105262, 0.0512333885, 0.000201035524, 0.0480924472, -0.0194506645, -0.0183307398, 0.025282003, 0.0244967677, 0.0359406061, 0.0512591302, 0.0227846969, 0.00817417074, 0.01199093, 0.0231580064, 0.0261959657, -0.00550308358, -0.0177128501, 0.00251822383, 0.00656508235, 0.0246126223, -0.00221249717, -0.0237630233, 0.0167860147, 0.00108774402, -0.0343701355, -0.0500490963, 0.0115661304, -0.00658760965, 0.00168793416, 0.00155679334, -0.00586995576, -0.0163998324, 0.0383349322, 0.0281139985, -0.0361208245, 0.0146748899, -0.0180475395, 0.0428918712, -0.0397509299, -0.0193348099, 0.0179703031, 0.00101613952, 0.0276248362, -0.00202101539, -0.0133747458, -0.00403881306, 0.0453376845, -0.0143401995, -0.00968027767, -0.00482083, -0.00190516107, -0.0393904932, -0.0265177824, 0.00542584714, 0.0391587839, 0.0006022015, -0.0200170651, 0.00101131224, 0.0266465098, 0.0508214608, 0.0212657172, 0.000705183134, 0.005094375, 0.00421903096, -0.0113472939, 0.0341641717, 0.0209052805, 0.018626811, -0.00393583113, -0.0297359601, 0.0169147421, -0.00175229763, -0.0213558264, -0.0333660655, -0.0408579819, -0.0152927795, 0.0191288479, -0.0157433245, -0.00575410156, 0.0326194465, 0.0235441867, 0.0304310862, 0.000729721738, -0.0419907793, -0.0188199021, -0.000734549, -0.0114695849, 0.00977038685, -0.0213944446, 0.0313064307, -0.00125106657, -0.020931026, 0.0157175791, 0.00349172275, -0.0546317808, 0.0221410617, -0.0132717639, -0.0231322609, -0.014417435, 0.0175583772, -0.00813555252, -0.00347563182, -0.0120231118, -0.0139025273, -0.00179735222, -0.0105620585, -0.00326162297, -0.0282942168, -0.0162453596, 0.0357861333, 0.0418620519, 0.0223985165, -0.0213558264, -0.0542198569, 0.0409867093, -0.00338552287, 0.00608879188, 0.00898515154, -0.0509244427, 0.0371248946, -0.0124479104, -0.0218964797, 0.0113537302, 0.0056060655, -0.0172623042, -0.0117914025, -0.0213172082, -0.0300706513, 0.0235441867, 0.0205705911, -0.00848311558, 0.0369189344, 0.00567364693, 0.0165671781, 0.0244581494, 0.0201586634, -0.00785878953, 0.00201940653, 0.0150095802, 0.0132846367, -0.0565369427, -0.0103818411, 0.0333145745, -0.0266207643, -0.0555071272, -0.0348850451, 0.0127439834, -0.0111799492, -0.0170820858, -0.00455372129, -0.0204804819, 0.0125380196, -0.00885642506, 0.0245225132, 0.0314609036, 0.00751122646, -0.0219093524, -0.002265597, 0.0201586634, 0.014365945, -0.0128984554, -0.00991842337, -0.0178930666, 0.0147778718, 0.0439731777, 0.000687885447, 0.00478221197, -0.006394519, 0.00730526308, -0.0134262368, -0.043200817, -0.0423769616, -0.0174039043, 0.0159879066, 0.0200943016, -0.0221024435, 0.0240590945, -0.0181633942, 0.0188713931, -0.0381804593, -0.00865046121, -0.0170048494, 0.0139025273, 0.0193476826, -0.0140956175, 0.0477320105, -0.0309974868, 0.0203002635, 0.0716752484, -0.0388240926, 0.0086311521, 0.0195536464, 0.0268267281, -0.00808406156, -0.00245064218, -0.00763351703, 0.0586480685, -0.0160522703, -0.0195407737, 0.0392102748, 0.0163998324, 0.00479830289, 0.0023653605, 0.000370492693, -0.0220638253, -0.00803900789, 0.0250631664, 0.00160426146, -0.0275733452, -0.00285452348, 0.00544515625, -0.0445653237, -0.0256424379, -0.00644922769, -0.0468824096, 0.0139926365, 0.0116498023, -0.0204289909, -0.0105363131, -0.0134004913, -0.0358633697, 0.0202873908, -0.0223470256, 0.00469532097, 0.0330313742, -0.00329219573, 0.0206864458, -0.0327481739, 0.00689977268, 0.0209438987, -0.000442097138, -0.0190387387, 0.0679164156, -0.00482083, 0.010137259, -0.0138124181, -0.0411154367, -0.0066745, -0.0253077485, -0.018626811, 0.03334032, -0.00093407603, 0.0253206212, 0.00570582878, -0.0159621611, -0.0129821282, 0.0226044785, 0.00805188064, 0.0294785071, 0.0217677522, -0.0149838347, -0.0248314589, 0.00286900532, -0.0259513836, 0.00100889872, 0.00429626694, 0.041450128, 0.0307915229, -0.017519759, 0.0100471508, 0.0245482586, -0.0104075866, 0.00647819135, 0.0218063705, 0.0241492037, -0.0179316849, 0.0377685316, -0.0136064542, 0.00872126129, 0.0618919916, -0.0233382229, 0.0391845293, 0.0057219197, 0.0503322966, 0.0342929, -0.014069872, 0.00747904461, 0.0218578614, -0.00474359374, -0.0202230271, 0.016618669, -0.00464704819, 0.0118750753, 0.006758173, -0.0223212801, -0.00865689758, -0.0375883132, -0.0122612566, 0.021729134, 0.034447372, 0.0217677522, -0.0149967074, -0.00537435664, -0.00964809675, 0.0204804819, 0.0478864834, -0.0156017244, -0.0340354443, 0.0339324623, -0.00450866669, -0.0210726261, 0.0281139985, -0.00572835607, -0.0205448456, 0.0153828887, 0.00868907943, 0.0130271828, 0.00648462772, -0.0265692733, -0.00805188064, 0.014365945, -0.0525464043, 0.00158253883, -0.021574663, -0.0197982285, 0.0219093524, 0.000242570139, -0.0191288479, 0.0267237462, 0.018922884, -0.0285516717, -0.0110512218, 0.00360757695, -0.0254622214, -0.0223341528, 0.00331794098, 0.0282684714, 0.0440504141, -0.00415144907, 0.00663588196, -0.00823209807, 0.0228361879, -0.0270069465, -0.0173781589, -0.0277278181, -0.0065329005, 0.0294270162, 0.0198883377, 0.0239046235, 0.0191288479, 0.0159879066, 0.00216100621, 0.017519759, 0.0159492884, -0.00490772072, -0.0186396837, -0.00229777885, 0.000924421474, 0.00094694877, -0.0344216265, -0.0510531701, -0.0201071724, 0.0251404028, -0.018369358, -0.018021794, -0.022076698, -0.00197757012, 0.00616924651, 0.0244066585, -0.010066459, 0.0149838347, 0.0205963366, -0.0179059394, -0.00377492234, 0.0358118787, -0.000170060564, -0.0250889119, 0.00754984468, -0.0187941566, -0.0051587387, -0.00104590773, 0.00955155119, -0.0316668674, -0.0113537302, -0.0182277579, -0.00412892178, 0.0151640531, 0.0192060843, 0.0208023, -0.0022221515, -0.0286031626, -0.0110319126, 0.0137738, -0.021574663, -0.0013460028, -0.000199225309, -0.0288606156, 0.0256295651, 0.00418363092, -0.0223084074, 0.032284759, 0.00847024377, 0.0417848192, -0.0210983716, -0.0249601845, -0.0100471508, -0.00459555769, -0.00852173381, 0.0105491858, 0.00876631588, -0.0365842432, -0.0188971385, -0.0249086935, -0.0226559695, 0.0346275903, -0.0182277579, 0.0227460787, -0.0139540182, -0.0162324868, 0.0251661483, 0.00102338044, 0.00769144436, -0.0182792488, -0.0121711474, 0.00246512401, 0.0302766152, -0.0135420915, 0.0290923249, -0.0102852955, -0.00371377682, 0.00599224679, 0.0297359601, 0.0215103, 0.0456466302, -0.00722802663, -0.0576182492, 0.0348078087, -0.0013460028, 0.00283843256, 0.0218063705, -0.00332437735, 0.00648140954, 0.028139744, -0.00861184299, -0.0121775838, -0.0325679556, -0.0356831513, -0.000442097138, 0.0308430139, 0.00131703913, 0.010066459, -0.0447197966, -0.000319806393, 0.0050493204, 0.00633337349, 0.013349, -0.0166057963, 0.0158977974, -0.0192060843, 0.0238660052, -0.0177643392, -0.0143530723, 0.0296329781, -0.016721651, 0.0282684714, -0.0249086935, -0.0004296267, 0.0255008396, 0.0121260928, -0.00234122411, -0.018626811, -0.00716366339, 0.0225658603, 0.000427615334, -0.00864402484, -0.0277535636, 0.0144946715, 0.0242006946, -0.00133634824, -0.0250760391, -0.0198883377, -0.0116755478, 0.0141857266, -0.0194506645, 0.0221410617, -0.0217420068, -0.0207894277, 0.0100728953, -0.0267237462, 0.00225755153, -0.00118992117, -0.0230035335, -0.0252433848, 0.00507506588, -0.00941638742, -0.0301736332, -0.0210468806, -0.0104912585, 0.0037395223, 0.0166830327, -0.00668093655, 0.00966096856, 0.0272644, -0.00459555769, -0.00679035485, 0.00263407826, -0.0193863, 0.0344216265, -0.00986049604, 0.0284229442, -0.0154729979, 0.0355544239, -0.00647497317, 0.0121840201, -0.0472428463, 0.00176838855, -0.0350137725, -0.0180089213, 0.0396736935, -0.013567837, 0.0318470858, -0.0140956175, 0.0114052212, -0.0350652635, -0.0238145143, 0.00606626458, 0.00468244823, -0.00496243, 0.00149564806, -0.000960626, 0.0350652635, -0.00114084396, 0.00557388365, -0.00289636, -0.00142726174, 0.0076399534, 0.0113408575, -0.0190387387, 0.0162968505, 0.00925547909, -0.0051587387, 0.00362366787, 0.00141599809, -0.00409995811, -0.0338809751, 0.0178158302, 0.0298131965, 0.0129628191, 0.00273706, 0.0247542225, -0.00922329724, -0.0108259497, -0.0375110768, -0.0142372176, -0.00544193806, -0.0470368825, -0.00834795274, -0.00748548098, -0.00699631823, -0.00738249952, 0.0263118204, 0.0257454198, -0.0236986596, -0.00914606079, 0.00318277767, 0.0199398287, -0.0162839778, 0.0115210759, 0.0228748061, 0.00394870387, -0.0134519823, 0.00247477856, -0.0392102748, -0.0319500677, 0.00820635259, -0.001758734, 0.0117527843, -0.0176484864, -0.0253463667, 0.00436063064, 0.00403881306, 0.0425571799, -0.0192060843, 0.0170820858, -0.0177128501, 0.0342929, -0.00515230233, 0.0342929, 0.0191417206, -0.00122532109, -0.00152139342, -0.00459555769, 0.0220509525, 0.0193090662, -0.00928122364, -0.0422739796, -0.0188842658, 0.0109289307, 0.00727308122, -0.0139025273, -0.0144431805, -0.024676986, 0.01576907, 0.00345632271, 0.0300449058, -0.00118107116, 0.0538079292, 0.0130207464, 0.00174586137, -0.0184465945, -0.0114180939, 0.0225529876, 0.0378200226, 0.0398281664, -0.0225916058, 0.00992486, -0.0148036163, 0.0104590766, 0.0178158302, -0.014018381, -0.0206349548, -0.0209953897, -0.0456981212, -0.0390558019, -0.0381032228, 0.019270448, -0.0113086756, -0.000486749341, -0.015370016, -0.0145590352, -0.0187426656, 0.0239046235, 0.0497401506, 0.0158334337, 0.0458783396, -0.00761420792, 0.0344731174, -0.000375118834, 0.00857966114, 0.0190902296, -0.0241620764, -0.000233720144, -0.00124141201, 0.00386181311, 0.0127246743, 0.0236600414, -0.0423254706, 0.00610166462, -0.0170434676, -0.00965453312, -0.00679679122, 0.0369704254, 0.0384379141, 0.0404460542, -0.0401371121, -0.0168889966, 0.0227846969, -0.00858609751, 0.00641060947, 0.00441212161, -0.00968027767, 0.0111348946, -0.00999566, 0.00225916062, 0.0317698494, -0.00933915097, -0.00632371893, -0.0190516114, 0.00600190135, 0.0245482586, -0.0184465945, 0.00546768354, 0.0249601845, 0.00220927899, 0.00893366057, 0.00792315323, 0.01847234, -0.0108195134, -0.00717009977, 0.00868907943, 0.00287865987, -0.0264405459, -0.0401371121, 0.0229391698, 0.019270448, 0.0135292187, 0.0127182379, -0.0153442705, 0.0183049943, 0.0281654894, 0.0269297101, -0.0162839778, -0.0358376242, 0.0308687594, -0.024329422, -0.00458268495, 0.0157047063, -0.00553204725, -0.0117399115, 0.00430592149, -0.022578733, 0.0108388225, 0.0247156043, 0.0101630045, -0.00651359139, 0.0193605553, -0.0363010429, -0.0225401148, -0.0464447401, 0.011038349, 0.00729882671, -0.0251918938, -0.0358118787, 0.00710573606, -0.0122226384, 0.014919471, -0.0205705911, -0.00650715502, -0.0179574303, 0.0148164891, -0.0168632511, 0.0168117601, -0.000231507642, 0.0313836671, -0.0123127475, 0.00566399237, -0.0130400555, -0.0122419475, 0.00400663121, 0.0242264401, 0.0301221423, 0.0546317808, 0.0255137123, 0.0021191698, 0.00586351939, 0.00879206136, 0.0127761653, -0.02873189, -0.0242393129, 0.0200170651, -0.0141213629, -0.0157819428, 0.0236986596, 0.0237501506, 0.0270584375, -0.0126216924, 0.0359663516, 0.0120231118, 0.00757559, -0.0137480544, -0.0392875113, -0.016618669, -0.00953224208, -0.0190001205, -0.00369124976, -0.0134004913, 0.00322783203, 0.0111155855, 0.00535826571, -0.0152026704, -0.0149967074, 0.0121132201, -0.0262217112, -0.0581846498, -0.0143530723, 0.000148237305, 0.0125444559, 0.0131623466, -0.0193863, -0.0146362716, 0.0259127654, -0.0523404405, 0.000996830524, -0.0105041312, 0.0169662312, -0.0149838347, 0.0149323437, -0.00623682793, -0.018369358, -0.0101758773, 0.0239046235, -0.0251275301, 0.00939707831, -0.0393390022, -0.000238748544, 0.0105363131, 0.00773649896, 0.0234154593, -0.0109804217, 0.0198368467, 0.00112877577, -0.00883711595, -0.0506669879, -0.0329283923, 0.000813394377, 0.0167988874, -0.0203131363, 0.00649750046, 0.00205802452, 0.0105813676, 0.0465734638, -0.0382834412, -0.00969958678, 0.00168632506, 0.0143530723, -0.000390606292, 0.011437403, 0.0131687829, 0.0351167545, 0.0079939533, 0.0265950188, -0.0110190399, -0.0101630045, -0.0130336192, 0.0132975094, -0.00270005106, 0.00913962442, -0.0267237462, -0.0175455045, 0.0383091867, 0.0528296, 0.0278308, -0.01667016, 0.00935202371, -0.0212399717, -0.0146233989, -0.00853460655, -0.0343186446, 0.0523404405, -0.00174425228, -0.0155631071, -0.0411411822, 0.0177385956, -0.0158977974, -0.000842358, 0.0105684949, -0.0204804819, 0.0111670764, -0.0401886031, -0.0170434676, 0.0114116576, -0.00304278685, -0.0125895105, 0.039004311, 0.00283360528, -0.028088253, -0.0282684714, -0.045955576, 0.00343057723, -0.00103223044, -0.000160003765, -0.0109997308, -0.0115146395, 0.0110190399, -0.00425764872, 0.0135549642, -0.017223686, 0.0162839778, 0.022128189, 0.00901733339, -0.00229616975, 0.00747904461, -0.0270584375, -0.00888860598, 0.00753697194, 0.0134519823, 0.00677104574, -0.0138896545, 0.017172195, -0.00759489881, -0.00233478774, 0.00215135165, -0.0106650405, 0.0197596103, -0.0129048917, -0.0068869, 0.0123771112, -0.00655220961, 0.0251918938, 0.0158463065, 0.0183564853, 0.0236600414, -0.0195407737, 0.0041450127, 0.00971245952, -0.0225401148, -0.0191932116, 0.0173395406, 0.0108581306, 0.0126538742, 0.0237887688, 0.0157175791, 0.00174264319, 0.0334690474, 0.00169437053, 0.0179574303, -0.0123320566, -0.0133876186, -0.0128147826, -0.0104333321, 0.000173781591, 0.0345246084, -0.00832864363, 0.0118750753, -0.0314351581, -0.0155373616, -0.0246126223, 0.00260833302, 0.0220123343, 0.0138767818, -0.0228361879, 0.00298003247, 0.00743399, -0.0278050546, -0.00953867845, -0.0105620585, 0.00037069383, 0.0328769, 0.00224146061, -0.000805348915, -0.0167345237, 0.020326009, 0.0583906136, -0.00447326666, 0.00878562499, -0.00550630176, 0.0176227409, 0.0202873908, -0.00710573606, 0.0170305949, 0.0329283923, 0.00354643166, 0.0334947929, 0.000491174345, -0.0113730393, 0.0155631071, 0.0199913196, 0.027882291, 0.0500490963, -0.0141985994, 0.000909939699, -0.00120842562, -0.0195021555, 0.0227203332, -0.00585708302, 0.00244420581, 0.000969476, -0.00922973361, 0.0316926129, -0.0185109582, -0.00336943194, 0.0096738413, -0.00931984186, -0.00854104292, 0.0197982285, -0.0185109582, 0.0130593646, 0.0274188723, -0.00492381165, 0.0336750112, 0.00544515625, 0.0274446178, -0.0258870199, 0.0382576957, 0.00633981, 0.00250213314, -0.0317955948, -0.0300963968, 0.00159138883, -0.0124350376, -0.00874700677, -0.0123642385, -0.0141213629, -0.0246641133, 0.0323362462, 0.00778798945, 0.0157433245, -0.000399858574, 0.00212399708, -0.0464447401, -0.000616683275, -0.0244195312, -0.0126731833, -0.0121840201, 0.00532608386, 0.00841231644, 0.0075240992, 0.0185881928, -0.0175583772, -0.0185881928, 0.0276505817, -0.0105684949, -0.00963522401, 0.00691264542, 0.0610166453, -0.0103689684, -0.0421452522, 0.0152026704, -0.00762064429, -0.0326709375, -0.0151125621, 0.0183822308, -0.00265177828, 0.0158334337, 0.00400019484, -0.00761420792, -0.00600511953, 0.00788453501, 0.000790464866, -0.00698988186, -0.00477899378, 0.00784591679, -0.0259256382, 0.00244420581, -0.0183951035, 0.00710573606, 0.00379101327, 0.0141471084, -0.011488894, 0.00984118693, -0.0268009827, -0.0137094362, -0.0160780158, -0.00564146508, 0.016721651, 0.00604373729, 0.00722159026, -0.0553011633, -0.00870838854, -0.00305726868, 0.027238654, 0.016322596, -0.00620786473, 0.0053389566, 0.0123256203, -0.00128727104, -0.00109981222, 0.00783304404, -0.0152541613, -0.00823209807, 0.00072248088, -0.00209020637, -0.0125959469, 0.00744042639, -0.00342092267, 0.0154472524, -0.0051587387, -0.0129370736, 0.00728595397, 1.18041744e-05, 0.0309717413, -0.00811624341, -0.000756271707, -0.0037845769, -0.00975107774, -0.0200814288, 0.00302991411, -0.00888860598, 0.00794246234, 0.0116562387, -0.00913962442, 0.0103560956, 0.0157047063, 0.0128019108, -0.000368280191, -0.030740032, -0.0199655741, -0.0179960486, 0.0221539345, 0.0219479706, 0.00337586831, -0.025230512, -0.0412184186, -0.00760777155, 0.00257132389, -0.0186396837, -0.00361401332, -0.00298325066, 0.024934439, 0.0233510956, -0.00716366339, -0.038901329, 0.000491978892, -0.00316025037, 0.0211112443, 0.0307657775, -0.00311358669, -0.0109353671, -0.00486588432, -0.00784591679, -0.0491222627, 0.0145719079, 0.0176999774, 0.0169404875, 0.00338552287, 0.00924260635, 0.0117270388, 0.0188842658, 0.00570904696, 0.0292725433, 0.00991842337, 0.0442306325, -0.0404460542, -0.0211241171, -0.00796820782, 0.00764639, -0.00314576854, 0.028088253, -0.0292725433, -0.00342735904, -0.0335720293, 0.0168503784, -0.0107229678, -0.00203227904, 0.00618533744, 0.00948718749, 0.0101179499, 0.0351167545, 0.0113987848, -0.0184594672, -0.024432404, 0.0222826619, -0.00924260635, -0.0160007793, -0.00759489881, -0.0086955158, 0.0109353671, -0.01204242, 0.0111091491, 0.01199093, 0.0226430967, 0.00257293298, 0.00130658, -0.0217934977, 0.000390405155, 0.00149645261, -0.00356895896, 0.010240241, 0.0137995454, 0.0125830742, 0.0260929838, 0.017519759, 0.00935202371, 0.0248958208, 0.0111477673, -0.00498817535, -0.0300191604, -0.0139411455, -0.021227099, 0.00894009694, 0.0176227409, -0.0159364156, -0.0323877372, 0.00637521, -0.00922329724, 0.0146105262, -0.00182309758, 0.00095821236, 0.00958373304, -0.0154601252, -0.0290923249, -0.000234323554, 0.0169662312, -0.0136836907, -0.016116634, 0.00915249716, 0.0380517319, -0.00030170416, -0.00587961031, -0.0160780158, -0.000720067241, -0.0092104245, -0.0335462838, -0.0125122741, 0.000565997, -0.00399697665, 0.00344345, 0.00420294, 0.0133361276, 0.00736962678, -0.00134439371, -0.0344988629, 0.00484979339, -0.0104333321, 0.0130014373, 0.0109418035, 0.00149001624, -0.0284744352, -0.0155888516, 0.00623360975, -0.00132749823, -0.0206993185, -0.01204242, -0.00138864364, 0.00350781344, 0.00508150226, 0.0116304932, -0.011366603, -0.0141728539, 0.00520701148, 0.0238016415, -0.00807119, -0.00415144907, 0.0138767818, -0.00241846032, 0.0103818411, -0.00370734045, -0.0192318298, 0.00364619517, 0.0101308227, 0.0120359836, -0.0174167771, -0.00058289239, 0.026981201, -0.00743399, 0.0102917319, 0.0201844089, 0.0188585203, -0.00361401332, -0.00585708302, 0.00774293533, -0.0130400555, -0.0174553953, -0.0148293618, 0.000159199219, 0.0188713931, 0.002265597, -0.0199398287, -0.00800039, 0.0153442705, 0.00100407144, -0.0203646272, -0.0237758961, -0.0176356137, -0.0233382229, 0.0320787951, 0.0121260928, 0.00406134, -0.000982348691, -0.0114245303, -0.00224950607, 0.00865046121, -0.0186654292, -0.0177643392, -0.0211498626, 0.00726664485, -0.0106714768, -0.0298131965, -0.00011504985, 0.0121904565, -0.0199913196, 0.0305598136, 0.0478864834, 0.00790384412, 0.0168246329, 0.00433488516, 0.00429304875, -0.00262281462, -0.0124092931, 0.0481439345, 0.00711217243, -0.00691908179, 0.0100728953, 0.0146620171, -0.022128189, -0.00150127988, 0.0177128501, 0.00125106657, -0.0265950188, 0.00380388577, -0.0170563404, 0.00428017601, -0.0180089213, -0.0148293618, 0.00550952, -0.0249215662, -0.0149580892, -0.0296329781, 0.00406134, 0.00475646649, 0.0252047665, 0.0301993787, -0.00904307887, -0.0298646875, -0.0156017244, -0.00697057275, 0.0244066585, -0.013567837, 0.0312806852, -0.0105298767, 0.0153056523, 0.0132975094, -0.00560928369, 0.0132460184, -0.0196952466, 0.0157304518, 0.0305855591, 0.00532930205, -0.0342929, -0.0198625922, -0.021626154, -0.00715722702, 0.00285935076, -0.0143273268, -0.0114953304, 0.0141985994, -0.0109804217, 0.014919471, -0.0135935824, 0.0112700574, -0.00491737528, 0.0193605553, 0.0256424379, 0.0142887086, 0.0135292187, 0.0173266679, -0.0071186088, 0.00827715266, 0.00330185, -0.0330313742, -0.00146024802, -0.0300706513, 0.00928122364, 0.00708642695, 0.0304053407, 0.00401306758, 0.000975107774, -0.018974375, 0.0111284582, -0.0124028567, 0.0188327748, -0.00187297934, -0.0142243449, 0.0243165493, 0.00338552287, -0.00978969596, 0.0150996894, 0.0116240578, 0.00464383, -0.000849598902, -0.00603408273, 0.0232094973, -0.00428661238, -0.0263246931, -0.013349, -0.0335205384, 0.0150868166, -0.0308172684, -0.0341384262, -0.00991842337, 0.0173266679, -0.00548055628, 0.0141342357, 0.0118107116, 0.0189872477, -4.76692549e-05, 0.0367129706, 0.0125380196, -0.000703976315, -0.00320369564, -0.0138124181, 0.019270448, -0.00736962678, -0.0100149689, 0.00717653614, -0.0026694783, 0.00199527014, 0.0150095802, 0.0224628802, 0.00803257152, 0.0124221649, 0.0042608669, 0.0050718477, -0.0174167771, -0.0229649153, -0.00100970326, -0.000533412909, 0.00511046592, -0.0231966246, 0.00203388813, 0.0128984554, 0.00881780684, 0.0231966246, -0.00732457219, 0.00599868316, -0.0136579452, 0.0205834638, 0.00823209807, -0.00582168298, -0.0108967489, -0.0157175791, 0.0148422346, 0.000890630647, -0.00834795274, -0.000701160461, -0.00852173381, 0.034447372, -0.00243937853, -0.00686759083, 0.00579915615, -0.0124092931, -0.0163869597, 0.00270005106, 0.0279080365, 0.0041031763, 0.0286031626, -0.0278050546, 0.0236214232, -0.0269297101, 0.0172751769, -0.0293240342, -0.0144946715, -0.0161037613, 0.0059471922, -0.014764999, 0.0153571432, -0.00160265237, 0.00127037556, -0.00175551581, 0.0196952466, 0.0182406306, -0.00152300252, -0.0108195134, -0.0136579452, -0.00415144907, 0.0247928407, 0.0135420915, -0.0153442705, 0.0245482586, 0.0063301553, 0.00126957102, -0.00769788073, -0.0165543053, -0.00634624623, 0.0146620171, -0.00647497317, 0.0147907436, -0.0170305949, 0.0147392536, 0.00201136107, -0.032284759, 0.0118042752, -0.0028722235, -0.00478543, 0.0063526826, 0.0216390267, 0.0135807097, 0.0290665794, 0.00807762612, -0.0235956777, 0.0137351817, 0.0165414326, -0.0103496592, 0.0113472939, -0.00123095291, 0.00176677946, -0.00819348, 0.013464855, -0.00719584478, -0.00263729645, 0.0249730572, -0.00253431476, -0.000593351491, -0.00390364928, -0.00184240669, 0.0306113046, 0.00426730327, -0.0219350979, -0.00883711595, 0.0234540775, 0.0105556222, -0.00864402484, -0.0126474379, 0.00949362386, 0.0082256617, -0.00787166227, -0.00775580807, 0.0186010655, 0.0154472524, 0.014018381, -0.0110769672, 0.00793602597, 0.0269554555, 0.00568651967, -0.0188456476, 0.0210340079, 0.0102080591, 0.000106300424, 0.00649750046, 0.00402272213, -0.0129306372, -0.00773649896, -0.0046148668, -0.0112185674, 0.00506862951, 0.0159235429, 0.00621108245, 0.0274703633, 0.00197596103, -0.0101115135, 0.00602442818, 0.0132717639, 0.00957086, 0.00275476, -0.0168246329, -0.000266103045, -0.0239303689, -0.0157433245, 0.0153828887, -0.00807762612, -0.0178415757, -0.00709286332, -0.0123642385, 0.00901089702, 0.00908813346, 0.00640417356, -0.00755628105, -0.0109611126, 0.00753697194, -0.00316990493, -0.0305855591, 0.00291566877, 0.00172494317, 0.0021062973, 0.00342092267, 0.00756915379, -0.0108710034, -0.00637521, 0.00158334337, 9.9411518e-05, -0.0254107304, 0.000996830524, 0.00751766283, -0.0347563177, 0.00838013459, -0.0129563827, 0.000893848832, -0.00621751882, -0.0088049341, -0.0127632925, -0.00556744728, -0.0106907859, -0.00295750517, -0.021780625, 0.00425443053, 0.00515552051, 0.00412570359, -0.0115339486, 0.00181827031, -0.00891435146, -0.0165285598, -0.00697700912, -0.00621430064, -0.00140714808, -0.00551595632, -0.00637842808, -0.00341770449, 0.0117270388, 0.00232674228, -0.0130400555, -9.54139341e-06, 0.0143273268, -0.00614671921, -0.00813555252, -0.0166057963, -0.00992486, -0.0187812839, -0.0226430967, 0.0084638074, 0.00311519578, -0.0109482398, 0.00977038685, 0.016721651, 0.0106006768, -0.00348850456, -0.0250374209, -0.00644922769, -0.0359663516, 0.016322596, -0.0120746018, -0.0293755252, 0.0178287029, 0.0056060655, -0.0157561973, 0.00993129611, -0.00290440535, 0.0152799068, -0.00670668203, 0.00859253388, 0.045260448, 0.00393261295, 0.0135420915, 0.00695126364, -0.00686115446, -0.0131430374, -0.0132975094, 0.0220509525, 0.0146233989, 0.0146362716, 0.0166057963, 0.0228233151, 0.000359027938, -0.00104671228, -0.00103947136, 0.00532608386, -0.0142243449, 0.00241041509, -0.00222376059, -0.0164127052, -0.022128189, -0.00247799675, -0.0119716208, 0.0082256617, 0.0042833942, 0.00258580572, 0.0120939109, 0.0214974266, -0.0168889966, 0.00321656838, 0.0130529283, 0.00656508235, -0.0106328586, 0.0121067837, 0.0074597355, 0.0118815117, -0.00944856927, -0.0273416359, -0.00407421263, -0.00824497081, 0.00975751411, -0.0129950009, -0.0137995454, 0.00295911427, -0.00722159026, 0.0175455045, -0.00949362386, -0.0130851101, -0.0282942168, -0.00225272425, -0.0321045406, 0.0214716811, 0.00696413638, 0.0254107304, -0.00911387894, 0.00384894037, -0.00157207972, -0.00207250635, 0.00354964985, 0.0148036163, -0.00738893589, -0.0049785208, -0.0064685368, 0.00714435428, 0.017519759, -0.00511368411, -0.00479186652, -1.0383651e-05, -2.38471985e-05, 0.0146105262, 0.0149838347, -0.0191545933, -0.000617890095, -0.00021360653, -0.00285613257, -0.00709286332, 0.0208023, -0.00772362622, -0.00111509848, 0.0173137952, -0.016721651, 0.000953385083, 0.0173781589, -0.00624004612, -0.00236857869, 0.00436384883, -0.0105813676, -0.00696413638, 0.00354964985, -0.0118042752, 0.011939439, 0.0216905158, -0.00856035203, -0.018073285, -0.0156145971, -0.00120520755, -0.019772483, 0.0184594672, 0.0157047063, -0.00374917686, -0.00859253388, -0.0199140832, -0.0288606156, 0.0179574303, 0.00347885, 0.03614657, -0.0134262368, -0.0133747458, -0.00780729856, -0.0210468806, -0.0193219371, 0.00360757695, 0.0245740041, -0.00226881518, 0.00108452584, -0.0238660052, -0.000191783271, 0.00352712255, 0.0155244889, 0.0133232549, -0.00499139354, 0.023029279, 0.0171335768, -0.00453119399, 0.0136708179, 0.0159879066, 0.00596006494, 0.0233897138, -0.0119201299, -0.00970602315, 0.0216390267, -0.00888860598, -0.00533252, 0.0156918336, -0.0204161182, 0.00284647802, -0.0242264401, 0.011212131, 0.0135807097, -0.00670668203, -0.010311041, 0.00357217714, 0.00890147872, 0.00984118693, -0.00177482492, -0.00472106645, 0.00332437735, 0.0150353257, -0.00234926958, -0.00334368646, -0.000481519819, 0.0117978388, -0.00617890107, -0.0213558264, 0.0174811408, 0.000288026902, 0.00978326, 0.0117592206, 0.0136965634, -0.0299419239, -0.0058377739, -0.0181633942, 0.0055642291, -0.00252787839, -0.0147006353, -0.0207508095, 0.00225755153, 0.000943730585, -0.0103818411, 0.012441474, 0.00195987, -0.0313579217, -0.00825140718, 0.00575410156, 0.0197209921, -0.00318921404, -0.00835438911, 0.00573801063, 0.0278308, -0.00553526543, 0.013349, -0.0142758358, -0.0036815952, 0.000306129135, 0.00566399237, -0.0188199021, 0.00693195453, 0.0246898588, 0.00946144201, -0.00627544615, 0.0210211352, -0.00622395519, -0.0011311894, -0.0240977127, -0.016065143, -0.020725064, 0.0233897138, -0.00856035203, -0.0340354443, 0.00677104574, 0.00825140718, -0.0297102146, -0.0134777278, -0.0118107116, 0.00278211455, 0.00949362386, 0.0141342357, 0.0146748899, 0.0126538742, 0.000388192653, -0.00580559252, 8.71925e-05, -0.0188070294, 0.0115468213, 0.0148422346, 0.00403881306, -0.00895940606, 0.0139411455, 0.0189100113, -0.00467279367, -0.00209181546, 0.00347885, 0.0224757511, -0.0151383076, 0.0303281061, 0.0245997496, -0.00600511953, -0.0199140832, 0.017172195, 0.00312163215, 0.00621108245, -0.00348850456, -0.00636555534, 0.0109997308, -0.0153828887, -0.0133618731, 0.013220273, -0.00818704348, -0.000159500923, -0.00870195217, -0.012164711, 0.00198883377, 0.0154601252, 0.000552319747, 0.0195150282, -0.000971889647, 0.00899158791, -0.00174425228, -0.0264920369, -0.0109546762, 0.0110447854, -0.00897871517, 0.00652324595, -0.000814601197, 0.021227099, 0.0320530497, -0.0169018693, 0.0192060843, -0.0380774774, -0.0236857869, 0.0183307398, -0.00773006259, 0.0100407144, -0.00673242752, 0.014919471, 0.00056398561, -0.000101372592, -0.012615256, -0.0160136521, -0.00901089702, 0.010864567, 0.0145075442, 0.00877918862, -0.00427373964, 0.0268782191, -0.00128888013, 0.0174940135, 0.0122097656, 0.00243776944, 0.00580559252, -0.00366872246, -0.00952580571, 0.0102788592, 0.0167988874, 0.0256939288, 0.0226559695, 0.00320369564, -0.00510724774, -0.0204418637, 0.0319500677, 0.00360435876, -0.0100471508, 0.00978326, -0.000536228821, -0.00454728492, 0.0101565681, 0.00713791791, 0.0234669503, -0.0149838347, 0.0166057963, -0.00242650579, -0.00809049793, -0.00615959195, -0.0272129085, -0.018974375, -0.0219479706, 0.00548055628, 0.00575731974, 0.000366268825, -0.0338037387, -0.00481117563, 0.000347965455, -0.0061499374, 0.0114116576, -0.0125058377, -0.00210790639, -0.00898515154, 0.00493668439, -0.0160007793, -0.00135163462, 0.000528987963, -0.00135807088, 0.0160007793, -0.0101179499, 0.0237244051, -0.0203517545, 0.00935846, 0.0123320566, -0.00491737528, 0.0051587387, -0.00821278896, 0.0173266679, 0.00139588455, 0.0234283321, 0.00930053275, 0.00243294216, -0.0134906005, 0.0194892827, 0.0231708791, 0.00522953831, -0.00614028284, -0.0191674661, -0.0104397684, 0.018922884, -0.00353034073, -0.0170949586, 0.0307657775, -0.0125058377, -0.00423512189, 0.00183918851, 0.00408386718, 0.0330313742, 0.00127037556, 0.00277246, -0.0045730304, -0.00777511718, 0.00500426628, -0.0130593646, 0.0229520425, -0.00353034073, -0.0273416359, 0.0118428934, 0.00386503129, 0.0283457078, 0.0164127052, -0.00488197524, 0.00193734292, 0.00231226068, 0.00124945748, 0.00648784591, -0.0114116576, -0.00205641543, -0.00962878764, 0.00235087867, -0.0143788178, -0.0227332059, -0.0100214053, -0.00670668203, 0.0239046235, 0.0169018693, -0.0158977974, 0.0102788592, 0.00469532097, -0.00993129611, -0.0074597355, 0.00965453312, 0.0151897976, -0.00172333408, 0.0292982887, 0.0139926365, 0.0272129085, -0.0142114721, 0.00424477598, -0.00442177616, -0.0157047063, 0.00467601186, 0.0235956777, 0.0240590945, -0.0152927795, 0.00881780684, -0.000811383, -0.0290923249, 0.00188746117, -0.0165285598, 0.00170724315, 0.01667016, 0.0117399115, 0.00731169945, -0.0128212189, 0.0137609271, -0.0103689684, -0.0142372176, -0.00119233481, -0.00612419192, 0.0152541613, -0.00884355232, -0.000568410615, -0.00959660579, -0.0138252908, 0.00875344314, -0.00281912345, 0.0110254763, 0.00604695547, 0.000668174122, -0.0143015813, -0.00349815912, -0.0178930666, -0.00732457219, 0.0115146395, -0.0138639091, 0.0196051374, 0.00288348715, -0.000963039638, 0.00862471573, 0.00040307673, 0.0118235843, 0.0130722374, -0.00444430299, -0.00386181311, -0.0161938686, 0.0204289909, -0.00354321348, -0.0115596941, 0.00335012283, 0.0280625075, 0.00571870152, -0.00421259459, -0.0120038027, 0.0171078313, 0.00205641543, -0.0138124181, 0.00414823089, -0.012840528, 0.00115854386, -0.0117270388, -0.000892239739, -0.0240462236, 0.0253978577, -0.0131752193, -0.0171207041, 0.00237984234, 0.0311519578, 0.00012007825, -0.0148293618, -0.00201618834, 0.0327739194, 0.0173009224, -0.00747260824, -0.0266722552, -0.00172494317, 0.0149838347, 0.0110254763, -0.0182406306, 0.0158463065, -0.00265982375, -0.00751122646, -0.00943569653, -0.012389984, 0.00393904932, 0.0156789608, 0.0123256203, 0.0079939533, -0.0291695613, -0.00953224208, 0.0165543053, -0.0231708791, 0.0104783857, -0.00995704159, 0.0231580064, -0.0238145143, -0.00374595867, 0.00348528638, 0.00181344303, 0.00800682604, 0.0355801694, 0.00526815653, 0.0204418637, -0.00524241105, 0.00636555534, 0.00781373493, 0.00616924651, -0.00679035485, -1.60154614e-05, 0.00449901214, 0.0103432229, 0.0203903727, -0.0146877626, -0.0088692978, 0.0146362716, 0.00743399, -0.00233961502, -0.0159364156, -0.0150481984, 0.0121968929, 0.0095064966, -0.0139411455, -0.00516517507, -0.00225755153, 0.0042319037, -0.0148808528, 0.00322139566, 0.00106843491, 0.0338294841, 0.00461808499, -0.0141728539, 0.0212142263, 0.00518126599, -0.019270448, 0.00250856951, -0.00630119164, 3.76878779e-05, 0.0223985165, -0.027238654, -0.0309717413, 0.0102273682, -0.0146877626, 0.012737547, -0.0253206212, 0.00819991622, 0.0148937255, -0.00206767907, 0.00872126129, -0.0242393129, -0.0179059394, 0.0178415757, -0.0120681655, 0.0216132812, -0.0126216924, -0.00136853, 0.0204804819, 0.00698344549, 0.0132331457, 0.00793602597, -0.0130271828, 0.00370412227, -0.00432844879, -0.00743399, -0.00901089702, 0.0133876186, -0.00933915097, -0.0029961234, 0.014520417, 0.00966096856, -0.0141342357, 0.00618855562, 0.0160007793, -0.00894653331, -0.0124028567, 0.0034370136, 0.00218353351, 0.00640417356, 0.0282169804, -0.0110640945, 0.0228490606, -0.000550710654, 0.00190516107, 0.0285774171, -0.00330506824, -0.00913962442, 0.0107680224, 0.0164641961, 0.0163354687, -0.00228973338, -0.0110126035, 0.0169404875, 0.0167860147, 0.00580237433, 0.0234926958, -0.011315112, 0.0079939533, 0.0219865888, -0.0199655741, -0.00957729667, -0.0323877372, -0.00695126364, -0.00531642931, 0.00353355892, 0.00385215855, 0.00234283321, -0.0134262368, -0.0264920369, 0.047062628, -0.00240397872, 0.00877918862, 0.0114052212, 0.00230582431, 0.000447728962, -0.00577019248, -0.0156145971, -0.00532608386, -0.00205158815, -0.0216905158, 0.0227846969, 0.00818060711, 0.0118300207, 0.0113472939, -0.00261476915, -0.000854426122, -0.00195343373, -0.0242650583, -0.0096159149, 0.00721515389, 0.00048554255, -0.0244581494, -0.00948075112, -0.00698344549, 0.00180217938, 0.0119072571, 0.00194377929, 0.0174039043, -0.00618211925, -0.018420849, -0.0113794757, -0.0027483236, 0.00828358904, 0.0166444145, -0.00317312311, -0.00745329913, 0.000435258524, 0.0201715361, 0.0247542225, 0.012615256, -0.022630224, 0.0210468806, -0.00612741, -0.00581524661, -0.00732457219, -0.0154729979, 0.0137094362, -0.0160007793, 0.0052520656, 0.0197209921, -0.0162067413, -0.0233510956, 0.0124350376, -0.00249569677, 0.0216776449, -0.0103560956, -0.00787166227, -0.00670024566, 0.0154086342, -0.0100214053, -0.00726664485, -0.0067131184, -0.00326162297, -0.0110834036, -0.0130979829, 0.0219222251, 0.0165285598, -0.00585708302, 0.0179059394, 0.0213815719, -0.00341770449, -0.0150610711, 0.00458912132, 0.011488894, -0.00845093466, -0.000763914897, 0.0110576581, -0.0110640945, -0.00123336655, 0.00704780873, -0.00404524896, -0.0138510363, -0.000448131235, -0.00066415139, 0.00494312076, 0.0228876788, 0.0076399534, 0.0150481984, -0.00180700666, -0.0199140832, -0.00543228351, -6.73303075e-05, 0.0102209318, 0.020673573, 0.00570261059, -0.0422997251, -0.0264920369, 0.000587317394, -0.00914606079, 0.0205319729, 0.00514908414, 0.000800521695, 0.0141342357, -0.013065801, -0.0190516114, -0.00349815912, 0.0132331457, -0.00823209807, 0.00392295839, 0.0140827447, 0.00615315558, 0.0218192432, -0.0222955346, -0.00343057723, -0.00386503129, 0.0126924925, -0.000848794356, -0.00231869682, 0.00647497317, -0.0112443119, -0.00130497105, 0.023531314, -0.046959646, -0.0168246329, 0.0231193881, 0.013966891, -0.0265692733, -0.0116691114, -0.00658760965, -0.00108935311, 0.0138896545, 0.00881137047, 0.00456981221, -0.00182792486, 0.000272539415, 0.0152284158, -0.0142114721, 0.00908169709, 0.00162115693, -0.0180990305, -0.0269554555, 0.00812268, -0.00634302804, 0.0188456476, 0.0102659864, -0.00935202371, -0.0050203572, -0.000814601197, -0.00154070253, -0.00339517742, 0.0130014373, -0.00422546733, -0.0039873221, 0.0213687, -0.00205319724, 0.00585708302, -0.014018381, -0.0255008396, 0.0144817987, -0.00199205196, -0.0106650405, -0.0162324868, -0.00744686276, -0.0175841227, 0.00148438441, 0.0169147421, 0.00984118693, 0.000374515424, -0.000703171769, -0.0142500903, -0.0227460787, 0.0290150885, 0.00812911615, 0.0125573287, 0.000695126364, -0.00942926, -0.019527901, 0.00524241105, 0.0023444423, 0.0102788592, 0.00126876647, 0.0245225132, -0.00800039, -0.0473973192, -0.00357539533, 0.0140827447, 0.000371699512, 0.0261573475, -0.00843806192, 0.0200814288, 0.0118815117, 0.0015559888, -0.0133361276, -0.0243680403, -0.0169919766, -0.00680322712, 0.00621430064, 0.0224886239, 0.00729882671, 0.00742755365, 0.00670024566, 0.0102788592, 0.00523275649, 0.00900446065, 0.00139910274, -0.00325840479, -0.00235892413, 0.00260511483, 0.0315123945, 0.014069872, 0.0147521263, -0.00697700912, -0.00593753764, 0.0218321159, -0.0278050546, 0.00275154179, 0.0190001205, 0.0054773381, -0.00904307887, -0.000951776, 0.00352712255, 0.0164255779, -0.0058377739, -0.00328254118, 0.00901733339, 0.0170820858, 0.0220895708, -0.00922329724, -0.0096159149, -0.00362044969, 0.00960304216, 0.0121260928, 0.0234412048, 0.000754662615, 0.00484013883, -0.0113794757, -0.0128598372, 0.0144431805, -0.00158092973, -0.00610166462, -0.00380710396, 0.0325422101, -0.00102177134, -0.0187941566, -0.0109289307, -0.0170048494, -0.0181762669, -0.00474359374, 0.0150353257, -0.024779968, -0.0105363131, -0.00584742846, 0.0153313978, 0.0181891397, 0.0128083471, -0.0146233989, -0.0150095802, -0.0363782793, -0.0346790813, -0.00674530026, -0.0194506645, 0.0143015813, -0.0199140832, -0.00255362387, 0.0131687829, -0.00297198701, -0.0156017244, 0.00581202889, -0.00548377447, 0.0164899416, 0.00509115681, 0.00969958678, -0.0299934149, -0.0114052212, 0.00558353821, -0.00923617, 0.00524562923, -0.0158849247, 0.0163869597, -0.00758202653, -0.00402272213, -0.0184465945, -0.00774293533, 0.00735031767, -0.014314454, -0.00895940606, -0.00738249952, 0.0170434676, 0.00161954784, -0.022128189, 0.0172751769, -0.0208924096, 0.0171593223, 0.00418684911, 0.0203775, -0.00924904272, 0.00512977503, 0.000494794804, -0.00469532097, -0.00751122646, -0.00657795509, 0.0120231118, 0.0347820632, -0.0201200452, -0.00655864598, 0.00506541133, 0.0253206212, -0.0145075442, -0.00878562499, -0.00334690465, -0.00656186417, -0.00819348, 0.0173910316, 0.00151334796, 0.0162196141, 0.0158076882, -0.0261058565, 0.000905916968, 0.0228490606, 0.00592144672, -0.00136933452, 0.00670668203, -0.0214201901, -0.0164641961, 0.00338874105, 0.0204032455, 0.0137480544, -0.00868264306, -0.0176613592, 0.006758173, -0.00549021084, -0.0236085504, -0.00275154179, -0.0141728539, 0.000229496291, 0.0269039646, 0.0173652861, -0.00890147872, 0.0195150282, 5.20942485e-05, 0.00283843256, 0.000489565253, 0.00513299322, 0.027238654, 0.0102466773, 0.00776224444, -0.00253270566, 0.0257196743, -0.00717009977, 0.00307014142, -0.0264405459, 0.000795694417, -0.0144045623, -0.0181891397, 0.0258612745, -0.00245225127, -0.0108066406, 0.00726020848, 0.0099763507, 0.0120231118, -0.0130336192, 0.0230807699, 9.2874594e-05, 0.0121067837, -0.00760777155, 0.00260350574, -0.0115790032, -0.0161423795, 0.0276763272, -0.00223019696, -0.0112250037, -0.00666162744, 0.00641704584, 0.0262860749, -0.00282234163, 0.0052520656, 0.011488894, -0.0152284158, -0.0332630835, 0.0104204593, -0.0109739853, 0.00986693241, -0.00329058664, -0.00559641095, -0.018974375, -0.0210211352, 0.00639130082, -0.0276505817, -0.00318116858, -0.0133876186, -0.021574663, 0.0146233989, -0.0112056946, 0.0149838347, -0.00800682604, -0.0231708791, 0.005657556, -0.0209181532, -0.0151125621, 0.00821922533, 0.00274349633, 0.00721515389, -0.0232481156, -0.0134133641, 0.00368803157, 0.0169276148, -0.025732547, 0.00640417356, 0.0281654894, -0.019823974, -0.00182792486, -0.0276505817, 0.00193251565, -0.0032567957, -0.00310554123, -0.021523172, 0.00161793875, -0.011817148, 0.0143401995, 0.0194506645, -0.00248443312, -0.00489163, 0.0155631071, 0.0183564853, -0.00998922344, -0.00976395048, -0.0105684949, 0.000280987122, -0.00898515154, -0.00248443312, 0.00613384647, 0.00658117328, -0.0514136031, 0.0307142865, -0.00151173887, 0.0091010062, 0.000650876435, 0.00491737528, -0.00758202653, -0.0058603012, -0.00172011589, 0.0212657172, -0.000553526566, -0.00800682604, 0.0156660881, 0.00267913286, 0.00168471597, 0.00894653331, -0.00553848362, 0.0103818411, 0.00535182934, -0.000730526284, -6.17236401e-06, 0.0185881928, 0.000438878953, 0.0135034733, -0.0272644, 0.00500748446, -0.00141760719, -0.0162324868, 0.029787451, 0.0145719079, 0.00362366787, -0.00448935758, -0.0353227183, -0.00685471809, 0.0259127654, -0.00116819842, 0.0115918759, 0.00227042427, 0.0284486897, 0.0228104424, -0.00114969397, 0.0131945284, 0.00598581042, 0.0136836907, 0.00366228609, -0.0118235843, -0.0185881928, -0.0100986408, -0.00234605139, 0.000514908403, 0.02408484, -0.00115532579, -0.0178544484, -0.0150610711, -0.00428661238, -0.0127182379, 0.0209052805, 0.0172751769, -0.00930696912, -0.00105556229, -0.0284229442, 0.000849598902, 0.00760133518, 0.00178608857, 0.0170305949, 0.0281654894, -0.00736962678, 0.00916537, 0.00529068382, 0.00625613704, 0.0308430139, -0.0389270745, -0.002828778, -0.00570904696, 0.00701562688, -0.0124607831, -0.00464704819, 0.00135324372, 0.00839300733, -0.00314094126, -0.0122741293, 0.000796901237, -0.0118750753, 0.0190516114, -0.00220767, -0.00562859233, -0.0121389655, 0.0142243449, -0.0086311521, -0.00962235127, -0.0037620496, 0.00354643166, 0.0170820858, -0.0146105262, 0.0195407737, -0.0058377739, -0.0210726261, -0.0112314401, -0.00832864363, -0.0528810918, 0.00457624858, -0.00542262895, 0.0158463065, -0.00970602315, 0.0174296498, 0.00541297486, 0.0270069465, 0.0146233989, -0.0256553106, -0.0128083471, -0.010311041, 0.0304825772, -0.0160007793, 0.0292467978, -0.0203646272, 5.09440042e-06, -0.0208409186, -0.0164255779, 0.0172365587, 0.0359148607, -0.00178447948, -0.00674530026, 0.0161681231, -0.00233156956, -0.0108710034, 0.0173652861, -0.0200943016, -0.0163097233, 0.00657795509, 0.0128534008, 0.00980900507, -0.0411669277, -0.00722159026, 0.0133747458, -0.0122226384, -0.0155759789, -0.0149967074, 0.00403237669, -0.00217548804, -0.0177385956, -0.00383606763, 0.00735031767, -0.00722159026, -0.00852173381, -0.004817612, -0.0216004085, -0.00676460937, 0.0215489175, 0.00021541676, -0.0165543053, -0.0242521856, 7.18558731e-05, 0.00401306758, 0.0143788178, -0.01947641, 0.0188327748, 0.0127311107, -0.00172011589, -0.0132975094, -0.00848955195, -0.000247196265, 0.0226688422, 0.0111155855, 0.0152927795, -0.0141599812, -0.0103496592, -0.0027708509, -0.0125058377, -0.000934880576, -0.000117966323, -0.0058828285, -0.00819991622, -0.01847234, 0.00283360528, -0.000110021443, 0.0189357568, 0.0048465752, -0.0139926365, -0.00689333631, 0.0115790032, 0.00247960584, -0.0125444559, -0.00333403191, -0.00759489881, -0.00189550663, -0.0236857869, 0.0133618731, -0.00773649896, -0.0226945877, 0.0119136935, -0.0280110165, -0.00969315, -0.00520057511, 0.0202230271, 0.0163869597, -0.00612097373, -0.00671955477, 0.00478543, 0.0218964797, -0.0207508095, 0.00615959195, -0.00163000694, 0.0422482342, 0.0170820858, -0.00828358904, -0.0230421517, 0.0331601, 0.0178930666, 0.00397766754, -0.00298003247, -0.0198497195, -0.00812268, -0.00590535579, 0.00855391566, 0.00902377, 0.0249601845, -0.000641221879, 0.0265950188, 0.0159621611, 0.00755628105, -0.0121775838, -0.000948557863, 0.00395514024, 0.0273931269, -0.00186815206, -0.00809049793, 0.00751122646, 0.0184465945, -0.00462452136, 0.00917180628, 0.000751042215, 0.0192318298, 0.019823974, -0.00909457, 0.0195536464, -0.0174296498, 0.00310232327, 0.00986049604, -0.0126281288, 0.00744042639, -0.00785235316, 0.00946144201, -0.0329283923, -0.00383284944, 0.0122226384, -0.00508793863, 0.00227686064, 0.0213043354, -0.014417435, -0.0156532153, 0.00714435428, 0.0122290747, 0.00287383259, -0.00327127753, -0.0159750339, -0.00137657544, -0.00796177145, -0.00801969878, -0.0323877372, 0.0151897976, -0.00483370246, -0.00697057275, -0.0192447025, 0.0228876788, 0.00210790639, 0.0119716208, 0.0120295472, -0.0123320566, -0.000831898884, 0.00282555982, -0.018974375, -0.00273706, -0.00905595161, 0.018124776]
05 Jun, 2023
unordered_set equal_range in C++ STL 05 Jun, 2023 equal_range() in general returns range that includes all elements equal to given value. For unordered_set where all keys are distinct, the returned range contains at-most one element. Syntax setname.equal_range(key name) Arguments It takes the key to be searched as parameter. Return Value It returns two iteraters—- lower and upper bound of the range that contains the key. Example CPP // C++ program to illustrate the // unordered_set::equal_range function #include <iostream> #include <unordered_set> using namespace std; int main() { // declaration unordered_set<int> sample; // Insert some values sample.insert({ 20, 30, 40 }); // Test the equal_range function for // a given key if it does exists auto range1 = sample.equal_range(20); if (range1.first != sample.end()) { for (; range1.first != range1.second; ++range1.first) cout << *range1.first << endl; } else cout << "Element does not exist"; return 0; } Output 20 CPP // C++ program to illustrate the // unordered_set::equal_range function #include <iostream> #include <unordered_set> using namespace std; int main() { // declaration unordered_set<int> sample; // Insert some values sample.insert({ 20, 30, 40 }); // Test the equal_range function // for a given key if it does not exist auto range1 = sample.equal_range(60); if (range1.first != sample.end()) { for (; range1.first != range1.second; ++range1.first) cout << *range1.first << endl; } else cout << "Element does not exist"; return 0; } Output Element does not exist Time complexity: O(n) Learn C++ Online – Master everything from basics to advanced concepts. Apply your knowledge with practical exercises and boost your skills. Take the Three 90 Challenge: finish 90% in 90 days for a 90% refund. Start now and level up your C++ programming!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum/Algorithm for Dynamic Time out timer Calculation/Difference between Round trip time (RTT) and Time to live (TTL)/Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms/Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm/Round Robin Scheduling Algorithm with Different Arrival Time/Selfish Round Robin CPU Scheduling/Find the order of execution of given N processes in Round Robin Scheduling/Calculate server loads using Round Robin Scheduling/set::lower_bound() Function in C++ STL/Implementation of lower_bound() and upper_bound() in List of Pairs in C++/Difference between std::set::lower_bound and std::lower_bound in C++/Difference between std::set vs std::vector in C++ STL/std::minmax() and std::minmax_element() in C++ STL/std::rotate vs std::rotate_copy in C++ STL/std::bitset::to_ullong and std::bitset::to_ulong in C++ STL/std::upper_bound and std::lower_bound for Vector in C++ STL/std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++/std::string::append vs std::string::push_back() vs Operator += in C++/Vector push_back() in C++ STL/vector :: cbegin() and vector :: cend() in C++ STL/unordered_multiset cend() function in C++ STL/unordered_multiset bucket() function in C++ STL/unordered_multiset emplace_hint() function in C++ STL/unordered_multiset end() function in C++ STL/unordered_multiset size() in C++ STL/unordered_multiset emplace() function in C++ STL/unordered_multiset find() function in C++STL/unordered_multiset erase() function in C++ STL/unordered_multiset clear() function in C++ STL/unordered_multiset swap() function in C++ STL/unordered_multiset bucket_size() function in C++ STL/unordered_multiset bucket_count() function in C++ STL/unordered_set bucket_count() function in C++ STL/unordered_set cbegin() function in C++ STL/array::cbegin() and array::cend() in C++ STL/array::rbegin() and array::rend() in C++ STL/multimap rbegin in C++ STL/vector rbegin() and rend() Functions in C++ STL/multiset rbegin() and rend() function in C++ STL/map rbegin() function in C++ STL/map upper_bound() function in C++ STL/Set upper_bound() in C++ STL/multimap upper_bound() function in C++ STL/multimap empty() function in C++ STL/multimap value_comp() function in C++ STL/multimap swap() function in C++ STL/multimap::swap() in C++ STL/multimap equal_range() in C++ STL/unordered_set equal_range in C++ STL
https://www.geeksforgeeks.org/unordered_set-equal_range-in-c-stl?ref=asr10
PHP
unordered_set equal_range in C++ STL
unordered_multiset clear() function in C++ STL, What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, jQWidgets jqxTreeMap width Property, Round Robin Scheduling Algorithm with Different Arrival Time, Difference between Flow and TypeScript, unordered_multiset emplace() function in C++ STL, jQWidgets jqxTree destroy() Method, unordered_set bucket_count() function in C++ STL, jQWidgets jqxTree collapseAll() Method, Find the order of execution of given N processes in Round Robin Scheduling, jQWidgets jqxScrollView buttonsOffset Property, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Vector push_back() in C++ STL, jQWidgets jqxListBox enableHover Property, Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm, std::rotate vs std::rotate_copy in C++ STL, Selfish Round Robin CPU Scheduling, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxSlider buttonsPosition Property, std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++, std::upper_bound and std::lower_bound for Vector in C++ STL, Difference between Round trip time (RTT) and Time to live (TTL), jQWidgets jqxSlider rtl Property, Difference between std::set::lower_bound and std::lower_bound in C++, jQWidgets jqxTooltip opacity Property, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, unordered_multiset erase() function in C++ STL, jQWidgets jqxToolBar height Property, PHP, std::minmax() and std::minmax_element() in C++ STL, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, map rbegin() function in C++ STL, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, map upper_bound() function in C++ STL, Node.js date-and-time Date.transform() Method, unordered_multiset size() in C++ STL, TypeScript Optional Parameters, jQWidgets jqxToolBar theme Property, Difference between std::set vs std::vector in C++ STL, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, Steps to Diagnose and Resolve a Slow Network, How to use Optional Chaining with Arrays and Functions in TypeScript ?, Calculate server loads using Round Robin Scheduling, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, jQWidgets jqxScrollView showButtons Property, Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms, jQWidgets jqxScrollView disabled Property, jQWidgets jqxSplitter destroy() Method, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, set::lower_bound() Function in C++ STL, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, jQWidgets jqxTree collapseItem() Method, multimap upper_bound() function in C++ STL, std::string::append vs std::string::push_back() vs Operator += in C++, unordered_multiset swap() function in C++ STL, unordered_multiset cend() function in C++ STL, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), Set upper_bound() in C++ STL, jQWidgets jqxSortable opacity Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, multimap rbegin in C++ STL, vector :: cbegin() and vector :: cend() in C++ STL, multimap swap() function in C++ STL, jQWidgets jqxSlider height Property, jQWidgets jqxSwitchButton onLabel Property, unordered_multiset bucket_size() function in C++ STL, unordered_set cbegin() function in C++ STL, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, jQWidgets jqxToolBar tools Property, multimap empty() function in C++ STL, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTree width Property, multimap::swap() in C++ STL, multimap equal_range() in C++ STL, Implementation of lower_bound() and upper_bound() in List of Pairs in C++, jQWidgets jqxTree clear() Method, TLS Handshake?, multiset rbegin() and rend() function in C++ STL, Algorithm for Dynamic Time out timer Calculation, Adhoc TCP, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, jQWidgets jqxTabs position Property, Differences between Wireless Adhoc Network and Wireless Sensor Network, jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, std::bitset::to_ullong and std::bitset::to_ulong in C++ STL, unordered_multiset emplace_hint() function in C++ STL, unordered_multiset bucket_count() function in C++ STL, unordered_multiset find() function in C++STL, unordered_multiset bucket() function in C++ STL, Impact of Three-way Handshake and Slow Start Algorithm, array::rbegin() and array::rend() in C++ STL, multimap value_comp() function in C++ STL, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, unordered_set equal_range in C++ STL, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, vector rbegin() and rend() Functions in C++ STL, array::cbegin() and array::cend() in C++ STL, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, unordered_multiset end() function in C++ STL, How to Sort an Array Having Optional Properties in TypeScript ?
GeeksforGeeks
[-0.0111476881, 0.00808269158, -0.0124886231, -0.00539773, -0.024037974, -0.0152137512, -0.0174136274, 0.0368788242, -0.0274366587, -0.0155350817, -0.0504488498, -0.00333998073, 0.0142003251, -0.0433795825, -0.00074269, -0.00971406, 0.00504550291, 0.0093371151, 0.0258300081, -0.0333689116, -0.0138172, -0.00285180588, -0.0422672853, -0.0034141338, -0.0201325752, 0.000170610132, -0.0434537381, -0.0151643157, 0.0111353286, 0.000344696193, 0.0247424282, 0.00716813607, 0.00365513144, 0.0130138751, -0.0195764266, 0.0308229867, 0.0153867751, 0.00821245927, -0.0183158237, 2.6262569e-05, -0.00663052592, 0.00569434278, 0.0154362107, 0.00783551484, 0.0123032406, 0.0134093584, 0.015695747, -0.0191438682, 0.0130015165, -0.00388377043, 0.0116605805, -0.00387450121, 0.018068647, 0.0194775555, 0.0187607426, 0.00936183333, 0.0106347948, 0.017796753, -0.0037818097, -0.0503746942, -0.0060002245, -0.0154856462, 0.0152755454, -0.0369776972, 0.0170057844, 0.0137677649, -0.0229503941, 0.0528464653, 0.0104803098, 0.00329363509, -0.0321824588, 0.0524015464, 0.0174877811, 0.00909611769, -0.0177596752, -0.00895399, -0.0520555, -0.0321577415, -0.0507701784, 0.0333194733, -0.0329981446, 0.0250637587, -0.00346356933, -0.0221841466, 0.0282770619, -0.00937419198, 0.0238278732, -0.03196, 0.0402404331, 0.0327509679, -0.0334924981, -0.00761305494, 0.0201943703, -0.0118583217, -0.0139284302, 0.0414516032, 0.0360137038, 0.0110240988, -0.0201820116, 0.0708904, 0.0109561253, -0.0264232326, 0.00376636116, 0.00168852869, 0.0208246708, 0.0205157, 0.0263243616, 0.00141586142, -0.00923206471, -0.0119015779, 0.0153373396, 0.0203303173, 0.0108016394, 0.0639694333, -0.00142358569, -0.0158934891, -0.0118397838, -0.0297601242, 0.0141632482, 0.017425986, -0.0249648876, 0.0131251048, 0.036508061, 0.0126925446, -0.0424403101, 0.00162518956, 0.00679119118, 0.0316386707, -0.0255086776, 0.00687770313, 0.0133599229, -0.0142621193, -0.0508690514, -0.0356182232, -0.0146081671, 0.0433548652, 0.0223200936, 0.0245323274, 0.00488483766, -0.011320712, -0.0382135808, -0.0100415703, -0.0017781303, 0.0126060331, -0.0259783138, -0.0290680286, -0.0108881518, 0.000753890199, 0.00841638073, -0.0337149575, -0.0180810057, 0.00244705332, 0.0290433113, -0.00477051828, -0.00486320956, -0.00405988423, 0.01598, -0.00826189481, 0.0126369298, -0.0218751747, 0.0517588854, -0.0155721577, 0.0189214088, 0.00607437734, -0.0269423053, 0.0528464653, 0.00753890211, 0.00782933459, -0.0420201086, 0.0453322828, 0.0543295294, -0.0205898527, 0.00772428466, 0.00968316291, -0.00944216549, -0.0185753591, 0.00753890211, -0.00388994976, 0.0256075487, -0.0105915396, 0.00158193347, 0.0144227846, 0.00853379, -0.00626285, 0.00789113, -0.0137183294, 0.0607066974, -0.00206701853, 0.0385101922, 0.0102331322, -0.0105173858, 0.013866636, 0.0189584848, 0.0521049351, 0.0501275174, 0.00413403707, -0.0131745404, -0.0124639058, 0.00320403324, 0.0417976491, -0.0130138751, -0.0124700852, 0.000122526471, -0.0149789331, 0.0334677808, -0.000849671313, 0.0162395369, 0.00766249048, 0.0118088862, -0.0168327615, -0.031020727, 0.00198514108, 0.00245323288, 0.0229503941, -0.0318858474, 0.00365822134, -0.039325878, 0.0573945269, 0.0020206729, -0.0252985768, 0.00572524, -0.0420201086, 0.0283264965, -0.0399191044, -0.0282029081, -0.0117718102, 0.0232717246, 0.0417234972, -0.0104061561, -0.0197741687, -0.011728554, 0.032652095, -0.0201202165, 0.00252893078, 0.0037323744, -0.00831751, -0.0463209897, -0.0282276254, 0.00918880943, 0.0203673933, -0.00226321537, -0.0090714, -0.00544716557, 0.0180192105, 0.0171170142, 0.0226290654, 0.00203457661, -0.00810740888, 0.026373798, 0.00803943537, 0.0145463729, 0.0185259245, 0.00170088746, 0.00700129149, -0.024915453, 0.0123526761, -0.0228515249, -0.0210224129, -0.0128655685, -0.0311195981, -0.013322846, 0.0308229867, -0.0456783287, 0.00334925, 0.000576231629, -0.00624122191, 0.0349755622, -0.0239020269, -0.0347036682, -0.0464692973, 0.0217886623, 0.00545952423, 0.0254839603, -0.00787877, 0.0139531484, 0.016103588, -0.0139037129, 0.00412785774, 0.00688388245, -0.0366563648, 0.0129644396, -0.0288455691, -0.0132486932, -0.0347531028, 0.021899892, -0.0349014066, -0.0325037912, -0.00270504458, -0.013397, 0.00334616, -0.0184764899, -0.00564181758, -0.0198112447, -0.0105853602, 0.0273872241, 0.0436761938, 0.0257064197, -0.0374473333, -0.0487680435, 0.0151643157, -0.00693331799, -0.0120066283, -0.0116605805, -0.0386090651, 0.0221717861, -0.00659962883, -0.010813999, -0.00464075, 0.0015657125, -0.0262996443, 0.0130262338, -0.0198730398, -0.0322318971, 0.0141385309, 0.0183652602, -0.0173147563, 0.0288950037, 0.018612437, 0.00137492269, 0.0165855847, -0.000890610041, -0.0244828928, 0.0179574173, 0.023494184, 0.0252244249, -0.0482984073, -0.000893699762, 0.0588775873, -0.0350744314, -0.0425639, -0.0112465583, 0.0051289252, -0.0366810821, -0.0190079194, 0.000202955576, -0.0222582985, -0.00778607884, -0.0152137512, 0.0404381752, 0.00645750202, 0.0161901, -0.00810740888, -0.00121039536, 0.0229751132, 0.0129644396, 0.00206083921, -0.00912083499, -0.0263985153, 0.000510189, 0.059223637, 0.000605970155, -0.0178461876, 0.0162024591, -0.00312679051, 0.0134958699, -0.0622391962, -0.0337396748, -0.0108263576, 0.0236424915, -0.000194651977, -0.00920116808, 0.0405617654, -0.018612437, 0.0173889101, -0.0246682763, -0.0167215317, -0.0143362721, 0.0290680286, 0.0108819725, -0.0202685241, 0.0139037129, -0.0310454462, 0.0196011458, 0.0314903632, -0.043799784, 0.0212201551, -0.00441829069, 0.0398943871, 0.00608673645, -0.0040104487, 0.00843491871, 0.0578888804, -0.0251626298, -0.0114566591, 0.0303039141, 0.00489719631, 0.0125689562, 0.0259288792, -0.0110673551, -0.0131498221, -0.00542553747, -0.00580557249, -0.0135700237, -0.0297106896, -0.0215291269, -0.0025165719, -0.0400921293, -0.0145340143, -0.0129397213, -0.0296118185, 0.0280546024, 0.0011362423, -0.0162148178, 0.000967080472, 0.00396719249, -0.0188225377, -0.00354699162, -0.0400426909, -0.0103505412, 0.0130633106, -0.00588899478, 0.0188101791, -0.0197494514, 0.0168698374, 0.0127172628, 0.00797146186, 0.00221223524, 0.0532419495, 0.00650693756, -0.0192674566, -0.0278074257, -0.0382383, -0.0137924831, -0.0197370928, -0.0252120662, 0.0321330242, 0.004483175, 0.0283759329, 0.00377563038, -0.0292163342, -0.0276096836, 0.0305758081, -0.0277827065, 0.0307982676, -0.00682208827, -0.0179697759, -0.00482613314, -0.00477051828, -0.022579629, -0.0232470073, -0.000976349576, 0.043799784, 0.0217145085, -0.0391775705, -0.00146761409, 0.0192180201, -0.00627520913, 0.0165237896, 0.00708162412, 0.0166350193, -0.0198112447, 0.0370271318, -0.0101836966, 0.0157204643, 0.053588, -0.028104037, 0.0210718494, -0.00187391147, 0.0363597535, 0.038683217, 0.0150778042, 0.0283017792, 0.0208370313, -0.00878714677, 0.00846581627, 0.023086343, 0.0179327, -0.0135082295, 0.00350373564, -0.0187236667, -0.0141632482, -0.0443188548, -0.0146576026, 0.0237784386, 0.0385843478, 0.00746474881, -0.00913319457, 0.00165763148, -0.027016459, 0.00465310924, 0.0210347716, -0.0259041619, -0.0127914157, 0.0232346486, 0.00692713866, 0.00310207275, 0.0368541069, -0.0264232326, -0.0251502711, 0.0182293113, -0.0116358623, -0.000936955737, -0.0155350817, -0.0480512306, -0.0117532713, -0.00456968695, -0.0520060658, -0.0234076716, -0.031020727, -0.00349755608, 0.0267692804, -0.0141385309, -0.0318116955, 0.00585809769, 0.0237042848, -0.0472108275, -0.014237402, 0.0049033761, -0.0230987016, -0.00363350357, 0.0116235036, -0.00278074248, 0.00510111777, 0.00880568475, 0.0170799382, -0.0100477496, 0.0115617095, -0.0153126223, -0.0261266213, -0.0102949264, -0.0113330707, 0.0126925446, 0.00290587591, 0.0411302708, 0.0119015779, 0.0165855847, -0.015967641, -0.00554294651, -0.0378675349, -0.0111106113, -0.0105977189, -0.021627998, -0.00124515465, 0.0125627769, -0.0229998305, -0.040191, -0.0292163342, 0.0274613779, -0.0234447494, 0.00267260242, -0.0277579892, 0.0212695897, -0.00282554328, 0.0129273627, -0.0396719277, 0.021257231, 0.0286725443, -0.0064513227, -0.00884276163, 0.0328251198, 0.00878096651, 0.0055491263, -0.0134217171, -0.0408583768, 0.0034543, 0.0203179587, -0.0122908819, -0.0198853984, -0.0118459631, -0.0158069767, 0.00684680603, 0.0206516478, 0.0346789472, 0.0140396599, 0.00360260648, -0.0236548502, -0.0120746018, 0.0225919876, -0.0370518491, 0.00493736286, 0.00878096651, -0.0201943703, 0.0286231097, 0.000646522618, -0.0130015165, 0.0163754839, -0.0175990108, 0.0137677649, -0.0142250424, -0.0164496377, -0.00109530357, -0.0229998305, -0.0231728535, -0.00908375904, 0.00253202044, -0.0362608805, -0.0274119414, -0.0374967679, -0.0246682763, 0.0223571695, -0.0220852755, 0.0303286314, 0.00239298353, -0.0130756693, 0.0147935506, -0.0110488171, -0.00457895594, -0.0227773711, -0.00972024, -0.00621959427, 0.0369529799, -0.00646986067, 0.0207381602, -0.00468709599, -0.00166381092, 0.0132116163, 0.0177226, 0.0176978819, 0.0333194733, 3.937575e-06, -0.0454558693, 0.0305263735, -0.00262471195, -0.0124330083, 0.0202932414, -0.0183899775, 0.00484776124, 0.0379664041, -0.00894781109, -0.005474973, -0.0188596137, -0.0203303173, 0.00319167436, 0.0115740681, 0.00167925947, 0.0258547254, -0.0484961495, 0.00864501949, 0.0144722201, 0.00481995381, 0.016746249, -0.0047303522, 0.0204539057, 0.000968625303, 0.00942362752, 0.0117100161, 0.00131312839, 0.0375956371, 0.0137430476, 0.0199348349, -0.0107089486, 0.00911465567, 0.0419212393, 0.0219864044, -0.00192025723, -0.00748328725, 0.00209637079, 0.0144598614, 0.014781191, 0.0159182064, -0.030106172, 0.0232099313, 0.0391775705, 0.00304491306, -0.0204044711, -0.0237413608, -0.0202190876, 0.0141508896, -0.0287219808, 0.000882113294, -0.0150036504, -0.018105723, 0.0265962575, -0.00729172491, -0.000489719678, 0.00593843032, -0.00613617199, -0.0236424915, -0.017796753, 0.0111909434, -0.0390292667, -0.0342340283, 0.0102949264, -0.0124391885, 0.0124948034, -0.00873153191, -0.0180068519, 0.00511038676, 0.00853379, -0.00895399, 0.00195115432, -0.021084208, 0.0215785615, -0.0120437052, 0.0267445631, -0.0125009827, 0.0184764899, 0.0136812534, 0.0226785, -0.0575428307, -0.0204662643, -0.0233458783, 0.0050022467, 0.0443930104, -0.00680355, 0.0328992754, -0.00235745171, 0.0227032173, -0.0303533487, -0.00896635, -0.000419814867, -0.0166968144, -0.00302328495, -0.0256817024, 0.0207134411, 0.0227773711, -0.0113454293, 0.0144351432, -0.0311937518, 0.00784169417, 0.000924596912, 0.0113145327, -0.0231110603, 0.0200707819, 0.0107213072, -0.0194034036, 0.0136194592, 0.0278568603, 0.0312431864, -0.043157123, 0.00452643074, 0.0279310141, 0.00327509665, 0.00481686415, 0.0494107045, -0.0103072859, -0.0134340758, -0.0357912444, 0.0048292228, -0.00206392887, -0.0419459566, 0.0155474404, 0.0173147563, 0.00598168606, -0.0102825677, 0.0083669452, 0.0338385478, -0.0388809592, -0.0199471936, -0.00263398117, 0.0138048418, -0.00879332609, 0.0101528, 0.0253109355, -0.012816133, -0.000788263278, 0.0259288792, -0.0349755622, -0.0224189647, 0.0365822129, 0.0181675181, 0.033294756, -0.00543480692, -0.00957811344, 0.000583569694, -0.000707544503, 0.0519071929, -0.00664288504, -0.00524942391, 0.00191716745, 0.0433548652, 0.00776754087, 0.0281534735, 0.0223695282, -0.00524942391, 0.0144475019, -0.0179574173, 0.03648334, 0.023358237, 0.0226290654, 0.00126137573, -0.00471490342, 0.005678894, 0.0170799382, -0.0237166435, -0.00310670724, -0.0172653217, 0.00275447988, 0.00785405282, 0.0372248739, -0.00112929044, 0.0367552377, 0.0243345872, 0.00519380905, -0.0193168912, -0.00930621848, 0.0357912444, 0.0265962575, 0.0279310141, -0.0388809592, -0.0131251048, 0.0159429237, 0.0203179587, 0.0231234189, -0.00608055713, -0.0292657707, -0.0285242386, -0.0277827065, -0.0488669164, -0.0282276254, 0.0234323908, -0.00782315526, -0.00667996146, -0.0208370313, 0.00566962501, -0.00521234749, 0.0122229084, 0.0605089553, 0.0408830941, 0.0500039309, -0.00803325605, 0.00771810533, -0.0132857701, 0.00109144149, 0.0159058478, -0.00154408452, 0.0104926685, 0.0115678888, -0.00477051828, -0.011747092, 0.03294871, -0.0337643921, 0.00745238969, -0.0213808194, -0.042242568, -0.00140273012, 0.0171417333, 0.0376945101, 0.0347283855, -0.0112280203, -0.0218257383, 0.0123341382, 0.0134340758, 0.010035391, 0.0053761024, -0.0091640912, -0.000397414464, 0.00184610405, 0.0103999767, 0.0235436205, 0.00612999219, 0.0054533449, -0.0359395519, -0.0129026454, 0.0335172154, 0.00297848415, -0.0180192105, 0.0241862796, 0.00027479144, -0.00163909327, 0.014237402, -0.00628447812, -0.00312833535, -0.0145340143, 0.00896635, 0.00499606738, -0.0305758081, -0.0577405728, 0.00129690743, 0.00730408356, 0.0160665121, -0.00138728158, -0.00694567664, 0.0574439615, 0.036508061, 0.0273625068, 0.0101775173, -0.012915004, 0.0131374635, -0.0314409286, 0.00176731637, 0.0127419801, -0.0130015165, -0.0155968759, 0.0273130704, -0.00981293153, 0.00477360794, 0.0410808362, -0.0186495129, -0.0186989494, 0.00586118735, -0.031292621, -0.0284500849, -0.0514128394, 0.00656255241, -0.00390539831, -0.0168698374, -0.0138913533, -0.0145834498, -0.0288455691, 0.0200337041, 0.0102393115, -0.0221841466, 0.00783551484, -0.0106965899, 0.00824335683, 0.0119262952, 0.0155474404, 0.0176237281, -0.0259288792, 0.00951631926, 0.0111044319, -0.00986236706, 0.00114087691, 0.0329239927, 0.0223818868, 0.0250019655, 0.00972641911, 0.0149418563, 0.0245199688, -0.00471490342, -0.000370958762, -0.0467906259, -0.0343823358, 0.00541317882, -0.0117903482, -0.0128284926, 0.0325037912, 0.021899892, 0.012426829, -0.00100338459, 0.0291916169, -0.00038911085, 0.00131312839, 0.00247949548, -0.0276096836, 0.009510139, 0.00600331416, -0.0148429852, -0.0241492037, -0.0179821346, 0.0143239135, 0.0127172628, 0.0202314463, -0.0151766744, 0.00113006285, 0.0169810671, -0.0287714154, -0.0546261407, -0.0355935059, 0.00871917233, -0.019391045, 0.000252584112, -0.0183776189, -0.0103320032, 0.00896017067, -0.0473097, -0.00061987387, -0.000341992709, 0.0231728535, -0.0114195822, 0.0223571695, -0.00795910321, -0.0312431864, -0.00177349581, 0.0101528, -0.0236548502, -0.00121889217, -0.0405123271, -0.00661816727, 0.00587045634, 0.00219987636, 0.0256569851, -0.000171672233, 0.0319847167, -0.0162024591, -0.00580866216, -0.0481748208, -0.00946688373, 0.0225054752, 0.023864951, -0.0123155992, 0.00802707672, 0.0165237896, 0.0178709049, 0.0214302558, -0.0346789472, -0.0114195822, 0.0102516711, 0.00263243634, -0.0160541534, 0.037126, 0.00971406, 0.00619487651, 0.0364339054, 0.00951631926, -0.0194528382, -0.0162024591, -0.00997359678, 0.0158440527, -0.0124762645, 0.0121981902, -0.0251502711, -0.00643278426, 0.0384607576, 0.0785034522, 0.0314409286, -0.030106172, 0.0131251048, -0.0150036504, -0.0103134653, 0.00147302111, -0.0157575402, 0.0321824588, 0.0201820116, -0.00289351703, -0.0148553448, 0.0330228619, -0.0270906109, 0.00438430393, -0.00039065571, -0.030748833, 0.0275849663, -0.0162642542, -0.00326582766, 0.0341845937, -0.00752036367, 0.0141385309, 0.0189090483, 0.000248528871, -0.0342340283, -0.0192180201, -0.0332206041, -0.00380961713, -0.00267105759, 0.00967080425, 0.00415566517, 0.00952249859, 0.00904668216, -0.00479832571, 0.0123403175, -0.0170552209, 0.0197370928, 0.00436267583, -0.0140149426, -0.0150036504, 0.00477360794, -0.0167215317, 0.00727936579, 0.00535756396, 0.0143115548, 0.00650075823, -0.0169563498, 0.0124577265, 7.67118e-05, 0.022542553, 0.0115926061, -0.022542553, 0.0100971851, -0.0023883488, 0.0013223975, 0.00857704598, 0.00255055889, 0.0251255538, 0.0155721577, 0.0168451201, 0.0289938748, -0.00680972962, 0.00128454855, 0.00405679457, -0.00928768, -0.0155845173, 0.0180192105, 0.00101033645, -0.000693640788, 0.0192427374, 0.0217021499, -0.0113021731, 0.0293646418, -0.00310979714, 0.0085152518, -0.0070754448, 0.0154856462, -0.015053086, -0.00709398324, -0.00240379735, 0.0127049033, 9.77122e-05, 0.019489916, -0.0494601391, -0.0166844558, -0.0311937518, 0.00610836456, 0.0195640679, 0.0230616238, -0.0284995213, 0.00761305494, -0.0103629008, -0.000390848814, -0.0216650739, -0.00658109039, -0.00257991115, 0.0277332719, 0.00516291196, 0.0236424915, -0.00828661304, 0.013186899, 0.0600640364, 0.00295840111, 0.00349446642, -0.00551513908, 0.00826807413, 0.0268434342, -0.0131745404, 0.0157328229, 0.0233829543, 0.00372001552, 0.0161901, 0.0130138751, 0.00609291578, 0.028474804, 0.0277579892, 0.0433795825, 0.0216403566, -0.00187082181, 0.00322257169, 0.00119031232, -0.0158564113, 0.0205404181, -0.0152879041, 0.00247177109, 0.00314069423, -0.0167091731, 0.00842873938, -0.0207258016, -0.00999213476, 0.0170305036, 0.00352845318, -0.0118892193, 0.01824167, -0.0148677034, 0.000985618681, 0.0112650972, -0.00219215197, 0.0381888635, 0.00440593204, 0.0399191044, -0.0256075487, 0.0272389185, 0.0142250424, 0.0047550695, -0.00841638073, -0.0207752362, -0.0131498221, -0.0106286155, -0.0153496983, 0.0067973705, -0.0107027693, -0.00549351145, 0.0192056615, 0.00198205141, 0.00745238969, -0.0152631868, 0.00363350357, -0.0351980217, 0.000278653577, -0.015324981, -0.00110689, -0.00675411476, 0.017252963, -0.00180902751, 0.0294387937, 0.0105544627, -0.0226167049, -0.000504395808, 0.0223077349, 0.000658495293, -0.0204168297, 0.00181366201, 0.0533408225, 0.00844109803, -0.0278568603, 0.00261698756, 0.00803325605, -0.0133846402, -0.0116482209, 0.0224560406, -0.00784787349, 0.0037818097, 0.0110426378, 0.0108696138, 0.00861412194, 0.0125689562, 0.00252275146, -0.0100230323, 0.00567580434, -0.00634009298, -0.0282276254, -0.00593843032, -0.0298095588, -0.00376636116, 0.0112712765, 0.0181922354, 0.00551822921, 0.0167956855, -0.0137801236, -0.00227711909, 0.00195887871, 0.00635245163, 0.00631846488, -0.00178430974, -0.00221841456, -0.0283017792, -0.0195517093, -0.00364586245, 0.0078725908, 0.0251379125, 0.00393938506, -0.0043101511, -0.00379107893, -0.0208988246, -0.0138789946, 0.0124762645, -0.00226012571, -0.00757597852, 0.00285026105, -0.0188225377, 0.017018145, 0.0135576651, -0.00232346496, 0.0185753591, -0.0443188548, -0.0258300081, -0.000577004044, 0.0281534735, 0.0446649045, -0.00621032482, 0.00359024759, -0.0164002012, -0.00172560522, -0.0124762645, -0.00139114365, -0.0120931398, 0.0119015779, 0.0294140764, -0.0154856462, -0.00370456697, 0.0401662812, 0.0140520185, 0.0150778042, -0.0254839603, -0.0166350193, -0.0231975727, 0.0176855233, 0.00484158145, 0.0335419327, -0.0252244249, -0.0230987016, -0.0105359247, -0.00262316712, -0.0188596137, 0.00380343781, 0.00200831401, 0.0164867137, 0.00171015668, -0.00298157381, -0.0462221205, -0.00521543715, -0.00610527489, 0.0372990258, 0.0216774326, 0.00316386693, -0.00712488033, 0.0170675796, -0.013397, -0.0167091731, 0.0202190876, 0.0399191044, 0.0197247341, 0.00853379, -0.00583029026, 0.0200213455, 0.0150283687, 0.0116976565, 0.0102763884, 0.00955957454, 0.0435031727, -0.0120993201, -0.00491573475, -0.0131745404, 0.0118088862, -0.0200955, 0.024136845, -0.0261266213, -0.00739059551, -0.0135082295, 0.0239514615, 0.00650075823, 0.00391157763, 0.015695747, 0.0187360253, 0.0106718717, 0.0430335365, 0.00208092225, -0.0353710465, -0.0307982676, 0.0349014066, -0.0147317555, -0.00329363509, -0.00759451697, -0.0187236667, 0.0161530245, 0.0116667598, 0.00477669761, 0.00543480692, 0.0191191491, 0.013397, -0.000983301434, -0.0353957638, -0.0211460013, -0.0195764266, -0.0125689562, -0.0121796522, -0.0155968759, 0.0172282439, 0.0216156393, 0.00194960949, 0.0244087391, 0.0157575402, 0.00232037506, 0.000534520485, -0.0162271783, 0.0122785233, -0.00895399, 0.0202190876, -0.00481377402, -0.0189337675, -0.0450356714, 0.00159120269, -0.00660580816, 0.00671703788, 0.00912083499, -0.00682826759, 0.0158193354, -0.018612437, -0.0222088639, 0.0201325752, 0.0296859704, -0.0134711526, -0.00382506591, 0.00947924238, 0.0327262506, -0.00024312186, -0.00293986266, -0.0128902867, -0.00369529775, -0.00403825613, -0.0310948808, -0.0122167291, -0.00807033293, -0.00295067672, -0.00367366988, 5.4938977e-05, 0.0196135044, 0.0135453055, -5.40699948e-05, -0.0231975727, -0.00683444692, 0.00177195098, -0.0153744165, 0.0178585462, -0.0042576259, -0.024000898, -0.0137677649, -0.00952867791, -0.0224684, -0.0259288792, -0.00319167436, 0.0115308119, -0.000638412137, 0.00387450121, 0.0264726691, -0.00710634189, -0.00931857713, 0.0104123354, 0.0154362107, -0.0133846402, 0.00208710181, 0.0198236052, -0.0227897298, 0.0275849663, 0.00699511217, -0.0127296215, -0.00329363509, 0.01598, 0.00523088546, -0.0179327, -0.00367675954, 0.0143609904, -0.00633391365, 0.00144366885, 0.0137183294, 0.0244211, -0.0161777418, -0.013322846, 0.000928459049, -0.0249772463, -0.00110225542, -0.00259535969, -0.00483540213, 0.00968934316, 0.00283790217, -0.00531430775, -0.00519689871, 0.0119880904, -0.00553985685, -0.00155180879, -0.0224189647, -0.0117161954, -0.0342340283, 0.0301803257, 0.010931408, 0.000132085275, 0.00515673263, -0.0103629008, 8.26498435e-05, -0.00374782295, -0.0291174632, -0.00758215785, -0.0050764, 0.0110426378, 0.0032102128, -0.0304769371, 0.00272049312, 0.0162518956, -0.0163507666, 0.0332206041, 0.0313173383, -0.00815684441, 0.0017781303, 0.00363350357, 0.012915004, -0.0235559791, 0.00244705332, 0.0376697928, 0.0226908587, 0.019700015, -0.00166226609, 0.0216156393, -0.015053086, -0.0204662643, 0.0080641536, -0.00157575414, -0.0141879665, 0.0109128691, -0.004881748, 0.0051072971, -0.0145834498, -0.00789730903, 0.00998595543, -0.0289938748, -0.00463766046, -0.0329981446, 0.00858940464, 0.0161406659, 0.0130756693, 0.0171911679, -0.00626902934, -0.0208988246, -0.00706308614, 0.00414330652, 0.0182293113, -0.0271400474, 0.0153496983, -0.0274613779, 0.0299825836, 0.0370024145, -0.0129520809, 0.0159058478, -0.025459243, 0.0115246326, 0.0391528532, 0.00728554558, -0.0245446879, -0.0252367835, -0.0273872241, -0.0173518341, -0.00879950542, 0.00396410283, -0.0117718102, 0.000680895697, -0.00695803575, 0.0108943311, -0.00890455581, 0.00285644061, 0.00393011607, 0.0145216556, 0.0243345872, 0.0214055385, 0.0343576185, 0.0208370313, 0.00718667451, 0.0143609904, 0.0162148178, -0.0486691743, 0.0079405643, -0.0133104874, 0.00745856948, 0.0171170142, 0.0294387937, 0.00465310924, 0.00735351909, -0.00855232775, -5.74493679e-05, -0.0419953912, 0.0137924831, 0.0082186386, -0.0117223747, 0.0191067904, 0.0102269528, -0.0155845173, 0.0219987631, 0.0207258016, 0.00442447048, 0.0200707819, -0.00444918824, 0.0103196446, 0.00532975653, -0.0142991962, -0.0282029081, -0.036508061, 0.029562382, -0.0252120662, -0.0190449972, -0.00177040603, 0.00587663567, 0.00523088546, 0.0353957638, -0.0121981902, 0.00293368334, -0.0039362954, 0.0306005273, 0.0262502097, -0.00168852869, -0.00138496421, -0.00428234367, 0.0141138127, -0.00394556485, 0.00437503494, 0.0151766744, -0.00125751353, 0.00165299699, 0.00687770313, 0.0221717861, 0.0152261099, 0.00837312452, -0.00836076587, 0.000958583725, -0.0153744165, -0.00294913189, 0.000669309287, -0.00612999219, 0.00187082181, -0.0115246326, -0.00420201104, 0.0285242386, 0.00941744819, 0.00874389056, -0.0141261723, 0.01133925, -0.00299084303, 0.0325285085, 0.0155845173, -0.00256291777, 0.000292557292, -0.0250514, 0.0193292499, -0.00491882442, -0.00727318646, -0.0103567205, 0.0019635132, 0.0370271318, 0.0275355298, 0.000947769731, 0.0145463729, -0.0174136274, -0.0264726691, 0.00150546315, 0.0232470073, 0.00915173255, 0.0427122042, -0.00901578553, 0.0218257383, -0.027832143, 0.00469018565, -0.0101219025, -0.0001399061, 0.00113546988, 0.0039579235, -0.0152631868, 0.00959665142, -0.00372928474, 0.0122290878, -0.00331526296, 0.00465928856, 0.0132857701, -0.00658109039, -0.010443233, 0.00306345127, -0.017018145, 0.0120993201, 0.0264232326, -0.00649457844, 0.0140890954, 0.00722993072, 0.00956575386, 0.000973259856, -0.0141632482, -0.0237290021, 0.00939890929, -0.00301865046, 0.00713723898, -0.00807651225, 0.0113145327, -0.00245014322, -0.0180562884, 0.0266209748, 0.00207165326, -0.0215167683, 0.00618560705, 0.0161777418, 0.013594741, 0.0190079194, 0.00833604764, -0.0180439297, 0.00692713866, 0.00950396, -1.3879574e-05, -0.00083654, -0.00143980666, 0.000700978853, -0.000807960168, 0.00367366988, -0.00354081206, 0.000601721753, 0.0106162569, -0.0105050271, 0.0051289252, -0.00346665899, 0.00502078515, 0.0232346486, 0.00322566135, -0.0272389185, -0.0154732876, 0.0181551594, 0.00442447048, -0.0214055385, -0.0198853984, 0.00834840722, -0.00107753777, -0.0070445477, -0.0144722201, 0.00144289644, -0.00299547752, 0.0138419187, -0.0205527768, 0.00973877776, 0.0215044096, 0.0246559177, -0.00394865451, 0.0148677034, 0.00459131505, -0.00950396, 0.00361496536, 0.00796528254, -0.00504859257, 0.00524942391, 0.00858322531, -0.00648222, 0.00666760281, -0.00206392887, 0.0151025215, 0.0132981287, 0.0219493266, -0.0153126223, -0.00375709217, 0.00578085473, 0.0141014541, -0.0130756693, -0.0163754839, -0.00812594779, -0.00266796793, -0.0181675181, 0.00539773, 0.00640806649, -0.0131251048, -0.0124453679, -0.0094607044, 0.00661816727, 0.00409078132, 0.0157575402, -0.0163754839, -0.00298620854, -0.0122167291, -0.0106286155, -0.0160170775, 0.0114257624, -0.00391157763, 0.000768566329, 0.0286972634, 0.0251008365, -0.0072175716, -0.0343081839, 0.00986854639, -0.000785946, -0.0215538442, -0.00628756778, 0.00605583936, -0.0222459398, 0.00275756954, -0.0202685241, 0.00955339521, 0.00879950542, -0.00264634, -0.0130880279, -0.0114381211, -0.00462221215, -0.0080641536, -0.0142003251, -0.00545952423, -0.00128145888, 0.0150778042, 0.0053544743, 0.0155227231, -0.00345738977, -0.0142250424, -0.0128408512, -0.0231728535, -0.00428852299, -0.0180810057, 0.0133722816, -0.0151025215, -0.014002583, 0.010443233, 0.00571906054, 0.000539927511, 0.0189584848, -0.00357170915, -0.00469945464, -0.0189461261, -0.0246559177, -0.0130633106, -0.00352536351, -0.0100971851, 0.00391466729, 0.00561401, -0.00689624157, 0.0245941225, 0.0179574173, -0.0104741305, -0.0283264965, -0.0032905452, -0.0275355298, 0.00677265273, -0.0251379125, -0.0299578663, 0.0149418563, 0.0058272006, 0.00508257933, -0.0161159486, 0.000594383688, 0.000289467571, -0.0266704112, 0.00786641147, 0.0326273777, -0.0025876353, 0.00292595895, 0.0071434183, -0.0209359, -0.0209606197, 0.00319476426, 0.019391045, 0.00227557425, 0.0189214088, 0.0104741305, 0.0154114934, -0.00531121809, -0.0182911064, 0.00619487651, 0.0254839603, -0.0183158237, 0.00384051446, 0.00441520102, -0.00681590894, -0.018105723, -0.00670467922, -0.00673557632, -0.00702600926, 0.00575613696, -0.0133846402, 0.0213190261, 0.00604348024, -0.0202438049, 0.00406297389, 0.00941744819, 0.00285953027, -0.0135205882, 0.014645244, 0.0212201551, -0.000848898897, -0.0165237896, -0.0229009595, -0.00569434278, -0.00353463273, 0.00163291383, -0.0117100161, -0.0109870229, 0.0133475643, -0.00551822921, -0.00350373564, -0.0202685241, -0.0123959323, -0.0350744314, 0.0069703944, -0.0207752362, 0.0164867137, 0.0012297061, 0.0291421823, -0.000597859616, 0.0107274866, -0.00569743244, -0.00118258805, -0.00840402208, 0.00614235131, -0.023321161, 0.000312447315, -0.00685298536, -0.00100724678, 0.0264973864, -0.00879332609, -0.00550278043, -1.3384737e-05, 0.0046561989, -0.000404752529, 0.0182540305, -0.0206269305, -0.00741531327, 0.00781079661, -0.00236981059, -0.0114195822, 0.0307735503, -0.0150283687, 0.00654401397, -0.00491882442, -0.0132486932, -0.00487865834, 0.0127049033, -0.00463148113, 0.0122105498, 0.00526178256, -0.005474973, 0.00507022068, 0.013186899, -0.00559547171, 0.00660580816, 0.0230121892, -0.0223942455, -0.031020727, -0.00198359624, -0.0111971227, -0.00198823097, 0.0137677649, -0.00182911067, 0.00729790423, -0.00386523199, -0.00899724662, -0.0270906109, 0.0186989494, 0.00056773494, 0.0213313848, 0.00084194704, -0.0146328853, -0.0149294976, -0.0148553448, -0.0135082295, 0.0179821346, 0.00430397131, 0.00014444413, -0.0145587316, -0.0155227231, 0.0104308743, -0.00551822921, 0.00657491107, 0.0179821346, -0.00762541406, 0.0238896683, 0.0240132567, 0.00169934263, 0.00880568475, 0.0299578663, 0.0240997691, 0.021257231, -0.00406297389, -0.010560642, 0.0332700387, -0.0166350193, -0.00193107117, 0.0103690801, -0.0236424915, 0.017796753, -0.0231234189, 0.0227402952, 0.0063771694, -0.0128532099, 0.00496208062, -0.00247177109, 0.00824953616, 0.00327818654, -0.00826807413, 0.0034141338, 0.000538382621, 0.00417420361, -0.0172158852, 0.00193879544, -0.00577158574, 0.00220914534, 0.00246868143, -0.0245076101, 0.0282029081, 0.00666142302, -0.000605970155, 0.0332206041, 0.00751418434, -0.0351980217, -0.0229751132, -0.0237042848, 0.0157451816, 0.0059476993, -0.0054008197, -0.00608673645, -0.0131374635, -0.016610302, -0.0189214088, 0.0200584233, 0.00711252121, -0.0280546024, 0.00392084708, 0.017561933, 0.0161777418, -0.00978203397, -0.0142497607, 0.00667996146, 0.0127914157, -0.0247300696, 0.0106965899, -0.00292904885, -0.00647604046, -0.00717431586, 0.0143486317, -0.0031128868, 0.0158811286, 0.011475197, 0.0132239759, -0.00585809769, 0.0129273627, -0.00120807812, -0.00213808194, -0.0111476881, -0.0151890339, -0.00687770313, 0.0101404414, 0.00567580434, -0.0246435571, 0.00638334872, 0.0209976956, -0.0373979, -0.0280793197, -0.00808269158, -0.00876860786, 0.0137430476, 0.0122352671, 0.0188101791, 0.00562327914, 0.000626825728, -0.000137299168, -0.0046561989, -0.00967698358, 0.000844264345, 0.0139531484, 0.0168451201, -0.0146699613, -0.0017425986, 0.00554294651, -0.00524324458, 0.0108201783, 0.0226290654, 0.00538537139, 0.0018399246, 0.0293399226, 0.0184394121, -0.00936801266, -0.0208864659, 0.0105482833, 0.00454187952, 0.0124762645, 0.00188627036, -0.00402898714, 0.0185012072, -0.0148924207, -0.0155350817, -0.000879796047, 0.000488174788, -0.00268032681, -0.0173023976, -0.00121580239, 0.00673557632, 0.0301803257, -0.0184023362, 0.0224189647, -0.00423290813, 0.00508566899, 0.00903432351, -0.0412044227, -0.00279310136, 0.00571597088, 0.00471490342, 0.00949160103, -0.0093371151, 0.0119262952, 0.0150901629, -0.0166350193, 0.00555530563, -0.0246929936, -0.0211460013, 0.0207381602, -0.000939273043, -0.0019681477, -0.00298002898, 0.00842873938, -0.00495281117, 0.0266209748, -0.00419892138, -0.0229256768, 5.05457865e-05, 0.00663052592, 0.00921970606, -0.00672321767, -0.0218257383, 0.00689006178, 0.0053019491, 0.0037107463, 0.00883658137, 0.00255519338, 0.00181211717, 0.0153126223, -0.0142250424, 0.00759451697, 0.015967641, 0.00897870865, 0.0117841689, 0.0108757932, -0.00527105201, 0.00526178256, 0.0135823824, 0.0195517093, 0.00887365825, -0.0174754225, -0.0171664506, -0.00102655741, -0.000629915448, 0.000444918813, 0.0340115689, -0.0183652602, 0.0238896683, -0.00556148496, -0.00875624921, -0.00914555322, -0.0162889715, -0.0213437434, -0.0190820731, 0.00145371037, 0.0110488171, 0.0064513227, -0.0250514, 0.011747092, -0.00718049519, -0.000976349576, 0.0088180434, -0.0113021731, -0.00986854639, -0.0069703944, -0.00355317094, -0.0194651969, -0.00917645, -0.00583029026, 0.00236672093, 0.00938037131, -0.0021890623, 0.0265962575, -0.0136318179, 0.0061516203, 0.00305572711, -0.0168821961, -0.0025165719, 0.00367984921, -0.00335851894, 0.00839784276, 0.0128532099, 0.0229627546, -0.00212726812, -0.0101280818, 0.0159429237, 0.0331958868, -0.00837312452, 0.00705690635, -0.0138048418, -0.00783551484, 0.0169563498, -0.000680123281, -0.0138048418, 0.0342834666, -0.00577776507, -0.0131374635, -0.0080456147, -0.000882885768, 0.0301308893, 0.00845345762, 0.00497443927, -0.0111600468, -0.00053027214, 0.00921970606, -0.00314841839, 0.0192056615, 0.000457277667, -0.0069086, 0.0163878426, -0.000629915448, 0.0221347101, 0.0111167906, -0.0157204643, 0.00968934316, -0.000459981151, 0.00361805502, 0.00892927311, -0.0172158852, 0.0052277958, -0.011357788, -0.00282554328, -0.035222739, -0.0149047794, -0.00731644267, 0.00944216549, 0.0337891094, 0.0225919876, -0.00362423435, -0.00186309742, 0.0139160715, -0.0109005105, 0.00861412194, 0.0201820116, 0.0193539672, 0.00284717139, 0.0353957638, 0.0158564113, 0.0237784386, -0.00895399, 0.0121672936, -0.0124330083, -0.0123650348, -0.0099612372, 0.0178091116, 0.024173921, -0.0141385309, 0.00230956124, -0.00666142302, -0.0294140764, 0.0080456147, -0.0255086776, 0.0130385924, 0.0114504797, 0.00857086666, 0.0162518956, -0.00425453624, -0.00332144252, 0.0020654737, -0.0224189647, -0.00566344569, -0.0171788093, 0.00228329864, -0.0101898769, -0.0114072235, -0.0137924831, -0.0181922354, 0.0100415703, -0.00930003915, 0.0161777418, 0.00997359678, -0.00322257169, -0.0114381211, 0.000570438453, -0.0365327783, -0.00156416767, -0.00239916285, -0.0256569851, 0.0300320182, 0.00117718102, -0.00172869489, 0.00398264127, 0.00203766627, 0.0162024591, 0.015967641, -0.00468400633, -0.021257231, -0.0198606811, 0.0177720338, -0.00781079661, 0.00104432332, 0.0155968759, 0.0261760559, 0.0104679503, -0.0107892808, -0.0211583599, 0.0277085546, -9.50569811e-05, -0.0141014541, 0.00105977186, -0.00262471195, -0.0102454918, -0.00901578553, 0.0191685855, -0.025632266, 0.0247918647, -0.0213561021, -0.00198050658, -0.00708780391, 0.0226785, 0.018884331, -0.00614853064, 0.00454187952, 0.0166844558, 0.0204291884, 0.0109561253, -0.0267198458, 0.00883658137, 0.0115617095, -0.0246188398, -0.000356668839, -0.0080641536, -0.00285180588, -0.00101574347, 0.00978203397, -0.00544407591, 0.00252429629, 0.00628756778, 0.0139778657, -0.000686302723, -0.0151395984, -0.002839447, 0.0214796904, -0.0310948808, -0.00151936687, -0.00891073514, 0.0201820116, -0.0338632651, -0.00965226628, 0.0100292116, 0.00244705332, 0.007322622, 0.0525004193, 0.029463511, 0.0168945547, -0.00549351145, 0.0146576026, 0.0133475643, -0.00785405282, -0.00908375904, -1.36140516e-05, 0.000355510216, 0.00923824497, 0.015151957, -0.018563, -0.00358097837, 0.00338632637, 0.0121858316, -0.00752654299, 0.0125936735, -0.00256137294, 0.0136936121, 0.0151890339, -0.0251255538, -0.0113763269, 0.00359642692, -0.0166226607, -0.00970788114, 0.0151766744, -0.0101095438, 0.0199471936, 0.00684062671, -0.00331835262, 0.00596005796, -0.00193879544, -0.0205404181, -0.00139268849, 0.00959665142, 0.00305572711, 0.0276096836, -0.0124824438, -0.0285983924, 0.00338941626, -0.0190820731, 0.0229874719, -0.00964608695, 0.0222335812, 0.00831133, 0.005678894, 0.0113886856, -0.0173518341, -0.0147688324, 0.028104037, -0.00585500803, 0.0410561189, 0.00596932741, -0.00289351703, 0.0188348964, 0.00084503676, 0.018711308, 0.0137554063, -0.014373349, 0.0142497607, 0.00799617916, 0.00365822134, -0.0139037129, 0.00991798192, -0.0105050271, -0.0163754839, 0.0141385309, -0.00650075823, -0.0286231097, 0.0105112065, 0.0262502097, -0.00896635, -0.0163754839, 0.0213931799, 0.00995505787, -0.00273594167, 0.0163754839, -0.00695185643, 0.0288208518, -0.00286725443, 0.00805797428, 0.0104308743, 0.00334616, 0.0144351432, 0.0111353286, 0.0139407888, 0.0187731013, -0.00331835262, -0.02084939, 0.0328251198, 0.0226537827, 0.0114937359, 0.0159429237, -0.0209235419, 0.0118212458, 0.0215909202, -0.0313173383, -0.0253850892, -0.0252615, 0.0038343349, -0.00291977962, -0.0152384685, 0.0115369922, -0.000219755908, -0.0315892361, -0.00860176329, 0.0323802, -0.0100477496, 0.00896635, -0.00743385172, 0.00477051828, 0.0140273012, -0.00299856742, 0.00533593586, 0.007915847, 0.00242388062, -0.0194281209, 0.0141632482, 0.00501151616, 0.00751418434, -0.0147193968, -0.00117718102, 0.00294604222, -0.00186000776, -0.0237784386, 0.0170675796, 0.0296859704, 0.000645364, -0.0284253675, -0.00649457844, -0.00230801618, 0.00533902552, 0.0216897912, -0.00363350357, 0.0190449972, 0.00269732019, -0.0203303173, -0.00437503494, -0.00667996146, 0.012117858, -0.0103072859, -0.0134464353, -0.00625976035, -0.0116420416, -0.00574068865, 0.0148800621, 0.00614544097, -0.0102207735, 0.0115802474, -0.00877478719, -0.00521234749, 0.000714110152, -0.0125751356, 0.00326582766, 0.00952249859, 0.00511038676, 0.0151643157, -0.00520925783, -0.000352613599, 0.00302174012, -0.00195424398, 0.0186371543, -0.0145340143, -0.0150901629, -0.00333689107, 0.00392084708, -0.00691477954, -0.00566035602, -0.0148306265, 0.0036087858, -0.0230987016, -0.0210471302, 0.0194157623, 0.0225054752, -0.00226167054, 0.00400117971, 0.0278568603, 0.0144475019, 0.00471490342, -0.00676029408, 0.0175248571, -0.0158564113, 0.000127547246, 0.0170552209, 0.00012156093, -0.00368911843, 0.00636481075, 0.0149542149, -0.0164125599, -0.0104123354, -0.00384978345, -0.00438739359, 0.0135823824, 0.0123712141, 0.0103690801, -0.00210100552, -0.0237166435, -0.00727936579, 0.00889837649, 0.0166350193, 0.00323184067, -0.000539155095, -0.018204594, -0.0182293113, -0.00768102892, -0.0162642542, 0.0223942455, -0.00926914159, 0.000636094832, 0.0147564737, 0.00548424199, -0.00332453218, 0.00622886326, 0.00469327532, 0.00553367753, -0.000273053476, -0.000349910086, -0.00119880901, 0.0193663258, -0.0338879824, -0.00698275352, 0.0097882133, -0.011611145, -0.0111600468, 0.00297076, -0.00257527642, -0.0126925446, 0.00250112335, 0.0156463105, -0.0545272715, -0.00689624157, 0.00820010062, 0.0080208974, -0.0252491422, -0.00952249859, -0.00214580633, -0.0163878426, 0.0131127462, -0.00267260242, 0.00144289644, 0.0218875334, 0.0148553448, 0.00931857713, -0.000146182094, -0.000609832292, 0.00988708436, -0.0199224744, -0.0331217311, 0.00962136872, -0.00205311482, 0.000862030196, 0.0179944932, -0.0113701476, -0.0154856462, 0.00402589701, 0.00808887091, -0.0117532713, 0.00849671289, 0.00476742862, -0.0078725908, 0.0322566144, 0.00590135343, 0.0188966896, -0.00452334108, -0.000368062174, -0.0022384976, 0.00219987636, -3.95386814e-05, -0.0321083069, -0.00656255241, -0.0135082295, -0.010832537, 0.0193663258, -0.005280321, -0.000921507191, 0.0106162569, -0.0199224744, -0.0143609904, 0.0307735503, 0.00531121809, -0.00510111777, -0.0109561253, -0.00810123, -0.0287219808, 0.00706926547, -0.00882422272, 0.0244581755, 0.0032596481, 0.0259535965, -0.00671085855, -0.037768662, 0.0157328229, -0.00339250593, 0.00312679051, 0.0227897298, -0.0197618101, 0.0128902867, 0.021801021, 0.0235930551, -0.00332144252, -0.00639570784, -0.00638334872, 0.00220296602, 0.016474355, 0.029463511, -0.0118459631, -0.00338014704, 0.00445845723, 0.00326273777, 0.00257064193, -0.00274675572, -0.00575613696, 0.013186899, -0.00679119118, 0.00244241883, 0.0202190876, 0.00687770313, 0.00821245927, -0.0134958699, 0.00680972962, 0.0235065427, -0.0137430476, 0.00997977611, 0.023494184, 0.0111600468, -0.0096584456, -0.00226939493, 0.00204539066, 0.00486938888, -0.0200460646, -0.00779843796, 0.00926296227, 0.00536374329, 0.0177596752, -0.0176360868, 0.00274984539, -0.00950396, 0.0245076101, 0.0195022747, 0.0278074257, 0.0176484454, -0.00313142501, -0.0121425753, -0.0199595522, 0.0238773096, -0.00775518175, 0.012680186, -0.00397955161, 0.0120746018, 0.00609600544, -0.0228144471, -0.0211460013, -0.00393011607, -0.0215414856, 0.00261080824, 0.0103814388, -0.00264479499, -0.00238062465, 0.00211645407, 0.0100477496, -0.000529499725, 0.0167956855, -0.0169687085, -0.00113701471, -0.0380899943, -0.0195393506, 0.00698275352, -0.0235065427, 0.00908993836, -0.0150654446, -0.00477051828, 0.00682208827, -0.00927532092, -0.00957193412, 0.00755126076, -0.0050764, 0.00486320956, 0.00404443545, 0.0196135044, -0.0182787478, -0.00587663567, -0.000438739371, -0.0134711526, 0.00623504259, -0.0204539057, 0.013186899, -0.0114937359, -0.00592298154, -0.0214920491, -0.00613926165, 0.0027374865, -0.0190820731, -0.00459131505, -0.0130138751, 0.00975731667, -0.00194188522, -0.01598, 0.0186742302, -0.0132239759, 0.00408151187, 0.0129397213, 0.00150469062, -0.000101284684, 0.00826807413, -0.0037848996, -0.00104895781, -0.0017333295, 0.000393745402, 0.015967641, 0.0344070531, -0.0164372772, -0.0165608656, -0.00497134961, 0.027189482, -0.0144351432, -0.000152554625, -0.00995505787, -0.000219369686, -0.0107089486, 0.0344564877, 0.00758833718, 0.00234972732, 0.0306993965, -0.0156463105, -0.000754276407, 0.0102578504, -0.00578085473, -0.00787877, 0.00491573475, -0.000778994116, -0.0232470073, -0.00384978345, 0.0169563498, 0.0179944932, -0.00475198, -0.013458794, -0.00297076, 0.0103629008, -0.0171788093, -0.0114504797, -0.0136936121, -0.00350682531, 0.0177102406, 0.00902196486, -0.00157652656, 0.0213437434, 0.00729172491, 0.00799, -0.00514746318, 0.0054533449, -0.00248413, -0.00397028215, 0.00735351909, 0.0122538051, 0.0190697145, -0.00818774197, 0.00195578882, -0.0303533487, -0.0171293747, -0.0173394736, -0.0177720338, -0.000876706326, -0.0181180816, -0.00771192601, -0.0101775173, -0.0133599229, 0.0119757308, -0.0172406044, 0.032034155, -0.00393320573, 0.0136688938, -0.00105050276, 0.0047087241, -0.000497830159, 0.00397955161, 0.0219493266, 0.0220605563, 0.00731644267, -0.0209359, 0.0253850892, 0.0150654446, -0.000837312487, 0.0147935506, 0.0136936121, -0.0120869605, -0.0401168466, 0.00530503877, -0.017018145, 0.0112898145, 0.00178430974, -0.00985618774, -0.0255828314, -0.00762541406, 0.00192180206, -0.0223942455, -0.00254128966, -0.0202314463, -0.0200089868, 0.00292286929, -0.00672939699, 0.00463148113, -0.0182169527, -0.0243098699, 0.0178956222, -0.00181675178, -0.0102207735, -0.00326273777, 0.000372117414, 0.00321330247, -0.0146699613, -0.0140890954, -0.00663052592, 0.0260030329, -0.0398696698, 0.0148306265, 0.0119139366, -0.0157451816, 0.00279155653, -0.0303286314, 0.00124592718, -0.00391157763, -0.0112342, -0.0152013926, 0.00576540595, -0.00686534448, 0.00248876447, 0.0241986401, -0.0143115548, -0.0311937518, 0.00647604046, 0.00676647341, 0.00100879162, 0.00766867, -0.00785405282, 0.00324419956, 0.00920734741, -0.00936801266, 0.00466855755, 5.17527078e-05, -0.0400921293, 0.0365822129, 0.00893545244, -0.0010566822, 0.00365513144, -0.00395174418, -0.0173518341, -0.00391157763, -0.00454187952, 0.0204044711, 0.00253202044, -0.0121611143, 0.00263243634, -0.00224467716, -0.00336778816, -0.00679119118, -0.0122970613, 0.00861412194, 0.00217361376, -0.00407842221, -0.0137430476, 0.00389303942, 0.0013355288, 0.00568507379, -0.0260524675, -0.00193107117, 0.00162364461, -0.023358237, 0.00700747129, 0.00513510453, 0.00120807812, 0.00892927311, -0.0216156393, -0.00314841839, 0.0122290878, 0.00267260242, 0.0107089486, 0.00675411476, 0.0170799382, 0.0133352056, -0.00389921898, 0.00942980684, 0.00290742074, 0.0083669452, 0.000808732584, -0.00476433896, -0.0104061561, 0.000628370559, -0.0100910058, -0.00718667451, 0.0183776189, -0.0154114934, -0.0177720338, -0.000930776296, 0.0116173243, -0.0223818868, 0.0310701635, 0.0083916625, -0.0132610518, -0.000268032687, -0.00246559177, 0.00522470614, -0.0200213455, -0.00180902751, 0.0178461876, 0.0145463729, -0.00824335683, 0.012272344, -0.0157698989, 0.0181180816, 0.0266951285, -0.0272636358, 1.69210107e-05, -0.0144475019, 0.00151241501, -0.0120066283, -0.00661198795, 0.00380652747, 0.00589208445, -0.00620414549, -0.010542104, 0.00974495802, -0.0114813773, 0.00388377043, -0.00943598617, -0.00689624157, 0.00372928474, 0.00530503877, -0.0133846402, 0.0193045326, -0.00439048326, 0.00181366201, 0.0187360253, -0.0120498845, 0.0264726691, 0.00581484148, -0.0145463729, -0.020985337, -0.00782315526, -0.0208864659, 0.00238062465, 0.00480141537, 0.00823099818, -0.0128779272, 0.0262007732, -0.00185846293, 0.0196876563, 0.0161530245, -0.0243222285, -0.00526487269, -0.00458822493, 0.0160788707, -0.00173178467, 0.0374967679, -0.0267692804, -0.0142003251, -0.014917139, -0.00438430393, 0.0271647647, 0.0336655229, 0.0132363345, -0.00270813424, 0.0119571928, -0.00192489172, -0.00975731667, 0.000784401142, -0.0330228619, -0.00608055713, 0.00574377831, 0.0191809442, 0.00559547171, -0.0399932563, -0.0150778042, 0.011240379, -0.0133722816, -0.0195022747, -0.0107645635, -0.00959665142, -0.0105977189, -0.0103876181, -0.00579630304, 0.00574068865, -0.0167338904, -0.000217824825, -0.00751418434, -0.0186742302, -0.014237402, 0.0145463729, 0.00533593586, -0.000660426333, -0.017252963, -0.00237753475, -0.0060527497, 0.0180192105, 0.00304645789, 0.0107460245, 0.016338408, -7.06772043e-05, -0.00474271085, -0.00708162412, -0.00441829069, 0.0245694052, 0.00708780391, 0.0185135659, -0.00925678294, 0.00426380523, -0.0063771694, -0.0192674566, -0.00265406421, -0.00808887091, -0.00719903316, -0.00339250593, -0.0150036504, 0.0033832367, 0.000240997688, 0.0198853984, 0.013866636, -0.0213190261, -0.0134711526, 0.0026138979, -0.00492809387, -0.00861412194, -0.0100601083, -0.0103814388, 0.0042576259, -0.0207134411, 0.0069703944, -0.00322875101, -0.0208864659, 0.0131498221, -0.0166597366, -0.01057918, -0.00676647341, 0.0269917399, 0.017796753, -0.00857704598, 0.00304954755, 0.0311937518, 0.0183158237, -0.0143609904, 0.0125565976, 0.000225742217, 0.023321161, 0.0185753591, 0.0104370536, -0.0251255538, 0.0120560639, 0.0104555916, 0.0017781303, 0.00283326767, -0.0224807579, -0.011203303, -0.0086697368, -0.002936773, 0.0128408512, 0.0202438049, 0.000997205148, 0.0168327615, 0.023630131, 0.00591062289, -0.018068647, 0.0163260475, -0.00154949154, 0.0192798153, 0.00434104819, -0.00884894095, -0.00579012372, 0.0128655685, -0.0227897298, 0.00836076587, 0.00842256, 0.0137059707, 0.0214549731, -0.00191562262, 0.0244087391, -0.0132734105, 0.0152508281, 0.0192921739, -0.00826807413, 0.0101775173, -0.00681590894, 0.000790194317, -0.0356676579, -0.0024146114, 0.00800235942, 0.00111847639, 0.00354081206, 0.0235189013, 0.00322875101, -0.023395313, 0.00153867749, -0.0017688612, 0.0168821961, -0.00291669, -0.0208741073, -0.0129397213, -0.00390230864, -0.0041093193, -0.0330722965, 0.0280793197, 0.0102331322, -0.0172653217, -0.0220729169, -0.00318549504, -0.0210594907, 0.0131127462, 0.0114628384, -0.0214178972, -0.0073967753, -0.0154485693, -0.00932475645, 0.00154717418, -0.01824167, 0.00197123736]
10 Nov, 2022
set vs unordered_set in C++ STL 10 Nov, 2022 Differences : | set | unordered_set --------------------------------------------------------- Ordering | increasing order | no ordering | (by default) | Implementation | Self balancing BST | Hash Table | like Red-Black Tree | search time | log(n) | O(1) -> Average | | O(n) -> Worst Case Insertion time | log(n) + Rebalance | Same as search Deletion time | log(n) + Rebalance | Same as search Use set when We need ordered data. We would have to print/access the data (in sorted order). We need predecessor/successor of elements. Since set is ordered, we can use functions like binary_search(), lower_bound() and upper_bound() on set elements. These functions cannot be used on unordered_set(). See advantages of BST over Hash Table for more cases. Use unordered_set when We need to keep a set of distinct elements and no ordering is required. We need single element access i.e. no traversal. Examples: set: Input : 1, 8, 2, 5, 3, 9 Output : 1, 2, 3, 5, 8, 9 Unordered_set: Input : 1, 8, 2, 5, 3, 9 Output : 9 3 1 8 2 5 If you want to look at implementation details of set and unordered_set in c++ STL, see Set Vs Map. Set allows to traverse elements in sorted order whereas Unordered_set doesn’t allow to traverse elements in sorted order. Implementation: CPP // Program to print elements of set #include <bits/stdc++.h> using namespace std; int main() { set<int> s; s.insert(5); s.insert(1); s.insert(6); s.insert(3); s.insert(7); s.insert(2); cout << "Elements of set in sorted order: \n"; for (auto it : s) cout << it << " "; return 0; } Output Elements of set in sorted order: 1 2 3 5 6 7 Implementation: CPP // Program to print elements of set #include <bits/stdc++.h> using namespace std; int main() { unordered_set<int> s; s.insert(5); s.insert(1); s.insert(6); s.insert(3); s.insert(7); s.insert(2); cout << "Elements of unordered_set: \n"; for (auto it : s) cout << it << " "; return 0; } Output Elements of unordered_set: 2 7 3 6 5 1 Predecessor/Successor in Set: Set can be modified to find predecessor or successor whereas Unordered_set doesn’t allow to find predecessor/Successor. Implementation: CPP // Program to print inorder predecessor and inorder successor #include <bits/stdc++.h> using namespace std; set<int> s; void inorderPredecessor(int key) { if (s.find(key) == s.end()) { cout << "Key doesn't exist\n"; return; } set<int>::iterator it; it = s.find(key); // get iterator of key // If iterator is at first position // Then, it doesn't have predecessor if (it == s.begin()) { cout << "No predecessor\n"; return; } --it; // get previous element cout << "predecessor of " << key << " is="; cout << *(it) << "\n"; } void inorderSuccessor(int key) { if (s.find(key) == s.end()) { cout << "Key doesn't exist\n"; return; } set<int>::iterator it; it = s.find(key); // get iterator of key ++it; // get next element // Iterator points to NULL (Element does // not exist) if (it == s.end()) { cout << "No successor\n"; return; } cout << "successor of " << key << " is="; cout << *(it) << "\n"; } int main() { s.insert(1); s.insert(5); s.insert(2); s.insert(9); s.insert(8); inorderPredecessor(5); inorderPredecessor(1); inorderPredecessor(8); inorderSuccessor(5); inorderSuccessor(2); inorderSuccessor(9); return 0; } Output predecessor of 5 is=2 No predecessor predecessor of 8 is=5 successor of 5 is=8 successor of 2 is=5 No successor Let us see the differences in a tabular form -: set unordered_set 1. It is used to store the unique elements. It is used to store the unique elements. 2. Sets are implemented using Binary search trees. It is implemented using hash table 3. It stores the elements in increasing order. It stores the element with no order. 4. We can traverse sets using iterators. We can traverse unordered_set using iterators. 5. It is included in #include <set> header file. It is included in #include <unordered_set> header file. Learn C++ Online – Master everything from basics to advanced concepts. Apply your knowledge with practical exercises and boost your skills. Take the Three 90 Challenge: finish 90% in 90 days for a 90% refund. Start now and level up your C++ programming!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum/Algorithm for Dynamic Time out timer Calculation/Difference between Round trip time (RTT) and Time to live (TTL)/Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms/Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm/Round Robin Scheduling Algorithm with Different Arrival Time/Selfish Round Robin CPU Scheduling/Find the order of execution of given N processes in Round Robin Scheduling/Calculate server loads using Round Robin Scheduling/set::lower_bound() Function in C++ STL/Implementation of lower_bound() and upper_bound() in List of Pairs in C++/Difference between std::set::lower_bound and std::lower_bound in C++/Difference between std::set vs std::vector in C++ STL/std::minmax() and std::minmax_element() in C++ STL/std::rotate vs std::rotate_copy in C++ STL/std::bitset::to_ullong and std::bitset::to_ulong in C++ STL/std::upper_bound and std::lower_bound for Vector in C++ STL/std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++/std::string::append vs std::string::push_back() vs Operator += in C++/Vector push_back() in C++ STL/vector :: cbegin() and vector :: cend() in C++ STL/unordered_multiset cend() function in C++ STL/unordered_multiset bucket() function in C++ STL/unordered_multiset emplace_hint() function in C++ STL/unordered_multiset end() function in C++ STL/unordered_multiset size() in C++ STL/unordered_multiset emplace() function in C++ STL/unordered_multiset find() function in C++STL/unordered_multiset erase() function in C++ STL/unordered_multiset clear() function in C++ STL/unordered_multiset swap() function in C++ STL/unordered_multiset bucket_size() function in C++ STL/unordered_multiset bucket_count() function in C++ STL/unordered_set bucket_count() function in C++ STL/unordered_set cbegin() function in C++ STL/array::cbegin() and array::cend() in C++ STL/array::rbegin() and array::rend() in C++ STL/multimap rbegin in C++ STL/vector rbegin() and rend() Functions in C++ STL/multiset rbegin() and rend() function in C++ STL/map rbegin() function in C++ STL/map upper_bound() function in C++ STL/Set upper_bound() in C++ STL/multimap upper_bound() function in C++ STL/multimap empty() function in C++ STL/multimap value_comp() function in C++ STL/multimap swap() function in C++ STL/multimap::swap() in C++ STL/multimap equal_range() in C++ STL/unordered_set equal_range in C++ STL/set vs unordered_set in C++ STL
https://www.geeksforgeeks.org/set-vs-unordered_set-c-stl?ref=asr10
PHP
set vs unordered_set in C++ STL
unordered_multiset clear() function in C++ STL, What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, jQWidgets jqxTreeMap width Property, Round Robin Scheduling Algorithm with Different Arrival Time, Difference between Flow and TypeScript, unordered_multiset emplace() function in C++ STL, jQWidgets jqxTree destroy() Method, unordered_set bucket_count() function in C++ STL, jQWidgets jqxTree collapseAll() Method, Find the order of execution of given N processes in Round Robin Scheduling, jQWidgets jqxScrollView buttonsOffset Property, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Vector push_back() in C++ STL, jQWidgets jqxListBox enableHover Property, Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm, std::rotate vs std::rotate_copy in C++ STL, Selfish Round Robin CPU Scheduling, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxSlider buttonsPosition Property, std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++, std::upper_bound and std::lower_bound for Vector in C++ STL, Difference between Round trip time (RTT) and Time to live (TTL), jQWidgets jqxSlider rtl Property, Difference between std::set::lower_bound and std::lower_bound in C++, jQWidgets jqxTooltip opacity Property, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, unordered_multiset erase() function in C++ STL, set vs unordered_set in C++ STL, jQWidgets jqxToolBar height Property, PHP, std::minmax() and std::minmax_element() in C++ STL, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, map rbegin() function in C++ STL, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, map upper_bound() function in C++ STL, Node.js date-and-time Date.transform() Method, unordered_multiset size() in C++ STL, TypeScript Optional Parameters, jQWidgets jqxToolBar theme Property, Difference between std::set vs std::vector in C++ STL, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, Steps to Diagnose and Resolve a Slow Network, How to use Optional Chaining with Arrays and Functions in TypeScript ?, Calculate server loads using Round Robin Scheduling, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, jQWidgets jqxScrollView showButtons Property, Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms, jQWidgets jqxScrollView disabled Property, jQWidgets jqxSplitter destroy() Method, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, set::lower_bound() Function in C++ STL, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, jQWidgets jqxTree collapseItem() Method, multimap upper_bound() function in C++ STL, std::string::append vs std::string::push_back() vs Operator += in C++, unordered_multiset swap() function in C++ STL, unordered_multiset cend() function in C++ STL, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), Set upper_bound() in C++ STL, jQWidgets jqxSortable opacity Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, multimap rbegin in C++ STL, vector :: cbegin() and vector :: cend() in C++ STL, multimap swap() function in C++ STL, jQWidgets jqxSlider height Property, jQWidgets jqxSwitchButton onLabel Property, unordered_multiset bucket_size() function in C++ STL, unordered_set cbegin() function in C++ STL, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, jQWidgets jqxToolBar tools Property, multimap empty() function in C++ STL, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTree width Property, multimap::swap() in C++ STL, multimap equal_range() in C++ STL, Implementation of lower_bound() and upper_bound() in List of Pairs in C++, jQWidgets jqxTree clear() Method, TLS Handshake?, multiset rbegin() and rend() function in C++ STL, Algorithm for Dynamic Time out timer Calculation, Adhoc TCP, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, jQWidgets jqxTabs position Property, Differences between Wireless Adhoc Network and Wireless Sensor Network, jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, std::bitset::to_ullong and std::bitset::to_ulong in C++ STL, unordered_multiset emplace_hint() function in C++ STL, unordered_multiset bucket_count() function in C++ STL, unordered_multiset find() function in C++STL, unordered_multiset bucket() function in C++ STL, Impact of Three-way Handshake and Slow Start Algorithm, array::rbegin() and array::rend() in C++ STL, multimap value_comp() function in C++ STL, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, unordered_set equal_range in C++ STL, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, vector rbegin() and rend() Functions in C++ STL, array::cbegin() and array::cend() in C++ STL, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, unordered_multiset end() function in C++ STL, How to Sort an Array Having Optional Properties in TypeScript ?
GeeksforGeeks
[-0.00487127108, 0.00559134316, -0.010751307, 0.0308204126, 0.0375897549, -0.0112689622, -0.0142421629, 7.5595126e-05, -0.0175870135, -0.00582362432, -0.0106384847, 0.0154765723, -0.0257898625, -0.0473853871, -0.00913197361, 0.00594972, 0.00112407561, 0.0162995122, -0.00297983736, -0.0290948935, -0.000753669941, 0.00363354338, -0.0415982641, -0.0341652632, -0.000871054945, 0.0143483486, -0.0243165363, -0.0173082761, -0.0231883116, 0.0254049394, 0.0111295935, 0.0193921719, 0.00548183918, -0.00997482333, -0.0272100978, 0.0482879691, 0.0153172938, 0.0169366263, -0.00850813277, 0.0259624142, 0.00822275877, 0.0168702602, 0.0406160466, 0.00889305584, 0.00233774562, 0.0385985188, 0.0207062196, -0.0363155231, 0.013133849, -0.00605258765, -0.0208522249, 0.00365013489, 0.0395010971, 0.0103398366, 0.00502059469, 0.0188612435, 0.0044199815, -0.00636782637, -0.0183568615, -0.01078449, -0.00917179417, -0.0284577794, 0.00496750185, -0.0318822712, -0.00952353422, -0.00211376, -0.06615372, 0.0268915407, 0.0252987538, -0.0151845617, -0.0249669235, 0.0683836192, 0.0342979953, 0.00697507616, -0.00556479674, 0.012815292, -0.0228033885, -0.0325459316, -0.0410142429, 0.0232546777, 0.0142421629, 0.0144412611, 0.00515000848, -0.0156093044, 0.046934098, 0.00352735771, -0.00819621235, -0.0495887436, 0.0518451892, 0.0230821259, -0.0354129449, -0.0389967151, 0.0426070318, -0.0231750384, -0.0185825061, 0.0342979953, 0.0023725878, 0.00249702414, -0.00962308329, 0.0137510542, 0.0357845947, -0.0263340641, -0.0196709093, -0.0329706743, 0.00561457127, 0.00209882762, 0.0234272294, 0.0605789684, -0.0114216041, -0.0167109817, 0.0135121364, 0.0178392045, -0.0224715583, 0.0481286906, -0.016286239, 0.0117667075, 0.0195779968, -0.0446776524, 0.0282454081, -0.00886650942, -0.0203478429, 0.0115344264, 0.0155031187, 0.0133329472, -0.0468279123, 0.0148792779, 0.00707462523, 0.0186754186, 0.00451289397, 0.00394546427, -0.00527278567, 0.0289090686, -0.0121980878, -0.00412133429, -0.0192328934, 0.0201221984, 0.0076520103, 0.0297320094, -0.000550008961, -0.0333423242, -0.0292010792, -0.0371915586, -0.0202814769, 0.0203611162, -0.0430583209, -0.0183303133, 0.00777810579, 0.0107048508, -0.0185426865, 0.0251792949, -0.029572729, -0.0258960482, 0.00697507616, -0.0134457704, 0.0130210267, -0.00329673546, 0.0152774742, -0.0214893408, -0.0243165363, -0.0373773836, 0.0537299886, -0.0136315953, 0.0114879701, 0.0140430648, -0.0415186249, 0.0375632085, 0.0345103666, 0.012596284, -0.0567031875, 0.0366871767, -0.00629150541, 0.0230024867, -0.0191001613, 0.0154632991, 0.00542210974, 0.00177031546, 0.0405895, 0.00353399431, 0.0299178343, -0.00828248821, 0.00265796203, -0.00871386752, 0.0508364253, 0.00465558143, -0.00349085638, 0.00532256067, 0.0491109081, -0.00450625736, 0.0362093374, 0.0342714489, -0.0119060762, 0.0138970595, 0.0315106213, 0.0572341159, -0.00271769147, -0.013989972, -0.0476508513, -0.0157420374, -0.00510023395, 0.0510222502, -0.00993500371, 0.0102801071, -0.00397532899, 0.0114481505, 0.0345634595, -0.0189674292, -5.63593276e-05, 0.0224450119, 0.0202814769, 0.00837540068, -0.0240510721, 0.0366340801, 0.0131073026, 0.00533915218, -0.00696843956, 0.0138837863, -0.0492436402, 0.028431233, -0.0116007924, -0.0161004141, 0.0219273567, -0.0227502957, 0.0166180693, -0.0337405205, -0.0508895181, -0.0278206654, 0.0373508371, 0.0387843437, 0.00549843069, -0.00984872784, 0.0312186088, -0.0136183221, -0.0332892314, 0.0146005396, 0.0128617482, -0.0200160127, -0.0208654981, -0.0361031517, -0.00172385923, 0.0348289236, 0.00127008103, 0.0369791873, -0.0480225049, 0.00231949496, 0.00222824141, 0.0241439845, 0.0125830108, -0.00239747507, 0.0283781402, -0.00755246123, -4.24898535e-05, 0.0138970595, -0.00793738477, -0.0023111992, 0.000715509406, 0.0239316113, 0.00684898067, -0.0372977443, -0.00499736657, -0.0334485099, 0.0179852098, 0.0408018716, -0.0224317387, 0.0232679509, -0.00245388621, -0.00439343508, 0.0305549484, -0.0194054451, -0.00719408412, -0.0284046866, 0.0210247766, 0.00185825059, -0.0115012433, 0.0105853919, 0.0172817297, 0.00137460767, 0.00192295748, 0.000807592354, -0.00825594179, -0.0222990066, 0.00376295741, -0.0563315377, -0.000927466142, -0.0048878626, 0.0438547134, -0.0295461826, -0.0287232436, -0.0156889446, -0.0385719724, -0.0050338679, -0.0103265634, -0.0249403771, 0.00860104524, -0.0170826316, 0.0312717035, 0.0298647415, -0.0068888003, -0.028935615, -0.0361297, -0.00103531103, -0.0130608464, -0.0423150212, 0.0181046687, -0.0166578889, -0.0379348584, -0.00457926, 0.0228830278, 0.0039886022, 6.48624846e-05, -0.0692331046, 0.000968944922, -0.0218344443, -0.0313247964, -0.00124104589, 0.0151978349, -0.0128352018, 0.0178790241, 0.00541879144, -0.0196974557, -0.0277410261, -0.0325193852, -0.0306345876, -0.000820450776, 0.0208920445, 0.014693452, -0.0140961576, -0.03740393, 0.0174542814, -0.00984209124, -0.0459518805, -0.0208654981, -0.00880678, -0.0563315377, 0.00737990905, 0.0328644887, -0.0252191145, -0.0198700074, 0.0150385564, 0.00373641099, -0.0409611501, 0.0048978175, 0.0186886918, -0.0308204126, 0.00622182107, 0.0207062196, 0.00630477862, -0.0126427403, -0.0180781223, 0.00315073016, 0.0262146052, 0.000734589645, -0.00126261485, 0.0202814769, -0.0294399969, 0.0457129627, -0.0490047224, -0.0144545343, -0.0176268332, -0.000350703311, -0.0160075016, 0.0305018555, 0.010970315, -0.0207991321, 0.0093576191, 0.0191134345, -0.0104261125, -0.0149323707, -0.00252688886, 0.00792411156, 0.00528937764, -0.0210115034, -0.0148660047, 0.0387312509, -0.0331830457, -0.0243298095, 0.0216751657, 0.00563779939, 0.0232414044, 0.0359969661, 0.00342449034, -0.00955008063, 0.049296733, 0.0123971859, 0.00752591481, 0.0071675377, -0.0198965538, 0.0162066, -0.0044133449, -0.0131139392, 0.00210380508, -0.00301965722, -0.0137776006, -0.0201354716, -0.00777810579, -0.0129612973, 0.0172684565, -0.0368199088, -0.015264201, -0.0325193852, -0.0266658943, 0.0264667962, -0.00706798863, -0.018954156, -0.00921825, -0.0206133071, -0.0149190975, -0.0259624142, -0.0140828844, -0.0079772044, 0.0111295935, 0.0238917917, -0.0202947501, -0.00820284896, 0.0505975075, -0.000598539191, 0.0319619104, -0.0286170579, 0.0373242907, 0.0185957793, -0.0152376546, -0.0632867068, -0.0233608633, -0.000580703316, -0.030846959, -0.0215424336, 0.0252987538, 0.00400187541, 0.0154234795, 0.0084019471, 0.012563101, -0.00224483293, 0.007313543, -0.0360766053, 0.00616209162, -0.0175339207, -0.0453678593, 0.0441998169, -0.0112490524, -0.0105920285, -0.0200558323, 0.00373309269, 0.064189285, 0.0236263275, -0.0659944415, 0.00649392186, 0.0407753251, -0.0436688885, 0.0327052101, -0.0248740111, 0.0275817476, -0.0276879333, -0.00568093732, -0.00172385923, -0.0130276633, 0.0417044498, -0.0168171674, 0.0299709272, -0.0103862928, 0.0325724781, 0.00316400337, 0.0342449024, 0.0338467062, 0.0260686, -0.00848822296, 0.0235732347, 0.01456072, -0.00594640151, 0.00691534672, 0.000241821443, 0.00562784448, -0.018701965, -0.0550042167, -0.00546856597, 0.00594972, 0.0041346075, -0.0029715416, 0.00242733979, -0.0272631906, -0.00133146974, -0.0206265803, 0.0029715416, 0.0025833, -0.00131653727, -0.0208787713, 0.0115808826, 0.00783119909, 0.0229493938, -0.0127157429, -0.0313778892, -0.00996155, -0.043005228, -0.00858113542, 0.00287862914, -0.043005228, 0.0127290161, 0.00586344395, -0.0237059668, -0.0508364253, -0.00279401243, 0.014374895, 0.0307407733, -0.0202283841, -0.0377490334, 0.0221795477, 0.0215158872, -0.0312451553, -0.0189143363, 0.0243032631, -0.0122843636, -0.0124569153, -0.00597958453, -0.00930452626, -0.0160340481, 0.0126161939, 0.0158349499, 0.0042806128, 0.00635787146, -0.00152807927, -0.0337405205, 0.00271271402, 0.0102402875, -0.00264800712, -0.0133130373, 0.0369260944, -0.0203080233, 0.00624173088, 0.013518773, -0.0429521352, -0.0207194928, -0.0422619246, -0.0150252832, -0.00977572519, -0.00816302933, 0.0166711621, -0.000854463433, -0.00677929632, -0.0095036244, 0.0272631906, -0.00571080204, 0.033395417, -0.0253253, -0.00895278528, 0.000255716848, -0.0104393857, -0.0336608812, 0.00397532899, 0.0103862928, -0.000413128902, -0.0153571134, 0.0061255903, 0.0103531098, 0.0413858928, -0.0119724423, -0.0276348405, -0.00396537408, 0.0123573663, -0.0101341018, -0.0129413875, 0.0156358518, -0.00608908897, 0.000773579755, 0.0465093553, 0.0449962094, 0.0108375829, -0.00990182068, -0.0271702781, 0.00663992716, 0.0161933266, -0.0216618925, 0.024489088, 0.0102601973, -0.0142687093, 0.00212537404, 0.00496750185, -0.0242634434, 0.0197505485, 0.00425406639, -0.00257666339, 0.000592317374, -0.0163791515, 0.0176401064, -0.00773164956, -0.00327350735, -0.0170693584, -0.00748609519, 0.00515000848, -0.0317760855, -0.015582758, -0.0167508014, -0.0019909828, 0.00514337188, 0.041465532, 0.0166047961, 0.0155694848, -0.00110333622, -0.0217017122, -0.00700825918, -0.0109172221, -0.0054022, -0.00718081091, 0.0331034064, -0.000909215421, 0.0224582851, -0.00707462523, -0.00599617651, -0.000739981886, -0.00101871951, -0.00310261478, 0.0226706564, -0.00843513, -0.050119672, -0.0178524777, 0.0228830278, -0.0107778534, 0.0132665811, 0.0155296652, 0.0108110365, 0.0249403771, -0.0116538852, -0.0272100978, -0.0263871569, -0.0194054451, -0.0213433355, 0.0173879154, 0.0164587907, 0.0352271199, -0.0312717035, 0.00196775468, -0.00155960314, -0.0406691395, 0.00539224502, -0.0213831551, 0.00923816, -0.0121250851, 0.00687552709, 0.0348289236, -0.00831567124, 0.0286170579, -0.00623177597, 0.0168437138, -0.0168038942, 0.0102071045, 0.0202549305, 0.0759228095, 0.00132815144, 0.0183701348, -0.0100876456, 0.0297320094, 0.0396603756, 0.0191134345, -0.0401647575, 0.0225511976, 0.0242103506, 0.0189276095, -0.00699498598, -0.0350147486, -0.0371384658, 0.0122976368, -0.0125166448, -0.00411801599, -0.0088333264, -0.00850149617, 0.00299642887, 0.00738654565, -0.000917511177, 0.0150385564, -0.00640100939, -0.00818957575, -0.00824266858, 0.00278239837, -0.025949141, -0.0512080751, 0.0184895936, 0.007028169, 0.0184895936, -0.0320415497, -0.0199231, 0.021436248, -0.00981554482, -0.00400519371, -0.00680916104, -0.023785606, 0.0221928209, -0.0156358518, 0.0115012433, 0.00947044138, 0.00270939572, 0.00520310132, 0.0292010792, -0.0312186088, 0.00416779052, -7.49729443e-05, 0.0413062535, 0.0171489976, -0.0091120638, -0.022896301, 0.0147730913, 0.0344041809, 0.000616375066, 0.0133196739, 0.0205071215, -0.0244492684, -0.0226308368, -0.00623841258, 0.0219140835, 0.0433503315, -0.00255675358, 0.00755909784, -0.0337139741, 9.70085603e-05, -0.0104725687, -0.01078449, -0.040509861, 0.0143616218, 0.0208522249, -0.024582, 0.0132400347, -0.013067483, 0.0221662745, -0.0278206654, 0.00225976529, 0.00645078393, -0.00225312868, 0.00343776355, 0.0318557248, -0.0171224512, -0.0432972386, -0.0150252832, -0.00469871936, -0.00554156862, 0.00118546432, 0.0137908738, 0.0182108544, 0.00804357, -0.0439078063, 0.00235765544, 0.0284046866, -0.020480575, -0.0248341914, -0.0347758308, 0.0208787713, -0.00462903501, 0.00819621235, 0.0412266143, -0.00600613141, 0.0112822354, 0.0358376876, -0.000342614949, -0.00919170398, 0.0448900238, 0.00793074816, 0.0199231, 0.0239979792, -0.0219008103, 0.0118463468, -0.0155562116, 0.0310327839, 0.0103929294, 0.00749273179, 0.0136315953, 0.0301302057, 0.00697507616, 0.00172385923, 0.0158747695, -0.0343245417, -0.000337844889, -0.0292807184, 0.0160207748, 0.0171489976, 0.0350678414, 0.0173348226, 0.0219937228, 0.025378393, 0.00419101864, -0.0188612435, 0.00844176672, -0.00845504, -0.013167032, -0.0138705131, 0.0397134684, -0.00866741128, 0.0269579068, 0.0133064007, 0.0200292859, 0.00600613141, -0.0209584106, 0.0396072827, -0.00285042357, 0.0119658057, -0.0417309962, -0.0021436247, 0.0366340801, 0.0116671585, 0.0342449024, -0.00129662745, -0.0559598878, -0.0268649943, -0.0340856239, -0.0487658046, 0.00267123524, 0.00125348952, -0.0160871409, -6.65734842e-05, 0.0161800534, 0.00431711413, -0.0385985188, -0.00956999, 0.0261216927, 0.0187948775, 0.0408549644, 0.00192959409, -0.00421756506, -0.00466553634, 0.00830239803, 0.00973590557, 0.0339528918, 0.0201221984, 0.00356717734, 0.0156093044, 0.0370588265, 0.02371924, -0.0180648491, 0.0278472118, -0.00445980113, -0.0398727469, 0.000501478789, 0.00599617651, -0.000529684359, 0.0375366621, -0.0127555626, -0.00767855672, -0.00827585161, -0.00238088355, 0.0189143363, -0.0241307113, 0.0109769516, 0.00314409356, 0.0047451756, 0.015582758, 0.00499404827, 0.00755246123, 0.0175471939, -0.0192328934, -0.00250697904, 0.0179188438, 0.00890632905, -0.0434565172, 0.0323335603, 0.0178126581, -0.00535242539, 0.0267189872, -0.0118463468, -0.00765864691, 0.0335546955, -0.000788097328, 0.0363951623, -0.0260686, -0.0250731092, -0.0208787713, -0.00771837635, 0.0371384658, 0.00431711413, 0.01456072, 0.0301302057, 0.0197240021, 0.0146801788, 0.0386516117, -0.00733345281, -0.00900587812, -0.0161667801, 0.00135303871, -0.0206796732, -0.0344572738, 0.00392887276, 0.0150252832, -0.00661669904, 0.0224184655, 0.0132533079, -0.00444320962, -0.00364018, 0.0118728932, -0.0276879333, -0.0294665433, -0.0646140277, 0.0149987368, 0.0287763365, 0.000335978344, -0.0232015848, -0.0162729658, -0.0302894842, 0.0118330736, 0.0209185909, -0.0354660377, 0.0113087818, 0.0182241276, -0.0219273567, 0.00668638339, 0.00836212747, 0.00658351602, -0.0356253162, 0.0133263106, -0.00104609551, -0.0139368791, 0.00162431, 0.0252987538, 0.0309000518, 0.0237590596, 0.0190072488, 0.00807011686, 0.0109238587, 0.0287763365, 0.00334153255, -0.0320946425, -0.0441998169, 0.00891296566, 0.0354394913, -0.0266393479, -0.0186621454, 0.0247943718, -0.0118861664, 0.0271570049, 0.0186886918, -0.00730690639, 0.0262411516, -0.00765864691, 0.00421092845, 0.00383596, 0.0154367527, -0.0163791515, -0.023148492, 0.00219339924, 0.0436423421, 0.0284046866, -0.00518982811, -0.0131935785, 0.00506705092, -0.00312750204, -0.0265995283, -0.0614815466, -0.0186754186, 0.0134059507, -0.0117799807, -0.00757237105, 0.000168507657, -0.0176666528, 0.00352403941, -0.0227901153, -0.0196841825, -0.00423415657, -0.011892803, -0.0159145892, 0.0258296821, -0.0199629199, -0.038545426, 0.00368663622, -0.0194054451, -0.0304487627, -0.00696180295, -0.0204407554, 0.0166047961, 0.0054022, 0.0141359773, 0.023533415, 0.000102400802, 0.019020522, 0.00102535612, 0.0199761931, -0.0101009188, -0.0425273925, 0.0233077705, 0.0346961915, -0.00974254217, 0.0395276435, 0.012815292, -0.0273959227, 0.00238917931, -0.0202682037, -0.0166578889, 0.0116737951, -0.0136581417, 0.00625168579, 0.0120786289, -0.000315238925, -0.00573734846, 0.0243430827, -0.00592981, 0.00728036, -0.0577119514, -0.0204673018, 0.0242501702, -0.0386781581, -0.0209982302, 0.0173480958, -0.0134457704, 0.0203478429, 0.0397665612, 0.0122578172, -0.0285374187, 0.00246881857, -0.00966953952, -0.0182639472, 0.00339794392, -0.0366871767, 0.0131073026, 0.028112676, -0.0134125873, -0.00403837673, 0.0381737761, -0.0446245596, 0.0369526409, 0.0141890701, -0.0430848673, -0.00383264176, 0.0104128392, 0.0120454459, 0.0453147665, -0.0168968067, 0.00277908, 0.0345634595, 0.00448634755, -0.0146005396, -0.0159145892, -0.0104128392, 0.00432706904, 0.0143881682, 0.0144412611, 0.0256438572, 0.000723805162, -0.00169565366, -0.0127621992, 0.00786438212, 0.00346762827, 0.0129612973, 0.0128617482, -0.0235466883, -0.0170162655, -0.0232944973, -0.0378817655, 0.0140828844, -0.00139700621, -0.0120852655, -0.00212371489, -0.00955671724, 0.0111096837, 0.00666979188, 0.00112241646, 0.00649392186, -0.0157553107, 0.00790420175, 0.0167109817, 0.00260320981, 0.00837540068, -0.0133196739, 0.0041312892, 0.0198567342, -0.00464230822, 0.0120852655, -0.00458589708, 0.00631141523, 0.0101473751, 0.000669467961, -0.00249370583, 0.0370588265, -0.00636450807, -0.0140430648, 0.0378817655, 0.0325724781, 0.00205237139, 0.00931116287, 0.00258495915, 0.00818957575, -0.019339079, -0.00789756514, 0.00667974679, -0.0319619104, -0.0136581417, -0.0228166617, -0.000371650094, -0.00664988207, -0.025312027, -0.014693452, 0.0176666528, 0.0199496467, 0.0249801967, 0.0126626501, 0.0110499542, -0.0164455175, -0.010081009, -0.0093576191, -0.0476508513, -0.0131736686, 0.0188346971, 0.03740393, 0.0126958331, 0.0192594398, 0.0160075016, 0.0378021263, 0.0736398175, -0.0204407554, 0.00880678, -0.0106915776, 0.0238652453, 0.0232679509, 0.0101341018, -0.00505377771, 0.0214760676, 0.00708126184, -0.0130873928, 0.0259756874, -0.00229626684, 0.0268649943, -0.00253186631, 0.00889305584, 0.00959653687, -0.00291181216, 0.00176533801, -0.0200691056, -0.0352536663, 0.0185957793, -0.00446311943, 0.00201255176, 0.000199305665, -0.01348559, 0.00339794392, 0.00145922438, -0.00272432808, 0.0065602879, 0.0109039489, -0.021502614, 0.0101075554, -0.00711444486, -0.00694852974, -0.00404501334, 0.0178392045, 0.00469871936, -0.0171224512, 0.0311920624, -0.0200292859, -0.00834221765, -0.00385918817, 0.000945716805, -0.00985536445, 0.00834885426, -0.0145872664, 0.0199894663, 0.00922488701, 0.0167242549, 0.015516392, -0.00308768242, 0.001530568, -0.00403174, 0.0100610992, 0.00755246123, 0.0297320094, -0.0134789534, -0.0176666528, 0.00249370583, 0.00909215398, -0.0149987368, 0.0356518626, 0.00271935062, -0.00507036922, 0.00048281331, -0.0216751657, -0.0104592955, 0.0130210267, 0.00933770929, -0.0343245417, 0.0132333981, 0.0387312509, 0.00988854747, 0.00120288541, 0.0182108544, -0.0149058243, -0.0207593124, -0.0231352188, 0.0142288897, 0.00946380477, 0.0274755619, 0.00184165896, 0.0249669235, 0.00127256976, -0.00891296566, 0.0156358518, -0.00914524682, 0.000484057673, 0.00273096468, -0.0272100978, 0.000330586103, 0.00706798863, -0.01456072, 0.00165334519, 0.00571412034, 0.00219671754, 0.0347492844, -0.00325857499, 0.00794402137, -0.00661006244, 0.0161136873, 0.0111362301, 0.00469871936, 0.0205071215, -0.045792602, -0.00901251473, -0.0123971859, 0.00392887276, 0.0258429553, 0.0177993849, -0.00917179417, 0.00210214593, -0.00504714111, -0.000178566261, -0.00714762788, 0.0122179976, -0.0247147325, -0.00564443599, -0.0413062535, 0.0111428667, 0.0252058413, 0.0154234795, -2.03894251e-05, -0.0246350933, -0.00478499522, 0.00586676225, 0.00193125324, -0.00175704225, 0.0126560135, -0.008269215, -0.0465889946, -0.00149489613, -0.0111163203, -0.00758564426, -0.00976245198, 0.00454275869, 0.0364748, -0.00789092854, 0.00265132543, 0.0187550578, 0.0259889606, 0.0048911809, -0.0194850843, -0.00418770034, -0.0175073743, 0.000951523834, -0.00208555441, 0.015078376, 0.00376959401, -0.0235865079, 0.00147332717, -0.00545861106, -0.00781128881, -0.00955671724, -0.00642423751, 0.0296523701, 0.00699498598, 0.01185962, -0.0530663244, -0.0305814948, 0.00348090148, 0.0498011149, 0.0104792053, 0.00293669943, 0.0114547871, 0.0010394589, -0.0214495212, -0.0184763204, -0.00435029715, 0.0311124232, -0.0182374, 0.00323202857, -0.00527610397, 0.0203212965, 0.0252589341, 0.0129878437, -0.00820284896, -0.0041312892, 0.0324928388, 0.00355390413, 0.0195116308, 0.0111295935, 0.0100544626, -0.044332549, -0.0046058069, 0.00311422884, -0.00996818673, 0.00273594214, 0.0107778534, 0.0148925511, 0.0217149854, 0.0163526051, 0.00709453505, -0.00944389496, 0.032758303, 0.0233741365, -0.0198832806, -0.0119857155, 0.0302894842, -0.0117600709, 0.00652046828, -0.00709453505, 0.00848822296, 0.0166711621, 0.00368663622, -0.0108840391, 0.0109039489, 0.0162331462, 0.0323601067, 0.016219873, -0.017361369, -0.0041379258, -0.00594640151, 0.00140944985, -0.0163791515, -0.0180648491, 0.0323866531, 0.0246881861, -0.0122843636, 0.0248341914, 0.01456072, 0.00622513937, 0.0150252832, 0.00534247048, 0.029254172, 0.0112424158, 0.0089793317, -0.00446975604, 0.0100411894, -0.0153571134, 0.0105389347, 0.00980227161, -0.0123507297, -0.00505709602, 0.0107712168, 0.0307407733, -0.034722738, -0.0204540286, -0.00357713224, 0.0200558323, -0.00511350716, 0.00253352546, -0.000686474261, 0.031935364, -0.000211127131, -0.00699498598, -0.0175073743, 0.00261150557, 0.0105920285, -0.0163526051, -0.0196576361, -0.0041346075, -0.000153367888, 0.00844840333, 0.00524623925, 0.015715491, 0.00829576142, -0.0124900984, -0.0396072827, 0.00993500371, 0.0187550578, -0.0126692867, 0.0289090686, -0.0163526051, -0.0116140656, -0.0295992754, -0.0314309821, -0.038041044, -0.00266293949, 0.00718744751, 0.0180913955, -0.0169100799, 0.00694189314, 0.00952353422, 0.00679256953, 0.010751307, -0.000708043226, -0.00805020705, -0.0138837863, -0.00116140663, 0.0642423779, -0.0271039121, -0.000474932342, 0.0267853532, -0.0135254096, 0.00752591481, 0.00930452626, 0.0131404856, -0.0163526051, 0.00407487806, 0.0320415497, -0.0110167712, 0.0200558323, 0.00391228124, 0.0147863645, 0.00705471542, -0.0102801071, 0.008554589, 0.00960317347, 0.0160207748, 0.00909215398, 0.018383408, 0.0152907474, 0.0142023433, -0.00534910709, 0.007791379, 0.0138306934, 0.00585348904, 0.00376627571, -0.0102801071, -0.0262809712, -0.0360235125, 0.024807645, 0.00484140636, -0.015078376, 0.00386582478, -0.0162331462, -0.002297926, 0.0100345528, -0.0169100799, 0.0027575111, 0.0105522079, 0.02569695, 0.00903242454, 0.0017553831, -0.0192196202, 0.023148492, -0.0264667962, 0.016856987, -0.00919834059, 0.00202416582, -0.00771173974, 0.00971599575, 0.0360500589, 0.00961644668, 0.00248043262, 0.0268251747, 0.011992353, 0.0133130373, -0.000520973816, 0.015901316, -0.0093642557, -0.00933770929, 0.00481486, 0.00250366074, -0.00387577969, 0.00653042318, 0.0146801788, 0.0218344443, -0.0114083309, -0.0171489976, -0.0258695018, -0.0308735054, 0.000830405683, -0.00103448145, 0.00234604138, 0.0144279879, -0.0088466, 0.0102601973, 0.00968281273, 0.00449962076, 0.0157685839, -0.0191001613, -0.0232812241, -0.028431233, -0.00320548215, -0.0177064724, 0.0139766987, 0.044969663, 0.0135785025, 0.000364806096, -0.0217813514, 0.0039919205, 0.0328910351, -0.00613886351, -0.00671956688, 0.000153678979, -0.0305549484, -0.0349351093, -0.0142687093, 0.00122196565, -0.0276613869, -0.000939080201, 0.0112955086, 0.00570748374, -0.00436688866, 0.0178657509, -0.00246384111, -0.0109304953, 0.0119193494, 0.0153703867, 0.0377755798, 0.00293669943, -0.00278239837, 0.0198036414, -0.0130542098, -0.0355987698, -0.00344108185, 0.0139501523, 0.0179852098, 0.0298647415, 0.0239979792, 0.00245388621, 0.00685561728, -0.00549179409, 0.00832894444, -0.0333157778, 0.0157951303, -0.0110167712, 0.00604263274, 0.0257898625, -0.00396537408, -0.00893287547, 0.00152476097, 0.0350147486, -0.00116970239, 0.0213698819, 0.00419101864, -0.00996155, -0.00527278567, -0.00511350716, -0.0340590775, -0.0319884568, 0.0423415676, -0.0292276256, 0.00618531974, 0.000522632967, 0.000746618491, -0.0163393319, 0.0127621992, -0.0328379422, -0.0102801071, -0.00451621227, 0.00498409336, 0.022391919, 0.0107579436, -0.0226308368, 0.0157022178, -0.000140509452, -0.00520641962, -0.00899924152, 0.0055083856, 0.000360036036, 0.00692198332, -0.00196111808, 0.0186886918, 0.00790420175, -0.00201421091, 0.00264800712, -0.012277727, -0.00488454429, -0.00532919727, 0.0103597464, -0.0190868881, 0.00673615839, -0.00803693384, 0.0136183221, 0.0199894663, -0.0024472496, -0.00138954, -0.0185825061, 0.0263340641, 0.0050405045, 0.0235068686, 0.00583357923, 0.0106384847, 0.0290683471, -0.0171755441, 0.0114879701, -0.00803693384, 0.00866077468, -0.0240112524, 0.000351532886, 0.00564111769, 0.039368365, 0.0145474467, 0.00735336263, -0.00383264176, -0.02371924, 0.0112225059, 0.00769183, -0.00773828616, 0.0488719903, -0.00150485116, 0.0527477674, -0.0180913955, 0.00965626631, 0.01456072, 0.0103730196, 0.0103730196, -0.00859440863, 0.00229460769, 0.00522964774, 0.00832230784, 0.0185028668, -0.0196709093, -0.00820284896, -0.000398196542, -0.0122312708, -0.0250863824, -0.00520310132, -0.0204009358, -0.00451953057, 0.0369791873, 0.00263639283, -0.00370654627, -0.00157370593, 0.0138837863, -0.00258495915, -0.0107911266, -0.014308529, -0.00170394941, -0.0055050673, 0.00656360621, -0.00295660924, -0.000466221798, 0.00682907086, -0.00927798, 0.0174542814, 0.0249403771, -0.00294997264, -0.00792411156, 0.0140297916, 0.0134125873, 0.0149058243, 0.0105190249, -0.0198169146, -0.013804147, -0.0273693763, -0.00425074808, -0.0139368791, -0.00268782675, 0.0068888003, -0.00830239803, -0.00964963, 0.0127091063, 0.0088333264, -0.00178027037, -0.0117003415, 0.0128617482, 0.00559134316, 0.00289853895, 0.00956335384, 0.00387577969, 0.00573403, 0.00141940475, 0.0206000339, 0.000450045045, -0.00108093768, -0.000613056764, 0.00144761032, -0.0171755441, -0.0160075016, -0.00439343508, 0.00900587812, -0.00213035149, 0.0111362301, -0.00934434589, 0.00578712299, -0.00953017082, 0.00937752891, 0.000669053174, 0.00235765544, 0.00285540102, -0.00559134316, -0.014945644, 0.0221131817, 0.00510687055, -0.00109006301, 0.0207858589, -0.00119541923, 0.0155960312, -0.0089793317, 0.00247545517, 0.00409810618, 0.0121914512, -0.00777810579, -0.0121848145, 0.00400519371, 0.00526614906, -0.0166313425, 0.00224483293, -0.0163526051, 0.000107326414, -0.00683570746, 0.0276613869, 0.00144926948, -0.00347426487, 0.00263805198, -0.00923816, 0.00711444486, -0.00367999962, 0.00909215398, -0.0328910351, -0.0153172938, 2.87759212e-05, 0.00272598723, 0.0184763204, 0.011322055, -0.0109835882, -0.0155694848, 0.0306345876, 0.00822275877, -0.00149738486, -0.0331299528, -0.00055954908, -0.0111096837, -0.0177462921, -0.0071741743, -0.0011589179, 0.00368663622, -0.0088466, -0.00414124411, 0.0263738837, 0.00976908859, 0.00694189314, 0.00472526578, -0.00870723091, -0.0207858589, -0.00232613157, -0.0041279709, -0.00438348, 0.00212703319, 0.0162596926, 0.0102801071, 0.021502614, 0.00243895384, -0.0315106213, -0.00915852, -0.0160075016, -0.00195614062, -0.0416248105, 0.00176036055, -0.00822939537, 0.00720072072, -0.00994164, 0.00291678961, 0.00139617664, 0.00760555407, 0.00569089223, -0.0140696112, -0.00745291216, -0.0168171674, -0.00966290291, 0.00695516635, -0.00433702394, 0.00549511239, 0.00765864691, -0.0029997474, 0.00740645593, 0.013737781, -0.00299642887, -0.0101075554, 0.0170162655, -0.0199629199, 0.00892623886, -0.00125348952, -0.0208522249, 0.00406824145, -0.00618531974, 0.0044199815, 0.00585348904, 0.00200757431, -0.00144678075, -0.0156093044, -0.00166495924, 0.00962972, -0.0129082045, 0.00463567162, -0.000753255154, -0.0309796911, -0.0395010971, 0.0114083309, -0.00100959418, 0.00508696074, 0.0189939756, -0.00104277721, -0.00447971094, -0.00100627588, -0.0134457704, -0.00373972929, 0.0352536663, -0.0148527315, 0.0157420374, -0.000414995447, -0.00730690639, -0.000833724, -0.00633796165, 0.0233741365, -0.0212238766, 0.00274091959, -0.0144678075, 0.0298912879, 0.00403505843, -0.0356518626, 0.00974917877, 0.0100544626, 0.0111229569, -0.0269313604, 0.0107313972, 0.0112490524, 0.00294001773, -0.00700162258, -0.0214097016, -0.00355722243, 0.0273162834, -0.00222658226, 0.00454275869, -0.00285540102, -0.00667974679, 0.00383596, -0.00653706, -0.0036634081, 0.00499073, -0.0214495212, -0.0103332, -0.00769183, 0.0224715583, 0.0198169146, 0.0340059847, -0.0111030471, 0.0099217305, -0.00317229913, -0.00925143342, 0.000108155989, -0.0166180693, -0.0286436044, 0.0106252115, -0.0241041649, -0.0138572399, 0.0173746422, 0.0208920445, -0.0117932539, -2.13356616e-05, 0.0141094308, -0.00257666339, 0.00741972914, 0.00174045074, -0.0129878437, 0.00549511239, -0.00471531088, -0.0223521, -0.00340458052, -0.00844840333, -0.00804357, -0.00955671724, -0.00198766449, 0.00769846654, 0.0196443629, -0.0167109817, -0.00125929655, 0.00804357, -0.0142819826, 0.00569752883, 0.0215291604, -0.00320880045, 0.00527278567, 0.0171755441, -0.0201089252, -0.0211973302, 0.00116721366, -0.00968944933, -0.0142156165, 0.00575725827, 0.00223321887, 0.00599285774, -0.00556811504, -0.0025185931, -0.00493100053, 0.0165915228, -0.00309431902, 0.0178126581, 0.0148660047, -0.0152376546, 0.00924479682, -0.000530099147, -0.00987527426, 0.0191665273, -0.0147199985, 0.00265796203, -0.0140696112, -0.0011074841, 0.00170560856, 0.00101788994, -0.00913861, 0.0100080064, 0.0140828844, 0.0203080233, 0.00972926896, 0.0114216041, 0.0207194928, 0.0185559597, 0.0185294133, -0.00653706, 0.0120653557, -0.00743963895, 0.0221397281, -0.000824598654, -0.000634210941, 0.00773828616, 0.00831567124, 0.0202682037, -0.0113353282, 0.0156225776, 0.00521637453, -0.000101674923, 0.00211541913, 0.00293669943, 0.00973590557, 0.000998809701, 0.00156541017, -0.0166844353, -0.00857449882, -0.00804357, -0.015967682, -0.00370322797, -0.00513673527, 0.00540551823, -0.0109769516, -0.00535906199, 0.0132134883, 0.00448634755, -0.00700162258, 0.0381472297, -0.00462903501, 0.00355058582, 0.00109172217, 0.00771837635, 0.00985536445, -0.0200027395, -0.0151845617, 0.00834221765, -0.0208124053, -0.0120852655, -0.0157951303, 0.0172950029, -0.000453363347, -0.0143483486, -0.00996818673, 0.0153571134, 0.00476176711, 0.00207725866, -0.0187285114, 0.0109437685, 0.00708789844, -0.00833558105, 0.0148394583, 0.0239448845, 0.00687552709, -0.00243065809, 0.0234139562, -0.0022083316, 0.0150916493, 0.0197903682, 0.0199363735, 0.00100959418, -0.00299808825, 0.00040504054, -0.0151049225, -0.00426733959, -0.00479826843, -0.00689543691, -0.00559466146, 0.00700162258, -0.00730027, 0.0268915407, 0.00949035119, -0.00801038742, -0.000770261453, 0.0165649764, -0.0364482552, -8.00022462e-05, 0.0132732177, 0.0127422893, 0.0258296821, -0.00367999962, -0.00603931444, -0.0101473751, -0.000985536491, 0.00449962076, 0.00361695187, 0.006742795, -0.0177462921, 0.00624173088, 0.00642091921, 0.00131238939, 0.0246483665, 0.0159411356, -0.0186090525, 0.00746618537, 0.0194850843, 0.0249536503, 0.0251527485, 0.0307673197, 0.00135386828, 0.00660674414, 0.0139236059, -0.0195116308, -0.00308934157, -0.00447971094, -0.0149854636, -0.00951026101, 0.0116007924, -0.00185161398, 0.00167076627, -0.000649972877, -0.00415119901, -0.00681579765, 0.00914524682, -0.0122179976, 0.0239183381, -0.00409478787, -7.89134283e-05, 0.00415783562, -0.0285374187, 0.0149987368, -0.00223487802, 5.26521617e-05, 0.0126692867, -0.00689543691, 0.0143350754, 0.0169499, -0.00809002668, 0.0224848315, -0.0292276256, -0.0169366263, 0.0199231, 0.0135652293, 0.00740645593, -0.00260984641, 0.0147465449, -0.00686225388, 0.011036681, 0.0382799618, 0.00188479701, -0.00314243441, 0.0182904936, 0.00453944039, -0.0164986104, -0.0146536324, -0.00621186616, 0.0117534343, 0.000682741171, 0.0196178164, -0.012291, 0.00549511239, -0.00414788071, -0.0145474467, 0.0123507297, 0.00324530178, -0.010081009, 0.0292276256, 0.0220600888, 0.014374895, 0.00561457127, 0.0120454459, 0.0128418384, 0.0228564814, -0.0243298095, -0.0141757969, 0.0105190249, 0.0187816042, 0.0247280058, 0.0191267077, -0.0254978519, 0.0332095921, 0.00907224417, -0.000100689802, -0.0214229748, -0.00820284896, -0.00596631132, -0.0229759403, -0.00245720451, 0.00288028829, 0.00357381394, 0.0208522249, -0.00331830443, -0.00567430072, -0.0200027395, -0.00463567162, 0.00980227161, -0.000940739352, -0.00753255142, 0.00666315528, -0.00310593308, -0.00381605024, -0.0170560852, 0.00353399431, -0.0055083856, -0.0100345528, -0.00288194744, -0.0065536513, 0.00561125297, -0.00243563554, -0.0243165363, 0.0062715956, -0.00630146032, 0.00311588799, -0.00408151466, 0.0112623256, 0.0178790241, -0.00104111806, 0.000793489569, -0.000683570746, -0.00314575271, -0.0205469411, -0.00584021583, 0.00636450807, -0.0026828493, -0.00586676225, 0.00638109958, -0.0158482231, -7.89134283e-05, -0.0105190249, -0.00700825918, -0.0106451213, 0.00178856612, 0.012815292, 0.014693452, -0.00473190239, 0.0123772761, -0.0133395838, 0.0212238766, 0.00686225388, 0.0184763204, -0.000974751951, 0.00354726752, 0.00432706904, -0.0138306934, 0.0167508014, -0.00480822334, -0.0146801788, 0.0100876456, 0.0119193494, -0.0109371319, 0.0145209, -0.0035174028, 0.0045560319, 0.00761219067, 0.00780465221, -0.0115875192, -0.0181179419, -0.0013397655, -0.00210048677, 0.0373773836, 0.0114415139, -0.0228830278, 0.00812321, -0.00615213672, -0.0202151109, 0.00227469765, 0.0115875192, 0.00151978352, -0.00504714111, 0.0346961915, 0.00735336263, 0.0175604671, 0.00477504032, 0.000648313726, -0.0186621454, 0.00533583388, -0.0285108723, 0.0157951303, 0.0127356527, -0.0216486193, -0.00106185745, -0.00327682565, -0.0337670669, 0.00754582463, 0.00222658226, 0.0201487448, -0.00393219106, 0.000254265091, -0.000380153273, -0.00384591497, -0.0199363735, 0.00549179409, -0.0230157599, 0.0187152382, -0.0133064007, -0.0046124435, 0.00227137934, -0.0166711621, 0.015715491, -0.00966953952, 0.0176401064, -0.012596284, 0.0351209342, 0.0057970779, 0.00951689761, 0.00445648283, 0.0345900059, -0.0283781402, 0.0121184485, -0.0362889767, -0.0102933804, 0.0270640925, 0.024807645, -0.0115145165, -0.00838867389, 0.0280064903, 0.00104609551, 0.0140961576, 0.00495754695, -0.0268119015, -0.00631473353, 0.0124104591, -0.00331498613, 0.0137776006, 0.00346762827, 0.0107579436, -0.00498741167, 0.0174808279, -0.031616807, 0.0166313425, 0.0219406299, -0.0118198, -0.0266791675, -0.0168304406, -0.00616209162, -0.00552829541, 0.0194983575, -0.0104062026, 0.00862095505, -0.0188612435, 0.0084085837, -0.0141625237, 0.000922488631, 0.0138439666, -0.00429388601, 0.000443823228, 0.0032751665, 0.0336077884, 0.00228797086, -0.0361297, 0.00382600515, -0.0308204126, -0.0220202692, 0.00694852974, 0.0151314689, -0.00181345339, 0.0385985188, 0.0131736686, 0.0121383583, -0.00925143342, 0.017361369, -0.00374304759, 0.0143881682, 0.0132400347, 0.00580371451, 0.00251693395, -0.0245687272, -0.0251129288, -0.0026894859, 0.0249669235, -0.0360766053, -0.00639437279, -0.00225312868, -0.0171755441, -0.0260686, 0.042368114, 0.012277727, -0.00959653687, 0.00744627556, 0.0282454081, 0.023984706, 0.0038990078, -0.0203478429, -1.23140208e-05, 0.00353067601, 0.0141094308, 0.00999473315, -0.00576389488, 0.00779801561, -0.00759228086, -0.000112822352, -0.0127356527, 0.0199629199, 0.0115875192, 0.0218477175, 0.0117799807, -0.012881658, 0.00748609519, 0.0328644887, -0.0162066, -0.00171722262, 0.00472526578, -0.00653374149, 0.00370322797, 0.0055050673, -0.00318557234, 0.00649724, 0.0202283841, -0.0101540117, -0.00331332698, -0.00341121713, -0.00696180295, 0.0236396, -0.0230157599, -0.00891960226, -0.0145209, 0.00178524782, 0.0177595653, 0.0102801071, 0.0151845617, 0.012596284, 0.00391891785, 0.00918506738, 0.00986863766, 0.00463235332, 0.0282985, 0.00525287585, 0.0504647754, 0.016856987, -0.00790420175, -0.00249370583, 0.016790621, 0.0166977085, 0.00918506738, -0.0107778534, -0.0248607378, 0.0159278624, -0.00590658188, -0.0225511976, -0.00438679848, -0.00735336263, -0.00241904403, 0.00196609553, -0.00972263236, -0.027289737, 0.0187285114, 0.023533415, -0.0108442195, -0.0130608464, 0.013551956, 0.00598953944, -0.00468544615, 0.00650055846, -0.000460829528, 0.0245156344, 0.00532256067, 0.0107380338, 0.0025185931, -0.00434034225, 0.0121848145, 0.0163393319, 0.00875368714, 0.0267455336, -0.0194452647, -0.00994164, 0.0133395838, 0.000359828642, -0.00210878253, 0.0105920285, -0.013737781, 0.0121649047, 0.0338201597, -0.0155031187, -0.000262353453, -0.00355390413, 0.013518773, -0.000324364257, -0.0196576361, 0.0118330736, -0.0136050489, -0.00580703281, 0.0105853919, 0.015649125, -0.00795065798, 0.00836876407, -0.0018715238, 0.00993500371, 0.0172684565, 0.0190736149, -0.00301136146, 0.0170029923, 0.00974917877, -0.00124519377, 0.00699498598, -0.00487127108, 0.0240908917, 0.00309100072, -0.00392223615, 0.00966953952, -0.012782109, -0.0375366621, 0.00633796165, 0.00041727678, -0.0172419101, -0.0215689801, 0.0132665811, -0.00882669, -0.0190736149, 0.034722738, -0.014945644, 0.0175870135, -0.0147996377, -0.0121848145, 0.0150651028, -0.0114481505, 0.00673284, 0.00296324585, -0.0375101157, -0.0160738677, -0.0208654981, 0.000475347129, -0.0133064007, 0.0105853919, -0.010047826, 0.000566185685, 0.00742636574, -0.0147067253, -0.00101374206, -0.0180913955, -0.0227635689, -0.00394878257, -0.000139368785, 0.00610236218, 0.00823603198, 0.00325193838, -0.00280230818, 0.00025530206, -0.0045626685, -0.0163127854, 0.0033713975, 0.00286369678, 0.00292342622, -0.0011108024, -0.0190736149, -0.022896301, -0.0121449949, 0.0089793317, -0.0183303133, 0.00119873753, 0.00647733035, 0.0147332717, 0.00191466173, 0.0231617652, 0.00345103675, 0.00809666328, 0.0134192239, 0.00461908, -0.00100129843, -0.0176932, -0.00250532, -0.00828912482, -0.00573071185, 0.00719408412, 0.00781128881, -0.0109636784, -0.0182639472, 0.00894614868, 0.00617204653, 0.00418438204, 0.0120454459, 0.00143267796, -0.0184232276, -0.00728699658, -0.0121383583, 0.013737781, 0.0130807562, -0.00264137029, -0.00483476976, -0.00816966593, -0.0142421629, 0.00675275, -0.0108707659, 0.0166844353, -0.0113353282, 0.011322055, -0.00270441826, -0.00400519371, -0.00584021583, 0.00675275, -0.00829576142, 0.0101009188, -0.00508032413, -0.0018814787, 0.0131205758, 0.0144412611, -0.017042812, 0.00939080212, 0.016286239, -0.00629482372, -0.00542210974, 0.0145341735, -0.00537897181, 0.0193258058, 0.000367917, 0.0112158693, -0.0425008461, 0.0118728932, -0.00487127108, 0.0171357244, -0.00431711413, -0.00133312889, -0.00616541, -0.0293869041, 0.00385255157, 0.0088466, -0.00639769109, 0.021250423, 0.0203478429, 0.0148261851, 1.53925259e-06, -0.0219008103, 0.0165915228, -0.0147598181, -0.0197505485, 0.0078444723, -0.00850149617, 0.00202084752, 0.00589330867, -0.00968281273, 0.0170029923, 0.00578048639, -0.00330005377, -0.00675938651, -0.00495754695, -0.000138020725, 0.00401514862, 0.0158216767, -0.00576721318, 0.0114680603, 0.00631473353, -0.00028350763, -0.00609572558, -0.0211176891, 0.001673255, -0.0240112524, -0.0091187, 0.000338881859, 0.00243895384, 0.0108176731, -0.0023725878, 0.0047551305, 0.0224582851, -0.0149058243, -0.00386250648, 0.00793074816, -0.0152907474, 0.00818293914, -0.0116339754, 0.00240743, -0.0243563559, 0.018184308, -0.00899260491, 0.0042739762, -0.006122272, 0.0266128015, 0.00395541918, -0.0257102232, 0.026519889, -0.00015399007, -0.00532587897, 0.0115676094, -0.0291479863, 0.00673284, 0.00121947692, 0.00751927821, 0.0184365, 0.0192992594, -0.012881658, -0.000318349834, -0.00573071185, 0.0148792779, -0.0163924247, -0.00856122561, -0.0068888003, -0.0140961576, 0.0211707838, 0.000774409331, 0.00878023356, 0.032758303, -0.00236263289, 0.00397532899, 0.000871054945, 0.00150568073, 0.0221397281, -0.0180515759, 0.0132068517, 0.0181312151, 0.00923152361, 0.0273162834, 0.00102037867, 0.00769846654, -0.0166578889, -0.0118795298, 0.00793738477, 0.018184308, -0.028431233, -0.00619527465, 0.0267588068, -0.00648728525, 0.0153969331, -0.0112291425, -0.00775155937, -0.0161535069, 0.0146403592, -0.000558719505, 0.0177197456, 0.0215424336, 0.00392887276, 0.00951689761, -0.0138705131, 0.0221264549, -0.0191798, 0.00139617664, -0.00835549086, -0.00136299361, 0.00480822334, -0.0113486014, -0.0169100799, 0.00532256067, 0.00237756525, 0.00314077525, 0.00500068488, -0.000290766446, -0.0062682773, -0.0059099, 0.0135718659, -0.020732766, 0.0122644538, -0.00831567124, 0.00901251473, -0.0224715583, 0.00240743, -0.00455935, -0.00726708677, 0.00960317347, -0.000844923314, -0.0208787713, 0.00588999037, -0.0237723328, -0.0146536324, -0.000679837656, -0.0122710904, 0.0111959595, 0.0149987368, 0.0173215494, -0.0268782675, 0.00339628477, 0.00633796165, -0.00529933255, -0.0168171674, -0.0167773478, 0.0150518296, -0.00759228086, 0.00304122618, -0.016286239, -0.00347426487, 0.00207891781, -0.0129281143, -0.0133329472, -0.00515332678, 0.0129878437, -0.00583689753, -0.0134988632, 0.0153040206, 0.00017690711, 0.015516392, 0.00342117203, 0.011069864, 0.00767192, -0.0045626685, -0.0117600709, -0.00396537408, -0.00847495, -0.00597294793, 0.0204938482, 0.0127688358, 0.00718081091, -0.0206796732, -0.013551956, 0.0218344443, 0.0107247606, 0.00979563501, -0.00415119901, 0.00858113542, -0.0195514504, 0.0373773836, 0.0142687093, -0.00448634755, 0.0169764459, -0.00678925123, -0.00581698772, 0.0084085837, 0.00130409363, 0.000208845784, -0.0117866173, -0.0189143363, -0.0123374565, -0.0118131638, 0.00235101883, 0.00590658188, -0.0222459137, -0.0129745705, -0.00602604123, -0.0104526589, -0.0129745705, 0.0075126416, -0.00723390374, 0.00229460769, 0.0216751657, 0.00177529291, 0.0293869041, -0.0169499, 0.0257898625, 0.000887646456, 0.00887314603, 0.0104261125, -0.00126593316, 0.00708126184, -0.00699498598, 0.0103132902, 0.0158614963, -0.0101805581, 0.00519978302, -0.0158216767, -0.0205203947, -0.00508032413, -0.0241572578, 0.0085479524, -0.0244625416, -0.0167508014, -0.010014643, -0.0138572399, 0.00858113542, -0.0135851391, 0.0343245417, 0.00913861, 0.0185957793, -0.00945053156, 0.0023692695, -0.000161145159, 0.00431711413, 0.0136714149, 0.00107098278, 0.0142952558, 0.00437684357, -0.0035107662, 0.00693525653, -0.0123905493, 0.00309431902, 0.00583689753, -0.0010328223, -0.0209185909, 0.011992353, 0.0081165731, 0.0210247766, 0.00644082902, -0.000474932342, -0.0179586634, -0.00741972914, 0.0119392592, -0.0194319915, 0.00781792589, -0.0114348773, -0.00189475191, -0.00134391338, -0.00333157764, -0.00143765542, -0.0280595832, -0.0026861676, 0.0113486014, -0.0064109643, -0.00284876442, -0.0093642557, -0.0222990066, -0.0162596926, -0.0175870135, -0.00790420175, -0.0091120638, 0.0111229569, -0.0321742818, 0.0157818571, -0.00948371459, -0.0158482231, 0.00119044178, -0.00779801561, 0.0213167891, -0.012881658, -0.00213201065, 0.00238254271, -0.0220866352, -0.0130807562, -0.0320415497, -0.00101706036, -0.0143218022, -0.0316964462, 0.0104062026, 0.00578048639, 0.00490445411, 0.00150816946, -0.0179586634, -0.00444320962, -0.00407487806, -0.0167375281, -0.0100013698, -0.00440670829, -0.0568093732, 0.0286701508, 0.0132599445, -0.00871386752, 0.00848822296, -0.0144147146, -0.00448966585, -0.000368953974, -0.00343776355, 0.0189276095, 0.000132213696, 0.00998146, 0.0105920285, -0.0050405045, 0.00955671724, -0.0329441279, -0.00909215398, 0.0153571134, 0.000540468842, 0.00689543691, 0.000278115389, -0.00196609553, -0.00781128881, 0.000631722214, -0.0161004141, 0.000919999904, -0.000254265091, -0.0093576191, 0.00298315566, -0.00611231709, -0.00153554545, 0.0022083316, -0.0291745327, -0.0167640746, -0.00279567158, -0.00569089223, 0.00205734884, 0.0182108544, 0.0162995122, -0.00148162292, 0.00259491405, -0.00947707798, 0.00524955755, 0.017361369, 0.00909879059, -0.0113419648, -0.00631805183, 0.00923816, 0.0190868881, -0.00546856597, 0.00668970169, -0.0138837863, -0.00197107298, -0.00984209124, 0.0153040206, -0.0116339754, 0.0447838381, 0.00622845767, -0.0159411356, -0.00564111769, 0.0243563559, -0.00433702394, -0.0100279162, 0.00380277704, -0.00181843084, -0.00478167692, -0.011925986, 0.0074993684, -0.0254845787, 0.00794402137, 0.0406691395, -0.00432375073, -0.000888476032, -0.0194452647, -0.00198766449, 0.0166977085, 0.0132068517, -0.00369659113, 0.00186488719, -0.0302363914, -0.00933770929, 0.0314575285, -0.0162331462, -0.0102867438, -0.00483145146, -0.00392555445, 0.00330669037, -0.000139265088, -0.00463567162, 0.0290152542, -0.0130143901, -0.0192461666, 0.0142819826, 0.00255343528, 0.0293338113, 0.00858777203, -0.00931779947, -0.0235068686, -0.0157420374, -0.0180383027, -0.00189143361, 0.00241904403, 0.000342407555, 0.00974917877, 0.0156623982, -0.00349417469, -0.000503552728, 0.0129612973, 0.000438845775, 0.0102336509, 0.00822939537, 0.00801702403, -0.0055150222, 0.0103730196, -0.0341918096, -0.0203478429, -0.0178259313, -0.00555152353, 0.0132798543, 0.0332892314, 0.0262544248, 0.000860270462, 0.0402709432, -0.0140430648, 0.00291844876, -0.0365809873, -0.0197240021, -0.00509359734, 0.00166661839, 0.00396205578, 0.00968281273, -0.0236926936, -0.0101672849, -0.00355390413, -0.00838867389, -0.00824266858, -0.0214495212, -0.0103066536, 0.0121317217, -0.0225511976, -0.00401514862, -0.00300970231, -0.0132931275, -0.00195945892, -0.00547520258, -0.0101606483, 0.000828331744, -0.00284876442, -0.00300638401, -0.00218676263, -0.0116472486, -0.0119989896, -0.0227104761, 0.0095036244, 0.00833558105, -0.0106053017, 0.0220335424, -0.00816966593, -0.0141890701, -0.0108110365, -0.00116472493, 0.0209053177, -0.00382268685, 0.0272100978, -0.00255675358, 0.0148527315, -0.0172684565, -0.0193788987, -0.00248541, 0.0048911809, -0.00441002659, -0.00890632905, 0.00177861121, 0.0086939577, 0.00151480606, 0.0122246342, 0.0314309821, -0.0127356527, 0.00264634797, -0.00519978302, 0.00757900765, -0.000754499517, -0.0091187, -0.0121250851, 0.00881341659, -0.00859440863, 0.000233525687, 0.0153836599, -0.00169565366, 0.0333688706, 0.00120122626, 0.00739981886, 3.8782684e-05, 0.00578048639, -0.00172220008, 0.0161933266, -0.0263738837, 0.0104592955, 0.0102270143, -0.022829935, 0.0166313425, -0.00836876407, 0.0301036593, -0.00824266858, 0.00898596831, -0.0270773657, 0.00691534672, 0.00499404827, -0.000132732181, -0.00597294793, -0.00649392186, 0.014945644, -0.00366672641, 0.00997482333, 0.0117600709, 0.0117600709, 0.00312086544, 0.00813648291, 0.00317395828, 0.0226706564, -0.0189408828, 0.0294134505, 0.00388241629, 0.00454275869, -0.00257832254, 0.000297817838, -0.0108375829, 0.0074993684, -0.00525619416, 0.00562120788, -0.00280064903, 0.00437684357, 0.0199761931, 0.0106517579, 0.016790621, 0.00512014376, 0.0161269605, -0.00106600532, -0.000891794334, 0.000618034217, 0.000573237136, 0.00570084713, -0.0263473373, -0.010300017, 0.0144279879, 0.0104194758, 0.0143881682, 0.00975581538, -8.78832216e-05, -0.0206398536, -0.000419765536, 0.00995491352, 0.0249403771, 0.00479495, 0.0183303133, 0.00161684386, -0.0095036244, -0.011255689, -0.011640612, 0.0311124232, 0.00790420175, -0.0239050649, 0.0055050673, -0.00302297552, -0.0134789534, 0.00539888162, 0.0101805581, -0.00138124428, -0.0079772044, 0.0145474467, 0.00952353422, 0.00630146032, -0.00971599575, -0.00191798]
05 Jun, 2023
unordered_set count() function in C++ STL 05 Jun, 2023 The unordered_set::count() function is a built-in function in C++ STL which is used to count occurrences of a particular element in an unordered_set container. As the unordered_set container does not allows to store duplicate elements so this function is generally used to check if an element is present in the container or not. The function returns 1 if the element is present in the container otherwise it returns 0.Syntax: unordered_set_name.count(element) Parameter: This function accepts a single parameter element. This parameter represents the element which is needed to be checked if it is present in the container or not.Return Value: This function returns 1 if the element is present in the container otherwise it returns 0.Time Complexity: Time Complexity for unordered_set::count() method is O(1) in average cases, but in worst case, time complexity can be O(N) i.e. Linear, where N is size of container. Below programs illustrate the unordered_set::count() function: Program 1: CPP // CPP program to illustrate the // unordered_set::count() function #include <iostream> #include <unordered_set> using namespace std; int main() { unordered_set<int> sampleSet; // Inserting elements sampleSet.insert(5); sampleSet.insert(10); sampleSet.insert(15); sampleSet.insert(20); sampleSet.insert(25); // displaying all elements of sampleSet cout << "sampleSet contains: "; for (auto itr = sampleSet.begin(); itr != sampleSet.end(); itr++) { cout << *itr << " "; } // checking if element 20 is present in the set if (sampleSet.count(20) == 1) { cout << "\nElement 20 is present in the set"; } else { cout << "\nElement 20 is not present in the set"; } return 0; } Output: sampleSet contains: 25 5 10 15 20 Element 20 is present in the set Program 2: CPP // C++ program to illustrate the // unordered_set::count() function #include <iostream> #include <unordered_set> using namespace std; int main() { unordered_set<string> sampleSet; // Inserting elements sampleSet.insert("Welcome"); sampleSet.insert("To"); sampleSet.insert("GeeksforGeeks"); sampleSet.insert("Computer Science Portal"); sampleSet.insert("For Geeks"); // displaying all elements of sampleSet cout << "sampleSet contains: "; for (auto itr = sampleSet.begin(); itr != sampleSet.end(); itr++) { cout << *itr << " "; } // checking if element GeeksforGeeks is // present in the set if (sampleSet.count("GeeksforGeeks") == 1) { cout << "\nGeeksforGeeks is present in the set"; } else { cout << "\nGeeksforGeeks is not present in the set"; } return 0; } Output: sampleSet contains: Welcome To GeeksforGeeks For Geeks Computer Science Portal GeeksforGeeks is present in the set Learn C++ Online – Master everything from basics to advanced concepts. Apply your knowledge with practical exercises and boost your skills. Take the Three 90 Challenge: finish 90% in 90 days for a 90% refund. Start now and level up your C++ programming!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum/Algorithm for Dynamic Time out timer Calculation/Difference between Round trip time (RTT) and Time to live (TTL)/Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms/Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm/Round Robin Scheduling Algorithm with Different Arrival Time/Selfish Round Robin CPU Scheduling/Find the order of execution of given N processes in Round Robin Scheduling/Calculate server loads using Round Robin Scheduling/set::lower_bound() Function in C++ STL/Implementation of lower_bound() and upper_bound() in List of Pairs in C++/Difference between std::set::lower_bound and std::lower_bound in C++/Difference between std::set vs std::vector in C++ STL/std::minmax() and std::minmax_element() in C++ STL/std::rotate vs std::rotate_copy in C++ STL/std::bitset::to_ullong and std::bitset::to_ulong in C++ STL/std::upper_bound and std::lower_bound for Vector in C++ STL/std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++/std::string::append vs std::string::push_back() vs Operator += in C++/Vector push_back() in C++ STL/vector :: cbegin() and vector :: cend() in C++ STL/unordered_multiset cend() function in C++ STL/unordered_multiset bucket() function in C++ STL/unordered_multiset emplace_hint() function in C++ STL/unordered_multiset end() function in C++ STL/unordered_multiset size() in C++ STL/unordered_multiset emplace() function in C++ STL/unordered_multiset find() function in C++STL/unordered_multiset erase() function in C++ STL/unordered_multiset clear() function in C++ STL/unordered_multiset swap() function in C++ STL/unordered_multiset bucket_size() function in C++ STL/unordered_multiset bucket_count() function in C++ STL/unordered_set bucket_count() function in C++ STL/unordered_set cbegin() function in C++ STL/array::cbegin() and array::cend() in C++ STL/array::rbegin() and array::rend() in C++ STL/multimap rbegin in C++ STL/vector rbegin() and rend() Functions in C++ STL/multiset rbegin() and rend() function in C++ STL/map rbegin() function in C++ STL/map upper_bound() function in C++ STL/Set upper_bound() in C++ STL/multimap upper_bound() function in C++ STL/multimap empty() function in C++ STL/multimap value_comp() function in C++ STL/multimap swap() function in C++ STL/multimap::swap() in C++ STL/multimap equal_range() in C++ STL/unordered_set equal_range in C++ STL/set vs unordered_set in C++ STL/unordered_set count() function in C++ STL
https://www.geeksforgeeks.org/unordered_set-count-function-in-c-stl?ref=asr10
PHP
unordered_set count() function in C++ STL
unordered_multiset clear() function in C++ STL, What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, jQWidgets jqxTreeMap width Property, Round Robin Scheduling Algorithm with Different Arrival Time, Difference between Flow and TypeScript, unordered_multiset emplace() function in C++ STL, jQWidgets jqxTree destroy() Method, unordered_set bucket_count() function in C++ STL, jQWidgets jqxTree collapseAll() Method, Find the order of execution of given N processes in Round Robin Scheduling, jQWidgets jqxScrollView buttonsOffset Property, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Vector push_back() in C++ STL, jQWidgets jqxListBox enableHover Property, Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm, std::rotate vs std::rotate_copy in C++ STL, Selfish Round Robin CPU Scheduling, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxSlider buttonsPosition Property, std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++, std::upper_bound and std::lower_bound for Vector in C++ STL, Difference between Round trip time (RTT) and Time to live (TTL), jQWidgets jqxSlider rtl Property, Difference between std::set::lower_bound and std::lower_bound in C++, jQWidgets jqxTooltip opacity Property, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, unordered_multiset erase() function in C++ STL, set vs unordered_set in C++ STL, jQWidgets jqxToolBar height Property, PHP, std::minmax() and std::minmax_element() in C++ STL, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, map rbegin() function in C++ STL, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, map upper_bound() function in C++ STL, Node.js date-and-time Date.transform() Method, unordered_multiset size() in C++ STL, TypeScript Optional Parameters, jQWidgets jqxToolBar theme Property, Difference between std::set vs std::vector in C++ STL, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, Steps to Diagnose and Resolve a Slow Network, How to use Optional Chaining with Arrays and Functions in TypeScript ?, Calculate server loads using Round Robin Scheduling, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, jQWidgets jqxScrollView showButtons Property, Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms, jQWidgets jqxScrollView disabled Property, jQWidgets jqxSplitter destroy() Method, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, set::lower_bound() Function in C++ STL, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, jQWidgets jqxTree collapseItem() Method, multimap upper_bound() function in C++ STL, std::string::append vs std::string::push_back() vs Operator += in C++, unordered_multiset swap() function in C++ STL, unordered_multiset cend() function in C++ STL, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), Set upper_bound() in C++ STL, jQWidgets jqxSortable opacity Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, multimap rbegin in C++ STL, vector :: cbegin() and vector :: cend() in C++ STL, multimap swap() function in C++ STL, jQWidgets jqxSlider height Property, jQWidgets jqxSwitchButton onLabel Property, unordered_multiset bucket_size() function in C++ STL, unordered_set cbegin() function in C++ STL, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, jQWidgets jqxToolBar tools Property, multimap empty() function in C++ STL, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTree width Property, multimap::swap() in C++ STL, multimap equal_range() in C++ STL, Implementation of lower_bound() and upper_bound() in List of Pairs in C++, jQWidgets jqxTree clear() Method, TLS Handshake?, multiset rbegin() and rend() function in C++ STL, Algorithm for Dynamic Time out timer Calculation, Adhoc TCP, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, jQWidgets jqxTabs position Property, Differences between Wireless Adhoc Network and Wireless Sensor Network, jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, std::bitset::to_ullong and std::bitset::to_ulong in C++ STL, unordered_multiset emplace_hint() function in C++ STL, unordered_multiset bucket_count() function in C++ STL, unordered_multiset find() function in C++STL, unordered_multiset bucket() function in C++ STL, Impact of Three-way Handshake and Slow Start Algorithm, array::rbegin() and array::rend() in C++ STL, multimap value_comp() function in C++ STL, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, unordered_set equal_range in C++ STL, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, unordered_set count() function in C++ STL, vector rbegin() and rend() Functions in C++ STL, array::cbegin() and array::cend() in C++ STL, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, unordered_multiset end() function in C++ STL, How to Sort an Array Having Optional Properties in TypeScript ?
GeeksforGeeks
[-0.0187791102, 0.00915754586, -0.0122828484, 0.0118324775, 0.0338460729, -0.023119051, 0.0213175658, 0.0345557481, 0.00884365104, -0.0250297152, -0.0148758944, 0.0200619865, -0.025821276, -0.0299428552, 0.00547610316, -0.0129311094, -0.0221500695, -0.00187142845, 0.00928037427, -0.0145892948, 0.00243780413, 0.025275372, -0.0318808146, 0.0192704238, 0.0145756472, 0.0239242595, -0.0347195193, 0.00548292696, -0.00567740528, -0.0166227873, -0.00465042284, 0.0158585217, -0.0272406284, -0.0115663493, -0.0172505789, 0.0242381543, 0.0326450802, 0.00815444626, -0.0116141159, -0.00580364605, -0.0015848286, 0.0374217443, 0.0197480898, 0.017004922, 0.0150396656, 0.00152000249, 0.0194069, -0.0310346633, -0.0324267186, 0.0145074092, 0.0155173317, -0.0158039313, 0.037913058, 0.032481309, 0.0263535343, -0.0132995956, 0.0168138556, -0.00652014557, -0.00070455781, -0.0173324645, -0.00328054419, -0.019707147, 0.0241972115, -0.0233374126, -0.0220135935, -0.0120644867, -0.0304341689, 0.0614142418, 0.0567194633, -0.0074174758, -0.0310073681, 0.053034611, 0.0111569203, 0.00120610744, -0.00861846562, -0.000390662812, -0.0288237501, -0.0187654626, -0.0166091397, 0.0157220457, -0.0162679497, 0.0348832905, -0.00472207274, -0.0288783405, -0.00789514184, 0.0069398093, -0.00328736799, -0.0367666595, 0.0147667136, 0.0409428291, -0.0362753458, -0.0117710633, 0.0335458219, -0.00447300402, -0.0411066, 0.0367666595, 0.0298882648, 0.0136885522, 0.00143811689, 0.0567194633, 0.0107611399, -0.0148349516, 0.014548352, -0.0034170202, 0.0301339217, 0.0206351858, 0.0333547555, 0.0124807386, 0.0156401601, 0.00297517888, 0.0264490675, 0.00329248584, -0.0209627282, 0.0330272131, 0.00112933968, 0.0112933964, -0.0119416583, -0.00235080067, 0.0257120952, 0.000629496, -0.00291547063, 0.0221773647, 0.0333820507, 0.0132245338, -0.0274862852, 0.0321264714, -4.16092153e-05, 0.0220135935, 0.00171106902, -0.00604589097, 0.00551363407, -0.0272952188, -0.00283870264, -0.0464018732, 0.00494043436, 0.0135861952, 6.65854095e-05, 0.0361115746, 0.0096352119, -0.0354019, -0.0477939285, 0.0036985022, -0.000395780662, 0.0434539877, -0.0127263954, -0.0230917558, -0.00283529074, -0.00597765297, 0.0391959324, 0.00615166, 0.00893918425, -0.0265991911, 0.013797733, -0.00622331, 0.00794973224, -0.00309459539, 0.0185743961, -0.0148758944, 0.0272815712, -0.0246202871, 0.0105154831, -0.00710358052, 0.00381109491, -0.0251934864, -0.0395234749, 0.0497318879, 0.00215802831, 0.0200483389, -0.0583571792, 0.0310346633, 0.0162270069, 0.0281686652, 0.0102357073, 0.0456376038, 0.0120713105, -0.00232691737, 0.054508552, 0.0213721562, 0.0267629623, 0.0140979802, 0.00896647945, 0.00825680327, 0.0204441193, -0.00934178848, 0.0174962357, -5.76291641e-05, 0.00242586248, -0.00790878944, 0.0382133052, 0.0359205082, -0.012910638, 0.0262170583, 0.0340371393, 0.0648534372, 0.0274862852, 0.0115868207, -0.0476028621, 0.021686051, -0.0280867796, 0.042143818, -0.0149987228, -0.0251661912, -0.00126666878, 0.00864576083, 0.0129242856, 0.00973074511, 0.00913707446, -0.0230644606, 0.0311711393, 0.0402877443, -0.0241699163, 0.0155992173, -0.00255210302, 0.0238696691, -0.0311711393, 0.0273771044, -0.0521338694, 0.0409701243, 0.0182468537, 0.0036950903, 0.0338733681, -0.036166165, 0.0069193379, -0.0484490134, -0.0435358733, -0.0237058979, 0.0316351578, 0.00295300153, 0.0126922764, -0.0233783554, 0.0128969904, -0.00491996296, -0.0286599789, 0.0133132432, 0.0395507701, -0.04241677, -0.0251798388, -0.0132791242, 0.0114162248, 0.0105086593, -0.00871399883, 0.0432356261, -0.0260805823, -0.0325631946, 0.00200790446, 0.0247021727, -0.011272925, -0.0441636629, 0.0206488334, -0.00253504352, -0.0255346764, 0.0237468407, 0.0299974456, -0.00205567107, 0.0109180873, 0.0264490675, -0.00377015211, -0.0196116138, 0.00790878944, -0.0138455, 0.00337778335, 0.0326450802, -0.0684564114, 0.0240743831, -0.0149031896, -0.00507008703, 0.0280321892, -0.0596127585, -0.00330272154, -0.0239924975, 0.0495681167, 0.000561257941, -0.0063802572, 0.0103653595, 0.00759489462, 0.0109249111, -0.0182877965, -0.00682039279, -0.0207170714, -0.00258110417, -0.00459242053, 0.00422052341, -0.00803161785, 0.00524750585, 0.0179193113, -0.0363845266, -0.0416252092, 0.00568081718, -0.0349924713, -0.0361115746, -0.00134940736, -0.00421369961, 0.00606977427, 0.000280842214, 0.00745841861, 0.0241289735, -0.0198982153, -0.0316351578, -0.0407244675, -0.0298336744, -0.0269949716, -0.048940327, 0.0113002202, -0.0109112635, -0.0102015883, -0.0105905449, 0.0233783554, -0.0300247408, -0.00301612169, -0.0360842794, 0.00240539107, -0.0511512384, -0.0306252353, -0.0105768973, -0.0106246639, -0.0161997117, 0.00359614496, -0.0105154831, -0.0478212237, -0.00724688079, 0.000982627855, -0.0183833297, -0.000815444684, 0.0525160022, 0.0222183075, 0.0264217723, -0.0270222668, 0.0343100913, -0.0210173186, -0.0463472828, -0.0196525566, 0.02923318, -0.0234465934, -0.0171550456, -0.00199255091, -0.0321264714, -0.00602541957, 0.00394757092, 0.031525977, 0.00826362707, 0.00887777, 0.0265173055, 0.00601518387, 0.00490631536, 0.00999005, 0.0349651761, -0.0149304848, -0.0266537815, -0.0383497812, 0.0538534671, 0.00110460341, -0.0106383115, 0.00480737025, -0.0224776119, 0.0236376598, 0.00105513085, -0.0311438441, -0.0243063923, -0.0154217985, -0.0251252484, -0.00995593145, 0.0414341427, -0.0069295736, 0.0116072921, 0.00164794887, -0.0276364088, 0.000945096952, -0.0120917819, 0.0504142679, -0.0375309251, -0.0221910123, 0.00141423347, 0.00818856526, 0.0202121101, -0.0525705926, 0.00243609818, 0.00204714132, 0.0506599247, 0.000980921905, -0.0142208086, 0.00422734721, 0.0373125635, 0.0160086453, 0.00935543608, -0.00574905565, -0.0117505919, -0.0130402911, 0.0131221768, -0.00102527661, 0.0274180472, -0.0637616292, -0.0128492238, -0.0345830433, -0.0190657098, 0.00223650201, 0.012432972, -0.0453373566, -0.0176873021, -0.0470023677, -0.0462926924, 0.0481760614, -0.0178374257, 0.0120576629, -0.0064484952, -0.0199118629, 0.0208262522, -0.0102561787, -0.0186972246, -0.0293150656, 0.00622672169, 0.0307890065, -0.00466748234, -0.00324642519, 0.02534361, 0.0270905048, -0.0118734203, -0.0476301573, 0.0161587689, 0.00124363846, -0.0114571685, -0.0255892668, 0.0015507096, -0.00558528397, 0.00559210777, -0.00977851171, -0.0064484952, 0.0141525706, 0.0152170844, -0.00417275634, -0.0380222388, -0.00766995642, 0.0031628334, -0.0125216814, 0.03886839, -0.00703534251, -0.0352381282, 0.0233510602, -0.0073901806, -0.0159131121, -0.0560097881, 0.0190520622, 0.0487492606, 0.00662591448, -0.0598311201, 0.0142890466, 0.0601040721, -0.020935433, 0.00860481802, -0.000753603934, 0.0263671819, -0.0259850491, -0.000263995957, 0.0110545633, -0.00953285489, 0.0368485451, 0.00318501075, 0.0337641872, -0.0101128789, 0.03818601, 0.0163907781, -0.00546245556, 0.0328088515, -0.00300588598, 0.0109317349, 0.00503938, 0.0308435969, 0.00900742225, -0.0347195193, -0.0143845798, -0.0200483389, -0.00503255613, -0.0171959884, 0.023664955, -0.00660203118, 0.00328736799, -0.0203076433, 0.00919848867, -0.00130846456, -0.0438361205, -0.0176190641, 0.0176054165, -0.00807256065, -0.038458962, -0.00429558521, 0.0108907921, -0.0143845798, 0.0391686372, -0.0331091, -0.0190793574, -0.00945096929, -0.0478758141, -0.00196866761, -0.035893213, -0.0547269136, -0.00425805431, 0.00463677524, -0.0391140468, -0.0367120691, 0.00597765297, -0.00107219035, 0.0460743308, -0.0367120691, -0.0406971723, 0.0513696, 0.00906883646, -0.0620693266, 0.00400898512, 0.0305706449, -0.0256848, 0.007410652, -0.0118120061, 0.0229552798, -0.021344861, 0.00952603109, -0.0162133593, 0.00466748234, 0.0227642115, -0.00973756891, -0.00915754586, 0.00781325623, -0.00183389755, 0.0266810767, 0.00354496646, 0.035347309, -0.00130505266, 0.0167319681, -0.0229962226, -0.00443888502, -0.02814137, -0.0413249619, -0.00328225014, -0.00119501876, -0.0247158203, 0.00791561324, -0.0158585217, -0.0229006894, -0.00759489462, 0.00324130733, -0.0330545083, 0.0163361877, 0.00521679875, 0.0100446409, -0.00882318, -0.00753348041, -0.0335185267, 0.00609706948, 0.0173461121, -0.00125216821, -0.00830457, 0.0203622337, 0.0155309793, 0.0291512944, 0.0129515808, -0.0176327117, 0.00264593028, 0.025138896, -0.0129242856, -0.00782008, 0.0304887593, -0.0163088925, 0.00261863507, 0.0144528178, 0.0489676222, 0.0184652153, 0.00670438819, -0.0151488464, 0.0130812339, -0.00866623223, -0.012705924, 0.00163259532, 0.0128219286, -0.00779278483, 0.0216451082, -0.0173870549, 0.00382474251, 0.0195160806, 0.00766313262, 0.0037360331, -0.0200483389, 0.00994910765, -0.000277856801, -0.0224639643, 0.000440561882, -0.0211674422, -0.0187654626, -0.0345557481, -0.0255619716, -0.00626425259, -0.0519701, -0.00228768052, -0.003671207, 0.0286053885, 0.00771089923, -0.00112933968, -0.0256575048, -0.0096625071, -0.0232009366, 0.00788149424, -0.0204031765, -0.0189838242, 0.00847516581, 0.00720593752, 0.0281140748, 0.00212220335, 0.00603906717, 0.00830457, 0.00569787668, 0.00465042284, 0.013797733, 0.0162406545, -0.0362207554, 0.00503938, 0.0414341427, -0.0178647209, -0.00980580691, 0.0151897892, 0.00103465933, 0.0378857628, -0.0156811029, 0.00292911823, 0.00560234347, -0.00186460465, -0.0196935, 0.0285507981, 0.0114571685, 0.0125285052, -0.022914337, -0.0107884351, -0.00375309261, -0.0228870418, 0.012808281, -0.0148622468, 0.0127809858, 0.000191279774, 0.00831821747, 0.0310346633, 0.0106451353, 0.01707316, -0.00946461689, 0.00821586, -0.0068579237, 0.0151215512, 0.0134360716, 0.0589576736, -0.00228256267, 0.0178237781, -0.0355110802, 0.027527228, -0.00219385326, -0.0108907921, -0.0203622337, 0.0256575048, 0.0343373865, -0.00194307836, -0.00261351722, -0.0216314606, -0.0180011969, 0.0300247408, 0.00618577888, -0.00536009856, -0.00493019866, -0.0289875232, 0.0216724034, 0.00465724664, 0.00542151276, -0.00851610862, -0.0180284921, -0.0199664533, -0.00775184203, 0.00897330325, -0.0239106119, -0.00276022893, 0.0188337, -0.0166910253, -0.0293150656, -0.0304614641, -0.0349924713, 0.0132586528, 0.0156674553, 0.00525432965, -0.0112865726, -0.00509055844, 0.0177555401, -0.0152853224, -0.0315532722, 0.00273293373, -0.00440135412, 0.038458962, 0.00218532351, -0.0382406, -0.021276623, -0.0190520622, 0.0368758403, 0.0337095968, -0.00511785364, 0.0106451353, 0.000446959195, 0.0282232556, 0.00672485959, -0.00800432265, -0.00355861406, -0.0137567902, -0.0180011969, -0.0539353527, 0.00631884299, 0.0438907109, -0.0121395485, 0.00880953204, -0.0254937336, 0.00553751737, 0.0144664655, 0.0177555401, -0.0294515416, 0.0226140879, 0.000957891578, -0.0237058979, 0.0096829785, 0.00425464241, 0.0120098963, -0.0529527254, -0.0036439118, -0.0064416714, -0.00436723512, -0.0109385587, 0.045391947, -0.006847688, -0.0103721833, -0.0229279846, 0.00995593145, 0.00234056497, -0.0160086453, 0.0246748775, 0.0141252754, 0.00911660306, -0.0436723493, 0.0095874453, 0.0305979401, -0.025616562, -0.0240743831, -0.0239379071, 0.00559893157, 0.0180557873, 0.00510420604, 0.0154900365, -0.014684828, -0.00822268426, 0.0166773777, 0.0167183205, -0.0239106119, 0.0398237258, 0.0247977059, 0.0446003862, 0.0220135935, -0.0141525706, -0.000355477561, -0.00599130057, 0.0425259508, 0.0266674291, 0.000781325623, 0.0244428683, 0.0247158203, 0.0106792543, -0.0120303677, 0.0149168372, -0.0218634699, 0.00619942648, -0.0391686372, 0.0372852683, 0.0189155862, 0.01529897, 0.0300247408, 0.016772911, -0.000115471572, 0.0302976929, -0.0361934602, -0.0287691597, 0.00558187207, -0.0108430255, 0.00329078, 0.0277182944, -0.00560916727, 0.0189838242, 0.00421711151, 0.012944757, 0.0194069, 0.019365957, 0.0198163278, 0.0161724165, -0.0031662453, -0.0283324365, -0.012944757, 0.0152034368, 0.0096625071, 0.0265446, -0.0126991, -0.0258349236, -0.0259577539, -0.0348287, -0.0217815842, -0.0168411508, 0.0358386226, 0.0182877965, -0.0311438441, -0.0176054165, 0.0186972246, -0.0181786157, -0.00329248584, 0.0229962226, 0.0374763347, 0.0343919769, -0.0068954546, -0.0163225401, -0.0121190771, -0.0074038282, 0.0221773647, 0.0139887994, 0.00501549663, -0.0119826011, 0.0096898023, 0.00514856074, 0.0308981873, -0.0021204974, 0.0323175378, -0.0423075892, -0.0393051133, 0.0328361467, 0.029779084, 0.00534986285, 0.0194887854, -0.0278411228, -0.00470842514, 0.0112592774, -0.00288305758, 0.0278820656, 0.0184242725, 0.0152580272, -0.00328736799, -0.00790878944, 0.0021136736, 0.0401512682, 0.0130129959, 0.0132586528, -0.0160768833, -0.0234875362, 0.027186038, 0.00837963168, -0.0196662042, 0.0160495881, -0.00770407543, -0.00955332629, -0.00502232043, 0.0112046869, 0.0211265, 0.00392368762, 0.000469563063, 0.00906883646, -0.0130607625, -0.0374217443, -0.00837280788, 0.0155855697, 0.00630519539, -0.0135793714, 0.0152170844, 0.0655085221, 0.0183969773, 0.0496772975, 0.0147121232, -0.0176054165, -0.00575246755, -0.0193932522, 0.00830457, -0.00708993291, 0.00357567356, -0.0117164729, -0.00456853723, 0.00294105988, -0.007342414, 0.0036473237, -0.0161314737, -0.014753066, 0.00855705142, -0.0255346764, -0.0307890065, -0.0722231492, -0.0223820787, -0.00452077063, 0.0175371785, -0.0248113535, 0.00239003752, -0.0393597037, 0.019229481, 0.0290694088, -0.00745159481, 0.00152938522, 0.00208467222, -0.000489608, 0.0224093739, 0.011272925, 0.00473572034, -0.0271314476, 0.0125762718, -0.0105632497, -0.0119280107, -0.00304682879, 0.0350470617, 0.0191748906, 0.00932131708, -0.0149441324, 0.0286053885, 0.0358113274, 0.00784055144, -0.0265173055, -0.0375036299, -0.055327408, -0.0163634829, 0.0313349105, -0.0162952449, 0.0214403942, 0.0278411228, -0.0064655547, 0.0313349105, 0.0117915347, -0.00407039933, 0.00604247907, -0.0197617374, -0.00935543608, 0.00377356401, 0.0256848, -0.0345830433, -0.00814762246, -0.00910295546, 0.0262716487, 0.00618919078, 0.00988769252, -0.0153535604, -0.0147940088, -0.00592647446, -0.0231463462, -0.0608137473, -0.0196116138, 0.0203758813, 0.0101128789, -0.0123169674, -0.0034545511, -0.00892553665, -0.00662250258, -0.0196662042, -0.00460265623, 0.0124261482, -0.00395780662, 0.00204202347, 0.0214540418, 0.0140979802, -0.00606636237, -0.0068545118, -0.0159540549, -0.0178374257, -0.00807256065, -0.00374626881, 0.0191203, 0.0068579237, -0.00551704597, -0.00561940297, 0.0113343392, 0.0204031765, -0.0103994785, -0.0167865604, -0.0277592372, -0.0158448741, 0.0123169674, 0.0226140879, -0.0106587829, 0.0293423608, 0.0302158073, -0.0074038282, 0.00601518387, -0.0411338955, -0.0294515416, 0.00278411224, 0.00855022762, 0.000188614227, 0.0253299624, 0.0110409157, -0.00721958512, 0.0215905178, 0.0146302376, -0.00266469573, -0.0335458219, -0.025138896, 0.00999687426, -0.00536009856, -0.00597424107, 0.0068647475, -0.0343646817, 0.0276500564, 0.0568286441, 0.0361115746, -0.0206897762, 0.0127127478, -0.0259168092, -0.0106587829, 0.0073151188, -0.0202939957, 0.00311165489, 0.0114912875, -0.016772911, -0.00490631536, 0.0260669347, -0.0166364349, -0.00350743555, -0.0115185827, -0.036302641, -0.00449347543, 0.0122760246, 0.0114912875, 0.00606977427, -0.0200756341, -0.0199391581, 0.0339552537, 0.00185778085, -0.0237604883, 0.00413181353, -0.0311438441, 0.00210514385, 0.000537374639, 0.0227505639, 0.00215973426, 0.00534303905, 0.00602541957, 0.0138932662, 0.00883682724, -0.00725370459, 0.000528844888, 0.0119484821, -0.0180148445, -0.0301066265, -0.0168411508, -0.0299701504, 0.0230098702, -0.00798385125, -0.00263057672, -5.80023407e-05, -0.0345011577, 0.00483807735, -0.012432972, 0.0266537815, 0.0277728848, -0.00701487111, -0.00451053493, 0.0225458499, -0.00898695085, 0.0160222929, -0.0165409017, 0.032071881, 0.0123852054, 0.00621989788, 0.0350470617, -0.00727417599, 0.0118529489, -0.00347672845, -0.00748571381, -0.000540786539, -0.00486537255, -0.0313349105, 0.00700122351, 0.00530892, 0.0168820936, -0.00309118349, 0.0259168092, 0.00405675173, 0.00504279183, -0.0255756192, -0.000820136047, -0.00505985133, 0.00787467, -0.0236786027, 0.000566375791, -0.00283358479, 0.0186016914, -0.0403423347, -0.00756077562, -0.0196662042, 0.0212220326, 0.0374763347, 0.0317170434, -0.0173734073, 0.0156947505, 0.000519462104, -0.0305706449, 0.00355520216, -0.00219044136, -0.00227744482, 0.0227778591, 0.0249614771, 0.0277728848, -0.00128202233, 0.019570671, 0.0725506917, -0.000742941746, 0.0034374916, -0.00589917926, 0.0225185547, 0.00313042034, 0.00561257917, -0.00575246755, 0.00859799422, 0.0102630025, 0.00149611919, 0.0206351858, 0.00248045311, 0.0483125374, 0.0163498353, 0.0069363974, 0.0229279846, -0.00270052068, -0.0105632497, -0.0200073961, -0.0108771445, 0.0270768572, -0.0107884351, -0.00913707446, 0.0112388059, -0.0126786288, 0.0129788769, -0.036439117, -0.0119211869, 0.00703534251, 0.0114708161, -3.96367104e-05, -0.0036985022, -0.0160768833, -0.0120644867, -0.0107065495, 0.0183150917, 0.0183423869, -0.0211810898, 0.0210173186, -0.00511444174, 0.00898012705, 0.00260669342, -0.00417275634, 0.00576270325, -0.00396121852, -0.00308606564, 0.00423758291, 0.00560575537, 0.00757442322, 0.00585482456, -0.00116175273, 0.0107816113, -0.0136544332, 0.0142344562, -0.021686051, 0.0114639923, -0.021754289, -0.0133814812, -0.013285948, 0.0115390541, -0.0256029144, 0.012194139, -0.0110886823, -0.000384478742, 0.0184106249, -0.0236513074, -0.0126445098, 0.0176600069, 0.0210173186, -0.0171823408, -0.00226209126, 0.0404788107, 0.00190895936, 0.000865770213, 0.00231668167, 0.0124261482, 0.00883682724, -0.0110613871, 0.0119962487, -0.00238833157, 0.014821304, -0.0264490675, 0.00545222, -0.000148311126, 0.00300418, -0.00622672169, -0.00604930287, -0.00615848368, 0.0141935134, -0.0423621796, -0.0236786027, -0.0127878096, -0.00150891382, -0.0133405384, 0.00935543608, -0.00438429462, 0.0112797488, -0.0114230486, 0.00759489462, -0.0384316668, -4.31019216e-05, 0.0359205082, -0.00581388175, 0.0064792023, -0.0141798658, -0.0165818445, -0.00306047639, 0.00926672667, 0.0317170434, 0.0112524536, 0.00542833656, -0.0143982274, -0.0145210568, -0.00794973224, 0.0127878096, 0.00563987438, -0.0126581574, 0.00471524894, 0.00131017051, 0.00839328, 0.0198982153, 0.0107201971, 0.00348696415, -0.027186038, 0.00196013786, -0.0133337146, 0.00524409395, 0.00278070034, 0.000606465619, -0.0253299624, -0.0116414111, -0.00761536602, -0.0216451082, 0.000505388, -0.00132637704, 0.00143811689, 0.0317443386, -0.0162815973, 0.0129379332, 0.025821276, 0.019365957, -0.00453783, -0.0148758944, -0.00824315567, -0.0176463593, 0.0262852963, -0.00292911823, 0.0146711804, -0.014684828, -0.0208944902, -0.0219862983, -0.0240607355, 0.00254527922, 0.00142532215, -0.00994910765, 0.0100105219, 0.00199425686, 0.014070685, -0.0376946963, -0.00133831869, -0.00074208877, 0.0112456298, 0.00357908546, -0.00625060499, -0.0178101305, -0.00208637817, -0.00349037605, -0.0353200138, -0.00396121852, 0.0244292207, 0.00575929135, -0.013490662, -0.0105223069, 0.0244701635, 0.00953285489, 0.0135657238, 0.0129038142, -0.00466407044, 0.0180284921, 0.000238406676, 0.00612777658, -0.00207784842, -0.00782690383, -0.0328361467, 0.0282232556, -0.00229621027, 0.0064007286, -0.00520997494, 0.0122896722, -0.00568764098, 0.00288476353, 0.00343237375, 0.00549998647, -0.00307071209, 0.0247158203, 0.0068545118, -0.0299701504, -0.0276364088, 0.0303795785, -0.00563305058, 0.00882318, -0.0296699032, -0.00385886151, 0.0104063023, -0.0253572576, -0.00938273128, 0.0152443796, 0.0042034639, 0.00829774607, 0.0215222798, -0.0156674553, -0.0120576629, -1.78591763e-05, -0.00551363407, -0.0166091397, -0.0189428814, 0.0204031765, 0.00214096881, 0.00887094624, 0.0194069, 0.0313895, -0.0112251583, -0.0183833297, -0.0072878236, 0.0285235029, 0.018751815, 0.0227096211, -0.0217406414, -4.24088794e-05, -0.0182332061, -0.00142532215, 0.00515538454, -0.00356202596, -0.00281140744, 0.0269540288, 0.0232145842, -0.0294788368, -0.0203485861, -0.0021375569, 0.00780643243, -0.0143572846, -0.0143572846, 0.021481337, 0.02923318, -0.000192879103, 0.0117232967, 0.00355861406, 0.0096829785, 0.0191203, 0.0032276595, -0.00872082263, -0.0102971215, -0.0195570234, 0.0141252754, 0.0241972115, 0.0199664533, 0.01707316, -0.00801114645, -0.0311165489, 0.00164965482, 0.00812032726, 0.00317477505, 0.0168411508, -0.00625401689, -0.00929402187, -0.021071909, 0.00383156631, -0.0178374257, 0.00204543537, 0.00980580691, 0.0283051413, -0.00908248406, 0.0145347044, 0.00201643421, -0.00537033426, 0.00621989788, 0.0282778461, 0.0400693826, -0.0139273852, -0.0121122533, 0.0223001931, -0.0120235439, 0.00124534441, -0.0189701766, -0.018820053, 0.0149031896, 0.0246475823, 0.0226686783, -0.0137909092, -0.0286053885, 0.00354837836, -0.019024767, 0.0147394184, 0.0270768572, 0.0274180472, -0.0116960015, -0.0127468668, -0.00337095954, -0.00625742879, 0.00318501075, -0.00660885498, -0.0146711804, 0.0213858038, 0.0117778871, -0.0117232967, 0.00884365104, 0.0137840854, -0.00619260268, 0.000172834174, -0.0431264453, -0.0308708921, -0.0378584675, 0.0364664122, -0.00742429961, -0.0147257708, 0.00918484107, -0.0219044127, 0.00195502, 0.0102766501, -0.0108907921, -0.0116004683, 0.00219044136, -0.00290352898, 0.00995593145, -0.0186426342, -0.01321771, 0.0219453555, -0.0143709322, 0.0169912744, 0.00566716958, -0.0118734203, 0.0284143221, 0.0130607625, 0.0135589, -0.0178101305, -0.00843422301, -0.000428193744, 0.0223001931, 0.0106041925, 0.00864576083, 0.0145892948, -0.0120098963, 0.0154217985, 0.020730719, 0.0262307059, 0.00795655604, -0.0073219426, 0.00137584959, 0.0155173317, -0.0395780653, -0.0222046599, -0.0120917819, -0.0314167961, 0.00756759942, -0.0107474923, -0.00811350346, 0.0273088664, 0.0121054295, 0.0154490937, -0.0146575328, -0.0200483389, 0.0122350818, 0.00608683378, 0.00165477267, -0.0232145842, 0.0106314877, -0.00627107639, 0.0244974587, 0.0498683639, 0.0108362017, 0.00560916727, -0.0402058586, -0.0096761547, 0.0315532722, -0.00766995642, -0.00723323273, -0.0474117957, 0.00230644597, -0.000201622097, -0.0332455747, 0.00889141764, -0.0176190641, 0.0161451213, -0.000190213555, 0.00501208473, -0.00307241804, 0.0185880437, -0.00717181852, -0.0196116138, 0.000348440517, 0.022914337, 0.0548088, 0.0120167201, 0.0311438441, 0.0129857007, 0.0036780308, -0.0327815562, -0.00590259116, 0.0166500825, 0.00329078, 0.0393051133, 0.0229006894, 0.0175371785, 0.00116175273, 0.00164027209, 0.00469818944, -0.039851021, 0.00881635584, -0.0113206916, 0.00852293242, 0.0205533, -0.00633249059, -0.0228188019, 0.00562963868, 0.00721276132, 0.00264934218, 0.0305433497, -0.00745841861, -0.0137772616, -0.0009229196, -0.0294515416, -0.0311165489, -0.0243200399, 0.0305706449, -0.0237877835, 0.0190384146, 0.0108771445, -0.0269540288, -0.00201984611, 0.0302703977, -0.0357021466, -0.00180489628, 0.00273634563, 0.0161451213, 0.0207853094, 0.01321771, -0.0072878236, 0.0162815973, -0.00611412898, -0.0120508391, -0.00919848867, 0.0182195585, -0.00284040859, -0.00461971574, -0.00146626506, 0.013388305, 0.00186119275, 0.00850246102, -0.00189872365, -0.00972392131, -0.0151079036, 0.00136220199, 0.0157083981, -0.0036643832, 0.00447982782, -0.00779960863, 0.0242518019, 0.0221364219, 0.0105700735, 0.0248659439, -0.00600494817, 0.0191748906, 0.000841460424, 0.0178647209, 0.0117096491, 0.0100924075, -0.00245145173, -0.0264081247, 0.00422052341, 0.00272440398, 0.00292570633, -0.0168957412, -0.0155855697, 0.0239515547, 0.0416252092, 0.0192158334, 0.0179329589, -0.016936684, -0.0240470879, 0.0137499664, 0.00934861228, 0.00859117, 0.0432629213, -0.0096693309, 0.00522703445, -0.0243200399, 0.012467091, 0.0117778871, 0.00471524894, 0.0143982274, 0.00711040432, 0.00714452332, 0.0107611399, 0.0096488595, 0.0031560096, 0.0213994514, -0.0037223855, -0.00713087572, -0.0110886823, -0.00807938445, 0.00185778085, -0.00633931439, -0.0110750347, 0.0193250142, -0.0126854526, 0.00464701094, 0.00330613344, 0.000786017, 0.00559893157, -0.00975121651, -0.013251829, 0.0169912744, -0.00562963868, 0.0188609958, -0.00876176544, -0.0158175789, -0.017209636, 0.00520315114, 0.0166091397, 0.0182877965, -0.0137431426, 0.013695376, 0.0143709322, 0.00668732869, 0.0158312265, -0.0134292478, -0.00981263071, 0.0106587829, -0.013490662, 0.000723323319, 0.000596656406, -0.0114503447, -0.000809900288, -0.00507008703, -0.00411475403, -0.00976486411, -0.0121190771, -0.00511103, -0.0147803612, 0.000428833475, 0.00915754586, -0.0143982274, 0.0234329458, -0.00114298728, -0.0119757773, 0.0211674422, 0.00554775307, 0.00483125355, -0.0105632497, -0.00239003752, 0.00511103, -0.00900059845, 0.00597424107, -0.00980580691, 0.00157373992, 0.00297688483, 0.000792414299, -0.00274999323, 0.0186699294, -0.00479372265, 0.00440476602, -0.00522703445, 0.0161451213, 0.00474936794, -0.00910295546, 0.0173461121, 0.0199118629, 0.00538057, 0.00748571381, 0.029506132, -0.0153945033, 0.0160359405, -0.00696369261, 0.0036575594, -0.00201984611, 0.0117983585, -0.0157766361, -0.012228258, -0.0101742931, -0.000980068929, -0.00260498747, -0.0118597727, 0.00241733273, -0.0178783685, -0.0160632357, -9.32942057e-05, 0.0134292478, -0.00717181852, -0.00396804232, 0.0154763889, 0.00252310187, 0.00088880054, 0.0114298724, -0.0339552537, -0.0223547835, -0.0164317209, 0.0010670725, -0.00559551967, 0.0104745403, -0.0104540689, -0.00499502523, 0.0405879915, 0.00699439971, -0.0036507356, -0.0369577259, 0.0121600199, -0.00119672471, -0.0167592634, -0.00919166487, -0.00411134213, -0.0031833048, 0.00514856074, -0.00105768978, 0.00525774155, -0.00329248584, -0.001852663, 0.00148417754, -0.0143845798, -0.00493361056, -0.00759489462, 0.0219862983, -0.0174279977, -0.0136476094, 0.0140979802, 0.000591965043, 0.00482442975, 0.00779278483, -0.00230474, -0.00487219635, -0.0249614771, 0.0150396656, -0.0141662182, 0.0264354199, -0.00840010401, -0.00661909068, 0.00816127, -0.0114844637, -0.00707628531, 3.13468518e-05, 0.00219385326, -0.00472207274, -0.0189838242, -0.00723323273, -0.0146575328, 0.0128287524, -0.006387081, -0.0123442626, -0.0158039313, 0.0130812339, 0.0151215512, 0.0219317079, -0.019229481, -0.0162952449, 0.0154900365, -0.0203076433, 0.0211810898, -0.0135657238, -0.0255073812, -0.00224332581, 0.000363580853, 0.00820903666, -0.00154644472, 0.0034852582, -0.00603565527, -0.0146711804, 0.0189155862, 0.0354019, -0.00913025066, -0.000244377501, 0.00164624292, -0.0105291307, -0.0278957132, 0.0130266435, 0.00908930786, 0.0183014441, 0.0109795015, 0.012535329, 0.0255210288, 0.000371684117, -0.00869352743, -0.00619942648, 0.0096966261, -0.000887094589, 0.00581047, 0.00323618925, -0.00919848867, 0.00202496396, -0.00447982782, 0.000151083295, -0.00991498865, 0.0281959604, -0.00450029923, 0.0100719361, 0.0190520622, -0.0216451082, 0.0036677951, 0.0036985022, -0.0160905309, -0.00380427111, 0.0157902837, 0.0236240122, 0.0103039453, -0.0037155617, -0.0182332061, -0.0120440153, 0.00216997, 0.000811606296, 0.0114844637, -0.0064246119, 0.00884365104, 0.0226686783, -0.0131358244, -0.0197890326, -0.0129993483, -0.0225049071, 0.0159677025, 0.00333684054, 0.0135793714, 0.00743794721, 0.0169639792, -0.0153399128, 0.0156947505, -0.00891871285, -0.0172369312, -0.0181103777, -0.0351289473, -0.0289056357, 0.0107884351, -0.00194990216, -0.00273463968, 0.0237331931, 0.0102902977, -0.0072878236, -7.77007426e-06, 0.00954650249, 0.00178783678, -0.0122077866, -0.00262034102, -0.00353131886, 0.00628472399, -0.032344833, -0.00764948502, 0.0167046729, -0.0136544332, -0.014889542, 0.00525774155, -0.00122743181, 0.00883682724, 0.0316897482, 0.00242074463, -0.00832504127, -0.0105018355, -0.013490662, 0.0126445098, 0.0136476094, -0.00611071708, 0.0064416714, 0.0302158073, -0.0203485861, -0.0121190771, -0.014753066, -0.0165818445, -0.00217679376, 0.0128969904, 0.00779278483, -0.00300418, 0.00780643243, -0.00182707375, -0.0175781213, 0.0096215643, -0.00858434662, 0.023323765, 0.0176327117, -0.0313076153, 0.0168820936, -0.0147940088, -0.0156265125, 0.0140979802, -0.00416252064, 0.0108976159, -0.00383156631, -0.0112933964, 0.016936684, -0.0122214342, -0.0139546804, -0.00555457687, -0.00257257442, 0.00596400537, 0.00936908368, 0.00471866084, 0.0453373566, 0.0142208086, 0.0311165489, 0.00865258463, -0.0170595124, -0.00652696937, 0.0206488334, -0.00503938, 0.0167046729, 0.00397145422, -0.0156401601, 0.0178510733, -0.020662481, 0.0156947505, 0.0210446138, 0.00475278, -0.00271758018, 0.00853658, 0.00997640286, 0.0139478566, -0.00445935642, 0.0109180873, 0.0129174618, -0.00555116497, -0.0122214342, -0.00021793526, 0.00340166665, 0.00312530249, -0.00171021605, -0.0219726507, 0.00497114193, 0.027390752, 0.00863211323, 0.0117642395, -0.0128696952, -0.0115254065, -0.0033965488, -0.00543516036, 0.00603565527, 0.00733559, -0.0183696821, -0.00827045087, -0.0227915067, -0.0189292338, -0.00114895811, 0.0262852963, -0.00234397687, -0.01390009, -0.00484831305, 0.00491996296, 0.00986039732, 0.0102630025, -0.000578317442, 0.0113479868, 0.0260396395, -0.0111569203, 0.00974439271, 0.0111500965, -0.00908930786, -0.00470160134, 0.012944757, -0.0218907651, 0.0119211869, 0.0165545493, 0.0147394184, -0.00747206621, -0.0036405, 0.00608342187, 0.00167609705, -0.0178101305, 0.0142481038, -0.0068374523, -0.00717864232, -5.73093e-06, -0.00186801655, 0.00241562678, 0.00934861228, -0.0154081509, -0.00898695085, 0.0267083719, -0.0395234749, 0.00127690448, 0.0248386487, 0.0138386758, 0.0134360716, -0.0204714146, 0.0122896722, -0.00654061697, -0.000353984855, 0.0281959604, 0.0121122533, 0.00611754088, -0.00496431813, -0.0122828484, 0.00782690383, 0.0036746189, 0.0260396395, 0.0135657238, -0.00754030421, -0.00918484107, 0.0313349105, 0.0314986818, 0.00597765297, 0.0224093739, -0.00111483911, -0.00309459539, 0.00751983281, -0.00272099208, 0.00453100633, -0.00882318, -0.0123783816, -0.0118597727, 0.0141525706, -0.00140399777, -0.00100139331, 0.00438770652, 0.0068715713, 0.0110477395, 0.0191339478, -0.00413863733, 0.0141525706, 0.00703534251, 0.0107474923, 0.00599471247, -0.0245929919, 0.0358113274, -0.0163498353, 0.0172505789, 0.00412840163, -0.0163771305, 0.0243609827, -0.012774162, -0.0207580142, 0.000382559549, -0.0242518019, -0.0147940088, 0.0198982153, 0.00703534251, -0.0174007025, -0.00032711614, 0.013729495, -0.0203758813, 0.00553069357, 0.0126854526, -0.0113002202, 0.0108771445, -0.00834551267, 0.0154081509, -0.0136749046, -0.0309254825, 0.00242245058, 0.00232862332, 0.00697051641, 0.00184413325, -0.00987404492, 7.85270677e-05, -0.00756077562, -0.0114776399, -0.00164283102, -0.0067078, 0.0106519591, 0.00331125129, 0.000584288267, -0.0171141028, 0.000788149424, 0.00917801727, 0.0141116278, 0.00481760595, -0.00479031075, -0.0110340919, 0.0015882405, -0.0037360331, -0.00223650201, 0.0215359274, -0.00537033426, 0.0198572725, 0.00209149602, 0.0105154831, -0.00409769453, -0.0153126176, 0.0133746574, -0.0243200399, -0.019434195, -0.0274726376, -0.00578317465, 0.00256575062, 0.0117232967, 0.00993546, -0.0109044397, -0.0034306678, -0.00514514884, 0.0154354461, -0.00713769952, -0.00205567107, -0.000336498866, -0.00443888502, 0.00748571381, -0.00569787668, -0.00178271893, -0.00498820143, 0.00106621953, -0.00144408771, 0.0034306678, -0.0194205474, 0.00507349893, 0.00794973224, 0.00775866583, 0.000263782713, 0.0192431286, -0.00213926286, 0.0245929919, -0.00321912975, -0.00290352898, -0.00260498747, 0.000623525179, -0.00884365104, -0.0216724034, 0.00915754586, -0.000780899136, -0.00198913901, 0.00833868887, 0.000162385229, 0.00770407543, -0.00770407543, -0.0163634829, -0.0064382595, -0.0144528178, 0.0136134904, 0.0112797488, 0.00427170191, -0.0144391702, -0.00374968071, 0.00330272154, -0.00565352198, 0.0037121498, 0.0171823408, -0.00250774832, 0.00996275526, 0.000338204816, 0.0233647078, 0.0142890466, -0.0107884351, 0.000974098104, 0.00874811783, 0.00353814266, 0.00851610862, -0.017004922, 0.00507349893, 0.0130334673, 0.00525432965, -0.0175371785, -0.00570470048, -0.0113548106, 0.00717864232, 0.0249478295, 0.0221364219, -0.00432629231, 0.0198163278, -0.0153808556, -0.0130266435, -0.00569446478, 0.00483125355, 0.00449006353, -0.00577976275, 0.0320172906, 0.00652696937, 0.0116072921, -0.00807938445, -0.00352449506, -0.0155036841, 0.000204714146, -0.0068783951, 0.00884365104, 0.00124107953, -0.0167046729, 0.0230917558, 0.0130948815, -0.0403423347, 0.0251798388, 0.00501549663, 0.027049562, -0.0137090236, 0.0130539387, 0.00416252064, -0.0157629885, -0.039714545, -0.00166500837, -0.0120440153, -0.00905518886, -0.0116618825, -0.00033841806, 0.00292229443, -0.0063836691, -0.0135316048, -0.00358932116, 0.0147257708, -0.0018936058, 0.0096966261, -0.00326007279, -0.0123852054, 0.0128969904, 0.013797733, -0.0259986967, -0.00361661636, -0.0190520622, -0.0100787599, 0.0250570104, 0.020662481, -0.00697051641, 0.00652014557, 0.0155309793, -0.00466065854, 0.00664638588, 0.00768360402, -0.0113138678, -0.000962156453, 0.0221091267, -0.00614483608, 0.0288783405, -0.0229689274, 0.0343100913, 0.0192840714, 0.00812032726, -0.0131699434, 0.0254391432, 0.025138896, -0.0201302245, -0.0185198057, -0.00271758018, -0.00725370459, -0.0211674422, 0.0151079036, -0.0200210437, 0.0232418794, -0.0195843186, -0.0122487294, 0.00221432466, 0.0230644606, 0.0215632226, 0.0116618825, 0.001886782, 0.015162494, 0.0308435969, 0.00111228018, -0.00544539606, 0.022914337, -0.0165681969, -0.0264900103, -0.00457877293, 0.00396121852, 0.000708822685, 0.0151488464, 0.0166091397, -0.00823633187, 0.0103585357, 0.0106314877, 0.00472889654, 0.00556481257, 0.00243951, -0.0159677025, 0.00243609818, -0.0184788629, -0.0279503036, 0.00773137063, 0.0228733942, -0.020730719, 0.0108634969, 0.0220272411, 0.00379062351, -0.025548324, 0.0474663861, 0.0253572576, 0.00175371778, 0.00792243704, 0.0276500564, 0.0174007025, 0.00526115345, -0.0265173055, -2.10178514e-05, -0.000197783709, 0.0266128387, 0.00391345192, 0.0106519591, 0.00504279183, -0.0133337146, -0.00994910765, -0.0192704238, 0.00180660223, 0.00501890853, 0.0100719361, 0.0183969773, 0.00717864232, 0.00442523742, 0.00991498865, -0.00454806583, -0.00303829904, 0.0139887994, -0.00476983935, 0.0137567902, -0.00601518387, -0.006387081, 0.00383839, -0.00232009357, -0.0359205082, 0.00659520738, 0.0069193379, -0.000996275456, 0.0103653595, -0.0183287393, -0.0117983585, -0.00603224337, -0.00558528397, 0.0073287664, -0.00574223185, -0.0159267597, 0.00243098033, 0.00676239049, 0.00723323273, 0.0220408887, -0.0032037762, 0.0303249881, 0.00833186507, 0.0457467884, 0.00352449506, -0.0247567631, -0.00187825225, -0.00114554621, 0.0152580272, 0.0238696691, -0.0155855697, 0.00541127706, 0.0115390541, -0.00649626227, -0.031662453, -0.00580364605, 0.00811350346, -0.00992863625, 0.019502433, -0.00197037356, -0.0169093888, 0.0073697092, 0.012432972, -0.00483807735, -0.0194478426, 0.0257939808, 0.00706946151, -0.0037019141, 0.00481078215, -0.0139137376, 0.0263671819, 0.00794290844, -0.00492678676, 0.00152597332, -0.0109726777, -0.00401580893, 0.0226140879, 0.0115731731, 0.014562, -0.0073697092, -0.0108976159, -0.00284893834, 0.00986722112, -0.00119160686, 0.0146984756, -0.0111296251, -0.00411816593, 0.00725370459, -0.0156674553, -0.019229481, 0.0117232967, 0.0037121498, -0.00310483109, -0.00500184903, 0.0140570374, -0.0146029424, -0.0275135804, 0.0130266435, 0.00568081718, -0.0126240384, -0.00621648598, -0.0213585086, 0.0156128649, 0.0222865455, -0.00606977427, 0.00725370459, 0.023323765, -0.0110272681, -0.014684828, -0.00282334909, -0.0156811029, 0.00236786017, -0.0246202871, -0.00531574385, 0.0204850622, -0.0171823408, -0.0122419056, -0.00253163162, 0.02923318, -0.00477666315, -0.0123783816, 0.00412498973, 0.00457536103, -0.0156811029, 0.0131767672, -0.0223547835, 0.0208399, -0.00400557322, -0.0283597317, -0.0120986057, -0.00204714132, 0.0157220457, -0.0095874453, -0.0170458648, 0.00500184903, -0.00863211323, 0.00168547977, 0.00579341035, -0.0108907921, -0.00258451607, 0.0122350818, -0.00222797226, 0.00221773656, -0.00891871285, -0.020662481, -0.00773819443, -0.0175644737, -0.00391345192, -0.00889824145, 0.0144937616, -0.00863893703, 0.0101333503, 0.0182195585, 0.0153808556, -0.00704216631, 0.00252821972, -0.00294105988, 0.00139887992, -0.00495067, -0.00975804, -0.0165545493, -0.00703534251, 0.0164180733, -0.0377765819, 0.00250433641, 0.00988769252, 0.00899377465, 0.00714452332, 0.0125626242, 0.00870035123, 0.00110460341, -0.00893236, 0.0136203142, -0.00822950806, -0.0214676894, -0.000201302231, 0.0142481038, 0.00570811238, -0.000508799916, 0.0105223069, 0.00167012622, 0.000568508229, 0.0253572576, 0.00789514184, 0.0149850752, -0.0010943677, -0.00402604463, 0.00398510182, -0.0164726637, -0.0289875232, 0.020457767, 0.00487219635, -0.020594243, -0.00157373992, -0.014684828, -0.0350743569, -0.00920531247, -0.0243473351, 0.0177145973, -0.00872764643, 0.0246066395, -0.0111569203, -0.00387933291, 0.00298200268, -0.00666003348, -0.00199596281, 0.0275681708, 0.00102612958, -0.018615339, 0.014070685, 0.0212356802, -0.0136203142, -0.00206761272, 0.000207059828, -0.000108807697, 0.00134940736, 0.00717864232, 0.00104830693, -0.0032208357, 0.00390321622, 0.00531574385, -0.0734241381, 0.00294958963, 0.00307241804, 0.0037292093, -0.00391004, 0.00247192313, -0.0133473622, -0.0301612169, -0.00799749885, -0.00773137063, -0.0205805954, 0.00706946151, 0.0206351858, 0.00245827553, 0.00811350346, -0.0263671819, -0.00345284515, 0.00356202596, 0.000822695, 0.0158039313, -0.00929402187, -0.000258878077, -0.0113684582, -0.00779278483, 0.00660544308, -0.00483807735, 0.00514856074, 0.000274444901, -0.013524781, 0.00496431813, -0.00493361056, 0.0068749832, 0.0122419056, 0.0153808556, -0.0143163418, -0.0238014311, 0.00121890206, -0.0295334272, 0.0105768973, -0.0301339217, 0.000826106872, 0.00443888502, -0.00357908546, 0.00135793712, 0.00343237375, 0.0226550307, 0.00715134712, -0.0134838382, -0.00215632236, 0.0173188169, -0.00992863625, -0.00241392083, -0.0194614902, 0.00379062351, -0.0385408476, 0.00782008, 0.00584800076, 0.013354186, 0.00191919506, 0.0329999179, -0.00850246102, -0.0233647078, 0.0202257577, 0.00985357352, 0.0117164729, 0.0193113666, -0.021686051, 0.00164197804, 0.00522021065, 0.00764948502, -0.0112865726, -0.0104267737, -0.0110818585, -0.00988769252, -0.00431946851, 0.0208535474, -0.0187245198, -0.00425123051, -0.00353473076, -0.0103994785, 0.0113957534, 0.00995593145, -0.00291717658, 0.0128014572, -0.00431946851, 0.0100651123, 0.00270734448, 0.0106724305, 0.00745159481, -0.0216314606, 0.020662481, 0.00893918425, -0.013627138, 0.00129140506, 0.0209081378, -0.00336584169, -0.02534361, -0.00382133061, 0.0106110163, 0.0132381814, -0.0141252754, 0.0127605144, 0.0120098963, 0.00161724165, 0.0222046599, -0.0167456158, -0.00660885498, -0.0192567762, 0.0138045568, 0.0134428954, 0.0336823, -0.000174220258, -0.0169776268, -0.00169315655, 0.006455319, 0.0286326837, -0.00952603109, 0.00831821747, -0.00527821295, 0.00828409847, -0.000539933564, -0.012910638, -0.0149441324, 0.0143709322, -0.0185607485, -0.021754289, 0.00303318119, 0.0102493549, 0.00248727691, 0.00916437, 0.000481504714, 0.00018424273, -0.00941002648, -0.0180284921, -0.00501549663, -0.0247431155, 0.0104335975, 0.0146438852, -0.00336072384, 0.00399533752, 0.00661567878, -0.0068954546, 0.00171618687, -0.0159813501, -0.0166500825, 0.0110750347, -0.0119007155, 0.00398510182, 1.26946761e-05, -0.00341531425, -0.0263125915, 0.00273975753, 0.0228051543, -0.0183423869, -0.00975804, -0.0361115746, 0.0122350818, 0.00358932116, -0.0113002202, -0.019434195, 0.00590600306, 0.0101606455, -0.0184379201, 0.0032037762, -0.00898695085, -0.000432245375, -0.0176190641, -0.0147667136, 0.00288135163, -0.0154627413, 0.018888291, 0.0184788629, 0.00611412898, -0.0102834739, -0.00285064429, -0.012432972, 0.0037019141, -0.00340166665, -0.00592306256, 0.0238014311, 0.00140826264, -0.00826362707, -0.0155173317, 0.00099030463, 0.0252344292, -0.0126172146, 0.0188337, -0.000622672203, 0.00605271477, -0.0125489766, 0.0311711393, 0.021344861, -0.0131085292, 0.0137840854, -0.0108020827, -0.00880270824, -0.0036302642, 0.0142481038, -0.0157629885, 0.0103790071, 0.000199809525, -0.0195843186, 0.00435017562, 0.00545222, 0.00245315768, 0.00340166665, 0.0034136083, 0.0124261482, 0.0101060551, -0.0021239093, 0.00915754586, -0.0193386618, 0.00144238176, 0.019570671, 0.0170458648, 0.00949873589, -0.00717181852, -0.00137584959, -0.00576952705, 0.00986039732, 0.0350197665, 0.00212220335, 0.00315089175, -0.0164999589, 0.0256029144, 0.00909613166, 0.000518182642, -0.00933496468, -0.0518336184, -0.00106877845, -0.011375282, -0.0121190771, 0.0117096491, -0.00896647945, 0.0111637441, 0.00923943147, -0.0106246639, 0.00902789366, -0.0134633668, 0.0280594844, 0.00272781588, 0.027691, -0.00247021718, -0.00302294549, 0.00175542373, 0.00671462389, 0.0031798929, -0.00592647446, 0.0345011577, 0.00897330325, 0.00859799422, 0.00904154126, 0.00247192313, 0.0139137376, 0.018820053, -0.00236444827, -0.0199801, 0.00574223185, -0.0143572846, 0.00763583742, 0.0096966261, -0.0074038282, -0.0221500695, 0.0112251583, 0.0033863131, -0.0109795015, -0.00397486612, -0.0194614902, -0.0141116278, 0.0154627413, 0.00435017562, 0.00805891305, -0.00459583243, -0.00193454861, 0.00710358052, 0.0144801131, -0.000455488975, 0.0143299894, -0.00190725341, -0.0142617514, -0.0143982274, -0.0199528057, -0.021413099, 0.0303795785, -0.00353473076, 0.00932131708, 0.00942367408, 0.00234397687, 0.0167456158, -0.0172915217, -0.00188166415, -0.0199391581, 0.00318159885, 0.0190793574, -0.00889824145, -0.0194887854, -0.0154900365, 0.0108907921, 0.00130505266, -0.0418981612, 0.0176463593, -0.000605612644, 0.00138949719, -0.00287623378, -0.00845469441, 0.00635637389, -0.00701487111, 0.00153620902, -0.0064143762, -0.00213926286, -0.020935433, 0.0152853224, -0.00130931754, -0.0148076564, -0.0031901286, -0.00760854222, -0.0128696952, 0.00261522317, -0.0140843326, -0.00660885498, -0.00251286617, 0.00594353396, 0.00666685728, 0.00778596103, 0.00265787193, -0.00566375768, -0.0125148576, -0.00291547063, 0.000796679175, 0.00936226, -0.000595803431, -0.00398851372, -0.00502573233, -0.0018594868, -0.0107747875, 0.000954479678, -0.00244292198, -0.0212902706, 0.00660885498, 0.0181240253, 0.00102868851, 0.00297688483, -0.0177691877, -0.0184242725, 0.00406698743, 0.00482101785, -0.00857752282, 0.0115254065, 0.0270086192, 0.00339143095, -0.0164317209, -0.0189701766, -0.0132791242, 0.0195570234, 0.00946461689, 0.00292741228, -0.0149850752, -0.0106519591, 0.00930766948, 0.00855705142, 0.0115117589, -0.0368485451, 0.00112251588, -0.00835233647, 0.0208808426, -7.5221782e-05, 0.0239652023, 0.00076810451, -0.0171004552, -0.00754712801, 0.0288237501, -0.00916437, -0.0321537666, 0.0561189689, 0.0243609827, 0.00343919755, -0.00919848867, 0.0257257428, -0.0180011969, 0.00300076813, 0.0293150656, -0.0172642265, -0.000619686791, -0.00381109491, 0.000515623717, 0.0191475954, 0.0155582745, 0.00747889, -0.0102084121, 0.000836769061, -0.0109317349, 0.0281140748, -0.027663704, -0.0144528178, -0.00250263046, -0.00542492466, -0.0171959884, 0.0032242476, -0.0166227873, 0.0068681594, 0.00445594452, -0.015230732, 0.00975121651, 0.0111773917, 0.007308295, 0.00747889, -0.0204168241, -0.00653038127, -0.0151215512, 0.0034272559, 0.0218498223, 0.0209490806, 0.00667026918, 0.0101811169, 0.0215222798, 0.0100719361, -0.00492678676, 0.0108157303, -0.0238287263, 0.00272440398, -0.00902789366, -0.0113616344, 0.00719911372, 0.0140297422, -0.00850928482, -0.00883682724, -0.0327815562, 0.00230644597, 0.0217133462, 0.0142208086, 0.0292877704, -0.00351767126, 0.0370942019, -0.00946461689, 0.000589406118, -0.006881807, -0.0238696691, 0.00915072206, -0.00477325125, -0.00799749885, 0.0185880437, -0.0244974587, -0.00995593145, 0.0187108722, -0.0101606455, -0.0163225401, -0.0265582483, 0.000634187367, 0.00980580691, -0.00160615298, 0.00101162901, 0.0120917819, -0.00769725163, 0.00239003752, 0.00313895, -0.0191885382, -0.00174433505, -0.00172983448, -0.00512808934, 0.00272099208, 0.00124449143, -0.0110272681, 0.00518267974, 0.0106656067, 0.00779278483, 0.0179056637, 0.0293150656, -0.0111569203, 0.00507008703, -0.00711040432, 0.00300588598, 0.00502914423, 0.00501890853, 0.0342009105, -0.00404651603, 0.0108293779, 0.00228426862, -0.0199391581, 0.0183423869, 0.00572176045, 0.006455319, -0.00556481257, -0.00208637817, -0.0160222929, 0.00193966646, 0.0233647078, 0.0124466196, 0.00418299204, -0.00828409847, -0.019434195, -0.0143299894, -0.012569448, -0.00993546, -0.00391345192, 0.00812715106, -0.0336823, 0.00428534951, 0.00410793, -0.0135316048, 0.0279230084, 0.00329419179, 0.00522362255, -0.0123579102, 0.0195297282, -0.00939637888, 0.00182025, -0.0184515677, 0.0155582745, 0.0207170714, -0.0229006894, 0.007410652, -0.00556140067, 0.0173597597, -0.00319865835, -0.00258963392, -0.00566716958, 0.00339825475, 0.0135384286, 0.00461289193, -0.00542151276, -0.00428876141, 0.0250979532, 0.000289158721, -0.0109522063, 0.00402263273, 0.00519973924, -0.0140433898, 0.0104608927, 0.00846151821, 0.0235011838, 0.00132211216, 0.0341190249, -0.00535668666, 0.0140297422, 0.00222626631, 0.01461659, -0.0115254065, -0.00443888502, -0.0196662042, -0.00393051142, 0.00134770141, 0.0108566731, 0.00718546612, 0.00598106487, 0.0105359545, 0.0204850622, 0.0166773777, -0.00422052341, 0.000650820381, 0.0179056637, -0.00467771804, -0.00726052839, -0.0380222388, 0.0073492378, 0.0199801, -0.0032242476, 0.0450917, 0.0215768702, -0.00485854875, -0.0206351858, -0.000939979102, 0.00986722112, 0.0101538217, 0.00892553665, -0.0124875624, -0.00956697389, -0.00134940736, -0.0266810767, -0.0205396526, 0.0198982153, 0.00713087572, 0.014343637, -0.0127673382, -0.00493702246, -0.00936226, 0.013354186, -0.000513491279, -0.0157220457, 0.0153945033, -0.0210582614, 0.012194139, 0.0110613871, -0.000394287956, -0.0161451213]
05 Jun, 2023
unordered_set bucket() function in C++ STL 05 Jun, 2023 The unordered_set::bucket() method is a builtin function in C++ STL which returns the bucket number of a specific element. That is, this function returns the bucket number where a specific element is stored in the unordered_set container. The bucket is a slot in the unordered_set’s internal hash table where elements are stored. Note: Buckets in unordered_set are numbered from 0 to n-1, where n is the total number of buckets. Syntax: unordered_set_name.bucket(element); Parameter: This is a mandatory parameter and specifies the value of the element whose bucket number is needed to know in the unordered_set container. Return Value: This function returns the bucket number of the bucket in the unordered_set container where the element with value element is stored. Below programs illustrate the unordered_set::bucket() function: CPP // C++ program to illustrate the // unordered_set::bucket() function #include <iostream> #include <unordered_set> using namespace std; int main() { unordered_set<int> sampleSet; // Inserting elements sampleSet.insert(5); sampleSet.insert(10); sampleSet.insert(15); sampleSet.insert(20); sampleSet.insert(25); for (auto itr = sampleSet.begin(); itr != sampleSet.end(); itr++) { cout << "The Element " << (*itr) << " is present in the bucket: " << sampleSet.bucket(*itr); cout << endl; } return 0; } Output: The Element 25 is present in the bucket: 3 The Element 5 is present in the bucket: 5 The Element 10 is present in the bucket: 10 The Element 15 is present in the bucket: 4 The Element 20 is present in the bucket: 9 Time complexity: O(1) Learn C++ Online – Master everything from basics to advanced concepts. Apply your knowledge with practical exercises and boost your skills. Take the Three 90 Challenge: finish 90% in 90 days for a 90% refund. Start now and level up your C++ programming!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum/Algorithm for Dynamic Time out timer Calculation/Difference between Round trip time (RTT) and Time to live (TTL)/Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms/Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm/Round Robin Scheduling Algorithm with Different Arrival Time/Selfish Round Robin CPU Scheduling/Find the order of execution of given N processes in Round Robin Scheduling/Calculate server loads using Round Robin Scheduling/set::lower_bound() Function in C++ STL/Implementation of lower_bound() and upper_bound() in List of Pairs in C++/Difference between std::set::lower_bound and std::lower_bound in C++/Difference between std::set vs std::vector in C++ STL/std::minmax() and std::minmax_element() in C++ STL/std::rotate vs std::rotate_copy in C++ STL/std::bitset::to_ullong and std::bitset::to_ulong in C++ STL/std::upper_bound and std::lower_bound for Vector in C++ STL/std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++/std::string::append vs std::string::push_back() vs Operator += in C++/Vector push_back() in C++ STL/vector :: cbegin() and vector :: cend() in C++ STL/unordered_multiset cend() function in C++ STL/unordered_multiset bucket() function in C++ STL/unordered_multiset emplace_hint() function in C++ STL/unordered_multiset end() function in C++ STL/unordered_multiset size() in C++ STL/unordered_multiset emplace() function in C++ STL/unordered_multiset find() function in C++STL/unordered_multiset erase() function in C++ STL/unordered_multiset clear() function in C++ STL/unordered_multiset swap() function in C++ STL/unordered_multiset bucket_size() function in C++ STL/unordered_multiset bucket_count() function in C++ STL/unordered_set bucket_count() function in C++ STL/unordered_set cbegin() function in C++ STL/array::cbegin() and array::cend() in C++ STL/array::rbegin() and array::rend() in C++ STL/multimap rbegin in C++ STL/vector rbegin() and rend() Functions in C++ STL/multiset rbegin() and rend() function in C++ STL/map rbegin() function in C++ STL/map upper_bound() function in C++ STL/Set upper_bound() in C++ STL/multimap upper_bound() function in C++ STL/multimap empty() function in C++ STL/multimap value_comp() function in C++ STL/multimap swap() function in C++ STL/multimap::swap() in C++ STL/multimap equal_range() in C++ STL/unordered_set equal_range in C++ STL/set vs unordered_set in C++ STL/unordered_set count() function in C++ STL/unordered_set bucket() function in C++ STL
https://www.geeksforgeeks.org/unordered_set-bucket-function-in-c-stl?ref=asr10
PHP
unordered_set bucket() function in C++ STL
unordered_multiset clear() function in C++ STL, What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, jQWidgets jqxTreeMap width Property, Round Robin Scheduling Algorithm with Different Arrival Time, Difference between Flow and TypeScript, unordered_multiset emplace() function in C++ STL, jQWidgets jqxTree destroy() Method, unordered_set bucket_count() function in C++ STL, jQWidgets jqxTree collapseAll() Method, Find the order of execution of given N processes in Round Robin Scheduling, jQWidgets jqxScrollView buttonsOffset Property, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Vector push_back() in C++ STL, jQWidgets jqxListBox enableHover Property, Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm, std::rotate vs std::rotate_copy in C++ STL, Selfish Round Robin CPU Scheduling, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxSlider buttonsPosition Property, std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++, std::upper_bound and std::lower_bound for Vector in C++ STL, Difference between Round trip time (RTT) and Time to live (TTL), jQWidgets jqxSlider rtl Property, Difference between std::set::lower_bound and std::lower_bound in C++, jQWidgets jqxTooltip opacity Property, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, unordered_multiset erase() function in C++ STL, set vs unordered_set in C++ STL, jQWidgets jqxToolBar height Property, PHP, std::minmax() and std::minmax_element() in C++ STL, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, unordered_set bucket() function in C++ STL, map rbegin() function in C++ STL, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, map upper_bound() function in C++ STL, Node.js date-and-time Date.transform() Method, unordered_multiset size() in C++ STL, TypeScript Optional Parameters, jQWidgets jqxToolBar theme Property, Difference between std::set vs std::vector in C++ STL, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, Steps to Diagnose and Resolve a Slow Network, How to use Optional Chaining with Arrays and Functions in TypeScript ?, Calculate server loads using Round Robin Scheduling, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, jQWidgets jqxScrollView showButtons Property, Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms, jQWidgets jqxScrollView disabled Property, jQWidgets jqxSplitter destroy() Method, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, set::lower_bound() Function in C++ STL, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, jQWidgets jqxTree collapseItem() Method, multimap upper_bound() function in C++ STL, std::string::append vs std::string::push_back() vs Operator += in C++, unordered_multiset swap() function in C++ STL, unordered_multiset cend() function in C++ STL, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), Set upper_bound() in C++ STL, jQWidgets jqxSortable opacity Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, multimap rbegin in C++ STL, vector :: cbegin() and vector :: cend() in C++ STL, multimap swap() function in C++ STL, jQWidgets jqxSlider height Property, jQWidgets jqxSwitchButton onLabel Property, unordered_multiset bucket_size() function in C++ STL, unordered_set cbegin() function in C++ STL, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, jQWidgets jqxToolBar tools Property, multimap empty() function in C++ STL, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTree width Property, multimap::swap() in C++ STL, multimap equal_range() in C++ STL, Implementation of lower_bound() and upper_bound() in List of Pairs in C++, jQWidgets jqxTree clear() Method, TLS Handshake?, multiset rbegin() and rend() function in C++ STL, Algorithm for Dynamic Time out timer Calculation, Adhoc TCP, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, jQWidgets jqxTabs position Property, Differences between Wireless Adhoc Network and Wireless Sensor Network, jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, std::bitset::to_ullong and std::bitset::to_ulong in C++ STL, unordered_multiset emplace_hint() function in C++ STL, unordered_multiset bucket_count() function in C++ STL, unordered_multiset find() function in C++STL, unordered_multiset bucket() function in C++ STL, Impact of Three-way Handshake and Slow Start Algorithm, array::rbegin() and array::rend() in C++ STL, multimap value_comp() function in C++ STL, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, unordered_set equal_range in C++ STL, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, unordered_set count() function in C++ STL, vector rbegin() and rend() Functions in C++ STL, array::cbegin() and array::cend() in C++ STL, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, unordered_multiset end() function in C++ STL, How to Sort an Array Having Optional Properties in TypeScript ?
GeeksforGeeks
[-0.0237887576, -0.00702645862, -0.00684711384, -0.00693038106, 0.022610208, -0.0138863828, -0.00538994046, 0.0308984835, -0.0253644269, -0.00626424467, -0.0373292603, 0.000821461552, 0.00773102557, -0.00949884951, -0.0199072305, -0.00757730193, -0.00365734519, 0.00653326139, 0.00575503474, -0.0169992894, 0.0161666181, 0.0228407942, -0.0358945057, -0.0147702945, -0.0149112083, 0.00710332, -0.0412748381, -0.0143731749, 0.00357728079, 0.0103763565, -0.020112196, 0.0332299583, -0.00826265384, -0.016948048, -0.0105941314, 0.0243908428, 0.00298160105, 0.0287207291, -0.03077038, -0.000781829585, -0.0196510255, 6.1699684e-05, 0.0332299583, 0.0164868776, 0.010094529, 0.0146806221, 0.0209192466, -0.0130088758, -0.00983191747, 0.0207399018, 0.0111065442, -0.0172939263, 0.0352539904, 0.0215981938, 0.0277215242, -0.0212651249, 0.00444197701, 0.0325638242, -0.0121377744, -0.0261074249, -0.0200609546, -0.026145855, 0.0237118956, -0.0101265553, -0.00808971468, 0.0203555916, -0.015756689, 0.0507800914, 0.0461683795, -0.00233147759, -0.033332441, 0.0344853699, 0.0310778264, 0.0222771391, -0.0229176562, 0.00227543246, -0.00595039176, -0.0193179566, -0.0362531953, 0.0333068222, -0.0248007718, 0.0296943132, -0.00226422329, -0.00825624913, -0.00720580295, -0.00856369641, -0.0107542602, -0.0266454574, 0.027900869, 0.0523173325, -0.0159232225, -0.0147831049, -0.0244420841, -0.00780148245, -0.0226742588, 0.0395582579, 0.0170121, 0.010875958, -0.0137839, 0.0567753203, 0.00382708199, -0.0146934325, -0.0132330563, -0.0117022237, 0.00635711942, 0.0133227287, 0.027824007, 0.0202915408, 0.00985113345, -0.0167558938, 0.0437087975, 0.0198688, 0.00726985419, 0.0308728628, -0.0134252114, -0.00933231506, -0.000131005494, -0.0297199339, 0.0301042423, -0.000437552371, 0.0134380218, 0.01538519, 0.0253131855, -0.01296404, -0.0509338155, -0.0170761514, 0.0130409021, 0.0128743676, 0.00605927967, -0.0138607621, 0.0168968067, -0.0323076174, -0.0114716385, -0.0438625216, -0.0351515077, 0.0367143676, 0.0218415894, 0.0229304656, -0.0105428901, -0.0318720676, -0.0582100749, -0.026517354, -0.02022749, 0.00809611939, -0.0148215359, -0.0214700904, -0.0108183119, 0.00496079493, 0.00603365898, 0.0141682094, 0.0134636424, 0.0216750558, 0.0200737659, 0.00965257362, 0.017357979, -0.00642117113, 0.00956290122, -0.00990237482, 0.00481027365, -0.0127462642, 0.0465014465, -0.00687273452, -0.00387191796, -0.0111257592, -0.0124131963, 0.0409673899, 0.0188824069, 0.0158207398, -0.0310522057, 0.0209961087, 0.0356895402, 0.0185749587, 0.0127142388, 0.0214700904, -0.0124644376, -0.015346759, 0.0553918071, 0.01698648, 0.0345622338, 0.000520419097, -0.00614574924, 0.0157823097, 0.044887349, -0.0125733251, -0.0103699509, 0.00737233693, 0.00923623797, -0.0134252114, 0.0555455312, 0.0429658, 0.000745400263, -0.00226422329, 0.0179600641, 0.0556992553, 0.0489097871, 0.0051081134, -0.0196254048, -0.0159104131, -0.0292331409, 0.030796, -0.0141810197, 0.00916578155, -0.0339985788, -0.00705207884, 0.0115869306, 0.0212138835, -0.00181586237, -0.00626104185, 0.0335886478, 0.00667417469, 0.0201506279, 0.0279521104, 0.000765816716, 0.0135661252, -0.0464245863, 0.0151161728, -0.0598498, 0.0426327325, -0.00512092374, -0.0219056401, 0.012848747, -0.00672541605, 0.0177679081, -0.0386871547, -0.0164228249, -0.0267479401, 0.0264917333, 0.0307447594, -0.0112026213, -0.0432732478, 0.0276959036, -0.00269016647, -0.0406599417, -0.0202146787, 0.0319745503, -0.0274909381, -0.0511900224, -0.00556287961, 0.0016621385, 0.0147062428, -0.0105813211, 0.0615407601, -0.0229304656, -0.0343572684, -0.0130024711, 0.0188824069, -0.0200609546, -0.0461683795, -0.00195197191, 0.0163715836, 0.0220721755, 0.00750684505, 0.0232122932, -0.0117214397, 0.031923309, 0.0157310683, -0.0374573655, -0.0345109925, 0.0282083154, -0.0235069301, -0.00334349251, 0.0482436493, -0.0382516049, 0.000666937092, -0.0018494894, 0.0106069418, 0.0290537979, -0.0327687897, -0.0415566638, -0.0486535802, 0.0162691, -0.0204324536, 0.0205861777, 0.00375662511, 0.000884712441, 0.0149112083, -0.02995052, 0.00146758184, -0.0284389015, -0.0242371187, 0.0103058992, -0.0281314552, 0.0141425887, 0.0240577739, 0.0187927336, -0.0124708423, -0.0271578711, -0.0286182463, 0.0119007835, -0.0272347312, -0.00915297121, 0.000394517701, -0.00517536793, -0.0115741203, 0.00630908087, 0.0269272849, 0.00297039212, -0.0351002663, -0.0302323457, -0.0365094021, -0.0221746564, -0.0383540876, -0.0452460349, -0.0148599669, -0.00356447045, -0.0174476504, 0.0155517235, 0.00522340648, -0.000387111737, -0.0268248022, 0.0380722582, -0.0277471449, -0.0358176455, -0.00072258187, -0.00144276186, -0.039071463, 0.0129704447, 0.0335886478, -0.0341523029, -0.0148727773, -0.0290025566, -0.00479426095, -0.0128935836, 0.0388664976, 0.0187030621, -0.0125028687, 0.011715034, 0.0621556528, -0.00633470155, -0.0243780315, 0.00280545931, 0.00763494847, -0.0589274541, -0.00321538933, -0.00330826407, -0.0262355283, -0.0296943132, 0.0304373112, 0.022238709, 0.033332441, 0.0248520132, 0.0355870575, -0.00618097745, -0.00752606057, -0.0163459629, 0.00148199347, 0.00539634563, -0.0334605463, -0.0155901546, 0.0369961932, 0.00066293386, -0.00824343879, 0.0153339487, -0.0193435773, 0.0331018567, -0.0425558686, -0.0300017595, -0.0299249, -0.00328264362, 0.00480066612, -0.0212266929, 0.023801567, -0.00115372904, 0.0258384068, -0.00409289589, -0.0183699932, -0.00241474458, -0.0375086069, 0.0296686925, -0.0394557752, -0.0215341412, 0.00310490048, 0.0389946029, -0.00126982259, -0.0192667153, 0.0128807733, -0.009684599, 0.0122530675, -0.00769259501, 0.00658450229, 0.0161025673, 0.0417360105, -0.00490955357, -0.0181650277, 0.0198944211, -0.00782710314, -0.0146934325, 0.016576549, -0.00816657674, 0.00380146131, -0.0276702829, -0.0257231146, 0.0160897579, -0.0340498202, -0.0125925411, 0.00937074609, -0.0420434587, -0.0391995683, -0.0542645, -0.0514974706, 0.0314877555, -0.0118751628, -0.00357087562, -0.00282787718, -0.0222771391, -0.0067382264, -0.00125220837, -0.0191770438, -0.00140513154, 0.0149240186, 0.0256078225, -0.0371499173, 0.0333836824, 0.043247629, 0.0203812122, -0.00547961285, -0.025774356, 0.0215469524, 0.0191001818, -0.0106197521, -0.0384309478, 0.0128935836, -0.0482180305, -0.0103123048, -0.00527144503, 0.0266198367, 0.0141041577, 0.00373420725, -0.00519458298, -0.0346134752, -0.00746200932, 0.0211242121, -0.0195613522, 0.0482436493, 0.0147062428, -0.0220977962, 0.0295918304, -0.030949723, -0.00748763, -0.0175629426, 0.0301554836, 0.064512752, -0.00404485734, -0.0283364188, 0.0090953242, 0.033563029, 0.00693038106, 0.00270297681, -0.00165413204, 0.0158207398, -0.0432988703, 0.00605607685, -0.00350041897, 0.0236094128, 0.00612973608, -0.0116701983, -0.0231098104, -0.00266294437, 0.0297199339, 0.0135789355, -0.0195229221, 0.0175501332, 0.00937074609, 0.0236222222, 0.0124196019, 0.024659859, 0.0101842014, 0.00988956448, -0.000989596942, -0.0112538626, -0.0138095208, -0.0492428541, -0.0114588281, 0.0146678118, 0.0260946136, -0.0318976864, -0.000938355632, -0.0121633951, -0.0318464451, 0.0022658247, 0.020675851, -0.0167430826, -0.0107734762, -0.0037822458, 0.0268760435, -0.00362531957, -0.00462772651, -0.0284389015, -0.0135276942, 0.00335950544, -0.0387896374, -0.0347415768, -0.0203940235, -0.0340754427, 0.0161153786, -0.00731469039, -0.0417360105, -0.0288232118, -0.00766697433, 0.000691356778, 0.0386871547, -0.0177422874, -0.0335117877, 0.00963976327, 0.0222643297, -0.0318208262, 0.00197439, 0.0364837795, -0.0395326354, -0.0128551526, 0.0162050501, 0.0283364188, -0.00634110672, 0.00607529236, -0.00153403531, -0.00751325, 0.0336142704, -0.0265685953, -0.0402756333, -0.00548601802, 0.010856743, 0.0112026213, -0.0077694566, 0.046937, 0.0339473374, 0.0202787314, -0.031513378, 0.0059632021, -0.0247751512, -0.00782710314, 0.0236222222, -0.0101842014, -0.0256334431, -0.0209064353, -1.08712547e-05, 0.0145140886, -0.00416655513, 0.0201378167, -0.0272347312, 0.0133867804, 0.0143603645, 0.00582549116, 0.0383284651, 0.00413773209, -0.0363300554, 0.01698648, 0.0211242121, -0.0111129489, -0.0366631262, 0.00260689924, 0.0307447594, 0.00230265432, -0.0194588695, -0.0163587742, -0.00232507242, 0.0192154739, -0.00965897832, -0.0181137864, 0.0320001692, -0.000200861759, -0.00331146666, 0.032256376, 0.0400706679, 0.0226358287, -0.0022434066, -0.0140401069, 0.0142706921, 0.0321026519, -0.0298224166, 0.0144628473, 0.0182931311, -0.0324613415, 0.0365606435, -0.000606488378, -0.00668058, 0.00938996207, -0.0255693905, 0.00272859726, -0.0179088227, 0.00736593176, 0.0155132925, -0.023916861, 0.00753887091, -0.020932056, -0.0157951191, -0.00387191796, -0.0428889394, -0.0272859726, -0.0449642092, 0.00486471737, -0.0347159579, 0.0164484456, 0.00319297123, 0.00824984349, 0.0131561942, -0.0234685, -0.000539634551, -0.00470779138, -0.0194460601, -0.0214957111, 0.021790348, -0.00217455113, -0.00778867211, -0.00557889277, -0.00311290682, 0.0131690046, 0.00595359458, 0.00210889825, 0.00136509934, 0.00463092932, -0.0408905298, 0.000479586219, 0.0419153534, -0.00830749, 0.0143091232, 0.00790396519, -0.00195517461, 0.0420178361, -0.0061777751, 0.00702645862, -0.0108119072, -0.00286310562, -0.0125413, 0.00515935477, 0.0212779343, 0.00950525422, -0.0364069194, -0.0215981938, 0.0186902508, -0.0189592671, 0.00346198794, -0.0212138835, -0.00615855958, -0.0162691, 0.0118367318, 0.00517216511, -0.0336398892, 0.0327944085, 0.00723142363, 0.00666136434, -0.0123939812, 0.0218159687, 0.0250569787, 0.0331018567, 0.00163731852, 0.0113691557, 0.000728186395, 0.0191642325, 0.0160641372, 0.00556287961, -0.0320257917, 0.0194076281, 0.0280289724, -0.00204324536, -0.0136429863, -0.0295918304, -0.0189592671, 0.010895174, 0.0142194508, -0.0204708856, -0.0408905298, -0.0234044474, 0.00938355643, 0.0045924983, 0.0148727773, 0.00870461, -0.0284389015, -0.00260209548, -0.00738514727, -0.00644038664, -0.0379185341, -0.00807690434, 0.0165124983, -0.0126117561, 0.00735952659, -0.026145855, -0.0260946136, 0.0216110032, 0.027414076, -0.0118495421, -0.0263636298, -0.0229560863, -0.00341715175, -0.0235581715, -0.00712253572, -0.00245797937, 0.0141297784, 0.0228792243, 0.00821141247, -0.0311546884, -0.0150905522, -0.0106773982, 0.0367912278, 0.024659859, -0.0141810197, -0.0030968939, 0.0344085097, 0.0217647273, -0.0317183435, -0.00285029528, -0.00969740935, -0.0110745179, -0.0001454171, -0.039814461, 0.0196382143, 0.0404037386, -0.00678946776, -0.0091849966, -0.0158847924, -0.0415054262, 0.00223219767, -0.00471099373, -0.0358688869, -0.00568778, -0.0219184514, -0.00746841449, 0.00638594246, -0.00126341742, 0.0320770331, -0.0458096899, -0.0221746564, -0.000405526574, -0.0108183119, 0.00096077373, 0.0446055196, -0.00651084306, 0.0169736687, -0.0240321532, 0.0196125936, -0.00560451346, -0.0055724876, -0.0191386119, 0.00551163871, 0.00407047803, -0.026594216, 0.0364069194, 0.00956290122, -0.0133227287, -0.0144116059, -0.00871742051, -0.0174604617, 0.000221578433, 0.00665495917, 0.0244292729, -0.0224052425, 0.0250954088, 0.0222130883, 0.00171498104, -0.0318976864, 0.056211669, 0.0237375163, 0.0727625936, 0.0364069194, 0.011343535, -0.0035740782, -0.0171786342, 0.0374829844, -0.0135789355, -0.0263892505, 0.00342035433, 0.0292331409, 0.00597281, 0.00456367526, 0.0144372266, -0.022981707, -0.00924904831, -0.0115805259, 0.0311034471, 0.0211242121, 0.014898398, -0.0197022669, -0.003036045, -0.0232763439, 0.00493837707, -0.00672541605, -0.0167174619, 0.00877506658, 0.0105557, 0.00877506658, 0.0379441567, -0.00706488919, 0.018997699, 0.00533869909, 0.017242685, -0.0358176455, 0.00476864027, 0.0538033284, 0.0223411918, 0.0234428793, -0.0232122932, -0.0288232118, 0.0355870575, 0.00629627053, 0.0266966987, 0.0206502303, -0.0321282744, -0.0132330563, -0.0223668125, -0.0191514231, -0.015756689, 0.035945747, -0.00545078935, -0.00996002089, -0.00238432013, 0.0251338407, -0.0188952163, 0.0301811043, 0.0252619442, 0.0399938077, 0.0536496043, -0.0283620395, -0.0174604617, -0.00782069843, 0.0303348284, 0.010113745, -0.00308088097, -0.00261970959, -0.0129192034, 0.0285926256, 0.00626104185, 0.0260946136, -0.0172298755, 0.0146293808, -0.000467576552, -0.0360482298, 0.0150008798, 0.0380722582, 0.00850605, 0.0171145815, -0.0141553991, 0.00627705501, 0.00110008591, 0.0107158292, 0.00657169241, -0.00293196109, 0.00583189633, 0.0279521104, -0.0237631369, 0.00332107441, 0.0427352153, 0.019779129, -0.00488073053, -0.0284645222, -0.0119712409, 0.000751405081, -0.00110008591, -0.00701364828, -0.00366695295, -0.01013296, 0.00679587293, -0.00183507777, 0.0020608597, 0.00039992205, -0.0108823637, 0.00869820453, 0.0154620511, -0.0319489278, -0.0279521104, -0.00364453485, 0.0312571712, 0.0114139915, 0.00193756027, 0.0216366239, 0.0471675843, 0.0406343229, 0.0405318402, 0.00532588875, -0.0165124983, -0.00514974725, -0.0182034597, 0.00819860213, 0.00863415282, -0.0201634374, -0.019779129, 0.0090953242, -0.0163075328, 0.0084099723, 0.0388664976, -0.00883911829, -0.0171658229, 0.00760292262, -0.0325382, -0.0326663069, -0.0459377952, 0.0168839972, -0.0154364314, 0.00789756, -0.00533869909, -0.0350746438, -0.0493453369, 0.012477248, 0.0138735725, -0.017357979, -0.00142674893, -0.0023266736, -0.00576144, 0.0045028259, 0.0143859852, 0.0143347438, -0.0437087975, 0.00845480897, -0.00869820453, -0.0130344965, -0.0335886478, 0.034639094, 0.0138735725, 0.0260818042, 0.0261330456, 0.0179344434, 0.0111129489, 0.023724705, -0.0131561942, -0.0406599417, -0.0472956859, -0.00598882278, -0.00124099932, -0.00695600174, -0.0202787314, -0.00111129496, 0.000165233068, 0.0256718732, 0.0128103159, -0.00221138075, -0.010446813, -0.00374061242, -0.024544565, 0.0120224813, 0.00576464226, -0.0138479518, 0.00598562043, -0.0129384194, 0.00826905947, 0.00983832311, 0.0102866841, -0.00373100466, -0.00138751732, -0.0162947215, -0.0117854904, -0.0497552678, -0.000570859702, 0.0239681024, -0.00548601802, -0.00833951589, -0.00377584063, -0.0357151628, 0.00711613055, -0.0255309604, -0.0240577739, -0.0248392038, -0.0127078332, -0.0348184407, -0.00156365917, 0.00161409983, -0.0360482298, -0.0356383, -0.0170121, -0.00335950544, -0.000210169252, -0.00142514764, 0.00809611939, 0.0171530135, -0.0106197521, -0.0119199995, 0.0116253616, 0.016141, -0.00399681879, -0.00486471737, -0.018139407, -0.0151417935, 0.0195485428, 0.0101521751, -0.0285670049, 0.0171914436, 0.0429401807, -0.0121954214, 0.0144884679, -0.0103058992, -0.00313852751, -0.00718018226, 0.00151001604, 0.0191642325, 0.000267415337, 0.0086533688, 0.013630176, 0.0199328512, 0.0260561835, 0.00734031107, 0.000879108, -0.0421203189, 0.0396607406, 0.00293996767, -0.0142322611, 0.0228407942, -0.0264661126, 0.0465526879, 0.0422996655, 0.0152058452, -0.0270297676, 0.0111129489, -0.043913763, -0.0230713785, 0.0157310683, 0.00343636726, 0.00433949474, 0.0364837795, -0.0200737659, -0.00340434141, 0.0450154506, -0.0290281773, -0.000481988158, 0.00477824779, -0.029463727, -0.0009047286, 0.0355870575, 0.00975505542, 0.0294893477, -0.0176526159, 0.00113931752, 0.0226870701, 0.0285157636, -0.0220465548, -0.0120352916, -0.0255437698, 0.0142194508, 0.000397119788, 0.0161666181, 0.0184980966, -0.0144756576, 0.0305910353, 0.00333068217, 0.013297108, -0.0218928307, -0.00209929049, 0.0212395042, -0.0179216322, -0.00922342762, -0.00755808642, -0.0242627393, 0.0107158292, -0.0037822458, -0.00663574366, -0.00226422329, -0.0302579664, -0.00440354599, -0.0111513799, 0.00138271356, 0.0227895528, -0.0246214271, -0.0111129489, 0.0260433722, 0.00877506658, 0.00947963353, -0.0120416973, 0.0345878527, 0.0236606542, -0.00732109556, 0.0182931311, 0.00665495917, 0.0271578711, 0.000626904832, 0.00132746901, -0.0198047496, 0.0122979032, -0.0116445776, -0.00881990232, 0.0016020902, 0.0272603519, 0.0152827073, 0.013630176, -0.00144036, 0.000550042954, -0.00578385778, -0.000358688849, -0.00387832313, -0.000910333067, -0.0186774414, -0.00341394916, -0.00135789346, 0.0124260066, -0.0406087, -0.0105172694, -0.0190233197, -0.00186390104, 0.0533421561, 0.0172554962, 0.0019119397, 0.00273340126, -0.0134764528, 0.00107286393, -0.0405062214, -0.0145525187, 0.0106069418, 0.0324357189, 0.0151289832, 0.0208039526, 0.0037598277, 0.0266966987, 0.0471163429, 0.00876225624, 0.0100304773, -0.0124644376, 0.00613934407, -0.00741076795, 0.0125284893, -0.00295437919, 0.00787193887, 0.0152058452, -0.00582549116, 0.0409417711, 0.00898003206, 0.043913763, 0.0216878653, 0.00507288519, 0.03397296, 0.00318656606, -0.0093131, -0.0178703908, -0.0338448547, 0.00552444905, -0.0195229221, -0.0179344434, 0.00448040804, -0.0188439749, 0.0156413969, -0.0367656089, 0.0149624497, 0.015398, 0.00687273452, -0.00195037061, -0.00142434705, -0.0040768832, -0.0106709935, 0.0232507233, 0.0206502303, 0.0141682094, 0.00140353024, 0.0213547964, -0.00952447, 0.00334349251, 0.0214060377, 0.0247495305, -0.00669979537, -0.0149240186, 0.00844199862, 0.00712253572, -0.0015172218, 0.0163075328, 0.00852526538, 0.00594078423, 0.0231098104, -0.0120224813, 0.00523621682, -0.0259793214, 0.0111129489, -0.0394557752, -0.00298640504, 0.0115485, 0.00969740935, -0.00794880092, 0.0260818042, -0.00145797408, -0.00828187, 0.00450923108, -0.0357407816, 0.00364133227, -0.0054027508, 0.0136429863, -0.0180241149, 0.0148087256, 0.0352539904, 0.00403845217, -0.0151546039, -0.0258768387, -0.00310810306, -0.0205861777, -0.0259152688, 0.00571019854, 0.00783991348, 0.0134764528, -0.0208680052, 0.0275421795, -0.00383348716, 0.0244933236, 0.00889036, -0.00915297121, -0.0138095208, 0.0232507233, -0.03077038, 0.0127590746, -0.012182611, 0.0142706921, -0.0106133465, 0.0399681851, -0.0124516273, 0.0109400097, -0.00367976329, -0.00271738833, -0.00548281521, 0.00799363758, 0.0164100155, 0.0057134009, 0.012887178, -0.0343828872, -0.0173836, 4.91896135e-05, -0.0328456499, 0.0211114, 0.00577745261, -0.00289192889, -0.0251338407, -0.00656528724, -0.00826905947, 0.0112410523, -0.0108119072, -0.00207527122, 0.00316895195, -0.0123619549, 0.0235325508, 0.0153595693, -0.0047173989, 0.0174604617, -0.00873023085, -0.00123939815, -0.00573261641, 0.0205477476, -0.00745560415, 0.017691046, -0.0159616545, -0.0195869729, 0.0156285856, -0.0255309604, -0.00401603431, -0.0189720783, 0.0111129489, 0.0233019646, -0.0146165704, 0.00548281521, 0.0387640148, 0.0378929153, -0.0039071464, -0.00867258385, -0.000897522783, -0.007699, 0.0188567862, 0.0158591717, 0.0279521104, 0.0011841536, -0.00728266453, -0.0206630398, -0.0277983863, 0.000677745789, -0.00270938198, -0.023353206, 0.0211754534, -0.0012890381, 0.00925545301, -0.0294893477, 0.00167655014, -0.000510411046, 0.0322051346, 0.00912735052, 0.0222899504, -0.00212010741, 0.00665495917, -0.00213932269, -0.0217262954, -0.000473581371, 0.0332043394, 0.0097742714, -0.00602725381, 0.0110809235, 0.000660932274, 0.00658450229, 0.0209448673, -0.0142578818, -0.0114780432, 0.0191898532, -0.00459570112, -0.00191834487, 0.007699, 0.0104788383, -0.0282851774, 0.00964616798, -0.00773102557, 0.00386551279, -0.00424662, 0.0131561942, 0.00792318, 0.0216878653, 0.000210169252, 0.0175629426, -0.00385590526, 0.0250954088, 0.00196318096, -0.0125220837, -0.0202403, 0.00932591, -0.000769019302, 0.0267223194, 0.00346519053, -0.0168455653, 0.0170505308, 0.0127846953, 0.0121954214, -0.01698648, -0.00125861354, 0.0230073277, 0.0147446739, -0.0128615573, -0.0146293808, -0.0101970118, -0.0120609123, -0.00637633493, -0.0360226072, 0.00128743681, 0.00787193887, 0.00925545301, 0.0219312608, 0.0266710781, 0.000208567959, -0.00422740448, -0.00507288519, 0.0280545931, -0.00569098303, 0.0118239215, -0.0129320137, 0.0128231263, -0.00629306771, 0.00736593176, 0.0020608597, 0.000919940823, -0.0111641902, 0.00168295531, 0.0284389015, -0.0195997842, -0.0215981938, -0.021303555, -0.00895441137, -0.0139376242, 0.00277503463, -0.00345238019, 0.0195229221, -0.000281026325, -0.00438753329, -0.000681749, 0.0015156205, 0.00514334207, -0.0058383015, -0.00625143433, -0.0045924983, -0.00941558275, -0.0188439749, -0.00234909169, 0.0217134859, -0.0101649854, -0.00176942488, -0.037995398, 0.0244805142, 0.0274653174, -0.00610091304, 0.0277471449, -0.0263636298, -0.0238143783, -0.00379185355, 0.0111385696, -0.0269529056, -0.0173323583, 0.0202531107, 0.00621620612, 0.0099344, 0.0169736687, 0.00180785591, 0.00167494884, -0.00913375523, 0.0165124983, 0.0154492417, -0.0123363342, -0.00454125693, 0.035945747, -0.0132202459, 0.0353052318, 0.0182675105, 0.00458609313, 0.0172811169, 0.0313340351, 0.0093131, -0.00782069843, -0.0163972043, 0.00994080491, -0.0234813094, 0.00337231578, 0.0153211383, 0.0198431797, -0.0118239215, -0.00919140223, 0.00427544303, -0.000571260054, -0.0113179144, -0.00252363225, 0.000558850064, 0.0123619549, -0.0107798809, 0.000768618949, 0.00698162243, 0.0119392145, 0.0246854797, 0.00252843625, -0.00898643676, -0.00812814571, -0.0188439749, 0.0347415768, 0.0021633422, -0.0135148838, 0.00305526052, -0.0202403, 0.00267415354, 0.000150721375, 0.00295758178, -0.0233147759, 0.0133611597, -0.0141682094, 0.0125220837, -0.0107286396, -0.000284228881, 0.0171530135, -0.0329737552, 0.0168199446, -0.00355486269, -0.00619699061, -0.00150361087, 0.0171273928, 0.0163203422, -0.00489674322, 0.00131465867, 0.00727625936, 0.0217006747, 0.00757730193, 0.00881990232, 0.0202018693, -0.00750684505, -0.0160769466, 0.014526899, 0.0256846845, 0.0280802138, -0.00386551279, -0.000381707388, 0.00697521726, -0.0261202343, 0.00582549116, -0.0243139807, -0.0294124857, -0.0152442763, -0.0268248022, -0.00355486269, 0.0376879498, 0.0093131, -0.0104788383, 0.0191386119, -0.0179216322, 0.0192282852, -0.000416735595, -0.0144500369, -0.0221874677, 0.00629306771, -0.0121698007, 0.0334861651, 0.0266966987, -0.00559490547, 0.00654286891, -0.0189592671, -0.00327463704, 0.0364069194, -0.0118687581, -0.017357979, -0.0382003635, -0.0110104671, -0.0261970963, -0.0194332488, 0.00643398147, -0.0312315505, 0.00150681345, -0.000468777493, 0.0219568815, -0.000235789877, 0.0191386119, -0.0133483494, 0.0102930889, 0.021790348, 0.0199200418, 0.0447592437, 0.0316671021, -0.0016845566, -0.000511612, 0.0186902508, -0.0317695849, 0.0174860824, 0.006229016, 0.0238271877, 0.0522660911, -0.00750044, 0.00775024109, 0.00206406228, 0.0222002771, 0.0403524972, -0.0349465422, -0.0111321649, -0.0189336464, -0.00216013961, 0.0135533148, 0.0163843948, -0.00844199862, 0.0208808146, -0.00747481966, -0.0128551526, 0.00979989208, -0.00940277241, -0.00432988675, -0.00766697433, -0.0191386119, -0.0339217186, -0.0118879732, -0.00428505056, -0.0327431671, -0.00511451857, 0.0261714756, -0.0064275763, -0.00562372897, 0.0292843822, -0.0355870575, 0.0195869729, -0.00987675413, 0.0113499397, 0.0113691557, -0.0201506279, -0.0132074356, 0.022981707, 0.0332812, -0.0146293808, -0.0122786881, -0.000720580283, -0.0171914436, -0.00605927967, -0.00277343346, 0.0178319607, 0.000630107417, 0.0136814173, 0.00386551279, 0.00565575436, -0.0182034597, 0.00399041362, 0.0148727773, -0.0118943788, -0.00996002089, -0.00544438418, 0.0059632021, 0.00411531422, -0.00261970959, 0.0159232225, -0.0279777311, 0.0113179144, 0.0134124011, 0.0231738612, 0.0112986993, 0.0242755488, 0.0130793331, -0.0377904326, 0.00402564183, -0.00976786576, 0.0104211923, -0.00255245552, -0.0103123048, 0.0205861777, 0.0341266841, 0.00680868281, 0.00839075726, -0.0192410946, -0.0166662205, 0.0243908428, 0.0275934208, 0.0209961087, 0.0280802138, -0.0188695956, 0.00791677553, -0.0370474346, 0.00459570112, 0.00873023085, 0.00243876386, -0.010504459, 0.007699, 0.0157823097, 0.0132330563, 0.00436831778, 0.00223700143, -0.00835232623, -0.0069431914, -0.0142450714, 0.000924744701, -0.000987995649, 0.0246086176, -0.0184724759, 0.00665495917, 0.0185621474, 0.00625463668, 0.0117918961, -0.00832670555, -0.00236510462, 0.0164484456, -0.0102162268, -0.0134124011, 0.0164868776, -0.0141938301, 0.021341987, 0.00803206861, -0.00544118183, -0.0214829, 0.0142578818, 0.0345622338, 0.00947322883, -0.00868539419, 0.0140144862, 0.0279264897, 0.0123747652, 0.0185365267, -0.000272019068, -0.0172554962, -0.00281666825, 0.00438753329, 0.00349721638, 0.00409289589, -0.00212811376, 0.00203203643, 0.00158287468, -0.00327143446, -0.00975505542, -0.00173900044, 0.0021633422, -0.0226870701, 0.00853807572, 0.00418577064, 0.0128999883, 0.0298480373, 0.0102482531, -0.0031593442, -0.00541556114, 0.00867258385, 0.0034491776, -0.0113243191, -0.00120096712, -0.0105813211, -0.00965257362, 0.00365414261, -0.00525543233, 0.00167334755, 0.00758370711, 0.0139376242, -0.0165381189, 0.0187927336, -0.000577665167, 0.00683430349, 0.00504406216, 0.0127782905, 0.0133739701, 0.00187831256, 0.0070841047, 0.0190873705, -0.00426903786, 0.00479746331, 0.00876225624, -0.00962054729, 0.00946682319, -0.0242499281, 0.013335539, 0.0150136901, 0.0254669078, -0.0045764856, -0.0106453728, -0.00763494847, -0.00498001045, -0.00677665742, -0.00667417469, -0.00126101554, -0.00290954299, -0.0321538933, -0.00539634563, -0.00607529236, -0.0160128959, -0.0130537124, -0.00812814571, -0.000562452944, 0.00394237461, -0.00260369666, -0.030206725, -0.0157438777, -0.0135917459, -0.00644358899, -0.0113819661, 0.000513213279, -0.014116968, 0.00832670555, 0.0297967959, -0.00280545931, -0.0114075867, -0.0271066297, 0.0169224273, -0.00089592149, -0.0190361291, 0.00563013414, 0.00461171381, 0.00282147224, -0.0106966142, -0.0155901546, 0.00406087, 0.0134892631, 0.00232347101, -0.0120993434, -0.0110617084, -0.00735312141, 0.00237471238, 0.00522020366, -0.0228536036, -0.00887754932, -0.00436831778, -0.000354285294, 0.0261842869, -0.00963976327, -0.000180945717, 0.00358048338, -0.0205093157, 0.00683430349, -0.0189592671, 0.0206246097, -0.012925609, 0.00523621682, 0.020483695, 0.00949884951, -0.00305686169, -0.000111790025, 0.000462772674, -0.0224308632, -0.0251722708, -0.00838435162, 0.00145156891, 0.0152442763, -0.0150521211, 0.00563653931, -0.00620339578, -0.00235229428, 0.0189720783, 0.0090889195, -0.0184340458, -0.0159616545, 0.00676384708, -0.0220977962, 0.00799363758, 0.00337231578, -0.0113307247, 0.015308328, 0.00128663611, 0.00617137, 0.00259088655, 0.00223059626, -0.0258640274, -0.0244805142, 0.0163203422, 0.0207527131, -0.0112218373, 0.00753887091, -0.00715456158, -0.00351322931, -0.0163459629, 0.00828827452, 0.00669339, -0.0153339487, 0.0102354428, 0.00901205745, 0.00912735052, -0.0104211923, -0.0151417935, -0.0029335625, 0.00631548604, -0.000503605581, 0.00126181613, -0.00353884976, -0.0128807733, 0.00196478213, -0.00894800574, 0.0152058452, -0.0159488432, 0.0129384194, -0.00439393846, 0.0136942277, -0.00460851146, -0.0275678, 0.0211498328, -0.00461171381, 0.00566215953, -0.000626904832, 0.0183571838, 0.0307191387, 0.00459890347, 4.69127772e-05, -0.0142578818, -0.0252363235, -0.00419217581, -0.00821141247, 0.0141810197, -0.0137710897, 0.00233307877, 0.0236222222, -0.0110040614, -0.0111513799, -0.00534830708, -0.0214700904, 0.0147574842, -0.0108375279, 0.0183699932, 0.00226902729, 0.0199840926, 0.00143955927, 0.00720580295, -0.000883111148, -0.00257967738, -0.0139120035, -0.0110040614, -0.0281826947, -0.00882630795, -0.00348120346, -0.00998564158, 0.0103123048, 0.00315293903, -9.23243497e-05, -1.33232288e-05, 0.00322659849, -0.0103955716, 0.00164452428, -0.00740436278, 0.0112090269, 0.0106645878, -0.0232763439, 0.00288552372, 0.0115100695, -0.00354845752, -0.0129960654, -0.0171145815, 0.0024739923, 0.012009671, 0.0232379138, 0.000723382516, -0.0011433207, -0.0204965062, -0.00255725929, 0.0014972057, 0.00685992418, -0.0261714756, 0.00558850029, 0.0294381063, -0.0157310683, -0.00303444359, -0.0143987956, -0.01538519, -0.0131049538, 0.0140016759, 0.0127270492, 0.00119536265, -0.00646920968, -0.017434841, -0.0258127879, 0.0208936259, 0.0167687032, 0.00688554486, 0.0348440595, -0.0136942277, 0.00717377709, 0.000112990994, -0.00718018226, 0.0104019763, 0.00576144, 0.00735952659, -0.00291915075, -0.0236734636, 0.00304565276, -0.0107222348, -0.0136557966, -0.00557889277, -0.00700083794, 0.00860853214, 0.0295918304, 0.00816657674, 0.0244548935, 0.0242755488, 0.026145855, 0.014116968, -0.0116573879, 0.0027462116, 0.0224308632, -0.00282787718, 0.00617457228, 0.013745469, -0.0105492957, 0.00981270242, -0.0182034597, 0.0161538087, 0.00950525422, 9.46262e-05, 0.0227767415, -0.000726184808, 0.00667417469, 0.00621940847, -0.0163587742, 0.0120609123, 0.00246758712, 0.0144756576, -0.0136045562, -4.74882436e-05, -0.00595359458, 0.0085957218, -0.00108887686, -0.0310778264, 0.0205349363, -0.00154924765, -0.00657169241, 0.0204068329, 0.000516015571, -0.0198303703, -0.0141425887, -0.0307447594, 0.00198239647, -0.00279745273, -0.0170505308, 0.0179728735, -0.00716737192, -0.00472380407, 0.0211626422, 0.030053, 0.00024419665, -0.00145797408, -0.00321699074, 0.0142194508, 0.00506968284, -0.00112250401, -0.00741717312, 0.018177839, 0.0302835871, -0.0127911009, 0.0190361291, -0.00510170823, -0.025402857, -0.00637313211, 0.00985113345, -0.00610091304, -0.00486792, 0.0228407942, 0.0184596647, 0.000439554, -0.0167046525, -0.00304565276, -0.00380466389, -0.0173707884, -0.000322259526, -0.00930029, 0.00315133785, -0.0128039112, -0.0133483494, 0.00539314328, 0.00246278336, -0.00621940847, -0.00264052651, 0.0155132925, -0.0297199339, 0.00976786576, 0.0127462642, -0.0026837613, 0.0130921435, 0.00807690434, -0.00940917712, -0.00824984349, -0.004032047, 0.0131305745, 0.0142963128, -0.00551163871, -0.00420818897, 0.00241794717, 0.00700724311, -0.000357888202, 0.0201634374, 0.00547961285, -0.00465014484, -0.00219696923, 0.0383540876, 0.0305141732, 0.00122178392, 0.0107734762, -0.0062738522, 0.00189432548, 0.0139760552, -0.00984472781, -0.00883911829, -0.007699, -0.0120737227, -0.0137967104, 0.0051529496, 0.00961414259, 0.00135869416, 0.000349681592, -0.00307927979, 0.0128295319, 0.0108183119, 0.00389753864, 0.00528105302, -0.00457328279, 0.01698648, 0.0164100155, -0.0273115933, 0.0308984835, 0.0166790318, 0.00647561485, -0.000749803788, -0.00791677553, 0.0161794294, 0.0104724336, -0.0131818149, 0.00842918828, -0.0366118848, -0.0211882629, 0.00935153104, 0.00669979537, -0.0117214397, -0.00116814068, 0.0114780432, -0.0171402022, 0.00971662439, 0.0253516156, -0.00134348194, 0.0032618267, 0.0090889195, 0.00119456195, -0.00262771617, -0.0373292603, 0.00992159, 0.0115741203, -0.0044675977, 0.00219696923, -0.0224949159, 0.00846761931, -0.00384629751, -0.0118687581, -0.00661012297, -0.00339793647, 0.0162434801, 0.020675851, 0.0098703485, -0.00916578155, 0.00391675439, -0.0134380218, 0.0244805142, -0.00187671126, -0.000565655529, -0.000786233169, -0.0156542063, 0.00344277243, -0.00246438454, 0.0352027491, 0.00853807572, 0.0157694984, -0.00560451346, 0.00568457786, -0.0189848877, -0.00654927408, -0.0055436641, -0.0280545931, -0.00602084864, -0.00053202844, -0.00407047803, 0.0130280918, 0.00272059091, -0.0175629426, -0.0155773442, -0.00912735052, -0.00748763, 0.00830108486, -0.0111705959, -0.000811853795, 0.00190073065, 0.00930669438, -0.0130985482, -0.0272603519, 0.0127334539, -0.00893519539, 0.013335539, -0.00668698503, -0.00508889789, 0.0160385165, -0.00685351901, 0.00303124101, 0.000636912882, -0.00485511, 0.0190489404, -0.00459570112, 0.038738396, 0.000971982721, -0.0073787421, -0.00372780208, 0.011695819, 0.00279585156, 0.00227383105, -0.00685992418, 0.00177262747, 0.00911454, 0.0168583766, -0.0267991815, 0.00915937591, -0.0134252114, -0.00458289078, -0.0179472528, -0.00227703364, 0.00726344949, 0.00588634, -0.0104724336, -0.011715034, 0.00295918295, -0.00559490547, -0.00889676437, 0.0187799241, 0.00405446487, -0.0194076281, -0.00311771058, -0.00782710314, 0.0356895402, 0.0122210421, -0.019817559, 0.00486471737, 0.00547000486, 0.0117726801, 0.00480386848, -0.0108887684, 0.0083203, 0.00227222987, 0.00339473388, -0.0222258978, -0.00605607685, -0.00427544303, 0.0150521211, 0.0177422874, 0.0104596233, -0.0155389132, 0.0164228249, -0.0159488432, -0.00229945173, -0.0065076407, 0.00446439534, 0.00730188, -0.00300562032, 0.0303860698, 0.00528105302, 0.0164484456, -0.00269657164, -0.0139888655, -0.00082226214, -0.00944120344, -0.0144884679, 0.00709051, 0.0070328638, -0.0137839, 0.00704567367, -0.00700724311, -0.0108631477, 0.0235966016, -0.00452844659, 0.0118815685, -0.00710332, 0.00677025225, 0.0129576344, -0.00671260571, -0.0042017838, -0.00225621695, -0.0218800195, 0.00046357332, -0.010856743, 0.00175501336, -0.0115036638, -0.0188183542, -0.000777426059, -0.0188824069, 0.0168583766, -0.0151930349, 0.0132842977, 0.00315133785, -0.0202146787, -0.0120929386, 0.0152698969, -0.0335374065, 0.00794880092, -0.00819219742, -0.020483695, 0.0322051346, 0.00255245552, -0.00698162243, 0.00972943474, 0.010056098, 0.00852526538, -0.00474301958, 0.0155645339, -0.011266673, -0.000798643159, 0.0290025566, -7.01064564e-05, 0.013630176, -0.020932056, -0.00570699573, 0.000674543204, -0.00452524424, -0.0176398046, 0.01013296, 0.0028887263, -0.0245958064, -0.0182162691, -0.0103379255, -0.0226742588, -0.0118751628, 0.00508569553, -0.0138991931, 0.0105941314, -0.0120737227, -0.000963175669, -0.00780148245, 0.0241858773, 0.0164100155, 0.006648554, 0.0037213969, 0.0143219335, 0.0227767415, 0.00955649558, -0.0186005794, 0.0115613099, -0.00185589457, -0.0237375163, 0.00202402985, 0.00917859189, 0.00612973608, 0.0059920256, 0.00667417469, -0.00403845217, -0.00192635134, 0.0126886182, -0.00817938708, 0.0132074356, -0.00336270803, -0.0165124983, 0.0196382143, -0.0291306581, -0.0140657276, 0.0129384194, 0.0354077145, -0.0151289832, -0.0024739923, 0.0195613522, -0.00862134248, 0.000941558217, 0.049832128, 0.0288744532, -0.00696240691, 0.0111257592, 0.0276702829, 0.0104724336, -0.00117214397, -0.0284389015, -1.5912814e-05, 0.00662293332, 0.0134124011, -0.00401923666, -0.0365606435, 0.0118815685, -0.011715034, 0.0057134009, 0.0110296821, 0.00810893, -0.00662293332, 0.00457328279, -0.00196798472, -0.0200609546, -0.000795840868, 0.00857650675, 0.00430426607, 0.00338192354, 0.00775024109, -0.0130409021, 0.0160257053, -0.037098676, -0.00580947846, 0.0171658229, 0.0138863828, -0.0197150763, 0.0106966142, 0.0111770006, -0.0211114, 0.0357151628, -0.000578465813, -0.011753465, 0.00306006428, -0.01013296, 0.02104735, 0.0085957218, 0.0212651249, 0.00963335764, 0.0129127987, 0.013258677, 0.0112730786, -0.0115869306, 0.0432220064, 0.0118815685, 0.0140529172, 0.00237791496, 0.00291594816, -0.00478465296, 0.00958852191, 0.00710332, 0.028157074, -0.00301362691, -0.00976146106, 0.00980629679, 0.0166149791, -0.015308328, -0.00279745273, 0.0107990969, -0.0130921435, 0.0146037601, -0.019369198, -0.0221362263, 0.0122658778, 0.0274653174, -0.00415054243, -0.0228279829, 0.0123107135, 0.0223027598, 0.00199040282, 0.0136429863, -0.0093131, 0.0272091124, 0.0147062428, -0.00490955357, -0.00466936035, -0.0141682094, -0.000511612, 0.0430939049, 0.0183828045, 0.00288232113, -0.00930669438, -0.0205349363, 0.0232635345, 0.00620339578, -0.00904408284, 0.0154748615, -0.0281826947, 0.000113591472, 0.016948048, -0.00759651745, -0.0192795265, -0.0230457596, 0.00446119253, 0.0007998441, 0.00287271338, 0.00644679181, -0.0115613099, -0.0177550986, 0.0135533148, -0.00706488919, -0.0264404919, -0.0119135939, -0.00762213813, -0.00372459949, 0.00905048847, -0.0127718849, 0.0188824069, 0.0102738738, -0.00743638864, -0.00976786576, 0.00923623797, 0.00828827452, -0.0107350452, -0.00958852191, 0.0112602683, 0.00038751206, -0.00765416399, -0.0211882629, 0.0133739701, 0.00682149315, -0.00306006428, -0.0176269952, 0.00506968284, 0.00146437925, -0.0276959036, 0.0197919384, -0.00680868281, 0.0314365141, -0.00585111184, -0.0385590531, 0.0117278444, -0.00130665221, 0.0110296821, -0.00999845192, -0.0373036414, 0.0101457704, -0.00367976329, -0.00168295531, 0.0203555916, 0.00132907031, -0.0162050501, 0.0162947215, 0.00556608243, -0.00305205793, 0.00127142388, -0.0230073277, -0.0172042549, -0.0127654802, 0.00752606057, 0.0011633368, 0.00850605, 0.00810252503, 0.00722501846, -0.000477584603, 0.0199456625, -0.0199584719, 0.0101521751, -0.00397119811, -0.00692397589, -0.0107222348, -0.0100304773, -0.000863095047, 0.00893519539, 0.00668698503, -0.0384565704, 0.00657169241, 0.0325638242, -0.00790396519, 0.00173900044, 0.0143347438, 0.0152698969, -0.000415934948, -0.0090889195, 0.0151289832, -0.0142450714, -0.021418849, -0.0160769466, 0.00687273452, -0.00179024169, 0.0103379255, 0.0188311655, 0.00273019867, 0.00631548604, -8.13154838e-05, 0.0126117561, -0.00691757072, -0.00582549116, 0.00085588923, -0.00862134248, 0.00103203114, -0.0164612569, 0.0227126908, 0.018549338, -0.010427597, 0.00028783179, -0.0113115087, -0.00563974166, -0.0184340458, -0.0250954088, 0.037662331, -0.00618418027, 0.0139376242, -0.0137198484, -0.0033018589, -0.0109848464, 0.00149240182, -0.0242499281, 0.0124067916, 0.00219056406, -0.00595679693, 0.00726344949, 0.0315389968, 0.00279425015, 0.00141153671, 0.00136269734, 0.00314653385, -0.00484550186, 0.0295918304, 0.00511131622, 0.0135276942, 0.00940917712, 0.013668607, -0.0494734421, 0.00906329881, -0.00947322883, 0.003743815, -0.00105845241, 0.0148087256, 0.00696881209, -0.0155132925, 0.00368616846, 0.00124340132, 0.00323780742, 0.0188311655, 0.00625143433, -0.0117726801, 0.00167815143, 0.00102802785, 0.0345622338, -0.0216750558, 0.00474301958, 0.0121121537, -0.0172042549, 0.00990237482, 0.0141297784, -0.00567176752, -0.00468217069, -0.00480707129, -0.000450362684, -0.00777586177, -0.00803206861, -0.00999845192, -0.000467576552, 0.0227255, 0.0130537124, 0.0113947764, -0.012458032, -0.00760932779, 0.00876225624, -0.0155389132, -0.00718658743, -0.0115164742, -0.0119840512, -0.017729478, -0.0108183119, 0.0033466951, 0.00413452974, 0.0131818149, -0.00619699061, -0.00734671624, -0.00782069843, -0.00658450229, 0.0142450714, 0.0101842014, -0.0125861354, -0.00360930664, -0.0433501117, 0.016128188, 0.00172138622, 0.00664214883, -0.000566055824, 0.0133227287, -0.0022434066, -0.0505495071, 0.000488793652, 0.00277023087, -0.00306807063, 0.0291050375, -0.00203684019, -0.00288392231, 0.0274909381, 0.0277983863, -0.00491275638, -0.00828827452, -0.0209064353, 0.0064275763, -0.00184308423, 0.0220977962, -0.0110488981, -0.00457328279, -0.00464053685, -0.032256376, 0.0162562914, -0.00167975272, -0.00773102557, 0.017729478, 0.00503445417, -0.00653966656, 0.0066037178, 0.00475262711, 0.0106773982, -0.0192667153, 0.0294124857, 0.01538519, -0.00352283684, 0.000329465314, 0.0210345387, -0.0102226324, -0.0280545931, -0.0114588281, 0.0186774414, 0.0204452649, -0.00564614683, -0.00595679693, 0.00040993013, -0.00342355692, 0.0243396014, -0.00556608243, -0.000840677, -0.0113371294, 0.0274653174, -0.000150521213, 0.0238143783, 0.00906329881, -0.00521379849, -0.00281987083, 0.000141814206, 0.0156926364, -0.000514414278, -0.00569098303, -0.00181586237, -0.0103507359, 0.00129784516, 5.97356063e-07, -0.0241090152, -0.000311851123, -0.00393276708, -0.0104788383, -0.00725063914, 0.013745469, -0.0106709935, 0.00805128366, 0.00616176194, -0.0038495, 0.0138607621, -0.00855729077, 0.00196798472, -0.0287463497, -0.013258677, 0.00999845192, -0.00790396519, 0.022904845, 0.00599843031, -0.00336270803, 0.0130024711, -0.0287463497, 0.00194076286, 0.0154236211, -0.011695819, 0.00597921526, 0.00803847332, 0.0174860824, -0.0279521104, -0.00685992418, 0.00277343346, -0.00386551279, 0.00783991348, -0.0371755362, 0.00315293903, 0.0040768832, -0.00182386872, -0.0214060377, 0.00127382576, 0.0140272966, -0.0151161728, -0.00654286891, -0.0132714873, 0.0156542063, -0.0217391066, -0.0160513259, 0.0151546039, -0.00389433606, 0.0341523029, 0.0230713785, 0.0243908428, 0.00172779139, -0.00269977422, -0.027900869, 0.0254284777, -0.0126053514, -0.000914336299, 0.0129704447, 0.0120929386, -0.017357979, -0.00846121367, -0.00954368524, 0.0176141839, -0.000206966666, 0.00720580295, -0.00661652815, 0.0158335511, -0.0133867804, 0.0184340458, 0.0131433848, -0.017691046, 0.0211370215, -0.0103507359, -0.0107990969, 0.00835232623, -0.00489994604, -0.00914016087, -0.0041121114, -0.00150921533, -0.0113115087, 0.00757730193, 0.00935793575, 0.0042017838, -0.0130344965, 0.00744919898, -0.0101649854, 0.00205125194, -0.00409930106, -0.0196766462, -0.0266966987, -0.000605687732, 0.0137326587, -0.00306326686, 0.00855729077, 0.0149240186, -0.00312571716, 0.0110104671, 0.00969100371, 0.0108439326, -2.02287902e-05, 0.0166406, -0.0171402022, 0.0215725731, 0.0181522183, -0.00804487895, 0.00277183205, -0.0337423719, -0.0136045562, 0.00132746901, -0.016128188, 0.0177935287, -0.0228151735, 0.000254605024, 0.000828667311, -0.0195101108, -0.00600163313, -0.0190361291, 0.0259537, -0.0213163663, 0.0317952037, 0.00060048356, 0.00241154199, 0.00111049425, -0.0122018261, 0.0345622338, 0.00960133225, 0.0344853699, -0.0101009347, 0.0197919384, -0.0059920256, -0.0230585691, 0.0291306581, 0.0166021697, 5.9422855e-06, -0.0341523029, 0.00133627607, -0.0124324122, 0.0173964091, 0.00287271338, -0.0127078332, -0.00419537863, -0.00468857586, 0.00477184262, -0.0238784291, 0.00449962355, -0.0365350209, -0.00380786648, -0.000305445981, -0.00495118741, 0.00144276186, -0.00907610916, -0.0204580743, 0.0133739701, 0.0120801283, -4.52614477e-05, -0.00354845752, 0.00994080491, -0.00236190204, -0.0301554836, 0.00205925829, -0.00327783963, 0.020675851, -0.014116968, 0.00379505614, 0.00776305143, -0.00419537863, 0.021418849, -0.020483695, 0.0119904559, -0.00906970352, 0.0114524225, 0.0093131, -0.00196157955, 0.00735952659, -0.00199040282, 0.0107478555, -0.014936829, -0.0422996655, 0.0142194508, 0.0104340026, 0.00229144539, 0.00477824779, 0.00108487369, -0.00213772152, -0.00497040246, -0.0226358287, -0.00929388404, 0.00221938733, -0.0226230174, 0.0270041469, -0.00377904321, -0.00987675413, -0.00750684505, -0.015308328, -0.0108887684, -0.0124836527, -0.0125477044, 0.0127270492, -0.00971022, 0.00777586177, 0.00947963353, -0.00399361597, 0.0170889609, -0.0210857801, -0.0237118956, 0.00497040246, -0.00439714082, 0.00803847332, -0.00355486269, 0.00905048847, -0.00802566297, 0.0170761514, -0.00958211627, -0.00180305203, -0.0035164319, -0.0223155711, 0.00171498104, 0.0237887576, -0.00362211699, 0.00830108486, -0.0204068329, -0.00850605, -0.00291274558, 0.0090953242, 0.0117854904, -0.000894320197, 0.0172042549, -0.00564934965, -0.000783030584, 0.000506808108, 0.0117918961, 0.0191001818, 0.0129832551, -0.00951166, -0.0131113585, -0.0141297784, -0.0053226864, 0.0136557966, 0.00812814571, -0.0203940235, 0.00216814596, -0.0210857801, 0.0298480373, -0.0116061466, 0.0281058345, 0.0026613432, -0.0191386119, 0.00161409983, 0.0211626422, -0.00573902158, -0.0238271877, 0.00614895159, 0.0217006747, -0.00803206861, -0.00318496488, 0.0148471566, -0.022981707, 0.00233468018, 0.0269529056, -0.0114203971, -0.016128188, -0.0257999767, 0.00169416436, 0.016576549, 0.0146421911, 0.0149880704, 0.00508569553, -0.0162178595, -0.00949884951, 0.0277215242, -0.00679587293, -0.00401283149, 0.00193275639, -0.00827546418, -0.0214700904, 0.00645960169, -0.0133867804, 0.0267991815, 0.0139888655, -0.00937074609, 0.0146934325, 0.00915937591, 0.0321026519, -0.00944760814, -0.0282083154, 0.00217455113, -0.0125733251, -0.000261810841, -0.00710332, 0.0198559891, 0.0163843948, 0.00654286891, 0.00937074609, -0.0006653358, 0.00667417469, 0.0141938301, -0.0123171192, 0.012534894, 0.00641156314, 0.0180113036, -0.0173964091, 0.0167943239, -0.0243524108, -0.0164868776, -0.00145717349, 0.000441555574, 0.0132842977, 0.0198688, 0.0316158608, 0.00244356785, 0.0303092077, -0.0317439623, -0.00248039747, -0.028643867, -0.0135661252, -0.00536752259, 0.00498961797, -0.00606568484, -0.00267415354, -0.0200865753, -0.00817938708, -0.00131145609, -0.0117983008, 0.000597281, -0.0186262, -0.00400002114, -0.00689195, -0.00516576, -0.00451243389, 0.0266198367, -0.0121505847, 0.0239937212, 0.00519138062, -0.0124836527, 0.00192475, 0.00231386325, 0.00206886604, -0.00697521726, -0.00801285263, -0.00878787693, -0.0142066404, 0.00623862399, 0.0040768832, 0.0143987956, 0.0338192359, -0.0019535732, -0.0114268018, -0.00976146106, -0.0181009769, -0.00924904831, -0.00677025225, 0.0387127772, -0.00929388404, 0.0056685647, -0.0125925411, -0.0317952037, -0.00821141247, 0.0135148838, -0.00455727, -0.0118623525, 0.00506327767, -0.0145781394, 0.00106886076, 0.0154748615, 0.0188952163, 0.0114844488, -0.00186229974, -0.0205477476, -0.00643077865, -0.0264404919, 0.00219696923, -0.00957571156, 0.00675744191, -0.0332043394, 0.00631228322, 0.0222643297, -0.0106261568, 0.0224949159, 0.00119296066, -0.000257006963, -0.0147959152, 0.00604326651, 0.00386231043, 0.0105300797, -0.0318720676, 0.0115549052, 0.0144116059, -0.0147574842, 0.0108695533, 0.00214252528, 0.0260305628, 0.00100801175, 0.00275742053, -0.0209832974, 0.00487112254, -0.00468537305, 0.0013106555, 0.00654286891, -0.0145525187, -0.0102866841, -0.0186005794, 0.001413138, 0.00392636191, 0.018997699, 0.00184628682, 0.027900869, 0.00739155244, 0.0224564839, 0.0132714873, 0.0195485428, 0.00509530306, 0.0249801166, -0.0101457704, 0.010914389, -0.000192254825, 0.0139632449, -0.0146806221, 0.0167815145, -0.00156606117, 0.0147959152, 0.00047718428, -0.00864696316, 0.0118367318, -0.0157054476, 0.0307447594, -0.00848043, -5.35431172e-05, 0.0156157752, 0.00481347647, -0.00648522237, -0.0405318402, -0.00422420166, 0.00501523865, 0.0111705959, 0.00307767838, 0.0103699509, -0.0025764748, -0.0164868776, 0.00134988711, -0.00679587293, 0.0228792243, -0.000328664668, -0.0130729275, -0.00347800087, -0.00237471238, -0.0196638349, -0.0104404073, 0.0273115933, 0.00586072, 0.00987675413, 0.00202563126, -0.0087494459, -0.0178703908, 0.0131049538, 0.0119776456, -0.0243139807, -0.0287463497, -0.0231738612, 0.0169992894, -0.000268215983, -0.0122274468, -0.0176526159]
05 Jun, 2023
unordered_set emplace() function in C++ STL 05 Jun, 2023 The unordered_set::emplace() function is a built-in function in C++ STL which is used to insert an element in an unordered_set container. The element is inserted only if it is not already present in the container. This insertion also effectively increases the container size 1.Syntax: unordered_set_name.emplace(element) Parameter: This function accepts a single parameter element which is to be inserted in the unordered_set container.Return Value: This function returns a pair on successful insertion. The pair consists of an iterator pointing to the newly inserted element and a boolean value True. If the element to be inserted is already present in the container then it returns a pair with an iterator pointing to the already present element and a boolean value false.Below programs illustrate the unordered_set::emplace() function:Program 1: CPP // C++ program to illustrate the // unordered_set::emplace() function #include <iostream> #include <unordered_set> using namespace std; int main() { unordered_set<int> sampleSet; // Inserting elements sampleSet.emplace(5); sampleSet.emplace(10); sampleSet.emplace(15); sampleSet.emplace(20); sampleSet.emplace(25); // displaying all elements of sampleSet cout << "sampleSet contains: "; for (auto itr = sampleSet.begin(); itr != sampleSet.end(); itr++) { cout << *itr << " "; } return 0; } Output: sampleSet contains: 25 5 10 15 20 Program 2: CPP // C++ program to illustrate the // unordered_set::emplace() function #include <iostream> #include <unordered_set> using namespace std; int main() { unordered_set<string> sampleSet; // Inserting elements using // emplace() function sampleSet.emplace("Welcome"); sampleSet.emplace("To"); sampleSet.emplace("GeeksforGeeks"); sampleSet.emplace("Computer Science Portal"); sampleSet.emplace("For Geeks"); // displaying all elements of sampleSet cout << "sampleSet contains: "; for (auto itr = sampleSet.begin(); itr != sampleSet.end(); itr++) { cout << *itr << " "; } return 0; } Output: sampleSet contains: Welcome To GeeksforGeeks For Geeks Computer Science Portal Time complexity: O(n) Learn C++ Online – Master everything from basics to advanced concepts. Apply your knowledge with practical exercises and boost your skills. Take the Three 90 Challenge: finish 90% in 90 days for a 90% refund. Start now and level up your C++ programming!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum/Algorithm for Dynamic Time out timer Calculation/Difference between Round trip time (RTT) and Time to live (TTL)/Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms/Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm/Round Robin Scheduling Algorithm with Different Arrival Time/Selfish Round Robin CPU Scheduling/Find the order of execution of given N processes in Round Robin Scheduling/Calculate server loads using Round Robin Scheduling/set::lower_bound() Function in C++ STL/Implementation of lower_bound() and upper_bound() in List of Pairs in C++/Difference between std::set::lower_bound and std::lower_bound in C++/Difference between std::set vs std::vector in C++ STL/std::minmax() and std::minmax_element() in C++ STL/std::rotate vs std::rotate_copy in C++ STL/std::bitset::to_ullong and std::bitset::to_ulong in C++ STL/std::upper_bound and std::lower_bound for Vector in C++ STL/std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++/std::string::append vs std::string::push_back() vs Operator += in C++/Vector push_back() in C++ STL/vector :: cbegin() and vector :: cend() in C++ STL/unordered_multiset cend() function in C++ STL/unordered_multiset bucket() function in C++ STL/unordered_multiset emplace_hint() function in C++ STL/unordered_multiset end() function in C++ STL/unordered_multiset size() in C++ STL/unordered_multiset emplace() function in C++ STL/unordered_multiset find() function in C++STL/unordered_multiset erase() function in C++ STL/unordered_multiset clear() function in C++ STL/unordered_multiset swap() function in C++ STL/unordered_multiset bucket_size() function in C++ STL/unordered_multiset bucket_count() function in C++ STL/unordered_set bucket_count() function in C++ STL/unordered_set cbegin() function in C++ STL/array::cbegin() and array::cend() in C++ STL/array::rbegin() and array::rend() in C++ STL/multimap rbegin in C++ STL/vector rbegin() and rend() Functions in C++ STL/multiset rbegin() and rend() function in C++ STL/map rbegin() function in C++ STL/map upper_bound() function in C++ STL/Set upper_bound() in C++ STL/multimap upper_bound() function in C++ STL/multimap empty() function in C++ STL/multimap value_comp() function in C++ STL/multimap swap() function in C++ STL/multimap::swap() in C++ STL/multimap equal_range() in C++ STL/unordered_set equal_range in C++ STL/set vs unordered_set in C++ STL/unordered_set count() function in C++ STL/unordered_set bucket() function in C++ STL/unordered_set emplace() function in C++ STL
https://www.geeksforgeeks.org/unordered_set-emplace-function-in-c-stl?ref=asr10
PHP
unordered_set emplace() function in C++ STL
unordered_multiset clear() function in C++ STL, What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, jQWidgets jqxTreeMap width Property, Round Robin Scheduling Algorithm with Different Arrival Time, Difference between Flow and TypeScript, unordered_multiset emplace() function in C++ STL, jQWidgets jqxTree destroy() Method, unordered_set bucket_count() function in C++ STL, jQWidgets jqxTree collapseAll() Method, Find the order of execution of given N processes in Round Robin Scheduling, jQWidgets jqxScrollView buttonsOffset Property, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Vector push_back() in C++ STL, jQWidgets jqxListBox enableHover Property, Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm, std::rotate vs std::rotate_copy in C++ STL, Selfish Round Robin CPU Scheduling, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxSlider buttonsPosition Property, std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++, std::upper_bound and std::lower_bound for Vector in C++ STL, Difference between Round trip time (RTT) and Time to live (TTL), jQWidgets jqxSlider rtl Property, Difference between std::set::lower_bound and std::lower_bound in C++, jQWidgets jqxTooltip opacity Property, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, unordered_multiset erase() function in C++ STL, set vs unordered_set in C++ STL, jQWidgets jqxToolBar height Property, PHP, std::minmax() and std::minmax_element() in C++ STL, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, unordered_set emplace() function in C++ STL, unordered_set bucket() function in C++ STL, map rbegin() function in C++ STL, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, map upper_bound() function in C++ STL, Node.js date-and-time Date.transform() Method, unordered_multiset size() in C++ STL, TypeScript Optional Parameters, jQWidgets jqxToolBar theme Property, Difference between std::set vs std::vector in C++ STL, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, Steps to Diagnose and Resolve a Slow Network, How to use Optional Chaining with Arrays and Functions in TypeScript ?, Calculate server loads using Round Robin Scheduling, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, jQWidgets jqxScrollView showButtons Property, Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms, jQWidgets jqxScrollView disabled Property, jQWidgets jqxSplitter destroy() Method, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, set::lower_bound() Function in C++ STL, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, jQWidgets jqxTree collapseItem() Method, multimap upper_bound() function in C++ STL, std::string::append vs std::string::push_back() vs Operator += in C++, unordered_multiset swap() function in C++ STL, unordered_multiset cend() function in C++ STL, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), Set upper_bound() in C++ STL, jQWidgets jqxSortable opacity Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, multimap rbegin in C++ STL, vector :: cbegin() and vector :: cend() in C++ STL, multimap swap() function in C++ STL, jQWidgets jqxSlider height Property, jQWidgets jqxSwitchButton onLabel Property, unordered_multiset bucket_size() function in C++ STL, unordered_set cbegin() function in C++ STL, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, jQWidgets jqxToolBar tools Property, multimap empty() function in C++ STL, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTree width Property, multimap::swap() in C++ STL, multimap equal_range() in C++ STL, Implementation of lower_bound() and upper_bound() in List of Pairs in C++, jQWidgets jqxTree clear() Method, TLS Handshake?, multiset rbegin() and rend() function in C++ STL, Algorithm for Dynamic Time out timer Calculation, Adhoc TCP, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, jQWidgets jqxTabs position Property, Differences between Wireless Adhoc Network and Wireless Sensor Network, jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, std::bitset::to_ullong and std::bitset::to_ulong in C++ STL, unordered_multiset emplace_hint() function in C++ STL, unordered_multiset bucket_count() function in C++ STL, unordered_multiset find() function in C++STL, unordered_multiset bucket() function in C++ STL, Impact of Three-way Handshake and Slow Start Algorithm, array::rbegin() and array::rend() in C++ STL, multimap value_comp() function in C++ STL, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, unordered_set equal_range in C++ STL, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, unordered_set count() function in C++ STL, vector rbegin() and rend() Functions in C++ STL, array::cbegin() and array::cend() in C++ STL, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, unordered_multiset end() function in C++ STL, How to Sort an Array Having Optional Properties in TypeScript ?
GeeksforGeeks
[-0.046426326, 0.00206673797, -0.0151241431, -0.00158769276, 0.0330678076, 0.0166160259, -0.00393501436, 0.0222687609, -0.000670235604, -0.0139128426, -0.00443801191, 0.0424023494, -0.0159316771, -0.0146724712, 0.0041129454, -0.0231721029, -0.000470063154, 0.00210951, -0.00435589, -0.0241165068, -0.0088075893, -0.0141934259, -0.0211327393, -0.0379951298, 0.0109564494, 0.00765103707, -0.0283594783, 0.0176973, 0.0115997382, 0.00177417824, -0.0222003255, 0.0195039846, -0.0088623371, -0.0276751276, -0.0181900319, 0.0422381051, 0.0517368875, 0.0119008524, -0.019887222, -0.00815745629, 0.00344399316, 0.0093824435, 0.0267307255, 0.0178615451, -0.00348505424, 0.00717199175, 0.0352029838, -0.0354493484, -0.00883496273, 0.0202567708, 0.0226383097, -0.00773315877, 0.0362158194, 0.0118666347, -0.0118118869, 0.0064465804, 0.0065937154, -0.0159590505, -0.0252388418, 0.00767841097, -0.0208726861, -0.00841066614, 0.00649790652, -0.030576773, 0.00721989619, -0.0153841963, -0.00456119515, 0.0430866964, 0.0544469133, -0.0194629245, -0.0172045678, 0.0316169858, 0.0154800052, -0.00439695083, -0.0205305107, -0.0125372987, -0.0535435714, -0.00834907405, -0.005611673, 0.0199693441, 0.00650817202, 0.00767156761, 0.0152336387, -0.00144911185, 0.0405956618, -0.0288795847, -0.00118221529, -0.0197092909, 0.0478224, 0.0473844185, -0.0402398, -0.0357230902, 0.0124346456, -0.0124346456, -0.0384604894, 0.055541873, 0.0121130012, 0.0321918391, -0.0164380949, 0.0498754531, 0.00444485573, 0.00514289271, 0.0174509343, -0.00507103605, -0.00403766707, 0.0438531712, 0.0625222474, 0.0252935886, 0.00789056, -0.00623443164, 0.0244039334, -0.0146587845, -0.0123730544, 0.0608798079, -0.00839697849, -0.00806164742, 0.00474254787, -0.0172319412, 0.0482056402, 0.00381867494, 0.0351482332, 0.0243902467, -0.000461936492, -0.00955353118, -0.0350661129, 0.0217075925, 0.00717199175, -0.00262277271, 0.0513262749, 0.00984780118, -0.0248829797, -0.021324357, -0.0199556556, -0.014590349, 0.00334647321, 0.0534340739, -0.0108606396, 0.0278804339, 0.00652870256, -0.0169582013, -0.0558703616, -0.00666215084, -0.0268402211, 0.0220634546, -0.00793846417, -0.0416632481, -0.00454408629, -0.00280754734, 0.00347307813, 0.00971777458, -0.0297555532, -0.0421286076, 0.0207905639, 0.00114799768, 0.0318633541, -0.0174098723, 0.00243970891, -0.0326572, -0.0100188889, -0.0241849422, 0.027387701, -0.0241301935, -0.0236374605, -0.0122977756, -0.0423476, 0.0333689228, 0.0135843549, 0.000415956689, -0.0380498804, 0.0432783179, 0.0202704575, 0.0294818133, 0.0385973603, 0.0162875392, -0.0123798978, -0.018586956, 0.0223371945, 0.01701295, 0.0673948228, 0.0250472222, 0.00976568, 0.00746626221, 0.0247871689, 0.0182858407, 0.00302653946, 0.00533108925, 0.0190249402, -0.0268265344, 0.0600038394, -0.006891408, 0.0173140634, 0.0378856361, 0.0456872284, 0.0373655297, 0.0303030331, 0.0116134258, -0.0333689228, 0.0186827648, -0.0173277501, 0.044318527, 0.00623443164, -0.0246913601, -0.0101899765, -0.0220908299, 0.0166844614, -0.00529345, -0.00306075695, -0.0315348655, 0.0143713569, 0.0159727372, 0.000449532643, 0.00946456566, 0.017642552, 0.00109068339, -0.0111343805, 0.00355862174, -0.042292852, 0.023569027, 0.0059367395, -0.0118324179, -0.0137417549, -0.0315348655, 0.00858175382, -0.0658618808, -0.0386521071, -0.0373655297, 0.0114354948, 0.0254167728, -0.0134406406, -0.00331225572, 0.0227478053, 0.0431961939, 0.00216767984, -0.00686061243, 0.0528865941, -0.0500944443, -0.0407872796, -0.029317569, 0.00646368926, 0.00675795972, -0.0141113047, 0.0274698231, -0.0511894077, -0.0060017528, -0.00534477644, 0.0425939672, 0.0228573009, -0.00170403242, 0.0133243017, -0.0292628203, 0.00509156659, 0.0258684438, 0.0135432938, -0.0218034014, -0.00347992149, 0.038788978, -0.00513947103, -0.0246503, 0.0145356013, -0.046645321, -0.0102310376, 0.0192713067, -0.041033648, -0.00393501436, -0.0194902979, -0.0431140736, 0.0481235161, -0.02437656, -0.0143439835, -0.0307410173, 0.0469738096, 0.0138991559, 0.00840382185, -0.0155758141, 0.0247597955, 0.00806164742, -0.0166160259, 0.0127083864, -0.0166707747, -0.0538994335, -0.00112490088, -0.017916292, -0.00341490819, 0.0140702436, 0.025813695, -0.0259368792, -0.0215570368, -0.0267444123, -0.0197914112, -0.0326572, -0.0122019667, 0.013645946, -0.0212969836, 0.0300840419, 0.0469738096, 0.0309873838, -0.0298924241, -0.0332594253, -0.0408420302, 0.00201712269, -0.0121061578, -0.0307410173, 0.00346965622, 0.0123114632, -0.0252114665, 0.0104021253, -0.00758260209, -0.00363732222, 0.0115244603, -0.0306315217, 0.0298376754, -0.0199556556, -0.0432509407, 0.0179436654, -0.00502997497, -0.0110248839, 0.0129273785, 0.0127152298, -0.0562262237, 0.00575880799, -0.0144671667, -0.0244039334, -0.00109752687, 0.0286605936, 0.0391722135, -0.00359283923, -0.0136664761, 0.0281131119, -0.00268436433, -0.0580329113, -0.025006162, 0.0185732692, -0.0327393226, 0.012817882, -0.0122430278, -0.0266349148, -0.00964934, 0.00859544054, 0.0094371913, -0.000410396344, -0.00556034641, -0.0166160259, 0.0069187819, -0.0216391589, 0.0300840419, 0.029810302, 5.48014941e-05, -0.0157263707, -0.00719936565, 0.0051018321, 0.00111463561, -0.0165475924, 0.0117639825, -0.021776028, 0.0236237738, -0.0478771515, -0.0168623924, -0.0161369815, -0.00381525327, 0.0136185717, -0.00926610362, 0.0442364067, 0.0242807511, -0.00332594267, 0.00724042673, -0.0140702436, -0.00697010849, 0.0110933194, 0.0300840419, -0.0328488164, -0.00372286583, -0.0221729521, 0.021995021, -0.022624623, -0.0231721029, 0.00179813057, 0.0397196934, 0.0529139675, 0.000887089118, 0.00226177787, -0.0146450978, 0.00969040114, -0.00589567842, 0.0253893975, 0.013447484, -0.030795766, -0.0115723647, 0.0263201147, 0.000744231, 0.00942350458, -0.0399113111, 0.0111480672, -0.0676138178, -0.0480413958, 0.00396581041, -0.00675795972, -0.0334784202, -0.0272097699, -0.0231584162, -0.0319181, 0.0236785226, -0.0291533247, -0.00738414051, 0.0283594783, 0.0139059993, 0.00456461683, -0.00975883566, -0.00219676457, 0.0177246742, -0.00382551854, 0.0304125305, 0.000546624826, -0.00562878186, 0.00708302623, 0.0133516751, 0.00843804, -0.0396375731, 0.0139059993, 0.0266212281, -0.0258273818, -0.0236511473, -0.00813692529, -0.0170676969, 0.0272234567, 0.0253209621, 0.0313158706, -0.0100394199, 0.0103405342, -0.00713777402, -0.0183816496, 0.0135022327, -0.00960143562, 0.00216254708, 0.0313706212, -0.00767156761, -0.0451944955, 0.046152588, -0.0063713016, 0.00146365433, -0.0325750783, 0.00914976373, 0.04363418, 0.0015928254, -0.0378035121, -0.00734992279, 0.0637267083, -0.00219163205, 0.00782212429, 0.0253346507, 0.0344912559, -0.0264706723, 0.0119624445, -0.0278804339, 0.00078400888, 0.0188470092, -0.0188743826, 0.0178067964, -0.0145356013, 0.0348197445, 0.00743204495, -0.00977936666, 0.0248556044, 0.0336152874, 0.00208897935, 0.0307410173, 0.0165202171, 0.00543374196, 0.00504024047, 0.00696668634, -0.0089923637, -0.00837644842, -0.0406777859, 0.0228025541, 0.0212011747, 0.0107922051, 0.00488284, -0.032410834, -0.0132490229, -0.00982042775, 0.00734307943, 0.00113003352, -0.00829432625, -0.0152336387, -0.00652870256, -0.015397883, -0.0347649977, 0.0277983118, -0.0308231395, -0.0385699868, 0.0274013877, -0.0313706212, -0.00279214932, -0.0343817621, -0.0473022945, -0.00621047942, -0.00467753457, -0.031425368, -0.0192028712, -0.0226656832, 0.00388026657, 0.0254441462, -0.0178341698, -0.0445922688, 0.0289069582, 0.0271276478, -0.0495469645, -0.000426863524, -0.00697695184, -0.0226930585, 0.0112301894, 0.000284860842, 0.0262379926, 0.00854069274, 0.0395280756, -0.00754838437, -0.00325237494, 0.0189291313, 0.013960747, -0.0533519536, 0.0171771944, 0.013645946, 0.00759628881, -0.0175330564, 0.0102105075, -0.0190386269, 0.0130026564, -0.0152610131, 0.00169633341, -0.0137554416, -0.0567737035, -0.00429429859, 0.0116887037, -0.023569027, 0.012030879, -0.0135501372, -0.0151788909, -0.00379472272, 0.000100407029, -0.0327666961, -0.00730201835, 0.00211635348, 0.0114423381, 0.00414374145, -0.00265185768, -0.0153568219, -0.00799321197, 0.0239796359, -0.0180121, -0.00833538733, 0.0142208, 0.0292901956, -0.0067340075, -0.0148777766, -0.0139128426, -0.0207768772, 0.00446880795, -0.00869809277, -0.0168760791, 0.000988886226, -0.00727464445, 0.00430456363, 0.00539952423, 0.0427855849, -0.00800005533, 0.00458172569, -0.0356683396, 0.0131395264, 0.000837473723, -0.0271823965, 0.007206209, 0.0185185205, -0.00702143461, 0.0359694548, -0.00109752687, -0.0167118348, 0.0184637718, 0.0264569838, 0.0394733287, -0.00678191194, -0.00956037454, 0.00381183135, 0.00198632688, -0.0105937431, -0.0153020741, 0.0225972477, -0.000357145327, -0.0752785355, -0.0264980458, -0.0171498191, 0.00608729618, 0.00858859718, 0.00997098442, 0.00267238822, 0.00256973552, 0.0258958172, -0.000646711094, 0.00485204393, 0.0106758652, -0.00131224177, 0.00461936509, -0.00133020594, 0.0101831332, 0.0271002743, 0.00645000208, -0.00529687153, -0.006723742, 0.0106553352, -0.00641236268, 0.00348676508, -0.013153214, -0.0297829267, 0.0254167728, 0.0153294476, -0.0159453638, -0.00821220409, -0.000272670848, -0.0086022839, 0.040048182, -0.0223371945, 0.00301627419, -0.0264159236, -0.0342996381, -0.000453809829, 0.0155210663, 0.00920451246, 0.0054166331, -0.0179436654, -0.0147135323, 0.0143166091, -0.0103336899, 0.0246503, -0.0158221796, -0.00367153971, -0.00767156761, 0.0175467432, 0.00893077254, 0.0121403756, 0.0349839889, -0.0086775627, 0.0248145442, 0.0010222483, 0.026894968, 0.000173440043, 0.0565547124, -0.00336700375, 0.0116476426, -0.0147409067, 0.00945087802, 0.0268128458, 0.0030282503, -0.0352851041, 0.00689825136, 0.000254706654, 0.00955353118, -0.00783581194, -0.0218581501, -0.0100667933, 0.00587856956, -0.00734307943, 0.0119829746, -0.00046364736, 0.00419164589, 0.0119419135, 0.00079512957, -0.00193328969, -0.0108811706, -0.0243491847, -0.0254715197, -0.0147135323, 0.00194697676, -0.0177383609, -0.0164380949, 0.00858859718, 0.00810955185, -0.00958090462, -0.0317538567, -0.0253072754, 0.0113875894, 0.00626864936, -0.0142481746, 0.00493074441, -0.0134406406, 0.0010641648, -0.0233089738, 0.0127083864, -0.00718567846, -0.0264843591, 0.0122361844, 0.0109290751, -0.0117776692, -0.00191447011, -0.0210232437, 0.0211190525, 0.00969040114, -0.00674427254, -5.31975456e-05, -0.00213175127, 0.0214612279, 0.0102036642, 0.00315143331, 0.0177246742, -0.0132558662, -0.0249924753, -0.0435794294, 0.00145082269, 0.0494648442, -0.0061488878, -0.0117982, -0.0249651, -0.00960143562, 0.0258821305, -0.00342346262, 0.0011522749, 0.013447484, 0.0176151786, -0.00765788043, -0.00582724344, -0.000622331107, 0.0108127352, -0.0540636778, 0.00371944415, 0.00918398146, -0.00297179143, -0.0199693441, 0.0534067, -0.00335673848, -0.0231036674, -0.00980674, -0.0173140634, -0.00686403411, -0.0143166091, 0.0205852594, 0.0242396891, 0.0246913601, -0.0397470668, -0.00556719024, 0.0302482862, -0.030576773, -0.0320275947, -0.0165475924, 0.00454066461, 0.0314527415, -0.00351413898, 0.00464331731, -0.0195587333, 0.0179299787, 0.0360242, -0.00443116855, -0.024335498, 0.0336426646, 0.0368180498, 0.0393912047, 0.0159590505, -0.00348505424, 0.00781528093, -0.0261011217, 0.0405956618, 0.0244039334, 0.00426350255, -0.0032694838, 0.0402945504, 0.00924557354, -0.018094223, 0.0113875894, -0.0182174072, 0.000899065286, -0.00927979, 0.0170676969, 0.00273911236, 0.0170403235, 0.0270044655, 0.0225014389, 0.0118050436, 0.00124808401, -0.00944403466, -0.0277983118, 0.0147819677, 0.00373997469, 0.0174509343, 0.0175330564, -0.00226348871, 0.0129410652, 0.000982042751, -0.00163388648, -0.0120924711, 0.00655949814, 0.021995021, -0.00645000208, 0.00318222912, -0.0407599062, -0.00085116073, 0.0169308279, 0.0263885502, 0.0312611237, 0.00577933853, -0.0210506171, -0.00898552, -0.0239522625, -0.0169308279, -0.0177794229, 0.0104979342, -0.00119333598, 0.000803256233, -3.63293802e-05, -0.00856122281, -0.0283594783, 0.0208726861, 0.0242260024, 0.0390079692, 0.033177305, -0.0194902979, 0.0178067964, -0.0081027085, 0.00279043848, 0.0105253085, 0.0172319412, 0.0120240357, -0.00290848897, 0.00750048, -0.00826010853, 0.0443732776, -0.0164517816, 0.0416085, -0.0138991559, -0.0406230353, 0.0320823453, 0.0434699357, 0.0301387887, 0.0293996911, -0.0235005915, 0.011716078, -0.0195313599, 0.00661082426, 0.0116887037, -0.00609756168, -0.000580842374, 0.0220087077, -0.0105595263, -0.00530371536, 0.0375845209, 0.00131822983, 0.0149188377, -0.0442090333, -0.0170403235, 0.0329035632, 0.00369549193, -0.023883827, 0.0107579874, 0.0130710918, -0.00845857058, 0.0137896594, -0.00302140671, -0.0256905127, -0.00248077, -0.00502313161, 0.0236374605, -0.0423202254, -0.0418548658, 0.00696668634, 0.0134543283, 0.0188470092, 0.018135285, 0.00623101, 0.0580876581, 0.016027486, 0.0374202766, 0.0224740654, -0.0170403235, 0.0164928436, -0.0266896635, 0.0229531117, -0.00189051789, -0.0197366644, 0.00808217749, -0.0138375638, -0.0100325765, 0.0103747509, -0.00233534561, -0.0352851041, -0.00949878246, 0.0208453108, 0.000989741646, -0.0112438761, -0.0534340739, -0.00496154, -0.00964249671, 0.0199282821, -0.0282773562, -0.0164244082, -0.0543374196, 0.0244586822, 0.00959459227, -0.0232268516, 0.0115586771, 0.0209000595, -0.0236374605, -0.0033806907, 0.00283492124, -0.00325237494, -0.0220223945, 0.00450302521, -0.0310147572, -0.00751416665, 0.00293415203, 0.00934138242, -0.00508814491, 0.0211738, -0.0018374807, 0.0199693441, 0.0287974626, 0.00248077, 0.00925926, -0.0283321049, -0.0546932817, -0.0191618092, 0.000440550531, -0.00511894049, 0.00071771245, 0.0182174072, -0.0160685461, 0.00549875526, 0.0209274329, 0.02240563, -5.51222838e-05, -0.0188059472, -0.00556719024, -0.00110094866, 0.0382415, -0.0388711, -0.00126091554, -0.0144534791, 0.0221455768, -0.00866387505, -0.010730614, -0.0195587333, -0.0155073786, -0.0109496061, -0.0103952819, -0.0687087774, -1.71221254e-05, 0.00297179143, 0.00690851687, -0.0281678606, -0.0144397924, -0.0356135927, -0.0174783077, -0.0421559811, 0.0040205582, -0.00997782778, 0.0122293411, -0.0291259512, -0.0132832406, 0.0171361323, -0.0253346507, 0.00363732222, -0.00861597061, -0.0102720987, -0.0156305619, -0.00661766808, 0.0194355492, 0.0107169263, -0.0114218071, 0.00437299861, 0.00164158538, 0.0277161896, -0.00985464547, 7.5171607e-05, -0.0285237227, -0.00941666123, 0.00430798531, 0.0309873838, 0.00035372359, 0.0127905076, 0.0252525285, -0.00162362121, -0.0037331311, -0.00862281397, -0.00668952474, 0.00377419218, 0.0169171412, 0.00654581096, 0.00305391336, 0.0139128426, 0.00528318482, 0.0320549719, 0.0119829746, 0.00808217749, -0.0445648953, -0.0382141247, 0.0123114632, -0.0151104555, 0.00444143359, 0.00660055922, -0.0261148103, 0.0312884971, 0.0574854277, 0.0360789523, -0.0162464771, 0.0125372987, -0.0204210151, 0.00222071679, -0.0177931096, -0.025457833, 0.0127905076, 0.0310968794, -0.0410062745, -0.0068263947, 0.0292628203, -0.0102241943, -0.0120035056, -0.0195997935, -0.00337042543, 0.0321097188, 0.014234487, -0.00600859616, 0.00482467, -0.0141386781, -0.0118597914, 0.0338069089, 0.00606334396, -0.0111685973, 0.00757575827, -0.0477950275, 0.000266041199, 0.00783581194, 0.0184363984, 0.00645000208, 0.0109632928, -0.00682981638, -0.0140086515, 0.00429087691, -0.0145492889, -0.000837901433, 0.0125441421, -0.0317812301, -0.0259916261, -0.0155210663, -0.0145356013, 0.00387684465, -0.00119333598, 0.00806849077, 0.00951247, -0.0279899295, -0.0156305619, -0.00946456566, 0.0143850446, 0.0218034014, 0.00430456363, 0.00248590275, 0.0201062132, 0.0156853106, 0.0150146466, 0.00585461734, 0.00884865, -0.00813008193, -0.00193671149, 0.0172456279, -0.00808902085, 0.0332594253, 0.00967671443, -0.0180394761, -0.0231036674, 0.00830801297, -0.0339711532, 0.0154663175, 0.0280036163, 0.00948509574, 0.0146998456, 0.0297829267, 0.00210951, 0.0327666961, -0.00996414106, 0.000804111653, 0.00929347798, 0.019394489, 0.00422928529, 0.0145082278, -0.00151498057, 0.0179299787, -0.0401029289, -0.0094371913, -0.000584264111, 0.00795215089, 0.0230489206, 0.0227067452, -0.0230899807, -0.0102241943, -0.00811639521, -0.0157263707, -0.0430045761, -0.000821648166, 0.0321370922, 0.0195450466, 0.0116818603, 0.0241849422, 0.00139436382, 0.024828231, 0.0432783179, -0.00407188479, -0.000736104324, -0.00127289165, 0.0280309897, -0.00370917888, 0.00379472272, 0.00174081617, 0.00860912725, -2.33908813e-05, 0.0125852032, 0.00545085035, 0.0109906662, 0.0268265344, 0.00977936666, 0.0170950722, 0.0444553979, -0.0168623924, 0.000144996724, -0.0219813325, -0.0214338526, 0.00598806562, -0.00198974856, 0.0017690456, 0.003445704, -0.0153568219, 0.0268402211, -0.0222140122, -0.0273740143, 0.0150283333, -0.00812323857, -0.0184090249, 0.0207221285, -0.00523528038, 0.00142002699, 0.0168076437, 0.0155758141, 0.0160548594, 0.000994018861, 0.0274424497, -0.00591963064, -0.0101489155, -0.0082327351, 0.00875968486, -0.00290335645, 0.0102994731, -0.00409241533, 0.000161463904, -0.0131669007, 0.0191618092, 0.00470833061, -0.0151515165, 0.0154389441, -0.0132148052, 0.00341148651, 0.00426008087, 0.00696326466, -0.020475762, -0.00729517452, 0.00134132674, -0.00428745477, -0.00426350255, -0.00395212322, 0.005611673, 0.0039555449, -0.00784265529, -0.00921135582, 0.0110591017, -0.0252388418, 0.00542005477, -0.000977765536, -0.00187169819, 0.0461252145, -0.00113259978, -0.0119419135, 0.00631997548, 0.0228846762, -0.0132421795, -0.0190523136, 0.00941666123, 0.0194492377, 0.0283047296, 0.00430456363, 0.00326092937, 0.0113944337, -0.0172319412, 0.0182310939, 0.0125099244, -0.00386657938, 0.0110317273, -0.0120787835, -0.0311790016, -0.00661082426, -0.00370917888, 0.00207700324, 0.00121814362, -0.0012557829, 0.020202022, -0.029536562, -0.00260566385, -0.0187922604, 0.0262790527, 0.00783581194, 0.0215570368, -0.00382209662, -0.0253893975, -0.00182721543, -0.00817798637, -0.00845857058, 0.0203936398, 0.0248966664, 0.00716514839, -0.0115655214, -0.00628233608, -0.0220771432, 0.00965618342, 0.00165356148, -0.0125578288, 0.000128529544, -0.0112507194, 0.00385973603, 0.0171361323, 0.0145356013, 0.0159590505, 0.000816087821, -0.0100120455, -0.00481098285, 0.0140565559, -0.00297521311, 0.014412418, -0.0119966613, -0.0245408043, -0.015712684, -0.0293996911, -0.00157143944, -0.00168606814, -0.00124295137, 0.0226793699, -0.0146314101, 0.00192131358, 0.0143987313, 0.0182858407, 0.00382209662, -0.0103473775, -0.0128315687, -0.0364621878, 0.00155176444, 0.0268539079, 0.034518633, -0.024554491, 0.0186280161, -0.00581355626, -0.013331145, -0.0162191037, 0.00521132769, -0.00593331736, 0.00421217643, -0.00498549221, 0.0169582013, -0.0330404341, -0.00413005427, -0.00016531338, 0.0246913601, 0.0273466408, -0.0211738, -0.0157811195, 0.0112370327, -0.0220771432, -0.016383348, 0.00449960353, 0.0344912559, 0.00944403466, -0.00627207104, -0.0108674839, 0.0429772027, 0.00820536073, 0.00881443266, -0.0162464771, 0.00280241459, 0.0208863728, -0.00131480815, -0.00433535967, -0.00548506808, 0.0103815952, -0.0109906662, 0.0283047296, -0.0126331076, -0.00721989619, 0.00153978833, 0.0057964474, 0.00420191092, -0.0107169263, 0.0169855766, -0.00410610205, 0.018135285, 0.0254030842, -0.0154389441, -0.0177657343, -0.0256905127, 0.00726780063, -0.0319728479, 0.0303304084, -0.00370233529, 0.00870493613, 0.0184774604, -0.0127562908, -0.00895814598, 0.00519764097, 0.0171087589, 0.00906079821, 0.0312884971, -0.018135285, -0.0290438291, -0.013016344, -4.87332291e-05, -0.0137965027, 0.00334134069, 0.007206209, -0.00158598193, 0.00912239, 0.0334510468, 0.028195234, 0.0012976994, 0.00511551881, -0.0244313069, 0.00767841097, 0.0202567708, -0.00862281397, -0.00676480308, 0.0136664761, -0.0197914112, -0.00629602326, -0.0145082278, -0.00208384683, -0.0178067964, -0.00904026814, 0.0337247849, -0.0234184694, -0.0145219145, 0.00807533413, 0.00808902085, -0.00258513354, 0.00180497405, -0.000614632154, 0.0285510961, -0.000189372571, 0.0160959195, -0.0228709895, -0.00040355284, 0.00683323806, -0.0241712537, 0.00607360946, -0.0125852032, -0.00245168502, -0.0100667933, 0.0209000595, 0.00496154, 0.00506419269, -0.00672032032, -0.0216939058, -0.0130300308, 0.00992308, -0.0277298763, 0.0146587845, -0.0276340675, -0.00506419269, -0.0243218113, -0.00828748289, -0.0220360812, 0.00377419218, 0.0112849372, 0.000756634865, -0.00340977567, 0.000505136093, 0.0128794732, -0.0108469529, -0.0228299275, 0.00483835721, 0.0235553384, -0.00184945681, 0.000313304132, 0.0283321049, -0.0151925776, 0.00572116906, 0.00801374298, -0.0326024517, 0.00729517452, 0.0232952852, 0.0165886525, 0.00405477593, 0.0172182545, 0.00200001383, -0.024554491, 0.0156305619, 0.00940981694, 0.0266759768, -0.00639525382, -0.0121814366, 0.0183953382, 0.00454750797, 0.00714461785, -0.0182447806, -8.62789329e-06, 0.00943034794, -0.00379472272, 0.00545769418, 0.030166164, 0.0135432938, 0.00224980176, -0.018094223, -0.0250745974, -0.0339164026, -0.00550559862, 0.025184093, 0.0271960832, -0.00739782723, 0.0029444173, -0.0262106191, -0.00875284057, -0.00482124835, -0.00671347696, -0.0176836122, -0.0186690781, 0.0162327904, 0.0101968199, -0.0254030842, 0.000409113185, 0.0231994763, -0.0129684396, 0.00730201835, 0.026443297, -0.0205031373, 0.00919082481, 0.0114697115, 0.0182310939, 4.39213909e-05, -0.0347102508, -0.00289651286, 0.0139128426, 0.0180394761, -0.016027486, 0.0162601639, -0.00665530702, -0.00393843604, 0.01232515, 0.0177109875, 0.00587856956, 0.0163012259, -0.00979989674, 0.0233089738, -0.0151515165, -0.00455435179, -0.0112096583, -0.0333689228, 0.00468095625, -0.00238667196, -0.00428061141, 0.00549533311, -0.00144569017, 0.00687429914, -0.016657088, -0.0284689739, 0.00454408629, 0.0161506683, -0.0093756, -0.0138238771, 0.00430114195, -0.00361336977, 0.0291806981, 0.0282773562, 0.00120445667, 0.0165339038, -0.00805480406, -0.00724042673, 0.0358325839, -0.0291533247, -0.0176151786, -0.0456872284, -0.0106895529, -0.0127426032, -0.0121335313, 0.00734307943, -0.0243902467, 0.0264980458, -0.00792477746, -0.00682981638, -0.00819167402, 0.0355588458, -0.0314527415, -0.00291019981, 0.00721989619, 0.00952615682, 0.0407599062, 0.000112276226, 0.0141523648, -0.0137554416, 0.00234903255, -0.0124688633, 0.00283492124, 0.00112404546, -0.000295339938, 0.0115860514, 0.00153465569, 0.0140291825, -0.00391448382, 0.0153294476, 0.0057314341, -0.0310968794, 0.00536188483, -0.00221729511, 0.00817798637, 0.0188333225, 0.0134543283, -0.0103063164, 0.00416427199, 0.031835977, -0.0117502958, 0.0118392613, 0.0214338526, -0.0179299787, -0.00624469714, -0.0118597914, -0.0308231395, -0.0105869, 0.000126390951, -0.0217075925, 0.013331145, -0.0125509854, -0.00440037297, -0.00300258724, 0.0329856873, -0.0160548594, -0.00855437946, 0.000947825261, 0.0297281798, 0.0381593741, 0.0126946988, -0.0128794732, 0.0189291313, -6.44786342e-05, -0.0253620241, 0.00638498878, 0.0115655214, -0.00322500104, -0.00601201784, 0.00433878135, 0.0159590505, 0.0173961855, -0.00190762663, 0.00329514686, -0.00616941834, -0.0226793699, -0.0231173541, 0.00301627419, -0.0153568219, 0.0188333225, 0.00611124886, 0.0254852064, 0.0166160259, -0.00158512651, 0.0370917879, -0.0228436142, 0.0185595807, -0.00632339716, 0.0263201147, 0.0140154948, 0.00329172518, 0.0112438761, -0.00481440453, -0.0149325244, 0.000952957838, -0.00437984243, -0.0220497679, -0.00442432519, 0.0207631905, 0.0304125305, 0.00316512026, 0.0134543283, -0.00413689809, -0.0270592123, 0.00533108925, 0.0197229777, 0.0186417028, 0.0359147079, -0.00515315821, 0.00756207155, -0.0259368792, 0.00495811831, 0.00951247, 0.00757575827, -0.0139812781, 0.00405135425, 0.00488626165, 0.0135159194, -0.00870493613, 0.000353937445, -0.00424981583, -0.00552612916, 0.00180668489, -0.000602228334, -0.000676223717, -0.00308128749, 0.000606505491, -0.00843804, 0.0344091356, -0.00507445773, 0.00678533362, 0.012681012, -0.00488284, 0.0032044705, 0.00898552, -0.0112575637, 0.0157811195, 0.00234218896, 0.0190386269, 0.0122567145, -0.00410952372, -0.0478771515, -0.00205305102, 0.0152883865, 0.00219163205, -0.0166434012, 0.00460225623, 0.016383348, 0.0137965027, 0.0283868518, 0.00139094214, -0.0147819677, 0.0134269539, 0.000433493173, 0.0176014919, 0.00435589, -0.00767841097, 0.0151378298, 0.0116681736, 0.00114286505, -0.0093071647, -0.0108469529, -0.00979305338, -0.00931400806, 0.00956037454, 0.0187512, -0.0100804809, 0.0291806981, 0.000797695888, -3.74521405e-05, 0.0123388367, -0.00484862225, 0.0150146466, -0.00323355547, -0.00662793312, 0.0098272711, -0.0244449954, -0.00133790495, 0.00329856877, 0.0100462632, -0.0093071647, 0.0201062132, -0.00335844932, -0.000273740152, -0.00499575771, 0.00339779956, -0.00422244146, 0.00680586416, 0.00289993454, -0.00429087691, 0.0154252565, 0.0116407992, 0.0112575637, 0.0145219145, 0.0124209588, -0.00951931346, 0.0124004288, 0.00992992334, 0.00301627419, 0.0119556, 0.0190523136, -0.0306862704, -0.0124072721, 0.00591278682, 0.00941666123, -0.0158358663, 0.0175741166, -0.0171908811, -0.0238153916, -0.00248590275, 0.011086476, 0.00235929783, -0.002963237, 0.0106279608, 0.00769894151, 0.00498207053, -0.00203765323, -0.00649106316, -0.0323834568, -0.018135285, -0.00168264646, -0.000264116476, 0.00792477746, 0.00739782723, -0.0084927883, -0.00837644842, 0.0311516281, 0.0199830309, -0.00845857058, -0.0211874861, 0.0173551254, 0.00179299794, -0.0223098211, 0.00345254759, -0.000945258944, -0.00149017293, 0.00674769469, -0.00400344934, -0.00572801242, 0.0122977756, 0.00681955134, -0.0176562387, -0.0236100871, -0.0210643038, 0.00897867698, 0.0104910908, -0.0143713569, -0.00510525377, 0.0153431352, 0.00822589081, 0.00109581603, 0.00812323857, -0.00868440606, -0.00938928686, -0.017957354, 0.00327632739, -0.0215433482, 0.0263611749, 0.00519764097, -0.00290164538, -0.00597437844, -4.13818088e-05, 0.00115141948, -0.00811639521, 0.00350387371, 0.00456461683, -0.0161369815, -0.0160959195, -0.0106895529, 0.0281131119, -0.019066, -0.0149735855, 0.0170403235, -0.00307786581, 0.00931400806, 0.0121472189, -0.0112507194, -0.012010349, 0.00859544054, -0.0440721624, 0.0093756, -0.0135775106, -0.0316717327, 0.0210232437, -0.00341490819, -0.000495298591, -0.0127699776, -0.00640209764, -0.0146998456, -0.0152883865, 0.0239385758, 0.0261695571, -0.0178204831, 0.00252183108, 0.0117845135, -0.009533, -0.00845172722, 0.00951247, 5.14064741e-05, 0.00852016173, 0.0215022881, 0.0158632416, 0.0159316771, 0.00498549221, -0.0192986801, -0.00612835726, 0.0214886013, -0.00153893291, 0.00262619439, -0.0221455768, -0.0126673253, -0.003445704, -0.00444143359, -0.00383236189, -0.0100257322, 0.000649277412, -0.00711724348, 0.0156442486, 0.0118666347, -0.0277983118, 0.0086022839, 0.000383022329, -0.00670321146, -0.0147819677, 0.000300900283, 0.0173277501, -0.00436273357, -0.000664675259, -0.0338342823, 0.00100086234, 0.00799321197, -0.00628918, -0.00277675153, 0.00963565335, 0.000628746871, 0.00990255, 0.00159368094, -0.0151788909, 0.00176049129, -0.0250335354, 0.00802743, 0.00285887369, -0.00338582345, 0.0143166091, 0.0290712025, -0.0145766623, -0.000915318611, 0.00782896765, 0.00206160545, 0.00509156659, -0.0135569805, -0.0216939058, 0.0112301894, -0.0174098723, -0.0062241666, 0.0145219145, 0.00884865, -0.00484862225, -7.48508182e-06, 0.014412418, 0.0155210663, 0.00731570506, -0.00979989674, -0.00985464547, 0.0161096081, -0.00759628881, 0.00518737547, 0.0135022327, -0.0165475924, -0.0137143815, -0.0202157088, 0.00598122226, 0.00616599666, 0.0257589463, 0.00172541838, -0.00498207053, -0.00992992334, -0.0198051, -0.00233876728, 0.0125236111, -0.00848594401, 0.00342175178, 0.0183542762, 0.00161677774, -0.0113123115, -0.0195861068, -0.0139949648, -0.00979305338, 0.0235005915, 0.0355040953, -0.0221455768, -0.000276734179, 0.00389737519, -0.0398839377, 0.00613520108, -0.00438668579, 0.0496564619, 0.0140428692, 0.000777165347, 0.000579559186, -0.00585119566, -0.0186553914, 0.0115586771, 0.00080710568, 0.0181215964, -0.0060188612, -0.0183816496, 0.00390764046, 0.0124141155, 0.00139436382, 0.0170266367, -0.0105116218, 0.0152336387, 0.0152062653, 0.0138786249, 0.0473570451, 0.0293723177, 0.0212011747, 0.0114081204, -2.95660739e-05, 0.00721989619, 0.0165475924, -0.0362979434, 0.000746797305, 0.011202815, -0.0118324179, 0.0240343846, -0.0289069582, 0.0258547571, 0.0233089738, -0.0030282503, 0.0104500297, 0.0121472189, 0.0120787835, -0.00290506729, 0.00234047812, 0.00519079762, 0.0138923125, 0.0103679076, -0.00597095676, 0.0124209588, -0.00555008138, 0.00448591635, -0.02437656, -0.0365443081, 0.000860570581, -0.00362705695, 0.0103200031, 0.0185185205, 0.00124979485, -0.00930032134, -0.00744573167, -0.00103080273, -0.00192302454, 0.0176288653, -0.0175193697, 0.00081779866, -0.0183816496, -0.0227614921, -0.000225407901, 0.0229941718, -0.00571090356, -0.0225561876, -0.0130026564, 0.0210095551, -0.00022647719, -0.00292901951, -0.00953984354, 0.00872546714, 0.0269634034, -0.0162464771, 0.015712684, -0.000351798866, -0.0228436142, 0.00629602326, 0.00495811831, -0.00623443164, 0.0207495019, 0.0104431864, 0.00721305283, -0.00428061141, -0.00982042775, -0.00729517452, -0.00538583705, -0.00946456566, -0.0154936919, -0.0282773562, -0.00704196515, 0.00388026657, 0.00499917939, 0.00787002873, 0.0233226605, -0.0151241431, -0.020516824, 0.00584777398, -0.0138649382, 0.00753469719, -0.000536359614, 0.013960747, 0.0183953382, 0.00674427254, 0.00772631541, -0.00939613, -0.0236511473, 0.00718567846, 0.0111275371, 0.000503852963, -0.0220634546, -0.014768281, -0.00419506757, 0.00764419325, 0.00869809277, 0.00818483066, -0.00986148883, 0.0106416475, 0.0516547635, 0.0100257322, -0.0115244603, 0.00294099562, 0.0168623924, -0.0109701362, 0.0105458386, -0.00382209662, 0.0130779352, 0.00460909959, 0.00813008193, -0.00371260056, -0.0111822849, 0.000500858936, 0.00159795803, -0.00730886171, 0.00140291825, 0.0109701362, 0.0148914633, -0.0150693944, 0.0188059472, 0.00166553771, 0.00312405941, 0.00390764046, -0.0212422349, 0.018764887, 0.00201199, 0.0209274329, 0.0159864239, -0.00906079821, 0.017916292, -0.00591620896, -0.00079555728, 0.0172593165, -0.0167118348, -0.0167118348, 0.0171087589, 0.0132011184, -0.00426350255, -0.00444485573, 0.0181763452, -0.018586956, 0.0120377224, 0.0220360812, 0.000921306666, 0.00873915385, -0.00540978974, 0.0128041953, -0.0125304554, -0.00737045333, 0.00152267958, 0.0103747509, -0.0090471115, 0.00771947205, -0.00499233603, 0.00732939225, -0.0081027085, -0.0239933226, 0.00487599615, 0.0148504023, 0.0115860514, 0.0138101904, 0.00970408786, -0.00539268088, 0.000789996935, 0.0202567708, 0.0200104043, 0.0109017007, -0.0135775106, -0.00391448382, -0.00724042673, -0.00942350458, 0.00613862276, 0.0210369304, 0.00486230943, 0.0234458428, 0.00764419325, 0.0070761824, 0.00739782723, -0.0120035056, 0.0025184094, -0.0324655809, -0.0132763973, -0.0176151786, -0.000117515789, 0.0115449904, 0.000766472367, 0.0175878033, -0.00790424645, -0.00473570451, 0.0027408232, 0.0176836122, -0.00388368824, 0.00791109, 0.0127220731, 0.00486915279, -0.00434220303, -0.0104705608, -0.00643289322, -0.0267307255, -0.0152062653, 0.000715573842, -0.00814377, 0.00442774687, 0.0113670593, 0.00575538632, 0.00817798637, -0.00798636861, 0.0162601639, 0.00968355779, 0.0196134802, 0.00773315877, 0.00546111586, 0.00823957846, -0.010415812, -0.00120103487, -0.00784265529, -0.00245510694, -0.0187375117, 0.0131395264, -0.00124380679, -0.0150557077, 0.0203799531, -0.0135911983, 0.00199830299, 0.00785634201, -0.0114902426, 0.0125372987, 0.00977936666, 0.00221045152, 0.0163012259, 0.0141660525, 0.00163730816, -0.0231173541, 0.00649448484, -0.00401029317, -0.0111549105, 0.016205417, -0.00690851687, 0.020653693, 0.0167528968, -0.0330678076, 0.00703512179, 0.0135159194, 0.00119504682, 0.0118666347, -0.0123388367, -0.0165475924, 0.00562535971, 0.0113875894, -0.0156716239, -0.0108674839, -0.00701459125, 0.0165065303, 0.0162464771, 0.0222824477, -0.00334647321, 0.0037981444, -0.00286571705, -0.00473912619, -0.0111275371, 0.00718567846, 0.0104500297, 0.0100599499, 0.0208863728, 0.0187375117, -0.00419506757, 0.00837644842, 0.00381183135, -0.00112661172, -0.0130710918, -0.00172370742, 0.0283047296, 0.0205441974, -0.0143166091, 0.00960143562, 0.00200856826, -0.0364074372, 0.00822589081, 0.0027596429, 0.0128041953, 0.00572459074, -0.000579986896, 0.00269805128, 0.00468437793, -0.0119213834, 0.0108332662, -0.0129136909, 0.00197435077, -0.00702827796, 0.000382594619, 0.0122909322, -0.0100599499, 0.00264330325, -0.018313216, 0.0096219657, 0.00834223069, 0.0376392677, -0.0215022881, -0.000964078528, 0.00484520057, 0.00912923366, -0.0459062234, -0.0135843549, -0.0211327393, -0.0257726349, 0.0318633541, 0.00958090462, -0.0086022839, -0.014768281, -0.000970066641, 0.000194184409, 0.0140702436, 0.0178067964, -0.00780843757, -0.00738414051, 0.0143850446, -0.0117023913, 0.0246913601, -0.000999151496, 0.0112849372, 0.00650475, 0.0052592326, -0.017642552, 0.0116613302, 0.00791109, -0.00487257447, -0.0315622389, 0.00947140902, -0.0190249402, -0.0284142271, 0.0316443592, -0.0216665324, 0.0360789523, -0.00427034637, 0.00560482917, 0.00629602326, 0.0173688121, 0.00493416609, 0.0127836643, -0.00318394, 0.0248145442, 0.039281711, -0.00500944443, -0.0104568731, -0.00233534561, -0.0242396891, -0.016971888, 0.00197435077, 0.00873915385, 0.00610440504, 0.0191891845, 0.0168487057, -0.0120993145, 0.0103679076, -0.00951931346, 0.0118461046, 0.0256631374, 0.00382894021, -0.00323526631, 0.0367906764, -0.0396375731, -0.0255947039, 0.0225151274, 0.014275548, -0.024335498, -0.00738414051, 0.0137965027, -0.010730614, -0.0127973519, 0.039555449, 0.0158358663, -0.00803427305, 0.010237881, 0.0333415493, -0.000307743787, 0.00529002817, -0.0170950722, -2.12790183e-05, -0.00696326466, 0.0229531117, -0.00740467058, -0.00610440504, 0.000630885479, 0.00488284, 0.00632339716, -0.00975883566, 0.0238017049, 0.00469806511, 0.0146450978, 0.0125852032, -0.00183576986, -0.0130095, 0.0159179885, -0.00825326517, -0.0157537442, 0.0099367667, -0.00805480406, 0.0166434012, 0.00325237494, -0.0292354468, 0.0158221796, 0.00499233603, -0.0101899765, 0.00282807788, -0.0163696613, -0.00535846315, 0.0190523136, -0.0145356013, -0.016205417, -0.0095672179, -0.00974514894, 0.00191104831, -0.0179710407, 0.0213927925, 0.0160001107, 0.00927294698, 0.0258410685, 0.0128726298, -0.0012095893, 0.0248145442, 0.0135843549, 0.0249924753, 0.00701459125, -0.00210951, -0.00327974907, 0.0269086566, 0.03232871, 0.0160411727, -0.014590349, -0.000945258944, 0.0187375117, -0.0217897147, -0.0300019197, -0.00800689869, -0.00181523932, -0.0155484397, 0.0147135323, -0.00782896765, -0.0151241431, 0.0154252565, 0.0219676457, 0.0190112535, -0.00872546714, 0.00966302678, 0.0066313548, -0.012681012, -0.00576223, -0.0153431352, 0.0140565559, 0.00323013356, 0.00872546714, 0.0031856508, -0.0177520476, -0.000464502809, 0.0086775627, 0.000526522053, 0.0105869, -0.00687087746, -0.0127905076, 0.00636788, 0.018545894, 0.0067613814, 0.000940981728, -0.00774684595, -0.0093619125, 0.00624469714, -0.0398291908, -0.025457833, 0.0093756, 0.0116544869, 0.00981358439, -0.00769894151, 0.0130300308, -0.0242260024, -0.0271139611, 0.00712408731, 0.0145766623, -0.0106827086, 0.000905908761, -0.0095672179, 0.00594358286, 0.00387684465, 0.00103422452, 0.00671005528, 0.00260395301, 0.00041381811, -0.00597437844, 0.0310147572, -0.0116544869, 0.00680928584, -0.0197092909, -0.0169034544, 0.0198051, -0.00830117, -0.0252662152, 0.000834907405, 0.0183269028, -0.0105937431, -0.0235005915, 0.0100120455, 0.006891408, -0.0233363472, 0.0258821305, -0.0130437175, 0.0027681971, -0.00399660598, -0.0212422349, -0.00351756089, 0.00505734887, 0.000813093735, -0.0196682289, -0.025006162, -0.00372628774, 0.000991452602, -0.0170403235, 0.0189975649, 0.00951931346, 0.00297521311, 0.0140154948, 0.000361208658, -0.000455948408, -0.00239693699, -0.0149188377, -0.00712408731, -0.00801374298, 0.000443972298, 0.0121198446, 0.0167802703, -0.00592305232, -0.00268265349, 0.012639951, 0.0117297648, -0.0210779905, 0.00542005477, -0.00805480406, 0.0136322593, -0.00957406126, -0.0162738506, -0.00658345036, -0.0135980416, -0.00596069172, -0.0145219145, 0.00658687204, 0.0119692879, 0.00901973806, -0.00669979, 0.0267991591, -0.00325408601, -0.00607703114, 0.0111343805, 0.0147272199, -0.01248255, 0.00441748137, -0.00011911973, -0.00332252099, 0.00419506757, 0.00387342297, 0.0168760791, -0.0114149638, -0.0121472189, 0.00819851737, 0.00473228283, -0.00662108976, 0.0107579874, -0.00235074339, 0.00157058402, 0.00175878045, -0.0149598988, 0.00340806483, 0.0177520476, -0.0103747509, 0.00161250052, -0.00780843757, -0.0197229777, -0.013960747, -0.0224740654, 0.0215022881, 0.00424297201, 0.00747994939, -0.00232850201, -0.0159727372, 0.00834907405, -0.009533, 0.000278445048, 0.0066416203, 0.0191207491, 9.32293733e-06, 0.012995813, 0.0190112535, -0.00594700454, 4.22372468e-05, 0.00652528042, -0.0202293955, -0.00316169858, 0.0192576181, -0.0125099244, -0.00693246908, 0.0165886525, 0.0248829797, -0.0903889909, -0.0123388367, 0.00822589081, 0.0207905639, -0.0119829746, -0.00245510694, -0.00954668783, -0.0218855236, 0.00334989489, -0.00611467054, 0.000509413308, 0.00615573162, 0.0165612791, 0.0100052021, 0.0132353362, -0.0162464771, 0.00266212295, -0.0100257322, -0.00944403466, 0.0184911471, -0.0177383609, -0.0142071135, 0.00132250704, -0.0151241431, 0.00867071934, -0.0105389953, 0.0138580948, 0.000403338985, -0.00568010798, 0.00645342376, -0.00607360946, 0.0175878033, 0.011873479, 0.0221592635, -0.0212969836, -0.00989570562, -0.00493416609, -0.0280857384, 0.030439904, -0.0265117325, -0.00760313263, -0.00631313212, -0.0166297127, -0.0104774041, 0.0171361323, 0.00434220303, 0.0222413857, -0.00584093, -0.00862965826, -0.00632681884, -0.0095672179, 0.0154252565, -0.00934138242, -0.00622758828, -0.0133516751, 0.00629602326, 0.00711724348, -0.00865018833, -0.00668952474, 0.0119966613, -0.0094371913, -0.0424297228, 0.0093824435, 0.0104500297, -0.00459541241, 0.0450576283, -0.025635764, -0.00443801191, 0.0122293411, 0.0195587333, -0.00344399316, -0.000256845233, -0.0144945402, -0.0156305619, 0.00943034794, 0.00422586361, -0.0218034014, -0.00244997418, 0.0143713569, -0.0063062883, 0.0105253085, -0.0145082278, -0.0204894487, 0.00764419325, -0.0130368741, 0.000827208511, 0.0103884386, 0.00324553158, 0.00988886226, -0.0230215453, 0.00694273412, 0.0158221796, -0.00243628724, -0.00389395352, 0.0261832438, 0.0096972445, -0.0222687609, -0.00447907299, 0.0105595263, 0.00807533413, -0.0204073284, -0.00670663361, 0.0119008524, -0.00296665868, 0.0311516281, -0.0141113047, -0.00185116765, -0.0175604299, 0.0327393226, 0.0054542725, 0.020859, -0.00591278682, 0.0139128426, -0.0159727372, -1.2784787e-05, 0.0235416517, -0.0058717262, 0.0117845135, -0.00516342325, 0.0027870168, 0.0103131598, -0.00866387505, -0.0132216485, 0.0181079097, -0.0059778, -0.0126878554, 0.00943034794, 0.00802058633, 0.00678533362, 0.00813692529, -0.00318051828, -0.00343030621, 0.0121061578, -0.0196819156, -0.00646026712, -0.0347376242, 0.00226862147, 0.0170950722, -0.00262106187, 0.0116271125, -0.00113773241, 0.00196066382, 0.00584093, -0.00130796456, -0.00797268189, 0.0135159194, 0.00550559862, 0.00801374298, 0.00878021494, -0.0019486876, -0.0267444123, 0.00454066461, 0.0118597914, -0.000642006169, -0.0133585185, -0.025006162, 0.0202293955, -0.00239693699, 0.00247905916, -0.0208179373, 0.0137075372, -0.00974514894, -0.0106690219, 0.0115586771, -0.00651501538, 0.00626864936, -0.0158632416, -0.0240754448, 0.00796583854, -0.0133379884, 0.0228709895, 0.00857490953, 0.0090676425, 0.00501286611, 0.00871178, 0.00217965594, -0.0108674839, -0.00252354192, 0.00191960274, 0.0135706672, 0.0190523136, -0.00165270607, 0.00491363555, -0.00140206283, 0.0299197976, -0.00460909959, 0.00845857058, 0.00785634201, 0.00493416609, 0.00184945681, 0.0122567145, 0.0340259, 0.00422928529, 0.0178889185, -0.00237127393, -0.0214749146, 0.00498549221, 0.0126125766, -0.00959459227, -0.000834907405, -0.0111754416, -0.0153568219, 0.000848594413, -0.00397265377, 0.00745941885, -0.00491021387, -0.00712408731, 0.0136391027, 0.00834907405, -0.0119282268, -0.00436957693, -0.0356683396, -0.00114200963, 0.00824642181, -0.0063439277, -0.00499233603, 0.00966302678, 0.00645684544, -0.00876652822, 0.00139949645, 0.0199419688, 0.0179299787, 0.0315348655, -0.0112507194, 0.0225151274, 0.00875968486, 0.00350387371, -0.00568695134, -0.0343543887, -0.0124893943, -0.019175496, -0.0140702436, 0.0202430841, -0.0205441974, 0.0134064229, -0.000500003458, -0.0132216485, -0.00490679219, -0.0059367395, 0.01728669, 0.00113602157, 0.0243902467, 0.00106929743, -0.0108743273, -0.00723358337, 0.0133653628, -0.0105458386, -0.00614546612, 0.0225425, 0.0251977798, 0.00519079762, -0.0173414387, -0.0135227628, 0.0223235078, 0.0109838229, -0.00466726953, -0.0319181, 0.018313216, -0.0109496061, 0.0309873838, 0.00069632649, 0.00239009364, -0.0321644656, -0.0259368792, 0.0151515165, -0.0107169263, 0.0135432938, -0.0194218624, 0.00413347594, -0.0109838229, -0.000467069127, -0.00793162081, -0.0257452596, -0.0189838782, 0.010258412, 0.00461252127, 0.0150009599, 0.00597095676, -0.0150967687, 0.000675368239, -0.0216939058, -0.0130847786, -0.0127905076, 0.0367906764, -0.0132490229, 0.00625496218, 0.0246229265, -0.00639183214, -0.00118649239, -0.0146040367, 0.0123114632, -0.00795899425, -0.00244826335, 0.0150557077, -0.00388368824, 0.00832170062, -0.0116544869, 0.0309052616, 0.0035757306, -0.0310147572, 0.0120856268, -0.00263132714, 0.00973830558, -0.00102909189, -0.0199693441, -0.00256118109, -0.00342346262, -0.0121814366, -0.0086775627, -0.0137759726, -0.0321918391, 0.0213927925, 0.00902658142, -0.00491705723, 0.00220702984, -0.0130368741, -0.00607703114, -0.000180497402, -0.00521132769, -0.0100667933, 0.00480413949, -0.00793846417, -0.00800689869, 0.00736361, 0.0143713569, -0.0064363149, -0.0241028201, 0.0063165538, -0.00891024154, -0.00117879349, -0.010258412, -0.00912923366, -0.00281439093, 0.0089376159, -0.0192028712, -0.0136527894, 0.0158632416, -0.0333689228, -0.00648422, -0.00655607646, -0.0125167677, -0.00396238873, -0.0152747, -0.0140702436, 0.00799321197, 0.00841066614, -0.000283363828, 0.00153294473, 0.0293996911, -0.00987517554, -0.00181866111, -0.0217623413, 0.00466384785, 0.00228059758, 0.0168213323, -0.00480756117, -0.00297179143, -0.0262243059, 0.00624469714, 0.00207016, 0.0173961855, -0.0302209109, -0.00512578432, -0.0164654702, 0.0274698231, -0.0240070112, 0.0201062132, 0.00452013407, -0.01957242, -0.00230968255, 0.0327940695, -0.0141797392, -0.0328214429, 0.0531603359, 0.0233089738, 0.0297555532, 0.0148230288, 0.00971777458, -0.00782212429, 7.65082295e-05, 0.0312611237, -0.033587914, -0.0124072721, -0.00473912619, -0.00981358439, 0.00802743, 0.00931400806, 0.0184090249, 0.00025941155, 0.0192576181, -0.0251567196, -0.00824642181, -0.0213106703, -0.0148504023, -0.0110933194, -0.0128315687, -0.00606334396, 0.0140154948, -0.0140291825, 0.00846541394, -0.000532937818, -0.0363253169, -0.00648422, 0.0127152298, 0.0171771944, 0.00872546714, 0.00385631411, -0.0162738506, -0.00801374298, -0.00260224217, -0.0116887037, 0.0185595807, 0.0411705188, 0.00592305232, 0.0110522583, 0.0121609056, -0.00857490953, 0.0146450978, -0.0146040367, -0.00847225729, -0.00217110151, 0.00148931739, -0.0107990485, -0.00409583701, -0.0304946508, -0.0123730544, -0.0348744951, -0.0020564727, 0.0149188377, 0.0128931608, 0.0256905127, 0.0024277328, 0.0201472752, -0.0217349678, -0.0102926297, -0.0235279649, -0.0369001701, -0.00321644661, -0.00798636861, 0.00126433722, 0.012167749, -0.0188196339, -0.0104979342, 0.0114423381, -0.0103405342, -0.00453724293, -0.0186417028, 0.00991623662, 0.00419848925, -0.0133927362, -0.0114833992, -0.00737729669, -0.00808217749, 0.0128726298, -0.00318051828, 0.0020752924, -0.00688456465, -0.00601543952, -0.00674085086, -0.00971777458, -0.00129085581, -0.0251704063, -0.0117229214, 0.0131463706, 0.00508472323, 0.0155484397, 0.00994361099, 0.000917884929, -0.0121198446, -0.0275382586, -0.0106074307, 0.0176288653, 0.00335844932, 0.0202293955, 0.00278188428, -0.00591620896, 0.00232508034, -0.0239112, 0.0161917284, 0.0105663696, -0.00165270607, 0.00705565233, 0.00387342297, -0.00711724348, -0.0113533726, 0.0139881214, 0.0222961344, -0.0195039846, -0.0184637718, -0.0147956545, 0.000410824083, 0.00147563044, -0.00848594401, -0.00683666, 0.00430456363, -0.0423476, 0.0153431352, 0.000338111859, -0.00803427305, 0.0385152362, -0.00633366266, 0.0129889697, -0.0142618613, 0.0124004288, 0.00999151543, -0.0108606396, -0.00777422, 0.0192986801, 0.00774000259, 0.00439352915, 0.0168623924, -0.00259368774, 0.0177931096, 0.00736361, 0.00421559811, -0.0102105075, 0.0200104043, -4.19164608e-05, -0.00241233502, -0.00475623505, -0.0176699255, 0.0143302968, 0.00747994939, 0.00385631411, 0.0270865876, 0.016383348, -0.0131463706, 0.00430798531, -0.00470148679, 0.0256631374, -0.0182037186, 0.0362979434, 0.00171515311, 0.00635077106, 0.00294783921, -0.006723742, -0.0188606959, 0.00401029317, -0.0154663175, 0.0155895008, 0.016657088, 0.00154919806, 0.0161917284, -0.0292628203, 0.0251567196, 0.00206844904, 0.00925926, -0.00939613, 0.00997098442, 0.0180394761, -0.00640551932, -0.0105047775, -0.0319728479, -0.00661424594, 0.0202841442, 0.0105389953, 0.0512441546, 0.0124278022, -0.000899920706, -0.00822589081, 0.0142618613, 0.00244655251, 0.0164380949, -0.00793846417, 0.0003483771, -0.00313090277, -0.00150728168, -0.0143029224, -0.0228162408, 0.0236785226, 0.0231584162, -0.0162601639, 0.0108195795, 0.00658687204, -0.0093824435, 0.00462963, 0.00109324965, -0.0222824477, -0.00512236217, -0.0154936919, 0.0109427618, -0.0090471115, -0.00879390165, -0.01957242]
23 Jan, 2018
set::emplace() in C++ STL 23 Jan, 2018 Sets are a type of associative containers in which each element has to be unique, because the value of the element identifies it. The value of the element cannot be modified once it is added to the set, though it is possible to remove and add the modified value of that element. set::emplace() This function is used to insert a new element into the set container, only if the element to be inserted is unique and does not already exists in the set. Syntax : setname.emplace(value) Parameters : The element to be inserted into the set is passed as the parameter. Result : The parameter is added to the set if the set does not contain that element already. Examples: Input : myset{1, 2, 3, 4, 5}; myset.emplace(6); Output : myset = 1, 2, 3, 4, 5, 6 Input : myset{1, 2, 3, 4, 5}; myset.emplace(4); Output : myset = 1, 2, 3, 4, 5 Errors and Exceptions 1. It has a strong exception guarantee, therefore, no changes are made if an exception is thrown 2. Parameter should be of the same type as that of the container otherwise, an error is thrown // INTEGER SET EXAMPLE // CPP program to illustrate // Implementation of emplace() function #include <iostream> #include <set> using namespace std; int main() { set<int> myset{}; myset.emplace(2); myset.emplace(6); myset.emplace(8); myset.emplace(9); myset.emplace(0); // set becomes 0, 2, 6, 8, 9 // adding unique element myset.emplace(5); // set becomes 0, 2, 5, 6, 8, 9 // adding element which already // exists there will be no // change in the set myset.emplace(2); // set remains 0, 2, 5, 6, 8, 9 // printing the set for (auto it = myset.begin(); it != myset.end(); ++it) cout << ' ' << *it; return 0; } Output: 0 2 5 6 8 9 // STRING SET EXAMPLE // CPP program to illustrate // Implementation of emplace() function #include <iostream> #include <set> #include <string> using namespace std; int main() { set<string> myset{}; myset.emplace("This"); myset.emplace("is"); myset.emplace("a"); myset.emplace("computer science"); myset.emplace("portal"); // set becomes This, a, computer // science, is, portal // adding unique element myset.emplace("GeeksForGeeks"); // set becomes GeeksForGeeks, This, is, // a, computer science, portal // adding element which already exists // there will be no change in the set myset.emplace("is"); // set remains GeeksForGeeks, This, is, // a, computer science, portal // printing the set for (auto it = myset.begin(); it != myset.end(); ++it) cout << ' ' << *it; return 0; } Output: GeeksForGeeks This a computer science is portal Time Complexity : O(logn) Application Input an empty multi set with the following numbers and order using emplace() function and find sum of elements. Input : 7, 9, 4, 6, 2, 5, 3 Output : 36 // CPP program to illustrate // Application of emplace() function #include <iostream> #include <set> using namespace std; int main() { // sum variable declaration int sum = 0; // set declaration set<int> myset{}; myset.emplace(7); myset.emplace(9); myset.emplace(4); myset.emplace(6); myset.emplace(2); myset.emplace(5); myset.emplace(3); // iterator declaration set<int>::iterator it; // finding sum of elements while (!myset.empty()) { it = myset.begin(); sum = sum + *it; myset.erase(it); } // printing the sum cout << sum; return 0; } Output : 36 emplace() vs insert When we use insert, we create an object and then insert it into the multiset. With emplace(), the object is constructed in-place. // C++ code to demonstrate difference between // emplace and insert #include<bits/stdc++.h> using namespace std; int main() { // declaring set set<pair<char, int>> ms; // using emplace() to insert pair in-place ms.emplace('a', 24); // Below line would not compile // ms.insert('b', 25); // using emplace() to insert pair in-place ms.insert(make_pair('b', 25)); // printing the set for (auto it = ms.begin(); it != ms.end(); ++it) cout << " " << (*it).first << " " << (*it).second << endl; return 0; } Output : a 24 b 25 Learn C++ Online – Master everything from basics to advanced concepts. Apply your knowledge with practical exercises and boost your skills. Take the Three 90 Challenge: finish 90% in 90 days for a 90% refund. Start now and level up your C++ programming!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum/Algorithm for Dynamic Time out timer Calculation/Difference between Round trip time (RTT) and Time to live (TTL)/Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms/Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm/Round Robin Scheduling Algorithm with Different Arrival Time/Selfish Round Robin CPU Scheduling/Find the order of execution of given N processes in Round Robin Scheduling/Calculate server loads using Round Robin Scheduling/set::lower_bound() Function in C++ STL/Implementation of lower_bound() and upper_bound() in List of Pairs in C++/Difference between std::set::lower_bound and std::lower_bound in C++/Difference between std::set vs std::vector in C++ STL/std::minmax() and std::minmax_element() in C++ STL/std::rotate vs std::rotate_copy in C++ STL/std::bitset::to_ullong and std::bitset::to_ulong in C++ STL/std::upper_bound and std::lower_bound for Vector in C++ STL/std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++/std::string::append vs std::string::push_back() vs Operator += in C++/Vector push_back() in C++ STL/vector :: cbegin() and vector :: cend() in C++ STL/unordered_multiset cend() function in C++ STL/unordered_multiset bucket() function in C++ STL/unordered_multiset emplace_hint() function in C++ STL/unordered_multiset end() function in C++ STL/unordered_multiset size() in C++ STL/unordered_multiset emplace() function in C++ STL/unordered_multiset find() function in C++STL/unordered_multiset erase() function in C++ STL/unordered_multiset clear() function in C++ STL/unordered_multiset swap() function in C++ STL/unordered_multiset bucket_size() function in C++ STL/unordered_multiset bucket_count() function in C++ STL/unordered_set bucket_count() function in C++ STL/unordered_set cbegin() function in C++ STL/array::cbegin() and array::cend() in C++ STL/array::rbegin() and array::rend() in C++ STL/multimap rbegin in C++ STL/vector rbegin() and rend() Functions in C++ STL/multiset rbegin() and rend() function in C++ STL/map rbegin() function in C++ STL/map upper_bound() function in C++ STL/Set upper_bound() in C++ STL/multimap upper_bound() function in C++ STL/multimap empty() function in C++ STL/multimap value_comp() function in C++ STL/multimap swap() function in C++ STL/multimap::swap() in C++ STL/multimap equal_range() in C++ STL/unordered_set equal_range in C++ STL/set vs unordered_set in C++ STL/unordered_set count() function in C++ STL/unordered_set bucket() function in C++ STL/unordered_set emplace() function in C++ STL/set::emplace() in C++ STL
https://www.geeksforgeeks.org/setemplace-c-stl?ref=asr10
PHP
set::emplace() in C++ STL
unordered_multiset clear() function in C++ STL, What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, jQWidgets jqxTreeMap width Property, Round Robin Scheduling Algorithm with Different Arrival Time, Difference between Flow and TypeScript, unordered_multiset emplace() function in C++ STL, jQWidgets jqxTree destroy() Method, unordered_set bucket_count() function in C++ STL, jQWidgets jqxTree collapseAll() Method, Find the order of execution of given N processes in Round Robin Scheduling, jQWidgets jqxScrollView buttonsOffset Property, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Vector push_back() in C++ STL, jQWidgets jqxListBox enableHover Property, Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm, std::rotate vs std::rotate_copy in C++ STL, Selfish Round Robin CPU Scheduling, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxSlider buttonsPosition Property, std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++, std::upper_bound and std::lower_bound for Vector in C++ STL, Difference between Round trip time (RTT) and Time to live (TTL), jQWidgets jqxSlider rtl Property, Difference between std::set::lower_bound and std::lower_bound in C++, jQWidgets jqxTooltip opacity Property, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, unordered_multiset erase() function in C++ STL, set vs unordered_set in C++ STL, jQWidgets jqxToolBar height Property, PHP, std::minmax() and std::minmax_element() in C++ STL, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, unordered_set emplace() function in C++ STL, unordered_set bucket() function in C++ STL, map rbegin() function in C++ STL, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, map upper_bound() function in C++ STL, Node.js date-and-time Date.transform() Method, unordered_multiset size() in C++ STL, TypeScript Optional Parameters, jQWidgets jqxToolBar theme Property, Difference between std::set vs std::vector in C++ STL, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, Steps to Diagnose and Resolve a Slow Network, How to use Optional Chaining with Arrays and Functions in TypeScript ?, Calculate server loads using Round Robin Scheduling, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, jQWidgets jqxScrollView showButtons Property, set::emplace() in C++ STL, Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms, jQWidgets jqxScrollView disabled Property, jQWidgets jqxSplitter destroy() Method, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, set::lower_bound() Function in C++ STL, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, jQWidgets jqxTree collapseItem() Method, multimap upper_bound() function in C++ STL, std::string::append vs std::string::push_back() vs Operator += in C++, unordered_multiset swap() function in C++ STL, unordered_multiset cend() function in C++ STL, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), Set upper_bound() in C++ STL, jQWidgets jqxSortable opacity Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, multimap rbegin in C++ STL, vector :: cbegin() and vector :: cend() in C++ STL, multimap swap() function in C++ STL, jQWidgets jqxSlider height Property, jQWidgets jqxSwitchButton onLabel Property, unordered_multiset bucket_size() function in C++ STL, unordered_set cbegin() function in C++ STL, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, jQWidgets jqxToolBar tools Property, multimap empty() function in C++ STL, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTree width Property, multimap::swap() in C++ STL, multimap equal_range() in C++ STL, Implementation of lower_bound() and upper_bound() in List of Pairs in C++, jQWidgets jqxTree clear() Method, TLS Handshake?, multiset rbegin() and rend() function in C++ STL, Algorithm for Dynamic Time out timer Calculation, Adhoc TCP, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, jQWidgets jqxTabs position Property, Differences between Wireless Adhoc Network and Wireless Sensor Network, jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, std::bitset::to_ullong and std::bitset::to_ulong in C++ STL, unordered_multiset emplace_hint() function in C++ STL, unordered_multiset bucket_count() function in C++ STL, unordered_multiset find() function in C++STL, unordered_multiset bucket() function in C++ STL, Impact of Three-way Handshake and Slow Start Algorithm, array::rbegin() and array::rend() in C++ STL, multimap value_comp() function in C++ STL, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, unordered_set equal_range in C++ STL, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, unordered_set count() function in C++ STL, vector rbegin() and rend() Functions in C++ STL, array::cbegin() and array::cend() in C++ STL, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, unordered_multiset end() function in C++ STL, How to Sort an Array Having Optional Properties in TypeScript ?
GeeksforGeeks
[-0.0363190584, 0.0201350432, -0.00987756811, 0.0207884815, 0.0232502762, 0.0179923698, -0.000613548909, 0.0204997528, 0.013934969, 0.012438138, -0.00205719355, 0.0293895639, -0.00931530632, -0.0358327776, -0.00794004463, -0.0244811717, 0.00183969701, 0.00876064319, -0.0260311905, -0.035468068, 0.0103790443, -0.0185242388, -0.0192384627, -0.0261375643, 0.00906456821, 0.0137906047, -0.0081451945, 0.0197399389, 0.00441071391, 0.00829715747, -0.0103790443, 0.00315132411, -0.00504895672, -0.0240252838, -0.01986151, 0.0288425, 0.0457711294, 0.011450381, -0.0194360148, 0.00297086849, 0.0125976987, -0.00177321339, 0.0198159218, -0.00325769791, -0.00799323153, 0.0182507057, 0.0326719545, -0.0472603627, -0.0179315843, 0.0219282, 0.016138427, -0.00700927433, 0.0381426103, 0.0113364086, -0.0237821452, 0.0255601071, 0.00629125116, -0.0218674168, -0.0253625549, -0.013783006, -0.0291920118, -0.00763991894, 0.00736258738, -0.0343739353, -0.00280370959, -0.00320451101, -0.0166854914, 0.0223081075, 0.0334621593, -0.0246331356, -0.0233262572, 0.0333709829, 0.0268517882, 0.00142085017, -0.0113212122, -0.00389024219, -0.0302709471, -0.00393963, -0.0138589879, 0.017885996, 0.0203022, 0.0115111656, 0.0136918286, 0.00841112901, 0.0783519074, -0.0180227626, -0.020317398, -0.032580778, 0.0444642529, 0.0350425728, -0.0305748712, -0.0444642529, 0.0279003307, -0.0165639222, -0.0409691148, 0.0455887765, 0.0189193413, 0.0187369864, -0.0192688555, 0.0323072448, 0.000934095, 0.0173693243, 0.0165031366, -0.0270949285, 0.00264414889, 0.0439779721, 0.0516672805, 0.0368053392, 0.0095736431, -0.0223992858, 0.0163511746, -0.000422645942, -0.0139121749, 0.0625478, -0.00599872321, -0.014793558, 0.018873753, -0.0247395094, 0.0599340424, -0.0025700673, 0.0251802, 0.00498437276, -0.0128332404, -0.0169590246, -0.0372916199, 0.0267606117, 0.0144212497, -0.0149607165, 0.0410602912, 0.0155381747, -0.0246027429, -0.024344407, -0.00389024219, -0.00702826958, 0.0195271913, 0.0423671678, -0.00259666075, 0.0193144437, 0.00811480172, -0.017810015, -0.0549800619, -0.0195879769, -0.00767411059, 0.0191472862, -0.0274748355, -0.0547673143, 0.0134182964, 0.000972560549, -0.0228095837, 0.022824781, -0.0452848487, -0.0362278819, 0.0123089692, 0.00211038045, 0.040817149, -0.0286905356, 0.00648500351, -0.0100675216, -0.0130079975, -0.0344651155, 0.0233718455, -0.0274596382, -0.0177036412, -0.0279611163, -0.0226120334, 0.0458623096, 0.0217762385, -0.0105006145, -0.0447377861, 0.053885933, 0.017354127, 0.0245115645, 0.0374739729, 0.0199222956, -0.00206479151, -0.0163815673, 0.0236757714, 0.0115491562, 0.0572595038, 0.0244659763, 0.019785529, 0.00567200361, 0.00752214808, 0.0163207818, 0.00310193631, 0.0111084646, 0.0271861069, -0.0313650779, 0.0548584945, -0.00942168, 0.00892020389, 0.0448289625, 0.0438867956, 0.0304836947, 0.0113743991, 0.00181120401, -0.0494486243, 0.0235390048, 0.0105234087, 0.0410602912, -0.0110628763, -0.0403308682, -0.0089050075, -0.0302405544, 0.0286145546, -0.0233110599, -0.0310763493, -0.0163359772, 0.0277331714, 0.0234934147, 0.00220915605, 0.00873784907, 0.0333101973, -0.0118302871, 0.0126812775, -0.00262895273, -0.0416681394, 0.038841635, 0.0145884082, -0.0293287784, 0.00612409227, -0.0258640312, 0.0101814931, -0.0635811463, -0.0607242472, -0.0257272664, 0.00962683, 0.0267606117, 0.00619627442, -0.00769690471, 0.0391455628, 0.0271253213, 7.47940867e-05, 0.00637862971, 0.0315474309, -0.0387808532, -0.0399965532, -0.0253777523, 0.0145504177, 0.0219889861, 0.00654198928, 0.0250586309, -0.0626693666, 0.00289488724, -0.00511734, 0.0412122533, 0.0194512103, 0.0163511746, 0.020697305, -0.036714159, -0.00401561148, 0.0242228359, 0.00742717134, -0.024876276, -0.0177492294, 0.0352857113, 0.0129548106, -0.021913005, 0.00270113489, -0.0323072448, -0.00621147081, 0.0233110599, -0.0232350789, -0.00835034437, -0.00120810256, -0.0325199924, 0.0471387953, -0.0126660811, -0.000888506242, -0.00778808258, 0.0505427569, -0.00325959735, -0.00800083, -0.0285689663, 0.00362240802, 0.00168393541, -0.00330708572, -0.00125179184, -0.00867706351, -0.0517888479, -0.0123925488, -0.0239948928, 0.00467664842, 0.0185090434, 0.0319729261, -0.0340700112, -0.0205757339, -0.00910255872, -0.0339788347, -0.0150518939, -0.00427014846, 0.0105234087, -0.0163967628, 0.0299518257, 0.0567428283, 0.019405622, -0.0399661586, -0.0167918652, -0.0512721762, -0.00314562558, -0.00891260523, -0.0444338582, 0.0258488357, 0.00663696602, -0.0522751287, 0.00756013859, 0.0179011934, -0.000907026697, -0.00825916603, -0.0307876188, 0.03090919, -0.0162448, -0.0418201052, 0.0123393619, -0.00628745183, -0.00297276815, 0.0197703317, -0.00797803607, -0.0475642905, 0.000365422515, -0.0115415584, -0.00876824092, -0.0104854181, 0.03090919, 0.0308028162, 0.00038394297, -0.0303621236, 0.0256056953, 0.00135246699, -0.0616968088, -0.0285841618, 0.00362430769, -0.0239037145, 0.0154393986, -0.0282954331, -0.0364102349, 0.0100979134, 0.0110704741, -0.0119518572, -0.00227563968, -0.0123393619, -0.00974080153, -0.00841872767, -0.010386643, 0.0338268727, 0.0140489414, 0.0139197726, -0.0343131535, 0.00548205, 8.10269266e-05, 0.00136006519, -0.0119062681, 0.00835034437, -0.00643181661, 0.0223536957, -0.0476250723, -0.00669015292, -0.0175516792, 0.00146074034, -0.0270037521, 0.012415343, 0.0229615457, 0.023888519, 0.000693329319, 0.00500716735, -0.0117619038, -0.0138437916, -0.00400041509, 0.0123773525, -0.0168830436, -0.00495777931, -0.0302709471, 0.0352857113, -0.0237213597, -0.0194360148, 0.0134942774, 0.0577153899, 0.0433093384, 0.015378614, 0.00162599969, -0.0198159218, 0.0127648572, 0.00847191457, 0.0266542379, -0.00239151111, -0.0170046128, -0.0097332038, 0.0152874356, -0.0265174713, 0.0159864631, -0.0399661586, 0.0187673792, -0.0692341551, -0.0292376019, 0.0178556032, 0.0109033156, -0.0261831526, -0.0348906107, -0.0160320532, -0.0329454876, 0.0194816031, -0.00630264822, 0.00480201747, 0.0186610054, 0.0117998943, 0.00450569065, -0.0100143347, 0.00248838728, 0.0200134721, 0.00575938215, 0.0129092215, -0.00556563, -0.00716883503, -0.00385984965, 0.0172629505, 0.0199678838, -0.0510290377, 0.020925248, 0.0296023116, -0.0236757714, -0.0020761888, -0.0276723858, -0.0161232296, 0.0237669479, 0.00368889165, 0.0261071716, -0.0109792966, 0.0272316951, 0.00465005497, -0.00684971362, 0.0106069883, 0.00183779746, 0.00291958125, 0.0210316218, -0.00392443361, -0.0349513963, 0.0482329242, -0.0152798379, 0.00762472255, -0.0423671678, 0.00601012027, 0.026426293, 0.0112604275, -0.0393887, -0.0131447632, 0.0693557262, -0.0346170776, 0.00228323787, 0.00374967675, 0.0424887389, -0.0368965156, 0.00178081158, -0.01198225, 0.00129073218, 0.018341884, -0.00409159251, 0.0348298252, -0.0234630238, 0.0419720672, -0.00451708771, -0.0138893798, 0.0242228359, 0.0294807423, 0.00234212331, 0.0444034673, 0.0124229416, -0.00252827746, 0.0161688197, -0.00113497057, 0.00408779364, -0.0108273346, -0.0452848487, 0.0217762385, 0.00961923134, -0.00687250774, -0.0113592036, -0.0217458457, -0.0144516416, 0.00143794599, -0.00507175131, -0.00469564367, -0.00626465771, -0.0251650047, -0.0212443694, -0.0182355102, -0.0236605741, 0.0250434335, -0.0248002931, -0.0330974497, 0.0248154905, -0.0229311548, 0.00809960533, -0.0175364818, -0.0210620146, -0.00450189179, -0.0078260731, -0.0298758447, -0.00349513954, -0.00892020389, 0.017734034, 0.0169438291, -0.0289488733, -0.0465613343, 0.0564692952, 0.0305140875, -0.0384769253, -0.0171717722, -0.0314866491, 0.00364900148, 0.0108425301, 0.00308294105, 0.0195879769, 0.0041599758, 0.0350425728, -0.00332608097, -0.00642421842, 0.0113895955, 0.0163207818, -0.0528525859, 0.0176428556, 0.021761043, 0.0123773525, -0.0217154529, 0.0149911093, -0.0157737155, 0.0134942774, 0.00597972749, -0.0072182226, -0.0030563476, -0.0420936346, -0.00831235293, 0.0286297519, -0.0260767788, 0.0163967628, -0.00463105971, -0.0151734641, 0.00193942245, -0.000340016297, -0.033644516, -0.00807681121, 0.00640902203, 0.0179315843, 0.00949006341, -0.00145124272, -0.0134410905, -0.0020799879, 0.0194360148, -0.0137222214, 0.000854789512, 0.0156673416, 0.0209100526, 0.00876064319, -0.0193752293, -0.00661037257, -0.0229919385, -0.00399661576, 0.00121285138, -0.00382375857, 0.00455127936, -0.0121038202, 0.00784886722, 0.00238961168, 0.0400269441, -0.0042663496, -0.0021863617, -0.0396014489, -0.00971800741, 0.0103638479, -0.0190257151, 0.00982438121, 0.0260767788, -0.0118910726, 0.0330974497, 0.00657618092, -0.0133499131, 0.0353161059, 0.0285689663, 0.028477788, -0.026502274, -0.00400421396, 0.00186534075, -0.0176276602, -0.0140489414, -0.0185850244, 0.0146871842, 0.0139121749, -0.072881259, -0.0141173238, -0.0274748355, 0.00321210921, 0.015910482, 0.0212443694, 0.00452848524, 0.00868466217, 0.0237213597, 0.010538605, 0.00602531666, 0.0022889364, -0.00914054923, 0.0154166045, 0.00609369949, -0.00162789924, 0.0326111689, -0.00452088704, -0.0158193056, -0.0267758071, 0.000951665686, -0.00479062041, -0.0015528677, -0.00238391315, -0.0251650047, 0.0149075296, 0.02335665, -0.0102574741, -0.00817558728, 0.00434233109, 0.0044335085, 0.0302861426, -0.018417865, -0.00286639435, -0.0152570438, -0.0439171866, -0.00105613994, 0.014922726, 0.0130991749, 0.00995354913, -0.0117163155, -0.0117391096, 0.0138209974, -0.030149376, 0.0124533335, -0.0183114912, 0.00980158709, -0.00231552985, 0.0180683509, 0.0326111689, -0.00226614205, 0.0342523679, -0.0181595292, 0.0235693976, -0.0152038569, 0.0204845574, -0.00736638624, 0.0659517646, -0.00568340067, 0.027945919, -0.0204389673, 0.0272620879, 0.0374131873, 0.018341884, -0.0401789062, 0.00129453128, 0.00697888155, 0.0149379224, -0.00722962, -0.0297694709, -0.00161745178, 0.014390857, -0.00440691505, 0.0154090058, 0.00150917843, -0.00274862326, 0.0211379956, 0.0022471468, 0.0020230019, 0.00215976825, -0.0347386487, -0.0092393253, -0.0039928169, 0.0046462561, -0.0235693976, -0.0346778631, 0.0081224, 0.00170483021, 0.000230318299, -0.0371092632, -0.0267910045, 0.000689055363, 0.00340586132, -0.00692189578, 0.0157281272, -0.000347376976, -0.0103486525, -0.0174453054, 0.00479441974, -0.0052807, -0.0415769629, 0.0192992482, -0.00762852188, -0.00584676024, -0.00092079828, -0.00466905, 0.011754306, -0.000593128963, -0.00831995159, -0.00371168624, 0.00124799274, 0.00583156431, 0.00217876351, -0.00773869455, 0.00185109419, -0.0235845931, -0.0412426442, -0.0326111689, 0.0121114179, 0.0470780097, -0.00349513954, -0.00616208278, -0.0121949976, 0.000121095181, 0.0256968737, 0.00401941035, 0.0015281738, 0.0132587356, 0.0343131535, 0.000480819115, -0.00321020954, -0.0171565767, 0.00671674637, -0.0353464969, 0.00806921348, 0.010310661, -0.00804641843, -0.0154090058, 0.0431573726, 0.00431573763, -0.0299518257, -0.0154318009, -0.0114807729, -0.00689910119, -0.014922726, 0.0206061266, 0.0218066312, 0.0196943507, -0.0300430022, -0.0106981657, 0.0489927381, -0.0274444427, -0.0386288874, -0.0124761285, 0.0172173604, 0.00696368562, 0.00243520038, 0.0107969418, -0.0190105196, 0.0100827171, 0.0389936, -0.00506795198, -0.00986996945, 0.0300430022, 0.0255601071, 0.0265782569, 0.0303013399, -0.00963442773, 0.00297466759, -0.0311219376, 0.0337964781, 0.0311219376, 0.0174453054, -0.00568340067, 0.039753411, 0.0158041082, -0.0128940251, 0.027566012, -0.0181747247, 0.00773109635, -0.0253625549, 0.0273988545, -0.004927387, 0.017202165, 0.0331278443, 0.0347994305, 0.0226880144, 0.00298036612, -0.0101662967, -0.0373220108, -0.0026270533, 0.00548964832, 0.0109337084, 0.013934969, 0.00322160684, 0.00635583512, -0.0148695391, 0.00659897504, 0.00486280257, 0.00122709782, 0.0204997528, 0.00876064319, 0.0107361563, -0.0383857489, 0.0164879411, 0.0121722035, 0.0103258574, 0.0298606474, 0.00210088282, -0.0261679571, -0.00761712436, -0.0352249257, -0.0337660871, -0.0261527617, 0.0160928369, -0.0122785773, 0.0117846988, -0.013273932, -0.00616588211, -0.0370788723, 0.0160320532, 0.00892020389, 0.0209708363, 0.0160168558, -1.71848314e-05, 0.00385984965, 0.00320641045, 0.0100295302, 0.0178708, 0.0345259, 0.0221561454, -0.00242190366, 0.0107057644, 0.00516672805, 0.0331886299, -0.0187369864, 0.0257120691, -0.0188433602, -0.0395406634, 0.0165639222, 0.035468068, 0.0323072448, 0.0337053, -0.00522751315, 0.0225360505, -0.0297694709, -0.00675473688, 0.0185394362, -0.00252447836, 0.0101511, 0.0210316218, -0.00736638624, -0.00872265268, 0.0187521838, -0.0174149126, 0.0101738954, -0.0503300093, -0.0143224737, 0.0282802377, 0.0198767055, -0.0331886299, 0.0279307235, 0.0174756981, -0.00444110669, 0.0231135096, -0.00974080153, -0.0179163888, 0.0117391096, -0.0102194836, 0.0263655093, -0.0302101616, -0.0434309058, 0.0025092822, 0.00182165147, 0.00799323153, 0.0190713052, 0.0123089692, 0.0473515429, 0.0169742201, 0.0363494493, 0.0266086478, -0.0143832583, 0.0136918286, -0.0281586666, 0.0179163888, -0.0231135096, -0.00849470869, 0.0134258941, -0.00241810456, -0.00892020389, 0.00762472255, -0.00232882658, -0.0278091524, -0.0017779622, 0.0247243121, -0.00537187746, -0.0151810618, -0.0485064574, -0.0141781094, -0.00576698, 0.0141781094, -0.0429142341, -0.00751075055, -0.0506339334, 0.031061152, 0.00346474699, -0.0301037878, 0.00386554818, 0.0401789062, -0.0331582353, -0.0169894174, -0.00354452734, -0.00266504381, -0.0216698647, 0.00480961567, -0.0241620503, -0.0121722035, 0.0134562869, 0.0234174337, -0.0161992107, 0.0304381065, 0.012871231, 0.0238277335, 0.0141477166, 0.00457027461, 0.00751455, -0.0286905356, -0.0497525521, -0.00844152179, 0.0116935205, -0.00774629274, 0.0024636935, 0.0260159951, -0.0083579421, -0.00115776493, 0.0298454519, 0.0295719188, 0.00993835274, -0.0182051174, -0.00206669117, -0.0156521462, 0.046895653, -0.029009657, 0.00927731581, -0.0224144813, 0.023432631, 0.00350083807, -0.000564161106, 0.00293097831, -0.0132207451, -0.0266390406, 0.00495018112, -0.0853421912, -0.0097863907, 0.00177131384, 0.0111312596, -0.0108881192, -0.00521231676, -0.0218066312, -0.0204693601, -0.0464093722, 0.00228703697, 0.0141477166, 0.0174453054, -0.0317905731, -0.00909496099, 0.0120810252, -0.0190105196, 0.0144060533, -0.00290248543, -0.0240860693, -0.0130687822, -0.00562261557, 0.0203477908, 0.0142768845, -0.0148695391, -0.00150347978, -0.00211417954, 0.0230071358, 0.0101055121, 0.018113941, -0.0370484777, -0.01198225, -0.00435372815, 0.0210620146, -0.0074841571, 0.00762472255, 0.0171565767, -0.00563781196, -0.00743097, -0.018189922, -0.00635203626, -0.00275622145, 0.01575852, 0.0107133621, -0.00597592862, 0.0195879769, 0.014238894, 0.0275052283, -0.00302405539, 0.0358631685, -0.0495094098, -0.0335533395, 0.0180531554, -0.00963442773, -0.015226651, 0.0118606798, -0.033644516, 0.0297390781, 0.0511202142, 0.0250434335, -0.0124001466, -0.000111003923, -0.00915574562, -0.00461206445, -0.0255297143, -0.0255145188, 0.00605191, 0.0375651494, -0.0417593196, -0.00930011, 0.0276723858, -0.0182962958, 0.00231932895, -0.0246331356, -0.00624566246, 0.0212595649, 0.022444874, 0.00665216194, 0.0159256794, -0.0187369864, -0.0158952866, 0.0360455252, 0.0113516049, -0.000908926188, -0.00979398843, -0.0254841261, -0.00208758609, 0.0119518572, 0.0221105553, 0.0165791176, 0.0135474643, -0.0096800169, -0.0166550986, 0.0146036046, -0.00424735434, 0.00659897504, 0.00885941833, -0.0399661586, -0.0285081808, -0.0157433245, -0.0331886299, 0.0153178284, -0.0042587514, 0.0119898478, 0.0122177918, -0.0250282381, -0.000526170479, -0.0096800169, 0.0181595292, 0.00728660589, 0.00582776498, 0.00914054923, 0.00108178367, 0.00185299374, 0.0204237718, -0.00594933517, 0.012514119, -0.0196335651, -0.00414857874, 0.00762472255, -0.0196031742, 0.0335533395, 0.0052996953, -0.0273228735, -0.0320641063, 0.0164575484, -0.0311219376, 0.0177644268, 0.0353161059, 0.0216698647, 0.0235997885, 0.0279003307, 0.00100010377, 0.0386288874, -0.0182051174, -0.00726761064, 0.010614587, 0.010690568, 0.0185698271, 0.00164214568, -0.000718973, 0.0134334927, -0.0371700488, 0.00614688639, 0.00959643722, 0.0184482578, 0.0344651155, 0.0272316951, -0.0323680304, -0.0179315843, 0.00360721187, -0.00864667073, -0.030605264, -0.0090265777, 0.0297390781, 0.0172933415, 0.00707005942, 0.0212443694, 0.00706626, 0.0229615457, 0.0652223378, -0.00917854, -0.0109413061, -0.0148315486, 0.0313346833, -0.00064156705, -0.00190618064, 0.00395102706, 0.0107741477, -0.00657238159, 0.0158193056, 0.00816039089, 0.0129092215, 0.0271709096, 0.00368889165, 0.015378614, 0.0439171866, -0.00232122838, -0.00395862525, -0.0340092257, -0.0370788723, -0.000279468688, 0.00828196108, 0.00155001832, 0.0100979134, -0.00312663, 0.025408145, -0.0272620879, -0.0295871161, 0.00949766114, -0.0103790443, -0.03090919, 0.0168678463, -0.0115795489, 0.00510594295, 0.00708905468, 0.0181747247, 0.0152570438, 0.0023003337, 0.0208948553, -0.00221485458, 0.00206479151, -0.00198121229, 0.00719542848, -0.0164879411, 0.0278395452, -0.00322540593, 0.00499577, -0.00628745183, 0.00679272739, 0.00490839127, -0.0373524, 0.0115111656, -0.0111616515, 0.000270445918, 0.00604051258, -0.00271823071, -0.0107133621, 0.0115415584, -0.00691049872, -0.0110324835, -0.00230793166, -0.00481721386, 0.0171413794, -0.0045322841, -0.00708905468, -0.00784126949, 0.00988516584, -0.0259248167, -0.000311760727, -0.0082515683, 0.0083047552, 0.0315778255, 0.00303735211, -0.00974080153, 0.0074917553, 0.0106829694, -0.0129092215, -0.0143300714, -0.00555043342, 0.015606557, 0.0205605384, 0.0114883715, 0.00885941833, 0.00559602212, -0.0217914339, 0.0256968737, 0.00143699616, 0.00547065306, 0.00342105771, -0.00795524102, -0.0325199924, -0.00166019122, -0.0226120334, 0.00945967063, -0.00364520261, -0.000628745183, 0.0341004059, -0.0242228359, -0.00351983332, -0.0206821077, 0.0104018394, 0.0114123905, 0.00754114334, 0.00472983532, -0.0321552828, 0.00899618492, -0.0145808104, 0.00329948752, 0.0131371655, 0.019177679, 0.00892780162, 0.00605950831, 0.00713084452, -0.0227487981, 0.0139197726, -0.00275242236, -0.00850990508, 0.00273532653, -0.0116327358, 0.00435372815, 0.0284929853, 0.0155609688, 0.0161080342, 0.00611649407, 0.00106373813, -0.013273932, 0.00794004463, 0.0032861908, 0.0136690345, -0.0193904266, -0.0145124272, -0.0154242022, -0.0220497716, -0.0191016961, -0.0115643525, 0.00639762497, 0.0199830793, -0.0159712676, -0.00527690072, 0.0227184072, 0.0179467816, 0.0107817454, -0.00431573763, -0.00187578821, -0.0388720296, -0.0143148759, 0.0212139767, 0.0278851334, -0.0150898844, 0.0104702218, -0.00800842792, -0.00582016679, -0.0140033523, 0.00301835686, -0.0120962216, 0.00136766327, -0.00369459041, 0.0124989226, -0.018417865, -0.0156521462, 0.0089733908, 0.0274596382, 0.026426293, -0.030529283, -0.0180835482, 0.000882332737, -0.0260463879, -0.0176884457, 0.010158699, 0.0328239165, -0.00577457808, 0.00339446426, -0.0112908203, 0.0444642529, 0.0235238075, 0.0122025954, -0.00981678255, -0.00886701699, 0.0164727438, -0.00415617647, -0.0123697547, -0.00795524102, 0.0092925122, -0.0176276602, 0.0308484044, -0.0114427824, -0.00914054923, -0.00268213963, 0.000661037222, 0.00435752701, 0.00217686407, 0.0118682776, 0.0041523776, 0.01575852, 0.0230223313, -0.00548584945, -0.0154166045, -0.0237821452, -0.00860108249, -0.0319121443, 0.0197551362, -0.00460066739, 0.0202110242, 0.0195119958, -0.0160624459, -0.0160016604, 0.00601771846, 0.01165553, 0.000757913396, 0.0367445536, -0.000656288408, -0.00871505402, -0.00819078367, -0.000751739892, -0.00815279223, 0.00986996945, 0.0121266143, -0.00285689649, 0.0195879769, 0.0246027429, 0.0255449098, -0.00472223712, -0.00368129369, -0.0115339598, 0.0106297825, 0.0228399765, -0.000635868462, 0.00356352259, 0.0182810985, -0.0287209284, -0.000731319946, -0.0113060167, -0.000118483331, -0.00444490556, -0.0165791176, 0.0382337868, -0.0328543112, -0.0161080342, 0.00458167214, -0.00235921913, 0.00510974182, -0.0108805215, 0.0100751193, 0.0289640687, -0.000161697695, 0.0130915763, -0.02391891, -0.0116479322, 0.0238581263, -0.021761043, -0.0155153796, -0.0091329515, -0.00596073223, -0.00223195041, 0.0274596382, 0.00560362032, 0.0095736431, -0.0152418474, -0.0305900685, -0.00582776498, 0.012871231, -0.0163359772, 0.00541746616, -0.0163815673, 0.00869226, -0.00659517618, -0.0130383894, -0.0197551362, 0.00789445639, 0.000797328714, -0.00539847091, -0.0082515683, 0.00618487736, 0.018341884, -0.0138209974, -0.00742717134, 0.00688390527, 0.0191928744, -0.00311903213, -0.00401561148, 0.03273274, -0.0257424619, 0.00408019545, 0.0157433245, -0.0206517149, -0.00190808019, 0.030073395, 0.0204085745, -0.00899618492, 0.0219433978, 0.00998394191, -0.0176884457, 0.0172477532, 0.017126184, 0.0204389673, 0.00609749882, -0.00914054923, 0.0123317642, 0.0180987436, 0.0101131098, -0.0245419573, 0.00746896118, 0.0181291364, 0.000562261557, 0.000165259306, 0.0303621236, 0.00745376479, -0.0129092215, -0.0120886238, -0.0175820719, -0.0430965908, -0.00104284321, 0.0110400822, 0.0237973407, -0.00461206445, 0.00450189179, -0.0241164621, -0.0134031, -0.0128788287, 0.0117922965, -0.00628365297, -0.00591514353, 0.0161840152, 0.00288918871, -0.0165639222, 0.00120810256, 0.0203629863, -0.00472603645, 0.00903417543, 0.0240556765, -0.0238125362, -0.00564920902, 0.010538605, 0.00384655292, 0.00394722819, -0.0229311548, 0.0113819977, 0.00966482051, 0.00543266255, -0.0197247434, 0.00375917437, -0.0114883715, -0.00417897105, 0.0189193413, 0.0158648938, -0.000777383626, 0.0227791909, -0.0115339598, 0.0326111689, -0.0157433245, -0.00590754533, 0.0011729612, -0.0311219376, 0.018417865, 0.00598732568, -0.0084795123, 0.007537344, -0.0121038202, 0.0014464939, -0.0209556408, -0.0183874723, 0.00158041087, 0.0011767603, -0.0126128942, -0.00470324187, 0.000821072841, -0.0016468945, 0.0218522195, 0.030453302, 0.00776148913, 0.0300430022, -0.00191092945, 0.0124229416, 0.0273380689, -0.029921433, -0.0199222956, -0.032428816, -0.00493878406, -0.0244355835, -0.00882142782, -0.00669015292, -0.00376297347, 0.0235542, -0.00805401709, -0.000735593901, -0.00225094589, 0.053004548, -0.0199982766, -0.00417137286, -0.00145219243, 0.0108197359, 0.0408475436, 0.00407259725, 0.0100675216, 0.00267834053, 0.00665216194, -0.012415343, -0.00060452614, 0.0165639222, 0.0187369864, 0.00348754134, 0.00500716735, 0.0100827171, -0.00345145026, 0.00447149901, -0.0101283062, -0.0239341073, 0.00777668506, 0.000995355, 0.0080920076, 0.00500336802, 0.00896579213, -0.0073245964, 0.0116707264, 0.0392063484, -0.00534908287, 0.0176428556, 0.0285081808, -0.0275964048, -0.00909496099, -0.00467664842, -0.0116327358, -0.0155533701, -0.00232122838, -0.015834501, 0.0154393986, -0.00859348383, -0.017126184, -0.0067851292, 0.0257728547, -0.00805401709, -0.00639762497, 0.0192688555, 0.0289792642, 0.0237213597, 0.0125597073, -0.0171413794, 0.0216546692, -0.000638717727, -0.0200134721, 0.0170805939, -0.00904937182, 0.00591894286, 0.00125274155, 0.00882902648, 0.01864581, 0.0221561454, -0.00346854609, 0.00488179782, -0.00927731581, -0.0099459514, -0.0208036788, -0.00622286787, -0.0192688555, 0.019177679, 0.000797803572, 0.0280978829, 0.0210316218, 0.00153482216, 0.030073395, -0.018721791, 0.0170502029, -0.00054849, 0.0235542, 0.0220041815, -0.000764561759, 0.00574038643, -0.00352173299, -0.0157433245, 0.00180740503, -0.0083579421, -0.0284929853, 0.00258906255, 0.0151278749, 0.0279611163, -0.00495018112, 0.00266504381, 0.000946441956, -0.0398749821, -0.000651064678, 0.0174453054, 0.0149379224, 0.0309699755, -0.00600632094, 0.0263807047, -0.00888981111, 0.01575852, 0.00362620712, 0.0116707264, -0.00565300835, 0.00516672805, 0.00435372815, 0.0129776048, 0.00818318501, -0.00725621358, -0.00142464926, 0.000510974205, 0.00549344765, -0.00953565259, -0.00865426939, -0.0101966895, -0.00088518206, -0.0151734641, 0.03151704, -0.00580876973, 0.0033925646, 0.0172933415, 0.00269543636, -0.00844152179, 0.00680412492, -0.0201958269, 0.00779568078, 0.00564541, 0.00699787727, 0.0128788287, -0.0098927645, -0.0308332089, -0.0111844465, 0.0103790443, 0.00808441, 0.00601771846, 0.00955844671, 0.017961977, 0.0128180441, 0.0330366641, -0.00317981699, -0.0111768479, 0.00898858719, -0.00400801329, 0.0178556032, 0.00189668301, -0.0081983814, 0.0109337084, 0.0110400822, -0.000679557677, -0.00240860693, -0.0104018394, 0.0038332562, -0.00542886322, 0.00789445639, 0.0103410538, -0.00738158263, 0.0274444427, 0.000183304874, 0.00364900148, 0.01864581, 0.00465005497, 0.0205757339, -0.00208188733, -0.0047602281, 0.017126184, -0.0263807047, 0.000470134255, 0.000700927398, 0.0193600338, -0.00156806398, 0.0109337084, -0.00502996147, -0.00607470423, -0.00710045174, 0.0140261464, -0.00241240603, 0.00841112901, -0.00550864358, 0.00695228809, 0.00930011, 0.00340206246, 0.0100979134, 0.00164594478, 0.0141933057, 0.0116479322, 0.00454368116, 0.0158800893, 0.00326339644, 0.0148847355, 0.00589614827, -0.0153330248, -0.0215482954, 0.00532248942, 0.0132055487, -0.0102954656, 0.0224600695, -0.0146567915, -0.0240860693, 0.00160035596, 0.0221865382, 0.00959643722, -0.0114199882, 0.0160168558, 0.00808441, 0.00257196673, -0.0160320532, -0.0141933057, -0.0244051907, -0.00735878805, 0.00425495254, 0.00602531666, 0.0052009197, 0.00168488512, -0.0039320318, -0.0134942774, 0.0263655093, 0.00980158709, -0.0136614367, -0.0270797331, 0.0129624084, -0.00700927433, -0.0258488357, -0.00450569065, -0.00306204613, -0.00390923768, 0.00209328462, -0.00762472255, 0.00349323987, 0.010538605, 0.0118758762, -0.00770070404, -0.0131903524, -0.0184786506, 0.018341884, 0.00836554, -0.0141553152, -0.00096163823, 0.018949734, 0.00156711414, -0.00125654065, 0.0041067889, -0.0136614367, -0.00121380109, -0.0151810618, 0.00149208261, -0.0245875455, 0.0174453054, -0.00380096422, 0.0033925646, -0.0201502386, -0.00716883503, 0.00646980712, -0.0130763808, 0.014261689, -0.00292907888, -0.000186866484, -0.0131219691, -0.0100599229, 0.0235997885, -0.00467664842, -0.0215027053, 0.0111616515, -0.0168678463, 0.00395102706, 0.00940648373, -0.00920133479, -0.014261689, 0.017734034, -0.041880887, 0.010158699, -0.00569859706, -0.0273076762, 0.0121190166, -0.00964202639, 0.00753354514, -0.0040991907, -0.00373827969, -0.00751075055, -0.00609369949, 0.0143680628, 0.0261983499, -0.0177188367, 0.00414477941, 0.0214571171, -0.011450381, -0.0144744366, 0.0125445118, -0.00780327851, 0.0147555666, 0.0202870052, 0.0182051174, 0.00692189578, 0.00267834053, -0.00880623143, -0.00952805392, 0.0294199567, -0.00828196108, -0.00289868633, -0.0164575484, -0.0192384627, -0.0124457357, -0.00593793811, 0.00846431591, -0.0141857071, 0.00370028894, -0.00422076089, 0.0217914339, 0.0110552777, -0.0141021283, 0.000453988236, 0.00398901803, 0.00347234495, -0.007537344, 0.00544405961, 0.0045930692, -0.00204199716, 0.00155856623, -0.0360151343, 0.00428154599, 0.0211987812, -0.00863147527, 0.0020230019, 0.000743666897, -0.0128028477, -0.000627795409, 0.000404600374, -0.0208948553, -0.0080920076, -0.0165487248, -0.0040991907, -0.00744236773, 0.00773489568, 0.00415617647, 0.0266998261, -0.0113668013, 0.00319121429, 0.00110267848, 0.0103790443, -0.00147213752, -0.0084263254, -0.0278699379, 0.00483620912, -0.0273988545, -0.00443730736, 0.0240252838, 0.0167310797, -0.0101890909, -1.17310956e-05, 0.013805801, 0.0143528664, 0.0156217534, -0.0162751935, -0.00414857874, 0.0161688197, -0.00724101719, -0.00904937182, 0.0195423886, -0.00816798862, -0.00761712436, -0.000472508662, 0.00144554407, -0.00198121229, 0.0208796598, 0.00322920503, -0.0210316218, -0.00449429359, -0.00672814343, 0.00222815131, 0.014694782, -0.0131143713, -0.00123659556, 0.0201806314, 0.0035559244, -0.00866946578, -0.0113364086, -0.00195081963, -0.00806161482, 0.013805801, 0.0337053, -0.0233110599, 0.00586955482, 0.0077045029, -0.037443582, 0.00615068572, -0.00865426939, 0.0394798778, 0.00763232075, 0.00451708771, 0.00192137691, -0.00802362431, -0.0180531554, 0.00311143394, 0.000596928, 0.0213355478, -0.0135322679, -0.0275812093, -0.00362050859, 0.00740437675, 0.00676613394, 0.0194664076, -0.00612409227, 0.0103942407, 0.0128256418, 0.0140033523, 0.0486280285, 0.0204237718, 0.00719542848, 0.0172173604, 0.0165791176, 0.00398901803, 0.0265478641, -0.017885996, -0.00245799473, 0.00876064319, -0.0139121749, 0.0239948928, -0.026958162, 0.0262135454, 0.0144592403, -0.0045398823, -0.00298606488, 0.00237631495, 0.0112908203, -0.00513633527, -0.00094026851, -0.00335077499, 0.0177644268, 0.0100599229, -0.00309813721, 0.0145884082, -0.0019166281, 0.00758673204, -0.0204693601, -0.0158952866, 0.000406262465, 0.00914054923, 0.00585435843, 0.0109109133, 0.00715363864, -0.00694469, -0.00562261557, 0.000710425084, 0.00469184481, 0.0037762702, -0.0185850244, -0.0144516416, -0.0158952866, -0.0319729261, 0.0036698964, 0.0109489039, -0.00349323987, -0.012187399, -0.017430108, 0.0210164264, -0.00927731581, 0.000434280577, 0.00115301611, 0.0149607165, 0.0205757339, -0.0214875098, 0.0235693976, 0.00803122297, -0.0127648572, 0.00792484917, 0.00362430769, 0.00502996147, 0.0314562544, -0.00537567632, 0.01023468, -0.00295757176, -0.0114047918, -0.0138969785, -0.0173237342, 0.000993455411, -0.0256208926, -0.0206061266, -0.00800083, 0.0126888761, 0.0131219691, 0.00808441, 0.0100827171, -0.0190713052, -0.0282802377, 0.0081451945, -0.0180531554, 0.00465005497, -0.0020192028, 0.0139045762, 0.0168374553, 0.00378766749, -0.00613548933, -0.0145504177, -0.0294047594, 0.00375917437, 0.0142236976, 0.00135246699, -0.0236301813, -0.00827436242, -0.01515067, -0.00200970517, -0.0017000814, -0.00316082174, -0.00844152179, 0.0121798012, 0.057836961, 0.0139121749, -0.00219775899, 0.00666735834, 0.0206061266, -0.0129396142, -0.00112452311, -0.0123317642, -0.00369838951, 0.00517052691, 0.000892305281, -0.00792484917, -0.0114959693, -0.00360151334, -0.0027334271, -0.00771969929, 0.0117011191, 0.00275622145, 0.0190713052, -0.00220725662, 0.0157889128, -0.00461206445, 0.0142312963, -0.0132435393, -0.0156673416, 0.0019451211, 0.0042663496, 0.00730180228, 0.0191928744, -2.56585263e-05, 0.0183722768, -8.73784884e-05, -0.00203819806, 0.0249522571, -0.0112604275, -0.0301189851, 0.0193144437, 0.0149531187, 0.00531109236, -0.00298226578, 0.0201046504, -0.0102270823, 0.00649640057, 0.018797772, 0.00703206845, 0.00430054124, 0.000137478652, 0.0148847355, -0.013707025, -0.000415285263, -0.003882644, 0.00179980684, 0.00671674637, 0.00664076488, -8.55976759e-05, 0.0102422787, -0.00559982145, -0.013783006, 0.0106981657, 0.0159560721, -0.00447149901, 0.0141325202, 0.0101966895, 0.0016715884, -0.00949006341, 0.0172629505, 0.0119898478, 0.0081224, -0.0119518572, 0.00436892454, 0.00178271113, 0.00269353692, 0.0118226893, 0.0074841571, -0.0138285952, 0.0263047237, 0.00223764917, 0.00928491354, 0.0121494085, -0.0188585576, 0.000178556031, -0.0187369864, -0.0118454834, -0.017734034, -0.00433473289, 0.00306964433, 0.015682539, 0.0187825747, -0.0145276235, -0.00286639435, 0.0107893432, 0.00100390287, -0.0109261097, 0.00772729749, 0.00576318102, -0.00289868633, -0.00857069, 0.00775009161, -0.00559982145, -0.025438536, -0.012742063, 0.00418277, -0.00817558728, 0.00984717533, -0.00259856018, 0.0081224, -0.00632164348, -0.00598732568, 0.00516672805, 0.00790965278, 0.0136766322, 0.0115719512, -0.00209138496, 0.0150442962, -0.010006736, -0.00993075501, -0.00138760835, 0.0020230019, -0.0121949976, 0.0107057644, -0.00430434, -0.0192232672, 0.0123089692, -0.013251137, -0.011427586, -0.00202110247, -0.00824397057, 0.00652299402, 0.0110780727, 0.00650779763, 0.0201654341, 0.00795524102, 0.00677753147, -0.0206365194, 0.00023387991, -0.000702352088, -0.0198311172, 0.0137754083, -0.0129776048, 0.0052009197, 0.00838833489, -0.0285689663, 0.00141610135, 0.00788685773, -0.00423975615, 0.0162296034, 0.0010418935, -0.0161536224, 0.0142009035, 0.0120430347, -0.00642801728, -0.0146643892, -0.000979208853, 0.0129928011, 0.00698268088, 0.0157737155, -0.0132891284, 0.011754306, -0.0073245964, -0.00763991894, -0.0143224737, 0.010462624, 0.00458927, 0.00651919469, 0.0211228, 0.00756013859, 0.00366039877, 0.0128028477, 0.0138969785, 0.00270493398, -0.0105234087, -6.35156102e-05, 0.0293135829, 0.0115947453, -0.0199830793, -0.0142692868, 0.0102802692, -0.0452240668, -0.0044259103, 0.000593603821, 0.0166247059, 0.00935329683, -0.00296137086, 0.00860108249, 0.0112832217, -0.0104018394, 0.00388834253, -0.00556563, 0.00277521671, -0.000437842187, 0.0018064552, -0.00704726484, -0.0041599758, -0.00560741918, -0.0136234453, 0.0225512479, 0.00802362431, 0.040482834, -0.0220193788, 0.00624566246, 0.00925452169, 0.00797043741, -0.0364406295, -0.014618801, -0.0330974497, -0.0297238808, 0.0264110975, 0.018113941, -0.0125065204, -0.0217458457, 0.0068383161, -0.0120202405, 0.00710425107, 0.00570619525, -0.0107893432, 0.000247414078, 0.00752214808, -0.00766651239, 0.0213659387, 0.00861627888, 0.00680412492, 0.00673574163, 0.00702067139, -0.0114959693, 0.00997634325, 0.0109489039, 0.00408779364, -0.0299822185, -0.00445630262, -0.0207276959, -0.0248154905, 0.0240556765, -0.0111388573, 0.0314866491, 0.00605191, -0.00634063873, -0.00175611768, 0.0199070983, -0.00305444794, 0.0110552777, -0.00532248942, 0.027490031, 0.0298454519, -0.00391303655, -0.0126280906, 0.00291198306, -0.0249522571, -0.00742717134, 0.00404980266, 0.0190409124, 0.00659897504, 0.0211228, -0.000486755162, -0.00216546678, 0.00367559493, -0.00295377267, 0.0218218267, 0.0180075672, -0.00595313404, -0.00729040522, 0.0225208551, -0.0242228359, -0.0204693601, 0.00861627888, 0.00990796089, -0.0231742933, -0.0205605384, 0.0162751935, -0.00936849322, -0.0126736797, 0.0300582, 0.0139501654, -0.00739677902, 0.00684591429, 0.0308484044, 0.00704346597, 0.00382375857, -0.0172933415, -2.08800157e-05, -0.0183266886, 0.0281738639, -0.0121646049, 0.0113743991, -0.00379526545, 0.0113212122, 0.0121190166, -0.0199982766, 0.0143376701, -0.00547065306, 0.00475642877, 0.015834501, -0.00555043342, -0.00551244291, 0.015682539, -0.00866946578, -0.0104930168, 0.0033431768, -0.00588855, 0.0137298191, 0.00990036223, -0.0282650404, 0.0235238075, 0.0221105553, -0.0020192028, 0.00872265268, -0.0102650728, -0.00534148468, 0.0215786863, -0.0223992858, -0.00906456821, -0.0143072773, -0.0113592036, -0.0016430954, -0.0216090791, 0.0118758762, 0.0235390048, 0.0124305394, 0.0220497716, 0.00641662, 0.00118625793, 0.0102498764, 0.0106449788, 0.0296934899, 0.00601012027, -0.00156616443, -0.003882644, 0.0245875455, 0.0278699379, 0.0125065204, -0.000679557677, -0.0115643525, 0.0248002931, -0.0208644625, -0.0253625549, -0.00615828391, 0.00740437675, -0.012415343, 0.00238201348, -0.00763991894, -0.00783367082, 0.024344407, 0.00829715747, 0.00857069, -0.00731319934, 0.0103258574, 0.00788685773, -0.0153862117, -0.00111312594, -0.0182051174, 0.0116327358, -0.00173142366, 0.0133271189, -0.00187673792, -0.0114351846, -0.000466097728, 0.00400421396, 0.00287399231, 0.00876064319, -0.0105006145, -0.00104759203, 0.00570999412, 0.0131675582, 0.00418656925, 0.00441831211, 0.0072182226, 0.00754114334, 0.0272620879, -0.025438536, -0.0134562869, 0.00787166227, 0.0147631653, 0.0146795856, -0.00852510147, 0.018721791, -0.0180075672, -0.0249218643, -0.00169438287, 0.00460066739, -0.00837313849, 0.00239151111, -0.00151297753, 0.0093456991, -0.00233072625, 0.00794764329, -0.00561501738, 0.0053604804, 0.00146263989, -0.0116859227, 0.038173, -0.0155533701, 0.0200438648, -0.00215406972, -0.0105917919, 0.0207580887, -0.000479631912, -0.0276419949, -0.00821357779, 0.0152798379, -0.020393379, -0.0186306126, 0.0182051174, -0.00544785848, -0.0201654341, 0.0289944615, -0.0111996429, 0.00748035824, -0.00864667073, -0.0212595649, 0.00279421196, -0.011298418, -0.0048058168, -0.00082487188, -0.0239948928, -0.0124913249, -0.00333747827, -0.00181215385, 0.0202566124, 0.00198691082, 0.00147023797, 0.0120278383, 0.00414857874, -0.00151392724, -0.00279611163, -0.0147099784, -0.0114807729, -0.00324820029, 0.0133499131, 0.0248154905, 0.0147327725, -0.015910482, -0.00780327851, 0.0174908936, 7.89493133e-05, -0.0192840528, -0.011123661, 0.000170008148, 0.0133651095, -0.00621906901, -0.0167158842, -0.00866946578, -0.0100143347, -0.00965722185, -0.0230983123, 0.0139197726, -0.00465765316, 0.0175060891, -0.00950526, 0.0198767055, -0.00676993327, -0.0094520729, 0.0107057644, 0.00635203626, -0.00783367082, 0.00249028695, 0.0126052964, -0.0132207451, 0.0097484, 0.00623426493, 0.00666355947, -0.0177948195, -0.0141553152, 0.00926211942, 0.00744996592, -0.00510974182, 0.0147783617, 0.00908736233, 0.00255487091, -0.00887461472, -0.0152798379, -0.00276571908, 0.014390857, -0.00695988629, -0.00650019944, -0.0042663496, -0.0269429665, -0.0122025954, -0.0228703693, 0.0249826498, 0.00450948952, 0.0131219691, 0.00636343332, -0.0341307968, 0.001969815, -0.00901138131, 0.00309813721, 0.0124837263, 0.0144212497, -0.0039852187, 0.0135246702, 0.00726001244, -0.00869985763, 0.00748035824, 0.0111692501, -0.0125597073, -0.00612029294, 0.0152342487, -0.00670155, -0.0153710153, 0.0128484368, 0.0128256418, -0.0706929937, -0.00822117552, 0.0200134721, 0.0323680304, -0.01636637, -0.018189922, -0.0089733908, -0.0225816406, -0.00184729521, -0.0119974464, 0.00760952663, 0.00769690471, 0.0158800893, 0.0141021283, 0.00211607898, -0.0156217534, 0.0126204928, -0.0032330039, 0.00601012027, 0.00669015292, -0.00622666674, -0.00990796089, -0.00627605477, -0.0137906047, 0.010766549, -0.00275622145, 0.0163055845, 0.00116156403, -0.00493498472, 0.000668635359, 0.00993075501, 0.0079856338, 0.001222349, 0.00844911952, -0.0242532287, -0.00386364874, 2.78548614e-05, -0.0296023116, 0.0132587356, -0.0314866491, -0.0099459514, -0.00322730537, -0.0179163888, -0.0106981657, 0.018873753, 0.0132283429, 0.00372118386, -0.00319691282, -0.00609749882, 0.00140945299, -0.000278518914, 0.0195271913, -0.0126280906, -0.00301075866, -0.00220725662, 0.0116859227, -0.000674333947, -0.0109565025, -0.0104018394, 0.0115339598, -0.012058231, -0.0391759537, 0.0135094738, 0.0084795123, -0.0070586619, 0.0290704425, -0.0247395094, -0.003768672, 0.0123849511, 0.0156521462, 0.00440311572, 0.0114199882, -0.0183114912, -0.0227639955, 0.0102574741, -0.000289203803, -0.0177796222, -0.00172382558, 0.0128408382, 0.00314752501, 0.016670296, -0.00646600779, -0.00744236773, 0.00096163823, -0.0131067727, 0.0102270823, 0.0107361563, 0.00628365297, 0.0185394362, -0.0255753025, 0.018417865, 0.0103486525, -0.00583916251, 0.0078260731, 0.018417865, 0.0192080699, -0.0194512103, -0.00496157818, -0.000309148891, 0.00654958747, -0.0161688197, 0.00229843403, 0.0291312281, -0.0151886605, 0.029921433, -0.0116327358, 0.00221295515, -0.0126280906, 0.0317297876, 0.00378956692, 0.0298302546, -0.00763612, 0.00727520883, -0.00566440541, -0.00478302222, 0.0177036412, -0.00914054923, 0.00609369949, -0.0144212497, 0.0102042872, 0.00504515786, -0.00316462084, -0.0146263987, 0.010538605, -0.00365280057, -0.0118454834, 0.0109337084, 0.00523511088, 0.00319311372, -0.00374017912, -0.00682312, 0.00138001028, 0.0110020908, -0.0194968, 0.00791725051, -0.0152570438, -0.00724481605, 0.00887461472, -0.00937609188, 0.00850230642, 0.000960213598, 0.00135436654, -0.00293857651, -0.0019660159, -0.0141097261, 0.00578217627, 9.67574306e-05, 0.0155609688, 0.00450948952, -0.00661417143, -0.0201198459, -0.00134106982, 0.00159940624, 0.00220915605, -0.0270645358, -0.0172173604, 0.0188129675, 0.0043727234, 0.0097332038, -0.0156521462, 0.0105310073, -0.00462346151, -0.010386643, 0.014162913, -0.00528449891, 0.0195271913, -0.011298418, -0.0213355478, 0.0120202405, -0.00421696156, 0.0167766698, 0.00702067139, 0.00669395179, 0.00643181661, 0.000964962412, 0.00499197096, -0.0170350056, 0.00848711, 0.000181524054, -0.00052427093, 0.0257424619, 0.00177416322, 0.000675758638, 0.00310383574, 0.0238125362, -0.00665216194, 0.010462624, 0.0138817821, 0.00187483837, -0.00283410214, 0.0161536224, 0.0308332089, 0.0154166045, -0.000208592392, -0.0170350056, -0.00738158263, 0.00385225145, 0.0220497716, -0.0140793333, -0.00711944699, -0.0257120691, -0.0157281272, -0.0040612, -0.0033431768, 0.00623426493, -0.0013116271, -0.0119214645, 0.0236757714, 0.00784126949, -0.0221865382, -0.00888221338, -0.0395406634, 0.00369648985, 0.0105993906, -0.00267454144, 0.0119974464, -0.00187768764, 0.0132131465, -0.011146456, 0.00493878406, 0.0201654341, 0.0225512479, 0.0269429665, 0.00252637803, 0.0243140142, -0.00123944483, 0.00471843826, -0.00242380332, -0.0239341073, -0.0129776048, -0.0162599962, -0.0125673059, 0.0199070983, -0.0151050808, 0.00301645719, -0.00196411647, -0.00112927193, 0.00154716906, -0.00910255872, 0.0176732484, 0.0130763808, 0.0139121749, 0.00164404523, -0.00654578814, -0.00166683958, 0.00676233508, 0.0143376701, -0.00302595505, 0.0175364818, 0.0323072448, 0.000660087506, 0.0040384056, -0.00720682554, 0.0165031366, 0.0083579421, -0.0105234087, -0.0292072091, 0.026502274, -0.00351033569, 0.0263047237, 0.00469184481, 0.00383515563, -0.021305155, -0.0196031742, 0.00718403142, -0.0158952866, 0.0113060167, -0.0215938836, 0.00709285354, -0.0125521095, -0.00132302428, -0.0161232296, -0.027945919, -0.0140869319, -0.00346094789, 0.00127268664, -0.00746896118, 0.0146795856, -0.015606557, -0.00904177409, -0.014542819, -0.0182355102, -0.012286175, 0.0298302546, -0.00613169046, 0.00511734, 0.0134486891, -0.0180531554, 0.000340253726, -0.0137678105, 0.00997634325, -0.00933050271, -0.00784886722, -0.00745376479, -0.00513633527, 0.00223005097, -0.0140413428, 0.0205757339, 0.000908451329, -0.029921433, 0.00304495031, 0.0162296034, 0.00697128335, -0.00432333536, -0.0195423886, -0.00975599792, -0.00373258092, -0.0173693243, -0.00192422618, -0.0121722035, -0.0351641439, 0.0182355102, -0.000251925463, 0.0067851292, -0.00171337812, -0.0095736431, -0.00420176564, 0.00770830223, 0.00371168624, -0.0105841942, 0.00313232886, -0.019405622, -0.00303735211, 0.0092925122, 0.0188129675, -0.0131067727, -0.0208340697, 0.015454595, -0.0112300348, 0.0169286318, -0.00142369943, -0.00943687651, -0.00168583496, 0.0117391096, -0.024420388, -0.0102042872, 0.00458167214, -0.0296630971, -0.00939128734, -0.0113819977, -0.00811480172, 0.00107418548, -0.0196183696, -0.014998707, 0.0109337084, 0.00200970517, -0.020697305, -0.00629505, 0.0279003307, -0.00600252207, -0.00065961259, -0.0126280906, -0.000599777326, 0.0112072406, 0.00488179782, -0.00803122297, -0.00882902648, -0.0159256794, 0.0146491928, -0.00234212331, 0.0221561454, -0.0203781817, -0.0146719879, -0.00414857874, 0.00406879839, -0.0337660871, 0.0267150216, 0.00871505402, -0.0280370973, -0.0021293757, 0.027034143, -0.0211379956, -0.0188889485, 0.0658909753, 0.0199222956, 0.0291008353, 0.00531109236, 0.0255297143, -0.0088518206, -0.0036660973, 0.0460142717, -0.0317297876, 0.00482861092, -0.0103638479, -0.0122709787, 0.00746516185, 0.00383705529, 0.0142009035, -0.00135626609, -0.0026232542, -0.0177036412, -0.0027334271, -0.0185546316, -0.0109489039, -0.0205149483, -0.010006736, -0.0132967262, 0.0170957912, 0.0044259103, -0.0110172872, 0.000255724532, -0.0294047594, -0.0050261626, 0.00908736233, 0.0259552095, -0.00175516785, 0.0101890909, -0.0301341806, -0.0205301456, -0.0214723125, -0.0148239499, 0.0097484, 0.021913005, 0.00476782629, 0.00824397057, 0.0151734641, -0.0158648938, 0.0167918652, -0.00856309198, -0.0103714466, -0.0168526508, 0.000876159291, -0.0143376701, -0.00275622145, -0.0310155638, -0.0215786863, -0.0380514301, -0.00462346151, 0.0170805939, 0.017202165, 0.0163055845, -0.00172287575, 0.0233262572, -0.0185090434, -0.0163359772, -0.0257272664, -0.0256056953, 0.0123545583, -0.00702826958, 0.0037192842, 0.0154014081, -0.0249218643, -0.00831235293, 0.00597972749, -0.0117619038, 0.00428914418, -0.0250890236, 0.00963442773, 0.00233832421, -0.0186913982, -0.000274719874, -0.00997634325, -0.0151962582, 0.00706626, 0.00419036811, -0.00287589198, -0.00542886322, -0.00538327452, -0.00835034437, -0.007651316, -0.00527690072, -0.0232046861, -0.0139957545, 0.00494258292, 0.00936849322, 0.000917949, 0.00444110669, 0.00748795643, -0.00668635359, -0.034921, -7.49128085e-05, 0.00961923134, 0.0111692501, 0.0236301813, 0.010766549, -0.00332418154, 0.00173997157, -0.0152874356, 0.0173997153, 0.0149151273, 0.00106373813, 0.00935329683, 0.00164119597, 0.0120126419, -0.0172933415, 0.00955084804, 0.0331582353, -0.0216394719, -0.011526362, -0.008639073, -0.0090797646, 0.00863147527, -0.00836554, 0.00441831211, 0.0112756239, -0.0455583818, 0.0194664076, 0.00122709782, -0.0105538014, 0.0335837305, 0.00526550366, 0.015834501, 0.0034495506, 0.0106297825, 0.00378196873, 0.0117315119, -0.0122633809, 0.00231363042, 0.00338496664, -0.00114636775, 0.016442351, -0.0103486525, 0.0176884457, 0.0128788287, 0.00252827746, -0.0135550629, 0.0193144437, -0.00998394191, 0.00689530233, -0.00314942468, -0.00372688239, -0.00455887755, 0.0175972674, 0.00735119, 0.0253321622, 0.0129928011, -0.0135550629, 0.0034457515, 0.00779568078, 0.0168830436, -0.0162599962, 0.041698534, 0.00658757798, -0.00545165781, 0.00291198306, -0.0100371288, -0.0188281648, -0.00457407394, -0.0163359772, 0.0144744366, 0.00441451324, 0.0134258941, 0.0237213597, -0.018949734, 0.0257120691, 0.000688105589, 0.0159712676, -0.00988516584, 0.0141097261, 0.0106601752, -0.00419796631, -0.0130231939, -0.0316993967, -0.0130763808, 0.0147327725, 0.010310661, 0.0402396917, 0.00328049227, -0.00596073223, -0.00263655093, 0.013805801, 0.00540227, 0.0121798012, -0.0083579421, 0.000276144507, -0.00442970917, -0.00120810256, -0.0218978077, -0.0163815673, 0.0222777147, 0.0209404435, -0.021837024, 0.0134410905, 0.00829715747, 0.00867706351, 0.00864667073, 0.0115415584, -0.0138969785, -0.00199260935, 0.00460826559, 0.00570619525, -0.00571759231, -0.00284359977, -0.0185242388]
14 May, 2020
multiset::emplace() in C++ STL 14 May, 2020 Multisets are a type of associative containers similar to set, with an exception that multiple elements can have same values. multiset::emplace() This function is used to insert a new element into the multiset container. Syntax : multisetname.emplace(value) Parameters : The element to be inserted into the multiset is passed as the parameter. Result : The parameter is added to the multiset. Examples: Input : mymultiset{1, 2, 3, 4, 5}; mymultiset.emplace(6); Output : mymultiset = 1, 2, 3, 4, 5, 6 Input : mymultiset{}; mymultiset.emplace("This"); mymultiset.emplace("is"); mymultiset.emplace("Geeksforgeeks"); Output : mymultiset = Geeksforgeeks, This, is Errors and Exceptions 1. It has a strong exception guarantee, therefore, no changes are made if an exception is thrown 2. Parameter should be of same type as that of the container, otherwise an error is thrown // INTEGER EXAMPLE // CPP program to illustrate // Implementation of emplace() function #include <iostream> #include <set> using namespace std; int main() { multiset<int> mymultiset{}; mymultiset.emplace(1); mymultiset.emplace(56); mymultiset.emplace(4); mymultiset.emplace(9); mymultiset.emplace(0); // multi set becomes 0, 1, 4, 9, 56 // adding another element mymultiset.emplace(87); // printing the multiset for (auto it = mymultiset.begin(); it != mymultiset.end(); ++it) cout << ' ' << *it; return 0; } Output: 0 1 4 9 56 87 // STRING EXAMPLE // CPP program to illustrate // Implementation of emplace() function #include <iostream> #include <set> #include <string> using namespace std; int main() { multiset<string> mymultiset{}; mymultiset.emplace("This"); mymultiset.emplace("is"); mymultiset.emplace("a"); mymultiset.emplace("computer science"); mymultiset.emplace("portal"); // multi set becomes This, a, // computer science, is, portal // adding element mymultiset.emplace("GeeksForGeeks"); // printing the multiset for (auto it = mymultiset.begin(); it != mymultiset.end(); ++it) cout << ' ' << *it; return 0; } Output: GeeksForGeeks This a computer science is portal Application Input an empty multi set with the following numbers and order using emplace() function and find sum of elements. The advantage of emplace() over insert is, it avoids unnecessary copy of object. Input : 7, 9, 4, 6, 2, 5, 3 Output : 36 // CPP program to illustrate // Application of emplace() function #include <iostream> #include <set> using namespace std; int main() { // sum variable declaration int sum = 0; // multiset declaration multiset<int> mymultiset{}; mymultiset.emplace(7); mymultiset.emplace(9); mymultiset.emplace(4); mymultiset.emplace(6); mymultiset.emplace(2); mymultiset.emplace(5); mymultiset.emplace(3); // iterator declaration set<int>::iterator it; // finding sum of elements while (!mymultiset.empty()) { it = mymultiset.begin(); sum = sum + *it; mymultiset.erase(it); } // printing the sum cout << sum; return 0; } Output : 36 Time Complexity : O(logn) emplace() vs insert() When we use insert, we create an object and then insert it into the multiset. With emplace(), the object is constructed in-place. // C++ code to demonstrate difference between // emplace and insert #include<bits/stdc++.h> using namespace std; int main() { // declaring multiset of pairs multiset<pair<char, int>> ms; // using emplace() to insert pair in-place ms.emplace('a', 24); // Below line would not compile // ms.insert('b', 25); // using insert() to insert pair in-place ms.insert(make_pair('b', 25)); // printing the multiset for (auto it = ms.begin(); it != ms.end(); ++it) cout << " " << (*it).first << " " << (*it).second << endl; return 0; } Output : a 24 b 25 Please refer Inserting elements in std::map (insert, emplace and operator []) for details. Learn C++ Online – Master everything from basics to advanced concepts. Apply your knowledge with practical exercises and boost your skills. Take the Three 90 Challenge: finish 90% in 90 days for a 90% refund. Start now and level up your C++ programming!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum/Algorithm for Dynamic Time out timer Calculation/Difference between Round trip time (RTT) and Time to live (TTL)/Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms/Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm/Round Robin Scheduling Algorithm with Different Arrival Time/Selfish Round Robin CPU Scheduling/Find the order of execution of given N processes in Round Robin Scheduling/Calculate server loads using Round Robin Scheduling/set::lower_bound() Function in C++ STL/Implementation of lower_bound() and upper_bound() in List of Pairs in C++/Difference between std::set::lower_bound and std::lower_bound in C++/Difference between std::set vs std::vector in C++ STL/std::minmax() and std::minmax_element() in C++ STL/std::rotate vs std::rotate_copy in C++ STL/std::bitset::to_ullong and std::bitset::to_ulong in C++ STL/std::upper_bound and std::lower_bound for Vector in C++ STL/std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++/std::string::append vs std::string::push_back() vs Operator += in C++/Vector push_back() in C++ STL/vector :: cbegin() and vector :: cend() in C++ STL/unordered_multiset cend() function in C++ STL/unordered_multiset bucket() function in C++ STL/unordered_multiset emplace_hint() function in C++ STL/unordered_multiset end() function in C++ STL/unordered_multiset size() in C++ STL/unordered_multiset emplace() function in C++ STL/unordered_multiset find() function in C++STL/unordered_multiset erase() function in C++ STL/unordered_multiset clear() function in C++ STL/unordered_multiset swap() function in C++ STL/unordered_multiset bucket_size() function in C++ STL/unordered_multiset bucket_count() function in C++ STL/unordered_set bucket_count() function in C++ STL/unordered_set cbegin() function in C++ STL/array::cbegin() and array::cend() in C++ STL/array::rbegin() and array::rend() in C++ STL/multimap rbegin in C++ STL/vector rbegin() and rend() Functions in C++ STL/multiset rbegin() and rend() function in C++ STL/map rbegin() function in C++ STL/map upper_bound() function in C++ STL/Set upper_bound() in C++ STL/multimap upper_bound() function in C++ STL/multimap empty() function in C++ STL/multimap value_comp() function in C++ STL/multimap swap() function in C++ STL/multimap::swap() in C++ STL/multimap equal_range() in C++ STL/unordered_set equal_range in C++ STL/set vs unordered_set in C++ STL/unordered_set count() function in C++ STL/unordered_set bucket() function in C++ STL/unordered_set emplace() function in C++ STL/set::emplace() in C++ STL/multiset::emplace() in C++ STL
https://www.geeksforgeeks.org/multisetemplace-c-stl?ref=asr10
PHP
multiset::emplace() in C++ STL
unordered_multiset clear() function in C++ STL, What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, jQWidgets jqxTreeMap width Property, Round Robin Scheduling Algorithm with Different Arrival Time, Difference between Flow and TypeScript, unordered_multiset emplace() function in C++ STL, jQWidgets jqxTree destroy() Method, unordered_set bucket_count() function in C++ STL, jQWidgets jqxTree collapseAll() Method, Find the order of execution of given N processes in Round Robin Scheduling, jQWidgets jqxScrollView buttonsOffset Property, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Vector push_back() in C++ STL, jQWidgets jqxListBox enableHover Property, Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm, std::rotate vs std::rotate_copy in C++ STL, Selfish Round Robin CPU Scheduling, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxSlider buttonsPosition Property, std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++, std::upper_bound and std::lower_bound for Vector in C++ STL, Difference between Round trip time (RTT) and Time to live (TTL), jQWidgets jqxSlider rtl Property, Difference between std::set::lower_bound and std::lower_bound in C++, jQWidgets jqxTooltip opacity Property, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, unordered_multiset erase() function in C++ STL, set vs unordered_set in C++ STL, jQWidgets jqxToolBar height Property, PHP, std::minmax() and std::minmax_element() in C++ STL, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, unordered_set emplace() function in C++ STL, unordered_set bucket() function in C++ STL, map rbegin() function in C++ STL, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, map upper_bound() function in C++ STL, Node.js date-and-time Date.transform() Method, unordered_multiset size() in C++ STL, TypeScript Optional Parameters, jQWidgets jqxToolBar theme Property, Difference between std::set vs std::vector in C++ STL, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, Steps to Diagnose and Resolve a Slow Network, How to use Optional Chaining with Arrays and Functions in TypeScript ?, Calculate server loads using Round Robin Scheduling, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, jQWidgets jqxScrollView showButtons Property, set::emplace() in C++ STL, Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms, jQWidgets jqxScrollView disabled Property, jQWidgets jqxSplitter destroy() Method, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, set::lower_bound() Function in C++ STL, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, jQWidgets jqxTree collapseItem() Method, multimap upper_bound() function in C++ STL, std::string::append vs std::string::push_back() vs Operator += in C++, unordered_multiset swap() function in C++ STL, unordered_multiset cend() function in C++ STL, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), Set upper_bound() in C++ STL, jQWidgets jqxSortable opacity Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, multimap rbegin in C++ STL, vector :: cbegin() and vector :: cend() in C++ STL, multimap swap() function in C++ STL, jQWidgets jqxSlider height Property, jQWidgets jqxSwitchButton onLabel Property, unordered_multiset bucket_size() function in C++ STL, unordered_set cbegin() function in C++ STL, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, jQWidgets jqxToolBar tools Property, multimap empty() function in C++ STL, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTree width Property, multimap::swap() in C++ STL, multimap equal_range() in C++ STL, Implementation of lower_bound() and upper_bound() in List of Pairs in C++, jQWidgets jqxTree clear() Method, TLS Handshake?, multiset rbegin() and rend() function in C++ STL, Algorithm for Dynamic Time out timer Calculation, Adhoc TCP, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, jQWidgets jqxTabs position Property, Differences between Wireless Adhoc Network and Wireless Sensor Network, jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, std::bitset::to_ullong and std::bitset::to_ulong in C++ STL, unordered_multiset emplace_hint() function in C++ STL, unordered_multiset bucket_count() function in C++ STL, unordered_multiset find() function in C++STL, unordered_multiset bucket() function in C++ STL, Impact of Three-way Handshake and Slow Start Algorithm, array::rbegin() and array::rend() in C++ STL, multimap value_comp() function in C++ STL, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, multiset::emplace() in C++ STL, unordered_set equal_range in C++ STL, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, unordered_set count() function in C++ STL, vector rbegin() and rend() Functions in C++ STL, array::cbegin() and array::cend() in C++ STL, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, unordered_multiset end() function in C++ STL, How to Sort an Array Having Optional Properties in TypeScript ?
GeeksforGeeks
[-0.0314558335, 0.0219448954, -0.0143554332, 0.0175529476, 0.0240963548, 0.0207875576, -0.0217074919, 0.0129532749, 0.0215294398, 0.0194670055, -0.00807910413, 0.0386075824, -0.00793814659, -0.0205946676, -0.0127084535, -0.0367083624, 0.0157724284, 0.0128790867, -0.0326725207, -0.0232802834, 0.0109947035, -0.0231022313, -0.0116253039, -0.016084021, -0.00213476783, 0.0166033376, -0.00827941298, 0.0214255769, 0.00891743135, 0.00649147481, -0.0176864862, 0.00305841211, -0.0042064758, -0.0242892448, -0.0204462912, 0.0200753491, 0.0589054972, 0.0165143125, -0.0236660633, -0.00775267556, 0.0167813897, 0.0109947035, 0.0163956117, -0.0112617817, -0.0131313261, 0.0120259207, 0.0248234, -0.048163034, -0.0254169069, 0.0253130421, 0.0343343392, 0.000816534797, 0.0327615477, -0.00225346908, -0.0318119377, 0.0283547621, 0.00392085081, -0.00380956847, -0.0280431714, -0.0143035017, -0.0355510265, -0.00854649, 0.0161285326, -0.0270193741, -0.00537494104, -0.00418421905, -0.025031127, 0.0208617449, 0.0487268642, -0.023220934, -0.0188141484, 0.0335924551, 0.0148524949, -0.00648405589, -0.0123375114, -0.00439936528, -0.0349871963, -0.00623181602, -0.0111875935, 0.022464212, 0.00671404, 0.00275424, 0.0140141668, 0.00805684738, 0.0722890645, -0.0225680768, -0.0194521677, -0.0253723934, 0.0443942696, 0.0325538181, -0.0387559608, -0.0395571925, 0.0222416483, -0.0108982585, -0.045106478, 0.0363522582, 0.033028625, 0.0229686927, -0.0137545075, 0.0343046635, 0.0041211592, 0.011803356, 0.0158762932, -0.0213217121, 0.00417309115, 0.049112644, 0.0424060225, 0.0279838201, 0.0142367315, -0.0141848, 0.0288592428, -0.00201050262, -0.0134429168, 0.0575997829, 0.000879594823, -0.0134651735, 0.0176271368, -0.016469799, 0.0550180301, 0.0029934973, 0.0287850536, 0.013702576, -0.0184135325, -0.01475605, -0.0382811539, 0.026648432, 0.00616504624, -0.013895466, 0.0389933623, 0.00584974606, -0.0195560325, -0.0279244706, -0.00496319635, -0.0267819706, 0.0112246871, 0.0477772541, -0.00403213315, 0.0174045712, 0.00692547625, -0.0151789226, -0.0603595898, -0.0134280799, -0.00682161283, 0.0324054435, -0.0312777795, -0.0527033582, 0.0130942324, 0.0152531117, -0.0120630153, 0.0162620712, -0.0434149839, -0.0283844378, 0.025224017, 0.00449581025, 0.0275090151, -0.0217816811, 0.00457741693, -0.00130571378, -0.00924386, -0.0375392735, 0.0240963548, -0.0265445691, -0.0182948317, -0.0291708335, -0.0158614554, 0.0413377136, 0.0130497189, -0.0121446224, -0.034749791, 0.0572733544, 0.0116994921, 0.034749791, 0.0232357699, 0.00731867412, 0.0113953203, -0.0171523318, 0.023695739, 0.0219448954, 0.0518427715, 0.0362632349, 0.0232951213, 0.00243523042, 0.0131906774, 0.0173303839, -0.00323089981, 0.00161174044, 0.0223306734, -0.0275535285, 0.0551070571, -0.00820522383, -0.00138917565, 0.0424653739, 0.0370051153, 0.022657102, 0.0171078183, 0.0148005625, -0.0372425206, 0.033889208, 0.0236512255, 0.0373908952, 0.00409148401, -0.0442458913, -0.000948219036, -0.0208023954, 0.0297346637, -0.0125081446, -0.027316127, -0.0131461639, 0.0233396348, 0.0140141668, -0.00309179677, 0.00386150018, 0.0344530381, -0.0167517141, 0.0244672969, -0.00934030488, -0.026752295, 0.039794594, 0.0258175228, -0.0391714126, 0.00999316201, -0.0236512255, 0.00944416877, -0.06053764, -0.0573623814, -0.016084021, 0.00551589904, 0.0184877198, 0.00334218214, -0.00277835131, 0.0494390726, 0.0419905707, -0.0137545075, 0.00714433193, 0.0334144048, -0.035966482, -0.0445723198, -0.0168555789, 0.0212623626, 0.0185767468, 0.00755607663, 0.0332066752, -0.0550773814, 0.00582007086, 0.00338855, 0.0332363509, 0.0128642488, 0.00322719035, 0.0145260664, -0.038934011, 0.00715546, 0.0257136598, 0.0102305645, -0.0307733, -0.00822006166, 0.0325538181, 0.016558826, -0.0280728471, -0.00828683097, -0.0298533663, -0.0100302557, 0.0151269911, -0.020935934, -0.00106367457, 0.00580523349, -0.0244524591, 0.0520505, -0.00372425187, -0.00448839134, 0.000326892128, 0.0387856364, -0.0145483222, -0.0170187932, -0.0280134957, 0.00302873668, 0.00274311192, -0.0101192817, 0.00392826973, -0.0058460366, -0.049290698, 0.000889795716, -0.0121965539, -0.00350725115, 0.0195560325, 0.035016872, -0.0291708335, -0.00977059733, -0.00403955206, -0.0350465439, -0.0149192642, 0.00345161, -0.000296521292, -0.0165143125, 0.0229835305, 0.0576888099, 0.0154608386, -0.0398242697, -0.0193334669, -0.0481333584, -0.00100617856, -0.0142070567, -0.0324944705, 0.0374502465, -0.0119294757, -0.0563237444, 0.00382069661, 0.0181167796, 0.0133390538, -0.00462193, -0.0386966094, 0.0239924919, -0.0238886271, -0.0449581, 0.0117143299, -0.0195708703, -0.00239999103, 0.0276573934, 0.00400616741, -0.0553147867, 0.00428066403, -0.0154014882, -0.0150082903, -0.0153421368, 0.027316127, 0.0170187932, -0.00401358632, -0.0334144048, 0.0337705053, -0.0119220577, -0.0651076362, -0.0318119377, 0.00641728658, -0.017983241, 0.019986324, -0.0174935982, -0.0392901152, 0.00702934, 0.00812361762, -0.0180129148, 0.0182948317, -0.0195263568, -0.0156388897, -0.0194521677, -0.00167665526, 0.0343046635, 0.0282212235, 0.015609215, -0.0259510614, 0.00402842369, -0.00482594781, 0.00136599177, -0.00699224602, -0.0028080265, -0.00639132084, 0.011135661, -0.0408925824, 0.00238515344, -0.0202385634, -0.00224975962, -0.0246156733, -0.00181946764, 0.0187251233, 0.0273606386, -0.00223677675, -0.00111931574, -0.00517092366, -0.0180277526, -0.0115511157, 0.019986324, -0.00821264274, 0.00918450952, -0.0351058953, 0.0442162193, -0.0254465807, -0.0205056425, 0.0106311813, 0.0585197173, 0.0437710881, 0.0139251407, -0.00188994652, -0.00694031408, 0.0187399611, 0.00313445507, 0.0092883734, 0.0169594418, -0.0182058048, -0.00490755495, 0.0139548164, -0.0132722845, 0.00803459156, -0.0308326501, 0.0198527854, -0.0701524392, -0.0228203163, 0.0149192642, 0.00980027206, -0.0329989493, -0.0460560881, -0.0107943956, -0.0367083624, 0.023028044, -0.0116549795, 0.00480740098, 0.0250162892, 0.0106089246, -0.00205872487, -0.00629116641, 0.00441420311, 0.0230577197, 0.00943675, 0.00465531508, 0.00306212134, 0.000133191148, -0.0103344284, 0.018369019, 0.0155498646, -0.0530594625, 0.0300017428, 0.0248975884, -0.0244227834, -0.00325130159, -0.0223900247, -0.0135912942, 0.0278057698, 0.00786395837, 0.0256839842, -0.0190812275, 0.0163214225, 0.00364079, -0.00462193, 0.0297346637, 0.00362780713, 0.0148376571, 0.0326725207, -0.00270045362, -0.0372425206, 0.0445426442, -0.0158169419, 0.0054936423, -0.0388153121, 0.00974092167, 0.0259213857, 0.00613537105, -0.030743625, -0.00600925088, 0.0624368601, -0.0314261578, -0.0122410674, 0.0156240528, 0.0413673893, -0.0359368064, 0.00241853809, -0.0246008355, -0.00397278275, 0.0235621985, -0.00456999848, 0.0397055708, -0.0284586251, 0.047302451, 3.99921228e-05, -0.0233989842, 0.027598042, 0.0192444418, 0.00503738457, 0.0343046635, 0.0113211321, 0.00309179677, 0.0325241424, -0.00193075009, 0.00201977603, -0.0106015056, -0.0336221308, 0.0132722845, -0.00260586338, -0.00310848909, -0.00834618229, -0.020654019, -0.0121297846, -0.00160339428, -0.00778976968, -0.00265223114, -0.00358329411, -0.0374502465, -0.023028044, -0.0273012891, -0.0331176519, 0.0184283704, -0.0165885, -0.0163065847, 0.0263665169, -0.013984492, 0.017731, -0.0224790499, -0.0253278799, -0.00362224295, 0.00270601758, -0.0306842737, 0.0170781426, -0.012189135, 0.0173748955, 0.0228499919, -0.0292598587, -0.039112065, 0.0499138795, 0.0357587524, -0.0404771268, -0.0130052064, -0.0278354436, -0.0026559406, 0.0021032379, -0.0010877857, 0.0334144048, 0.0159059688, 0.0255652834, -0.0119072199, 0.00217186194, 0.0299869049, 0.024170544, -0.0459373854, 0.0223603491, 0.0273012891, 0.0145334853, -0.012463632, 0.0159059688, -0.0207727198, 0.0208914205, 0.00045904002, -0.00419534743, 0.0220635962, -0.038844984, -0.0182503182, 0.0269748606, -0.0285773277, 0.0211585, -0.00345531944, -0.0271677505, 0.00130200444, -0.00241111917, -0.0259362236, -0.0110540548, 0.01399191, 0.0109205153, 0.0133687286, 0.000403398793, -0.00832392555, 0.00292672776, 0.0198379476, -0.0169891175, -0.00596473785, 0.00487046083, 0.00659904769, 0.00382440607, -0.0188883375, -0.0122633232, -0.0224048626, -0.00619843137, 0.000370941416, -0.0135467807, 0.00464789616, -0.0114472527, 0.0107647199, 0.0122484853, 0.0291411579, -0.00298607838, 0.000478514441, -0.041011285, -0.004996581, 0.00612424267, -0.00762655586, 0.00408035563, 0.0279986579, -0.00488529867, 0.0384888835, -0.00164512522, -0.0225977506, 0.043207258, 0.0350465439, 0.0298533663, -0.0241557062, -0.0106163435, 0.00829425, -0.00987446, -0.013799021, -0.0132871214, 0.0155053511, 0.00816813, -0.0711020529, -0.0105718309, -0.0251795035, 0.00883582514, 0.0255356077, 0.00995606743, 0.000351930677, 0.0011805211, 0.0158317797, 0.00838327594, 0.0103492653, 0.00284512062, -0.0085835848, 0.0184135325, 0.015891131, 0.00301018963, 0.0231170692, -0.00891001336, -0.0153866503, -0.0239331406, 0.000736782386, -0.00343306293, 0.00156073598, -0.0131239071, -0.0343343392, 0.0187993106, 0.0269748606, 0.00130756851, -0.00506335031, 0.00533042802, -0.000436783535, 0.024081517, -0.0175677855, -0.0121668782, -0.0161582083, -0.0431775823, -0.0124487942, 0.026648432, 0.0167517141, -0.0018129762, -0.00922902301, -0.00838327594, 0.00810136087, -0.0277167428, 0.0119294757, -0.0192444418, 0.0163065847, -0.00785653945, 0.0206095055, 0.0239183027, -0.00922160409, 0.0393791422, -0.0226274263, 0.0334440805, -0.0186212603, 0.0198676232, -0.0144296214, 0.0619027056, -0.00878389273, 0.0193483047, -0.0292450227, 0.0259510614, 0.0342453122, 0.00126676494, -0.0473321266, 0.00382811553, 0.00354063581, 0.0115807913, -0.00999316201, -0.0309810285, -0.00354434527, 0.00827199407, -0.00827941298, 0.0298830401, -0.00793072768, -0.00831650663, 0.0198824611, -0.00307695917, 0.00510415388, -0.0037836025, -0.0337111577, -0.0094738435, -0.004236151, 0.00710723782, -0.0118404506, -0.0231615826, -0.00164419785, 0.00288221496, -0.00357402069, -0.035877455, -0.0237402506, 0.00358885829, -0.00254651275, -0.0121075278, 0.0124265375, 0.00318267732, -0.00622810656, -0.0185767468, 0.00697740819, -0.00546025764, -0.0302243065, 0.0158169419, -0.0120185018, -0.0105940867, 0.00086382986, -0.0188735, 0.00464789616, 0.014466715, -0.00555299316, -0.00758946128, 0.0034738665, 0.0101934699, -0.000881913234, -0.00215516961, -0.00199195533, -0.0105792498, -0.0373612195, -0.0414860882, 0.0110614728, 0.0502106324, -0.00317896809, -0.00584974606, -0.00962222088, -0.00191034831, 0.0214255769, -0.00622810656, -0.000642192317, 0.0126936156, 0.0343640149, -0.00540461671, -0.0141625432, -0.0219300576, -0.00141235942, -0.0357587524, 0.00521914568, 0.017523272, -0.00309736095, -0.0119517324, 0.0451658294, -0.00218669977, -0.0162620712, -0.0129681118, -0.017508436, -0.007567205, -0.0163065847, 0.0157724284, 0.0195263568, 0.0187844727, -0.0281618722, -0.00509673497, 0.0507447869, -0.0259213857, -0.0427324511, -0.0141551243, 0.0160543453, 0.0154905142, -0.00310663437, 0.00486304192, -0.0154311629, 0.00511899171, 0.0263961907, -0.000253167527, -0.0176864862, 0.0329099223, 0.0257581733, 0.0259955749, 0.0305358972, -0.0133019593, -0.00422502263, -0.0311887544, 0.0280876849, 0.0312777795, 0.0253723934, -0.0219152197, 0.0303133335, 0.00815329235, -0.0107869767, 0.0291856714, -0.0160543453, 0.0120036649, -0.0260104127, 0.0318712853, -0.00864293519, 0.00565314712, 0.0239331406, 0.0236215498, 0.0277167428, 0.00184636097, -0.00584974606, -0.0386075824, -0.00590909692, 0.00879131164, -0.00237773452, 0.00873196125, -0.0025557864, 0.0162027217, -0.010757301, 0.00962222088, -0.0069588609, 0.00772300037, 0.0129681118, 0.00903613307, 0.0104828048, -0.0401507, 0.0122188106, 0.00793814659, 0.0104828048, 0.0308326501, 0.00462563941, -0.0220042448, 0.012189135, -0.0330583, -0.0295862872, -0.0284883, 0.0185470711, -0.0164252855, 0.00971124601, -0.00750785461, -0.0117217489, -0.0346904434, 0.0154163251, 0.0094961, 0.0273458, 0.000738637114, 0.00277835131, 0.0170187932, -0.00459596422, 0.00781944487, 0.015891131, 0.0283992756, 0.0236363877, -0.00140123127, 0.0127603849, 0.00379473064, 0.0364412852, -0.0203424282, 0.0256394707, -0.0192444418, -0.038162455, 0.0213513877, 0.0450768024, 0.0299869049, 0.0322570652, -0.00782686379, 0.0254317448, -0.0239034649, -0.00651744101, 0.0153718125, 0.00206428906, 0.00305841211, 0.017508436, -0.00714433193, -0.0176568124, 0.0243040826, -0.0169297662, 0.00180648477, -0.0509525128, -0.0155350268, 0.0240370035, 0.00648034643, -0.0333847292, 0.015994994, 0.0217371676, 0.00355918286, 0.0214849263, -0.00255393167, -0.00990413595, 0.00729641784, -0.00763397431, 0.0193334669, -0.0279393084, -0.041129984, 0.0118701253, 0.01114308, 0.0145557411, 0.023695739, 0.0145112285, 0.0400023237, 0.0130719757, 0.034749791, 0.0173007082, -0.0201940518, 0.018843824, -0.0324944705, 0.01399191, -0.0195560325, -0.0253575556, 0.00284883, -0.0091770906, -0.00893968809, 0.00391343189, 0.0013854662, -0.0195411947, -0.000101719095, 0.018561909, -0.0062837475, -0.0141848, -0.0579855628, -0.0120778531, -0.00272271014, 0.0148228193, -0.0424060225, -0.0063097137, -0.0476585552, 0.0307139494, -0.00522285514, -0.0177755132, -0.00427324511, 0.0334440805, -0.0337408334, -0.0131684206, -0.00826457515, 0.00808652304, -0.0109872846, 0.00422502263, -0.034927845, -0.0107795577, 0.0248679128, 0.0293488856, -0.0104605481, 0.0465308912, 0.0165736619, 0.0217223298, 0.0118478695, 0.00753011089, 0.0176271368, -0.0277464185, -0.0459670611, -0.00231467444, 0.010378941, 0.00666581746, -0.00224419567, 0.0219448954, -0.00386520964, 0.00638761139, 0.0251943413, 0.0403584279, 0.0130497189, -0.027790932, -0.0088803377, -0.027598042, 0.0448987484, -0.0221229456, 0.00698482711, -0.0226422641, 0.0200011618, -0.000444434205, -0.00263368408, 0.00883582514, -0.0173897333, -0.0244969707, 0.0125081446, -0.0889072418, -0.0020179213, -0.00387262856, 0.0238292776, -0.00896194484, -0.00429921132, -0.0297346637, -0.0126491021, -0.0549883582, 0.00501512783, 0.00369457668, 0.0167813897, -0.0456999838, -0.002641103, 0.0088655, -0.0181612913, 0.00924386, -0.00217186194, -0.0235621985, -0.0168259032, -0.00182595919, 0.00531559065, 0.0126120085, -0.0226125885, -0.00474434067, -0.00493723, 0.0156240528, 0.0135467807, 0.00605005445, -0.0275090151, -0.0161433704, -0.00391714135, 0.020179214, -0.012945856, 0.0127232904, 0.0191405769, -0.0111875935, 0.00288777892, -0.0193631425, -0.0144963907, -0.0037557818, 0.0181909669, 0.0155795394, -0.00451806653, 0.0223603491, 0.0147263743, 0.0214997642, 0.00678822817, 0.0381327793, -0.0479849838, -0.0299127158, 0.0140660992, 0.00382440607, -0.00413599703, 0.0128790867, -0.0404474512, 0.0255801212, 0.0493797213, 0.0335627794, -0.00237958925, -0.00594990049, -0.0122707421, -0.00444758777, -0.0359071307, -0.0270787235, 0.00934030488, 0.030164957, -0.0404474512, -0.0177903511, 0.02418538, -0.0152085982, 0.000390415837, -0.0191999283, -0.0119665703, 0.0204908047, 0.0198082719, 0.00862067845, 0.014474134, -0.0199566483, -0.0152234361, 0.0367677137, 0.011135661, -0.00376505544, -0.00346459285, -0.0327318721, 0.00676597143, 0.0125155635, 0.0166478511, 0.0141922189, 0.00807168521, -0.00600925088, -0.013138745, 0.0143925268, -0.00355361891, 0.00321791694, 0.0174045712, -0.0293785613, -0.0286366772, -0.0207282063, -0.034838818, 0.00758575229, -0.00587942172, 0.0147041176, 0.0152976243, -0.0230873935, -0.00910290238, -0.00605005445, 0.0123523492, -0.00179350178, -0.00254836748, 0.0142515693, 0.00186027121, 0.00623552548, 0.020016, -0.00590909692, 0.00665097963, -0.0209804475, -0.0038837567, 0.00916225277, -0.0301204436, 0.0349871963, 0.00813845452, -0.0235918742, -0.032939598, 0.0131090702, -0.0277612563, 0.0241260305, 0.0342749879, 0.0202534012, 0.0256246328, 0.0299127158, 0.00868002884, 0.0362929106, -0.024081517, -0.0186806098, 0.0106460191, 0.0224197, 0.0165736619, 0.00774525711, -0.00477772532, 0.0147857247, -0.0325241424, 0.00564943766, 0.012560077, 0.0154460007, 0.041129984, 0.0215591155, -0.027123237, -0.0115511157, 0.00155424455, -0.00701450231, -0.0229835305, -0.00529704336, 0.031782262, 0.0185322333, 0.00533413747, 0.0240666792, 0.00742253801, 0.0293934, 0.0507744625, -0.0129161803, -0.00848714, -0.00980769098, 0.0300759301, -0.00341451587, -0.00922160409, -0.00465531508, 0.00989671703, -0.0100599313, 0.0132129332, 0.0047591785, 0.00745592266, 0.03026882, -0.00205687014, 0.0184283704, 0.0518427715, -0.00955545064, -0.00816071127, -0.0310700536, -0.0347201154, 0.000797524059, 0.0146967, -0.00115362788, 0.0139325596, -0.00128902146, 0.0237996019, -0.0240666792, -0.032850571, 0.00901387632, -0.00754123926, -0.0266335942, 0.0199418105, -0.0189031754, 0.00898420159, 0.00918450952, 0.0176271368, 0.0159653183, -0.00450693816, 0.020179214, -0.000965375046, 0.00772300037, -0.000147681058, 0.00622810656, -0.0164994746, 0.0154460007, 0.00647663744, -0.00107943953, -0.000416149909, 0.00408035563, 0.00282286434, -0.0425544, 0.0171820074, -0.0132129332, 0.00630229479, 0.000690414745, -0.010660856, -0.0223009977, 0.0121075278, -0.0111134052, -0.0089916205, -0.00142905186, 0.00115733722, 0.0198824611, -0.00870228559, 0.00824231841, -0.00647663744, 0.00088098587, -0.0209210962, -0.0110540548, -0.00905839, 0.00415825332, 0.031693235, -0.000225810596, -0.0207875576, 0.00280617177, 0.0143035017, -0.0122188106, -0.0209507719, -0.00865035411, 0.00939965528, 0.0219003819, -0.0035313624, -0.00422131317, -0.000911124866, -0.0241408683, 0.0291708335, -7.40723626e-05, -0.00175084348, 0.00181946764, -0.0152531117, -0.0318119377, -0.00207356247, -0.021410739, 0.00121112377, -0.00609085802, -0.000375810021, 0.0246305112, -0.0262181405, -0.00219226372, -0.0292598587, 0.010178633, 0.00948868133, 0.0160988569, 0.00472579384, -0.0341562852, 0.00681419391, -0.0159653183, 0.0124933068, 0.00972608384, 0.0152234361, 0.011706911, 0.0137322517, 0.0120778531, -0.023695739, 0.00916225277, -0.00790105201, -0.0101341195, -0.00343862688, -0.0040358426, 0.00799749698, 0.0315448567, 0.0169000905, 0.00401358632, 0.0139399786, -0.00298978784, 2.85740807e-05, -1.73733897e-05, -0.00139566709, 0.0119591514, -0.0199418105, -0.0080049159, -0.02513499, -0.0169149283, -0.00982994772, -0.00957028847, 0.00627261959, 0.0135467807, -0.012567495, 0.00010224073, 0.0238737892, 0.0175381098, 0.0100970259, -0.00991155487, 0.00342749874, -0.0404771268, -0.00845004525, 0.0201495383, 0.022182297, -0.00570136961, 0.00670291157, -0.00259473524, -0.00775267556, -0.0186806098, 0.00286737713, -0.0172561947, 0.0104234535, -0.00226274272, 0.0136358067, -0.0110540548, -0.0158169419, 0.00557154, 0.0239924919, 0.026648432, -0.0273903143, -0.0252685305, 0.00139752182, -0.0204462912, -0.0351355709, 0.00790847093, 0.023028044, -0.00671033049, 0.00426211674, -0.00590909692, 0.0442162193, 0.0192889534, 0.0157872662, -0.00278020604, -0.00748930732, 0.0217668433, -0.0122188106, -0.00960738305, 0.000769703474, 0.00402842369, -0.0179090519, 0.0331176519, -0.0095851263, -0.0148821697, -0.0185470711, -0.00446984405, -0.00227201614, -0.00108129426, 0.0067474246, -0.00483336672, 0.00909548346, 0.0206243433, -0.0054639671, -0.00732609304, -0.0178793762, -0.00824973732, -0.0298682041, 0.0251646657, -0.00513012, 0.0171078183, 0.0214997642, -0.0205501541, -0.0236215498, 0.00815329235, 0.012189135, -0.00245748693, 0.0315745324, 0.00207170774, -0.0050559314, -0.00676968088, -0.00300462544, -0.00695144245, 0.0232506078, 0.0192296039, -0.00317525864, 0.0184135325, 0.0263220035, 0.0341266096, -0.00645067124, -0.00276907766, -0.0219597314, 0.00757462392, 0.0216333047, -0.00367046543, 0.0116253039, 0.0126861967, -0.021514602, -0.00361667876, -0.00779718859, 0.00650260318, -0.0129384371, -0.0116549795, 0.0295862872, -0.0256543085, -0.0173600577, 0.00239628158, -0.0100599313, 0.0103492653, -0.0165439881, 0.00899903849, 0.0287553798, -0.000158113777, 0.00132240623, -0.0174639225, -0.0135319429, 0.0181464553, -0.0267077833, -0.00930321123, -0.0033162164, -0.00880614948, -0.00436598063, 0.0221377835, 0.00308066863, 0.00790105201, -0.00678451871, -0.0273309648, -0.00285810372, 0.0123968627, -0.00912515912, 0.00321606221, -0.0135245239, 0.00490013603, -0.00830908772, -0.00756349554, -0.0136506446, 0.0116994921, -0.00507076923, 0.00218113558, -0.00906580873, 0.0100747691, 0.0132203521, -0.0164104477, -0.0124413753, -0.00364635419, 0.0227758028, -0.00442162156, -0.00442533102, 0.0332660265, -0.0102676582, 0.00394310709, 0.0218558684, -0.022182297, 0.00297124078, 0.0160691831, 0.0216778163, -0.00862067845, 0.0232654456, 0.00656566303, -0.00466273353, 0.00844262633, 0.0270193741, 0.0231764205, 0.00753382035, -0.0116772363, 0.0164252855, 0.0210101213, 0.00884324312, -0.0260252506, 0.00284883, 0.0190663897, 0.00150138536, -0.00294156559, 0.0261587892, 0.0165291503, -0.0101415385, -0.0210546348, -0.0171671696, -0.0421092696, -0.0028358472, 0.0125749139, 0.0288592428, -0.00247603399, 0.00364820892, -0.0189180132, -0.0106682749, -0.000443275, 0.0189180132, -0.0188883375, -0.00725561427, 0.00902129523, 0.00389488484, -0.0229835305, -0.00068856, 0.0184283704, -0.0047295033, 0.00877647381, 0.02513499, -0.0196302198, 0.00240926445, 0.0112246871, 0.00752269197, 0.014748631, -0.0266039185, 0.00761913694, 0.00850197766, 0.0101267006, -0.0168852527, 0.00278762472, -0.00734093087, 0.000228360819, 0.0244672969, 0.0155647025, -0.00733722141, 0.0281470343, -0.0123226745, 0.0250014514, -0.0213959012, -0.00502254674, -8.54324462e-05, -0.0262181405, 0.0155350268, 0.00387633778, -0.000467154343, 0.011232106, -0.00829425, 0.00626891, -0.0231022313, -0.0269155093, -0.00143832539, -0.00725190481, -0.0191702526, 0.00190663897, 0.00131127797, -0.00224048621, 0.0183096677, 0.0176864862, 0.00780460751, 0.0374799222, -0.00383924367, 0.0116698174, 0.0205798298, -0.0281025227, -0.0189180132, -0.0297495015, -0.00134744472, -0.0183393434, -0.00550848, -0.00433630543, -0.00639873976, 0.0221674591, -0.0100747691, 0.00586458389, -0.00564201921, 0.0565908216, -0.0207133684, 0.00572733535, -0.00467757136, 0.0107127884, 0.0392010882, 0.00229983684, 0.0139028849, -0.0119220577, 0.0038985943, -0.0105792498, 0.00228870846, 0.00998574309, 0.0210843105, 0.00634680782, 0.0111208241, 0.00868002884, -0.00521172676, -0.00039690733, 0.00520801777, -0.0154905142, 0.0173155461, -0.00582749, 0.0151269911, 0.00924386, 0.00474805, -0.00623923494, 0.0161730461, 0.0343640149, -0.00419163797, 0.0123820249, 0.0164846368, -0.0217965171, -0.0115288598, -0.014948939, -0.0120481774, -0.0166181754, 0.00176104438, -0.0192889534, 0.0127752228, -0.00696998928, -0.00994864851, -0.00422502263, 0.0225829147, -0.00337927626, -0.00711465627, 0.0189625248, 0.0175826233, 0.0218113549, 0.0192889534, -0.00736318715, 0.0227164533, -0.000249458099, -0.0074818884, 0.013509687, -0.00329396, 0.0115511157, -0.004236151, 0.0128197353, 0.018561909, 0.0154608386, 0.00488158921, 0.00645438069, -0.0098670423, -0.0171226561, -0.0214255769, -0.00257989764, -0.017612299, 0.0175826233, -0.000897678256, 0.0299572293, 0.0178051889, 0.00292858249, 0.0323164165, -0.0198082719, 0.0156537276, -0.00383553421, 0.0203572661, 0.0189031754, -0.000255485909, 0.00316783972, -0.00408406509, -0.0185173955, -0.002190409, -0.0117588434, -0.0321977139, 0.000208886384, 0.0204017777, 0.0337705053, -0.00593506265, -0.00465902407, 0.00217928085, -0.035462, -0.000621790532, 0.0170929804, 0.0138732092, 0.0334737524, -0.0158614554, 0.0149934525, -0.0123152556, 0.0194966812, -0.00589054963, 0.012567495, -0.00613166159, 0.00174527941, 0.00389488484, 0.00769332517, 0.00264295773, -0.00540461671, 0.00779718859, -0.00270601758, 0.0116698174, -0.00685870694, -0.0137767643, -0.0136877382, -0.00511899171, -0.0101118628, 0.0249124262, -0.0102083078, 0.000274496648, 0.0159653183, 0.00722964853, -0.0116475606, 0.0124265375, -0.0126713589, 0.0158466175, 0.00341266114, 0.0155647025, 0.0135690374, -0.0167072024, -0.0289631058, -0.0109501909, 0.00195300661, 0.00718142604, 0.0106756939, 0.0102750771, 0.0248085614, 0.0111950124, 0.0394681692, 0.000566613046, -0.0074077, 0.0177013241, -0.00289890729, 0.0219152197, 0.00805684738, -0.0107350452, 0.0114027392, 0.00635051727, 0.0102305645, -0.000154868045, -0.00965189561, 0.00712578464, -0.00922902301, 0.0112246871, 0.00668436429, -0.00796040334, 0.0319306366, -0.00632455107, 0.00379844, 0.0205946676, 0.00493723, 0.0159059688, -0.00321791694, -0.00650631264, 0.0148228193, -0.0170039553, 0.0050522224, -0.00055363006, 0.0284586251, 0.00756349554, 0.0154756764, 0.000679286488, 0.00172116817, -0.00939965528, 0.0142293125, -0.0060834391, 0.00819780584, -0.00994864851, 0.015994994, 0.0134651735, 0.00725932373, 0.00469982764, 0.000505871372, 0.00763397431, 0.00277835131, 0.00312703615, 0.0144370403, 0.00952577591, 0.0163807739, 0.00254465826, -0.0127158724, -0.0214255769, 0.0109576099, 0.0107053695, -0.010371522, 0.022182297, -0.00876163598, -0.0289334301, 0.00308437785, 0.0244227834, 0.00263739354, -0.00511528226, 0.0226274263, 0.0106682749, 0.00301204436, -0.0136358067, -0.0143480143, -0.0271529127, -0.00925869774, 0.0030083349, 0.00731496466, 0.00319751515, 0.00445500668, -0.00339411409, -0.0114843464, 0.0121372035, 0.00781944487, -0.00942933094, -0.0217074919, 0.0114546707, -0.00423244154, -0.0191405769, -0.00403955206, -0.00361111481, -0.00345717417, 0.00411003083, -0.00533784693, 0.00352579821, 0.00168592879, 0.00799749698, -0.0067771, -0.0166033376, -0.0229241792, 0.0141773811, 0.0136283878, -0.00283028302, 0.000924571475, 0.00953319483, 0.00401358632, -0.000248994416, 0.00805684738, -0.0144889718, -0.000472950313, -0.0137767643, -0.00655453512, -0.0264258664, 0.017983241, 0.00178144616, 0.00740399072, -0.0247046985, -0.00785653945, 0.00586087443, -0.0118849631, 0.0117440056, 0.00272641936, -0.00252054702, -0.0107276263, -0.0100450935, 0.0208765827, 0.000767385063, -0.0181464553, -0.00573475426, -0.0127381282, 0.00859100372, 0.00970382802, -0.0120555963, -0.0120407585, 0.017033631, -0.0432369336, 0.00985962339, -0.00892485, -0.024274407, 0.010178633, -0.011039217, 0.00232951203, -0.00207170774, -0.00778235123, -0.00498916209, -0.00710352836, 0.0130868135, 0.0313668065, -0.0162472352, 0.00916225277, 0.0257136598, -0.00946642552, -0.0132203521, 0.00770816253, -0.00536752259, 0.0120333396, 0.0204314534, 0.0239034649, 0.0122559043, -0.00355361891, -0.00809394196, -0.011706911, 0.0215887912, -0.00412857812, -0.00684015965, -0.0122484853, -0.0238737892, -0.0170633048, -0.00625036284, 0.00469611818, -0.00938481838, 0.0017582624, 0.00589796854, 0.0175381098, 0.00942191202, -0.0138583714, -0.00339782354, 0.00218299031, 0.00119535869, -0.00191220304, 0.0159653183, 0.00189643807, 0.00620955927, -0.00282471883, -0.0408629067, 0.00326242973, 0.0215294398, -0.00907322764, 0.00281359069, -0.00373167079, -0.0117810993, 0.00988929812, 0.00245006802, -0.0206095055, -0.00227387086, -0.0147857247, -0.00330137857, -0.00421760418, 0.00868744776, 0.00622068765, 0.0111208241, -0.0157279167, 0.00157742843, 0.00816813, 0.0177161619, 0.0011629014, -0.00755978609, -0.0327318721, -0.00132704293, -0.0247046985, 0.000651002221, 0.0196598954, 0.0148005625, -0.0105421552, -8.3968971e-06, 0.0154014882, 0.0199566483, 0.0100599313, -0.0211139861, -0.00320493383, 0.0130274631, -0.00744479429, -0.00021213213, 0.0158466175, -0.0093477238, -0.0136209689, 0.00486675138, -0.000438638235, -0.000254094863, 0.0332363509, 0.00525624, -0.0251943413, -0.00454032281, -0.0138657903, -0.00361296954, 0.0173600577, -0.0142070567, 0.000277278712, 0.0249569397, 0.00476659741, -0.00577926729, -0.0117217489, -0.0058720028, -0.0110614728, 0.0136209689, 0.0342156366, -0.0245711599, 0.00106923864, -0.00309550622, -0.0405364782, 0.00668065483, -0.00617246516, 0.0429401807, 0.00232209335, 0.00401729578, 0.00701821176, -0.0143554332, -0.0219745692, -0.00391714135, 0.0122188106, 0.0244376212, -0.0026985989, -0.0266039185, -0.00415825332, 0.0104902238, 0.00307139498, 0.0194966812, -0.00661388552, 0.0118330317, 0.0128123164, 0.0157724284, 0.0447503738, 0.0160988569, 0.00906580873, 0.0225087255, 0.00974834058, 0.000319009618, 0.0243634321, -0.0168852527, -0.00372981606, 0.0109205153, -0.0139622353, 0.0177755132, -0.0270490479, 0.0238144398, 0.0197340846, -0.00709610945, -0.0129903685, 0.00181854027, 0.0146150924, -0.00735947769, 0.00151251361, -0.00156259071, 0.0154460007, 0.0022033921, -0.000395052601, 0.0160098318, 0.000698297226, 0.0145928357, -0.0191109013, -0.0126194274, 0.00631713262, 0.0108314892, 0.0033607292, -0.00116011931, 0.00867261086, -0.00731125567, -0.00825715624, -0.000793814659, 0.00380585901, 0.00299906149, -0.0212623626, -0.0181464553, -0.0177161619, -0.023710575, 0.00824973732, 0.00904355198, -0.00507076923, -0.0164846368, -0.0177458376, 0.018369019, -0.00522285514, 0.00848714, 0.000324341905, 0.013227771, 0.0251943413, -0.0244672969, 0.0230577197, 0.00476659741, -0.0139399786, 0.0115511157, 0.00749672623, -0.00094868266, 0.0298682041, 0.00508931652, 0.0147337932, -0.00274125719, -0.0139251407, -0.0156685654, -0.00882840622, 0.00383553421, -0.0243782699, -0.020654019, -0.00213476783, 0.0151566667, 0.00423244154, 0.00885808095, 0.00948126242, -0.0172116812, -0.0171374939, 0.008754218, -0.00933288597, 0.0108685838, -0.000624572625, 0.00915483385, 0.0165736619, 0.00779718859, -0.0045032287, -0.0134874303, -0.0305358972, 0.00751898251, 0.0111801745, -0.00136970123, -0.014474134, -0.010467967, -0.0141254496, -0.00402842369, 0.00324202795, -0.00748559786, -0.0093477238, 0.00441791257, 0.0628523156, 0.0150453839, -0.000973721209, 0.00790847093, 0.0265297312, -0.0122262295, 0.000514217536, -0.014948939, 0.00332548982, 0.00565314712, 0.00792330876, -0.0130126253, -0.00441791257, -0.00481482, 0.00230725575, -0.00702563068, 0.00538606942, 0.00729270838, 0.0194818433, -0.0025131281, 0.01513441, 0.00219597318, 0.0190812275, -0.0154756764, -0.00769332517, 0.00205872487, 0.00521172676, 0.00513753854, 0.0208914205, 0.00500770938, 0.0227609649, 0.00284326612, 0.0041508344, 0.0252388548, -0.010757301, -0.0296308, 0.0157427546, 0.00933288597, 0.00148005632, -0.00335887447, 0.0152234361, -0.0131758396, -0.00381327793, 0.00777493231, 0.00626149122, 0.0120333396, -0.00370014063, 0.014474134, 0.000271946425, -0.00293971086, 0.00252240174, 0.00876163598, 0.0112543628, -0.00421018526, -0.00416567223, 0.00365562784, -0.0078936331, -0.0108389081, 0.00594619103, 0.0165291503, -0.00334218214, 0.0152976243, 0.000847137475, -0.00530446228, -0.0171226561, 0.0206243433, 0.0178200267, 0.00415825332, -0.00433259597, 0.00444016885, -0.000612517, -3.42541207e-05, 0.0099263927, 0.00979285315, -0.00908806454, 0.0287850536, 0.00413228758, 0.0139399786, 0.0129977874, -0.0255801212, -0.00334403687, -0.0175677855, -0.0115807913, -0.015802104, -0.00428808294, 0.00704788696, 0.013517105, 0.0151715046, -0.0149192642, -0.000406876381, 0.0103418473, 0.000726117811, -0.00745963212, -1.09036489e-06, 0.00380214956, -0.00537123159, 0.00156166335, 0.011039217, -0.00991155487, -0.0306842737, -0.00859100372, -0.000369550398, -0.00844262633, 0.0112172682, 0.000873567071, 0.0116772363, -0.0126268463, -0.00306026684, 0.00596473785, 0.0137619264, 0.016944604, 0.0108982585, -0.00935514271, 0.014466715, -0.00558266835, -0.00131684204, -0.00542687299, 0.00960738305, -0.0156537276, 0.00649889372, -0.00110726012, -0.0155943772, 0.0154460007, -0.00879873056, -0.0146521861, -0.00191776711, -0.00659533869, 0.00491497386, 0.0104457103, 0.00428808294, 0.0212623626, 0.014948939, 0.00306768552, -0.0207727198, 0.0030083349, 0.00316598499, -0.0282805748, 0.010371522, -0.0109576099, 0.00689580105, 0.0127603849, -0.024749212, -0.00341451587, 0.0103195906, -0.00517092366, 0.0149711957, 0.00447726296, -0.0243634321, 0.0107202074, 0.0141922189, -0.000905560737, -0.0119146388, -0.000736318703, 0.0120036649, 0.00690322, 0.0181464553, -0.0159208067, 0.019422492, -0.0144518781, -0.0100599313, -0.0231764205, 0.00649889372, 0.0101118628, 0.00686983531, 0.0261884648, 0.00757091446, 0.00314001925, 0.0116030481, 0.0172858704, 0.00265779532, -0.0114843464, 0.0022182297, 0.0343046635, 0.0148302382, -0.0187547989, -0.0160543453, 0.0188586619, -0.0427918024, -0.0112988753, 0.00133353437, 0.0154608386, 0.00701079285, -0.00382069661, 0.0113804825, 0.0171226561, -0.00991897378, -0.00441049365, -0.00760429911, 0.0117736803, 0.00491868332, -0.000455098751, -0.000817462162, -0.00714433193, -0.00330508803, -0.0136432257, 0.0183096677, 0.0122559043, 0.0421092696, -0.0235918742, 0.00599812297, 0.008754218, 0.00395052601, -0.034749791, -0.0115436967, -0.0305655729, -0.0210991483, 0.0241557062, 0.0167962275, -0.00840553269, -0.0197489206, 0.00473692175, -0.00616133725, 0.00908064563, 0.006042636, -0.0121520413, -0.00204759673, 0.012374606, -0.00959254522, 0.0182503182, 0.0104457103, 0.0109205153, 0.00612053368, 0.00609827694, -0.004996581, 0.0068327412, 0.0143776899, 0.00139752182, -0.032850571, -0.00511899171, -0.019897297, -0.0241408683, 0.0165736619, -0.0197489206, 0.0248085614, 0.00402842369, -0.00442533102, 0.000143623882, 0.0257878471, -0.00555670261, 0.0123375114, -0.00393568864, 0.0314855091, 0.0257284977, -0.00246676058, -0.0110688917, 0.00261513703, -0.0258323606, -0.000382765167, -0.0012203973, 0.017419409, 0.00639132084, 0.0170039553, 0.000647292763, -0.00398762, 0.00883582514, -0.00203461363, 0.0167813897, 0.0134132421, -0.00459225476, -0.012374606, 0.0221526213, -0.025609795, -0.0167962275, 0.0178645384, 0.0107943956, -0.0198527854, -0.0176568124, 0.01209269, -0.00703304959, -0.00851681549, 0.0368270651, 0.0124042807, -0.0030231725, 0.00497432426, 0.0243931077, 0.00754123926, 0.00520801777, -0.0192592796, -2.29954694e-05, -0.0164846368, 0.0286960285, -0.0105569931, 0.00186212594, -0.00569395069, 0.0148005625, 0.0121742971, -0.0167517141, 0.0111208241, -0.00988929812, -0.00183616008, 0.00905839, -0.00672516786, -0.00526365871, 0.0149192642, -0.00668807374, -0.012567495, 0.00504851295, -0.00735947769, 0.0225829147, 0.00678451871, -0.0296604764, 0.0259510614, 0.0278799571, 0.000457185291, 0.0060723112, -0.011988827, -0.00552702742, 0.018458046, -0.0255652834, -0.00790105201, -0.0109353531, -0.00579410512, 0.00360740535, -0.0284437891, 0.0115956292, 0.0249569397, 0.00775267556, 0.0205501541, 0.00788621418, -0.00129087619, 0.00463676779, 0.00913257804, 0.0229538549, 0.00763397431, 0.00241111917, 0.00184357888, 0.025120154, 0.0248827506, 0.00804201048, -0.00403955206, -0.0190663897, 0.0253723934, -0.0250162892, -0.0250904784, -0.00890259445, 0.012189135, -0.0141773811, 0.00291930907, -0.00262255594, -0.00726674264, 0.0283399243, 0.0121075278, 0.00686612586, -0.00835360121, -0.000122178826, 0.00605376391, -0.00955545064, 0.00589425908, -0.0132500278, 0.00906580873, -0.00230540102, 0.0096444767, -2.2256485e-05, -0.0135912942, -0.00230169157, 0.00262441067, 0.00384666258, 0.0112098502, -0.00997090526, 0.00169242022, 0.00172673236, 0.0152085982, -0.000332224416, 0.00913999695, 0.0116846552, 0.00597586622, 0.0258323606, -0.0243782699, -0.0136654824, 0.00599070406, 0.00620955927, 0.0107498821, -0.00684757857, 0.0114620896, -0.0180425905, -0.0225235634, -0.00232580281, 0.0139103029, -0.0125971707, -0.00395794492, 0.0112766195, 0.0110169603, -0.00698853657, 0.0117514245, -0.00508560706, 0.00321049802, 0.00252982043, -0.0129235992, 0.036945764, -0.0149860336, 0.0207875576, 0.00384295313, -0.00873938, 0.018932851, 0.000217928085, -0.0271084, -0.0124117, 0.00991155487, -0.0215887912, -0.0245266464, 0.0198824611, 0.00517092366, -0.0209952854, 0.0248827506, -0.00957770739, 0.00609456748, -0.00984478556, -0.024556322, -0.00355918286, -0.0116846552, -0.0028933431, 0.0101415385, -0.0149415201, -0.00815329235, 0.000898141938, 0.00161637727, 0.0274941791, -0.000621326908, 0.00288221496, 0.0190812275, 0.0025984447, -0.00263739354, -0.00868744776, -0.0118775442, -0.00658050086, 0.00423244154, 0.00590538746, 0.0301797949, 0.00857616588, -0.020372102, 0.000330833369, 0.012849411, 0.0155350268, -0.024081517, -0.00927353557, 0.0011703202, 0.0168110654, -0.00754494872, -0.00809394196, -0.0145557411, -0.00926611666, -0.0106386, -0.0183986947, 0.0156537276, -0.00331065222, 0.012374606, -0.00441420311, 0.0164994746, -0.00770816253, -0.0125155635, 0.00928095449, 0.0046182205, -0.0127084535, 0.00571620744, 0.0105347363, -0.0154905142, 0.00722964853, 9.47639419e-05, 0.00658421032, -0.020179214, -0.00871712342, 0.0107127884, 0.0153421368, -0.00712578464, 0.00863551628, 0.00892485, 0.00249643577, -0.00236104219, -0.0190812275, -0.00371312373, 0.0071294941, -0.00210509263, 0.00252982043, -0.00630229479, -0.025031127, -0.0228648297, -0.0263961907, 0.0245711599, 0.00322348089, 0.014474134, 0.005901678, -0.0301056057, 0.000888404727, -0.0150528029, 0.0133687286, 0.0123078367, 0.0106311813, 0.00554557424, 0.0211881734, 0.0163807739, -0.0112469438, 0.000176660848, 0.00479998207, -0.00879873056, 0.0013780474, 0.020654019, -0.00331436167, -0.0125007257, 0.012278161, 0.0172265191, -0.0744256899, -0.011135661, 0.0207430441, 0.0320493393, -0.0125007257, -0.018843824, -0.0096444767, -0.0162917469, -0.00850939658, -0.011232106, 0.00717029767, -0.000848528522, 0.0127232904, 0.012945856, 0.00247974345, -0.0196747333, 0.00487417029, -0.0010729481, -0.000647756446, 0.00600183243, -0.0106905317, -0.00950351916, -0.00515979528, -0.0161433704, 0.0122707421, -0.00504109403, 0.0187399611, 0.00460709259, -0.0117662624, -0.00155517191, -0.00139473972, 0.00761171803, -0.000279597094, 0.00600183243, -0.0308920015, -0.00833876338, 0.00390601321, -0.0265890807, 0.0135022681, -0.0233693104, -0.00698111765, -0.00359071302, -0.0160395075, -0.0136432257, 0.0247343741, 0.00994123053, -0.00174157, -0.00295825792, -0.0114398338, 0.00100896065, 0.000764603, 0.0246750228, -0.0112098502, -0.00336443866, -0.000384851737, 0.0102379834, 5.80320466e-06, -0.0172265191, -0.0091770906, 0.00782686379, -0.00914741587, -0.0421389453, 0.00610198639, 0.0140512614, -0.000589796866, 0.0281915478, -0.0197934341, -0.00262626517, 0.00623181602, 0.0104976427, 0.00479627261, 0.0125007257, -0.0157575924, -0.0216481406, 0.0126787778, -0.00128716673, -0.0127232904, -0.00213105837, 0.0161878839, 0.00874679908, 0.0214700904, 0.00126212824, -0.00735947769, -0.00443645939, -0.00840553269, 0.00583861815, 0.010660856, 0.00558637781, 0.0196450576, -0.0204017777, 0.0159653183, 0.00228685397, -0.00524882134, 0.00413970649, 0.0159504805, 0.0214255769, -0.0191999283, -0.00792330876, -0.00242039282, 0.0150008714, -0.00864293519, 0.00434372388, 0.0251943413, -0.0129384371, 0.0304765478, -0.0150453839, 0.00393568864, -0.00356845651, 0.0210101213, -0.00372981606, 0.0239776541, -0.0156834032, 0.00473321276, -0.00934030488, 0.00370014063, 0.0187547989, -0.00398020167, 0.00454032281, -0.0130200442, 0.0145705789, -0.000434928806, 0.00102194364, -0.0173303839, 0.000491497398, -0.00164327049, -0.0114620896, 0.00894710701, 5.92926663e-05, 0.00290632597, -0.00971866492, -0.00212734914, 0.0100525124, 0.00953319483, -0.0156537276, 0.00317340391, -0.0183393434, 0.000824880961, 0.000643119682, -0.00645067124, 0.0102454023, 0.00190849358, -0.00200864789, -0.00291930907, -0.00553444587, -0.00654340675, 0.00413970649, -0.000456026115, 0.0149118453, 0.00564572867, -0.00577555783, -0.0214997642, -0.00507076923, -0.000525809475, 0.00521543622, -0.0203275904, -0.0176568124, 0.0178645384, 0.00747446949, 0.00792330876, -0.0153718125, 0.0121668782, -0.00428066403, -0.0060834391, 0.00859842263, -0.00662130443, 0.0166478511, -0.00934030488, -0.0227164533, 0.00312703615, -0.00885066204, 0.0156982411, 0.00317154918, 0.0184432082, 0.00602779817, -0.00297124078, -0.00101081538, -0.0118478695, 0.00158855668, -0.00147449214, -0.00676597143, 0.019897297, 0.000506798737, -0.000932917697, 0.00219411845, 0.0230428819, -0.00722222961, 0.00806426629, 0.0135022681, -0.00714062247, 8.375162e-05, 0.0134503357, 0.0247640498, 0.0129681118, 0.00149860338, -0.0210991483, -0.00449210079, 0.001332607, 0.0247195363, -0.016469799, -0.00567169441, -0.0297198277, -0.0118181938, 0.000565685681, 0.00010751505, 0.00848714, -0.00421018526, -0.00937739946, 0.0261884648, 0.00552702742, -0.0267819706, -0.00836102, -0.0404771268, -0.00818296801, 0.0142293125, -0.000257804291, 0.00455145119, 0.00241482863, 0.00504480349, -0.0113804825, 0.0035462, 0.0283696, 0.0304171965, 0.0272419378, 0.00573846372, 0.0193779804, -0.000143392041, 0.00363708055, -0.00354805472, -0.0260549262, -0.0124784699, -0.0148005625, -0.011617885, 0.0311590787, -0.014466715, -0.000495206797, 0.00224975962, 0.00532671902, 0.000567540352, -0.00476288795, 0.0147337932, 0.0190070383, 0.016944604, -0.00854649, -0.00550477067, -0.00457370793, 0.00796040334, 0.0114398338, -0.00842037052, 0.0182948317, 0.0313371308, -0.0039393981, 0.0006352372, -0.0059869946, 0.0177013241, 0.0103047527, -0.00441420311, -0.0278799571, 0.0208320711, -0.00152085978, 0.0244969707, 0.00507447869, 0.00186769, -0.018843824, -0.0272567756, 0.00843520835, -0.0187251233, 0.000206799843, -0.0198379476, 0.0120110828, -0.00808652304, 0.00276907766, -0.0158466175, -0.0189625248, -0.0115659535, -0.000757184171, -0.00517834211, -0.00489271758, 0.0198231097, -0.0137174139, -0.010089607, -0.0135838753, -0.0162323974, -0.0124858879, 0.0309810285, -0.00379102142, 0.0052933339, 0.0194521677, -0.023606712, -0.00521914568, -0.0174342468, 0.0083016688, -0.00674371514, -0.00724077644, -0.00416567223, -0.0116994921, -0.00564572867, -0.00612053368, 0.0236660633, 0.00950351916, -0.0301204436, 0.00628745696, 0.0286663529, 0.00898420159, -0.00732980249, -0.0258620363, -0.00701821176, -0.00150416745, -0.0151863415, -0.00426211674, -0.00387262856, -0.0312777795, 0.018369019, -0.0042917924, 0.0081755491, -0.00338298571, -0.00676968088, -0.00235176855, 0.00287108659, -0.000320400664, -0.0178645384, 0.00879873056, -0.0148895886, -0.00176104438, 0.0119072199, 0.0107869767, -0.00808652304, -0.0228796676, 0.00991897378, -0.0110985674, 0.0126416832, -0.00198639138, -0.00641728658, -0.00299535203, 0.00687725376, -0.0209804475, -0.00903613307, 0.00356660178, -0.0289334301, 0.00395052601, -0.00689951051, -0.0108463271, 2.03727977e-05, -0.0171078183, -0.020090187, 0.0118330317, 0.00392456027, -0.0171078183, -0.00653598784, 0.0326428451, -0.0011731023, 0.00211251131, -0.0149860336, 0.00392826973, 0.0100154188, 0.00310848909, -0.0105421552, -0.0178497, -0.0188883375, 0.0084129516, 0.00977801625, 0.0249421019, -0.0157279167, -0.0168555789, -0.00179999322, 0.00728899892, -0.0321086906, 0.0317525864, 0.00670291157, -0.0273309648, 0.00597957568, 0.0259065498, -0.0191850904, -0.0203572661, 0.0657604933, 0.0171671696, 0.0353729725, 0.000758111535, 0.0282063857, -0.00310107018, -0.00118979462, 0.0417531654, -0.0325834937, 0.00582007086, -0.0106163435, -0.00412857812, 0.00897678267, 0.00356289232, 0.010564412, -0.00334032741, -0.00178422825, -0.0301797949, -0.0105792498, -0.0242892448, -0.0116698174, -0.0208617449, -0.008754218, -0.0127381282, 0.0188586619, 0.00161915936, -0.00658421032, -0.000216768894, -0.0256839842, 0.000936163415, 0.0110317981, 0.0207430441, -0.00379287614, 0.00913257804, -0.0314558335, -0.0209210962, -0.0274941791, -0.0132648656, 0.00804201048, 0.0239479784, 0.00762655586, 0.00366304652, 0.018369019, -0.00731125567, 0.0173897333, -0.0121742971, -0.00453290436, -0.0114695085, 0.00602037925, -0.012463632, -0.00154960784, -0.0300759301, -0.0152085982, -0.0374502465, -0.00479998207, 0.0164846368, 0.0182651561, 0.00689580105, -0.00905839, 0.0231764205, -0.011417577, -0.013895466, -0.022939017, -0.0223158356, 0.0120481774, -0.00421389472, -0.00288406946, 0.0170187932, -0.0252388548, -0.00776009448, 0.00871712342, -0.0103270095, 0.00599441351, -0.0244079456, 0.0115436967, 0.00507076923, -0.0121668782, -0.00522656459, -0.00474805, -0.0106015056, 0.00574588263, 0.00452919491, -0.00020622024, -0.00378174777, -0.000489642669, -0.0029934973, -0.0131535828, -0.0119072199, -0.021989407, -0.00318824151, 0.00762655586, 0.00593506265, 0.00373352552, 0.00994123053, -0.0028080265, -0.0117736803, -0.0360258296, 0.00724819535, 0.0123004178, 0.00846488308, 0.0233693104, 0.00851681549, -0.00730383676, 0.00263924827, -0.0165736619, 0.0198824611, 0.0190960653, 0.00538236, 0.00592022529, -0.00272271014, 0.0122188106, -0.0206243433, 0.0117365867, 0.022182297, -0.0165143125, -0.0053489753, -0.00882098731, -0.0104457103, 0.00449951924, 0.00021491418, 0.00646550907, 0.0124562131, -0.0405068025, 0.0235176869, -0.00603892654, -0.0159653183, 0.0356697254, 0.0025409488, 0.021603629, 0.000602316111, 0.00893226918, 0.00651744101, 0.00679193763, -0.0204017777, -0.00352023402, 0.000101661135, -0.00250941864, 0.0148970075, -0.00895452593, 0.0251943413, 0.00851681549, -0.00169520231, -0.0155943772, 0.0245266464, -0.00248716213, -0.000245748699, -0.00910290238, -0.0102676582, -0.0169742797, 0.0168110654, 0.00802717265, 0.0240666792, 0.0168110654, -0.00703675859, 0.0104160355, 0.00721110124, 0.0242595691, -0.0109279342, 0.0346607678, 0.0101415385, -0.00249458104, 0.0038985943, -0.0056346003, -0.0162620712, -0.00335702, -0.00943675, 0.017894214, 0.00903613307, 0.0135319429, 0.0272864513, -0.023220934, 0.0190070383, -0.0011879399, 0.0126787778, -0.00494835852, 0.0159801561, 0.0106460191, -0.00121483312, -0.0138880471, -0.0306842737, -0.0141477054, 0.019422492, 0.0054639671, 0.0379844, 4.19844855e-06, -0.00452919491, -0.00367417489, 0.0190218762, 0.0131980954, 0.0119814081, -0.00748559786, 0.0040358426, 0.00482965726, -0.00500029046, -0.0264407042, -0.0158762932, 0.0220487583, 0.0209656097, -0.0262478143, 0.0173748955, 0.012849411, 0.014466715, 0.00552702742, 0.0164994746, -0.0124487942, 0.00548251439, 0.0041508344, -0.00169798441, -0.0073854439, -0.00589054963, -0.0165885]
07 Jul, 2022
multiset find() function in C++ STL 07 Jul, 2022 The multiset::find() is a built-in function in C++ STL which returns an iterator pointing to the lower_bound of the element which is searched in the multiset container. If the element is not found, then the iterator points to the position past the last element in the set. Syntax: multiset_name.find(element) Parameters: The function accepts one mandatory parameter element which specifies the element to be searched in the multiset container. Return Value: The function returns an iterator which points to the element which is searched in the multiset container. If the element is not found, then the iterator points to the position just after the last element in the multiset. Time complexity: If n is the size of multiset, then the time complexity of multiset::find() function is logarithmic order of n i.e. O(log(n)). Below program illustrates the above function. Program 1: CPP // CPP program to demonstrate the // multiset::find() function #include <bits/stdc++.h> using namespace std; int main() { // Initialize multiset multiset<int> s; s.insert(1); s.insert(4); s.insert(2); s.insert(5); s.insert(3); s.insert(3); s.insert(3); s.insert(5); cout << "The set elements are: "; for (auto it = s.begin(); it != s.end(); it++) cout << *it << " "; // iterator pointing to // position where 2 is auto pos = s.find(3); // prints the set elements cout << "\nThe set elements after 3 are: "; for (auto it = pos; it != s.end(); it++) cout << *it << " "; return 0; } Output: The set elements are: 1 2 3 3 3 4 5 5 The set elements after 3 are: 3 3 3 4 5 5 Program 2: CPP // CPP program to demonstrate the // multiset::find() function #include <bits/stdc++.h> using namespace std; int main() { // Initialize multiset multiset<char> s; s.insert('a'); s.insert('a'); s.insert('a'); s.insert('b'); s.insert('c'); s.insert('a'); s.insert('a'); s.insert('c'); cout << "The set elements are: "; for (auto it = s.begin(); it != s.end(); it++) cout << *it << " "; // iterator pointing to // position where 2 is auto pos = s.find('b'); // prints the set elements cout << "\nThe set elements after b are: "; for (auto it = pos; it != s.end(); it++) cout << *it << " "; return 0; } Output: The set elements are: a a a a a b c c The set elements after b are: b c c Learn C++ Online – Master everything from basics to advanced concepts. Apply your knowledge with practical exercises and boost your skills. Take the Three 90 Challenge: finish 90% in 90 days for a 90% refund. Start now and level up your C++ programming!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum/Algorithm for Dynamic Time out timer Calculation/Difference between Round trip time (RTT) and Time to live (TTL)/Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms/Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm/Round Robin Scheduling Algorithm with Different Arrival Time/Selfish Round Robin CPU Scheduling/Find the order of execution of given N processes in Round Robin Scheduling/Calculate server loads using Round Robin Scheduling/set::lower_bound() Function in C++ STL/Implementation of lower_bound() and upper_bound() in List of Pairs in C++/Difference between std::set::lower_bound and std::lower_bound in C++/Difference between std::set vs std::vector in C++ STL/std::minmax() and std::minmax_element() in C++ STL/std::rotate vs std::rotate_copy in C++ STL/std::bitset::to_ullong and std::bitset::to_ulong in C++ STL/std::upper_bound and std::lower_bound for Vector in C++ STL/std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++/std::string::append vs std::string::push_back() vs Operator += in C++/Vector push_back() in C++ STL/vector :: cbegin() and vector :: cend() in C++ STL/unordered_multiset cend() function in C++ STL/unordered_multiset bucket() function in C++ STL/unordered_multiset emplace_hint() function in C++ STL/unordered_multiset end() function in C++ STL/unordered_multiset size() in C++ STL/unordered_multiset emplace() function in C++ STL/unordered_multiset find() function in C++STL/unordered_multiset erase() function in C++ STL/unordered_multiset clear() function in C++ STL/unordered_multiset swap() function in C++ STL/unordered_multiset bucket_size() function in C++ STL/unordered_multiset bucket_count() function in C++ STL/unordered_set bucket_count() function in C++ STL/unordered_set cbegin() function in C++ STL/array::cbegin() and array::cend() in C++ STL/array::rbegin() and array::rend() in C++ STL/multimap rbegin in C++ STL/vector rbegin() and rend() Functions in C++ STL/multiset rbegin() and rend() function in C++ STL/map rbegin() function in C++ STL/map upper_bound() function in C++ STL/Set upper_bound() in C++ STL/multimap upper_bound() function in C++ STL/multimap empty() function in C++ STL/multimap value_comp() function in C++ STL/multimap swap() function in C++ STL/multimap::swap() in C++ STL/multimap equal_range() in C++ STL/unordered_set equal_range in C++ STL/set vs unordered_set in C++ STL/unordered_set count() function in C++ STL/unordered_set bucket() function in C++ STL/unordered_set emplace() function in C++ STL/set::emplace() in C++ STL/multiset::emplace() in C++ STL/multiset find() function in C++ STL
https://www.geeksforgeeks.org/multiset-find-function-in-c-stl/?ref=next_article
PHP
multiset find() function in C++ STL
unordered_multiset clear() function in C++ STL, What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, jQWidgets jqxTreeMap width Property, Round Robin Scheduling Algorithm with Different Arrival Time, Difference between Flow and TypeScript, unordered_multiset emplace() function in C++ STL, jQWidgets jqxTree destroy() Method, unordered_set bucket_count() function in C++ STL, jQWidgets jqxTree collapseAll() Method, Find the order of execution of given N processes in Round Robin Scheduling, jQWidgets jqxScrollView buttonsOffset Property, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Vector push_back() in C++ STL, jQWidgets jqxListBox enableHover Property, Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm, std::rotate vs std::rotate_copy in C++ STL, Selfish Round Robin CPU Scheduling, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxSlider buttonsPosition Property, std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++, std::upper_bound and std::lower_bound for Vector in C++ STL, Difference between Round trip time (RTT) and Time to live (TTL), jQWidgets jqxSlider rtl Property, Difference between std::set::lower_bound and std::lower_bound in C++, jQWidgets jqxTooltip opacity Property, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, unordered_multiset erase() function in C++ STL, multiset find() function in C++ STL, set vs unordered_set in C++ STL, jQWidgets jqxToolBar height Property, PHP, std::minmax() and std::minmax_element() in C++ STL, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, unordered_set emplace() function in C++ STL, unordered_set bucket() function in C++ STL, map rbegin() function in C++ STL, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, map upper_bound() function in C++ STL, Node.js date-and-time Date.transform() Method, unordered_multiset size() in C++ STL, TypeScript Optional Parameters, jQWidgets jqxToolBar theme Property, Difference between std::set vs std::vector in C++ STL, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, Steps to Diagnose and Resolve a Slow Network, How to use Optional Chaining with Arrays and Functions in TypeScript ?, Calculate server loads using Round Robin Scheduling, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, jQWidgets jqxScrollView showButtons Property, set::emplace() in C++ STL, Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms, jQWidgets jqxScrollView disabled Property, jQWidgets jqxSplitter destroy() Method, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, set::lower_bound() Function in C++ STL, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, jQWidgets jqxTree collapseItem() Method, multimap upper_bound() function in C++ STL, std::string::append vs std::string::push_back() vs Operator += in C++, unordered_multiset swap() function in C++ STL, unordered_multiset cend() function in C++ STL, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), Set upper_bound() in C++ STL, jQWidgets jqxSortable opacity Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, multimap rbegin in C++ STL, vector :: cbegin() and vector :: cend() in C++ STL, multimap swap() function in C++ STL, jQWidgets jqxSlider height Property, jQWidgets jqxSwitchButton onLabel Property, unordered_multiset bucket_size() function in C++ STL, unordered_set cbegin() function in C++ STL, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, jQWidgets jqxToolBar tools Property, multimap empty() function in C++ STL, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTree width Property, multimap::swap() in C++ STL, multimap equal_range() in C++ STL, Implementation of lower_bound() and upper_bound() in List of Pairs in C++, jQWidgets jqxTree clear() Method, TLS Handshake?, multiset rbegin() and rend() function in C++ STL, Algorithm for Dynamic Time out timer Calculation, Adhoc TCP, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, jQWidgets jqxTabs position Property, Differences between Wireless Adhoc Network and Wireless Sensor Network, jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, std::bitset::to_ullong and std::bitset::to_ulong in C++ STL, unordered_multiset emplace_hint() function in C++ STL, unordered_multiset bucket_count() function in C++ STL, unordered_multiset find() function in C++STL, unordered_multiset bucket() function in C++ STL, Impact of Three-way Handshake and Slow Start Algorithm, array::rbegin() and array::rend() in C++ STL, multimap value_comp() function in C++ STL, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, multiset::emplace() in C++ STL, unordered_set equal_range in C++ STL, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, unordered_set count() function in C++ STL, vector rbegin() and rend() Functions in C++ STL, array::cbegin() and array::cend() in C++ STL, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, unordered_multiset end() function in C++ STL, How to Sort an Array Having Optional Properties in TypeScript ?
GeeksforGeeks
[-0.0187100954, 0.0214587059, -0.01068052, 0.0270256922, 0.0137779405, -0.0256165061, -0.0116432318, 0.0203006621, -0.00216784561, 0.0402106568, -0.0206355192, 0.0226307046, 0.00111793168, -0.0153196752, -0.00245561264, 0.00269454671, 0.0365830474, 0.0163242444, -0.0196309499, -0.0269838348, -0.0267047882, 0.0152499136, -0.025379315, 0.00227248832, -0.0279046893, 0.0136384172, -0.0249607451, 0.008134217, -0.0197146628, -0.00651574507, 0.0114130182, 0.0317555368, -0.000651836104, -0.0063552931, -0.0115943989, 0.0263280757, 0.0388154238, 0.0318950601, -0.0203285664, -0.00115717261, 0.00461822608, 0.00755519466, 0.0427778885, -0.0107642347, -0.00837140717, 0.0346576236, 0.0177473836, -0.0382015221, -0.0181659535, -0.00256374339, 0.0287976395, 0.0246537942, 0.0502563454, 0.00504028471, 0.0475495905, 0.0150685329, 0.0220586583, 0.0344343893, -0.0379503779, -0.0411873236, -0.0155010559, -0.0220447052, 0.0196867585, -0.0175660029, 0.0133733228, -0.000531933154, -0.0483588278, 0.0505353957, 0.0173148606, -0.0109874718, -0.018654285, 0.0453172177, 0.00942480937, 0.0014527879, -0.0230074171, -0.0175799541, -0.0598834641, 0.000531933154, -0.016924195, 0.0170079079, 0.00233527366, 0.00298929, 0.00539606949, -0.0119083263, 0.036862094, -0.0121594686, -0.00890857261, -0.0340995304, 0.0344622917, 0.0503958687, -0.0247654133, -0.0177613348, 0.0125152534, 0.0185705721, -0.043391794, 0.027876785, 0.0381457098, 0.0270535965, -0.0239143204, 0.0617809854, 0.0132268229, -0.00299452199, -0.00573441386, 0.00894345343, 0.0262304079, 0.0120478496, 0.000424238504, 0.01529177, 0.00154347823, -0.00604485348, 0.0482751131, 0.019854188, -0.00168038555, 0.0675293505, 0.00869231112, -0.00343576493, 0.0199937113, -0.0171055757, 0.0417454168, -0.0140011786, 0.000113471804, 0.0128640626, 0.0241794139, 0.00745055219, -0.0484146364, 0.0168823376, 0.0201332346, 0.0176078603, 0.00486588059, 0.00802957453, 0.00489029707, -0.0375597142, -0.00737381447, -0.0330949612, 0.00832955, 0.0370295234, 0.00744357612, 0.0227423217, 0.0069796606, -0.0471031182, -0.0583208, -0.0198262818, 0.000917366706, 0.0514283441, -0.0402664691, -0.0376155227, -0.0197286159, 0.0264396947, 0.0112944236, 0.000266620598, -0.015724292, 0.00325961667, 0.0117897317, -0.00798074156, 0.016589338, 0.00111008342, 0.0125919916, 0.00574139, 0.0282116421, -0.0321741067, 0.0308904927, -0.022993464, 0.0116223032, -0.00821095519, 0.0115246372, 0.0499493964, -0.00965502299, -0.0128431339, -0.0657992586, 0.0465729274, 0.00398688251, 0.0131710134, 0.00175363536, 0.00474728551, -0.0137709649, -0.00895042904, 0.0383410454, 0.0205239, 0.0210819934, 0.00992011745, 0.0128989434, 0.00830164552, 0.0217796098, -0.00805050321, -0.000497052271, 1.42112267e-05, 0.031030016, -0.00921552349, 0.0578185171, 0.0172869563, -0.0281837378, 0.0222539902, 0.0522375815, 0.0314206816, 0.0423593186, 0.0356342904, -0.0468240716, 0.0118525168, 0.00469845207, 0.0372527614, 0.0117129935, -0.0223795623, -0.00414035842, 0.0362761, 0.0281418804, 0.000309349649, -0.0134709897, -0.00717848167, 0.0334577225, -0.00853185914, -0.0105619254, 0.0118664699, 0.0299696382, -0.0146360099, 0.0348250531, 0.020607613, -0.0335693434, 0.0464334041, 0.0111897811, -0.018445, 0.00772959925, -0.0365830474, 0.0131361326, -0.03689, -0.0536328144, -0.00504028471, 0.0131221805, 0.036136575, 0.010359616, -0.0185287148, 0.0375597142, 0.0225330368, -0.0375039019, 0.0123548014, 0.0194635224, -0.021486612, -0.0445358865, -0.0207331851, 0.0126547767, 0.0165753867, 0.023970129, 0.0316160135, -0.0312811583, 0.0199937113, 0.031030016, 0.0277791191, -0.00016176, -0.061390318, 0.00132547284, -0.0142453443, -0.00375666888, 0.018333381, 0.0263001714, -0.00494610611, 0.0104363542, -0.00243294029, 0.00689245854, 0.00596811576, -0.0284069739, 0.00733195757, 0.00702151749, 0.0178310964, -0.0251839831, 0.00695175584, -0.0028637189, 0.0132058943, 0.0364435241, -0.0147197237, -0.0228539407, -0.0200076625, -0.00109700311, -0.00999685563, -0.0155010559, -0.00226376811, -0.000217351379, -0.00795283634, -0.0291324966, 0.0140918689, -0.00170218607, -0.0382852368, 0.00288639148, 0.00865743, -0.0204820428, 0.0123059684, 0.0203843769, -0.0192681886, 0.000384125509, -0.0108898049, -0.0188356657, -0.00468101166, -0.0102689257, 0.0034497173, -0.0300533511, 0.0113851139, 0.018333381, 0.0488053039, -0.0169939566, -0.0352994315, -0.0510376766, -0.0130733475, 0.00714011258, -0.0194495693, 0.0282953568, -0.0134151801, -0.0136174886, -0.0288255457, 0.0281697847, 0.0095155, 0.00200216146, -0.0680874437, -0.0166870039, -0.0500610135, -0.0352157205, -0.0134988939, -0.00929923821, -0.0149848191, 0.0156405792, 0.00223935139, -0.0130803231, -0.0250723641, 0.00110572332, -0.0269977879, 0.00992709398, 0.0418849401, 0.0205518045, -0.0101503311, -0.0272628833, 0.0389549471, -0.0330949612, -0.0577627085, -0.0174264796, 0.00711220782, -0.0135756321, 0.00981547497, -0.0156545304, -0.032536868, 0.000708081527, -0.000405708037, 0.0314764902, 0.0348808616, -0.0122083016, 0.0203564707, -0.00221144664, -0.00469845207, 0.000781767361, 0.0159893874, 0.00993407, -0.00308521232, 0.0177613348, 0.0215284694, 0.00110485137, -0.012201326, -0.0185008105, -0.0203564707, 0.030806778, -0.0160731021, 3.11338954e-06, -0.0505633, 0.0214587059, -0.0024416605, -0.0122571355, 0.02136104, -0.0108339963, 0.0156405792, 0.0126059437, -0.01383375, -0.0152080562, -0.0255188383, 0.00221842295, -0.000821008289, 0.0158219598, -0.0158219598, 0.0334019139, 0.0281139761, -0.0327322, -0.0119780879, 0.038062, 0.0365551449, 0.0164219104, -0.0102061406, 0.00219400623, 0.0416058935, 0.0130942762, -0.0139383925, 0.0159893874, -0.00450311927, -0.0236073676, -0.0107154008, -0.00391712086, 0.0130873, -0.0298580192, 0.027988404, -0.00678432779, -0.0118734455, 0.00320729543, 0.00662387582, -0.0395130403, -0.0458753109, -0.025811838, -0.0589347072, 0.0492796823, -0.0063692457, 0.0110572334, -0.00149551698, -0.0255048871, -0.0269838348, -0.00692036329, -0.0211936124, -0.0134709897, 0.0250723641, 0.0202588048, 0.00301370653, 0.00183298939, -0.00491471356, 0.0181240961, 0.0182357151, -0.0192402843, 0.0344901979, 0.0199379, -0.0029212723, -0.0117548509, -0.0304161124, 0.00467054732, 0.010840972, 0.00411245367, 0.0219888967, 0.00664131623, 0.00527747441, -0.00694478, -0.0292162113, -3.09840179e-05, 0.00324043212, -0.000344666536, 0.0424430333, 0.00448916713, -0.0287976395, 0.0540792905, -0.00973873679, -0.00332763442, -0.0459590256, 0.034378577, 0.0313369669, 0.0248351749, -0.00599253224, 0.00135337748, 0.0433080792, -0.0272768345, 0.00294394488, 0.022240039, 0.0245979838, -0.00252014236, 0.0148871522, 0.0125780394, 0.0157801025, 0.0492796823, -0.026579218, 0.0497540608, -0.009076, 0.0555861443, 0.0107293529, 0.00789005123, 0.0184729043, -0.0206494704, -0.0151522467, 0.0220865626, 0.0113432566, 0.00944573805, 0.0261746, -0.000216697357, 0.00781331304, 0.0215145163, -0.0440615043, 0.03730857, 0.00906204805, 0.0424988419, 0.0100735929, -0.0135686556, -0.00948061887, -0.011817636, -0.00854581129, 0.0313648731, 0.00331019377, -0.0578185171, -0.00845512096, -0.00385433529, -0.0163381957, -0.00927830953, -0.014154654, -0.00305033149, 0.0103805447, -0.0207610894, -0.00981547497, -0.0475774966, -0.0404059924, -0.00374271651, 0.034155339, -0.0446475036, -0.000928703, -0.0262304079, 0.00418919185, 0.0455962643, -0.0303323977, -0.0229376554, 0.0562558547, 0.0147476289, -0.0383410454, -0.0218912289, -0.00375318085, -0.0211378019, -0.016700957, 0.00379154971, 0.0289929733, 0.0276954044, 0.00308870035, -0.0221423712, 0.007269172, 0.0211238507, 0.0182636194, -0.0100596407, -0.0123966588, 0.0385642834, 0.00802259799, -0.0204541385, 0.0212912783, -0.021374993, 0.0247096028, 0.00366249052, -0.00954340398, -0.000719417818, -0.0362761, -0.0199379, 0.0180124771, -0.0123059684, 0.011496732, -0.00738776661, -0.0235097017, -0.0146360099, 0.00357877649, -0.0151522467, -0.00737381447, -0.0133244898, 0.00848302618, 0.00538560515, 0.000563761918, -0.0174125265, -0.000940911297, 0.0303044934, 0.0194356162, -0.019421665, 0.00164550473, 0.00150859728, 0.0232027508, -0.000108893692, -0.0416617021, -0.00728312414, 0.0315043963, -0.00075822277, -0.0358854309, 0.0137849171, 0.00782726519, -0.00525305793, 0.0268861689, 0.0395409465, 0.00198820909, 0.00536118867, -0.0120199453, -0.0176218115, -0.00617042463, -0.0228678938, 0.0193239972, 0.0191705227, -0.00402874, 0.0545536689, -0.00345494947, -0.00329275336, 0.0164079573, 0.017147433, 0.0144546293, -0.0300812554, -0.0299138278, 0.0124664204, -0.00881788228, 0.00662038755, -0.0202727579, -0.0134221558, -0.019100761, -0.0394014232, -0.0190728549, -0.0151801519, -0.000442986959, 0.0095224753, 0.0199379, -0.00311486097, -0.00547629548, 0.00780633697, -0.0170218609, 0.00885973871, -0.00838535931, -0.0228539407, 0.00591579452, 0.0281837378, 0.0183054768, 0.0020527388, -0.0230771787, -0.00706337485, -0.0178590026, 0.0179427154, 0.00440196507, 0.00321078347, -0.00238410686, -0.0418012254, 0.0194495693, 0.0208727084, 0.0111060664, 0.00823885947, 0.0262722652, -0.010568901, 0.0124873491, -0.0179985259, -0.00801562238, -0.022240039, -0.0157382451, -0.00286023086, 0.0309463013, 0.02136104, 0.0432522707, -0.0188077614, -0.00276605249, -0.00397293037, -0.0276395958, 0.016603291, -0.0185845234, 0.0126896575, 0.00286197476, 0.00830862112, 0.00798074156, -0.0193379503, 0.0438940786, -0.0113502331, 0.0298859235, -0.00792493206, 0.0142244156, 0.00805050321, 0.0471031182, -0.00168648968, 0.0125152534, 0.0108758528, 0.037531808, 0.0179985259, -0.00678432779, -0.0364993364, 0.0405176096, 0.0186403338, -0.00109177106, -0.00585300894, -0.0303323977, -0.00397990644, 0.0265513118, 0.0213052314, -0.00385084725, 0.0115595181, -0.0245142709, 0.00717848167, 0.0191705227, 0.00054065336, 0.000690641056, -0.021472659, 0.0168544333, 0.000539781351, 0.0250165556, -0.0131640378, -0.01106421, -0.00708779134, -0.000476123765, 0.00349157443, -0.0220447052, -0.0318113454, 0.0130454423, -0.0225330368, -0.0175660029, -0.0035456398, -0.0401548482, 0.0106944721, -0.0165195763, -0.00319508696, -0.0149290096, 0.00784819387, -0.00508563, -0.00272419536, -0.0410757028, -0.0149429617, -0.0205378514, 0.038620092, 0.0145104388, 0.00448567886, -0.0037183, 0.00883183442, -0.00542746205, -0.0290487818, -0.0451776944, -0.00733893365, 0.0080784075, -0.0118664699, -0.0382015221, 0.00332589028, 0.0508144423, -0.00386479963, -0.0198681392, -0.00363109773, -0.0162823871, 0.00179810845, -0.00980849843, -0.000565506, 0.0143709155, 0.0122780642, -0.00581812812, -4.41460907e-05, -0.00880393, 0.0281418804, -0.0325089656, 0.00718545774, 0.0185705721, 0.00560186664, 0.0039275852, 0.0267885029, 0.0126896575, -0.00687153, -0.0239980333, -0.00171701051, 0.000475687761, -0.0282395463, -0.0074086953, 0.0142313922, 0.00900623854, -0.0192821417, 0.0115316128, 0.0277512148, -0.0337646753, -0.0191565696, -0.0147894854, 0.00751333777, -0.00667619705, -0.00605531782, 0.0258257911, 0.000523649, 0.0141755827, 0.000828856486, -0.0178031921, -0.0342111513, 0.0539955758, 0.0158219598, 0.0281279273, 0.0189612377, -0.0153615316, -0.00522864144, -0.0138965361, 0.0363319069, 0.00276430836, 0.0220586583, -0.0188356657, 0.0264396947, 0.00995499827, -0.0108130677, 0.0578743257, -0.0153196752, -0.0146918194, -0.0279046893, 0.00776448, 0.01594753, 0.013722131, 0.00640412653, 0.0108060911, 0.0313369669, -0.0227562748, -0.0135267982, -0.0366109535, -0.000799207774, 0.00564023573, 0.00126007118, 0.0218772776, -0.0125710629, 0.0277791191, 0.0140988445, 0.0278209765, 0.000585998467, 0.00161672803, 0.0259792674, 0.0201471858, 0.0352994315, -0.02212842, -0.0303603038, 0.0105130924, -0.00132285675, 0.0296347812, 0.0113990661, -0.0212912783, -0.00875509623, -0.0438103639, -0.0192263313, -0.0296347812, 0.0225469898, -0.0161707681, -0.00585649675, 0.000643115898, 0.00347064575, -0.0147197237, 0.00309567666, 0.0331228673, 0.0316718221, 0.00194809621, -0.00259513617, 0.00285674259, -0.012473397, 0.00934109464, 0.012968705, 0.0125222299, -0.00895740557, -0.000555041712, 0.0134640131, 0.0108898049, 0.03058354, -0.0181240961, 0.0398479, -0.0202867091, -0.0252956022, 0.0169660524, 0.0313090608, -0.0127733722, 0.0142383678, -0.0117269456, -0.00694826804, 0.0298301131, -0.0011484524, -0.000982768252, -0.0229097512, 0.0113920895, 0.0270535965, -0.00713662431, -0.00367295486, 0.0540792905, 0.0112734949, -0.00692385109, -0.0419128463, -0.00431476254, 0.0175101925, -0.0129477764, -0.0334856287, 0.0226307046, -0.00148330873, 0.0111200195, 0.0112665184, -0.00222365512, -0.000332240219, 0.00389968045, 0.00911088102, 0.0228957981, -0.0326763913, -0.0392619, 0.00449265493, 0.00570999738, 0.0135756321, 0.0244863648, 0.00392060913, 0.0312253479, 0.0044961432, 0.0429732241, -0.00456590485, -0.0240538437, 0.00376364519, -0.0233980827, -0.00974571332, -0.0364156216, -0.0283930227, -0.0111618759, 3.90502173e-05, -0.0206215661, -0.0200076625, 0.014105821, 0.0210819934, 0.00341134844, 0.0201471858, -0.0192402843, -0.0394293256, -0.0608880334, -0.0337646753, 0.0196449012, 0.00568558043, -0.0345460065, -0.0205797087, -0.0411315151, 0.0123548014, 0.0140848923, 0.00250444585, -0.0309742056, 0.00419616792, -0.0122083016, 0.00941783283, 0.00517980801, -0.00145104388, -0.0284069739, 0.00585649675, -0.00573790213, -0.00801562238, 0.00579719944, 0.0208587553, 0.00776448, 0.0352994315, 0.0216261353, 0.0116502084, 0.016589338, 0.0308625866, 0.00569953304, -0.0355784819, -0.0576510914, 0.0105270445, -0.00299452199, -0.0109386388, -0.0103944968, 0.00583905634, 0.0250305068, 0.0327880122, 0.00657853065, 0.00730405282, 0.0269977879, -0.00214342913, -0.0253514107, -0.00310090859, 0.018738, -0.00445079803, 0.00161236792, -0.0454009324, 0.000362106948, 0.0133175133, 0.0117408987, -0.00644947169, -0.0377829522, -0.0147894854, -0.0129547529, -0.068310678, -0.0124873491, 0.00106125022, 0.0163381957, -0.0105898296, -0.00918064266, -0.0227004662, 0.00149290089, -0.0273465961, -0.000658812292, 0.0152778178, 0.00503679644, -0.0137570119, 0.00752729038, 0.00640412653, -0.0409919918, -0.0183473341, -0.00508563, -0.0166730527, -0.0124664204, -0.00353517546, 0.00327531295, 0.0174404308, 0.00693082763, 0.0035857528, -0.00844814535, 0.0210680403, 0.018765904, -0.0148034384, -0.0309742056, -0.0194356162, 0.00198820909, 0.0138756074, -0.0160172917, 0.0143290581, 0.0314764902, 0.000444076984, 0.0281279273, -0.028197689, -0.0093271425, 0.0110293292, 0.00948759448, 0.021040136, 0.0310579203, 0.0152359605, 0.0106874965, 0.0145802, 0.0277233105, 0.00356656825, -0.0155429123, -0.0105270445, 0.0187240466, -0.00690989895, 0.0103456639, 0.0140081542, -0.0424430333, -0.00262478483, 0.0478565432, 0.0212773271, -0.0276675, 0.00868533459, -0.0175660029, -0.0235934164, 0.00449265493, -0.0297184959, 0.0003887036, 0.0142523209, -0.0196030457, -0.0319508687, 0.0210122317, -0.0125780394, -0.00421709614, 0.0229795128, -0.0207331851, -0.0370295234, 0.00621228153, 0.00165248092, -0.00724824332, -0.0160033405, -0.00977361761, 0.0422477, -0.00268233824, -0.019742569, 0.0042589535, -0.0279465467, 0.0179427154, -0.00256199948, 0.0122780642, 0.0269001219, 0.00566465221, 0.00945969, 0.0074645048, 0.0226167515, 0.00688897027, 0.00761100417, 0.0453730263, -0.00635878136, -0.0247654133, 0.004011299, -0.0496982522, 0.010087546, -0.00136558583, 0.0196309499, -0.00226027984, -0.00647388818, 0.00134901737, -0.0173985735, -0.00660992367, -0.00548676, -0.0289092585, 0.0143569633, -0.00692385109, 0.00115194044, 0.0232446063, -0.00268931454, 0.0280721188, -0.00147546048, -0.00381247839, 0.0224493239, -0.0287976395, 0.0128361573, -0.00230911304, -0.00614600815, -0.0249049366, -0.000709825545, -0.0086644059, 0.0226167515, 0.0294952579, 0.0156545304, 0.0242910329, 0.025811838, 0.014043035, 0.00410547759, -0.0201192815, -0.0175660029, 0.0126478011, 0.0115176607, 0.0015260377, 0.000125135091, -0.0153057221, 0.0256165061, -0.0399595164, 0.00452404795, -0.00297708157, 0.021472659, 0.0530747212, 0.0340158157, -0.0255886018, 0.0106595913, -0.0107991155, -0.0027765166, -0.0163521487, -0.000754734676, 0.0235236548, 0.0102828788, 0.0131152039, 0.00581812812, 0.00428685825, 0.0369737148, 0.0462101661, -0.0144127728, -0.00962014217, -0.0250863172, 0.00577627076, 0.00770867057, -0.0079388842, -0.0228818469, 0.00676688738, 0.0143988198, 0.0130524188, 0.000299975422, 0.0174404308, 0.0320624895, 0.00751333777, 0.021486612, 0.0341274366, -0.0221005138, -0.0140221072, 0.00400781119, -0.0268443115, 0.00115106849, 0.0138407266, -0.00771564664, 0.0138546787, -0.00481704716, 0.0106107583, -0.00563325919, -0.0323694423, 0.0074645048, 0.0104642585, -0.0219051819, 0.0190728549, -0.0187798571, 0.00830164552, 0.0173288118, 0.0340437219, 0.0297464, -0.000962711812, 0.0383131392, -0.011657184, 0.0135407513, 0.0128780147, 0.0157801025, -0.0107223773, -0.0186961424, -4.22112935e-05, 0.0134291323, -0.00576231861, -0.000640499871, 0.00904111937, -0.0183473341, 0.0210261848, -0.00720638642, 0.00364156207, -0.0143709155, 0.00508911768, -0.0434476025, 0.0133802993, -0.0063134362, -0.0126687298, 0.00203529838, 0.02635598, 0.0128989434, -0.00223237532, 0.0259932186, -0.0198681392, -0.0160172917, 0.00516934367, 0.00719243381, -0.0313090608, -0.0128919668, 0.0414942726, -0.00844814535, -0.00264222524, -0.00592974667, -0.00083539664, 4.04945022e-05, -0.0258257911, 0.000732498127, -0.00299452199, 0.0292720199, -0.018221762, 0.000661864353, -0.0111479238, -0.0174543839, -0.0113851139, -0.0055495454, -0.0200076625, 0.00950852316, -0.0271233581, -0.0110502569, -0.019031, -0.00897833426, 0.0015748709, 0.0104224021, 0.0031166051, 0.0330949612, -0.0195053779, 0.00297533767, -0.0203425195, -0.012473397, 0.00785517, -0.000859377265, 0.0236631781, -0.027876785, -0.00323345605, -0.0161149595, 0.0347971469, 0.0117129935, 0.0111967567, 0.00885973871, 0.00922947656, -0.00923645217, -0.00895740557, 0.00798074156, 0.00112490787, 0.00260560052, -0.0101573076, -0.00223586336, 0.0134849418, 0.0194077119, 0.019198427, 0.00280965352, -0.0140290828, 0.0153475795, -0.00291080796, -0.0150406277, 0.0187240466, 0.0208587553, -0.0277372617, 0.00606578216, -0.0213052314, -0.0307788737, 0.00197600084, 0.00513097504, -0.000705465442, 0.0340995304, -0.0019149594, 0.0181101449, 0.0219330862, 0.0356342904, -0.00456241705, -0.0150964372, 0.00256025535, -0.0127105862, 0.0120827304, 0.00269629061, 0.0223098, 0.00467752386, -0.00915971491, -0.0119711123, -0.0210819934, 0.00665526884, 0.000851965102, -0.0351599082, 0.0349645764, 0.00936202332, -0.00352296722, -0.0256723147, -0.00659945933, 0.0096619986, 0.039150279, 0.00966897514, -0.00833652634, -0.0221005138, -0.0102479979, -0.0165474806, -0.02385851, -0.00516934367, 0.0056506996, 0.0155847697, 0.029076688, 0.00863650162, 0.0211098976, 0.0123896822, 0.0322578214, 0.0348529592, 0.00169957, 0.0157940555, -0.0091876192, -0.0167986229, 0.00342704472, -0.00330496184, -0.0229097512, 0.0380061865, -0.00575185427, -0.00168561772, -0.000695873227, 0.0179148111, -0.017147433, -0.00293348054, -0.00486936839, -0.0233283211, -0.0163940061, 0.0434755087, 0.0145941526, -0.0159614831, -0.0334856287, 0.0328996293, 0.0087969536, 0.00507516554, -0.0166870039, 0.00666922098, 0.0152499136, -0.024193367, -0.0430290326, 0.023872463, -0.00752729038, 0.00927133299, 0.0263141226, -0.00958526134, -0.0141127966, -0.00219226233, -0.00132372871, -0.00695873192, 0.0125780394, 0.0301649701, 0.0125082778, 0.00918064266, 0.037085332, 0.0154452464, 0.0100177834, -0.0122920163, -0.00558791403, 0.0215563737, 0.00350378267, -0.00868533459, 0.0169381462, -0.00107345858, -0.0426662713, 0.0182636194, 0.0101433545, 0.00925738085, 0.00564372353, -0.00150423718, 0.0220447052, -0.0417454168, -0.021919135, -0.00728312414, 0.00586696109, 0.00199692929, -0.0113432566, 0.0145522961, 0.0232027508, -0.000194787819, -0.00220447057, -0.0106247105, -0.00598555617, 0.0131570613, -0.0067424709, -0.0173706692, 0.00116066076, -0.0209564231, -0.0174264796, -0.00275558815, 0.0236213207, -0.00364156207, -0.0126547767, -0.0223935135, 0.00698663667, 0.0307788737, 0.016603291, 0.01594753, -0.00113362807, -0.00561581878, -0.00336251524, -0.00759007595, -0.0245142709, 0.014266273, 0.00927133299, -0.00574139, -0.00123652653, 0.00154958235, 0.00888066739, -0.00494959438, 0.00342181255, -0.0127943009, 0.0224772282, -0.00948759448, 0.00126879138, 0.0257281251, -0.00892252475, 0.0271931197, 0.00455892878, -0.0198402349, 0.00832955, 0.0242631286, 0.000264876551, -0.00375666888, 0.0106595913, 0.0144406771, -0.0173846222, -0.00657155458, 0.0376434289, 0.0204401854, -0.00636575744, -0.0184729043, 0.00798074156, -0.00195158424, -0.0109177101, -0.00528096268, -0.0120827304, 0.0106665678, 0.00535072433, 0.00201960187, -0.0102479979, 0.0113432566, -0.0174404308, -0.02462589, -0.00562977139, -0.0419686548, -0.0201332346, 0.00262129679, 0.0147615811, 0.013450061, -0.00547629548, -0.00881090574, 0.00511353463, 0.0065506259, -0.0110781621, -0.0224911794, -0.0149011044, 0.00633785268, -0.00848302618, -0.0157940555, -0.00653667375, 0.0173427649, -0.0182496682, -0.0068436251, 0.0108270198, -0.00784121826, 0.0118106604, 0.008517907, -0.0169939566, 0.0123827066, -0.0108060911, 0.00228295242, 0.0244026519, -0.000142793535, -0.0108130677, 0.00882485788, -0.0130733475, -0.00489727315, 0.0224911794, 0.0297743045, -0.00613903208, 0.0149848191, -0.0125501342, 0.0235934164, -0.021151755, -0.0276116915, -0.00213296479, -0.0191844739, 0.00370085961, -0.0164079573, 0.00502982037, 0.0471310206, 0.00687850593, 0.0296347812, -0.0195751395, -0.00908297673, 0.0118594933, -0.0197704732, 0.00202483404, -0.0211378019, 0.0223656092, -0.00334856287, 0.0061215912, 0.0378108546, 0.00972478464, -0.00968292728, -0.0216261353, -0.000809672056, 0.0244863648, 0.000793103594, -0.00228120852, -0.00709127961, -0.00399734685, -0.012857086, -0.0110084005, -0.0254072212, 0.00153126987, 0.0169381462, -0.0185984764, 0.0144825345, 0.001817293, 0.0384247601, -0.016156815, 0.000571610115, -0.0160172917, 0.0086644059, 0.0524050072, 0.0174404308, 0.0164079573, 0.0175799541, 0.000967071916, -0.0318950601, -0.0187519509, 0.00511004636, 0.00972478464, 0.0363319069, 0.0131500857, 0.0164777189, -0.0204262324, -0.00219226233, 0.0108828293, -0.0265094563, 0.0312253479, -0.0170916226, 0.0242073182, 0.0236631781, -0.00520422496, -0.0166870039, 0.0323973447, 0.0286860224, -0.0152080562, 0.0316439196, -0.00154871028, 0.0183473341, 0.00238236296, -0.0208727084, -0.00598904397, -0.0170079079, 0.00918064266, -0.0260908846, 0.0266071223, 0.0127315149, -0.00466008345, -0.0100456886, 0.00996197481, -0.0178310964, -0.0103735682, 0.00720638642, 0.00440545287, 0.0292162113, -0.0156266261, -0.00206320314, -0.00295615313, -0.000164921075, -0.00181903702, -0.00971780811, 0.00474379724, -0.0106874965, -0.000709389569, 0.0107851624, 0.0296905898, -0.00149900513, 0.0238445569, 0.0123338727, -0.0145243909, -0.0186961424, -0.00948061887, -0.00980152283, -0.0281697847, -0.00156353472, -0.00709127961, 0.0272489302, 0.0261885524, 0.00959921349, 0.0160591491, -0.0298580192, -0.0102898544, 0.0133035611, 0.0280442145, 0.00269803475, 0.00483448757, -0.000844988914, -0.00877602492, -0.00720638642, -0.000342704472, 0.00814119354, -0.00621228153, 0.00858766865, 0.0267047882, 0.0211796593, -0.00789005123, 0.00307300407, -0.0176497158, -0.0304440167, 0.00430778647, 0.0168683846, 0.0140779158, 0.0308904927, -0.0139383925, 0.0151382945, -0.00511353463, 0.0260071717, 0.000719417818, -0.00334856287, -0.0030206826, 0.0163661, 0.00341658061, 0.0103526404, 0.0181101449, -0.0028253498, 0.0155847697, -0.00516934367, 0.0141197732, -0.0242352244, -0.0225748941, -0.0143709155, -0.00368690724, -0.0156405792, 0.0120059932, -0.0128291817, 0.00797376502, -0.00114234828, 0.0172869563, 0.0135895843, -0.0069796606, -0.0187100954, 0.00665526884, 0.0124664204, 0.0281139761, 0.00137081789, -0.0273884535, -0.0143988198, 0.00347762206, 0.00632041227, 0.0186124276, -0.0122850398, -0.00456939312, 0.0332344845, -0.00351773505, 0.0322020128, 0.00192193559, -0.00860859733, -0.00147197244, -0.00506818946, -0.00230911304, 0.00287069497, -0.00441242894, 0.00185740599, 0.0043008104, 0.0275977384, 0.0161289107, -0.00142226717, 0.0152220083, -0.0130733475, 0.0174543839, 0.00715755299, 0.000102571539, 0.0251002684, 0.00613903208, 0.00494959438, 0.0114688277, 0.00658201892, -0.0035456398, -0.0102061406, 0.0146499621, -0.00959223695, 0.00608322257, -0.000265530573, 0.00195158424, 0.0222539902, 0.0160731021, 0.00918064266, -0.00708430307, 0.0206913278, 0.00861557294, 0.013945369, 0.000191190731, 0.0245282222, 0.0199518539, 0.00546931941, 0.00996895, 0.00995499827, -0.00638319785, -0.00842721667, 0.0128431339, -0.0289092585, 0.0192542356, 0.00621577, -0.000647476, 0.00953642745, 0.00134552934, -0.010631687, -0.0198681392, -0.00630994793, 0.00682618469, -0.000851093035, 0.00338693173, 0.00109351508, -0.0221842285, -0.0199379, 0.0235794634, -0.0118246125, 0.00452404795, 0.0110084005, -0.00803655107, 0.00619484112, -0.0137430597, -0.0061774007, -0.0279744528, -0.0153475795, -0.0121803973, -0.00417175097, -0.00942480937, 0.00915971491, -0.00277302857, 0.00874114409, 0.00712267216, 0.00740171922, -0.0114618512, -0.0315881111, 0.00121995818, -0.00340786041, -0.018738, -0.00999685563, -0.00294220075, -0.0020039056, -0.00441940548, 0.0064529595, -0.0144685814, 0.0043984768, 0.00874114409, 0.00682967296, -0.0181101449, -0.024193367, 0.0107572582, -0.00051623676, 0.00227772025, -0.0110851387, 0.0136802746, 0.00973873679, 0.0123059684, -0.00189577485, -0.0269280262, 0.00359621691, -0.0185845234, 0.0150266755, -0.00618088897, 0.00475775, -0.00874812063, 0.00332763442, -0.00211378024, -0.00236317841, -0.0117060179, -0.00589137757, 0.0218633246, -0.00936202332, -0.00302242674, 0.00144319574, -0.0154312933, 0.0111618759, 0.00909692887, -0.00691338722, -0.026369933, 0.012089707, 0.0194914266, 0.0174543839, 0.00147197244, -0.0121385399, 0.0174822882, -0.0245142709, 0.0388991386, -0.0243747476, -0.0359412394, 0.0146918194, -0.00056725, 0.00898531, 0.0170218609, 0.00128187169, -0.00227423222, -0.0200774241, 0.012745467, 0.0447033122, -0.0212494209, 0.0183612853, -0.00747148087, -0.0055495454, -0.0123478258, -0.00503330864, 0.00477170199, 0.0115176607, 0.0322578214, 0.00376364519, 0.0182357151, 0.00903414376, -0.00484146364, -0.0168962907, 0.0100247599, -0.00227946439, 0.00235620234, -0.00881788228, -0.00823188387, -0.011992041, 0.00755519466, -0.00679130387, -0.00385433529, 0.00853883475, 0.00798771717, 0.00735986186, 0.0108688772, 0.00208238745, -0.001335065, 0.0015504543, 0.00880393, -0.0135756321, 0.0272768345, 0.00186263805, 0.0022480716, -0.0155987218, -0.0243189372, -0.00902716722, 0.00791795552, -0.00964804646, -0.000123064048, -0.00297359354, 0.000617827289, -0.000801387825, -0.00216784561, -0.0206494704, -0.0143569633, -0.012201326, 0.00164027256, -0.0024434044, 0.0156266261, 0.00286023086, 0.0200913772, -0.0119013507, -0.00459032133, 0.00113013992, 0.00855976343, 0.00661689974, -0.0132965846, -0.0423872247, -0.00421360834, -0.0177892409, -0.00606229389, 0.0298022088, 0.0333740078, -0.0147476289, -1.0287129e-05, 0.0144685814, -0.000367121072, 0.000554169703, -0.0120338975, 0.00220621447, 0.00944573805, -0.0156126739, -0.00014737164, 0.0190170463, -0.00982245058, -0.006508769, 0.00806445535, -0.00040854211, 0.00111880363, 0.0222539902, 0.00700407708, 0.011608351, -0.00235620234, -0.0104014734, -0.00070328539, 0.00897135772, -0.0204820428, -0.00234050583, 0.0228399895, -0.0147755332, -0.017147433, -0.0168962907, 0.0147336768, -0.00299975416, 0.00591579452, 0.016045196, -0.0199379, -0.00152429368, -0.00991314091, -0.0155289602, 0.0220586583, -0.00980849843, 0.0344064832, -0.00663782796, -0.0128849903, 0.00960619, -0.0236213207, -0.00872719195, -0.0010220093, 0.0233004168, 0.00968990382, -0.00332065811, -0.0131640378, 0.0114269704, -0.00551815238, 0.0180124771, -0.00279046898, -0.0125780394, 0.0123617779, -0.0101573076, 0.0182496682, 0.0285185929, 0.00675642304, 0.018221762, 0.0179706197, -0.00431825081, -0.00719941, 0.0373364761, -0.00756914727, 0.00815514568, 0.0180682875, -0.023872463, 0.011831589, -0.0210819934, 0.0116502084, 0.00920157135, -0.0122292303, -0.00987128448, -0.00231957738, 0.0200774241, -0.000792667619, -0.00942480937, -6.15183944e-06, 0.0130942762, -0.00697268452, -0.0111758281, 0.00283232611, -0.00112229178, 0.0189054273, -0.00510655809, -0.0230074171, 0.0176357646, 0.00480309501, 0.00166904926, -0.0104433307, -0.00154086214, -0.0330670588, -0.00551466458, -0.0147197237, 0.00614252, 0.00123391056, -0.0257141721, -0.00915273838, -0.0155568644, -0.0137988692, 0.00175537937, 0.0134012271, 0.0178590026, -0.0178729538, 0.00554605713, 0.00792493206, 0.0174822882, 0.0166591, -0.00471589249, 0.0101433545, 0.0284069739, -0.0107084252, 0.0214308016, -0.00361714535, -0.0271652155, 0.0198681392, 0.0160312448, -0.0170916226, 0.0115455659, 0.0123059684, 0.00889462, -0.00520073669, -0.0019637926, -0.0150685329, -0.00379154971, -0.00932016689, -0.00183298939, -9.60313773e-05, -0.0129547529, 0.00558791403, -0.0150266755, 0.00187659042, 0.0034409971, -0.0144685814, -0.00283232611, 0.00557396188, -0.0245561283, 0.00594021101, 0.00214866106, 0.00258641597, 0.0276395958, 0.00330844987, -0.0159056727, -0.00820397865, 0.00325264037, 0.0187100954, 0.0212354697, 0.0173009075, -0.0105479732, -0.0275698341, -0.00133419305, -0.016156815, 0.0131082283, -0.0025410708, -0.00534723606, -0.00802259799, 0.0449823588, 0.0379782841, -0.00263524917, 0.0149569139, 0.0245142709, -0.00130105624, -0.00561581878, -0.0201471858, 6.81811871e-05, 0.00444731, -0.00673200656, -0.0178310964, 0.00179462042, -0.00494610611, 0.0101503311, -0.00393804954, 0.0155010559, 0.00732498104, 0.0330949612, -0.0137849171, 0.00463217869, 0.00935504772, 0.014154654, 0.000421622419, -0.00626460277, 0.0208169, -0.01529177, -0.00740171922, 2.96691724e-06, 0.00114932447, 0.0326205827, 0.00973176118, -0.00620181719, 0.02385851, -0.0172730032, -0.022240039, 0.0133593706, 0.000398731849, 0.00455892878, 0.0101782354, 0.0111339716, -0.00137866614, 0.00640063826, 0.0106037827, 0.00229516067, 0.0156545304, 0.00501586823, 0.00871324, 0.000649220077, -0.0252816491, 0.00193588785, 0.00649481686, 0.00536467647, 0.00332414615, -0.0196030457, -0.00106386631, -0.00595765142, 0.00293696858, 0.007757504, -0.0192542356, 0.0119222784, 0.0222958475, 0.00357180042, -0.0178729538, -0.0177473836, 0.030806778, 0.0231329873, 0.00475426158, -0.0193239972, -0.0164079573, -0.00790400337, 3.28370625e-05, 0.0180822387, 0.021486612, 0.0054553668, 0.0222121328, 0.00170044205, 0.00611461513, -0.0205099471, -0.0121106356, 0.00795283634, -0.0148034384, -0.00124873489, -0.00467403559, -0.00863650162, 0.00297359354, 0.0141616305, 0.00516934367, -0.0207331851, 0.0223795623, 0.00189228682, -0.00239631534, -0.0144406771, -0.0105409967, 0.00231085718, -0.00652969768, 0.0124873491, 0.00136471377, -0.00384387118, -0.0015103413, 0.0143988198, -0.0171892885, 0.0114199948, 9.18892765e-05, -0.00349157443, 0.018989142, -0.0178171452, 0.00597160356, 0.0197007116, 0.00338344369, 0.0258955527, 0.0188914761, 0.000732062093, 0.0186124276, -0.00329100946, 0.00613205554, -0.00860859733, 0.00747845694, -0.0157661494, 0.005260034, 0.00873416848, -0.0204820428, 0.00972478464, -0.0127524436, -0.0219749436, -0.0140918689, -0.00305033149, 0.00768076582, 0.0224632751, -0.0061774007, -0.00470194034, 0.00980152283, -0.00722731464, -0.00870626327, 0.0112107089, 0.00519376062, -0.0122152781, 0.00431476254, -0.00374620478, 0.0246398412, 0.00173968298, 0.00562628312, 0.00792493206, 0.00947364233, 0.000606491, 0.00707035093, -0.00754821859, 0.0148034384, -0.00436359597, 0.00524608186, -0.018221762, -0.00550071197, -0.00460776174, -0.00477170199, 0.0259932186, 0.0171892885, -0.00377759733, 0.0311695393, -0.00342530082, -0.0104642585, -0.0240538437, 0.0120548261, 0.0233841296, 0.00862254947, 0.0372806676, 0.0063134362, 0.0254211724, -0.000475687761, 0.0140360594, -0.0112734949, 0.00500889169, -0.0122292303, 0.0255188383, 0.0172171947, -0.0174264796, -0.0171055757, 0.00351773505, -0.0385084711, 0.012905919, -0.00827374, 0.0123827066, -0.00260036835, 0.00128972, -0.008134217, 0.0139174638, -0.00848302618, -0.0202867091, -0.0173706692, -0.000366903085, 0.0101224268, 0.00342355669, -0.00681920862, -0.00284976652, -0.0140848923, -0.0139035117, 0.0174543839, 0.00192716764, 0.0234538913, -0.00800864585, -0.015082485, 0.0013638417, 0.0198402349, -0.0276535489, 0.000276648847, -0.0125082778, -0.00240852358, 0.0238027014, 0.0228678938, -0.0106386635, -0.00571348518, 0.00494610611, -0.00842721667, 0.0166172422, -0.00922947656, -0.0100317365, 0.000692821166, 0.0164219104, -0.0241794139, 0.00352296722, -0.00747148087, 0.023216702, 0.0148034384, -0.000348154601, -0.00924342871, 0.00423453655, 0.0144825345, -0.00158271915, -0.0120199453, -0.00275384402, 0.00216610148, -0.00209808396, 0.018877523, -0.0167567674, 0.0189054273, -0.0110223526, -0.0081272414, -0.00543792639, 0.0427499861, 0.0282535, 0.00796678942, 0.00967595167, 0.0300533511, 0.0131361326, 0.00868533459, -0.0102549735, 0.0110363048, -0.017468337, -0.0240398906, -0.0118734455, 0.000769995037, 0.000295397302, 0.00574139, 0.00722731464, -0.00112229178, 0.0120338975, 0.0089922864, 0.0154591985, 0.00247130916, 0.00158620719, -0.0215145163, 0.0145941526, -0.0230771787, 0.0192402843, 0.0194356162, 0.00704942225, -0.0289371628, -0.0135826077, 0.00361365732, -0.00480309501, 0.0184031427, 0.0356342904, 0.0214447547, -0.00450660754, 0.00106997043, 0.00425197696, 0.0216819439, 0.00160190358, -0.00963409431, -1.95251087e-05, -0.0128640626, 0.0285744034, 0.00351773505, -0.0093271425, -0.00396246603, -0.00827374, -0.00685060164, 0.00969687942, 0.00467752386, -0.00442986935, 0.00923645217, 0.0205099471, -0.00100108073, -0.00486239232, 0.0142104635, -0.0125710629, -0.0160731021, 0.0116711371, -0.0171753373, 0.0330391526, 0.0111549, -0.016156815, 0.00878300145, 0.0207471363, -0.0182357151, 0.0239561759, 0.00443684589, 0.00486239232, 0.0174404308, -0.0180124771, -0.0177613348, 0.0113851139, -0.0102410214, 0.00519027235, -0.0129477764, 0.00164288864, 0.00507516554, 0.00913878623, 0.0160172917, 0.00811328832, -0.0170916226, 0.00969687942, 0.00118769333, 0.036862094, 0.0066448045, -0.00678432779, -0.00223586336, 0.0118664699, 0.00546234334, 0.016491672, -0.0064111026, -0.00654365, 0.0158638172, -0.0174264796, -0.03730857, -0.0129128955, 0.00410547759, -0.00139349047, 0.00733893365, 0.00828769337, -0.0149848191, 0.0159056727, 0.00670759, -0.015515008, -0.030806778, 0.0105340201, 0.0064111026, -0.00835745502, 0.0257281251, 0.0115804467, 0.0108270198, 0.00587044936, -5.6735902e-05, -0.00445079803, 0.00802259799, 0.0029631292, 0.0243886989, 0.0174264796, 0.0307509694, -0.0200913772, 0.00343053276, 0.0134012271, 0.0178450495, -0.00537862908, 0.0362761, 0.00167340937, 0.0156545304, 0.0326763913, -0.0110432813, -0.0103177596, -0.0182636194, 0.00803655107, 0.00115368457, 0.00232480955, 0.0208727084, -0.0199658051, -0.0114269704, -0.0127943009, 0.0218493734, -0.00656109024, -0.00950852316, 0.00395200169, 0.0126617532, 0.0226586089, 0.00724126725, -0.0023928273, 0.0139244404, -0.00999685563, -0.0300254468, 0.0157661494, -0.010199164, 0.0175101925, 0.00179462042, 0.0050263321, 0.0183612853, -0.0122292303, -0.0218493734, -0.0135826077, 0.0137849171, -0.0135198226, -0.026244361, 0.0151103893, 0.0106595913, -0.0281139761, 0.0266768839, 0.00110659539, 0.00863650162, -0.00882485788, -0.0202448536, -0.0174264796, -0.00024394803, -8.09345056e-06, 0.00471938075, -0.0155987218, -0.0145522961, -0.00692733936, -0.00557396188, 0.0124803726, -0.000413120229, -0.010631687, 0.0124106109, -0.00975966547, -0.00207715528, -0.00304161129, -0.021472659, -0.00157923112, 0.00452055968, 0.000885973917, 0.00824583601, -0.0124803726, -0.0133105377, -0.00554256933, 0.00637970958, 0.0133175133, -0.00910390541, -0.00532630784, 0.0010220093, -0.00194286404, -0.00703547, -0.00145627605, -0.0171334799, -0.0130593954, 0.00229167263, -0.0149429617, 0.0104782116, 0.00393804954, 0.00547280721, 0.0203843769, 0.000874201651, -0.00130454428, -0.00519027235, -0.00206669117, 0.0159335788, -0.0195751395, -0.0157382451, -0.00263350504, 0.00575534254, 0.00981547497, -0.00953642745, 0.00779238483, 0.00657853065, -0.0039275852, 0.0181380492, 0.0204541385, -0.00209633983, -0.0177613348, 0.00814816914, -0.0143569633, -0.0101852119, -0.0242770799, 0.00511004636, 0.00862254947, -0.00613554381, 0.00580068771, -0.0160870533, -0.0124454917, -0.00941085722, -0.0123687536, 0.00938992854, -0.00562279485, 0.0195890926, -0.0052565462, -0.0182496682, -0.00996895, -0.0197983775, 0.01383375, 0.0176915731, 0.01171997, 0.0155987218, 0.00504726078, 0.00609717472, -0.0101573076, -0.0115037085, 0.000174295317, 0.00784819387, 0.0110363048, 0.00789702777, -0.0106177349, 0.0138616553, -0.00152167759, 3.02209974e-05, -0.0805329382, -0.00565767614, 0.0150545808, 0.0257281251, -0.00174665917, 3.34910801e-05, -0.0166172422, -0.021472659, -0.00350203854, 0.00285151042, -0.00651574507, -0.00924342871, 0.0248491261, 0.00874812063, 0.0116711371, -0.0149011044, 0.0134919174, 0.00673200656, -0.0113083757, -0.00724126725, -0.016812576, -0.00914576184, 0.0112665184, -0.0087969536, -0.00104555383, -0.0014283713, 0.00957828481, 0.00114496436, -0.00352994329, -0.0165056251, -0.014538344, 0.0108758528, -0.000870713557, 0.0118246125, -0.0233283211, -0.0188217144, 0.00615298422, -0.00950852316, 0.00126355921, -0.020928517, -0.00974571332, -0.0119013507, -0.00552512845, -0.00747845694, -0.0126408245, 0.016268434, -0.00547629548, -0.0115316128, -0.0181101449, 0.0136802746, -0.0032055513, 0.0133454185, 0.000154565816, -0.00529840309, -0.0266071223, 0.00134814531, -0.00754124252, -0.0103526404, -0.00564023573, 0.00562977139, 0.0032543845, -0.0436987467, 0.00950852316, 0.0199518539, -0.00234225, 0.0111758281, -0.0236352719, 0.0126198959, -0.000936551194, 0.0211378019, -0.0118106604, -0.00362063362, -0.00615298422, -0.0127036106, 0.000851093035, 0.0103107831, -0.0135337748, -0.00367993093, 0.00700058928, -0.011496732, 0.0163661, 0.00574836601, 0.002589904, -0.000421404431, -0.00421360834, 0.00546931941, 0.018431047, 0.00142313924, 0.0136174886, -0.00453451229, 0.0204959959, -0.000122846031, -0.0186821893, 0.0160870533, 0.0176218115, 0.00656109024, -0.0118385646, -0.00444382196, 0.00701454142, 0.014315106, 0.00120774982, 0.00719941, 0.0298580192, -0.0149290096, 0.0306393504, -0.0186682381, 9.12352552e-05, -0.0170497652, 0.00782029, 0.00512748677, 0.021598231, -0.0112176854, 0.0119501837, -0.00252537453, 0.00905507244, 0.0244026519, -0.0102479979, -0.00169957, 0.00687850593, 0.0287976395, -0.0160312448, 0.00650179293, -0.0153894369, 0.00422756048, -0.00332589028, -0.0088527631, 0.0119641358, -0.0046845, -0.00974571332, 0.00611112732, 0.0259932186, 0.000666224456, -0.00217482168, -0.0160591491, 0.00926435739, -0.0205518045, 0.0121245878, -0.000521468872, 0.00391363259, 0.00508214161, 0.0110502569, 0.00655411417, -0.00511702243, -0.0195472352, -0.013129157, -0.00132024067, -0.00956433266, 0.00640063826, -0.0103735682, -0.00330147357, -0.0240259375, 0.000932191033, 0.00372178806, 0.000918238715, 0.00179985247, -0.0129338242, 0.00937597547, -0.00434266729, 0.00501935603, -0.0150266755, -0.00485890405, 0.0137151554, 0.0137988692, -0.0124524683, -0.00447870279, 0.0142592965, -0.0137291076, -0.00590533, -0.00421709614, -0.0239143204, 0.0191426184, 0.0155847697, 0.0193658546, -0.00777843222, -0.00371132372, -0.0109107336, -0.00164376071, -0.0056472118, 0.00165858504, -0.00961316563, 0.00478216633, -0.00174665917, -0.0159196258, 0.00771564664, 0.0261048377, -0.0180124771, 0.00964107085, 0.0107642347, -0.00855278783, -3.98132361e-05, 0.0161010064, 0.00962711778, 0.00718545774, 0.00925738085, -0.0169660524, 0.00363109773, 0.00298580178, 0.00898531, 0.00123827066, 0.0147197237, -0.0185984764, -0.00700407708, 0.00955735613, 0.0141127966, 0.00781331304, -0.018989142, -0.000689769047, 0.0122083016, 0.00515190326, -0.0116990414, -0.0125640864, -0.0219609905, -0.0100387121, 0.0328159146, 0.00732498104, 0.000104097577, -0.00279570115, -0.0071715056, 0.000721161836, 0.0134570366, 0.035913337, 0.0338204838, 0.012857086, -0.0107642347, 0.0190589037, 0.00611461513, -0.00825978816, -0.00791098, -0.021807516, -0.00941783283, -0.00874114409, -0.0162126254, 0.0274582151, -0.0157940555, -0.00839931145, 0.0161149595, -0.00336077111, 0.0199658051, -0.00929923821, 0.0263838843, 0.00668317312, 0.00569953304, -0.0223935135, -0.000982768252, -0.0115385894, 0.00542048598, 0.0172450989, -0.00464613084, 0.0132477516, 0.00400432292, -0.00015347579, -0.000926958921, 0.0186961424, 0.0235655103, 0.00155307038, -0.00576580642, -0.0122571355, 0.0131919421, -0.00577627076, 0.0111758281, 0.00895042904, -0.00125658303, -0.00521468883, -0.0157801025, 0.00413338235, -0.0183473341, 0.00170480215, -0.0286860224, -0.000548937591, 0.00523561751, 0.00271198712, -0.000796155713, -0.00370783568, 0.00203181035, 0.0177334305, -0.00441940548, 0.00352819916, 0.00710174348, -0.0175939072, -0.00860859733, -0.0248770304, -0.0149987713, -0.0177892409, 0.0216540396, -0.0063692457, 0.00754124252, 0.0172032416, -0.0198402349, -0.0112874471, -0.0232585594, 0.0160033405, -0.0195611883, 0.00391014479, 0.0109595675, 0.000749502564, -0.0276395958, -0.00952945184, 0.0149429617, 0.00555652147, -0.030695159, 0.0143848676, 0.0212773271, -0.00337123545, 0.00792493206, -0.012857086, 0.00580068771, -0.0163940061, -0.0186821893, -0.00915971491, 0.00833652634, -0.0406292304, 0.0224493239, 0.0155847697, -0.00372178806, -0.00536467647, -0.016700957, -0.0228260364, -0.00480658282, -0.0102270693, 0.00386828766, -0.00278174877, 0.00187310239, 0.00464961911, 0.00890159607, 0.00580766378, -0.00821793173, -0.0143848676, 0.00223063119, 0.00185915, -0.00634482875, 0.00254455884, 0.00815514568, -0.00810631271, 0.000823624374, -0.0181380492, -0.0113711609, -0.0215703249, -0.023970129, 0.0163940061, -0.00110833941, 0.0188496187, 0.0104642585, -0.0230074171, -0.00701802969, 0.0156126739, -0.00531235524, -0.0165056251, 0.0189472847, 0.0140569881, 0.00647388818, -0.0116641605, -0.0255048871, -0.00325787254, 0.0204122812, 0.00280790939, -0.0181799065, -0.0280721188, -0.0166311953, -0.000497052271, -0.00512399897, 0.0209424701, -0.00945969, -0.00394153735, -0.00243817223, 0.0178310964, -0.0278907381, 0.0371411443, 0.00711918389, -0.0223795623, 0.000294089288, 0.00567162829, -0.0075621712, -0.0192821417, 0.0517911054, 0.0156684835, 0.00229516067, -0.0109944483, 0.00965502299, -0.020928517, -0.00387526397, 0.0301928744, -0.025700219, -0.00189577485, -0.00941783283, 0.0123896822, 0.0181101449, 0.0131500857, -0.00391712086, -0.00313578965, -0.00977361761, -0.00982245058, -0.00398339471, -0.0207889937, -0.00217133365, 0.000811852107, -0.00352296722, -0.00145976408, 0.0112874471, -0.01671491, 0.0142244156, -0.00098974444, -0.0125082778, 0.0117269456, -0.0101503311, 0.0127733722, -0.00265443372, -0.0113781374, -0.0225888472, -0.0190589037, -0.0285744034, 0.000671456626, 0.00685757771, 0.00779238483, 0.0217098482, 0.0103875212, 0.0279046893, 0.0104782116, 0.0137639884, -0.0036834192, -0.00634831702, 0.000787435449, 0.00700407708, -0.00201785797, 0.0071331365, -0.025379315, 0.00175886753, -0.0358854309, -0.0063134362, 0.0144964866, 0.0192402843, -0.00749240955, -0.0143848676, 0.0391781852, -0.00843419228, -0.00125396706, -0.0102479979, -0.0182636194, 0.0096619986, -0.00366597879, -0.0188914761, 0.0116850892, -0.0298859235, -0.00856674, 0.0390944704, -0.018877523, 0.000805311895, -0.0245142709, 0.0226027984, 0.0237747952, -0.00659597106, 0.00594718708, -0.00962711778, -0.00692036329, 0.00978059415, -0.00652620941, -0.00670759, -0.00028253498, 0.00263350504, -0.00116414879, -0.0134151801, -0.014315106, -0.00152690976, -0.0103386873, 0.01171997, -0.0015016211, 0.0148871522, 0.00980152283, -0.000614775228, -0.00175973948, -0.0196309499, 0.00254630297, -0.0099061653, -0.000772175088, 0.0357738137, 0.00221144664, 0.0107293529, -0.0114548756, -0.0205657575, 0.0182496682, 0.00958526134, -0.00611461513, -0.012152493, -0.0124106109, 0.00828769337, -0.00367993093, 0.017035814, 0.026258314, -0.00332414615, 0.00908297673, -0.0127245383, -0.00256897556, 0.00154696626, -0.00923645217, 0.0144685814, 0.00649481686, -0.0325926766, 0.0193937588, -0.0110153761, -0.00802957453, 0.0153475795, -0.00886671524, 0.0171055757, -0.00805748, 0.00227248832, 0.00431127474, -0.00696570845, -0.0415221788, 0.00275384402, 0.0171334799, -0.0302486848, 0.00550071197, 0.00422407268, 0.0188635699, -0.00282883807, 0.00597858, -0.0129408, 0.0201053284, 0.00707035093, -0.00489378488, -0.0125222299, -0.0274163578, 0.0162544828, -0.0140011786, -0.00549722416, 0.00449963147, 0.0064111026, 0.00298056961, 0.0206355192, 0.00673200656, 0.0111409472, -0.00584952068, 0.0206913278, 0.0105479732, 0.0254769828, 0.00236666645, 0.00804352667, -0.0164637677, 0.00274338, -0.0305556357, 0.0227144174, 0.00745752826, 0.0261746, 0.0182496682, -0.0140011786, 0.0202169474, -0.00726219546, 0.0411594175, -0.00695524411, -0.00187310239, -0.00446823845, -0.00117199693, -0.00135512149, -0.0389828533, 0.00626111496, 0.0109456144, 0.00280442135, 0.0427220799, 0.0123199206, -0.016924195, -0.00657504285, -0.00603438914, 0.00845512096, 0.00777843222, 0.0112107089, -0.00420663226, 0.00292999251, -0.00682269689, -0.0141197732, -0.0192123801, 0.00665178057, 0.014043035, -0.00591928232, 0.000290383177, 0.0208866615, 0.0101363789, -0.00434266729, 0.0289929733, -0.0216261353, -0.00121385406, 0.0029613853, -0.0106247105, -0.00733195757, -0.0334577225, -0.00724126725]
10 Jul, 2022
multiset cbegin() and cend() function in C++ STL 10 Jul, 2022 The multiset::cbegin() is a built-in function in C++ STL which returns a constant iterator pointing to the first element in the container. The iterator cannot be used to modify the elements in the set container. The iterators can be increased or decreased to traverse the set accordingly. Syntax: constant_iterator multiset_name.cbegin() Parameters: The function does not accept any parameters. Return value: The function returns a constant iterator pointing to the first element in the container. Below programs illustrate the multiset::cbegin() method. C++ // C++ program to demonstrate the // multiset::cbegin() function #include <bits/stdc++.h> using namespace std; int main() { int arr[] = { 14, 10, 15, 11, 10 }; // initializes the set from an array multiset<int> s(arr, arr + 5); // Prints the first element cout << "The first elements is: " << *(s.cbegin()) << endl; // prints all elements in set for (auto it = s.cbegin(); it != s.cend(); it++) cout << *it << " "; return 0; } Output: The first elements is: 10 10 10 11 14 15 The multiset::cend() is a built-in function in C++ STL which returns a constant iterator pointing to the position past the last element in the container. The iterator cannot be used to modify the elements in the set container. The iterators can be increased or decreased to traverse in the set accordingly. Syntax: constant_iterator multiset_name.cend() Parameters: The function does not accept any parameters. Return value: The function returns a constant iterator pointing to the position past the last element in the container in the container. Below programs illustrate the multiset::cend() method. C++ // C++ program to demonstrate the // multiset::cend() function #include <bits/stdc++.h> using namespace std; int main() { int arr[] = { 14, 10, 15, 11, 10, 15, 17, 17 }; // initializes the set from an array multiset<int> s(arr, arr + 8); // prints all elements in set for (auto it = s.cbegin(); it != s.cend(); it++) cout << *it << " "; return 0; } Output: 10 10 11 14 15 15 17 17 Let us see the differences in a tabular form -: multiset cbegin() multiset cend() 1. It is used to return a const_iterator pointing to the first element in the container. It is used to return  a const_iterator pointing to the past-the-end element in the container. 2. Its syntax is -: const_iterator cbegin(); Its syntax is -: const_iterator cend(); 3. It does not take any parameters It does not take any parameters. 4. Its complexity is constant. Its complexity is constant. 5. Its iterator validity does not changes. Its iterator validity does not changes. Learn C++ Online – Master everything from basics to advanced concepts. Apply your knowledge with practical exercises and boost your skills. Take the Three 90 Challenge: finish 90% in 90 days for a 90% refund. Start now and level up your C++ programming!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum/Algorithm for Dynamic Time out timer Calculation/Difference between Round trip time (RTT) and Time to live (TTL)/Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms/Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm/Round Robin Scheduling Algorithm with Different Arrival Time/Selfish Round Robin CPU Scheduling/Find the order of execution of given N processes in Round Robin Scheduling/Calculate server loads using Round Robin Scheduling/set::lower_bound() Function in C++ STL/Implementation of lower_bound() and upper_bound() in List of Pairs in C++/Difference between std::set::lower_bound and std::lower_bound in C++/Difference between std::set vs std::vector in C++ STL/std::minmax() and std::minmax_element() in C++ STL/std::rotate vs std::rotate_copy in C++ STL/std::bitset::to_ullong and std::bitset::to_ulong in C++ STL/std::upper_bound and std::lower_bound for Vector in C++ STL/std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++/std::string::append vs std::string::push_back() vs Operator += in C++/Vector push_back() in C++ STL/vector :: cbegin() and vector :: cend() in C++ STL/unordered_multiset cend() function in C++ STL/unordered_multiset bucket() function in C++ STL/unordered_multiset emplace_hint() function in C++ STL/unordered_multiset end() function in C++ STL/unordered_multiset size() in C++ STL/unordered_multiset emplace() function in C++ STL/unordered_multiset find() function in C++STL/unordered_multiset erase() function in C++ STL/unordered_multiset clear() function in C++ STL/unordered_multiset swap() function in C++ STL/unordered_multiset bucket_size() function in C++ STL/unordered_multiset bucket_count() function in C++ STL/unordered_set bucket_count() function in C++ STL/unordered_set cbegin() function in C++ STL/array::cbegin() and array::cend() in C++ STL/array::rbegin() and array::rend() in C++ STL/multimap rbegin in C++ STL/vector rbegin() and rend() Functions in C++ STL/multiset rbegin() and rend() function in C++ STL/map rbegin() function in C++ STL/map upper_bound() function in C++ STL/Set upper_bound() in C++ STL/multimap upper_bound() function in C++ STL/multimap empty() function in C++ STL/multimap value_comp() function in C++ STL/multimap swap() function in C++ STL/multimap::swap() in C++ STL/multimap equal_range() in C++ STL/unordered_set equal_range in C++ STL/set vs unordered_set in C++ STL/unordered_set count() function in C++ STL/unordered_set bucket() function in C++ STL/unordered_set emplace() function in C++ STL/set::emplace() in C++ STL/multiset::emplace() in C++ STL/multiset find() function in C++ STL/multiset cbegin() and cend() function in C++ STL
https://www.geeksforgeeks.org/multiset-cbegin-and-cend-function-in-c-stl?ref=asr10
PHP
multiset cbegin() and cend() function in C++ STL
unordered_multiset clear() function in C++ STL, What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, jQWidgets jqxTreeMap width Property, Round Robin Scheduling Algorithm with Different Arrival Time, Difference between Flow and TypeScript, unordered_multiset emplace() function in C++ STL, jQWidgets jqxTree destroy() Method, unordered_set bucket_count() function in C++ STL, jQWidgets jqxTree collapseAll() Method, Find the order of execution of given N processes in Round Robin Scheduling, jQWidgets jqxScrollView buttonsOffset Property, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Vector push_back() in C++ STL, jQWidgets jqxListBox enableHover Property, Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm, std::rotate vs std::rotate_copy in C++ STL, Selfish Round Robin CPU Scheduling, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxSlider buttonsPosition Property, std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++, std::upper_bound and std::lower_bound for Vector in C++ STL, Difference between Round trip time (RTT) and Time to live (TTL), jQWidgets jqxSlider rtl Property, Difference between std::set::lower_bound and std::lower_bound in C++, jQWidgets jqxTooltip opacity Property, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, unordered_multiset erase() function in C++ STL, multiset find() function in C++ STL, set vs unordered_set in C++ STL, jQWidgets jqxToolBar height Property, PHP, std::minmax() and std::minmax_element() in C++ STL, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, unordered_set emplace() function in C++ STL, unordered_set bucket() function in C++ STL, map rbegin() function in C++ STL, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, map upper_bound() function in C++ STL, Node.js date-and-time Date.transform() Method, unordered_multiset size() in C++ STL, TypeScript Optional Parameters, jQWidgets jqxToolBar theme Property, Difference between std::set vs std::vector in C++ STL, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, Steps to Diagnose and Resolve a Slow Network, How to use Optional Chaining with Arrays and Functions in TypeScript ?, Calculate server loads using Round Robin Scheduling, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, jQWidgets jqxScrollView showButtons Property, set::emplace() in C++ STL, Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms, jQWidgets jqxScrollView disabled Property, jQWidgets jqxSplitter destroy() Method, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, set::lower_bound() Function in C++ STL, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, jQWidgets jqxTree collapseItem() Method, multimap upper_bound() function in C++ STL, std::string::append vs std::string::push_back() vs Operator += in C++, unordered_multiset swap() function in C++ STL, unordered_multiset cend() function in C++ STL, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), Set upper_bound() in C++ STL, jQWidgets jqxSortable opacity Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, multiset cbegin() and cend() function in C++ STL, multimap rbegin in C++ STL, vector :: cbegin() and vector :: cend() in C++ STL, multimap swap() function in C++ STL, jQWidgets jqxSlider height Property, jQWidgets jqxSwitchButton onLabel Property, unordered_multiset bucket_size() function in C++ STL, unordered_set cbegin() function in C++ STL, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, jQWidgets jqxToolBar tools Property, multimap empty() function in C++ STL, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTree width Property, multimap::swap() in C++ STL, multimap equal_range() in C++ STL, Implementation of lower_bound() and upper_bound() in List of Pairs in C++, jQWidgets jqxTree clear() Method, TLS Handshake?, multiset rbegin() and rend() function in C++ STL, Algorithm for Dynamic Time out timer Calculation, Adhoc TCP, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, jQWidgets jqxTabs position Property, Differences between Wireless Adhoc Network and Wireless Sensor Network, jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, std::bitset::to_ullong and std::bitset::to_ulong in C++ STL, unordered_multiset emplace_hint() function in C++ STL, unordered_multiset bucket_count() function in C++ STL, unordered_multiset find() function in C++STL, unordered_multiset bucket() function in C++ STL, Impact of Three-way Handshake and Slow Start Algorithm, array::rbegin() and array::rend() in C++ STL, multimap value_comp() function in C++ STL, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, multiset::emplace() in C++ STL, unordered_set equal_range in C++ STL, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, unordered_set count() function in C++ STL, vector rbegin() and rend() Functions in C++ STL, array::cbegin() and array::cend() in C++ STL, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, unordered_multiset end() function in C++ STL, How to Sort an Array Having Optional Properties in TypeScript ?
GeeksforGeeks
[0.00355471345, 0.0082285637, -0.011812387, 0.0274026692, -0.00516549358, -0.0380377, -0.0488021076, 0.00555363344, 0.00382964592, 0.000708759413, -0.039098613, 0.012905648, -0.0161466151, -0.00524312165, -0.00215902762, -0.0262511875, 0.0515708402, 0.018371949, 0.0197433773, -0.00466738082, -0.00751050469, -0.0234307051, 0.000779109774, -0.0144258616, 0.00105768093, 0.0113013368, -0.0390209854, -0.0151115758, -0.0106932512, -0.0203773379, 0.00828031544, 0.00391374296, 0.0144905522, -0.0127633298, -0.0467320308, 0.0274026692, 0.0221369062, 0.0141024124, -0.0373390466, -0.0157972891, 0.0132096903, 0.00373584544, 0.0286964681, 0.00649810676, -0.029628003, 0.0481034555, -0.0159266684, -0.0446878262, -0.00981993694, -0.013817776, 0.0200797655, 0.0283083282, 0.0455934852, 0.00182910869, 0.0308182985, 0.0160301737, 0.0205067191, 0.0202350207, -0.0153573975, -0.0232754499, -0.0130609041, -0.0305595398, 0.0118641397, -0.0308959261, 0.005999994, 0.0212700609, -0.0649487227, 0.0537702963, 0.0220334, -0.00577034475, -0.0348808281, 0.0210242383, 0.00180970179, -0.00932182372, -0.0349325798, -0.0248150695, -0.00325228786, 0.00372937648, -0.025086768, 0.0350619592, -0.0245045591, 0.0165218171, -0.00235148, 0.00160269381, 0.0451535955, -0.0339492932, -0.000664689403, -0.0252549611, 0.0516484678, 0.0182037558, -0.0284377076, -0.0107708788, -0.00453800103, -0.021451192, -0.0207784157, -0.00583826937, 0.0330953859, 0.0117347594, -0.0407805517, 0.0217746422, 0.00958058331, 0.0084485095, 0.00698651606, -0.0143870478, 0.00777573371, 0.0482845902, 0.033457648, 0.0121940579, -0.0181261282, -0.0135072647, 0.00964527391, 0.0212829988, 0.0018824779, 0.0771621913, -0.0267298929, -0.0140377218, 0.00189865043, -0.0102857044, 0.0366403945, 0.013817776, -0.0151892034, 0.00439244835, 0.0170522742, 0.0478446968, -0.0564096496, 0.00240161479, -0.00875902083, 0.0205584709, -0.00945120398, 0.00800214894, 0.014542304, -0.035424225, 0.0064787, -0.0342598036, 0.0083450051, 0.00509756897, 0.0240646657, 0.0358899906, -0.00918597449, -0.0302490275, -0.0466026515, -0.0207913537, 0.00802155584, 0.0453347266, -0.0430317633, -0.0508980639, -0.00630080234, 0.0631374046, -0.00434716558, -0.00610349793, -0.0566166565, 0.0169228949, 0.0406770483, -0.0159266684, -0.00909540895, -0.0423072353, 0.0311288107, -0.0106414994, 0.0164700653, -0.0283083282, 0.0129444618, 0.0273250416, 0.0132873189, -0.0202608965, 0.00781454798, 0.0373908, 0.0308441743, -0.000584635534, -0.046162758, 0.0451277196, -0.000920214748, 0.0216711387, -0.0197821911, -0.0248021316, 0.00745875295, -0.0224732943, 0.0319827199, -0.000644878077, 0.0194716789, 0.0234048292, 0.013998908, -0.00327331224, 0.00320700486, -0.010550933, 0.00187762617, 0.00896602869, 0.0447395779, -0.0325261131, 0.0228484944, 0.0101822, 0.0170005225, -0.0109972935, 0.0465767756, 0.0127827367, 0.0385293439, 0.00954823848, -0.0415568314, 0.0150468852, 0.0171169639, 0.0422813594, -0.00662425207, -0.0140377218, 0.0400301479, 0.0130673731, 0.0444549434, -0.000487196288, 0.0019390817, -0.0203126483, 0.00515579, -0.00976818427, -0.0117929801, -0.000776279543, 0.0392279923, -0.00839028787, 0.0232236963, 0.00839028787, -0.0540808104, 0.0202738345, -0.0106350305, -0.0336387828, 0.00949648675, -0.0355277285, 0.0473789312, -0.0555298664, -0.047611814, -0.0326813683, 0.0202738345, 0.0151762655, -0.0257595442, -0.00768516771, 0.0134943267, 0.0278166849, -0.0326813683, -0.00997519214, 0.00969055668, -0.0123493141, -0.0278943125, -0.0151892034, -0.0169875845, 0.0340786725, 0.0141153503, 0.0396420099, -0.0406252965, 0.000252088706, 0.0380118228, 0.0390468612, 0.00242587365, -0.0233013257, -0.0223439131, -0.0451277196, 0.0109908246, 0.023637712, 0.047999952, -0.00921185128, 0.00683772936, 0.00377142499, 0.0177897401, -0.00293368986, -0.0135202026, -0.00642371317, 0.012899179, 0.0321121, -0.0134037603, 0.0134296361, 0.015460901, 0.00907600205, 0.0324743614, 0.00799568, -0.0292139873, -0.03273312, 0.0133778844, -0.0135331405, 0.0109908246, -0.0312840678, 0.000919406128, 0.0176732987, -0.0143094203, 0.0115859723, 0.0136495819, -0.030714795, 0.00115714176, -0.0356829837, 0.0240776036, -0.000962263206, 0.0424366146, -0.0297056306, -0.0208560452, -0.00627492648, -0.00225121062, -0.0264711324, -0.0243881159, -0.0173886623, 0.00123153522, 0.0195622444, 0.0309218019, 0.0372872949, -0.00472883647, -0.0350619592, -0.0254878458, -0.0300161429, -5.90801319e-05, -0.00169811153, 0.00967115, -0.0462662615, -0.00720646186, -0.0310511831, 0.0268851481, -0.00835147407, 0.0362522565, -0.0190188494, -0.0176862366, -0.0623093732, -0.00621023634, 0.0135848923, 0.0227449909, -0.0311029349, 0.0150857, -0.0111525496, -0.0159525443, -0.00498436159, 0.0067406944, -0.0276873037, 0.0126016047, 0.0271956604, 0.00477411924, -0.038710475, -0.00837735, 0.0301714, -0.0109972935, -0.0474306829, -0.0197175015, 0.00890780799, -0.0207654778, 0.00921185128, -0.0343374312, -0.0270145293, -0.0137660243, 0.00465444289, 0.027273288, 0.0249832645, -0.0176474229, -0.000777492474, -0.0188118406, 0.0270404052, 0.0041239853, 0.000758085516, 0.0163148083, -0.00900484249, 0.0117800422, -0.00873961393, 0.000791239145, -0.0159654822, -0.0193423, -0.0278684366, 0.0440409258, -0.00342209917, -0.0122458106, -0.0477929451, 0.00473530544, 0.0165606309, -0.00925713405, 0.0335352756, 0.0127633298, 0.0444031917, 0.00126549741, -0.0355018526, 0.00336064352, -0.0231072549, 0.0224474166, -0.00757519482, 0.0109584797, -0.0327072442, 0.0397455133, 0.022537984, -0.00730349682, -0.00713530323, 0.0146975601, 0.0326554924, 0.00635902351, -0.00638813386, -0.0157455374, 0.0367180221, -0.00640754076, -0.00349325803, 0.00543395709, -0.0300937705, 0.00504581723, 0.0279460642, -0.00201994414, -0.0129315238, -0.0114307161, 0.016897019, -0.01636656, -0.0103956768, -0.0150598232, 0.00305821793, -0.0354759768, -0.0462403856, -0.0188506562, -0.0385810956, 0.0273767933, -0.0106156226, 0.00912775379, -0.0156032192, -0.0163536221, -0.00520754186, -0.0065401555, -0.0397455133, 0.00879136566, 0.0354759768, -0.00267816451, -0.0240258519, 0.0216840766, -0.00567654427, 0.0322414786, 0.0254231561, -0.0290328562, 0.0329918824, 0.0176603608, 0.00112479669, 0.00166091486, -0.0386328474, 0.00441185571, 0.0011628021, 0.0376236811, 0.0227061771, 0.0107385339, 0.013998908, 0.000845821283, 0.034699697, -0.0317757092, 0.0233660154, 0.0335352756, 0.0187859647, 0.0158490408, -0.0390468612, 0.0390727371, -0.0202867724, -0.0302749034, -0.0150986379, 0.0512344502, 0.0278166849, 0.0268592723, -0.0241164193, -0.000974392577, 0.0290587321, -0.0393573754, -0.00370996934, 0.00441509, -0.0103374561, -0.0314910747, 0.000377627672, 0.0157714132, 0.0130479652, 0.0202350207, -0.0236765258, 0.0511568226, -0.0298867635, 0.0574446879, 0.0253067147, 0.00490996847, 0.0188247804, -0.0196657497, 0.0121617131, 0.0422813594, -0.00951589365, 0.000697843, 0.026005365, -0.00371320383, -0.000348112866, -0.00359352748, -0.0296021271, 0.00252776034, 0.0169228949, 0.0191223528, 0.00535956351, -0.00157034886, -0.0156420339, -0.0343115553, -0.0179579332, 0.0305077862, -0.0106091537, -0.0651039779, -0.00766576082, -0.0174662899, -0.00782101694, -0.00569918565, -0.0248280074, -0.0202738345, 0.0147493118, -0.0104215527, 0.00855848193, -0.00582209695, -0.0351913385, 0.0191482287, 0.028903475, -0.0391762406, 0.0118900156, -0.0101563241, -6.63577521e-05, 0.0394867547, -0.0210501142, -0.0284118317, 0.0217617042, 0.0238188449, -0.0377013125, -0.0253196526, -0.00439244835, -0.0286447164, -0.00174339453, -0.0272991639, 0.0257595442, 0.0194587409, -0.00366145186, -0.00978759117, 0.0171040259, 0.0481552072, 0.00305174896, -0.0459298752, 5.23584386e-05, 0.0328366272, 0.00143692584, 0.00900484249, 0.0310511831, 0.00297412113, 0.0223956648, 0.00160350243, 0.000268261181, -0.0141153503, -0.0363040082, -9.72244652e-06, 0.00288032065, -0.0115859723, 0.00927007198, -0.012711578, -0.0233918913, -0.00938651338, 0.00974877737, -0.0392021164, -0.000324662746, -0.0384775922, 0.0140247839, 0.00893368386, -0.00347061665, -0.0200668275, -0.00719999289, 0.0015072762, 0.00917950552, -0.00372290751, 0.00110215531, 0.00918597449, 0.0272474121, -0.00916009862, -0.0175568555, -0.0174404141, 0.0166900102, -0.00122021441, 0.00280754431, 0.00316819106, -0.0173110347, 0.0066307215, 0.0407546759, 0.04577462, 0.0126145426, -0.00577357924, -0.0150857, -0.00793098938, 0.00502641033, -0.00144096895, 0.0306371674, -0.00470619509, 0.000575336337, 0.0434457809, -0.00221724855, 0.0233660154, 0.0156937856, 0.0194975547, 0.019096477, -0.00914716069, 0.0137142725, -0.000817519438, -0.0267557688, 0.00989756454, -0.0508463122, -0.0145164281, 0.0117024146, -0.0210371763, -0.00514932116, -0.0149563197, -0.000745956146, -0.00314069772, 0.00100997207, 0.0226932392, 0.00824150164, 0.00335417455, -0.0198727567, 0.00598705607, 0.0117024146, -0.0289293509, 0.0012533681, 0.0266005136, 0.000661050552, 0.0142576676, -0.0352948457, -0.0152927078, -0.0219816491, 0.00532074971, 0.0152280172, 0.00749756675, -0.0213088747, -0.041634459, 0.0149433818, 0.0111137358, 0.00495848572, 0.00117088831, 0.0156032192, 0.0119676432, -0.0057412344, -0.0267040171, 0.0105962157, -0.0441961847, 0.0109778866, -0.00831912924, 0.0106932512, 0.00178544305, 0.0125110392, -0.000435444323, -0.0257854201, -0.00587708317, -0.0285412129, 0.00210242392, 0.00144824653, 0.0211277418, 0.0161336772, 0.0036097, 0.0014393517, -0.0150210094, 0.0262511875, -0.011074922, 0.0282307, -0.0266781412, 0.0204161517, 0.0127309849, 0.0343374312, 0.00599352503, 0.0195751823, -0.00807330757, 0.0478188209, 0.00754931895, -0.0100528207, -0.0270921569, 0.0217099525, -0.00736818695, -0.00429864787, -0.0058318004, -0.0328366272, 0.0029159002, 0.0211148039, 0.000746360456, 0.00501670688, 0.0140506597, -0.0388657302, 0.00111509324, 0.00517843151, 0.00777573371, -0.014542304, -0.0364333875, 0.00747169089, 0.000537735352, -0.00709002, -0.032344982, -0.0052528251, -0.000850673, 0.00376495579, 0.00299191079, -0.0149175059, -0.0312840678, 0.0286705922, -0.000484366115, -0.018164942, 0.00942532811, -0.0380894504, -0.0187471509, -0.028903475, -0.0059805871, 0.006727756, 0.00120242476, -0.00558597827, 0.0149951335, -0.0466026515, 0.00998813, -0.0228226185, 0.0159137305, 0.0113854334, -0.001477357, -0.0106285615, 0.0093477, -0.0031552529, 0.00174824626, -0.0260183029, 0.00152344862, -0.00881077349, -0.0297573842, -0.00901131239, -0.00935416855, 0.0568236634, -0.000551077654, -0.0189800356, 0.0179838091, 0.0256689768, -0.00945120398, -0.0134684509, -0.0237024035, 0.00125175074, 0.00136010651, -0.0134037603, 0.0122716865, -0.0165606309, 0.0105315261, -0.0383482091, 0.0159007926, -0.00716764806, -0.0041627991, 0.00056846306, 0.0460851304, 0.00291913468, 0.00475794682, -0.00912128482, -0.00719999289, -0.00581562752, -0.0322932303, 0.00537250144, -0.0194846168, 0.00112641405, -0.0273767933, -0.0163536221, 0.0166770723, -0.0175309796, 0.00304042827, 0.00573153095, -0.00477735372, 0.015460901, -0.0266005136, -0.00527546648, 0.00582533143, -0.0189282838, 0.0237929691, -0.00291751744, -0.02436224, 0.0406252965, 0.0267298929, 0.0218652077, 0.0309218019, -0.00862317253, 0.00346738216, -0.0311546866, 0.0086490484, 0.0115148136, 0.0164959412, -0.00771751255, 0.0434975326, 0.00965821184, -0.00811859, 0.0420226, -0.0316463299, 0.0205196571, -0.0123881279, 0.0288517233, 0.0209336728, 0.0182296317, -0.0108291, -0.0195363685, 0.0283342041, 0.00633638212, 0.00701239193, -0.0186436474, -0.0116247861, 0.00477735372, 0.00860376563, 0.0160948634, -0.0217358284, 0.0497853979, 0.0170005225, 0.0152797699, 0.0131385317, -0.00897249766, 0.00915363, 0.00821562577, 0.0436786637, -0.0318792127, -0.0267557688, 0.00116199348, 0.0349843316, 0.0320344716, -0.00191482296, -0.0356829837, -0.00553746102, -0.0402630344, -0.060705062, -0.0137789622, 0.0333541445, 0.000710376655, -0.00603880826, -0.0135072647, 0.0153444596, -0.0201315172, -0.0315428264, 0.0232883878, -0.00284150662, 0.00912128482, 0.0170652121, 0.00632667867, -0.0231460687, 0.00650457572, 0.0115342205, 0.0215417575, 0.00443126261, 0.0237541553, 0.00339298858, 0.00637196144, 0.0210371763, -0.0170393363, 0.0135460785, -0.0182813834, -0.0503805429, 0.0158619788, 0.0348032, 0.0190188494, 0.0263676289, 0.010188669, -0.00208948576, 0.023805907, -0.0139730321, 0.0141412262, -0.00309864921, 0.0213865023, -0.000574932, -0.00690241903, 0.00936063752, 0.0299126394, -0.0113854334, 0.00644958951, -0.0343891829, -0.00441509, -0.00575093785, -0.0173886623, -0.0155773433, 0.0313875712, -0.0257336684, 0.00217034831, -0.00187600893, 0.0150857, 0.00014818045, 0.021257123, -0.00597088365, 0.0105315261, -0.0416603349, -0.016534755, -0.00672128703, 0.0138954045, 0.0042339582, 0.00906306412, 0.0148786921, 0.0102986423, 0.0157843512, 0.0184495784, 0.0161595531, -0.0112883989, 0.0222921614, -0.0189153459, 0.0101175103, -0.00473854, -0.028153073, -0.00761400862, 0.0214770678, -0.0260441788, 0.0176603608, 0.0313358195, 0.00116684521, -0.0183848869, 0.0372872949, -0.0165476929, -0.042358987, -0.0365110151, -0.0067601013, 0.0137401484, -0.00104636012, -0.0282048248, -0.0146328695, -0.0163148083, 0.0320344716, -0.00459945621, -0.0204808433, -0.0232366342, 0.0154738389, 0.00566360634, 0.0248538833, -0.0139600942, 0.00577357924, -0.0356053561, -0.00360323093, -0.0155126536, -0.00719999289, 0.0102598285, 0.0337681621, -0.00118220912, 0.0464732684, 0.0208172295, -0.0020716961, 0.00876549, 0.00909540895, -0.00903718825, -0.0309994314, -0.0258501098, 0.0109584797, -0.0027800512, -0.00512668, -0.0223439131, 0.013998908, 0.00824150164, 0.0199503843, 0.0270145293, -0.0102921734, 0.0171169639, 0.010906728, -0.0164183136, 0.0187600888, -0.00142883952, -0.0164053757, -0.00965174288, -0.0394091271, 0.00183719501, 0.0116506629, -0.00892074592, 0.000821562542, -0.0268592723, -0.0285412129, -0.0150598232, -0.0675363243, 0.000144238409, 0.00883018, -0.0032991881, 0.00510403793, 0.0070188609, -0.0176732987, 0.0137272105, -0.0410393141, -0.0137142725, -0.0168323293, -0.0143999858, -0.0148269394, -0.00658220379, -0.0210630521, -0.0401336551, -0.0086102346, 5.89285155e-05, -0.0143094203, -0.00349649251, -0.0129703376, -0.00298867631, 0.0183331352, -0.00515579, 0.0191352908, -0.0176086091, 0.0386069715, -0.0139600942, 0.00298382458, -0.00961292908, -0.0247762557, -8.70534859e-06, 0.0252161473, -0.00771751255, 0.0224862322, 0.0434716567, -0.00135687203, 0.0367180221, -0.025280837, -0.0161854289, -0.00502317585, 0.0141929779, 0.0343633071, 0.0436786637, -0.00654662447, 0.0194328651, 0.0142576676, 0.0276096761, -2.91357537e-05, -0.0144905522, -0.0281789489, 0.00970996358, -0.0263288151, -0.0208431054, 0.000574123405, -0.0230425652, 0.0225509219, 0.0460333787, 0.0243881159, 0.0111719565, -0.00145956734, -0.0112431161, -0.0254878458, 0.0067406944, -0.0324484855, 0.0200927034, 0.00931535475, -0.025811296, -0.02836008, 0.0320085958, -0.0138824666, -0.0200409517, 0.0214123782, -0.02836008, -0.00810565241, -0.0282824524, 0.0155514674, 0.0120905545, -0.00123719557, -0.0151762655, 0.0276614279, 0.000772236439, -0.00358382403, -0.032163851, -0.0433681533, 0.00102129276, -0.003135846, 0.00205390644, 0.0116636008, -0.0153573975, 0.00145552424, -0.0180743765, 0.00991050247, -0.00563449599, 0.0141282883, 0.042358987, -0.000153941903, -0.0219557732, 0.000550673343, -0.0313616954, 0.00245174952, -0.00575093785, 0.00985875074, 0.00264581945, -0.0194199272, -0.00191482296, -0.0066501284, -0.00591589697, -0.002590833, -0.0325778648, 0.00042008044, -0.00587384868, 0.00197304389, 0.0217228904, -0.0226673633, 0.0169099569, 0.0148528153, -0.00397843262, 0.0119288294, -0.0231590066, -0.0259018615, 0.00851319917, -0.00192614365, -0.00904365722, 0.0152021414, -0.00887546316, -0.0145811178, 0.029084608, 0.0261994358, -0.0106156226, 0.0186307095, 0.0149692576, 0.00992344, -0.0163148083, -0.0150598232, -0.0144129237, -0.00797627214, -0.00077304506, -0.0064787, 0.00613907771, 0.0408840589, -0.0197175015, -0.0193552375, 0.0123234382, 0.0237800311, 0.0301972758, 0.0369767845, -0.00500700297, -0.0122264028, 0.00230134535, -0.00404959172, -0.0222533476, -0.0172980968, 0.0240905434, 0.0123299072, 0.00917303655, 0.00707061309, -0.0178803056, 0.0244528055, 0.0430576392, -0.0166641343, -0.0118964845, -0.0307924226, 0.0239482243, 0.00158328691, 0.00675363233, 0.0138048381, 0.00494878227, 0.00308894576, 0.005909428, 0.0170005225, -0.0108679142, 0.0240517277, -0.0135202026, 0.0168582052, 0.026911024, -0.0224732943, -0.0304560345, -0.0112237083, -0.0212183073, -0.00480646454, 0.00904365722, 0.0111460807, 0.00974230841, 0.00707708206, 0.0099816611, -0.020170331, -0.0121034924, 0.0111137358, 0.00820268784, -0.00745228399, 0.0285153352, -0.00950942468, 0.0032797812, 0.000722101715, 0.00479029166, 0.0369767845, -0.00849379227, 0.0131579386, -0.00513314875, -0.0130091514, 0.00744581502, 0.0031164391, -0.0158361029, -0.0152021414, -0.00487438869, -0.0120517407, -0.00384905282, -0.000617789163, -0.00474177441, -0.0150598232, 0.0188506562, -0.00648840331, 0.00611643586, -0.00944473501, 0.0200668275, -0.0274285451, -0.00187277445, -0.010363332, -0.0141153503, -0.00309541472, 0.00971643254, 0.0106091537, 0.00215255865, 0.0316463299, -0.0149692576, -0.00912775379, 0.0217617042, -0.00376495579, -0.0306630433, 0.00070592924, 0.0292139873, -0.0104603674, -0.00538867386, -0.0108032236, 0.0031892152, 0.0144776143, -0.0265746377, 0.00443126261, -0.0061229053, 0.0301455222, -0.00821562577, 0.0286705922, 0.0050522862, 0.0172463451, -0.0283859558, 0.0177638642, -0.0125627909, 0.00876549, -0.011256054, 0.00800861791, -0.0169617087, -0.0069412333, -0.00963880494, 0.00796980318, -0.00199892, 0.0343891829, -0.0172851589, 0.00132452697, -0.0166123826, 0.0243234262, 0.0167935137, -0.0118447328, 0.00436657248, -0.0375719294, -0.000726549129, -0.00663719047, 0.00412722, 0.0100463517, 0.00908894, 0.0166641343, 0.0161595531, -0.000866845541, -0.0105768088, -0.0132420352, -0.0061423122, -0.000605659792, -0.0165606309, -0.0243493021, -0.0152538931, 0.0061423122, 0.000609298586, 0.00380700431, -0.0192905478, 0.0195493065, -0.00978759117, 0.00942532811, 0.0332765169, 0.0233272016, -0.0116441939, -0.00390403927, 0.0148657532, -0.00996872317, 0.00464797392, 0.0126468875, -0.00559891621, 0.0142059159, -0.0175956693, -0.0146716842, 0.0312064383, 0.0253196526, -0.012362252, -0.0245563108, 0.00513961772, 0.00028463584, 0.0175309796, 0.0155644054, 0.0273250416, -0.00869433116, -0.0296021271, -0.0254102182, -0.0148786921, 0.00993637834, -0.0116506629, -0.0184883922, 0.0171945915, 0.0336387828, -0.00324420165, -0.0395385064, -0.00692182593, 0.00325552234, 0.0316463299, 0.0118835466, 0.00288678962, -0.0149304438, 0.00930241682, -0.032163851, -0.0163406841, 0.0167805757, 0.0175439175, 0.0078663, 0.0201315172, -0.0249832645, 0.0146716842, 0.0230166893, 0.0102727665, 0.0269627776, -0.0145552419, 0.0203126483, -0.00251320517, 0.013080311, 0.00331859523, 0.00267493, -0.0379083194, 0.0298091359, -0.00292398641, 0.000729379361, -0.0236765258, 0.0119223604, -0.00136495824, 0.0140635977, -0.010544464, -0.0245821867, -0.00556980586, 0.0251514576, 0.0162501186, -0.006727756, -0.00272021303, -0.0155773433, -0.0165865067, 0.000460107374, -0.0165088791, -0.00717411702, 0.0209077969, -0.0257466063, -0.0192129184, -0.00064770825, 0.011631255, -0.000257749081, 0.0049811271, -0.00120970234, 0.00770457461, 0.0135202026, -0.00850026123, -0.010363332, 0.0129832756, 0.0440926775, 0.00467061531, -0.0134296361, 0.0329660065, 0.00570565462, 0.00318598072, -0.0273250416, -0.00426306855, 0.0320862234, 0.0203255862, 0.0220204629, -0.002226952, 0.00591913145, -0.033457648, 0.02436224, 0.00598705607, 0.0199115705, -0.00621023634, 0.013455512, 0.0207654778, -0.035812363, -0.0258371718, 0.00537250144, -0.010550933, 0.00754285, -0.00875902083, -0.0131838145, 0.018902408, -0.000158086099, 0.0145034902, -0.0137401484, -0.0162113048, -0.00443773158, 0.00180970179, -0.0207913537, 0.0213218126, -0.0115018757, 0.0104538985, 0.000353368931, 0.0215158816, -0.00127439224, -0.000563611335, -0.0348808281, 0.0208042916, 0.00807330757, 0.0069412333, 0.0146975601, 0.00560215069, -0.00710942689, -0.0213347506, -0.00280269259, -0.0182555076, -0.00739406282, 0.0285412129, 0.006908888, -0.00696064, 0.00198921631, -0.00919244345, -0.0294727478, 0.00875255186, -0.0101045724, 0.00709648896, -0.00863611, 0.0100592896, 0.0234307051, -0.0127827367, 0.00362263806, 0.00199406804, -0.0353724733, 0.00468678772, 0.0204032138, -0.000220552349, -0.00365498289, 0.0120388018, 0.00193422986, 0.00264096772, 0.011999988, 0.0203902759, 0.022952, 0.0093477, -0.0294209961, 0.0448430814, -0.00123234384, -0.0157843512, 0.0133649465, 0.0310253073, 0.00775632681, -0.00559568172, 0.00362587254, -0.00133989088, 0.020002136, -0.00649163779, -0.0284894593, -0.00497142365, -0.0253067147, -0.0272215363, 0.0284118317, 0.0277390573, -0.00756225688, 0.00900484249, -0.0050522862, 0.00298220734, 0.0118835466, 0.0136107681, -0.0261735599, -0.0239094105, 0.0315945782, -0.00093315274, -0.0243363641, -0.0104150837, 0.024724504, -0.0363298841, 0.0253455285, 0.0115989102, -0.00782748591, -0.00993637834, 0.00658220379, -0.00704473723, 0.0278684366, 0.00656603137, 0.0241811089, 0.0148657532, -0.00098894781, -0.0141153503, 0.025630163, -0.00732290372, -0.00631374028, 0.00831266, 0.000395417417, -0.0151762655, 0.0259148, -0.00791805144, 0.00502964482, -0.00929594785, 0.00729702786, -0.00119352981, -0.0025261431, -0.00194393343, -0.00395579124, -0.0118770776, 0.0269369017, 0.0040528262, 0.0326554924, -0.00693476433, -0.0307406709, 0.0130156204, 0.00751697365, -0.0147493118, -0.0140894745, 0.0142835444, -0.0131450007, 0.0143741099, 0.0524765, -0.00857788883, 0.00739406282, -0.00134635984, 0.00201024069, 0.0209724866, -0.000169002524, -0.00402048137, -0.0182166938, -0.0108032236, -0.00378759741, -0.0125239771, -0.0246080626, -0.0163924377, -0.0012008074, -0.0101433862, 0.0267557688, -0.00534986, 0.0101175103, -0.0269369017, -0.00451535964, -0.00766576082, 0.0111978324, 0.0211794935, 0.0098846266, 0.0016552544, 0.0211277418, 0.00954176951, -0.0298867635, -0.0112948678, -0.00327007775, 0.00633314764, 0.00267007831, 0.0249185748, 0.00338005065, 0.00101482379, 0.00190673664, 0.0195493065, -0.0187730268, 0.0447654538, -0.0259536132, 0.0137530863, 0.00115471589, -0.028153073, 0.0147751877, 0.0333800204, 0.0380118228, -0.0171299018, 0.0255395975, -0.00509433448, 0.010007537, -0.0348549522, -0.00290134479, -0.0052916389, -0.0194328651, 0.0232883878, -0.0411686935, 0.0200797655, 0.00145552424, -0.00348355458, -0.0172334071, 0.00922478922, -0.0159913599, -0.0173110347, 0.00170943234, 0.0196916256, 0.0252420232, -0.00883664936, 0.00118059188, -0.0248280074, 0.0172980968, 0.00870726909, -0.0172980968, -0.000450808177, 0.0152021414, -0.0128733031, 0.00997519214, 0.00405606069, -0.00264743669, 0.0254878458, 0.00109811209, -0.0111007979, -0.00758166378, -0.0111072669, -0.0102727665, -0.00912775379, -0.0124722254, -0.0158878546, 0.037261419, 0.0446878262, -0.0124916323, 0.00437627593, -0.0150598232, -0.0141024124, 0.00489379559, 0.0203773379, 0.034518566, 0.00963233598, -0.00458004931, -0.00729702786, 0.00972937047, -0.0138824666, 0.00641077524, -0.00244042883, 0.0101822, 0.0179061815, 0.00785336178, 0.00314878393, 0.00616171909, -0.0191094149, -0.0141671021, 0.0149175059, 0.0193423, -0.00188409514, 0.0282307, -0.00926360302, 0.0277390573, -0.0157972891, 0.026911024, -0.0230555031, 0.00198436459, -0.00680538407, 0.000929109578, -0.0165476929, -0.00803449377, 0.00892074592, 0.0211406797, 0.0115665654, -0.0129768066, 0.0286705922, -0.0293951202, -0.037261419, -0.0123040313, -0.00364527944, -0.00177735672, 0.0207396019, -0.0193940513, 0.0085843578, -0.00709648896, 0.00227385224, 0.0115536274, -0.0183460731, -0.0186565854, 0.0213476885, 0.00855201297, 0.0085649509, 0.00435686903, -0.00502641033, 0.00479999511, 0.0083450051, 0.0108096926, 0.0165606309, -0.00715471, 0.00431805523, 0.0271439087, 0.0053110458, 0.00871373806, -0.00282209972, -0.0130350273, -0.0167935137, -0.00705120619, -0.00362910703, 0.0175051037, -0.00497142365, -0.00376172131, -0.00211536186, 0.0120452717, -0.00267978176, -0.00519783841, 0.0204290897, -0.00791158248, -0.00639136834, 0.0180355627, -0.00249218079, 0.0255395975, -5.27627526e-05, 0.00908894, -0.0100981034, 0.0285412129, 0.00919891242, -0.00487762317, 0.00241455296, 0.00552128861, -0.003454444, 0.00482587144, 0.00544366054, 0.0220204629, -0.00455740793, -0.00226576603, -0.0175051037, 0.0217617042, 0.00278490293, 0.00581886247, -0.00768516771, 0.0271956604, 0.0151115758, 0.0199891981, -0.0048129335, 0.0201315172, -0.0102404216, 0.000756063964, 0.0122716865, -0.0331471376, 0.00791158248, -0.00743934605, 0.00425013062, 0.0159137305, 0.003181129, -0.0144776143, -0.00950942468, 0.00297250389, 0.0147363739, 0.0100269448, 0.0112043014, 0.00212021358, -0.00797627214, -0.0145940557, 0.0279460642, -0.0236894656, 0.0237670932, 0.000686926534, 0.00339945755, 0.000564824266, 0.00363557599, -0.0143094203, -0.0288517233, -0.0139212804, -0.00291913468, -0.00763988495, -0.00481616799, 0.00727762096, -0.00553422654, 0.0213088747, 0.0146587454, 0.022007525, -0.00981993694, -0.0370802879, -0.0235730223, 0.00163018703, -0.0033250642, -0.0117994491, -0.00627492648, 0.000780727, -0.00442155916, -0.0078663, 0.0013673841, 0.0161983669, -0.00732290372, -0.0177379884, -0.0223309752, -0.0222533476, -0.00379406638, 0.00798274111, 0.0057412344, 0.00759460172, -0.00110538979, -0.00829972234, 0.0134813888, 0.00960645918, -0.00798274111, -0.00170134602, -0.0172463451, 0.0126857022, -0.00972937047, 0.00853907503, 0.000881400774, 0.0102339527, -0.00780160958, 0.00608409103, 0.0128021436, 0.00175309798, 0.0155385295, 0.0102662975, -0.0226544254, -0.00375525234, -0.0111072669, 0.0122975623, 0.0196010582, 0.0114048403, -0.00811859, -0.0135848923, 0.00435363455, 0.00147978286, -0.00260377093, -0.0104280226, -0.00894662179, -0.0263676289, 0.0138695287, -0.00627492648, -0.0258759856, 0.0187859647, 0.0170393363, 0.0234307051, 0.00441185571, 0.00425013062, -0.0113660265, -0.0171557777, 0.00974230841, 0.0166123826, -0.0149692576, 0.0253196526, -0.00154609012, -0.0225509219, -0.0214253161, 0.00221563131, 0.0217746422, 0.00941885915, 0.0119417673, 0.015810227, 0.0331988893, -0.00669541117, 0.0202220827, 0.00560538517, -0.00150646758, 0.00310997, 0.0103503941, -0.011437186, -0.00634932, 0.00279460638, 0.00756872585, -0.00167708728, 0.00665659737, 0.00510403793, 0.0138954045, 0.0237800311, 0.00841616467, -0.0182296317, 0.000309905357, 0.0202350207, 0.00758166378, 0.00963880494, 0.0179708712, -0.00749109779, 0.0217099525, -0.0204808433, -0.0110619841, 0.00117331417, 0.0100204758, 0.010732065, 0.0065401555, -0.0083450051, -0.014904568, 0.00124043, -0.00396872917, -0.010732065, -0.00761400862, -0.0170652121, 0.0126016047, 0.00545659848, 0.00653368654, -0.0131385317, 0.000804177136, -0.0122975623, 0.00905659515, 0.0103180492, 0.00264905393, 0.000806603, 0.00848085433, -0.0208819211, 0.00449918676, -0.0218652077, -0.00876549, 0.0135719543, 0.0157455374, -0.00149514677, -1.78529135e-05, 0.00959352124, -0.000577357947, -0.00558274379, -0.00473207096, 0.0168193914, -0.00917950552, -0.00334770558, 0.000409164029, -0.00298705907, -0.0111590186, -0.0209077969, 0.0204420295, 0.00654662447, -0.0130285583, 0.00770457461, -0.0119158914, 0.0157196615, 0.00350296148, -0.000249056349, 3.82075086e-05, 0.0135719543, -0.0276096761, 0.0216064472, 0.0258242339, -0.00505552068, 0.00512021082, -0.0160042979, 0.0148010636, -0.0148398774, 0.0154091492, 0.0102210147, 0.0170781501, 0.0058318004, -0.00732290372, -0.0299385153, 0.00671481807, 0.00641400972, 0.0111784255, -0.00302749034, -0.00703179883, 0.0176086091, -0.0190576632, -0.0149951335, -0.0033897541, 0.00969702564, 0.00891427696, 0.00370996934, -0.0286705922, 0.0128215505, 0.00623287819, 0.0233530775, 0.0066695353, -0.015266831, 0.0299643911, 0.00323935, 0.0132032214, 0.0162371807, 0.0121940579, 0.00887546316, 0.025798358, -0.00130835455, -0.00355794793, 0.0172204692, -0.00855201297, 0.00243234262, 0.0125627909, -0.0153444596, 0.00111024152, -0.0226285495, 0.0134684509, 0.0169228949, -0.0109520108, -0.00675363233, -0.0058900211, 0.00536926696, 0.00226091431, -0.00368732796, 0.000838543638, 0.00727762096, -0.00460916, -0.0149951335, 0.0203385241, 0.00307762506, 0.0249703266, 0.0121164303, -0.00602587033, 0.0304301586, 0.00719352392, 0.00713530323, -0.000919406128, 0.00853907503, -0.0129832756, -0.0108485073, -0.0153315216, 0.00756872585, -0.0175051037, -0.031077059, 4.79804976e-06, -0.00134393398, -0.00685713626, -0.0195622444, 0.0196786877, 0.0280754436, -0.0325002372, -0.0182555076, 0.00850026123, 0.0216840766, 0.0197045635, 0.00847438537, 0.0104150837, 0.0199762601, -0.0222274717, 0.0216064472, -0.00465120841, -0.0318792127, -0.0033444711, 0.0100528207, -0.0242069848, 0.0238964725, 0.0160172358, 0.0289811045, -0.00330727431, 0.000441104698, 0.00796333421, 0.00322641199, 0.00569595117, -0.0111913634, -0.0159007926, -0.0120388018, 0.0179708712, -0.0230166893, 0.00073827419, -0.000689756765, -0.0163277462, -0.0190576632, 0.0105832778, 0.00520754186, 0.0305595398, 0.00112317945, 0.00196010596, 0.0167676378, 0.00645605847, -0.0173886623, 0.0066177831, 0.0067601013, 0.00669541117, -1.21104158e-05, -0.00226253155, 0.00252776034, -0.0102727665, -0.00654662447, -0.0275320485, 0.0182425696, 0.0165218171, 0.00432128971, -0.0285929646, 0.036148753, 0.0157584753, -0.00127358362, 0.027635552, 0.0169228949, -0.001681939, 0.0162889324, -0.0146716842, -0.00648840331, 0.00458328379, -0.0242587365, -0.0072194, 0.0103374561, -0.00469649117, 0.00110053807, -0.00641724421, -0.00268948521, 0.00974230841, -0.000473449676, 0.00985875074, 0.00442802813, -0.008364412, -0.00864257943, -0.0136883967, -0.0152150793, -0.0102080759, -0.00281563075, 0.0186954, 0.00408840552, 0.00342209917, 0.0251255818, 0.0135072647, -0.0104927123, 0.0121681821, -0.0349584557, -0.0207913537, 0.0120129259, 0.0149692576, 0.00303395931, 0.0148010636, 0.00725174509, -0.00354501, 0.0102727665, 0.0113013368, 0.00895309076, 0.00621670531, 0.0157067236, 0.0101951379, 0.00925066508, -0.0231201928, -0.00888193212, 0.0159784202, -0.001613206, 0.0124269417, -0.00802802481, 0.00753638055, -0.0157196615, -0.0288517233, 0.0168582052, -0.0176862366, -0.00155579369, 0.0330436341, 0.017802678, -0.0149304438, -0.0159654822, 0.0193940513, 0.0313358195, -0.00813152827, -0.0224474166, -0.00671481807, 0.00330727431, 0.00388786686, 0.0245045591, 0.00361940358, -0.00613584323, 0.0121228993, 0.0160301737, 0.011818856, -0.00437627593, -0.00749109779, -0.00468031876, -0.0187730268, -0.00545983296, 0.00561508862, -0.00453800103, 0.00601293193, 0.0213865023, 0.00661131414, -0.0110361082, 0.00969702564, -0.000472236745, 0.00629109889, -0.00895309076, -0.00573476544, -0.0110167, 0.00133099605, 0.020726664, -0.00184366398, -0.0188118406, -0.00580268959, 0.00156873162, -0.0170522742, -0.00372937648, 0.0100269448, -0.00317789451, 0.0126792332, -0.0180485, 0.0041433922, 0.0203385241, 0.00703826826, 0.0299643911, 0.00938004442, -0.0133390706, 0.0153703354, 0.00898543559, 0.0112819299, -0.0272215363, -0.0121617131, -0.0126921711, 0.0144905522, 0.00129622512, -0.0183848869, 0.00696064, -0.0274285451, -0.0171945915, 2.26288521e-05, 0.00284150662, 0.00546630193, 0.00304689724, 0.012905648, 0.0206490364, -0.0200797655, 0.0242069848, 0.00440862123, 0.0108355694, -0.00718705496, 0.00236927, 0.0196398739, -0.00763988495, 0.0200797655, 0.0183460731, -0.0107579408, 0.0114177782, 0.00362263806, 0.00422748923, 0.0133649465, 0.00469002221, 0.00392021192, -0.0033250642, 0.00414015772, -0.00732290372, -0.00971643254, -0.0193940513, 0.002136386, 0.0155514674, 0.0006153633, -0.0187083371, 0.0280236918, -0.00721293082, -0.0059223664, -0.0135978302, 0.0144258616, 0.0163277462, 0.0084485095, 0.0385293439, 0.00917950552, 0.0474306829, 0.00292722089, 0.0165735688, -0.0130544351, 0.000806603, -0.00317466, 0.0140506597, -0.00334123662, -0.0204808433, 0.000493665284, -0.00942532811, -0.0300161429, 0.0140635977, -0.0186048336, -0.00161078013, 0.00392344641, 0.00124689902, 0.00258274679, 0.00301778689, -0.00796980318, -0.0324226096, -0.0189670976, -0.000414824404, 0.0129897445, -0.00327492948, 0.0041045784, -0.0179579332, -0.0143094203, -0.0164571274, 0.0137660243, -0.00806683861, 0.010913197, 0.00213153427, -0.00265067117, -0.00850026123, -0.0015040416, -0.00517519703, -0.00187762617, -0.0200538896, 0.0110231694, 0.0270662811, 0.0340010449, -0.00851319917, -0.00380053534, -0.00190835388, 0.00128328719, 0.0234824568, -0.00687654316, -0.0093477, -0.00388463237, 0.0243493021, -0.00199406804, 0.0124916323, -0.000871697266, 0.012174651, 0.00437951041, 0.00888840109, 0.00272344751, -0.00564419944, 0.0012954165, -0.00141994469, -0.0175051037, -0.00729702786, -0.00716117909, -0.0270662811, 0.00714824116, 0.0155255916, 0.00750403572, -0.00362263806, -0.0153056458, -0.00413692323, 0.0300420187, -0.00309541472, 0.0147493118, 0.0105056502, 0.015823165, 0.0436010361, 0.0163406841, -0.0252161473, 0.0138048381, -0.00270242314, -0.00396872917, -0.0134166982, -0.00358058955, -0.0040722331, 0.0158361029, -0.00562155806, 0.00604527723, -0.0120323328, -0.00142641366, 0.0207913537, 0.0198210049, -0.000343665422, -0.00173854281, 0.0200668275, -0.0189541597, 0.00576387579, 0.0193552375, 0.0203126483, -0.0300678946, -0.00480322959, 0.00899190456, -0.0180743765, -0.000808624551, 0.0336646587, 0.0133520085, 0.000955794239, -0.00191158848, -0.000849055767, 0.0259018615, -0.00318274624, -0.0372872949, -1.32791311e-05, -0.00347708561, 0.0254619699, 0.00108598277, -0.0171557777, 0.00264905393, 0.00613260875, 0.0179191194, -0.019096477, -0.0100398827, -0.0128086125, 0.0162759945, 0.00459945621, -0.0144517375, 0.0105962157, 0.0186954, -0.0178803056, -0.0127892056, 0.025280837, -0.0232107583, 0.0415309556, -0.00358705851, -0.00799568, 0.0216970146, 0.00748462882, -0.00113692612, 0.00997519214, 0.0220592786, -0.00527546648, 0.0124204727, -0.0113272127, -0.0224474166, 0.010001068, -0.0195493065, 0.00581886247, -0.0127892056, 0.0216582, 0.0065983762, -0.0160172358, 0.0139342183, -0.00538543938, -0.0067795082, 0.0194328651, -0.0192129184, 0.0245951246, 0.0072194, 0.00545659848, 0.00948354881, -0.000503368792, 0.0134296361, 0.0297573842, -0.0287482198, -0.000861185137, 0.0164700653, -0.0190447252, -0.0208560452, -0.0166511964, -0.0107450029, 0.00698651606, 0.00172237027, -0.00642694812, -0.0135719543, 0.00800861791, 0.0185660198, -0.0180743765, -0.0311029349, 0.00845497847, 0.0162371807, -0.0015185969, 0.0125239771, -0.0043504, 0.0168323293, 0.0107450029, -0.00821562577, -0.0145811178, -0.00285767904, 0.0107708788, 0.0137401484, 0.0107514719, 0.016728824, -0.0129379928, -0.00588678662, 0.00661131414, -0.000339420163, -0.0159913599, 0.0330436341, -0.000933961361, -0.00196819217, 0.0335094, -0.00366145186, -0.0204032138, -0.0263029393, 0.0159007926, 0.0175956693, -0.0154997157, 0.0139730321, -0.0196269341, -0.010175731, -0.00746522192, 0.00989756454, -0.00958705228, -0.00518813496, -0.00930241682, -0.00776279578, 0.00533045316, -0.00671481807, 0.0016358475, 0.0162889324, -0.00247115665, -0.0239223484, 0.0228355564, -0.0164571274, 0.0264064427, 0.00986522, 0.00947708, -0.00549541228, -0.0127633298, -0.0290069804, -0.00671481807, 0.0162242427, -0.0123428451, -0.0142576676, 0.00481940247, -0.00840322673, -0.0102727665, 0.0175180417, -0.00636225799, 0.0207784157, -0.0189541597, 0.00111428462, 0.00732290372, -0.0163018703, 0.0151503896, -0.0140894745, -0.0203255862, -0.0191870425, -0.0155126536, 0.00978759117, 0.022007525, 0.00613584323, -0.022369789, 0.0295762513, -0.00520430738, -0.000808624551, 0.000455659931, -0.0204679053, 0.000531266327, -0.0118770776, -0.00118301774, 0.016728824, -0.00409164, -0.0240905434, -0.00222371751, 0.00921185128, 0.0134166982, -0.017621547, -0.0154220872, -0.00276711327, 0.0255525354, -0.0119482363, 0.008364412, -0.00845497847, -0.0196528118, 0.00645282399, -0.0122910934, 0.0166123826, 0.00765282288, 0.00512021082, 0.00563773047, 0.00696064, -0.0149175059, 0.010550933, 0.0223827269, 0.00998813, -0.0182296317, -0.00196334044, 0.00600646297, -0.00553099206, 0.025630163, -0.00218005176, 0.0136883967, 0.00935416855, 0.00609056, 0.0137272105, 0.0161983669, -0.00532074971, -0.00932182372, 0.0183848869, -0.0293433685, 0.00469972566, -0.0241164193, -0.00469972566, 0.0183460731, -0.00410781289, 0.00050094293, -0.00857788883, -0.0119029535, -0.00625551958, 0.00480969902, 0.0109261349, -0.0201185793, 0.0212829988, -0.00672128703, -0.0285670888, -0.0231460687, -0.0133390706, -0.00537250144, 0.0242199227, -0.0149304438, 0.0101304483, 0.00358382403, 0.0340269208, -0.00575093785, 0.0086490484, -0.00182263972, 0.00922478922, -0.00714824116, 0.0109390728, 0.00901778135, -0.0170652121, 0.00302910758, 0.0114113092, -0.0440668, -0.00795039628, 0.00645929296, 0.0366921462, 0.0156549718, 0.00361940358, 0.0114565929, -0.00502641033, 0.00652074814, 0.00951589365, 0.00725174509, -0.00780160958, 0.00851966813, 0.00104878598, -0.00460916, -0.0140377218, 0.0241422951, -0.024724504, -0.0285670888, 0.00107627932, -0.0111072669, 0.00561185414, 0.00382964592, -0.00482910592, 0.0163794979, -0.00212183082, 0.0138048381, -0.00754285, 0.00311967358, -0.0131061869, -0.0197045635, 0.00876549, -0.00674716337, 0.00220107613, -0.00617465703, -0.01418004, -0.0211924314, -0.0206360985, 0.00139487733, -0.0113401506, 0.017453352, 0.000938004465, 0.0138048381, -0.00171913579, -0.019251734, 0.0114113092, 0.00514932116, -0.02217572, -0.000139790965, 0.0155514674, -0.0200538896, 0.00557627482, -0.00726468302, -0.0143741099, -0.0309994314, 0.0118835466, 0.000452021108, -0.0228226185, -0.010725596, 0.0208042916, 0.00258436403, -0.0591007508, -0.00420484785, 0.0247374419, 0.0221498441, 0.0102080759, -0.0210113, 0.0134943267, 0.00972290151, -0.00584150385, -0.00822209474, -0.0209724866, -0.0174016, 0.00528193545, 0.0101239793, -0.0163277462, -0.0130673731, 0.00317304279, 0.00534986, 0.00916009862, 0.0194716789, -0.00208139955, 0.0025714261, -0.0078663, -0.0066501284, 0.00501994137, 0.0051234453, 0.0128474263, 0.0314652, -0.00875255186, 0.0212312452, 0.00367115554, -0.0141282883, 0.00711589586, 0.0229908135, 0.0085649509, -0.0167417619, -0.0168193914, 0.0131838145, 0.0246727522, 0.00769810565, 0.00947061088, 0.0310511831, 0.00256010541, 0.00748462882, -0.00868139323, -0.00589972455, -0.00817681104, -8.40464127e-05, -0.00385228731, 0.022007525, -0.00377789396, 0.00228679017, 0.00473854, 0.00416603358, 0.0111202048, -0.00727762096, 0.00531751523, 0.00995578524, 0.0289552286, -0.0107061891, -0.0164830033, -0.0175956693, 0.00302102137, 0.00973583944, -0.00606144965, 0.00190835388, -0.000397641124, -0.00153800391, -0.00960645918, 0.0147751877, -0.00327654672, 0.0183331352, -0.0166641343, 0.00433746213, -0.000132210116, -0.00309703196, -0.0131967524, 0.00582856592, 0.0112948678, -0.00112156221, 0.00541455, -0.00519783841, -0.0208301675, -0.00177573948, -0.0144517375, -0.0194587409, 0.0183072593, 0.0106932512, 0.0141541641, -0.0358899906, -0.0222533476, 0.000169507926, -0.0126921711, 0.00872667599, -0.0197433773, 0.00712883379, -0.00101158931, -0.0168711431, -0.0164183136, -0.0157843512, 0.00928947888, 0.00851966813, 0.00725821406, -0.00297412113, 0.0291881114, -0.00719352392, -0.0233789533, 0.00289811031, -0.00692182593, 0.00597088365, 0.00847438537, 0.0222404096, -0.00351266493, -0.0134425741, 0.00126145431, 0.0180485, -0.014361172, 0.00258274679, -0.00697357813, 0.017453352, -0.00048962218, -0.00917303655, 0.00122102303, 0.000292924233, 0.000374999625, -0.00209918921, 0.000448786624, 0.0129768066, -0.0112495851, 0.0232754499, 0.00430835178, -0.0189541597, 0.00225121062, -0.0196010582, -0.00835147407, 0.0135848923, 0.00849379227, -0.0156420339, 0.00484527834, -0.0354501, -0.00928947888, -0.00185660191, 0.00743934605, 0.00600646297, -0.0176603608, -0.0103180492, 0.0211665556, 0.00608732551, -0.00569271669, -0.00811859, -0.0271439087, -0.0288776, 0.0323708579, 0.0118382629, 0.00594500778, -0.0163406841, -0.0109455418, 0.00921832, 0.0106414994, 0.00257951231, 0.0218781456, -0.000193665575, -0.00163827336, 0.0101951379, 0.0119352983, -0.00906306412, 0.000526818912, -0.00794392731, -0.00654339, 0.0044344971, -0.0179708712, 0.0225897357, -0.0150727611, -0.0106932512, 0.00785336178, -0.0105832778, 0.0238576587, 0.00694770226, 0.0182555076, -0.00541455, 0.0069282949, -0.0174792279, 0.00352883758, -0.00857788883, -0.00396872917, 0.0268851481, -0.00712236483, 0.00196657493, 0.000766980404, -0.0240776036, -0.00619082944, 0.00699298503, 0.0214770678, -0.000697438663, -0.00544042606, -0.0226932392, -0.0113272127, 0.00672128703, 0.0254878458, -0.00606791861, -0.00980699807, -0.00377142499, -0.00387492892, 0.0131514696, -0.00621994, 0.00472236751, -0.0242587365, -0.00384905282, 0.00512668, 0.00544042606, -0.000153537592, 0.00754285, -0.00424689613, 0.0250997059, -0.00457358034, 0.00644635502, 0.00774338888, -0.00877842773, -0.0110555151, -0.029990267, -0.00842263363, -0.00895309076, 0.0273767933, -0.018359011, 0.00994931627, 0.017802678, -0.0264323186, 0.00298059, -0.0275838, 0.0226673633, -0.0066307215, 0.000548247423, -0.00441509, -0.00707061309, -0.0352689698, -0.0084679164, 0.0107579408, -0.0103956768, -0.0186695233, -0.00558921276, 0.0171428397, -0.0126468875, 0.00410781289, -0.00491967192, 0.00196819217, -0.0125563219, -0.00186145375, 0.00175309798, -0.00433746213, -0.0444290675, 0.00734231109, -0.000669136818, 0.000310713978, 0.00283988938, -0.0217746422, -0.0122069959, -0.000424123573, -0.00460592564, 0.00913422275, -0.0164700653, -0.0144129237, 0.00128813891, -0.000746764767, -0.0201962069, -0.00665659737, -0.0153056458, 0.0189412218, 0.0270404052, 0.00795686524, 0.00961292908, 0.0257336684, -0.0223051, 0.0272215363, -0.0232495721, -0.0100398827, -0.016897019, -0.0226544254, 0.00401724689, 0.00213800324, 0.00323611544, -0.00512668, -0.0135590164, 0.00203449931, 0.0117735732, -0.00572506199, 0.00104069978, 0.0163536221, -0.00153234357, -0.00215094141, -0.00961939804, 0.0078663, 0.0113919023, 0.0219169594, 0.00312937703, -0.0137013346, -0.0211277418, -0.000719271542, 0.00485821627, -0.0177121125, -0.0109908246, 0.013998908, -0.0150598232, -0.00299191079, -0.00431482075, -0.0134166982, 0.0330436341, -0.0041433922, -0.0389174819, 0.00401077792, 0.0195234306, -0.0265746377, -0.0111848945, 0.00321347406, 0.00705120619, 0.00158409553, 0.0066889422, 0.00903718825, -0.0119158914, 0.00627169199, 0.0290328562, -0.0254619699, -0.0118835466, -0.0101433862, 0.00450565619, 0.020002136, 0.00446684193, 0.0155902812, -4.37478502e-06, -0.0176603608, -0.00129784236, -0.00652074814, -0.0142447297, 0.00311158737, 0.00328463293, -0.00140053767, -0.000367924164, 0.0159525443, 0.00433099316, -0.0141153503, -0.0134037603, -0.00689595, 0.0172851589, -0.00106010679, 0.0127697987, -0.024530435, -0.00676657027, -0.00717411702, -0.0276614279, -0.0565649047, 0.00596441468, 0.0113983713, -0.00347061665, 0.0308182985, 0.0112819299, 0.0191870425, 0.0168582052, 0.0130479652, -0.0102274837, -0.00819621887, 0.00738112489, 0.00677303923, 0.00441185571, -0.0146199316, -0.00469002221, -0.00623287819, -0.0291104838, -0.00813152827, 0.0129703376, 0.0172334071, 0.00488085765, -0.0124398796, 0.0375719294, 0.0051622591, 0.00631050579, 0.00428571, -0.0311288107, 0.0104086148, 0.00623611268, 0.0035256031, 0.0152150793, -0.0264452565, -0.0145034902, 0.0192129184, -0.0183848869, -0.0207784157, -0.0291363597, -0.00753638055, -0.000595956284, -0.0149304438, -0.00353530655, -0.000461320305, -0.00587384868, -0.000986522, -0.00831266, 0.00547600538, -0.0170263983, 0.00190026767, -0.00276226155, -0.0228096806, -0.0219298974, -0.00414015772, -0.00170296326, 0.00279784086, -0.000242789523, 0.0168193914, 0.0274544209, -0.00486791972, -0.00974230841, -0.021813456, -0.00480322959, 0.012006457, -0.00388786686, 0.0220463388, -0.000155660222, -0.011999988, -0.0240776036, -0.0218781456, -0.00257951231, 0.000353571086, -0.000158288254, -0.00235794927, -0.0174274761, 0.00371967303, -0.0108032236, 0.0162759945, 0.0100981034, 0.00422748923, -0.00182587421, 0.000210848855, 0.00461886358, -0.00910834689, -0.000292519922, -0.000699055905, 4.34383e-05, 0.0102468906, 0.0197821911, 0.0067083491, -0.00749756675, 0.0098846266, -0.00842263363, 0.0142059159, -0.00458004931, -0.0010528292, 0.002726682, 0.0043827449, -0.0437821671, 0.0157067236, 0.0132032214, -0.0108485073, 0.00659190724, -0.000923449232, 0.0435234085, 0.00273315096, -0.00291104848, -0.0222662855, 0.010363332, 0.00279784086, -0.01489163, 0.0109455418, -0.0305595398, -0.0226932392, -0.0191352908, 0.00862317253, 0.0149304438, 0.00564419944, -0.0107385339, 0.0150210094, 0.0242457986, 0.0216840766, -0.00130431144, 0.0259794891, -0.00144986378, 0.00973583944, 3.19659375e-05, -0.00943826605, -0.0135719543, -0.000231064463, -0.0149821956, 0.00778867165, -0.0026167091, 0.0155773433, 0.0221239682, -0.00171428407, 0.0214123782, 0.00154366426, 0.0377789401, 0.00358058955, -0.00904365722, 0.013455512, -0.000476684159, 0.0137272105, -0.0321897268, 0.0124722254, 0.0053110458, -0.00777573371, 0.0132873189, 0.0100851655, -0.0331212617, -0.00784689281, 0.017621547, 0.00776926475, -0.00436657248, -0.00474500889, 0.00549864676, -0.0107644098, -0.00539837731, -0.0226544254, -0.0229261238, 0.0303007793, -0.00530134235, -0.0139859701, -0.0141282883, 0.0126986401, -0.00781454798, 0.0138307139, 0.0231848825, -0.0176086091, -0.00913422275, 0.010913197, 0.00608732551, -0.0168452673, -0.0159266684, -0.0222921614]
12 Jun, 2023
multimap::cbegin() and multimap::cend() in C++ STL 12 Jun, 2023 multimap::cbegin() is a built-in function in C++ STL which returns a constant iterator referring to the first element in the multimap container. Since multimap container contains the element in an ordered way, cbegin() will point to that element that will come first according to the container’s sorting criterion. Syntax: multimap_name.cbegin() Parameters: The function does not accept any parameter. Return Value: The function returns a constant iterator referring to the first element in the multimap container. CPP // C++ program to illustrate // the multimap::cbegin() function #include <bits/stdc++.h> using namespace std; int main() { // initialize container multimap<int, int> mp; // insert elements in random order mp.insert({ 2, 30 }); mp.insert({ 1, 40 }); mp.insert({ 3, 60 }); mp.insert({ 4, 20 }); mp.insert({ 5, 50 }); auto ite = mp.cbegin(); cout << "The first element is: "; cout << "{" << ite->first << ", " << ite->second << "}\n"; // prints the elements cout << "\nThe multimap is : \n"; cout << "KEY\tELEMENT\n"; for (auto itr = mp.cbegin(); itr != mp.cend(); ++itr) { cout << itr->first << '\t' << itr->second << '\n'; } return 0; } Output: The first element is: {1, 40} The multimap is : KEY ELEMENT 1 40 2 30 3 60 4 20 5 50 multimap::cend() is a builtin function in C++ STL which returns a constant iterator pointing to the theoretical element that follows last element in the multimap. Since multimap container contains the element in an ordered way, cend() will point to that follows the last element according to the container’s sorting criterion. Syntax: multimap_name.cend() Parameters: The function does not accept any parameter. Return Value: The function returns a constant iterator pointing to the theoretical element that follows the last element in the multimap. CPP // C++ program to illustrate // the multimap::cend() function #include <bits/stdc++.h> using namespace std; int main() { // initialize container multimap<int, int> mp; // insert elements in random order mp.insert({ 2, 30 }); mp.insert({ 1, 40 }); mp.insert({ 3, 60 }); mp.insert({ 4, 20 }); mp.insert({ 5, 50 }); // print the elements cout << "\nThe multimap is : \n"; cout << "KEY\tELEMENT\n"; for (auto itr = mp.cbegin(); itr != mp.cend(); ++itr) { cout << itr->first << '\t' << itr->second << '\n'; } return 0; } Output: The multimap is : KEY ELEMENT 1 40 2 30 3 60 4 20 5 50 Let us see the differences in a tabular form -: multimap::cbegin() multimap::cend() 1. It is used to return a const_iterator pointing to the first element in the container. It is used to return a const_iterator pointing to the past-the-end element in the container. 2. Its syntax is -: const_iterator cbegin(); Its syntax is -: const_iterator cend(); 3. It does not take any parameters. It does not take any parameters. 4. Its complexity is constant. Its complexity is constant. 5. Its iterator validity does not changes. Its iterator validity does not changes. Learn C++ Online – Master everything from basics to advanced concepts. Apply your knowledge with practical exercises and boost your skills. Take the Three 90 Challenge: finish 90% in 90 days for a 90% refund. Start now and level up your C++ programming!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum/Algorithm for Dynamic Time out timer Calculation/Difference between Round trip time (RTT) and Time to live (TTL)/Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms/Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm/Round Robin Scheduling Algorithm with Different Arrival Time/Selfish Round Robin CPU Scheduling/Find the order of execution of given N processes in Round Robin Scheduling/Calculate server loads using Round Robin Scheduling/set::lower_bound() Function in C++ STL/Implementation of lower_bound() and upper_bound() in List of Pairs in C++/Difference between std::set::lower_bound and std::lower_bound in C++/Difference between std::set vs std::vector in C++ STL/std::minmax() and std::minmax_element() in C++ STL/std::rotate vs std::rotate_copy in C++ STL/std::bitset::to_ullong and std::bitset::to_ulong in C++ STL/std::upper_bound and std::lower_bound for Vector in C++ STL/std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++/std::string::append vs std::string::push_back() vs Operator += in C++/Vector push_back() in C++ STL/vector :: cbegin() and vector :: cend() in C++ STL/unordered_multiset cend() function in C++ STL/unordered_multiset bucket() function in C++ STL/unordered_multiset emplace_hint() function in C++ STL/unordered_multiset end() function in C++ STL/unordered_multiset size() in C++ STL/unordered_multiset emplace() function in C++ STL/unordered_multiset find() function in C++STL/unordered_multiset erase() function in C++ STL/unordered_multiset clear() function in C++ STL/unordered_multiset swap() function in C++ STL/unordered_multiset bucket_size() function in C++ STL/unordered_multiset bucket_count() function in C++ STL/unordered_set bucket_count() function in C++ STL/unordered_set cbegin() function in C++ STL/array::cbegin() and array::cend() in C++ STL/array::rbegin() and array::rend() in C++ STL/multimap rbegin in C++ STL/vector rbegin() and rend() Functions in C++ STL/multiset rbegin() and rend() function in C++ STL/map rbegin() function in C++ STL/map upper_bound() function in C++ STL/Set upper_bound() in C++ STL/multimap upper_bound() function in C++ STL/multimap empty() function in C++ STL/multimap value_comp() function in C++ STL/multimap swap() function in C++ STL/multimap::swap() in C++ STL/multimap equal_range() in C++ STL/unordered_set equal_range in C++ STL/set vs unordered_set in C++ STL/unordered_set count() function in C++ STL/unordered_set bucket() function in C++ STL/unordered_set emplace() function in C++ STL/set::emplace() in C++ STL/multiset::emplace() in C++ STL/multiset find() function in C++ STL/multiset cbegin() and cend() function in C++ STL/multimap::cbegin() and multimap::cend() in C++ STL
https://www.geeksforgeeks.org/multimapcbegin-and-multimapcend-in-c-stl?ref=asr7
PHP
multimap::cbegin() and multimap::cend() in C++ STL
unordered_multiset clear() function in C++ STL, What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, jQWidgets jqxTreeMap width Property, Round Robin Scheduling Algorithm with Different Arrival Time, Difference between Flow and TypeScript, unordered_multiset emplace() function in C++ STL, jQWidgets jqxTree destroy() Method, unordered_set bucket_count() function in C++ STL, jQWidgets jqxTree collapseAll() Method, Find the order of execution of given N processes in Round Robin Scheduling, jQWidgets jqxScrollView buttonsOffset Property, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Vector push_back() in C++ STL, jQWidgets jqxListBox enableHover Property, Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm, std::rotate vs std::rotate_copy in C++ STL, Selfish Round Robin CPU Scheduling, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxSlider buttonsPosition Property, std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++, std::upper_bound and std::lower_bound for Vector in C++ STL, Difference between Round trip time (RTT) and Time to live (TTL), jQWidgets jqxSlider rtl Property, Difference between std::set::lower_bound and std::lower_bound in C++, jQWidgets jqxTooltip opacity Property, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, unordered_multiset erase() function in C++ STL, multiset find() function in C++ STL, set vs unordered_set in C++ STL, jQWidgets jqxToolBar height Property, PHP, std::minmax() and std::minmax_element() in C++ STL, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, unordered_set emplace() function in C++ STL, unordered_set bucket() function in C++ STL, map rbegin() function in C++ STL, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, map upper_bound() function in C++ STL, Node.js date-and-time Date.transform() Method, unordered_multiset size() in C++ STL, TypeScript Optional Parameters, jQWidgets jqxToolBar theme Property, Difference between std::set vs std::vector in C++ STL, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, Steps to Diagnose and Resolve a Slow Network, How to use Optional Chaining with Arrays and Functions in TypeScript ?, Calculate server loads using Round Robin Scheduling, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, jQWidgets jqxScrollView showButtons Property, set::emplace() in C++ STL, Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms, jQWidgets jqxScrollView disabled Property, multimap::cbegin() and multimap::cend() in C++ STL, jQWidgets jqxSplitter destroy() Method, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, set::lower_bound() Function in C++ STL, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, jQWidgets jqxTree collapseItem() Method, multimap upper_bound() function in C++ STL, std::string::append vs std::string::push_back() vs Operator += in C++, unordered_multiset swap() function in C++ STL, unordered_multiset cend() function in C++ STL, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), Set upper_bound() in C++ STL, jQWidgets jqxSortable opacity Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, multiset cbegin() and cend() function in C++ STL, multimap rbegin in C++ STL, vector :: cbegin() and vector :: cend() in C++ STL, multimap swap() function in C++ STL, jQWidgets jqxSlider height Property, jQWidgets jqxSwitchButton onLabel Property, unordered_multiset bucket_size() function in C++ STL, unordered_set cbegin() function in C++ STL, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, jQWidgets jqxToolBar tools Property, multimap empty() function in C++ STL, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTree width Property, multimap::swap() in C++ STL, multimap equal_range() in C++ STL, Implementation of lower_bound() and upper_bound() in List of Pairs in C++, jQWidgets jqxTree clear() Method, TLS Handshake?, multiset rbegin() and rend() function in C++ STL, Algorithm for Dynamic Time out timer Calculation, Adhoc TCP, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, jQWidgets jqxTabs position Property, Differences between Wireless Adhoc Network and Wireless Sensor Network, jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, std::bitset::to_ullong and std::bitset::to_ulong in C++ STL, unordered_multiset emplace_hint() function in C++ STL, unordered_multiset bucket_count() function in C++ STL, unordered_multiset find() function in C++STL, unordered_multiset bucket() function in C++ STL, Impact of Three-way Handshake and Slow Start Algorithm, array::rbegin() and array::rend() in C++ STL, multimap value_comp() function in C++ STL, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, multiset::emplace() in C++ STL, unordered_set equal_range in C++ STL, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, unordered_set count() function in C++ STL, vector rbegin() and rend() Functions in C++ STL, array::cbegin() and array::cend() in C++ STL, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, unordered_multiset end() function in C++ STL, How to Sort an Array Having Optional Properties in TypeScript ?
GeeksforGeeks
[-0.015150453, -0.00151337683, -0.0108055435, 0.0262963809, 0.00167439203, -0.0337714963, -0.0470398217, 0.0141626708, -0.0178067889, 0.00109623873, -0.0231595039, 0.0315022655, -0.0215443447, -0.0124473991, -0.00655407272, -0.0163117647, 0.0425814502, 0.0295800921, -0.000894343946, 0.0047153281, -0.0264966078, -0.0217045266, -0.00302508497, -0.00209069578, 0.00147750287, -0.00373088266, -0.0254821274, -0.0225321278, -0.00766199129, -0.00963755697, 0.00335879554, 0.00278648199, 0.025535522, -0.0194352958, -0.0345990956, 0.0229859743, 0.0198490955, -0.00428484194, -0.0265099555, -0.0132282814, 0.0171126705, 0.0182072408, 0.0168190058, 0.00860305503, -0.0438895971, 0.0460787341, -0.0276312232, -0.0320895948, -0.0145230778, 0.000168836617, 0.0421009064, 0.00980441272, 0.0466660671, 0.00264131813, 0.0266033951, 0.0168723986, 0.0263230782, 0.0118667427, -0.0044683828, -0.0129145933, -0.00852963887, -0.0306746624, -0.00025153422, -0.0233063363, -0.0110725118, 0.028111767, -0.0712805465, 0.0422076955, 0.00680101849, -0.00560967205, -0.0380963832, 0.0251884628, -0.0126409512, -0.00964423176, -0.0340384617, -0.00318359747, 0.00796900503, 0.0273642559, 0.00307180453, 0.0293131247, -0.0389506817, -0.000393569731, -0.00609688926, -0.000964423118, 0.0523257963, -0.0257357489, 0.00405458175, -0.0327837132, 0.0573981926, 0.0169524904, -0.0255221743, -0.00703461561, -0.00635718368, -0.01062534, -0.0169257931, -0.010231562, 0.0165253412, 0.0155776031, -0.0345457047, 0.0265366528, 0.00246445159, 0.00350062246, 0.00941063371, -0.00750848465, 0.0158312228, 0.0304877851, 0.0392710418, 0.0246144813, -0.0207834858, -0.00830271561, 0.0137488693, 0.015110408, -0.0125942314, 0.051952038, -0.0306746624, 0.00342053198, -0.0140158376, 0.000559799257, 0.0248814486, 0.00505905, -0.0419407263, 0.0113928737, 0.00346057722, 0.0452511348, -0.0577185564, 0.0107121048, 0.0027080602, 0.0253219474, -0.0110257929, -0.0199158378, 0.0126476251, -0.0349194594, -0.000638638332, -0.0357470624, -0.00309015857, -0.0031602378, 0.0327036232, 0.0338248871, -0.00773540745, -0.0226923097, -0.040365614, -0.0245610867, -0.00502567925, 0.0444502272, -0.0514714979, -0.0518452525, 0.00263464381, 0.0656208172, -0.00623037387, -0.00490554329, -0.0553692356, 0.00168607198, 0.0454113148, -0.027244119, -0.00495893694, -0.0392443463, 0.0407927632, -0.00957748946, 0.00868982, -0.0283253416, 0.0233063363, 0.0196488705, 0.0255488697, -0.00137822411, -0.000132232759, 0.0328371078, 0.0339049809, -0.0170726255, -0.0331040733, 0.0446104109, 0.0106186662, 0.0236533955, 0.000637386926, -0.0328638032, -0.000498062815, -0.0292597301, 0.0279782824, 0.0204898193, -0.00909694657, 0.0287257936, 0.00828936696, -0.0233463813, 0.0164185539, 0.00534270378, 0.0116932131, -0.00626374455, 0.0466126725, -0.020222852, 0.0278981924, 0.00415803213, 0.00923710503, 0.0117933266, 0.0442900471, 0.0227056574, 0.0535805449, 0.0170058832, -0.0119134625, 0.0120469462, 0.0125141414, 0.0581990965, 0.00371753424, -0.0100914035, 0.0207701363, 0.0181138013, 0.0377226248, 0.000479291601, -0.0276312232, -0.0131815616, 0.0181805436, -0.00911696907, -0.0339850709, -0.00145748025, 0.027324209, -0.00835610926, 0.0314755663, 0.00278815068, -0.043061994, 0.0158045255, -0.00628376752, -0.0366280563, 0.00838280562, -0.0183006804, 0.0522724, -0.0528063364, -0.027244119, -0.0347859748, -0.00363076944, 0.0252018105, -0.012887897, -0.00153339945, 0.0274977386, 0.040365614, -0.0219581462, -0.00149752549, -0.012967987, -0.00323365396, -0.0355868787, -0.0167656112, -0.0197156128, 0.0435959287, 0.0288325809, 0.0294733047, -0.0353199132, 0.00185042433, 0.0305144805, 0.0426348448, -0.0022542139, -0.0200226251, -0.0257490966, -0.0306479651, 0.0440230779, 0.0210371055, 0.0495226271, -0.00265967217, -0.00413467223, 0.0234932136, 0.0108389147, -0.0177133493, -0.0122404983, -0.00669756811, -0.00236100121, 0.0312352963, -0.0123539604, 0.0284054317, 0.0181404985, -0.00254287338, 0.0319294147, 0.0182472859, -0.0215176474, -0.0301407259, 0.0248681, -0.00203396496, 0.0162717197, -0.0221850686, 0.0122805433, 0.00456515886, -0.0156443454, 0.0257357489, 0.0168323535, -0.0341185555, 0.0118333716, -0.0228124447, 0.014830091, -0.00215410069, 0.0205699112, -0.0140825799, -0.021530997, -0.0174730774, -0.0213841647, -0.0272307713, -0.0286190063, -0.0185809974, -0.010191516, 0.0191015843, 0.0258158389, 0.0374022648, -0.0187678747, -0.0221450236, -0.0264565628, -0.0106053175, 0.0180070139, 0.00307514169, -0.000250699959, -0.0482678749, -0.00286824116, -0.0265900474, 0.000133171314, -0.0100380098, 0.0455714948, -0.0110791866, -0.00978438929, -0.0529665202, 0.00985780638, 0.0136621045, 0.0135686658, -0.0168056563, 0.022959277, -0.00411464972, -0.0196755659, -0.00947737601, 0.0140959285, -0.0219848435, -0.00238436088, 0.00830271561, 0.0178601816, -0.0555828102, -0.00309015857, 0.0147366524, -0.00579988724, -0.0539009087, -0.0212773774, 0.00741504552, -0.0229058843, -0.00194386323, -0.0163117647, -0.0225855224, -0.0206766985, 0.00427816762, 0.0181538463, 0.0267101824, -0.0121403849, -0.00987115409, -0.00459852954, 0.0324099548, 0.00967092812, -0.00586662907, 0.0111526027, -0.0175932143, 0.00582324713, 0.0114796385, 0.000862641435, -0.00929717254, -0.00546617666, -0.0238402728, 0.026923757, -0.000840950292, -0.0200493224, -0.0414334871, -0.00310684415, 0.0383366533, -0.00309349573, 0.0356135778, 0.00818925351, 0.0309416298, -0.0157244354, -0.0202762447, -0.0142427608, -0.0213307701, 0.0226122178, -0.00389773771, 0.0146432137, -0.0431687795, 0.0275511332, 0.037749324, -0.00351730781, -0.000701626181, 0.0137355216, 0.0257357489, -0.000703294703, -0.00920373388, -0.0256022643, 0.0447972864, -0.00786221772, -0.0172728524, 0.00840950292, -0.0176599566, 0.0127944574, 0.0142160645, 0.00248113694, -0.0178868789, -0.0104384618, 0.00920373388, -0.00523257954, -0.004064593, -0.0195287336, -0.0210104082, -0.0299271513, -0.0335312225, -0.0214776024, -0.0383900478, 0.0408728532, 0.00746176532, 0.00972432178, -0.00728156138, -0.0211038478, 0.00416136906, 0.00462188944, -0.024227377, 0.0186610874, 0.050003171, -0.00229926477, -0.0104117654, 0.00804909505, -0.018914707, 0.021490952, 0.0100179873, -0.0532601848, 0.0454647094, 0.00830271561, 0.000928549271, -0.0088500008, -0.0486149341, -0.00363076944, -0.00721481955, 0.0193952508, 0.0265233051, 0.00793563388, 0.0134351822, 0.00133567594, 0.0380429886, -0.00637386926, 0.00236767554, 0.0440764725, 0.00702794176, 0.00328204199, -0.0383099578, 0.0128278285, -0.00931719504, -0.0266701374, -0.0065941182, 0.0400986448, 0.0510710441, 0.0418606363, -0.00298837689, -0.00718812272, 0.021490952, -0.0311819017, -0.0058933259, 0.0102048647, -0.00481877849, -0.0365746617, 0.011619797, 0.0106386887, -0.00612358609, 0.0239604078, -0.0159513578, 0.0282452498, -0.0200226251, 0.0681303218, 0.028672399, 0.00935056619, 0.0175932143, -0.0111993216, 0.0109590506, 0.0294733047, -0.00126643106, -0.00250783376, 0.0248681, -0.0059166858, -0.0137755666, 0.00256623328, -0.0326235294, 0.00754852965, 0.0254020374, 0.0221049786, 0.0158045255, 0.00311852386, -0.0118333716, -0.0224920828, -0.0143095031, 0.0278447978, -0.0171660651, -0.0533135794, -0.0143095031, -0.0232529417, -0.0215043, -0.00704129, -0.00576651609, -0.0108923083, 0.0077687786, -0.00924377888, 0.00165520376, 0.00600011367, -0.0302742105, 0.0164185539, 0.0318226255, -0.0400986448, 0.0287257936, 0.000886835449, -0.0021691178, 0.0314755663, -0.00757522648, -0.025855884, 0.0318493247, 0.00487217214, -0.0262963809, -0.00957748946, 0.000874321326, -0.0343588255, -0.00725486455, -0.0372687802, 0.0447171964, 0.028592309, -0.00634383503, 0.0150036206, -0.00665084878, 0.042234391, 0.0103783943, -0.0427950248, -0.00176699669, 0.0273375586, 0.00790893752, 0.0130013581, 0.0321696848, 0.00768868811, 0.0260027163, 0.000848875905, -0.00554960454, 0.00786221772, -0.0417538472, 0.00593003444, 0.00720814522, -0.00054770225, -0.012494118, -0.0131281679, -0.0238669701, -0.0168990958, 0.0071147061, -0.0344122201, -0.00642726291, -0.0353466086, 0.00132649892, 0.00996459369, 0.00104034226, -0.0186076928, -0.00185709854, 0.00462522637, -0.00136320712, -0.0150436657, 0.00942398235, 0.0130614256, -0.00341552612, -0.000434657821, -0.0198757928, -0.0227457024, 0.0212373324, -0.00738167483, -0.0232262462, 0.0010370051, -0.0147766974, 0.000327870483, 0.040605884, 0.0277914051, 0.00856300909, -0.00219581462, -0.0139624439, -0.00773540745, 0.0082826931, 0.00398783945, 0.0182072408, -0.0169124436, -0.00449507963, 0.0337981917, -0.00517584849, 0.0168723986, 0.0142294122, 0.0227323547, 0.029740274, -0.0145764714, 0.00806911848, -0.016258372, -0.0104785077, 0.0183407255, -0.0374289602, -0.00794898253, 0.010585295, -0.00987782888, -0.0186610874, -0.0282185543, 0.00921708159, -0.00329038478, -0.00175698544, 0.00570644811, 0.00599677628, 0.00917036273, -0.0265099555, 0.0132549778, -0.00770203676, -0.0277113132, 0.00614360906, 0.0129212681, -0.00694785127, 0.00944400486, -0.0453312248, -0.00560967205, -0.0175131224, 0.0164852943, 0.00289660646, 0.0212106351, -0.012967987, -0.0447972864, 0.0217445716, 0.0136153856, -0.000972765905, 0.000489302911, 0.029820364, 0.0103717204, -0.00694785127, -0.0397248901, 0.0017586539, -0.0400452502, -0.012567535, -0.0101181, 0.00668755686, 0.00601679878, 0.00360073545, -0.0166054312, -0.023279639, -0.00742172, -0.0307814498, 0.00521923089, 0.00477873348, -0.000403372484, -0.0144830327, 0.0191015843, 0.00531267, -0.0329705887, 0.031769231, -0.0298470613, 0.0271239839, -0.0328638032, 0.00208068453, 0.00326869357, 0.0285389163, 0.00497562252, 0.0126743224, -0.00254120491, 0.028191857, 5.90185118e-06, -0.0185009055, -0.032436654, -0.000204919052, -0.0108856345, -0.00616696849, -0.0131882364, -0.0260561109, 0.0109256795, 0.00726153888, -0.00263464381, 0.0121537335, 0.0136954756, -0.0354000032, 0.00255955895, 0.0057097855, 0.0196622182, -0.0111926477, -0.044930771, -0.00475871051, -0.00398116559, -0.00513580348, -0.0121470597, -0.021971494, -0.00557963829, 0.00556962704, 0.00839615427, -0.021490952, -0.0277647078, 0.0431153886, -0.000499314221, -0.00295667443, 0.0119001139, -0.0290461555, -0.00239270367, -0.0345190056, -0.00979106408, 0.00346391415, 0.0168857481, -0.0175932143, 0.0304343905, -0.0544882379, 0.0119201364, -0.0364411771, 0.0137355216, 0.0220649336, -0.00916368794, -0.00786221772, 0.00684773782, -0.00731493253, -0.00337548088, -0.020663349, 0.0247746613, -0.0129880095, -0.0266167428, -0.00454513589, -0.00299171405, 0.0493624471, -0.00153840508, -0.0202895943, 0.00874321349, 0.014870137, 0.000277188228, -0.013401811, -0.0331574678, -0.00945068, 0.00111542712, -0.0125141414, 0.00356402737, -0.0220248885, -0.00549287349, -0.0411665179, 0.00953744352, 0.00954411831, 0.00776210474, 0.00911029428, 0.0335846171, -0.00375090516, -0.0105585977, -0.018794572, -0.0224253405, -0.00580989849, -0.033264257, -0.00286657247, -0.0179536212, -0.00555294147, -0.0262963809, -0.0111392541, 0.0275778305, -0.0133951362, 0.000600678788, 0.0088700233, 0.00818258, 0.0285389163, -0.015150453, 0.00647731917, 0.0133283949, -0.0191816762, 0.0148033947, 0.00137071556, -0.0212907251, 0.0159780551, 0.0189280547, 0.0110257929, 0.008803281, -0.0158312228, 0.0171393678, -0.0236400459, 0.0117199104, 0.000160076714, 0.00876991, -0.0074751135, 0.0319561101, -0.00218246621, 0.00336880679, 0.028672399, -0.0444769263, 0.00376425358, 0.00405458175, 0.0344122201, 0.0234131236, 0.0122872181, -0.0350796394, -0.00701459311, 0.0292330328, 0.0191282816, 0.00693450263, -0.0197156128, -0.0195554309, 0.0133417426, 0.0180070139, 0.0157511327, -0.0103984168, 0.0574515872, 0.0254821274, 0.00578987598, 0.0163518116, -0.0161248874, 0.00484213838, 0.0386036225, 0.0376158394, -0.0248280559, -0.0112326927, -0.00980441272, 0.0322764739, 0.00781549793, -0.00538608618, -0.0373755693, -0.00746176532, -0.0470932163, -0.0376158394, -0.0238669701, 0.0259493235, -0.00219748309, -0.00179703068, -0.00480209291, 0.00184375013, -0.029820364, 0.000831356097, 0.0292330328, 0.00158178736, 0.0242540743, 0.0115530547, -0.00010845589, -0.012293892, 0.00290161208, 0.0162049774, 0.0100847287, -0.0065473984, 0.0238803178, 0.00641057733, 0.00879660714, 0.000957748911, -0.0114262449, 0.0172461551, -0.0252552051, -0.0486950241, 0.0187411774, 0.0230260193, 0.0233063363, 0.0305411778, -0.00475203665, 0.00212239823, 0.025615612, -0.0186477378, 0.0243341643, -0.00288158958, 0.0112727378, 0.00445837108, -0.000747511338, -0.00626040762, 0.0322764739, -0.0135019235, -0.000797150773, -0.0339316763, 0.00511911791, 0.0103049781, -0.0203963816, -0.00470198, 0.0283253416, -0.0135019235, 0.00172695145, 0.00114379253, 0.0226522628, -0.0116932131, 0.0275244359, -0.00134568731, 0.010785521, -0.0518986471, -0.0178735312, 0.0167789608, 0.0137755666, 0.00296668569, 0.0296334866, 9.02061e-05, 0.0103250006, 0.0180737562, 0.0193952508, 0.00804909505, -0.0347058848, 0.0272708163, -0.00294499449, 0.00260794698, 0.00772205926, -0.0280850697, 0.00607019244, 0.0125074666, -0.0317959301, 0.0332108624, 0.0439696871, 0.0110391406, -0.0128144808, 0.0430352949, -0.0217178743, -0.0330506824, -0.0375090502, -0.00732828118, 0.0145097291, 0.00177033385, -0.0209036209, -0.0221316759, -0.00326368795, 0.0250549782, -0.00951742101, -0.0230927616, -0.0120069012, 0.0248280559, 0.00586996647, 0.0309950244, -0.0235332586, 0.00897681061, -0.0344389156, -0.00302007934, -0.00714140292, 0.00288158958, 0.020222852, 0.0221316759, -0.000951074704, 0.0686642602, 0.0237735305, -0.0185676478, 0.000825933297, 0.00464191195, -0.0109990956, -0.0291262455, -0.018994797, 0.00835610926, 0.0013540301, -0.0110791866, -0.0145364264, 0.0235199109, 0.0094573535, 0.016218327, 0.0281384625, -0.00891674217, 0.0140692312, 0.00769536244, -0.0240004547, 0.000214408952, -0.0159914028, -0.0239604078, 0.00683438964, -0.0446905, 0.003747568, 0.0299271513, -0.0156977382, 0.00101030827, -0.032356564, -0.0294466075, -0.0221984182, -0.0577185564, 0.00325868232, 0.0113728512, 0.00221416866, 0.0059834281, 0.00557630137, -0.031128509, 0.0186877847, -0.0453579202, -0.00995124504, -0.0114329197, -0.0276579205, -0.010985747, -0.00913031772, -0.00630045263, -0.0423411801, -0.00769536244, -0.0133484174, -0.0230660643, -0.00563303195, -0.0205031689, 9.82881465e-05, 0.0255622193, -0.00292664045, 0.0311819017, -0.0222518109, 0.0453846194, -0.0162316747, -0.0150436657, -0.0169658381, -0.0338782817, -0.000755019835, 0.0351597294, -0.0151638016, 0.0103717204, 0.0388705917, 0.00555961579, 0.0394579209, -0.0407927632, -0.0259226263, -0.0274710432, 0.0199558828, 0.0424212702, 0.0234131236, 0.000658243836, 0.0145097291, 0.00621368829, 0.0392977409, 4.86226527e-05, -0.00601679878, -0.0264298655, 0.010271607, -0.0286190063, -0.0159914028, -0.00772205926, -0.0110391406, 0.0304877851, 0.0437561125, 0.0332375579, -0.0031368779, 0.00987782888, -0.00949072465, -0.0229859743, 0.00784886908, -0.0394579209, 0.0361742117, -0.00615695724, -0.0181805436, -0.021450907, 0.026923757, -0.0116932131, -0.00123556284, 0.0205165166, -0.0352398194, -0.00582658406, -0.0233330335, 0.0127811097, -0.00225087674, -0.00974434428, -0.0235332586, 0.0429552048, 0.0040846155, -0.0104651591, -0.0131081454, -0.0455714948, 0.0139891412, -0.00105786207, 0.00205065054, 0.0123940054, -0.0264432151, 0.00213240972, -0.00644728541, 0.0104918554, -0.0150703629, 0.022799097, 0.0323832594, 0.0164185539, -0.0115864258, -0.00826934446, -0.0329438932, -0.00487884646, 0.00304177054, 0.00671425369, -0.00244442886, -0.00913031772, 0.0112193441, 0.0024844741, -0.0162450243, -0.00461187819, -0.0163251143, -0.00684106397, -0.0033888293, 0.00620367704, 0.0146565624, -0.0171126705, 0.0253352951, 0.0082159508, 0.00111209, 0.0105786202, -0.021571042, 0.00079464796, 0.0100380098, -0.0129346158, -0.00710803224, 0.0151371052, -0.0133817885, -0.0220916308, 0.0310751144, 0.0253753401, -0.00738167483, 0.0226122178, 0.0130414031, 0.00744174235, -0.0205565616, -0.027204074, -0.0208635759, -0.00180704193, -0.0118867652, 0.0123673081, 0.00185876712, 0.0276846178, -0.0200893674, -0.0313153863, 0.00686108647, 0.0209970605, 0.0237735305, 0.0240271501, -0.0240938924, -0.00980441272, 0.0138823539, -0.0269371048, -0.0160314497, -0.0190615393, 0.017726697, 0.0164185539, 0.00127143669, 0.00044925767, -0.00302842213, 0.0293131247, 0.0512312241, -0.0170859732, -0.016378507, -0.0252151601, 0.0289660655, -0.00118300342, -0.00499898195, 0.020262897, 0.0150169693, -0.00685441215, 0.0145898201, 0.0180070139, -0.012173756, 0.0072014709, -0.0111726252, 0.0180737562, 0.028672399, -0.0192083716, -0.0384701379, 0.0043148757, -0.0227056574, 0.00447171973, 0.00804909505, 0.00436826935, 0.00474202493, 0.00984445773, 0.00526595069, -0.0282986443, -0.000450926222, 0.00717477407, 0.0185676478, -0.00616363157, 0.0222251136, -0.0231461544, 0.0178468339, 0.0120402724, 0.00789558887, 0.0266300924, -0.0158445705, 0.0113261314, -0.00342720607, 0.00686776079, -0.00103366806, 0.00748846214, -0.00836945791, -0.032516744, 0.00309015857, -0.0128945708, 0.00631380128, -0.0031802603, -0.0075418558, -0.0264966078, 0.0218647067, -0.00583993224, 0.0138690053, -0.0046953056, 0.0299538486, -0.023239594, 0.0069278283, -0.0120202499, -0.0172461551, 0.00135319575, 0.0296601821, 0.00830271561, -0.000330373325, 0.0261762459, -0.0127210412, -0.0181805436, 0.0260961559, 0.00407126732, -0.0225588251, 0.00667087128, 0.0383366533, -0.00764196878, -0.0226789601, -0.00394779444, 0.00474869926, 0.0031368779, -0.024107242, 0.0030017253, -0.00136487558, 0.0347058848, -0.00541945733, 0.025855884, 0.00131899049, 0.00809581485, -0.0135019235, 0.00609355234, -0.0128278285, 0.00761527196, -0.00868314505, 0.00777545292, -0.0159113128, 0.00459852954, -0.00715475157, 0.00123306, -0.00446504541, 0.0271773767, -0.0192350689, -0.00167939777, -0.0208902732, 0.0219181012, 0.0192350689, 0.0025278565, 0.0181271508, -0.0412733071, 0.00651736464, -0.00223919703, 0.00704796426, 0.0106320139, 0.00972432178, 0.0129813356, 0.0202095043, -0.012253847, -0.00694785127, -0.0182072408, -0.00176199106, 0.00449507963, -0.0228257924, -0.0280850697, -0.0134285074, 0.0101648197, -0.00316190626, -0.00155509054, -0.00785554387, 0.0176733043, -0.0100179873, -0.00707466109, 0.0234131236, 0.0205966067, -0.0052626133, -0.00904355291, 0.00558964955, -0.017566517, 0.0082826931, 0.020102717, -0.00712805474, 0.00275644823, -0.0148033947, 0.00448173098, 0.00311351824, 0.0145631228, -0.0109523758, -0.0193151589, -0.00646730792, 0.014870137, 0.0148567883, 0.0285389163, 0.0227457024, -0.0111592766, -0.0409796387, -0.0149235306, -0.0186076928, -0.00475203665, -0.0150970593, -0.0202895943, 0.00722816773, 0.0255889148, -0.00791561138, -0.0537674241, -0.00759524945, 0.0143228518, 0.0234932136, 0.0220515858, -0.0057531679, -0.0159513578, 0.0081959283, -0.0403389148, -0.0266701374, 0.0186343901, -0.000430069311, -0.00907692313, 0.0164852943, -0.0212239828, 0.0087565612, 0.0196889155, 0.00296835415, 0.0301674232, -0.00606351858, 0.0208902732, -0.0189280547, 0.00135319575, -0.00104201084, -0.0019171664, -0.0162717197, 0.0247079208, -0.00389440078, 0.0165253412, -0.0342520364, 0.00965757947, 0.000647815352, 0.013008032, -0.00422143703, -0.0193151589, 0.00437160674, 0.0256289616, 0.0207834858, -0.0142961545, -0.00400786242, -0.0110858604, -0.00846957, -0.00392777193, -0.019034842, -0.00970429927, 0.00832941197, -0.0237868801, -0.0087565612, 0.00137822411, 0.0324633494, 0.00113544974, 0.00167606061, 0.0167656112, 0.011659842, 0.0173796397, 0.00987782888, 0.014790046, 0.0157110877, 0.0439429879, 0.00423812261, -0.00448506791, 0.0258825812, 0.0101981908, 0.00375757948, -0.0267769247, -0.0148834847, 0.0223585982, 0.022999322, 0.000145059748, -0.0066141407, 0.00796900503, -0.0289393682, 0.0110591631, 0.00415803213, 0.0283253416, -0.00277313357, 0.0102983033, 0.0305678751, -0.0340117663, -0.018994797, 0.00785554387, -0.0028014991, 0.00612692349, -0.0136821279, -0.00874988735, 0.0159513578, -0.000167272345, 0.00543614291, -0.012093666, -0.00671091676, -0.00644728541, -0.0191950239, -0.00613693474, 0.0238803178, -0.00842952542, 0.0141359735, 0.00641057733, 0.00770871062, -0.0032953904, 1.59946358e-05, -0.0344923101, 0.0136487568, 0.00842952542, 0.0066575231, 0.00401453627, 0.00832941197, -0.0176332593, -0.0204364266, -0.00588331465, -0.0199024901, -0.0222651605, 0.017726697, 0.0150036206, 0.00377426483, 0.00701459311, -0.0239871051, -0.0322764739, 0.000284488138, 0.000528931036, 0.0125608603, -0.00870984234, 0.00317358621, 0.0210638028, -0.0164185539, 0.00713472907, -0.00744841667, -0.0348927639, 0.00910362, 0.0154975122, 0.00742839416, -0.00676097302, 0.0155509058, -0.000850127311, 0.00476538483, 0.0050323531, 0.0167255662, 0.0238936674, 0.00934389234, -0.0278447978, 0.0395113155, 0.00233931, -0.0248414036, -0.0041079754, 0.0329972878, 0.012567535, -0.00533269253, -0.00804242119, -0.00209570141, 0.0133417426, -0.0100246612, -0.0207834858, -0.0106854076, -0.0231728517, -0.0136354081, 0.0264031682, 0.0237067882, -0.00191382924, 0.0087365387, -0.0101981908, 0.0131748877, 0.00641057733, 0.0180871058, -0.0244276039, -0.0263230782, 0.0282719471, -0.00387437805, -0.0183941182, -0.0132816751, 0.0280583724, -0.0405791886, 0.0370819, 0.0223719478, -0.0107521499, -0.00975769293, -0.0131949103, -0.00803574733, 0.0273375586, -0.00397782819, 0.0277914051, 0.0209436659, 0.00172194582, 0.00552958157, 0.0192083716, -0.016298417, -0.00517584849, 0.00525260204, 0.00408127857, -0.0157110877, 0.0256957021, -0.011419571, 0.00592336, -0.0154975122, 0.0103383493, 0.000438829215, -0.00171527162, -0.0135953631, -0.0188079197, -0.00585661782, 0.0145764714, 0.0160714947, 0.0192617662, -0.00968427677, -0.0329438932, 0.0108589372, -0.0102382358, -0.0144429868, -0.00535605242, 0.0086497739, -0.00368750026, 0.0198624451, 0.0469864272, 0.00427816762, 0.00925045274, -0.00793563388, 0.0146165164, 0.0243208166, -0.0150169693, -0.0282185543, -0.00614027167, -0.00629044138, 0.0060268105, -0.00872319099, -0.0247479659, -0.0127610872, 0.00477539608, 0.00153089652, 0.0200493224, -0.0102983033, 0.00419807713, -0.0295533948, 0.0109590506, -0.00348393689, 0.0139223989, 0.0187411774, 0.0183140282, 0.00680101849, 0.0205031689, 0.0173395947, -0.0260828063, -0.0157511327, -0.0182205886, 0.0100847287, 0.00667754561, 0.0240538474, 0.00331040751, -0.00236767554, -0.00750848465, 0.0138423089, -0.0110124443, 0.0437027179, -0.0182739832, 0.0161248874, 0.0069078058, -0.0118266977, 0.00453512464, 0.028191857, 0.0260561109, -0.00454513589, 0.0181138013, -0.0119468337, 0.0138423089, -0.0274176486, -0.00522924215, -0.0173529424, -0.0108923083, 0.0303009059, -0.0508841649, 0.0195020381, -0.00400452502, -0.000507657, -0.0191015843, -0.00128645368, -0.00499898195, -0.016218327, 0.00612358609, 0.011419571, 0.0244676489, -0.00171026599, -0.0156443454, -0.0313954763, 0.0143495481, 0.00180537335, -0.0275244359, 0.00361742103, 0.00562635763, -0.0121470597, 0.000842201698, 0.00779547542, -0.00740169734, 0.0224119928, 0.00472534, 0.00359406136, -0.00599010196, -0.016298417, 0.00042923505, -0.00847624522, -0.0179135762, -0.0133884624, 0.028592309, 0.0352398194, 0.00215910655, 0.0178067889, -0.00740169734, -0.00727488706, 0.0030234165, 0.00399117684, 0.0323298648, 0.00265800348, -0.0103183268, -0.0107521499, -0.0069745481, -0.00541945733, -0.00230260193, -0.0025278565, 0.00163434679, 0.017566517, 0.00569977425, -0.00346725131, 0.0108389147, -0.00585661782, -0.00196221727, 0.0157110877, 0.0249748882, 0.00279482477, 0.0210771505, -0.0139624439, 0.0142427608, -0.0248147082, 0.0249882359, -0.0191950239, -0.0144830327, -0.0162049774, 0.000675763586, -0.018834617, -0.0043148757, -0.00179035647, 0.019034842, 0.00474536233, -0.00253119366, 0.0244276039, -0.0169257931, -0.0178334843, -0.0189280547, 0.00617030589, 0.0129746618, 0.014870137, -0.0170459282, 0.0200359747, -0.0127010187, 0.00511578098, 0.00440497743, -0.0150837116, -0.0113595026, 0.012727716, 0.000966091699, 0.00490888, -0.00272140861, -0.00181371614, 0.0113328062, 0.00578320166, 0.000566473464, 0.00955079217, 0.00219247746, 0.010311652, 0.0256556571, 0.0118200229, 0.0215977393, 0.00328537915, -0.00700124493, -0.0100046387, -0.00584660657, -0.0153239826, 0.0164719466, -0.00444168597, -0.00133150455, -0.0149368783, 0.00487550953, -0.0152305439, -0.00163267821, 0.0172194578, -0.00390441203, -0.00498229684, 0.00755520398, -0.000375007105, 0.0273108613, 0.000899349572, -0.00573314494, -0.0159513578, 0.0264165178, 0.0167255662, -0.00366414059, 0.00226088823, 0.00656742137, -0.00813586, -0.000361658662, 0.00540610868, 0.0125608603, 0.00494892569, -0.00193552044, -0.0145764714, 0.0117933266, 0.0147766974, 0.00582324713, -0.00846957, 0.0251617655, 0.0140158376, 0.029419912, -0.00652070157, 0.0256957021, -0.0060268105, -0.00353399338, 0.00753518147, -0.0270171966, 0.0134351822, 0.00866979733, 0.00224587112, 0.020383032, 0.000491388608, -0.0170192309, -0.00451510213, 0.00425480772, 0.0177000016, 0.00594338262, 0.0104985302, -6.60577189e-06, -0.0368149355, -0.00457850704, 0.0317425355, -0.0315289609, 0.00895678811, -0.000996125629, 0.00246445159, 0.00479541905, 0.00631380128, -0.00534604117, -0.0265900474, -0.00695452513, -0.00140909222, -0.0109590506, -0.013401811, 0.00684773782, -0.0069745481, 0.0295533948, 0.0110992091, 0.0171794128, -0.00483880099, -0.0349995494, -0.0187678747, -0.00721481955, -0.00478540733, -0.0155108608, -0.0066575231, -0.00473201368, 0.00370418583, -0.0125875575, -0.000510159822, 0.00956414081, -0.0182606354, -0.024147287, -0.0233730786, -0.028111767, 0.00182539609, 0.00669089425, 0.00527929887, 0.00933054369, 0.000360198697, -0.0189414043, 0.0109390281, 0.0129412906, -0.00853631273, -0.0102782808, -0.00642392552, 0.0135553172, -0.0140425349, 0.00327870483, -0.0116464943, 0.0235065632, -0.00906357542, -0.00233931, 0.0108589372, 0.00969095062, 0.0133417426, 0.0199825801, -0.00840950292, 0.00731493253, -0.0121670822, 0.00167022063, 0.0195420831, -0.00156593614, -0.0139490962, -0.00683438964, 0.00667087128, 0.0121937785, -0.0019104922, -0.0159246624, -0.00519253407, -0.0222651605, 0.0212773774, -0.00779547542, -0.0287791863, 0.0252685528, 0.0191416293, 0.0121270372, 0.0112660639, 0.008803281, -0.00245944574, -0.00763529446, 0.0106787337, 0.0128812222, -0.0041513578, 0.0340651609, -0.00614360906, -0.0140825799, -0.0119868787, 0.00696787378, 0.0216644816, 0.0129546383, 0.0124607477, 0.0135019235, 0.0335579216, -0.005372738, 0.0156576931, 0.0113795251, 0.000714974594, -0.000369792862, 0.0143095031, -0.0184341632, -0.0125274891, 0.0021474266, 0.00439496618, -0.00734162936, 0.00726153888, 0.00127894524, 0.0134752272, 0.0317959301, 0.000208464728, -0.0166454762, -0.00648399349, 0.0265500024, 0.0152171953, 0.00660079205, 0.0176599566, 0.00179869914, 0.0155642545, -0.0115997745, -0.027164029, 0.000198036287, 0.00854298659, 0.0141092772, 0.00462856377, -0.0148033947, -0.0257624444, -4.6615176e-05, 0.00387771521, -0.0206500012, -0.0116865393, -0.021530997, 0.0120736435, -0.00519253407, 0.0167923085, -0.00510576973, 0.00755520398, -0.00915701408, 0.00101197686, 0.016298417, 0.00476538483, 0.00603682175, 0.00196221727, -0.0163518116, 0.000200851966, -0.0150436657, -0.0142027158, 0.0170459282, 0.0192484166, -0.00107454753, -1.72590862e-05, 0.00268303184, 0.0107721724, -0.000623621338, -0.0142694581, 0.00637386926, -0.0106920823, -0.00981776, -0.00384434406, -0.00492222887, -0.00188880099, -0.0196488705, 0.0188880097, 0.00268136337, -0.00685441215, 0.00915701408, -0.011539707, 0.0151371052, -0.00401787367, -0.00694785127, -0.00706798676, 0.00843619928, -0.0291529428, 0.0213975124, 0.0260027163, 0.012333937, 0.00278147636, -0.0122071272, 0.011933485, -0.0266300924, 0.0119468337, 0.0106787337, 0.0146699101, 0.0116464943, -0.0147633497, -0.0313420817, 0.0056430432, 6.46563931e-05, 0.0210638028, -0.00237935525, -0.0100113126, 0.0109590506, -0.0261362, -0.00193552044, 0.00240104645, 0.0205298662, 8.09247795e-05, 0.00252285087, -0.0310217217, 0.0172061101, 0.00724151637, 0.0125007927, 0.00724151637, -0.00357403862, 0.0232662912, 0.00491555454, 0.0111125568, 0.0175131224, 0.0106653851, 0.00162433553, 0.0200226251, -0.00739502301, 0.00521255704, 0.00326869357, -0.00283153285, 0.00057231338, 0.00738167483, -0.0180604085, 0.00638054358, -0.0235866532, 0.00617364282, 0.0130747743, -0.00651069032, -0.0150970593, -0.00552624464, 0.00362075819, 0.00146332022, -0.00510910666, -0.00690113148, 0.00117799779, -0.00452511339, -0.0140825799, 0.0168590508, 0.000634884113, 0.0270839389, 0.000689529174, -0.0145230778, 0.0273642559, 0.00505905, 0.0117733041, 0.007495136, 0.0127410637, 0.00278147636, 0.00523591647, -0.0198757928, 0.0115130097, -0.0136153856, -0.0209703632, 0.00376425358, -0.00234264717, 0.00283487, -0.0180337112, 0.0208635759, 0.0295800921, -0.0307547525, -0.0213708151, 0.00030346791, 0.0154040735, 0.0157644805, -0.007495136, 0.0150837116, 0.0227323547, -0.00908359792, 0.0107588237, -0.0123606343, -0.0362276025, -0.0101781683, 0.00559298694, -0.0226789601, 0.0110725118, 0.0260294136, 0.0209703632, 0.00493224, -0.0055562784, 0.0150703629, 0.00898348447, -0.0002369344, 0.000565639173, -0.0216377843, -0.00837613177, 0.00868314505, -0.0194486436, 0.0108522633, 0.000878492719, -0.0225454755, -0.0245343912, -0.0139624439, 0.0116464943, 0.0214375574, -0.00504570175, 0.00578653859, 0.0142828058, 0.00139657815, -0.0142427608, 0.00846957, -0.00384434406, 0.0110725118, 0.00629377877, 0.00163434679, -0.00248614256, -0.00267302059, -0.000321613421, -0.0209169686, 0.014910182, 0.00447505666, 0.0088500008, -0.0240138024, 0.0387371071, 0.0221316759, -0.00882330351, 0.0197156128, 0.0182873309, 0.00290995487, 0.0267769247, -0.0228925347, -0.00855633523, 0.00107454753, -0.021611087, -0.00988450274, 0.0117599554, 0.00913031772, 0.00849626772, 0.000274059683, -0.0127811097, 0.00763529446, 0.00400786242, 0.00870984234, 0.0124273766, -0.00450175349, -0.00717477407, -0.0184341632, -0.0123406118, -0.0123673081, 0.00100863981, 0.0122471722, 0.00255121617, 0.00399451377, 0.0216244347, 0.0200760197, -0.00748178782, 0.0124874441, -0.0408995487, -0.0132750012, 0.0185809974, 0.0111192316, 0.00816923101, -0.00155675912, 0.0087365387, -0.0105585977, 0.0101781683, 0.008803281, 0.0106119914, 0.00545282848, 0.0225187801, 0.0191282816, -0.00642058859, -0.0173128974, 0.0057531679, 0.0181004535, 0.00225588237, 0.00289326929, -0.00370418583, 0.00444836, -0.0143495481, -0.0302742105, 0.0165920816, -0.00983110908, 0.00542279426, 0.0305678751, 0.0133150462, -0.0205565616, -0.0210104082, 0.0296334866, 0.0240671951, -0.0144029418, -0.0167122185, -0.00703461561, 0.000870149932, 0.00267802621, 0.0249081459, 0.00412466098, 0.000153089655, 0.015110408, 0.0233997758, 0.0167789608, -0.012887897, -0.014750001, -0.0156309959, -0.0237334855, -0.00156677049, -0.0131882364, -0.00540610868, 0.000866812828, 0.00610690098, 0.0207567886, -0.010745476, 0.0130614256, -0.0062770932, 0.00729491, -0.0138289602, 0.00511578098, -0.0166054312, -0.00487217214, 0.0181938931, -0.000731243, -0.0135085983, -0.00586662907, 0.00207234174, -0.031208599, 0.0100580323, 0.00671425369, 0.00251784525, 0.0155509058, -0.0284054317, 0.00751515897, 0.0135820145, 0.0181004535, 0.0289393682, 0.000833024678, -0.0101381224, 0.0133083714, 0.0109523758, 0.0166187789, -0.0247079208, -0.0196355209, -0.0148434397, 0.0211705901, 0.0101981908, -0.00886334851, 0.0150303179, -0.0210237578, -0.00668088254, 0.000281776738, 0.0105385752, 0.0159246624, 0.000953577517, 0.00709468359, 0.0166321285, -0.024627829, 0.0210371055, -0.00457850704, 0.00718812272, 0.00108873029, -0.00337214395, 0.0142160645, -0.00235599559, 0.0142027158, 0.0142160645, -0.00822929945, 0.00311518693, 0.0069078058, 0.0100313351, 0.00856300909, 0.00148834847, 0.00587330339, 0.000516834, 0.000611941505, -0.00421142578, -0.0123806568, -0.0284855217, 0.00234598434, 0.0131882364, 0.00403789617, -0.0321162902, 0.0126075801, -0.000554376456, -0.0146031687, -0.0147233037, 0.00934389234, -0.000414009497, 0.00315189501, 0.0331307724, 0.00965757947, 0.0428751148, -0.00195053744, 0.0123739829, -0.0122471722, -0.00260794698, -0.00261295261, 0.0103783943, 0.0139891412, -0.0222651605, 0.0130814491, -0.000498479931, -0.025895929, 0.0171126705, -0.00734162936, -0.00373755675, 0.00363744353, -0.00107454753, 0.00212406693, -0.00228591636, -0.00282485876, -0.0240138024, -0.0110658379, 0.00694785127, 0.010865611, 0.0110257929, -0.00215076376, -0.0173128974, -0.00855633523, -0.0182873309, 0.00889672, -0.00250950246, 0.00967092812, 0.00140742376, 0.0015692733, -0.0145230778, -0.0101981908, -0.00329872756, -0.00425480772, -0.005055713, 0.0148434397, 0.0222518109, 0.0351063386, -0.00511244358, -0.00763529446, -0.00470198, 0.00506238732, 0.0229859743, -0.00870984234, -0.00731493253, -0.0185943451, 0.0206233039, -0.00981108658, 0.0191950239, -0.00450509088, 0.0125475116, 0.00105619349, 0.00653405, 0.00260127266, -0.00544615416, 0.00187044695, -0.00328871631, -0.0140158376, -0.00802239869, -0.0119201364, -0.0239737574, 0.000863475725, 0.00700791879, 0.0117399329, -0.00538608618, -0.00983110908, 0.00203062803, 0.0280049797, -0.0128278285, 0.00211405545, 0.00995124504, 0.0179936662, 0.0369484201, 0.00373421959, -0.0277380105, 0.00293164607, -0.00900350697, 0.00489219464, -0.0172728524, 0.00162016414, -0.0118266977, 0.0183540732, -0.0166855212, 8.29061828e-05, -0.000654906733, -0.000913532276, 0.0246812236, 0.0275244359, 0.00443834858, -0.0162049774, 0.0236266982, -0.0246545263, 0.00597675378, 0.0135085983, 0.022011539, -0.0320362, -0.013401811, 0.00166604936, -0.0124006793, -0.0154574672, 0.0347058848, 0.00734830368, -0.00328537915, 0.00524592772, 0.00194052618, 0.0115196835, -0.00271640276, -0.0330506824, -1.36482349e-05, -0.00137822411, 0.011419571, 0.0110057695, -0.016258372, -0.00997126754, 0.00446170848, 0.00962420832, -0.0163518116, -0.0126743224, -0.0212106351, 0.0176199097, 0.0128345033, -0.00851629, 0.0148434397, 0.0150837116, -0.016258372, -0.0135486433, 0.0233730786, -0.0106720598, 0.0278981924, 0.000157365328, -0.018794572, 0.0227056574, 0.00704129, -0.00698122196, 0.00437160674, 0.0157377832, -0.00998461619, 0.0072682132, -0.0236533955, -0.0274176486, 0.00478207041, -0.0231595039, 0.00498229684, -0.0226389151, 0.0240805447, 0.00346391415, -0.0156576931, 0.0152705889, -0.00275144237, -0.00582992099, 0.0210371055, -0.0170325805, 0.0129412906, 7.6231976e-05, 0.00158762734, 0.0105252266, 0.00419140281, 0.0168056563, 0.025575567, -0.031208599, -0.00183040171, 0.0186477378, -0.0146832587, -0.0197957028, -0.00427816762, -0.0143628968, 0.0112727378, 0.0131615391, 0.00736832619, -0.0132216075, 0.00386770372, 0.0095040733, -0.0215176474, -0.0287524909, 0.00530265877, 0.00618031714, -0.00903020427, 0.0217979643, -0.00866979733, 0.0102582583, 0.00551623339, -0.0150436657, -0.00242106919, -0.00572980801, 0.000679935, 0.00376091641, 0.0152572403, 0.0057531679, -0.0130414031, -0.0215977393, 0.0110124443, 0.00418806588, -0.00512245484, 0.0152972862, -0.00652070157, -0.00920373388, 0.0324633494, 0.000269054028, -0.0167522635, -0.0273108613, 0.00820927694, 0.0195020381, -0.0133417426, 0.00817590579, -0.0182205886, -0.0181538463, -0.0107921949, 0.0173929874, 0.000321404863, -0.00658076955, -0.00798235368, -0.0109990956, 0.00228758506, 0.00115880941, -0.00779547542, 0.0049455883, -0.00541278301, -0.0242407247, 0.0300339386, -0.0151638016, 0.0251617655, 0.0126876701, 0.00143412058, -0.0059367083, -0.018047059, -0.0236667432, -0.0141226249, 0.000249657111, -0.0193685535, -0.0122404983, 0.00186210417, -0.0106787337, -0.00794898253, 0.0168323535, -0.000767116842, 0.034465611, -0.0144563355, -0.00569643686, 0.00272140861, -0.0103850681, 0.016378507, -0.00850961544, -0.0143228518, -0.0187011324, -0.0203963816, 0.0205832589, 0.0211705901, 0.00723484205, -0.0238803178, 0.0293932147, 0.00114546099, -0.011579752, -4.0097395e-05, -0.0195821282, 0.0086497739, -0.0204364266, -0.00522590522, 0.0216377843, -0.00485548656, -0.027164029, 0.0034539029, 0.00162683835, 0.0275778305, -0.00782884657, -0.0135286208, -0.0081492085, 0.0217178743, -0.0196622182, 0.0108188922, -0.00594338262, -0.0172461551, 0.00509575801, -0.010585295, 0.00856968388, 0.00591334887, -0.00233096723, 0.00646397099, 0.0135486433, -0.0160447974, -0.000524759642, 0.0172728524, 0.0115997745, -0.0134552047, -0.00265132939, -0.00362409512, -0.0169124436, 0.0166588239, 0.004738688, 0.0274443459, -0.000174467976, 0.0114529422, 0.017486427, 0.00956414081, 0.00973099563, -0.00870316755, 0.0142961545, -0.0262963809, -0.00411798665, -0.0231328066, 0.00296501722, 0.0122471722, 0.00938393734, -0.00916368794, -0.0185009055, -0.0158445705, -0.0113862, -0.00354400463, 0.00971764792, 0.00148167426, 0.0249481909, -0.00462188944, -0.0295533948, -0.0296334866, -0.010111426, -0.0126142539, 0.00647398224, -0.0111325802, 0.00955079217, 0.00495226262, 0.0392710418, -0.00955746695, 0.00895011332, 0.00174697407, 0.0133350687, 0.00447171973, 0.00478874473, 0.00558964955, -0.0136821279, 0.00603682175, 0.0182739832, -0.0368149355, -0.0285389163, 0.0178334843, 0.0284054317, 0.00846957, 0.00390441203, 0.00242273766, 0.00325033953, 0.0109590506, 0.0153907249, 0.00798235368, -0.0177533943, 0.00865644868, -0.000158199604, -0.00981776, 0.00495893694, 0.0144963805, -0.0229325797, -0.0304610878, 0.00405791868, -0.0164319016, 0.0120202499, -0.00502234185, -0.000494308595, 0.0114729647, -0.00396114262, 7.64926881e-05, -0.00584994396, 0.00879660714, -0.0167122185, -0.0255622193, 0.00742839416, -0.0148434397, -0.00294332602, 0.00847624522, -0.0218780562, -0.0124807702, -0.0222384632, -0.0023276303, -0.00572313368, 0.00681770407, -0.000303259352, 0.0148968333, -0.00539609743, -0.0111726252, 0.0111125568, 0.00222251145, -0.00951074716, -0.00443167426, 0.0174730774, -0.0193285085, 0.0115997745, -0.00142994919, -0.0157778282, -0.0281651597, 0.00106787332, 0.00986448, -0.0183006804, -0.0012889565, 0.0203963816, 0.000755019835, -0.0435158387, -0.00204564491, 0.0187278297, 0.0253753401, 0.0131748877, -0.0121470597, 0.0147233037, 0.0140024899, -0.012494118, -0.0133417426, -0.0389773771, -0.0266834851, 0.00842952542, 0.00450842781, -0.0123072406, -0.0122805433, 0.00400786242, 0.00458851829, 0.0112794125, 0.0192350689, 0.00459185569, -0.00366747752, -0.0127610872, -0.00371753424, 0.00350395939, 0.0190214943, 0.0126075801, 0.0316090509, 0.00440497743, 0.0206900463, -0.00373088266, -0.0257490966, 0.00427483069, 0.0256556571, 0.00248113694, -0.0187144801, -0.0023276303, 0.0168590508, 0.0197823532, 0.00152839371, 0.00753518147, 0.0111526027, 0.00174530549, 0.00947070215, -0.00556295272, -0.00483546406, -0.00540944608, -0.00557630137, -0.00415803213, 0.0257490966, -0.00973099563, 0.00502901617, 0.00389773771, -0.0028215216, 0.010745476, -0.00966425426, -0.0098911766, 0.00481210416, 0.0371619947, -0.0128011322, -0.0198490955, -0.00674762484, -0.000528096745, 0.00420141406, -0.00335045275, -0.00335879554, -0.0106119914, -0.00410463847, -0.00853631273, 0.00586662907, -0.000541862333, 0.0190481916, -0.0185943451, -0.0163518116, -0.0100580323, -0.0064306, -0.0196221732, 0.000996125629, 0.0163651593, -0.00979106408, 0.00450842781, 0.00455181, -0.0207834858, -0.00582324713, -0.0168323535, -0.00989785139, 0.0335579216, 0.0187411774, 0.010351697, -0.0398316756, -0.0225721728, 0.012847851, -0.0108322408, 0.0101714935, -0.0261228513, 0.0169124436, -0.00176532811, -0.0175131224, -0.0267769247, -0.0129546383, 0.00126392825, 0.00446170848, -0.000453011889, 0.000430069311, 0.0227190051, 0.00259626703, -0.0212640278, 0.00392777193, -0.00845622178, 0.0131014716, 0.0047186655, 0.0259092767, -0.0203696843, -0.0132883489, -0.00432822434, 0.00330873881, -0.0156443454, 0.00276812795, -0.000656158139, 0.0134618785, -0.00483212713, -0.00830271561, 0.00628376752, 0.0160981901, -0.000856801518, -0.00433489867, 0.00147166301, 0.0103183268, -0.00768201379, 0.0124674216, 0.00656074705, -0.0109390281, -0.000339341786, -0.0197957028, 0.00338048651, 0.0204097293, 0.00569643686, -0.013441856, 0.00443501165, -0.0356936678, -0.0167656112, 0.000431320717, 0.000334961835, 0.00568308868, -0.020383032, -0.0179002266, 0.0254687797, -0.0110458154, -0.0156977382, -0.016218327, -0.0120135751, -0.0290194582, 0.0323298648, 0.0181138013, -0.00371086, -0.00350395939, -0.0104184393, 0.00332208723, 0.0114863133, 0.00316691189, 0.025615612, 0.0115130097, 0.0047153281, 0.00714807725, 0.0170459282, -0.0020539877, 0.00973099563, 0.000271974, -0.00170442602, 0.00351063372, -0.0319027156, 0.0288325809, -0.0135486433, -0.00734162936, 0.0104317879, -0.00137822411, 0.026016064, 0.00842952542, 0.0222518109, -0.00203730213, 0.0136554306, -0.00786889158, 0.0080624437, -0.0158579201, -0.013008032, 0.0318760201, -0.0140291862, -0.0100246612, -0.00635050936, -0.0261628982, 0.00104451366, 0.00130814489, 0.00538942358, -0.00118800916, -0.00033266758, -0.0194753408, -0.00415803213, 0.0106587112, 0.028432129, -0.00704796426, -0.00473201368, -0.00752850715, -0.0102916295, 0.0127343899, -0.0101247746, 0.00383767, -0.0227457024, -0.0141359735, 0.00713472907, -9.13532276e-05, 0.00624372205, 0.00942398235, 0.000312436372, 0.0179135762, -0.00927715, -0.00144246337, 0.00311518693, -0.0111592766, -0.00398116559, -0.0266033951, -0.019034842, -9.08318e-05, 0.0214242097, -0.0189280547, 0.00473201368, 0.0218380094, -0.0198357478, -0.00210571289, -0.0245744362, 0.0247212686, -0.00157010753, 0.00209570141, -0.0110257929, -0.0100980774, -0.0277380105, -0.00556962704, 0.00759524945, -0.00911029428, -0.0168590508, 0.00349061098, 0.0155242095, -0.0112059964, 0.00527929887, -0.0196355209, -0.00209236448, -0.0303009059, 0.00924377888, 0.00447171973, -0.0021190613, -0.0573981926, 0.0153640276, -0.00214242097, 0.00542946858, 0.00412799791, -0.0165787339, -0.016338462, 0.00151003967, -0.00134735589, 0.0190214943, -0.0147366524, -0.0104184393, 0.00185209292, 0.0120202499, -0.0159113128, -0.00266634626, -0.0120269237, 0.00448840531, 0.0316624455, 0.00796900503, 0.00132733327, 0.0238002278, -0.0257624444, 0.032757014, -0.0208769236, -0.00316524343, -0.0114395935, -0.0257357489, 0.00317191752, 0.00223585987, -0.00205732486, -0.00971097313, -0.0134952497, 0.00364745501, 0.0111058829, -0.0003526902, 0.00792228524, 0.00769536244, 0.00882330351, -0.00357737578, -0.0158445705, 0.0164719466, 0.0185943451, 0.0187545251, 0.00109123311, -0.00670090551, -0.0221316759, 0.00197556568, 0.0149368783, -0.00434491, 0.000964423118, 0.0159647074, -0.00376091641, -0.012093666, -0.00382098439, -0.0196221732, 0.0358805433, 0.00490888, -0.0274176486, 0.00405791868, -0.000224420262, -0.0244276039, -0.00896346197, 0.00530933309, 0.00750181032, 0.0164319016, 0.00136988133, 0.00240271515, 0.00647064531, -0.0057531679, 0.0324900486, -0.0345724, -0.0182606354, -0.0156710409, 0.00714140292, 0.0193685535, 0.00410130108, 0.00197890284, 0.00271306583, -0.0240138024, -0.0105385752, -0.0131214941, -0.0115664033, -0.00138489832, 0.00649066782, 0.00377760199, -0.000747511338, 0.0219047517, 0.0140024899, -0.00568308868, -0.00601346185, -0.00687443465, 0.0166187789, 0.00825599581, 0.014990272, -0.0167656112, -0.00793563388, -0.00118634058, -0.0151237566, -0.0667954758, 0.00330039603, 0.00913031772, 0.00256623328, 0.0373488702, 0.0215576943, 0.0182606354, 0.00884332601, 0.00905022677, -0.00460186694, -0.00581323542, 0.00730158435, 0.0237868801, -0.0164452493, -0.000775876746, -0.00348059973, -0.00346391415, -0.0315823555, -0.0117866518, 0.0043582581, 0.00834943447, -0.00212573539, -0.00538608618, 0.0305945724, 0.00281818444, 0.000610272924, 0.0117399329, -0.0255889148, 0.0150303179, 0.0167522635, -0.000553959282, 0.0231461544, -0.0232529417, -0.0112794125, 0.0223852955, -0.0135686658, -0.0195554309, -0.025495477, -0.00309182703, -0.00308682141, -0.0225721728, -0.0125608603, -0.00251951371, 0.00432155, -0.00204230775, -0.00411131233, -0.00154257647, -0.0153640276, 0.00775543042, -0.00470198, -0.0198090505, -0.0168457031, -0.00945068, 0.00917703658, 0.00664751185, -0.00757522648, 0.0167789608, 0.0217045266, -0.0088700233, -0.0119535076, -0.008129186, -0.000416303752, 0.0176733043, -0.00923710503, 0.0234531686, 0.00451176474, -0.0206366535, -0.0277647078, -0.0210371055, -0.00166688359, -0.00434491, 0.00376091641, 0.00196388597, -0.00734162936, 0.00214408943, -0.00271807145, 0.0210237578, 0.0150436657, -0.000451343338, -0.00993122254, 0.00830938946, 0.000349353097, -0.0116665168, -0.00114963239, -0.0113595026, -0.00856300909, 0.0226255674, 0.0214108601, 0.000678266457, -0.00380096165, 0.012173756, -0.0142160645, 0.00935724, -0.00143328623, 0.010071381, 0.010071381, -0.0053927605, -0.0374289602, 0.00599010196, 0.011539707, -0.0112927612, 0.0108455885, -0.00166521501, 0.052779641, -0.000909360882, -0.0148567883, -0.0282452498, 0.0237334855, 0.00467194617, -0.0107654985, 0.0101581458, -0.0304610878, -0.0311552063, -0.0251217205, 0.0153640276, 0.024107242, 0.0152572403, -0.00655073579, 0.0221583731, 0.0129946843, 0.00539609743, -0.0072682132, 0.0312886909, -0.00167606061, 0.00515916338, -0.00204564491, -0.0121937785, -0.0174063351, 0.00389440078, -0.00553959329, 0.011933485, 0.00392109761, 0.0230126716, 0.0226789601, -0.00310183852, 0.0293665174, -0.00338549237, 0.0269371048, -0.00385101838, -0.00206066179, 0.0111592766, -0.00520921964, 0.00547952531, -0.0402321294, 0.0192884635, 0.0105652725, -0.00489886897, 0.0136287333, 0.0213307701, -0.0362809971, -0.00509575801, 0.010271607, 0.00897681061, 0.00287491526, -0.0065941182, 0.00844287407, 0.000125454259, -0.00196388597, -0.0309683271, -0.0235866532, 0.0323832594, -0.00896346197, -0.0116464943, -0.0131882364, 0.0195420831, -0.00174196844, 0.00754852965, 0.0217579193, -0.0185276028, -0.000205023345, -0.00227256794, 0.00748178782, -0.0173262451, -0.0145898201, -0.00869649369]
24 Jan, 2023
multimap::begin() and multimap::end() in C++ STL 24 Jan, 2023 multimap::begin() is a built-in function in C++ STL that returns an iterator referring to the first element in the multimap container. Since the multimap container contains the element in an ordered way, begin() will point to that element that will come first according to the container’s sorting criterion. Syntax: multimap_name.begin() Parameters: The function does not accept any parameter. Return Value: The function returns an iterator referring to the first element in the multimap container Simple Example C++ #include <iostream> #include <map> int main() { // Create a multimap of integers to strings std::multimap<int, std::string> mmap = { {1, "one"}, {2, "two"}, {3, "three"}, {3, "three again"}, }; // Print the first and last elements of the multimap std::cout << "First: " << mmap.begin()->second << std::endl; std::cout << "Last: " << (--mmap.end())->second << std::endl; return 0; } Output First: one Last: three again CPP // C++ function to illustrate // the multimap::begin() function #include& lt; bits / stdc++.h & gt; using namespace std; int main() { // initialize container multimap& lt; int, int& gt; mp; // insert elements in random order mp.insert({ 2, 30 }); mp.insert({ 1, 40 }); mp.insert({ 3, 60 }); mp.insert({ 4, 20 }); mp.insert({ 5, 50 }); auto ite = mp.begin(); cout& lt; < " The first element is : " ; cout& lt; < " { " < < ite - > first& lt; < " , " < < ite - > second& lt; < " } \n& quot; ; // prints the elements cout& lt; < " \nThe multimap is : \n& quot; ; cout& lt; < " KEY\tELEMENT\n& quot; ; for (auto itr = mp.begin(); itr != mp.end(); ++itr) { cout& lt; < itr - > first& lt; < '\t' & lt; < itr - > second& lt; < '\n'; } return 0; } Output: The first element is: {1, 40} The multimap is : KEY ELEMENT 1 40 2 30 3 60 4 20 5 50 multimap::end() is a built-in function in C++ STL that returns an iterator to the theoretical element that follows the last element in the multimap. Since the multimap container contains the element in an ordered way, end() will point to that theoretical position which follows the last element according to the container’s sorting criterion. Syntax: multimap_name.end() Parameters: The function does not accept any parameter. Return Value: The function returns an iterator referring to the first element in the multimap container CPP // C++ function to illustrate // the multimap::end() function #include <bits/stdc++.h> using namespace std; int main() { // initialize container multimap<int, int> mp; // insert elements in random order mp.insert({ 2, 30 }); mp.insert({ 1, 40 }); mp.insert({ 3, 60 }); mp.insert({ 4, 20 }); mp.insert({ 5, 50 }); // prints the elements cout << "\nThe multimap is : \n"; cout << "KEY\tELEMENT\n"; for (auto itr = mp.begin(); itr != mp.end(); ++itr) { cout << itr->first << '\t' << itr->second << '\n'; } return 0; } Output: The multimap is : KEY ELEMENT 1 40 2 30 3 60 4 20 5 50 Let us see the differences in a tabular form as shown below as follows: multimap::begin() multimap::end() It is used to return an iterator referring to the first element in the multimap container. It is used to return an iterator referring to the past-the-end element in the multimap container. Its syntax is -: iterator begin(); Its syntax is -: iterator end(); It does not take any parameters. It does not take any parameters. Its complexity is constant. Its complexity is constant. Its iterator validity does not change. Its iterator validity does not change. Learn C++ Online – Master everything from basics to advanced concepts. Apply your knowledge with practical exercises and boost your skills. Take the Three 90 Challenge: finish 90% in 90 days for a 90% refund. Start now and level up your C++ programming!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum/Algorithm for Dynamic Time out timer Calculation/Difference between Round trip time (RTT) and Time to live (TTL)/Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms/Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm/Round Robin Scheduling Algorithm with Different Arrival Time/Selfish Round Robin CPU Scheduling/Find the order of execution of given N processes in Round Robin Scheduling/Calculate server loads using Round Robin Scheduling/set::lower_bound() Function in C++ STL/Implementation of lower_bound() and upper_bound() in List of Pairs in C++/Difference between std::set::lower_bound and std::lower_bound in C++/Difference between std::set vs std::vector in C++ STL/std::minmax() and std::minmax_element() in C++ STL/std::rotate vs std::rotate_copy in C++ STL/std::bitset::to_ullong and std::bitset::to_ulong in C++ STL/std::upper_bound and std::lower_bound for Vector in C++ STL/std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++/std::string::append vs std::string::push_back() vs Operator += in C++/Vector push_back() in C++ STL/vector :: cbegin() and vector :: cend() in C++ STL/unordered_multiset cend() function in C++ STL/unordered_multiset bucket() function in C++ STL/unordered_multiset emplace_hint() function in C++ STL/unordered_multiset end() function in C++ STL/unordered_multiset size() in C++ STL/unordered_multiset emplace() function in C++ STL/unordered_multiset find() function in C++STL/unordered_multiset erase() function in C++ STL/unordered_multiset clear() function in C++ STL/unordered_multiset swap() function in C++ STL/unordered_multiset bucket_size() function in C++ STL/unordered_multiset bucket_count() function in C++ STL/unordered_set bucket_count() function in C++ STL/unordered_set cbegin() function in C++ STL/array::cbegin() and array::cend() in C++ STL/array::rbegin() and array::rend() in C++ STL/multimap rbegin in C++ STL/vector rbegin() and rend() Functions in C++ STL/multiset rbegin() and rend() function in C++ STL/map rbegin() function in C++ STL/map upper_bound() function in C++ STL/Set upper_bound() in C++ STL/multimap upper_bound() function in C++ STL/multimap empty() function in C++ STL/multimap value_comp() function in C++ STL/multimap swap() function in C++ STL/multimap::swap() in C++ STL/multimap equal_range() in C++ STL/unordered_set equal_range in C++ STL/set vs unordered_set in C++ STL/unordered_set count() function in C++ STL/unordered_set bucket() function in C++ STL/unordered_set emplace() function in C++ STL/set::emplace() in C++ STL/multiset::emplace() in C++ STL/multiset find() function in C++ STL/multiset cbegin() and cend() function in C++ STL/multimap::cbegin() and multimap::cend() in C++ STL/multimap::begin() and multimap::end() in C++ STL
https://www.geeksforgeeks.org/multimapbegin-and-multimapend-in-c-stl?ref=asr10
PHP
multimap::begin() and multimap::end() in C++ STL
unordered_multiset clear() function in C++ STL, What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, jQWidgets jqxTreeMap width Property, Round Robin Scheduling Algorithm with Different Arrival Time, Difference between Flow and TypeScript, unordered_multiset emplace() function in C++ STL, jQWidgets jqxTree destroy() Method, unordered_set bucket_count() function in C++ STL, jQWidgets jqxTree collapseAll() Method, Find the order of execution of given N processes in Round Robin Scheduling, jQWidgets jqxScrollView buttonsOffset Property, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Vector push_back() in C++ STL, jQWidgets jqxListBox enableHover Property, Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm, std::rotate vs std::rotate_copy in C++ STL, Selfish Round Robin CPU Scheduling, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxSlider buttonsPosition Property, std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++, std::upper_bound and std::lower_bound for Vector in C++ STL, Difference between Round trip time (RTT) and Time to live (TTL), jQWidgets jqxSlider rtl Property, Difference between std::set::lower_bound and std::lower_bound in C++, jQWidgets jqxTooltip opacity Property, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, unordered_multiset erase() function in C++ STL, multiset find() function in C++ STL, set vs unordered_set in C++ STL, jQWidgets jqxToolBar height Property, PHP, std::minmax() and std::minmax_element() in C++ STL, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, unordered_set emplace() function in C++ STL, unordered_set bucket() function in C++ STL, map rbegin() function in C++ STL, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, map upper_bound() function in C++ STL, Node.js date-and-time Date.transform() Method, unordered_multiset size() in C++ STL, TypeScript Optional Parameters, jQWidgets jqxToolBar theme Property, Difference between std::set vs std::vector in C++ STL, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, Steps to Diagnose and Resolve a Slow Network, How to use Optional Chaining with Arrays and Functions in TypeScript ?, Calculate server loads using Round Robin Scheduling, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, jQWidgets jqxScrollView showButtons Property, set::emplace() in C++ STL, Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms, jQWidgets jqxScrollView disabled Property, multimap::cbegin() and multimap::cend() in C++ STL, jQWidgets jqxSplitter destroy() Method, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, set::lower_bound() Function in C++ STL, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, jQWidgets jqxTree collapseItem() Method, multimap upper_bound() function in C++ STL, std::string::append vs std::string::push_back() vs Operator += in C++, unordered_multiset swap() function in C++ STL, unordered_multiset cend() function in C++ STL, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), Set upper_bound() in C++ STL, jQWidgets jqxSortable opacity Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, multiset cbegin() and cend() function in C++ STL, multimap rbegin in C++ STL, vector :: cbegin() and vector :: cend() in C++ STL, multimap swap() function in C++ STL, jQWidgets jqxSlider height Property, jQWidgets jqxSwitchButton onLabel Property, unordered_multiset bucket_size() function in C++ STL, unordered_set cbegin() function in C++ STL, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, jQWidgets jqxToolBar tools Property, multimap empty() function in C++ STL, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTree width Property, multimap::swap() in C++ STL, multimap equal_range() in C++ STL, Implementation of lower_bound() and upper_bound() in List of Pairs in C++, jQWidgets jqxTree clear() Method, TLS Handshake?, multiset rbegin() and rend() function in C++ STL, Algorithm for Dynamic Time out timer Calculation, Adhoc TCP, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, jQWidgets jqxTabs position Property, Differences between Wireless Adhoc Network and Wireless Sensor Network, jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, std::bitset::to_ullong and std::bitset::to_ulong in C++ STL, unordered_multiset emplace_hint() function in C++ STL, multimap::begin() and multimap::end() in C++ STL, unordered_multiset bucket_count() function in C++ STL, unordered_multiset find() function in C++STL, unordered_multiset bucket() function in C++ STL, Impact of Three-way Handshake and Slow Start Algorithm, array::rbegin() and array::rend() in C++ STL, multimap value_comp() function in C++ STL, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, multiset::emplace() in C++ STL, unordered_set equal_range in C++ STL, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, unordered_set count() function in C++ STL, vector rbegin() and rend() Functions in C++ STL, array::cbegin() and array::cend() in C++ STL, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, unordered_multiset end() function in C++ STL, How to Sort an Array Having Optional Properties in TypeScript ?
GeeksforGeeks
[-0.0145844184, 0.00145431736, -0.00247803144, 0.0237178281, -0.00525963, -0.0401764438, -0.0428161584, 0.0165114105, 0.00155660626, -0.00185439899, -0.0238234177, 0.0337883383, -0.0175408982, -0.0167225879, 0.00266611087, -0.0154027306, 0.0315445811, 0.0300399438, -0.0162078422, -0.0142808519, -0.0259087905, -0.00764857093, -0.0264367331, 0.00697544357, -0.00154588243, -0.00208537397, -0.00950956903, -0.0180160459, 0.00681706099, -0.00666527729, 0.00585686509, 0.0104730641, 0.0180952381, 0.000153020912, -0.0390413664, 0.0314653888, 0.0281921439, -0.00738459919, -0.020959327, -0.0131457746, 0.0126838246, 0.0241137855, 0.0237046294, 0.0098395329, -0.053427808, 0.0439776331, -0.0334451757, -0.0366920233, -0.0218568295, -0.00488677, 0.0538765602, 0.00493296515, 0.0573873781, 0.0160890557, 0.0275322143, 0.0183592103, 0.0118853115, 0.010176097, -0.0284297187, -0.035029, -0.00793893915, -0.0260143802, 0.00585686509, -0.0080775246, -0.0186627768, 0.0229259152, -0.0594991483, 0.0375895239, 0.00153185893, -0.00227180379, -0.0117137302, 0.017461706, -0.018055642, 0.0073186066, -0.0185043942, -0.00422024261, 0.0123142647, 0.0261727627, 0.00547410641, 0.0304359011, -0.040255636, 0.00660588359, -0.00859226845, 0.00342832832, 0.0494946353, 0.00294493069, -0.00554009946, -0.0394637212, 0.0636699, 0.0103212809, -0.0359265059, -0.000608371571, -0.0173957143, 0.0156271067, -0.0174485091, 0.00935778581, 0.0157326944, 0.0160494596, -0.0323628895, 0.0196526702, 0.0126508288, 0.00412455294, 0.0049989582, -0.00377809047, 0.0296967812, 0.0190719329, 0.0427369662, 0.0337355435, -0.0230579, -0.0187551659, 0.0239026081, 0.0146240145, -0.0186627768, 0.0403612256, -0.022292383, 0.0110538015, -0.00764197158, -0.00578097347, 0.0283505265, 0.0158250835, -0.020404987, 0.0255260319, 0.000403793732, 0.0337091461, -0.0634059235, 0.00755618094, 0.0116147408, 0.0273738317, -0.0200090315, -0.0236650351, 0.00734500354, -0.022134, -0.000112497175, -0.0486499257, 0.00328479381, 0.00346462429, 0.019388698, 0.0141884619, -0.0168281756, -0.020774547, -0.0501017682, -0.0200090315, -0.0135285333, 0.0272154491, -0.0605022423, -0.0553284027, 0.0113441702, 0.0554339886, -0.00652999198, -0.00516394, -0.0443207957, 0.000567950949, 0.0349762067, -0.0179368556, 0.0055335, -0.0301983263, 0.025380848, -0.00646729907, -0.0100243129, -0.0417602733, 0.027083464, 0.00320725236, 0.0268458892, 0.00209362293, 0.000362548191, 0.0296967812, 0.032151714, -0.00891563296, -0.0276642013, 0.040255636, 0.000729220919, 0.0447431505, 0.0109086176, -0.0323101, -0.00211837026, -0.028878469, 0.0227411352, 0.0280601587, -0.0251300763, 0.0292744264, 0.000786552206, -0.0135813272, 0.0185043942, 0.0144788306, 0.00551370205, -0.0080643259, 0.0410475507, -0.0186759755, 0.0329172313, 0.00233614678, 0.000885953952, 0.0239686016, 0.0504977256, 0.022292383, 0.0622444525, 0.0277169943, -0.0142544545, 0.0233482681, 0.0188079607, 0.0503393412, -0.00920600165, -0.00490326853, -0.00459310226, 0.0242853668, 0.0264367331, -0.0198110528, -0.0533750132, 0.00396617, 0.0220548082, -0.00261166692, -0.0264763292, -0.019573478, 0.012301066, 0.00826230459, 0.0149803758, -0.00412455294, -0.0540085435, 0.0208405405, 0.00616373168, -0.0514216237, 0.00164899626, -0.0150463684, 0.0362432711, -0.0494946353, -0.0179500543, -0.0307262689, -0.0163134318, 0.0232954752, 0.0107832309, -0.00841408782, 0.0203653928, 0.0406779908, -0.0230183043, -0.0122020775, -0.00835469458, -0.0057314788, -0.0338675268, -0.00485377386, -0.00674116937, 0.0331548043, 0.0352665782, 0.0162210409, -0.0398332812, 0.00873745233, 0.0255128331, 0.0483859554, -0.00805772655, -0.0274794213, -0.0330492184, -0.021328887, 0.0702163875, 0.00803792849, 0.0367976092, -0.00842728652, -0.00462939823, 0.0330228209, 0.00270240707, -0.0247077215, -0.00820291, -0.000928024412, 0.00564568769, 0.0422618166, -0.0133701507, 0.0306998715, 0.0226091482, 0.00940398, 0.0393581316, 0.013726512, -0.0149011845, -0.035029, 0.0176596846, 0.00315775769, 0.0143468445, -0.0187023729, 0.0189003516, 0.00591625879, -0.0207217541, 0.029617589, 0.0313334, -0.0265819188, 0.0223979708, -0.0101167029, -0.00153103401, -0.00812371913, 0.0176992808, -0.0112517802, -0.017870862, -0.0130005907, -0.0253676493, -0.0293008238, -0.0236122403, -0.0118787121, -0.00249617943, 0.00713382661, 0.0274794213, 0.0497322083, -0.0144920284, -0.00884304103, -0.0283241291, -0.00193359039, 0.0150595671, 0.000409568107, -0.00558629446, -0.0587600283, -0.00581726944, -0.0352401808, -0.00607794104, -0.0117137302, 0.0374839343, -0.029248029, -0.00326334615, -0.0508144908, 0.00939738099, 0.00946337357, 0.00917960517, -0.0187683646, 0.040625196, 0.00707443291, -0.0257768054, -0.0064178044, 0.00691605033, -0.0180952381, -0.00401566457, 0.00523983175, 0.0225167591, -0.0571234077, -0.0136473207, 0.0286144968, -0.0106512448, -0.0669431388, -0.021830434, -0.00406845892, -0.0142016606, -0.00559289381, -0.00643430231, -0.0357681215, -0.0205105767, 0.000236955559, 0.0253148563, 0.0294856038, -0.0141884619, -0.0044050226, -0.00675436761, 0.0174749047, 0.0198902432, -0.00562259043, 0.00196163729, -0.0100903064, -0.0100771077, 0.0356625319, 0.000904926914, 0.00454360759, 0.0010946563, -0.0131655727, 0.00915980712, -0.0112451809, -0.0306998715, -0.0309374463, -0.00485377386, 0.0460366085, 0.00243018661, 0.0352401808, 0.0135813272, 0.0164190196, -0.0142808519, -0.0273738317, -0.0187683646, -0.0378271, 0.0335243642, -0.000702411344, 0.0170657504, -0.0497058108, 0.0341051035, 0.0367712118, -0.0107040396, -0.0192039181, 0.00568198413, 0.015244347, 0.00493626483, -0.00765517028, -0.0207085554, 0.050022576, -0.0105720535, -0.0273210388, 0.0229787081, -0.0180028491, 0.00774756027, -0.00994512159, 0.00692264969, -0.0216192566, -0.00432913052, 0.0215268657, 0.00189894415, 0.00173396198, -0.0184911955, 0.00125303911, -0.0405988, -0.0381174684, -0.0344218686, -0.0398068838, 0.0482011735, 0.0225035604, 0.0102882842, -0.00387048046, -0.0279545691, -0.0092192, 0.0171449408, -0.0234142616, 0.0156271067, 0.0546420775, 0.00240708911, 0.0152575457, -0.00527942786, 0.00372199644, 0.0176992808, 0.00277004973, -0.0569650233, 0.0525567, 0.0126376301, 0.000162094933, -0.0130335866, -0.0527942777, -0.0139904832, -0.0145316245, 0.0133701507, 0.0313070044, 0.0112253828, 0.00527612818, 0.00198308495, 0.0268326905, 0.00747698918, -0.0136077246, 0.0518175811, 0.0265687201, -0.00229490129, -0.0508144908, 0.0124792466, 0.00449081324, -0.0239554029, -0.0204841793, 0.0374575406, 0.0523719229, 0.0465909503, 0.00128521072, 0.00401896425, 0.0260803718, -0.038645409, 0.0139508871, 0.00470858952, 0.00405526, -0.0431065261, 0.0163266305, -0.00991212577, 0.00262816506, 0.031227814, -0.00764197158, 0.033946719, -0.00263971393, 0.0716946274, 0.0265951175, 0.00699524162, 0.0189135503, 0.00446771551, 0.0181744304, 0.0137133133, -0.000935448566, -0.00311816204, 0.0288256742, -0.000402350124, -0.0144128371, -0.00061950786, -0.0359793, 0.016854573, 0.0274002291, 0.0330756158, 0.0256448202, -0.00808412395, -0.00575457606, -0.0160890557, -0.0230447017, 0.0307526663, -0.00601194799, -0.0344218686, -0.0174881034, -0.0278753787, -0.0258823931, 0.00623632409, -0.0180952381, -0.00772116287, 0.00219261227, -0.0136605194, -0.0124924453, -0.00359331048, -0.0105654541, 0.0156403035, 0.044584766, -0.0350026041, 0.0356361382, -0.00205072761, -0.0101167029, 0.0206557605, -0.000342131651, -0.0297495741, 0.0334715694, -0.00233944645, -0.0105984509, -0.016445417, 0.00119282072, -0.0295120012, -0.0146768084, -0.0218172353, 0.0430537313, 0.0429481454, -0.00349762081, 0.0186627768, -0.012617832, 0.039886076, -0.00500555709, -0.0273210388, -0.00249123, 0.0241401829, 0.0106248483, 0.0133239552, 0.0439512357, -0.00238564145, 0.0430537313, -0.00144194369, -0.0014147216, -0.00235264492, -0.0228335243, 0.00770796416, 0.0100969058, 0.00270900619, -0.00832829718, -0.00810392108, -0.0169733595, -0.0141092706, 0.0186231807, -0.0232162829, 0.00481087854, -0.0274794213, -0.0138321007, 0.006586086, -0.000544441, -0.00479108049, 0.00147411518, 0.0168809704, -0.0186891742, -0.00894203, 0.0110604009, 0.0260011815, -0.0133437533, 0.00394637231, -0.0157986879, -0.0316237733, 0.0291688368, -0.0114035634, -0.0246021319, 0.00783335, 0.000532067323, -0.00734500354, 0.0259087905, 0.0232558791, -0.000440914708, 0.00965475291, -0.0124528501, -0.0112583796, 0.0127960127, 0.00238564145, 0.024456948, 0.00400576554, -0.00660588359, 0.0214740727, -0.0139904832, 0.00530252513, 0.0150991632, 0.0414963029, 0.0182140246, -0.00606474234, -0.00683685858, 0.0066190823, -0.00611423701, 0.0222395882, -0.0345010608, -0.00513424352, 0.0129807927, -0.0169601608, -0.0217116456, -0.0325476713, 0.0154687231, 0.0060383454, -0.00714042597, 0.00311816204, 0.000793563959, 0.00244668475, -0.0190719329, 0.0282977317, -0.0139244907, -0.026159564, 0.00505835144, 0.0113375708, -0.00711402856, 0.0145052271, -0.0289840568, 0.00685665663, -0.0182140246, 0.0252620615, 0.0158514809, 0.0279017743, -0.0176860821, -0.0337619409, 0.0304622967, 0.0249057, 0.00188409572, 0.00117302279, 0.0249188989, 0.00700844033, -0.0151387583, -0.0319933333, 0.00755618094, -0.0365072414, -0.0149407806, -0.0121426834, 0.0126508288, 0.0101431, 0.0131457746, -0.0260011815, -0.0113573689, -0.0067378697, -0.0364280492, 0.0114959534, -0.010063909, 0.00482737646, -0.0286144968, 0.0302511211, -0.000388326647, -0.0345802493, 0.0368240066, -0.0364016518, 0.0277961865, -0.029063249, 0.00410145521, -0.00281459489, 0.0378007032, -0.00522003416, 0.0164322183, 0.00895522907, 0.0292744264, -0.00110703, 0.000146834078, -0.0205105767, -0.00374509394, -0.00768816657, -0.00189399463, -0.0237970203, -0.0303039141, 0.00753638288, 0.0117731234, 0.000484222517, 0.00116147404, 0.0114959534, -0.0210121218, -0.00195998745, -0.00609113974, 0.023994999, -0.0117335282, -0.0506033152, -0.000499070913, 0.00394967198, -0.0011829217, -0.010341079, -0.0287464838, -0.00957556162, 0.0106512448, 0.0014609166, -0.0158250835, -0.0242985655, 0.0523983203, -0.0113441702, 0.0019434893, 0.0145052271, -0.0150727658, 0.00319240382, -0.0260407776, 0.00137842551, 0.00424663955, 0.017870862, -0.0193755, 0.0278489813, -0.0440304279, 0.017039353, -0.023810219, 0.010618249, 0.0206821579, -0.00535202, -0.0102024935, 0.00968115, -0.0156667, -0.00444131857, -0.0241269842, 0.0312014166, -0.0170525517, -0.0294064116, -0.015429127, 0.00568198413, 0.0522399358, -0.00212991913, -0.0246945228, 0.00204247865, 0.0108360248, 0.00978014, -0.0215268657, -0.0379590839, -0.00491316756, -0.0132513633, -0.0126970233, 0.000505670148, -0.0181480329, 0.00040668092, -0.0238894094, -0.00269085821, 0.0247209202, 0.0179104581, 0.00930499099, 0.0358209163, -0.000372653361, -0.0239554029, -0.0198110528, -0.0320989192, -0.0131457746, -0.0276642013, -0.00653989101, -0.00598885072, 0.000562176574, -0.0293008238, 0.0118985102, 0.0302775167, -0.020127818, -0.00183295133, 0.0122218747, 0.0216588527, 0.029248029, -0.00953596644, -0.00485047419, 0.00990552641, -0.0279809665, 0.00356361363, 0.00630561635, -0.0307790637, 0.0157590918, 0.0137001146, 0.00642110407, 0.013356952, -0.0249320976, 0.0193755, -0.0132447639, 0.0248661041, 0.000214682979, 0.0167621821, -0.0171053447, 0.0181744304, -0.0049989582, 0.00151618558, 0.0253148563, -0.0465381555, -0.017963253, 0.00898162648, 0.0348970182, 0.0221472, 0.0157722905, -0.0242457706, -0.0123274634, 0.0263575427, 0.0111263935, 0.00813691784, -0.0169337634, -0.0258559976, 0.0117929215, 0.00603174604, 0.0265027266, -0.0271626543, 0.0527678803, 0.0215268657, 0.00227840291, 0.00154340768, -0.010618249, 0.00865826104, 0.0417074785, 0.0325212739, -0.031227814, -0.00732520595, 0.00800493173, 0.0170921478, 0.00894863, 0.00197648583, -0.0339203216, -0.00183955056, -0.0478316136, -0.0410475507, -0.0281657465, 0.0286672916, -0.00462609855, 0.00399586698, -0.00318415486, -0.00933798775, -0.0452710912, 0.0092258, 0.0229127165, 0.00150051236, 0.0379326865, -0.00354051613, 0.0113507695, -0.0120634921, 0.00126458786, 0.0225563552, -0.00217116461, -0.00920600165, 0.013541732, 0.0015813536, 0.00447761454, 0.0129082007, -0.0148747871, 0.0242457706, -0.0115355495, -0.0302511211, 0.0198374502, 0.0143732419, 0.0169337634, 0.0243513603, -0.00838109106, -0.00761557417, 0.0169073679, -0.0136209233, 0.0393053405, -0.0173033234, 0.00799833331, 0.00590965943, -0.0106908409, -0.00962175708, 0.0374311432, -0.00608454039, -0.00707443291, -0.0226223469, 0.0113309715, 0.00761557417, -0.0199826341, 0.00670157326, 0.0399388708, -0.012116286, 0.00670817262, 0.0145976171, 0.0308318567, -0.00723941531, 0.0245361403, -0.000525880489, 0.00996492, -0.0549588427, -0.0192831103, 0.0248001106, 0.0216192566, 0.0134757394, 0.0276114065, 0.00575457606, 0.0102618877, 0.0178972594, 0.0117467269, -0.000255928491, -0.0276114065, 0.0263971388, -0.00937758293, -0.00178015698, -0.00580407074, -0.0227675308, 0.0144260358, 0.00273210369, -0.0187683646, 0.0162342396, 0.0322045088, 0.0241401829, -0.013449342, 0.0487555154, -0.0314917862, -0.0245625377, -0.0452446938, -0.0121294847, 0.0203653928, 0.0018230523, -0.0224903617, -0.0204709806, -0.00702163856, 0.0201674141, -0.0127564166, -0.022477163, -0.00185769855, 0.0249188989, -0.00955576357, 0.0220416095, -0.0261067692, 0.0119051095, -0.0325476713, 0.00824250653, -0.00218601292, 0.0175540969, 0.0159702692, 0.0211045127, -0.00352071831, 0.0585488528, 0.0273738317, -0.0156799, -0.00193194055, 0.010525859, -0.00709423097, -0.0318349488, -0.0242589694, 0.00501875579, -0.000688387896, -0.0117995208, -0.0140696745, 0.0239686016, 0.0047250879, 0.00382098579, 0.0313598, -0.0071536242, 0.011839116, 0.00657948665, -0.0284297187, -0.00266776071, -0.0208141431, -0.0182800181, 0.00506825047, -0.0348970182, 0.0116345389, 0.024047792, -0.00108145771, -0.0010344378, -0.0193359032, -0.0269778743, -0.00153350877, -0.0530318506, 0.000429365959, 0.00860546716, 0.00802473, 0.00275685103, 0.00906081777, -0.0242193751, 0.00854607392, -0.0457726382, 0.00280304602, -0.00915320776, -0.0276378039, -0.0114167621, -0.00174716057, -0.00480097951, -0.0278489813, -0.0149407806, -0.0223583765, -0.0202994, -0.0147955958, -0.0121096876, -0.00589316105, 0.0229259152, 0.00587006379, 0.0320725217, -0.0168149769, 0.0342106894, 0.00917300582, -0.0155875096, -0.0236386377, -0.0362168737, -0.00387707958, 0.0303567089, -0.0139640858, 0.000177252659, 0.0334979668, -0.000805937627, 0.0270174704, -0.0529526584, -0.0242457706, -0.020959327, 0.0138848945, 0.0367712118, 0.00723281596, 0.00564238848, 0.00783995, 0.0113045741, 0.0295647942, 0.00976694096, -0.006206627, -0.0195470806, 0.0172373317, -0.0242589694, -0.0163134318, -0.0186495781, -0.0165378079, 0.0252620615, 0.0354249589, 0.0370879807, -0.0197318606, -0.00415095, -0.0179764517, -0.0386718065, 0.00198803446, -0.040018063, 0.0412323289, -0.00498246, 0.00341183017, -0.0269514788, 0.0322045088, -0.0154687231, 0.00587996235, 0.0259351879, -0.0398596786, -0.00294328085, -0.018557189, 0.020312598, -0.00508474885, -0.00972734578, -0.0159438718, 0.042789761, 0.00154093292, -0.0147164045, -0.0190059394, -0.0349498093, 0.0137133133, 0.0056588864, 0.00400246587, 0.0161814447, -0.0320197269, -0.000169519117, 0.00177850714, 0.00705463532, -0.0141092706, 0.0174353104, 0.0333131887, 0.0244965442, -0.00704803597, -0.017224133, -0.0352929719, -0.00234604557, 0.000115693707, 0.00189894415, -0.0116081415, -0.00573477848, 0.016854573, 0.00723941531, -0.0230974965, 0.0046063005, -0.0166565944, -0.00659598503, -0.000749431259, 0.00576777477, 0.0125518395, -0.0108426241, 0.0178312659, 0.00401896425, 0.0078267511, 0.00951616839, -0.0290896464, 0.0178180691, 0.00265951175, -0.0222527869, -0.00201443164, 0.0150991632, 0.00347122364, -0.010618249, 0.0385926142, 0.0210517179, 0.00253577507, 0.0294064116, 0.0135945259, 0.00152278494, -0.0380118787, -0.0234010629, -0.0110604009, 0.00380118797, -0.00131573237, 0.00528272707, -0.0014980376, 0.0121888788, -0.0202862, -0.0111659896, -0.00689625228, 0.017870862, 0.0171185434, 0.0173429195, -0.0332076, -0.00439842325, 0.00236089411, -0.0340259112, -0.0203257967, -0.0190323368, 0.0143204471, 0.0199298393, 0.00426313793, 0.00515404111, 0.00431263261, 0.0424466, 0.0589184128, -0.0179368556, -0.0153763331, -0.0265555214, 0.0266743079, 0.00397276925, -0.0150199719, 0.0230051056, 0.0241533816, -0.0114431595, 0.0206821579, 0.0225431565, -0.0106248483, 0.0194546916, -0.0102552883, 0.0201806128, 0.0242193751, -0.0107436348, -0.0320461243, -0.00482737646, -0.0265951175, 0.0019484387, 0.00939078163, -0.00685005728, 0.00628581829, 0.000429778418, 0.0233350694, -0.0214476753, 5.89811061e-05, 0.000422766665, 0.0167885795, -0.0113837654, 0.0236650351, -0.0226091482, 0.0191907194, 0.0205633715, 0.0154819218, 0.0261991601, -0.01346914, 0.0143864406, -0.00655638939, 0.0159042757, 0.00600204943, 0.0220284127, -0.00374179427, -0.0407835767, 0.00310661318, -0.00817651395, 0.00431263261, -0.00417404762, -0.0132183665, -0.0345010608, 0.0255260319, -0.00328809349, 0.0192963071, -0.00215961598, 0.0197318606, -0.0327588469, 0.000189832543, -0.00355701428, -0.0158118866, 0.00618352974, 0.026713904, 0.00815671589, 0.00894863, 0.0244305506, -0.0171185434, -0.0168677717, 0.0267403014, 0.00195668777, -0.0205633715, 0.00807092525, 0.0344746634, -0.00163579767, -0.027268244, -0.00554339914, 0.00617033103, -0.00200948212, -0.0230711, 0.000214889209, 0.00681046164, 0.0343690738, -0.0135813272, 0.0271362588, 0.000640955521, 0.00241863774, -0.00306371786, 0.00182140258, -0.00619342877, 0.00245328411, -0.0213024896, -0.00463269791, -0.00424663955, 0.00671477197, -0.00134625402, 0.0015260845, -0.00470199, 0.0239158068, -0.0183592103, -0.00764197158, -0.0135285333, -0.00153928308, 0.0191379245, 0.0102354903, 0.0280337613, -0.0397804864, 0.00143946894, 0.00374509394, 0.00793234, 0.00471518887, 0.0103806742, 0.0156535022, 0.0248133093, -0.00468219258, 0.0019896843, -0.00987912901, -0.00373189547, -0.00394637231, -0.00805772655, -0.022015214, -0.0157458931, 0.0145448232, -0.00920600165, -0.00623632409, 0.00489666918, 0.0171449408, -0.00534212077, -0.00889583584, 0.00863186456, 0.014003682, -0.0133635513, -0.00592615735, 0.00274695223, -0.018557189, 0.0154555244, 0.0130401859, 0.00303897052, 0.00971414708, -0.00588326203, 0.024826508, 0.0120700914, 0.0177388769, -0.00215466646, -0.0167489834, -0.00891563296, 0.016854573, 0.0128554059, 0.0301191341, 0.010730437, 0.00196823664, -0.0357945189, -0.0131061794, -0.0185043942, -0.00532232318, -0.0134757394, -0.0249320976, 0.0155347157, 0.0287464838, -0.0185175929, -0.0510520637, -0.0104862629, 0.00264301337, 0.0167753808, 0.015891077, -0.00669497438, -0.0232294817, 0.00625612168, -0.0412851237, -0.0365864336, 0.00954916514, -0.00294163101, -0.0132579627, 0.0154819218, -0.00865166169, 0.00667187665, 0.0214872696, 0.00861866586, 0.0197846554, -0.0117137302, 0.0304622967, -0.0217248444, -0.000506495067, 0.00469869049, -0.00493626483, -0.0167621821, 0.0311222263, -0.00241368823, 0.0234538577, -0.0271890517, 0.011192387, -0.00564898737, 0.0113903647, -0.00439842325, -0.020497378, 0.000365435379, 0.0251828693, 0.0305678863, -0.0167357847, -0.0112979747, -0.00638150796, -0.0158382822, -0.00261991587, -0.0181744304, -0.0120766908, 0.00732520595, -0.0242457706, -0.00853287522, 0.0122548714, 0.0264631305, -0.00899482518, 0.00331449066, 0.0166301969, 0.0150859645, 0.0159702692, 0.010822827, 0.0230711, 0.0198902432, 0.0423410088, 0.0186891742, 0.0216324553, 0.0214476753, 0.021460874, -0.000653741648, -0.0322837, -0.0200090315, 0.024456948, 0.0165378079, -0.00538501609, 0.00803132914, 0.0046656942, -0.0390941612, 0.0123538608, -0.0139376894, 0.0207349528, 0.0109944083, 0.0143600432, 0.0244041551, -0.0396485031, -0.0129082007, 0.00300432439, -0.00896182843, 0.00648049731, -0.0143600432, -0.0184384, 0.0214476753, -0.00013373862, 0.000544028531, -0.00992532354, -0.000137244497, -0.00761557417, -0.0197054632, -0.0153499357, 0.0302247237, -0.00466899388, 0.00941717904, 0.00229325145, 0.00873745233, -0.0143732419, -0.00523323286, -0.0349762067, 0.018372409, 0.00433573, 0.0143732419, 0.00700844033, 0.00674446858, -0.0155611131, -0.0109416135, 0.00463269791, -0.0241137855, -0.0153499357, 0.0106314477, 0.00469209114, 0.000132810601, 0.00818971172, -0.00644090166, -0.0315181836, -0.00685665663, 0.00258691958, -0.00130500854, -0.013818902, -0.000296967803, 0.0102882842, -0.00139079918, -0.00141224684, -0.0100111142, -0.0233086739, 0.0161154531, 0.00685005728, 0.0112979747, -0.0173957143, 0.00619342877, 0.010525859, 0.00206062663, 0.00388697861, 0.00834809523, 0.0235990416, 0.00329964235, -0.0260143802, 0.0340259112, 0.00622972474, -0.0293272212, -0.00150711159, 0.0259483866, 0.00719322031, 0.00548730511, -0.0114101628, 0.000756443, 0.0133305546, -0.0152311483, -0.0298551638, -0.0143864406, -0.0188211594, -0.0167489834, 0.0119843008, 0.0225035604, -0.00380778708, 0.00825570524, -0.00526292948, 0.0141356671, -0.00168364251, 0.0197978541, -0.0171185434, -0.0151651558, 0.0170261543, 0.00244998443, -0.0160626583, -0.0136473207, 0.0245889351, -0.0399916656, 0.0225563552, 0.0357417241, -0.00616703136, -0.0110010076, -0.00751658529, -0.00587666268, 0.0258823931, -0.00990552641, 0.025196068, 0.0216588527, 0.00180325448, 0.00649039634, 0.00869785715, -0.0104796635, -0.00484387483, 0.00433902955, -0.00119117089, -0.00909381453, 0.0123406621, -0.000270158198, 0.00799833331, -0.0165378079, 0.00225860509, 0.00340853049, 0.00523323286, -0.0284297187, -0.033946719, -0.00123324129, 0.0258559976, 0.0197450593, 0.0229391139, -0.0161286518, -0.028878469, 0.0116939321, -0.0215664618, -0.0175145, -0.0067840647, 0.00471518887, 0.00357351266, 0.021513667, 0.0393317342, 0.0185307916, 0.0104862629, -0.00686325599, 0.0245229416, 0.0213552844, -0.0282449387, -0.0215532631, -0.0120040989, 0.00213486864, 0.00257372088, -0.00319075398, -0.00503855385, -0.0146108158, 0.00294823037, 0.00126376294, 0.0151651558, -0.0124990446, 0.00422684196, -0.0293536168, 0.0103806742, 0.0049725608, 0.0122020775, 0.0352137834, 0.0187287703, 0.00096349552, 0.0065728873, 0.0200750232, -0.029432809, -0.0239686016, -0.0248001106, 0.00732520595, 0.00838109106, 0.0154555244, 0.000151371089, 0.00623632409, -0.00879684649, 0.0206425618, -0.00618023, 0.0375367291, -0.0240081977, 0.00254897354, 0.0063254144, -0.0167885795, -0.00490326853, 0.031280607, 0.0188079607, -0.00143204478, 0.00752978353, -0.0105060609, 0.0168413743, -0.0260935705, -0.00257702055, -0.0130863814, -0.000222519622, 0.0252224654, -0.047989998, 0.00889583584, -0.00466899388, -0.00762877287, -0.0202070083, -0.00183130149, -0.00189894415, -0.0124792466, -0.00295812939, 0.016854573, 0.0197978541, -0.000273457845, -0.0151255606, -0.0300663412, 0.00539161544, 0.00834809523, -0.0213816818, 0.00386718079, -0.00249782926, -0.0135285333, 0.00801813, 0.0125452401, -0.00398596795, 0.020906534, 0.00607464137, -0.00246978225, -0.0117797228, -0.0224375669, 0.00630561635, -0.0092258, -0.0189135503, -0.00997811835, 0.0237838216, 0.0409155637, 0.00354711548, 0.0189003516, -0.00747698918, -0.00186759757, 0.00642110407, 0.00927199516, 0.0150727658, -0.00688305357, -0.00874405168, -0.00335573615, -0.0133503526, -0.0165510047, 0.00820951, -0.0131655727, 0.00216126558, 0.0164058208, 0.00798513461, -0.00539161544, 0.00135532802, 3.86934626e-05, -0.00534212077, 0.0111725889, 0.0314653888, 0.00300432439, 0.0216984469, -0.0223847739, 0.0237046294, -0.0231238939, 0.0274266265, -0.0219756179, -0.0136473207, -0.0244041551, 0.00178840605, -0.0139376894, 0.00326499599, -0.00211177114, 0.015151957, 0.00914000906, 0.00367580145, 0.0240609907, -0.0139244907, -0.0209329315, -0.0112781776, 0.00764857093, 0.0167489834, 0.00941717904, -0.00904102, 0.0202598032, -0.0176992808, 0.00502535515, 0.000795626256, -0.0103344796, -0.0125782359, 0.00960195903, 0.00787954591, 0.00898162648, -0.00340853049, -0.00459970115, 0.00956896227, 0.00626272103, 0.00474158581, 0.0104400683, 0.010176097, 0.00552690076, 0.0319669358, 0.0113243721, 0.0225431565, 0.000140131684, -0.0106050503, 0.00197483599, -0.00625612168, -0.0127630159, 0.0163134318, -0.00411795359, -0.000909876369, -0.0130269881, 0.0117269289, -0.0073054079, -0.000504845288, 0.0214740727, -0.00408165762, 0.00659598503, 0.0082953, -0.00205237744, 0.0214080792, -0.00250772806, -0.00571828, -0.0110801989, 0.0218040366, 0.0080775246, -0.0181612317, -0.00169106666, 0.00591625879, -0.00344152679, -0.00443471922, -0.00169601617, 0.00822270848, 4.57309798e-05, 0.00606144266, -0.00777395722, 0.00512434449, 0.0246285293, 0.0023048, -0.0102552883, 0.0231238939, 0.010268487, 0.0250508841, -0.0127234207, 0.0224507656, -0.00373849459, -0.00645080069, -0.000855432241, -0.0154687231, 0.0149803758, 0.00976034161, -0.00164322183, 0.0145580219, 0.00128273596, -0.0236650351, -0.00532892207, -0.00312146149, 0.0163530279, 0.00356691331, 0.000150339954, 0.00528602675, -0.0403612256, -0.00370219862, 0.0366920233, -0.0265027266, 0.00619012909, 0.00641450472, 0.00166384457, 0.00714042597, -0.00348112267, -0.000421941746, -0.0300135463, -0.00959536, 0.00419054553, -1.26056648e-05, -0.00953596644, 0.00570508139, -0.00287233852, 0.0301719289, 0.00569188269, 0.00258856942, -0.00327819469, -0.0195470806, -0.0167093892, -0.0151783545, -0.010156299, -0.0157854892, -0.00776075851, -0.0025687716, 0.00212661945, -0.0134295439, 0.00277004973, 0.00104433682, -0.0173561182, -0.019943038, -0.0259219892, -0.0249188989, -0.00592615735, -0.00205402728, 0.00719322031, 0.00636830973, -0.00271560554, -0.0130731827, 0.0188739542, 0.0205501728, -0.0155875096, -0.0114167621, -0.00853287522, 0.0178312659, -0.0190851316, -0.000937923323, -0.00799833331, 0.0242853668, -0.0136209233, -0.00367250177, 0.00783995, 0.0116939321, 0.00972074643, 0.00639800634, 0.00113012746, 0.00964155514, -0.0164322183, -0.0023790421, 0.0137661071, -0.00585026573, -0.0227411352, -0.00175375992, 0.00255392306, 0.0190983303, 0.00452380953, -0.0153763331, -0.0128818033, -0.0341579, 0.0274002291, -0.0146768084, -0.0331812, 0.0224507656, 0.0101101035, 0.00610103877, 0.0140828732, 0.00620992668, 0.00198308495, -0.00388037926, 0.00828870106, 0.0134757394, -0.00774756027, 0.0416018888, 0.000831509824, -0.00745719159, -0.00464259647, 0.00910041295, 0.0144260358, 0.0122878682, 0.0204313844, 0.0165114105, 0.0252092667, -0.00242853677, 0.00651679328, 0.00929179229, -0.00112352823, -0.0233482681, 0.00305546867, -0.015336737, -0.0173033234, -0.0123340627, -0.00259351893, -0.00770136528, 0.0172637291, -0.00416744826, 0.0156271067, 0.0356097408, 0.00387378014, -0.00813691784, -0.00109300646, 0.0244041551, 0.0138980933, 0.00188244588, 0.0149539784, -0.00512434449, 0.0193359032, -0.013264562, -0.0389621742, 0.00467229355, 0.00488677, 0.0108030289, 0.00221735961, -0.00958216097, -0.0192831103, -0.000941222941, 0.00650029536, -0.0210649166, -0.00944357645, -0.0169601608, 0.0141752632, -0.0132777607, 0.0253412519, -0.00237739226, 0.0109614115, -0.00346462429, 0.000689212757, 0.0138716958, 0.0146636106, -0.00401566457, 0.00302412221, -0.0259351879, 0.00014961815, -0.0139772845, -0.00912021101, 0.00704803597, 0.0159966666, -0.00504185352, -1.77871334e-05, 0.0103014829, 0.00481417822, 0.00203257962, -0.0150463684, 0.00318085519, -0.0111593902, -0.0114035634, -0.00437862519, -0.00436542649, -0.00797193591, -0.0167885795, 0.0221867952, -0.00961515773, -0.00966135226, 0.00309671438, -0.00270075724, 0.00640130602, -0.00498905918, -0.00542131206, -0.00844708458, 0.00394637231, -0.0266479105, 0.0178444646, 0.0254204441, 0.0150067732, -0.006632281, -0.0126838246, 0.00324354833, -0.0208933353, 0.00986593, 0.0163662247, 0.00259681838, 0.00563248945, -0.0112517802, -0.0202466045, 0.00995832, -0.00262816506, 0.0120832901, 0.0102222916, 0.00153845816, 0.0176860821, -0.0287464838, 0.00109713105, -0.00330624147, 0.0198110528, 0.00813691784, 0.00392657425, -0.028508909, 0.0144656319, 0.00354711548, 0.00704143662, 0.00768816657, -0.00294163101, 0.0146108158, -4.38233741e-07, 0.00537511706, 0.0173297208, 0.0150199719, 0.00888263714, 0.0246153306, -0.00620002765, -0.000940398, 0.00535861915, 0.00109548122, -0.00333428849, 0.0125386408, -0.025565628, 0.00926539581, -0.0259087905, 0.0054114135, 0.0157986879, -0.00820951, -0.0216852482, -0.00804452784, 0.00522663351, -0.000979168806, -0.00564568769, -0.00634191232, -0.00185274915, 0.00235264492, -0.0182140246, 0.0105654541, -0.000375540549, 0.015521517, -0.00616043201, -0.0232426804, 0.0223451778, 0.00313631, 0.00563578913, 0.0104730641, 0.0121030882, 0.00790594332, 0.0112319821, -0.0147691984, 0.0156930983, -0.0111395922, -0.0256976131, 0.00662238197, 0.00142709527, 0.00211837026, -0.00565228704, 0.0114035634, 0.0128620053, -0.0277697891, -0.0327324495, -0.00684345793, 0.00914660841, 0.015244347, -0.0140432771, 0.0155875096, 0.027083464, 0.00041740475, 0.0098527316, -0.0128224101, -0.0345802493, -0.00181645306, 0.000373478251, -0.011192387, 0.00446441583, 0.0331812, 0.00821610913, 0.00479438, 0.00174221117, 0.00616043201, 0.000784489966, -0.0050319545, -0.00263971393, -0.0237838216, -0.00220416114, 0.000510619662, -0.0214476753, 0.010915217, 0.0112649789, -0.0320197269, -0.00815011654, -0.0178312659, 0.0108822202, 0.0142280571, 0.00340853049, 0.00408825697, 0.0199034419, 0.00173066242, -0.00694244727, 0.00507485, -0.00993852224, 0.0144392345, 0.00810392108, 0.00620002765, -0.0182536207, 0.00751658529, -0.00197978527, -0.0221603978, 0.0128488066, -0.00550710317, 0.00965475291, -0.0202202071, 0.042050641, 0.0282185413, -0.00281459489, 0.0141752632, 0.0185175929, 0.0049989582, 0.0238762107, -0.0253280532, -0.00537181739, 0.00538171642, -0.0216192566, -0.0141488658, 0.0098395329, 0.00491316756, 0.0149803758, -0.00299442536, -0.00768156722, 0.00739119854, 0.0056720851, 0.00321385148, 0.0146108158, 0.00671807164, 0.00390347675, -0.0150199719, -0.00802473, -0.00979333837, 0.00148648885, 0.00761557417, 0.00497586047, 0.00784654915, 0.0308846515, 0.0330492184, -0.0108030289, 0.0225959495, -0.0340523086, -0.0107040396, 0.0197978541, 0.00694904663, 0.00575787574, -0.0101365009, 0.00685005728, -0.00901462231, 0.0104994616, -0.00704803597, -0.00106578448, 0.00623302441, 0.0225563552, 0.0241005868, 0.00419054553, -0.0190059394, 0.00649369601, 0.0152311483, 0.00925219711, 0.0118787121, -0.00991212577, -0.000383377192, -0.013818902, -0.0290104542, 0.0159306731, -0.0128356088, -0.000709835556, 0.0295120012, 0.015521517, -0.0141752632, -0.022134, 0.0308318567, 0.0146108158, -0.010156299, -0.0173165221, -0.00979993772, 0.000375746749, 0.0018181029, 0.0213420857, -0.00015498008, -0.00510454644, 0.0265555214, 0.0229523107, 0.0232690778, -0.012617832, -0.0180424433, 0.00856587104, -0.0196394715, -0.0108756209, -0.00760237593, -0.0142544545, -0.00131490745, 0.00463929726, 0.0117863221, -0.0125254421, 0.0239686016, -0.0149539784, -0.00114745065, -0.0151387583, -0.00708763162, -0.0198638458, -0.0123406621, 0.0129477959, 0.00667517632, -0.0116807334, -0.00735160289, -0.000403793732, -0.028508909, 0.0129609946, 0.00812371913, -0.00299772504, 0.0143732419, -0.0340259112, 0.00894863, 0.0166433956, 0.0226223469, 0.0376159213, 0.00532562239, -0.00987253, 0.0073054079, 0.0150595671, 0.0153235383, -0.0180028491, -0.0219624192, -0.0100441109, 0.0146372132, 0.00919280294, 0.000302948407, 0.010176097, -0.0231898855, -0.00976034161, -0.00150051236, 0.00704803597, 0.0200090315, 0.00632211473, 0.00842728652, 0.0125914346, -0.00698864227, 0.00607134169, -0.000701586425, 0.0102420896, 0.00446111616, -0.00713382661, 0.0162078422, 0.00252092676, 0.0153499357, 0.0178840607, -0.00937098358, 0.015429127, 0.0111329928, -0.00264301337, 0.0116873328, 0.00992532354, 0.0106776422, -0.00120354455, 0.00234274589, -0.00434892857, -0.00644750101, -0.0233350694, -0.000704473641, 0.0175013021, 0.00236254395, -0.0307790637, 0.0150067732, -0.00458650291, -0.0204577819, -0.00812371913, 0.0122614708, 0.000102804479, -6.66630876e-05, 0.0310694315, 0.016854573, 0.0312542133, -0.00188409572, 0.0124924453, -0.00787954591, -0.00701503968, -0.00789934397, 0.0183064155, 0.00594925508, -0.0254864376, 0.0138452994, 0.00578097347, -0.0266611092, 0.0146372132, -0.0103806742, 0.0043918239, -1.3095455e-05, 5.86717651e-05, 0.00244338508, 0.00248958, -0.00575127639, -0.0268854853, -0.00914660841, 0.00264136354, 0.00942377839, 0.0206821579, -0.000924724736, -0.0109680109, -0.00638810731, -0.010176097, 0.00471848855, -0.00677086599, 0.0165114105, -0.0020738251, 0.000391832524, -0.0201938115, -0.00307031721, -0.00775415916, -3.54969343e-05, 0.00789934397, 0.00972074643, 0.0201542154, 0.0266347118, -0.00767496787, -0.0105324583, 0.00182800181, 0.000295936654, 0.0218436327, -0.00416414859, -0.00313631, -0.0197318606, 0.0141620645, -0.0072130179, 0.0132117672, 0.00201773131, 0.0120568927, 0.00262486539, -0.00106825924, -0.00718662096, 0.000566301111, -0.00262486539, -0.00378139014, -0.0148219932, -0.0123340627, -0.00840748847, -0.0153235383, -0.00144854293, -0.00241203839, 0.012301066, -0.00767496787, -0.00526292948, 0.000279438449, 0.0219756179, -0.0077937548, 0.00906741712, 0.0133899488, 0.024047792, 0.0244305506, -0.00215961598, -0.0249716919, 0.00155248167, -0.0160362609, -0.00291853352, -0.0235462468, 0.000568363408, -0.018609982, 0.0153499357, -0.010545657, -0.00763537223, 0.00975374226, 0.00444791792, 0.0189663433, 0.0227675308, 0.000744894263, -0.0195074845, 0.0231238939, -0.0220548082, 0.00129675947, 0.0135021359, 0.022134, -0.0268326905, -0.0203917883, -0.00350751984, -0.0053190235, -0.00615383266, 0.041918654, 0.00490656821, -0.00189729431, 0.0114497589, 0.0119183082, 0.012710222, -0.00224375678, -0.0226355456, -1.4551938e-05, -0.00144771801, 0.00947657228, 0.0143996384, -0.00911361165, 0.00156733009, 0.0039793686, 0.00186099822, -0.00754958158, -0.00907401647, -0.0157854892, 0.0130005907, 0.0107700322, -0.0171581395, 0.0136209233, 0.0132975588, -0.00893543102, -0.0030422702, 0.020404987, -0.0102222916, 0.029802369, 0.00551370205, -0.0333659835, 0.0207613483, 0.00221900945, -0.00200783229, 0.00420374423, 0.000641368, -0.00550050382, 0.00138007535, -0.0256052241, -0.0240081977, -0.00489007, -0.0231106952, 0.00717342226, -0.0183328129, 0.0125254421, 0.00129345979, -0.0122878682, 0.0234802552, -0.00131490745, -0.00896182843, 0.0122218747, -0.0237310268, 0.013726512, -0.000494946318, 0.00201608147, 0.0205765683, 0.0126772253, 0.0111659896, 0.0212496966, -0.0273738317, -0.00702823792, 0.0239686016, -0.00333758816, -0.00695564598, -0.0014798895, -0.0111263935, 0.00656628795, 0.0161550492, 0.00800493173, -0.0134361433, 0.00189729431, 0.00750338659, -0.0199298393, -0.0212892927, 0.00156897993, 0.006299017, -0.00855927169, 0.0178048704, -0.0130863814, 0.00683685858, 0.00511114579, -0.0125716366, 0.0084668817, -0.00985933095, -0.00768816657, -0.000614970806, 0.0151915532, 0.00675106794, -0.0197054632, -0.0185043942, 0.0181216355, 0.0148747871, -0.00396946957, 0.0167225879, 0.00251762709, -0.00584036671, 0.0284825116, -0.00228830194, -0.0184911955, -0.0306998715, 0.00813691784, 0.0111461915, 0.0015170105, 0.00804452784, -0.00989892706, -0.0170129556, -0.00689625228, 0.0171317421, -0.00172571291, -0.00243348628, -0.0102882842, -0.00660588359, -0.000485459866, -0.00237079291, -0.00320065301, 0.00409155618, -0.00257537072, -0.0317029618, 0.0197714567, -0.0120172976, 0.0173297208, 0.0112451809, -0.000742831966, -0.00189894415, -0.0115685454, -0.0242457706, -0.00354711548, -0.00340523082, -0.0138848945, -0.00741099659, 0.00661248295, -0.00948317163, -0.0118919108, 0.0201938115, -0.00319405366, 0.0245889351, -0.0140168807, -0.00853947457, 0.00223055808, -0.0184911955, 0.0154951205, 0.00549720414, -0.0115157515, -0.0115817441, -0.0138057033, 0.0176596846, 0.0233614668, 0.00403546263, -0.0232954752, 0.0272418465, -0.0065596886, -0.00991872512, 0.00664218, -0.022846723, 0.00563248945, -0.0243777577, -0.00801153108, 0.0122152753, -0.00176860823, -0.0214872696, -0.000955246447, -0.00215301663, 0.0221735965, -0.00696224533, -0.006299017, 0.00178675633, 0.0230579, -0.0172373317, 0.00533552142, -0.0100045158, -0.0178180691, 0.0111857876, -0.00901462231, 0.00316435704, 0.0105852522, 0.00191049289, 0.0114365602, 0.00966795161, -0.0140696745, -0.00582716847, 0.0204313844, 0.0171845369, -0.0148615884, -0.00517053949, -0.00578427268, -0.00410145521, 0.00517713884, -0.00142379559, 0.0121954782, 0.00168941682, 0.00863846391, 0.0177124795, 0.010545657, -0.00120601919, -0.0156007083, 0.0124198534, -0.0198242515, 0.000753968256, -0.0149407806, 0.0227939282, 0.0144656319, 0.0192699116, -0.00575787574, -0.0221472, -0.0143996384, -0.00901462231, 0.000386058149, 0.0152971419, 0.00702163856, 0.0258164015, -0.00387378014, -0.0304095037, -0.0206425618, -0.00287728803, -0.00442482, -0.00197978527, -0.00704803597, 0.0126244314, 0.00947657228, 0.0381966606, -0.0146636106, 0.00322045083, 0.00892223231, 0.0141620645, 0.00408825697, 0.00514744176, -0.00313136051, -0.00602514669, 0.00776075851, 0.00579747139, -0.0351609886, -0.0323364958, 0.0149407806, 0.0144524332, 0.00577107444, -0.000373890711, -0.00522333384, -0.0111329928, 0.00554339914, 0.0094369771, 0.00712722726, -0.0190059394, 0.00955576357, 0.00237409258, -0.0135813272, 0.00685005728, 0.009212601, -0.021328887, -0.0306470767, 0.00490656821, -0.0112517802, 0.0119974995, -0.00813031849, 0.00334748719, 0.0161154531, -0.0106710428, 0.00330459164, -0.0091070123, 0.0148615884, -0.0152311483, -0.0172637291, 0.00133718, -0.0264367331, 0.00288388738, 0.00363950548, -0.0219888166, 0.00223880727, -0.0147296032, -0.00378139014, -0.0128290094, 0.00487357145, -0.00883644167, 0.00141719636, -0.00618352974, -0.0127696153, 0.0155611131, 0.000941222941, -0.0158250835, -0.00995832, 0.0120568927, -0.0158646796, 0.00608454039, -0.00762877287, -0.0116873328, -0.0241533816, 0.000444626785, 0.000668177556, -0.015613907, 0.00369559927, 0.0155611131, 0.00333593832, -0.0378534943, 0.000641368, 0.012690424, 0.023625439, 0.0187551659, -0.013059984, 0.021460874, 0.0018873954, -0.00198308495, -0.00951616839, -0.0313334, -0.0249320976, -0.000626519555, -0.000495771237, -0.0116345389, -0.00685665663, 0.00432253117, 0.0129543953, 0.00860546716, 0.0148219932, 0.00773436157, -0.00754958158, -0.00581396976, -0.000359042315, 0.00669827359, 0.00556979608, -0.000111053589, 0.0258691963, 0.00228170259, 0.0193623, -0.000579499698, -0.0216588527, 0.0100903064, 0.025196068, 0.0102156922, -0.0161286518, -0.00756278029, 0.0164718144, 0.0156535022, 0.00157640409, 0.00534872, 0.0149935745, 0.00173891149, 0.0212233, -0.00873745233, 0.0036593033, -0.00201443164, 0.00675106794, 0.00153598352, 0.0254468415, -0.0119777014, 0.00192864088, -0.00628911797, -0.00664547971, 0.0150727658, -0.000704061182, -0.00928519294, -0.0100903064, 0.0384342335, -0.0140168807, -0.00909381453, -0.00531572383, 0.00222395896, 0.00111940363, 0.00306371786, -0.000242523703, -0.013818902, -0.0113903647, -0.00416414859, 0.013079782, 0.00201608147, 0.0111527909, -0.00521673448, -0.0178972594, -0.0086912578, -0.00644420134, -0.0128554059, -0.00661578262, 0.0033623355, -0.00827550236, 0.00653989101, -0.00282284385, -0.00301422318, -0.0039793686, -0.0150199719, -0.0197054632, 0.039014969, 0.0093445871, 0.0130929807, -0.0391205586, -0.0194018967, -0.00188574556, -0.00681706099, 0.0111791883, -0.0188871529, 0.017408913, 0.00196328713, -0.021328887, -0.0241269842, -3.87192413e-05, 0.00289708585, 0.00298947585, -0.0101892957, 0.0072130179, 0.0219360217, -0.00432253117, -0.0164982118, 0.00749018788, -0.0161022544, 0.0173825156, 0.00654649036, 0.0260935705, -0.0189399458, -0.0121822795, -0.00232789759, 0.00595915411, -0.00686985534, 0.00191049289, 0.000591460848, 0.0111989854, -0.00550050382, -0.0071998192, 0.00709423097, 0.0188343581, -0.00491646677, 0.00181975274, -0.000366260298, 0.00490326853, -0.010341079, 0.00662238197, 0.0167357847, 0.00084553333, 0.00218106364, -0.0195206832, 0.00272880425, 0.012320864, 0.00959536, -0.00627591973, 0.0185439903, -0.0312542133, -0.0209725257, 0.00336728501, 0.00418724585, 0.00999791641, -0.0204577819, -0.00229820074, 0.0242985655, -0.0126772253, -0.0197186619, -0.0121030882, -0.0113903647, -0.0200882219, 0.0322045088, 0.00912681, -0.00584696606, 0.00478448113, -0.00667517632, -0.000901627238, 0.0155611131, 0.0102288909, 0.0296439864, 0.016445417, 0.00691605033, 0.00639800634, 0.0137661071, -0.00766836852, 0.00269415788, -0.00835469458, -0.00224210694, 0.0073318053, -0.0342370868, 0.0210517179, -0.015244347, -0.0168413743, 0.0155479144, 0.00723941531, 0.0286672916, -0.00688305357, 0.0238894094, -0.00402886327, 0.00800493173, -0.00313466019, 0.00556319673, -0.0183196142, -0.0130995801, 0.0186495781, -0.0249188989, -0.00887603778, 0.00150711159, -0.023625439, 0.00436872616, -0.00269250805, -0.00262486539, 0.00478118146, -0.00575787574, -0.0226883404, 0.00187584665, 0.00766836852, 0.0222791843, -0.0108954189, -0.00438522454, -0.00741759595, -0.0237970203, 0.0125716366, -0.00997811835, -0.00148648885, -0.0237838216, -0.012505644, 0.00598885072, -0.00246153306, -0.0018412004, 0.00485707354, -0.00738459919, 0.0124726482, -0.0176068917, -0.0144524332, 0.00612413604, -0.00478448113, -0.000488347083, -0.0210517179, -0.0228995178, 0.00591295911, 0.0196790658, -0.0184779968, 0.00844048522, 0.018794762, -0.0245757364, -0.00717342226, -0.0251696706, 0.0169601608, 0.00307856617, 0.00501545612, -0.00853287522, -0.0201938115, -0.0224507656, -0.00406515924, 0.00939738099, 0.000978343887, -0.0181216355, 0.0118919108, 0.0145184258, -0.00745059224, -0.0011128044, -0.0234274603, 0.00398596795, -0.0376687162, -5.56299055e-05, 0.000308516552, 0.00660258438, -0.0568066426, 0.0146636106, -0.0128158107, 0.00280304602, -0.00174386089, -0.0115025528, -0.0171845369, 0.00017096271, 0.001632498, 0.0153895319, -0.00817651395, -0.00256712176, 0.000733345514, 0.0197714567, 0.00432253117, -0.00599874975, -0.00602514669, -0.00406515924, 0.0241401829, 0.00804452784, 0.00276675, 0.0214872696, -0.0283769239, 0.0203257967, -0.0276905987, -0.00888923649, -0.0173165221, -0.0206293631, 0.00349102146, 0.00487687113, -0.00608454039, -0.00202928, -0.0165510047, 0.00217116461, 0.0199826341, 0.00387707958, 0.0112253828, 0.00680386228, 0.0196790658, 0.00749678724, -0.0130665833, -0.000135285329, 0.0120700914, 0.0155347157, 0.00101216522, 0.00118704629, -0.0182668194, -0.00545100914, 0.0153103406, 0.00583706703, 0.0111263935, 0.00854607392, -0.00404206198, -0.0144128371, -0.00456670485, -0.0113573689, 0.0390677638, 0.000135491558, -0.0204841793, 0.000565888651, 0.00239554024, -0.021276094, -0.0208009444, 0.00643430231, 0.0045601055, 0.0157986879, -0.00843388587, 0.00990552641, 0.00208537397, -0.00339533179, 0.0325476713, -0.0343954712, -0.0138057033, -0.0121030882, 0.0048801708, 0.0175672956, 0.00697544357, -0.00264631305, -0.00363290613, -0.0244041551, -0.0239026081, -0.00813691784, -0.0114761554, -0.0047712829, 0.000488347083, -0.00376159209, -0.00872425456, 0.015613907, 0.0098395329, 0.00131573237, 0.00138914934, -0.000904102, 0.0180952381, 0.0105786528, 0.00387048046, -0.0083019, -0.0141224694, -0.00350751984, -0.018557189, -0.0723281577, 0.00234439573, 0.0116411382, 0.00255887257, 0.0412059315, 0.0152047519, 0.0159570705, 0.0189531446, 0.0132777607, -0.0047250879, -0.00479768, -0.00146009168, 0.0233482681, -0.0214344766, 0.0140564758, -0.0105984509, -0.00271395571, -0.0196394715, -0.00968115, 0.00336893485, 0.00519363675, -0.00846028235, -0.00397276925, 0.0297495741, -0.00764197158, 0.00237079291, 0.00824250653, -0.0225431565, 0.00955576357, 0.0156403035, -0.000868630828, 0.0204709806, -0.0244701467, -0.0056588864, 0.0262255576, -0.00424663955, -0.0126838246, -0.00890243519, 0.00512434449, 0.00303072133, -0.0180952381, -0.00476468354, -0.0165510047, 0.0145316245, -0.00457000453, 0.000797688495, -0.00401566457, -0.0125914346, 0.0135813272, -0.00190719322, -0.00929839164, -0.0169073679, -0.00429613423, 0.00400576554, 0.00977354, -0.00469209114, 0.0147296032, 0.0256580189, -0.00892883167, -0.0101497, -0.0131985694, -0.00163084816, 0.0142280571, -0.00518043851, 0.0229787081, -0.00723941531, -0.0207349528, -0.0203653928, -0.0175013021, 0.00164487166, 0.00287398836, 0.00255557289, -0.000273664074, -6.66115302e-05, 0.00429283455, -0.00669827359, 0.015891077, 0.00541801238, -0.00946997292, -0.0107964296, 0.00495936256, -0.00675766729, -0.0178972594, -0.00371869677, -0.00690945098, -0.016260637, 0.0169733595, 0.0235066507, 0.006206627, -0.00512104481, 0.00851967651, -0.0158778783, 0.000452875887, -0.00470858952, 0.00880344585, 0.0156007083, -0.00203422946, -0.0383550413, 0.0033029418, 0.0085988678, -0.0128620053, 0.0107898302, -0.001715814, 0.0508408882, -0.0117731234, -0.0189267471, -0.0190455355, 0.0192303155, 0.00246648258, -0.00044957627, 0.00640790537, -0.0286408942, -0.00820291, -0.0176860821, 0.0202730019, 0.0197714567, 0.0166565944, -3.81263344e-05, 0.0282977317, 0.00709423097, 0.00977354, -0.00740439724, 0.0208009444, 0.00912021101, 0.00681706099, -0.00198803446, -0.00906081777, -0.0130995801, 0.0109218163, -0.00418724585, 0.0132051688, 0.00700184098, 0.0223451778, 0.0245097429, -0.00607134169, 0.0279281717, -0.00236749323, 0.0261727627, -0.000988242915, -0.00102866348, 0.00896182843, -0.00628251908, -0.00212661945, -0.0516064055, 0.0125188427, 0.0124726482, -0.00373519515, 0.0132975588, 0.0240609907, -0.0411531366, -0.0114101628, 0.015151957, 0.0113441702, 0.00826230459, -0.000986593077, 0.0152311483, 0.00735820225, -0.00822930783, -0.0310958289, -0.0176728833, 0.0275322143, -0.011931506, -0.0203521941, -0.00997811835, 0.0165774021, 0.00622312538, 0.00846028235, 0.0115949428, -0.0169337634, -0.00222725864, 0.00979333837, -0.00503855385, -0.00842728652, -0.0160626583, -0.00122581713]
24 Oct, 2024
set::begin() and set::end() in C++ STL 24 Oct, 2024 In C++, std::set::begin() and std::set::end() are built-in functions used to retrieve set::iterators to the beginning and the end of the set container. Set uses bidirectional iterators, so the iterators returned by these functions support the dereferencing, increment, decrement, relational, and equality operations only. They are the member functions of the std::set class defined inside <set> header file. Example: C++ // C++ Program to show the use of std::set::begin() // std::set::end() methods #include <bits/stdc++.h> using namespace std; int main() { set<int> s = {9, 11, 15, 56}; cout << *s.begin() << endl; cout << *--s.end(); return 0; } Output9 56You may have noticed we have decremented the set::end() iterator before dereferencing. The reason for this is mentioned below: set::begin() MethodThe std::set::begin() method is used to retrieve a set::iterator pointing to the first element of the std::set container. Syntaxs.begin(); Parameters This function does not take any parameters.Return Value Returns an iterator pointing to the first element of the set container.If the set is empty, it returns an iterator equivalent to set::end().set::end() MethodThe std::set::end() is used to retrieve a std::iterator pointing to the theoretical element that is just after the last element of the std::set container. It does not point to the last element, but can by decrementing. Syntaxs.end() Parameters This function does not take any parameter.Return value Returns an iterator pointing to the theoretical element that is just after the last element of the set container.More Examples of set::begin() and set::end()Here we will learn how to implement set::begin() and set::end() Example 1: Iterating a set using set::begin() and set::end()We can traverse the set by incrementing and dereferencing the set::begin() iterator till it is not equal to the set::end() iterator. C++ // C++ program to iterate through a set using // std::set::begin() and std::set::end() #include <bits/stdc++.h> using namespace std; int main() { set<int> s = {9, 11, 15, 56}; // Printing all elements in the set for (auto it = s.begin(); it != s.end(); ++it) cout << *it << " "; return 0; } Output9 11 15 56 Example 2: Finding Number of Elements in a Set C++ // C++ program to iterate through a set using // std::set::begin() and std::set::end() #include <bits/stdc++.h> using namespace std; int main() { set<int> s = {9, 11, 15, 56}; // Finding number of elements between // set::begin() and set::end() cout << distance(s.begin(), s.end()); return 0; } Output4Difference Between set::begin() and set::end() The following table lists some primary differences between the std::set::begin() and std::set::end() methods: set::begin()set::end()Returns an iterator to the first element in the set container.Rturn an iterator to one element after the last element in the set container.Syntax: s.begin(); Syntax: s.end(); We can dereference set::begin() iterator, because it point to the valid element. We should not dereference set::end() iterator, because it does not point to valid element. Learn C++ Online – Master everything from basics to advanced concepts. Apply your knowledge with practical exercises and boost your skills. Take the Three 90 Challenge: finish 90% in 90 days for a 90% refund. Start now and level up your C++ programming!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum/Algorithm for Dynamic Time out timer Calculation/Difference between Round trip time (RTT) and Time to live (TTL)/Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms/Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm/Round Robin Scheduling Algorithm with Different Arrival Time/Selfish Round Robin CPU Scheduling/Find the order of execution of given N processes in Round Robin Scheduling/Calculate server loads using Round Robin Scheduling/set::lower_bound() Function in C++ STL/Implementation of lower_bound() and upper_bound() in List of Pairs in C++/Difference between std::set::lower_bound and std::lower_bound in C++/Difference between std::set vs std::vector in C++ STL/std::minmax() and std::minmax_element() in C++ STL/std::rotate vs std::rotate_copy in C++ STL/std::bitset::to_ullong and std::bitset::to_ulong in C++ STL/std::upper_bound and std::lower_bound for Vector in C++ STL/std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++/std::string::append vs std::string::push_back() vs Operator += in C++/Vector push_back() in C++ STL/vector :: cbegin() and vector :: cend() in C++ STL/unordered_multiset cend() function in C++ STL/unordered_multiset bucket() function in C++ STL/unordered_multiset emplace_hint() function in C++ STL/unordered_multiset end() function in C++ STL/unordered_multiset size() in C++ STL/unordered_multiset emplace() function in C++ STL/unordered_multiset find() function in C++STL/unordered_multiset erase() function in C++ STL/unordered_multiset clear() function in C++ STL/unordered_multiset swap() function in C++ STL/unordered_multiset bucket_size() function in C++ STL/unordered_multiset bucket_count() function in C++ STL/unordered_set bucket_count() function in C++ STL/unordered_set cbegin() function in C++ STL/array::cbegin() and array::cend() in C++ STL/array::rbegin() and array::rend() in C++ STL/multimap rbegin in C++ STL/vector rbegin() and rend() Functions in C++ STL/multiset rbegin() and rend() function in C++ STL/map rbegin() function in C++ STL/map upper_bound() function in C++ STL/Set upper_bound() in C++ STL/multimap upper_bound() function in C++ STL/multimap empty() function in C++ STL/multimap value_comp() function in C++ STL/multimap swap() function in C++ STL/multimap::swap() in C++ STL/multimap equal_range() in C++ STL/unordered_set equal_range in C++ STL/set vs unordered_set in C++ STL/unordered_set count() function in C++ STL/unordered_set bucket() function in C++ STL/unordered_set emplace() function in C++ STL/set::emplace() in C++ STL/multiset::emplace() in C++ STL/multiset find() function in C++ STL/multiset cbegin() and cend() function in C++ STL/multimap::cbegin() and multimap::cend() in C++ STL/multimap::begin() and multimap::end() in C++ STL/set::begin() and set::end() in C++ STL
https://www.geeksforgeeks.org/setbegin-setend-c-stl?ref=asr10
PHP
set::begin() and set::end() in C++ STL
unordered_multiset clear() function in C++ STL, What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, jQWidgets jqxTreeMap width Property, Round Robin Scheduling Algorithm with Different Arrival Time, Difference between Flow and TypeScript, set::begin() and set::end() in C++ STL, unordered_multiset emplace() function in C++ STL, jQWidgets jqxTree destroy() Method, unordered_set bucket_count() function in C++ STL, jQWidgets jqxTree collapseAll() Method, Find the order of execution of given N processes in Round Robin Scheduling, jQWidgets jqxScrollView buttonsOffset Property, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Vector push_back() in C++ STL, jQWidgets jqxListBox enableHover Property, Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm, std::rotate vs std::rotate_copy in C++ STL, Selfish Round Robin CPU Scheduling, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxSlider buttonsPosition Property, std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++, std::upper_bound and std::lower_bound for Vector in C++ STL, Difference between Round trip time (RTT) and Time to live (TTL), jQWidgets jqxSlider rtl Property, Difference between std::set::lower_bound and std::lower_bound in C++, jQWidgets jqxTooltip opacity Property, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, unordered_multiset erase() function in C++ STL, multiset find() function in C++ STL, set vs unordered_set in C++ STL, jQWidgets jqxToolBar height Property, PHP, std::minmax() and std::minmax_element() in C++ STL, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, unordered_set emplace() function in C++ STL, unordered_set bucket() function in C++ STL, map rbegin() function in C++ STL, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, map upper_bound() function in C++ STL, Node.js date-and-time Date.transform() Method, unordered_multiset size() in C++ STL, TypeScript Optional Parameters, jQWidgets jqxToolBar theme Property, Difference between std::set vs std::vector in C++ STL, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, Steps to Diagnose and Resolve a Slow Network, How to use Optional Chaining with Arrays and Functions in TypeScript ?, Calculate server loads using Round Robin Scheduling, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, jQWidgets jqxScrollView showButtons Property, set::emplace() in C++ STL, Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms, jQWidgets jqxScrollView disabled Property, multimap::cbegin() and multimap::cend() in C++ STL, jQWidgets jqxSplitter destroy() Method, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, set::lower_bound() Function in C++ STL, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, jQWidgets jqxTree collapseItem() Method, multimap upper_bound() function in C++ STL, std::string::append vs std::string::push_back() vs Operator += in C++, unordered_multiset swap() function in C++ STL, unordered_multiset cend() function in C++ STL, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), Set upper_bound() in C++ STL, jQWidgets jqxSortable opacity Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, multiset cbegin() and cend() function in C++ STL, multimap rbegin in C++ STL, vector :: cbegin() and vector :: cend() in C++ STL, multimap swap() function in C++ STL, jQWidgets jqxSlider height Property, jQWidgets jqxSwitchButton onLabel Property, unordered_multiset bucket_size() function in C++ STL, unordered_set cbegin() function in C++ STL, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, jQWidgets jqxToolBar tools Property, multimap empty() function in C++ STL, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTree width Property, multimap::swap() in C++ STL, multimap equal_range() in C++ STL, Implementation of lower_bound() and upper_bound() in List of Pairs in C++, jQWidgets jqxTree clear() Method, TLS Handshake?, multiset rbegin() and rend() function in C++ STL, Algorithm for Dynamic Time out timer Calculation, Adhoc TCP, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, jQWidgets jqxTabs position Property, Differences between Wireless Adhoc Network and Wireless Sensor Network, jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, std::bitset::to_ullong and std::bitset::to_ulong in C++ STL, unordered_multiset emplace_hint() function in C++ STL, multimap::begin() and multimap::end() in C++ STL, unordered_multiset bucket_count() function in C++ STL, unordered_multiset find() function in C++STL, unordered_multiset bucket() function in C++ STL, Impact of Three-way Handshake and Slow Start Algorithm, array::rbegin() and array::rend() in C++ STL, multimap value_comp() function in C++ STL, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, multiset::emplace() in C++ STL, unordered_set equal_range in C++ STL, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, unordered_set count() function in C++ STL, vector rbegin() and rend() Functions in C++ STL, array::cbegin() and array::cend() in C++ STL, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, unordered_multiset end() function in C++ STL, How to Sort an Array Having Optional Properties in TypeScript ?
GeeksforGeeks
[0.00233938638, -0.00405060407, -0.00456324732, 0.0332712717, -0.0058592963, -0.0347731, -0.00665353239, 0.0131698791, 0.00370041816, 0.00214443752, -0.0230906103, 0.0229028817, -0.00851276703, -0.0410981067, 0.0192927178, 0.0117691346, 0.0189172607, 0.0233072191, 0.0153792994, -0.0317694433, -0.0113647962, -0.00649468508, -0.0244191494, -0.0119713042, -0.00616977038, 0.0168378055, -0.033069104, 0.0028303687, -0.0114081185, -0.00924202055, 0.0303542595, 0.000486920879, 0.01870065, -0.0130687943, -0.0192205142, 0.0542102233, 0.0140218772, 0.0110687632, -0.0333290361, -0.00857052952, 0.0041841804, 0.0161013324, 0.0399428569, -0.0036769521, -0.0450837277, 0.0455747098, 0.010317849, -0.0458057635, -0.0239426084, -0.0159136038, -0.0149894012, 0.0153504182, 0.0401161425, 0.0346575752, 0.0476252846, 0.0155959092, 0.021112239, 0.00301268185, -0.0399717353, -0.032838054, 0.00783405639, -0.0285347365, 0.0221086442, -0.0229606442, 0.00776907336, 0.0244480316, -0.0318272077, 0.0532282591, 0.00334120682, -0.010202324, 0.00109207467, 0.00898208842, 0.0288091097, 0.0259931814, -0.0135814371, -0.0239570495, 0.0186862089, 0.00935754552, -0.0304409042, 0.0200580712, -0.0153070958, 0.0166789573, -0.0143901138, 0.00242964039, 0.0434663743, -0.00152348925, -0.0159424841, -0.041386921, 0.0544701554, 0.0180508196, -0.0327514075, -0.0224841014, 0.00490260264, -0.0123539818, -0.0177764483, 0.0350041501, 0.0431486815, 0.00408670586, -0.020881189, 0.0180508196, 0.0188017339, 0.0110976445, 0.0105850007, -0.0314517505, 0.015321536, 0.0366792679, 0.0303542595, 0.0252567083, -0.0206790194, -0.00876547862, 0.0188739374, -0.00158305699, -0.0023285558, 0.0636544153, -0.0495314524, -0.00476180622, 0.0127366586, -0.0285491776, 0.0583402514, 0.0168233644, 0.00684487121, 0.0178342108, 0.0350330323, 0.0280437544, -0.0639432296, 0.0117402533, 0.0241303369, 0.00504339905, -0.0216032211, 0.016419027, 0.0217765104, -0.0253433511, 0.0133864889, -0.00378706213, 0.0231483728, 0.0297766328, 0.0178919733, 0.0289679561, -0.0262675546, -0.0249390136, -0.0341954753, -0.0235960335, -0.00612283824, 0.020274682, -0.0570983551, -0.0395674, 0.000515350897, 0.0294878203, -0.0225563049, -0.0060759061, -0.0284192115, 0.0165923145, 0.0238559637, -0.0161446538, 0.0317694433, -0.0450548492, 0.0292856507, 0.00291520753, -0.00676183729, -0.0174876358, 0.0163901448, -0.00143774785, -0.00147745968, -0.0124839479, -0.0202313587, 0.0384987891, 0.0395385176, 0.00521307718, -0.0645208508, 0.0444772206, -0.0075308024, 0.0106211025, 0.000109940782, -0.0102745267, -0.00316611398, -0.0258776564, 0.0160868913, 0.00238812366, 0.0177475661, 0.00241519976, -0.00935754552, -0.0051589245, -0.0114442203, -0.00275816536, -0.00121121, 0.000782954332, 0.0441017635, -0.0136392, 0.0243613869, 0.00163450185, 0.0211411212, 0.0111265257, 0.0431198, 0.0257910118, 0.034022186, -0.00201808172, -0.0471054204, 0.00543690706, 0.00196573441, 0.0379789248, -0.0293434132, 0.0159424841, 0.0197259374, 0.00482678926, 0.0529105663, -0.024014812, -0.0206934605, 0.0112637123, 0.0198559035, 0.0129243871, 0.00104424, -0.0124839479, 0.0296322275, 0.0277982634, -0.00933588482, 0.0189894624, -0.0608818084, 0.0198703427, -0.0100434767, -0.0243036244, -0.00184569636, -0.0447082706, 0.0407515317, -0.0463833883, -0.040202789, -0.046325624, -0.00157944683, 0.00637193955, 0.0197403766, -0.0183685143, 0.012187914, 0.0250545386, -0.0309318863, -0.0250834208, 0.00516975485, -0.0200291909, -0.0284480937, -0.0300076846, -0.00304156332, 0.012729439, 0.0135669969, 0.0166789573, -0.0601886548, 0.0136103183, 0.020274682, 0.0564052053, 0.012729439, -0.0241158959, -0.0147583513, -0.0298921596, 0.0134947933, 0.0231194906, 0.0175887197, -0.00569683872, -0.0115669658, 0.0111409668, 0.0153070958, 0.023783762, -0.00174551434, 0.0100651374, 0.0293867365, 0.0495603345, -0.00422028173, 0.00713368412, 0.00491343345, 0.0238126423, 0.0357550643, 0.00475819642, -0.00757412426, -0.0429753922, 0.0152493333, 0.00137637509, 0.0234949477, -0.0320582576, 0.0112276105, -0.00268957228, -8.81669766e-05, 0.0239281673, 0.0265996885, -0.000674649433, -0.0108521534, -0.0373724177, 0.0178197697, 0.00344590168, 0.0340510681, -0.0245635565, -0.0183973964, -0.00335023226, -0.00281773298, -0.0254011154, -0.00768242916, 0.00668963417, 0.0274805687, 0.0130976755, 0.0393363498, 0.0529394448, -0.0255744029, -0.0274228062, -0.0345998146, -0.0288235508, 0.0154081807, -0.0352929644, 0.00689180335, -0.0312206987, -0.0104839168, -0.0198847838, 0.0195093267, -0.0197114963, 0.024260303, -0.0278271455, 0.00339174923, -0.0612283833, 0.0194371231, 0.00791348, 0.0389031284, -0.0318560898, 0.0255022, -0.0125056086, -0.0259209778, -0.00979798567, 0.0137114031, -0.0203468855, 0.0121518122, 0.0337044932, 0.0274516884, -0.0194660053, -0.0129604889, 0.0582247265, 0.00467877276, -0.0666580722, -0.00379428244, 0.00472209463, -0.0300943274, -0.00713729439, -0.0344265252, -0.041155871, -0.00720227743, -0.0186140053, 0.0214588158, 0.00649107527, -0.00310113095, 0.0115525248, -0.00517697539, 0.000703530735, 0.00304336823, -0.0138197085, 0.00502895843, -0.0113864578, -0.00689541362, 0.0350619145, 0.00123106595, -0.00648385473, -0.0158847217, -0.0365059786, 0.033069104, -0.0243180655, -0.033675611, -0.0291845668, 0.00662826141, 0.00992795173, 0.0165923145, 0.0251989458, -0.000686833693, 0.0350041501, 0.00999293383, -0.0297188703, -0.0157836378, -0.0256177243, 0.0296611078, 0.00648385473, -0.0126500148, -0.0298632775, 0.0342243575, 0.00360474875, -0.0195093267, -0.00361738447, 0.00952361245, 0.0293434132, 0.0236393549, -0.0114731016, -0.0251989458, 0.0342243575, -0.00553799188, -0.00740805687, -0.0130110318, -0.0337622538, -0.00274914, 0.0179064143, -0.00080326153, 0.004527146, -0.0274372473, 0.0253433511, -0.00282134325, -0.0128882863, 0.00595316058, 0.0322315469, -0.022931762, -0.0468166098, -0.0275527723, -0.0238270834, 0.0295022614, 0.0138124879, 0.0142745888, -0.0178053286, -0.0304409042, -0.00836836081, -0.0108088311, -0.0296322275, 0.0154659431, 0.0334156789, 0.00683043059, 0.000331683841, -0.0117980167, 0.0199281052, 0.0234516263, 0.0492137559, -0.0374879427, 0.0334156789, 0.0182385482, -0.00205959869, -0.0100795785, -0.0418490209, -0.0107149668, 0.00400006166, 0.0187439714, 0.0182529893, -0.00966802, 0.0258054528, 0.00214263238, 0.0266574509, -0.0378345214, 0.00705065066, 0.0137114031, 0.0198847838, 0.0084694447, -0.0620948225, 0.0297477525, -0.00785571709, -0.0281592794, -0.0309030041, 0.0245779976, 0.0282748044, 0.0478852168, -0.0367659107, 0.0101156794, 0.0383832641, -0.0601308942, 0.0168811269, 5.29678764e-05, -0.00364807085, -0.0479429811, -0.0235238299, 0.0233072191, 0.00789903942, 0.0260220636, -0.00815897062, 0.0398562104, -0.0288813133, 0.0571561195, 0.027523892, 0.0126716755, 0.00921313837, 0.0119496435, 0.0088088, 0.0701815933, 0.0109171364, 0.00871493574, -0.00251267431, -0.010743848, 0.0033971644, -0.00779073406, -0.0466433205, 0.0489827059, 0.0266574509, 0.034628693, 0.0224263389, -0.0159713663, -0.0123467613, -0.0382966213, -0.0259787403, 0.0291123632, -0.0133792683, -0.0320004933, -0.0114081185, -0.00814453047, 0.00970412139, 0.0207945444, -0.0248812512, -0.0370836072, -0.000375231437, -0.024505794, 0.0272928402, -0.0369103178, -0.0238270834, 0.0175742786, 0.032838054, -0.037054725, 0.0149027575, -0.0127438791, 0.0195237678, 0.0271339938, -0.042340003, -0.0423111245, 0.0489827059, 0.033791136, -0.00805066619, -0.0499357916, -0.00562824588, 0.00348922354, -0.00676905783, -0.0101012392, 0.0142096058, -0.00763910729, 0.00956693478, -0.00364626572, -0.00809398759, 0.0058773472, 0.0064694141, -0.0546434447, -0.000324012217, 0.034628693, -0.00601453334, -0.00762466667, 0.0467588454, -0.00191699713, 0.0532571413, 0.00428526476, -0.00527805975, -0.0364770964, -0.0162024163, 0.0240292531, -0.00103611709, -0.0044044, 0.00935032498, -0.00570044899, -0.006880973, -0.0122745577, 0.0265563671, -0.0198559035, 0.0130615737, -0.0319716148, 0.0230039656, 0.000461198477, -0.00593149941, -0.0310474113, 0.00683765067, -0.00266069104, 0.0196248516, 0.0117258132, 0.0132781835, 0.0345709324, 0.0175165161, -0.0135453353, -0.00242422521, -0.015682552, 0.0145489611, -0.0262964349, 0.011437, 0.0222819336, -0.0192927178, -0.0121445917, 0.0212422051, 0.0374879427, -0.020159157, 0.00693151494, -0.010433374, -0.0100290356, 0.0125561506, -0.0324048325, 0.0317983255, 0.0127655398, -0.00831059739, 0.0324625969, 0.00721310778, 0.0179352947, 0.0153792994, 0.028476974, 0.0129821505, -0.0206212569, -0.00839002151, 0.027639417, -0.0452281348, -0.0111409668, -0.0547012053, -0.0118485587, 0.00471487409, -0.0228884406, -0.000580785156, -0.0162890609, -0.0056823981, 0.00416251924, -0.00836836081, 0.028722465, 0.00656327838, 0.00589900836, -0.000436604227, -0.00665714266, 0.0033087153, -0.042340003, 0.00841168221, 0.0257621314, 0.00250364887, 0.0218342729, -0.0300076846, -0.00154876045, -0.0371991321, 0.0299499221, 0.0139280129, -0.00231050514, -0.0246646404, -0.0291412454, 0.0161302127, 0.0128088621, -0.00460656919, 0.0122312363, -0.00606507575, 0.00703982, 0.00562824588, -0.0280870758, 0.0246646404, -0.0209678337, -0.00083394791, -0.00437912904, 0.0277405, -0.00302170729, 0.0313939862, -0.00291520753, -0.0224119, -0.00169406948, -0.0320004933, 0.0168666858, -0.0254733171, 0.0125056086, 0.0072275484, 0.0221808478, 0.020751223, -0.012433405, 0.0163901448, -0.0170688555, 0.0228451192, -0.0113431355, 0.0253000297, 0.00492065353, 0.0561741516, -0.0143467924, 0.0278415848, 0.0168089233, 0.0426288173, 0.0192927178, 0.0176464822, -0.0160291288, 0.0011317865, -0.011826898, 0.00646219356, -0.0119424229, -0.032953579, 0.00610117754, 0.034628693, 0.000476992922, -0.00767520908, 0.0252711494, -0.0395096354, 0.0147583513, 0.0116824908, 0.00809398759, -0.00304156332, -0.0385276712, 0.00607951637, 0.00486289104, -0.00934310444, -0.0480585061, -0.0290979221, 0.0145995039, 0.00277260598, 0.00148106983, -0.0218775943, -0.0365059786, 0.0164912287, 0.02220973, -0.00354337599, 0.012303439, -0.0162024163, -0.000447434722, -0.0361882858, -0.00135922676, 0.00576543203, -0.0215599, -0.0018095948, 0.00966079906, -0.0227584746, 0.0141590638, 0.00888822414, 0.0254011154, 0.000335294, -0.00408309558, 0.00780517468, 0.00865717325, -0.0130254719, 0.0167078394, -0.00539719546, 0.0146572664, -0.0252567083, -0.0367947929, 0.000777087815, 0.0284336526, 0.0245202351, -0.00267332653, -0.0180219393, 0.0205057319, 0.00996405259, -0.0039170282, 0.00838280097, -0.0303542595, 0.0193504803, -0.00682321, -0.00314625795, 0.0275672134, -0.022455221, 0.0180219393, -0.0373435393, 0.00263000466, -0.00323470705, -0.00454158662, -0.0056823981, 0.0238126423, 0.00716256537, -0.0408670567, -0.0229895245, -0.000737827271, -0.00694595557, -0.0147727914, 0.02135773, 0.00694956584, 0.0140724201, -0.0183973964, -0.0119929649, 0.028361449, -0.0339933038, -0.0110615427, 0.00261736894, -0.00554160168, -0.00648385473, -0.00623836368, -0.016173536, -0.00523834815, -0.0186862089, 0.0138124879, 0.0145417415, -0.0209533926, 0.0311918184, 0.0273939259, 0.0272784, 0.0300654471, -0.0108016105, 0.0127077773, -0.024014812, 0.0245491154, 0.015682552, 0.0144695379, 0.0029585294, 0.0284047704, 0.017372109, -0.0189172607, 0.0367081501, -0.0239859298, 0.00859941076, -0.0189894624, 0.0226718299, 0.0248956922, 0.0270473491, 0.0262531135, -0.0142962495, 0.0198703427, 0.000148242369, -0.00409392593, -0.0148305539, -0.0111409668, -0.00810842868, 0.0108016105, 0.0207945444, -0.0278993472, 0.0325203575, 0.00298199547, -0.00615171948, 0.0167944841, -0.0180797018, 0.0156392306, 0.0150760449, 0.0324337147, -0.0447082706, -0.0277838223, 0.00196934445, 0.0116824908, 0.0372280106, -0.00511560263, -0.0268740617, -0.0304986667, -0.0424844101, -0.0634233654, -0.0150038423, 0.0368525535, -0.00903263, 0.0029206227, -0.0199858677, 0.016173536, -0.0438995957, -0.0187584125, 0.0137547255, -0.00727809081, 0.0246068779, 0.0197981391, 0.0029838006, -0.0140435379, 0.0193938017, 0.0300076846, 0.0199425463, 0.00790625904, 0.0202602409, -0.000155462694, 0.00591344899, 0.019061666, -0.0189172607, -0.00448382366, -0.00743693812, -0.037054725, 0.019913666, -0.00150002318, 0.00632139714, 0.0208234265, 0.0239714906, -0.0129388282, 0.0151915709, -0.017011093, 0.0420511924, -0.00930700265, 0.0195959713, -0.0186573286, -0.00556326285, -0.000707592175, 0.0258920975, 0.00362460478, -0.00692068459, -0.00580153381, -0.000375682692, -0.00415890897, -0.000435927301, -0.0265563671, 0.0300365649, -0.0231772531, 0.00626724493, 0.00580514409, -0.000603799941, -0.0171699412, 0.0203180034, -0.00914093573, 0.0206645802, -0.0440151207, -0.0197403766, -0.0105994418, 0.00127438793, 0.0109026954, 0.0171699412, 0.0142168263, 0.0179930571, 0.0108954748, 0.0234949477, 0.0199714284, -0.00059251819, 0.00984130707, -0.0195237678, 0.0119424229, -0.00283217384, -0.0149027575, 0.00473292498, 0.0145345209, -0.00697483681, 0.00891710538, 0.0308741238, 0.0143251307, -0.0290979221, 0.033906661, -0.00819507241, -0.0447949171, -0.04418841, -0.022874, 0.0104550356, -0.0059856521, -0.0235527102, -0.0103539508, -0.0184984803, 0.027769383, -0.00160923065, -0.0233794227, 0.00142782, 0.0292712096, 0.00579792354, 0.00627446501, 0.00641165162, -0.00367334206, -0.0269607063, 0.0051192129, -0.00215165783, 0.010433374, -0.00843334291, 0.0416179709, -0.00962469727, 0.0232350156, 0.00136012933, 0.00711202342, 0.00992795173, 0.0202169195, -0.033906661, -0.033069104, -0.0185562428, 0.00874381792, -0.00282856356, -0.0185273625, -0.00152619684, 0.0356395394, -0.0245924387, 0.00696761673, 0.038123332, -0.0219353568, 0.0159858074, 0.0248812512, -0.00641526142, 0.0180363804, 0.0136319799, -0.0285636187, 0.00158125185, -0.0428887494, 0.0068196, 0.0144262156, -0.00883046165, -0.0204479694, 0.00570044899, -0.0233361013, -0.00871493574, -0.0538347661, -0.00289715664, 0.015090486, 0.000985574792, 0.00081950723, 0.00953805353, 0.0110326614, -0.0242891833, -0.0401450247, 0.00483039953, -0.012137372, -0.0157836378, 0.00531777181, -0.00102799421, -0.0257476903, -0.0157836378, -0.0175309572, -0.0162890609, -0.0227584746, -0.00346575747, -0.00348741841, 0.0077979546, 0.022686271, 0.00487372139, -0.00815897062, -0.00715173502, 0.0395962782, -0.0103322901, 0.0310762934, -0.0300654471, -0.0365926251, 0.00346395257, 0.0172710251, -0.00295672449, 0.0062708552, 0.0260076225, 0.00241881, 0.0254588779, -0.0219064765, -0.0158847217, 0.00170399749, 0.00434663752, 0.0117258132, 0.0264841635, 0.000206794706, 0.0115741864, 0.0210111551, 0.00485206069, -0.00347117288, -0.0415602103, -0.0192927178, 0.0102600865, -0.0131770987, -0.0232783388, 0.00333759678, -0.0223396961, 0.0105561195, 0.03717025, -0.000397118041, -0.0108088311, -0.0135669969, -0.012909947, -0.0379789248, 0.0176464822, -0.0243902691, 0.00457407814, 0.0165634323, 0.00179334905, -0.0178775322, 0.0163901448, -0.024014812, -0.0184696, 0.0163468234, -0.0192927178, -0.0134225897, 0.00892432593, 0.00541524636, 0.0100290356, -0.00145309104, 0.00946585, 0.018108584, -8.52901285e-05, -0.0179208554, -0.0496469773, -0.0203902069, 0.0117258132, 0.00517697539, 0.0168233644, 0.0260942653, 0.00257765711, -0.0142096058, -0.00435385806, 0.0124911675, -0.000295582198, 0.0212855283, 0.0244191494, -0.0169388894, -0.0186717696, -0.00658132927, -0.0344554074, 0.0115525248, -0.00520224636, 0.00263902987, -0.00582680479, -0.00758856488, 0.00628529582, -0.00849110633, 0.00424555317, 0.018108584, -0.0203468855, -0.0202458, -0.00808676798, 0.000824922521, 0.025588844, 0.000521668699, 0.0226140674, -0.00293325842, 0.000527083932, 0.000597933424, -0.0232783388, -5.91164389e-05, -0.000786564487, -0.00683404086, -0.0122456765, 0.0217476282, -0.00665714266, -0.00334120682, 0.0448815599, 0.0220220014, -0.000788369565, 0.0228595585, 0.00594955031, 0.00499285711, -0.0108665936, 0.00694956584, -0.00807232689, -0.0201302748, 0.0125778122, -0.0160435699, 0.00620587217, 0.0174154323, -0.0307585988, -0.000605605, -0.00502534863, 0.0212422051, 0.0198270213, 0.0400295, -0.0160002466, 0.00194407336, -0.0224985424, -0.00125904474, -0.0295455828, -0.0088088, 0.00589900836, 0.0240292531, 0.013270963, -0.00117330335, -7.05110142e-05, 0.0294878203, 0.0618637726, -0.0230328478, -0.0101012392, -0.0273794848, 0.0411847532, 0.0141085209, 0.00379428244, 0.0251556244, 0.0242314208, -0.00374013, 0.0311629362, 0.0135381157, -0.00592788961, 0.0256610457, 0.00495675532, 0.00750914123, 0.00959581602, 0.000594774552, -0.00547300885, 0.00227079331, -0.0316539183, -0.00574377086, 0.00695678638, -0.00272567384, 0.00745859882, 0.0058592963, 0.0227295924, -0.0277838223, -0.00535387313, 0.00424194289, 0.00218414934, -0.0118485587, 0.0279282294, -0.00464267097, -0.000331683841, 0.0107510686, 0.00375096058, 0.027884908, -0.0104622552, 0.0264408421, -0.00239895401, -0.00127168035, 0.0115380846, 0.0178919733, -0.0122023551, -0.0129821505, -0.0164334662, 0.00255960645, 0.000939545222, 0.00818063226, 0.00123106595, -0.0244769119, 0.00401450228, -0.0174731947, -0.0059459405, 0.0109965596, 0.0231050495, -0.0204912908, -0.00839724205, -0.0168233644, -0.0137402844, -0.00420584111, 0.00784849655, 0.00395312952, 0.0159713663, -0.00872215629, -0.0158558413, -0.0102095436, 0.00946585, 0.0010207739, -0.0246502012, -0.00371485879, 0.0207079016, 0.0163901448, 0.00107041362, 0.00564990705, 0.0156247905, 0.00818785187, -0.0195959713, 0.00917703751, 0.0156681128, 0.0230906103, 0.00264083501, 0.0251700636, 0.0130110318, 0.00549466955, -0.0109965596, 0.0197403766, 0.000703982, 0.00808676798, -0.027523892, 0.00576543203, -0.0196970552, -0.0161446538, -0.00836836081, -0.0105489, 0.0151771298, 0.0323470719, -0.0149460798, 0.00737556536, 0.00071210484, -0.0079207, 0.00984130707, -0.00578709319, -0.00158756971, -0.0254877582, -0.00366612175, 0.000733765832, 0.00338272378, 0.0244047102, 0.0154370619, -0.00162186625, 0.00821673311, 0.00289174146, -0.013516454, 0.00884490181, 0.000151852524, -0.0211700015, -0.00485928077, -0.0222241711, -0.0216609854, 0.0106499838, 0.00663548149, 0.0109026954, -0.0158991627, 0.0124911675, 0.00170941267, 0.0156247905, 0.0295600239, 0.0185562428, -0.0303542595, -0.0143179111, 0.0044224509, -0.0158414, 0.00111463817, -0.00935754552, -0.0136825219, 0.0381522141, -0.0136753013, -0.00610117754, 0.0200869534, 0.026541926, 0.00712646404, -0.0234083049, -0.00216609845, -0.00559575437, 0.0127583202, 0.00981242582, 0.0219497979, -0.0142529281, -0.0227729157, -0.0356395394, -0.0047654165, 0.0214010533, -0.00316430884, -0.0134298103, 0.0184696, 0.0317983255, 0.00059657963, -0.0471054204, -0.00673656631, 0.0111481864, 0.0537192412, 0.00750192115, 0.000286331138, -0.0049423147, -0.00228523393, -0.020274682, -0.00411919737, 0.0107005266, 0.0216032211, -0.000715715054, 0.0308452416, -0.00405060407, 0.0270329081, 0.0282026026, 0.0126716755, 0.00955249462, -0.00666075293, 0.0222819336, 0.00895320717, 0.00455963705, 0.000245942443, 0.00416251924, -0.0343687609, 0.0218053907, 0.00421667146, 0.00604702486, 0.00513004325, 0.00864995364, -0.00498924684, 0.018715091, 0.0101517811, -0.0211988837, 0.00291701267, 0.0276682973, 0.0249534547, -0.0256754868, -0.0239859298, -0.00730697205, -0.014483978, 0.00746581936, -0.0154081807, 0.0056823981, 0.0236826763, -0.0342532359, -0.0104766963, 0.00305419881, 0.0126644559, -0.00531777181, 0.0092348, 0.00327983405, 0.00872215629, -0.00384482485, -0.0111842882, -0.0109315766, -0.0119929649, 0.0246935226, 0.0196392927, 0.0135669969, 0.0354951322, -0.00179334905, -0.00602897396, -0.0205779355, 0.0088810036, 0.0319427326, 0.0248668101, 0.0131121157, -0.00472931517, 0.0220075604, -0.0547300875, 0.0206068158, -0.00339896954, 0.00519502629, 0.0064694141, 0.00639721099, 0.0360438786, -0.0383832641, -0.0231339317, 0.00905429199, -0.00634305831, -0.0147727914, -0.0161590949, -0.00991351064, 0.0267296545, -0.000154221692, 0.0248812512, -0.0189605821, 0.00297658029, 0.0171988215, 0.00647302438, -0.0318272077, 0.0217765104, -0.018715091, 0.00148829015, 0.00671851542, 0.0186862089, -0.00057807751, -0.0019278276, -0.0341665931, 0.0151338084, 0.0146283852, 0.0108521534, 0.00940086693, -0.0030469785, -0.00354157109, -0.017372109, -0.00515531423, -0.0218198318, 0.00386648579, 0.0397695675, 0.00702537922, -0.00721671805, -0.000786113262, 0.00836836081, -0.0232061353, 0.00369680813, 0.00961747672, -0.00935032498, -0.0150471637, 0.00422750227, 0.0309030041, -0.0242747441, 0.0130615737, 0.000855157617, -0.0114297792, -0.00506145, 0.0176176, 0.0156247905, -0.0207945444, 0.00664631231, -0.00284300419, -0.00883768126, 0.0217765104, -0.000733314606, 0.0112059498, 0.00581597444, -0.0348019823, 0.0255166404, 0.00511199236, -0.0120435078, 0.0353796072, 0.0157258753, 0.00409753621, 0.0138341486, 0.000191902785, -0.00174009905, -0.000647573208, -0.0326647647, -0.0251845047, -0.0129388282, -0.0199569874, -0.0379211642, 0.00875103753, 0.0313362256, -0.0169388894, 0.0116175078, 0.00295130908, 0.0148594351, 0.011581406, 0.00715895556, -0.00473653525, -0.0226140674, 0.0226285085, 0.0138630299, -0.00692429487, -0.00157673913, 0.0131843193, -0.0426865816, 0.00805066619, 0.0305853095, -0.0118846605, -0.0230617281, -0.00342965592, -0.00654161721, 0.011350356, 0.0100651374, 0.01320598, 0.0282892454, 0.013516454, -0.00668241363, 0.0214588158, -0.0113647962, 0.000694054062, 0.0152782146, 0.00515531423, -0.00196212414, 0.0204912908, -0.00638999045, 0.0156681128, 0.000625009649, 0.00572933024, 0.00241339463, -0.0067257355, -0.01122039, -0.00501812808, -0.0189028196, 0.0352640823, -0.00609756727, 0.0156969931, -0.0293722954, -0.00993517134, 0.00459212856, 0.00120037957, -0.0134586915, -0.00765354792, 0.0171988215, 0.00979076512, 0.0263975207, 0.0500801951, -0.00432497682, -0.00330510526, -0.00381955365, 0.0102095436, 0.0321160182, -0.0182385482, 0.00367153692, -0.0117113721, -0.0134081496, -0.0075524631, -0.0211844426, -0.0259354189, -0.0160580091, -0.00136734964, -0.0080362251, 0.00940808747, 0.000356729346, -0.00659215963, -0.0139785558, -0.0155525869, 0.00107402378, 0.0153648583, 0.0346575752, 0.00830337778, -0.00572211, 0.0238415245, 0.0108665936, -0.0354951322, -0.0104839168, 0.016650077, 0.00706870109, -0.00863551255, 0.00966079906, 0.0104189338, 0.0255744029, 0.00721310778, 0.00797124207, -0.0231916942, 0.0381810963, -0.0253144708, 0.0107005266, 0.00658493955, -0.0249967761, 0.00585207622, 0.034022186, 0.0252567083, -0.00311918184, 0.0245202351, 0.00855608936, -0.00696039619, -0.0140002165, 0.010317849, -0.00182223029, -0.0161157735, 0.0149171976, -0.0310474113, 0.0136464201, 0.000513997104, -0.0264841635, -0.016173536, 0.014173504, -0.00917703751, -0.0217187479, -0.0236826763, 0.0380366892, 0.0282603651, -0.00543690706, -0.00256502163, -0.00268957228, 0.00430692593, -0.0035054693, -0.00566795748, 0.000161442033, -0.00235743704, -0.0177620072, 0.00277621625, 0.00739000598, 0.00541885616, 0.0117763551, -0.00455963705, -0.0185706839, 0.000775282737, -0.00924202055, -0.00727448054, -0.0116897114, -0.0182963125, 0.00901819, 0.0283903312, 0.0550766625, 0.0027852417, -0.00758856488, -0.0197114963, -0.00188450562, 0.0249101315, 0.0301232096, 0.0268163, 0.00427443441, -0.00307585974, -0.00206320873, -0.0013483963, -0.0180797018, 0.00897486787, -0.00697483681, 0.0133431666, 0.0152348923, 0.0206212569, 0.00320221554, 0.00081860472, -0.0155525869, -0.0146500459, 0.00428887503, 0.0163323823, 0.00218595448, 0.0242458619, 0.00240436918, 0.0181374643, -0.00262819952, 0.019422682, -0.0132493023, 0.00260292832, -0.0185418036, 0.0160580091, -0.0033339865, 0.00029264894, 0.0120218461, 0.0202313587, 0.00518419547, 0.00495675532, 0.0143467924, -0.0219497979, -0.0320004933, -0.00740083633, 0.00329246977, -0.0163323823, 0.0204912908, -0.00622753287, 0.00916259643, -0.0105777811, 0.00333759678, 0.0101734428, -0.0171121787, -0.0231483728, 4.64808618e-05, 0.00948029105, 0.0052275178, 0.00826005545, -0.0154226208, -0.00500368746, 0.0162024163, 0.0147222495, 0.0142745888, -0.0123395408, 0.00285564, 0.0117691346, 0.00455602724, 0.00906151161, 0.00559214409, -0.00772575103, -0.0128521845, -0.0315383933, -0.00989185, 0.00191158184, -0.00712285377, 0.00856330898, 0.00359030813, 0.00564629678, 0.00154966291, -0.00287188543, 0.0103972722, 0.00231411518, 0.0118702194, 0.0329824574, -0.0046571116, 0.0234371852, -0.00189172605, 0.00889544468, -0.00454519643, 0.0271484349, -0.00149912061, -0.0135886576, 0.0031986055, 0.0101301204, -0.0116391694, -0.00523112761, -0.0153359771, 0.0129821505, -0.0198125802, 0.00788459834, -0.0138485897, 0.00733946357, 0.0161157735, 0.0189750232, -0.0109099159, 0.021112239, 0.0160724502, 0.00958137587, -0.00631056679, 0.0066174306, 0.00709397253, -0.00203974266, 0.00905429199, -0.00680515915, 0.0109171364, -0.0118991006, 0.00157944683, 0.00601453334, 0.00863551255, -0.0179786179, -0.0162746198, -0.0154659431, 0.0218342729, 0.0062708552, -0.00545495795, -0.00684487121, -0.0219931193, -0.0169533305, 0.0358417109, 7.02289763e-05, 0.0141879451, -0.00153973501, 0.0139568942, 0.00195670896, -0.00584846595, -0.00207764935, -0.023162812, -0.0144045549, -0.000291520759, 0.00420584111, -0.00578348292, -0.0018953362, -0.0066860239, 0.0162312984, 0.0251845047, 0.0147872325, -0.00632861769, -0.036332693, -0.0131915398, -0.00563546596, -0.0115525248, -0.016173536, -0.0022022, 0.000612374104, -0.00601814361, -0.0111554069, 0.00312459702, 0.0132565228, 0.0088088, -0.0183829553, -0.0188161749, -0.0157836378, 0.00156320108, -0.0122889988, -0.000260383094, -0.000780246744, 0.013516454, -0.00951639283, 0.0186428875, 0.00171753555, -0.014238487, -0.00551994098, -0.0117763551, 0.0231194906, -0.019061666, 0.0113575766, -0.00295130908, 0.00447299331, -0.00645858375, 0.00747304, 0.0196537338, -0.013220421, 0.0152926547, -0.00493509416, -0.0165923145, -0.00438995939, -0.0151771298, 0.00731058232, 0.0150760449, 0.000573113561, -0.00408309558, -0.00673656631, 0.00360294385, 0.0160580091, 0.011891881, -0.0116536096, -0.0102312053, -0.0239714906, 0.0296322275, -0.00961025711, -0.0315095112, 0.00892432593, 0.011350356, 0.0318272077, 0.0038989773, 0.0124622863, -0.0147511307, -0.00832503848, 0.00256502163, 0.0181952268, -0.0109026954, 0.00651995651, 0.00802900456, -0.0159136038, -0.0108738141, 0.00753802247, 0.00816619117, 0.0144262156, 0.041877903, 0.00473292498, 0.0172854662, 0.0126861166, 0.00901097, -0.000696310424, 0.00552355126, -0.026065385, 0.00746581936, -0.013761946, -0.0149171976, -0.0126283541, 0.00145038345, 0.00467877276, 0.00224010693, -0.00310654612, 0.00932144374, 0.0282603651, 0.0202313587, 9.29617236e-05, 0.00851276703, 0.0215743408, 0.0105489, -0.00396035, 0.0184840411, -0.00250906404, 0.0152493333, -0.0205634944, -0.0209822729, -0.00859219, 0.0198414624, 0.00551994098, 0.00874381792, 0.00311918184, -0.0268307403, -0.00654883776, -0.0058592963, -0.0167078394, -0.0175309572, -0.0221086442, 0.0219209157, -0.00551994098, 0.0247079637, -0.0131265568, 0.0199425463, -0.000848839816, 0.0169533305, -0.00173017115, 0.000588908035, -0.0152926547, 0.00625280431, -0.0320871398, 0.0181519054, -0.0170399752, -0.0210689176, 0.0284336526, 0.0128305228, -0.0064008208, -1.14368868e-05, 0.0157691967, -0.015321536, 0.000419004675, -0.00543329678, -0.00205418328, 0.000893515593, -0.00898208842, -0.00815897062, 0.00104424, -0.0134731326, -0.006093957, 0.00774741219, 0.00216970872, -0.0116536096, 0.00167692127, -0.00824561436, 0.0118774399, 0.00610839762, 0.00597482175, 0.0115741864, 0.00404338399, -0.0246935226, 0.0196392927, 0.028000433, -0.0160291288, -0.0244191494, -0.00315167336, 0.0204479694, 0.00179605663, 0.0116102882, 0.0116969319, 0.0163757037, 0.0113070337, -0.000928714697, -0.00857052952, 0.0112492712, 3.39299e-05, 0.0112420507, 0.00809398759, 0.00419501076, 0.0147005878, -0.0191627517, -0.00933588482, 0.00494953478, -0.00118142623, 0.0026155638, -0.0137763862, -0.0194515642, 0.00278163143, -0.00209750538, 0.0165201109, 0.00859941076, -0.00416251924, 0.0176320411, -0.00177620072, 0.00275997049, 0.0246646404, 0.00892432593, 0.00234660669, 0.0213432908, -0.00365348603, -0.00693512522, 0.0217187479, 0.00567517802, -0.00649468508, 0.00590622844, -0.0283181276, 0.0134731326, -0.0103972722, 0.0137330638, 0.000625912216, -0.0014287224, -0.00230689486, -0.0113286953, -0.00158756971, 0.00529250037, -0.00363002, -0.00321485102, 0.00252350466, -0.00237729307, -0.017256584, 0.0225851871, 0.00638638, 0.00166970084, 0.000421937933, -0.016173536, 0.0155814681, 0.00900374912, -3.4663215e-05, 0.00935032498, 0.00948029105, 0.000431414606, -0.000498202629, -0.00530333119, 0.00939364731, -0.0110182213, -0.0302098524, 0.00313903764, -0.00679793907, -0.0173576698, -0.0256610457, 0.0104766963, 0.0125561506, -0.00775463227, -0.00086779322, 0.0191338696, 0.00916259643, 0.00660299, 0.000211758685, -0.000939545222, 0.0130832344, -0.00703621, 0.0138919111, -0.0101951035, -0.018108584, 0.00576182175, 0.00752358185, -0.00890988484, 0.0241014548, 0.00130507431, 0.0206645802, 0.00290437695, 0.0145417415, 0.01297493, -0.0194371231, 0.00398562104, -0.0118846605, -0.0125128292, -0.0112998141, 0.00495314505, -0.0272495188, -0.00204696297, 0.0057185, -0.0297477525, -0.0231483728, 0.00438995939, -0.00362641, 0.0264552832, 0.000284977315, -0.000146437276, 0.0248234887, -0.0037906724, -0.00883046165, 0.00348741841, 0.000802810246, -0.000714812486, 0.00665353239, 0.0111265257, -0.0241592173, -0.0101878829, -0.00761744613, -0.0282170419, 0.0159136038, 0.020043632, -0.000835753, -0.014007437, 0.0270329081, 0.0273217224, -0.00134298101, 0.0234516263, 0.00897486787, -0.0107799498, 0.0143756736, -0.00475458615, -0.00837558, 0.010382832, -0.0247512851, -0.0165634323, 0.00522029726, -0.00614449941, 0.0118702194, -0.0123828631, 0.0113214748, 0.00819507241, 0.010859374, 0.00142330723, 0.0075308024, 0.00835392, -0.0101229, -0.0104044927, -0.0165489931, -0.00583402533, -0.00896042772, 0.0152637735, -0.000132447894, 0.00732502295, 0.0391630605, 0.0108954748, -0.0184551589, 0.0113286953, -0.023783762, -0.0258920975, 0.0318272077, 0.0198270213, 0.0213866122, 0.00242964039, 0.0116175078, 0.0115092034, 0.0182529893, 0.00277982629, -0.00996405259, 0.00519141601, 0.0250834208, 0.0201158337, -0.00440079, -0.0377189927, -0.00934310444, -0.00697844708, 0.000470223866, 0.0233938638, -0.00596399093, 0.00784849655, -0.0152782146, -0.0214443747, 0.0124983881, -0.0253000297, -0.00580514409, 0.0159424841, 0.0202169195, -0.0054838392, -0.00738639571, 0.0146283852, 0.00795680191, 0.00862107147, -0.0333867967, -0.00797124207, 0.020274682, 0.0055524325, 0.0295311417, -0.000944960455, -0.00950195175, 0.0150038423, 0.00314986822, 0.0165201109, -0.018830616, -0.0135381157, 0.0143756736, -0.0184262767, -0.00587373693, -0.00135471404, -0.0238559637, 0.00374013, 0.0190905482, 0.0242747441, -0.012252897, 0.011891881, 0.00728170108, 4.77782669e-05, -0.0112925936, -0.0162312984, -0.0132132005, -0.00613005878, 0.00107221876, 0.00982686691, -0.0128594041, 0.00116518047, 0.000168775165, -0.0183973964, 0.00984130707, -0.000639901613, -0.00734668411, 0.00415890897, -0.0159280449, -0.0119279819, 0.0185706839, 0.00623836368, 0.0242314208, 0.00554882223, -0.00633944804, 0.0169677716, 0.00330330012, -0.0140651995, -0.0170399752, 0.00665353239, 0.00287910597, 0.0107294079, -0.0092564607, -0.0141085209, -0.00754524302, -0.0198703427, -0.0203613248, -0.00611200789, -3.2223536e-06, 0.0132781835, 0.00440801028, 0.0119785247, 0.00932144374, -0.00453436607, 0.0122095747, -0.0033971644, 0.0177620072, 0.00721671805, 0.00827449653, 0.0292856507, -0.00960303657, 0.0116680507, 0.00207764935, -0.0260509439, 0.0104694758, 0.00303795305, -0.00911205448, 0.0160146877, 0.00173558644, 0.0164334662, 0.00357947778, -0.00903263, -0.0209533926, -0.000625009649, -0.00859219, -0.0101590017, 0.0268740617, 0.0119568631, -0.0182096679, 0.0265852492, 0.000197769303, -0.00796402246, 0.0055740932, 0.0317116827, 0.00685931183, 0.00774741219, 0.0202458, 0.0144117754, 0.0276682973, 0.000893064367, 0.0200725123, -0.00389175699, -0.0112059498, -0.0210978, 0.00834669918, -0.0105489, -0.0259354189, -0.00263722497, 0.00209028507, -0.0421956, 0.0150471637, -0.00592066906, 0.00603619451, -0.00159749761, -0.00512643298, -0.00589900836, -0.00195670896, -0.0173287876, -0.0246357601, -0.00772575103, -0.00214082724, 0.00884490181, -0.00166157808, -0.00248198793, -0.00493148435, -0.0146933682, -0.0184696, 0.0153937396, -0.0152348923, 0.0050325687, 0.00109748985, -0.0023718779, -0.0133720478, 0.00613727886, -0.00836114, -0.00686292211, -0.0111120855, -0.0092348, 0.033069104, 0.0270184688, -0.00826005545, -0.00909761339, 0.0179208554, -0.00271845353, 0.0103395097, -0.0165634323, -0.0148883164, -0.0180797018, 0.0155092645, 0.00198378507, 0.016664518, 0.000751365384, 0.0154370619, 0.00139081571, 0.00601092307, -0.0146789271, -0.0104261544, 0.0127727604, -0.00370041816, -0.0173432287, -0.0159136038, -0.0151482485, -0.0104478151, 0.0101445615, -0.00384482485, 0.00815175, 0.00955249462, -0.0127222184, -0.00061598426, 0.0207079016, 0.0136897424, 0.013942454, 0.0174731947, 0.011581406, 0.038614314, 0.000996405259, -0.0129027264, 0.0105705606, -0.0217620693, -0.0166356359, -0.0260220636, -0.0133792683, 0.00521307718, 0.0218053907, 0.00297116512, -0.00116969319, 0.000937740144, -0.00441884063, 0.0213144086, 0.0238270834, -0.00834669918, -1.08445947e-05, 0.0180219393, -0.000614179182, 0.00176627282, -0.00284480932, 0.0223541353, -0.0263541974, -0.0214732569, 0.00492426381, -0.0207367819, -0.00520946691, 0.0246790815, 0.0214299336, -0.0049423147, 0.00421306165, -0.000142601479, 0.0258487742, -0.00439356966, -0.0144911986, -1.92072021e-05, -0.0125128292, 0.0170832966, 0.00970412139, 0.00242422521, 0.00680154935, -0.0198125802, 0.0114297792, -0.0163179412, 0.00647663418, 0.00774019165, 0.0125200488, 0.00586651685, -0.0122889988, 0.0156392306, 0.0175020751, -0.00144587073, -0.00717339618, 0.0192205142, -0.00592788961, 0.0360149965, 0.00706148101, -0.0150182825, 0.0167078394, 0.000493689964, 0.00987740885, 0.0130543532, -0.0102456454, 0.00668241363, 0.0123323202, -0.0030469785, -0.0141446227, 0.00124460412, -0.0201013945, 0.00132493023, 0.0205346141, 0.0165778734, 0.00518419547, 0.00376901124, 0.00446577277, -0.0107366284, 0.00168143387, 0.019422682, -0.00974744279, 0.0352929644, 0.0146428254, -0.0110615427, 0.00961025711, 0.00634666858, 0.0113214748, 0.0269607063, -0.0130182514, -0.00384843489, 0.0249967761, -0.00299102091, -0.0179641768, -0.0232783388, -0.0186428875, -0.00650551589, 0.0118702194, -0.0125200488, -0.00564629678, 0.00141247676, 0.00663548149, -0.0178342108, -0.0222386103, 0.0300654471, 0.0143251307, -0.00528528029, -0.00564629678, -0.00892432593, 0.0233505405, 0.0242747441, -0.00105416786, -0.0145850629, 0.00108214666, 0.0134803532, 0.00210472569, 0.00467877276, 0.0265852492, -0.0128160827, -0.00190075138, 0.016534552, -0.00338813895, -0.0135597764, 0.027884908, -0.00523473788, 0.00698566763, 0.034859743, -0.0100867981, -0.0145200798, -0.038007807, 0.0372568928, 0.0174154323, -0.0166211948, 0.0235527102, -0.0160868913, -0.0103756115, 0.00142330723, 0.00351629988, -0.0107221873, 0.00697844708, -0.0221375264, 0.00102799421, 0.0127222184, 0.00671490515, 0.0113214748, 0.0156969931, 0.00334842713, -0.0214299336, 0.0192493945, -0.017372109, 0.0136319799, 0.00303614791, -0.00189353107, -0.0101012392, -0.00307766488, -0.0170688555, 0.000398471864, 0.0148738762, -0.00795680191, -0.00732141268, 0.010252866, -0.0194082428, -0.0166211948, 0.0143540129, -0.00328705437, 0.0234227441, -0.010252866, -0.00422028173, 0.00779073406, -0.0252133869, 0.00610478735, -0.000105484483, -0.0245779976, -0.0217909496, -0.0110615427, -0.00175363722, 0.00879436, 0.00761022605, -0.0212999675, 0.0179930571, -0.00870771613, -0.00535026332, 0.000573113561, -0.0138341486, -0.00811564922, -0.0159858074, 0.00980520528, -0.000782051822, 0.00653800741, -0.00684848148, -0.00994961243, 0.0291412454, -0.00726004, -0.00636471948, -0.00320221554, 0.00293506333, 0.0034098, -0.00390619761, -0.00653439714, 0.00380872306, -0.0139207924, 0.0108665936, -0.0170832966, 0.00197656476, 0.00532860216, 0.022455221, 0.00250184373, 0.0240870155, -0.0134225897, 0.0107366284, 0.0160291288, 0.00911927409, -0.0177764483, 0.00104424, 0.0139207924, 0.00867883489, 0.0178919733, 0.000233306855, 0.0153648583, -0.00817341171, -0.00049414119, 0.00632861769, 0.0128088621, -0.00446216296, 0.00523112761, 0.00796402246, -0.00307947, -0.00519141601, -0.00566434767, 0.0103106285, 0.0243613869, -0.004527146, -0.00525639905, 4.92448962e-05, -0.0105705606, 0.00414085807, 0.00498202629, 0.0133431666, -0.0164767895, 0.0203035623, 0.0019458785, -0.0309030041, -0.0194804464, -0.00677627791, -0.00373652, 0.0254733171, -0.0129821505, 0.000911115145, 0.0028502245, 0.0144984191, -0.0111337462, 0.000236691383, 0.00872215629, 0.00331052043, -0.0180219393, 0.00723476894, 0.000272793026, -0.0151771298, 0.0151626896, -0.0115092034, -0.0502246022, 0.00298560574, 0.0136319799, 0.019422682, 0.00789903942, 0.00805788673, 0.00110832043, -0.0195670892, 0.0171555, 0.0150327235, 0.0135597764, 0.00438995939, 0.0101084597, 0.00680154935, -0.00409031613, -0.00965357851, 0.0235960335, -0.0146933682, -0.0258776564, -0.00353254564, 0.00564629678, -0.0138846915, -0.0175020751, -0.00378345209, 0.0150616048, 0.00522029726, 0.0151482485, -0.0161302127, 0.0114947623, -0.0108810347, 0.00952361245, 0.00796402246, -0.0205923766, 0.00627807528, -0.00703259977, -0.0136608612, -0.00407226523, -0.0126644559, -0.00014011949, -0.0267585367, 0.0161590949, -0.00958137587, 0.00606507575, -0.00455963705, -0.0283758901, 0.00888822414, 0.00139713346, -0.0343976431, 0.00281592808, 0.00264444528, -0.00989185, -6.93264301e-05, -0.012187914, -0.0164623484, -0.0302098524, 0.00479429774, -0.0203902069, -0.016780043, -0.00655605784, 0.0228162371, 0.00296213967, -0.0459501669, 0.0115741864, -0.00589539809, 0.0182385482, 0.0123756425, -0.0198992249, 0.0170399752, 0.000118909782, 0.00762466667, -0.0114586605, -0.0123900836, -0.012303439, -0.00368056237, 0.00689902343, -0.00897486787, -0.0137402844, 0.00475097587, 0.0126933372, -0.00313903764, 0.0157547556, -0.00500007719, 0.00732141268, 0.011646389, 0.00107673148, 0.0121734729, 0.00294950418, -0.00157403154, 0.0218775943, -0.00743693812, 0.0128955059, 0.00602897396, -0.0192493945, 0.0146789271, 0.0253144708, 0.0170544144, -0.00870771613, -0.0228162371, 0.0151482485, 0.0134225897, 0.0162890609, 0.00794236083, 0.0407226495, -0.000969329034, 0.0218053907, -0.0235093888, -0.00276899594, -0.0153070958, 0.0140940808, -0.000811835635, 0.0276249759, 0.00484123, -0.0119568631, 0.0119063212, 0.00734307384, 0.0132854041, -0.000756780675, 0.000404338381, -0.00579431327, 0.024260303, -0.00150634092, -0.0169822127, -0.0120868292, 0.00534304278, 0.000456685753, -0.00149009528, 0.000851998746, 0.00583041506, -0.0142529281, -0.000857414, 0.015321536, -0.0179208554, 0.0185273625, -0.0199858677, 0.0174298715, -0.00059251819, -0.013761946, 0.00750914123, -0.0109604578, -0.00650551589, -0.00429970538, 0.0138485897, -0.0104766963, -0.0148305539, -0.0146139441, -0.024852369, -0.0177620072, 0.02594986, -0.010252866, 0.00966802, -0.01870065, -0.0145922834, 0.000608763949, -0.0100795785, -0.00594955031, -0.0118341176, 0.00471487409, -0.00434302725, -0.00843334291, -0.00805788673, -0.00382677396, 0.0071878368, -0.00745137874, -0.00883046165, 0.00426721387, 0.0251700636, -0.0140290977, -0.0235382691, 0.00737917563, -0.0122167952, 0.00995683298, 0.0202024784, -0.00081544579, 0.00322387647, 0.00334120682, 0.0117763551, 0.0111337462, 0.00774019165, -0.00673656631, 0.00924924, 0.0178486519, -0.00225093728, -0.00466433214, -0.00699649798, 0.0100001544, -0.00848388579, 0.00193865807, 0.00425638352, 0.0271051116, -0.0141518433, 0.0358417109, 0.0239426084, -0.0109026954, 0.00536831422, -0.00624919403, -0.0116319489, 0.00583041506, 0.0184262767, -0.0108232722, 0.00703621, -0.00831781793, -0.00596399093, -0.0100506973, 0.00436829869, 0.0122384559, -0.0124767274, -0.00562463561, 0.0140651995, 0.0156247905, -0.0136825219, -0.00148287485, -0.033791136, -0.00804344565, 0.0124261845, 0.00173017115, 0.0169533305, -0.020881189, 0.000828532677, -0.00702176895, 0.0225129835, 0.0147294691, 0.0110471025, 0.00983408745, -0.00269498746, 0.0217476282, -0.00890988484, -0.00532860216, -0.00104243483, -0.015321536, -0.00828171615, 0.0132493023, -0.0175742786, 0.0135381157, -0.0144262156, -0.0186573286, 0.00193865807, -0.0123900836, 0.0249390136, -0.00214263238, 0.0211700015, -0.00446938304, -0.00532860216, -5.05705029e-05, 0.00507228076, -0.00646219356, 0.0106716454, 0.00967524, 0.00182674301, -0.00280690263, 0.0113142543, -0.00723115867, 0.00149460789, 0.00142150209, 0.0104911365, 0.0175020751, -0.00430692593, -0.0262964349, 0.00522029726, 0.00215526787, 0.0328091718, -0.00430331565, -0.0108016105, -0.00333579164, -0.00973300263, 0.00933588482, -0.0036137742, -0.00144948089, -0.0384699069, -0.00896764733, 0.00110290514, 0.00219136965, -0.0127872014, 0.00192963274, -0.012122931, 0.0160146877, 0.00285925, -0.00066201383, 0.00205959869, -0.020404648, -0.0125922523, -0.0242458619, -0.0170544144, -0.0144117754, 0.0209533926, -0.006880973, 0.00469321338, -0.00414085807, -0.0336178467, -0.00230328459, -0.0281737205, 0.0239570495, 0.00265708077, -0.00627446501, -0.00856330898, -0.00174641691, -0.0253577922, -0.0102889678, 0.0118774399, -0.0159136038, -0.0218775943, 0.00567156775, -0.00878713932, -0.0179786179, -0.0137980469, -0.00816619117, -0.0131698791, -0.0173576698, -0.0151482485, 0.00651634624, -0.00338633382, -0.0427732244, 0.00186826, 0.00639360072, 0.00409753621, 0.00516253477, -0.00833225902, -0.011039882, 0.00513726333, 0.0130543532, 0.00864995364, -0.00251447922, -0.0193504803, 0.00215346296, 0.0115886265, 0.00590261817, -0.0158702806, -0.0107005266, 0.0138197085, 0.0146211646, 0.00450548483, 0.0134659121, 0.0242747441, -0.0232061353, 0.0253866743, -0.0120940497, -0.00837558, -0.0185129214, -0.022094205, -0.00515531423, -0.0027220638, -0.00812286884, 0.00885212235, -0.00958137587, -0.00166879839, 0.0116824908, -0.0137980469, 0.000103284539, 0.00635027885, -0.000404338381, 0.00419140048, -0.011646389, 0.00324914767, -0.00292423298, 0.0206645802, -0.00453797635, 0.00387731614, -0.0228595585, -0.00671129487, 0.00899652857, -0.0262242313, 0.00536470395, -0.00547300885, -0.00597482175, -0.00532138208, -0.00137457, -0.0094947312, 0.0383832641, 0.00175814994, -0.0249390136, -0.00736834481, 0.0234660674, -0.0267729778, -0.022801796, 0.0580514371, 0.0165778734, -0.00148738758, -0.011335915, 0.0223685764, -0.0238270834, 0.00507950084, 0.0365926251, -0.0113647962, -0.000820409798, -0.00323470705, 0.000152303794, 0.010859374, 0.00661382079, 0.00270942808, -0.0122240158, -0.00712285377, -0.00319499522, 0.0105922213, -0.0191338696, -0.00898208842, -0.0101517811, -0.00589178782, -0.00984852761, 0.0103900526, 0.00518419547, -0.0146067236, -0.00206140359, -0.00414446834, 0.00689180335, 0.00416251924, -0.00365529116, -0.0116391694, -0.00026196253, -0.00385204516, -0.0219497979, -0.0442750528, -0.00563185615, 0.02135773, -0.0110759838, 0.0236682352, 0.00510838209, 0.00638277, 0.015206011, 0.00948029105, -0.0137908272, -0.00687375246, 0.00459212856, -0.00236465759, -0.00581958471, -0.00644414313, -0.0115958471, -0.0103467302, -0.0259065367, -0.011039882, 0.0189605821, 0.0154659431, 0.0116247283, 0.00136734964, 0.0354951322, -0.00495675532, 0.00209931051, -0.00665714266, -0.0306719542, -0.00564629678, 0.00322026643, -0.00979798567, 0.0204190873, -0.0283903312, -0.00422750227, 0.0192927178, -0.0122817783, -0.0160435699, -0.00674739666, 0.0055740932, 0.00805066619, -0.0274516884, 0.00198378507, -0.00849110633, -0.0138413692, -0.000920591818, -0.00395312952, -0.000300997432, -0.0131770987, -0.00332315615, 0.00260834349, -0.00953083299, -0.0266141295, -0.004314146, -0.00807232689, 0.00585207622, 0.0199281052, 0.00524195842, 0.0177620072, 0.00489177229, -0.000563636888, -0.0202169195, 0.00330330012, 0.0108160516, -0.00650551589, 0.0205057319, -0.00858497061, -0.0179352947, -0.0109026954, -0.0120435078, 0.0151193673, -0.00346936774, 0.00712646404, 0.00573655078, -0.0221808478, 0.00318777491, 0.00545495795, 0.00242783525, 0.0277982634, -0.00538275484, -0.00983408745, 0.00489899283, 0.0046174, 0.0040469938, -0.010924357, 0.00266610621, -0.00318235974, -0.00789903942, 0.0108088311, 0.0187728535, -0.00366251147, 0.00272928411, -0.0107077463, 0.00794958137, 0.000186149089, -0.00450187456, -0.00150273077, 0.00967524, -0.0269607063, 0.0118124569, 0.010317849, -0.00711202342, 0.00775463227, -0.00205057324, 0.0238704048, 0.000176559595, 1.87277255e-05, -0.00764632737, 0.0108232722, -0.0131121157, 0.001396231, 0.014007437, -0.020751223, 0.00528167, -0.00186645484, 0.0139135728, 0.0198559035, 0.00114712969, -0.00638277, 0.0265996885, 0.0092781214, 0.0196970552, -0.0155237056, 0.036217168, 0.00795680191, -0.00179876422, -0.00100452814, -0.0148016727, 0.000810481841, 0.00600009272, -0.0246357601, -0.00502534863, -0.0133792683, 0.0113864578, 0.0196392927, 0.00263000466, 0.0332423896, 0.00267332653, 0.0356395394, -0.00231772545, -0.0105272382, -0.0034856135, 0.000545134768, -0.00481234863, -0.0352063216, 0.00766798854, 0.0131987603, -0.00968968, 0.0448238, 0.015567028, -0.0219497979, -0.00268596201, 0.00941530801, 0.00884490181, -0.00691707432, 0.00449465448, 0.00577626238, -0.00447660359, 0.00147294695, -0.0162168574, -0.0209822729, 0.0264697224, -0.0109026954, -0.00966079906, -0.00760300551, 0.00367334206, -0.00330510526, 0.0189028196, 0.00683765067, -0.00914093573, -0.00479429774, 0.0260942653, 0.00377623155, -0.00131319719, -0.011285373, -0.00565351686]
17 Jun, 2022
unordered_multimap begin() and end() function in C++ STL 17 Jun, 2022 The unordered_multimap::begin() is a built-in function in C++ STL that returns an iterator pointing to the first element in the container or to the first element in one of its buckets. Syntax: unordered_multimap_name.begin(n) Parameters: The function accepts one parameter. If a parameter is passed, it returns an iterator pointing to the first element in the bucket. If no parameter is passed, then it returns a constant iterator pointing to the first element in the unordered_multimap container. Return Value: It returns an iterator. It cannot be used to change the value of the unordered_multimap element. Below are programs that illustrate the above function: Program 1: CPP // C++ program to illustrate the // unordered_multimap::begin() function #include& lt; bits / stdc++.h & gt; using namespace std; int main() { // declaration unordered_multimap& lt; int, int& gt; sample; // inserts element sample.insert({ 1, 2 }); sample.insert({ 3, 4 }); sample.insert({ 3, 4 }); sample.insert({ 2, 3 }); sample.insert({ 2, 3 }); // prints all element cout& lt; < " Key and Elements : \n& quot; ; for (auto it = sample.begin(); it != sample.end(); it++) cout& lt; < " " < < it - > first& lt; < " \t& quot; < < it - > second& lt; < endl; auto it = sample.begin(); // print the first element cout& lt; < " \nThe first key and element : " < < it - > first& lt; < " " ; cout& lt; < it - > second; return 0; } Output: Key and Elements: 2 3 2 3 1 2 3 4 3 4 The first key and element: 2 3 Program 2: CPP // C++ program to illustrate the // unordered_multimap::begin(bucket) function #include& lt; bits / stdc++.h & gt; using namespace std; int main() { // declaration unordered_multimap& lt; int, int& gt; sample; // inserts element sample.insert({ 1, 2 }); sample.insert({ 3, 4 }); sample.insert({ 3, 4 }); sample.insert({ 2, 3 }); sample.insert({ 2, 3 }); // prints all element cout& lt; < " Key and Elements of first bucket : \n& quot; ; for (auto it = sample.begin(1); it != sample.end(1); it++) cout& lt; < " " < < it - > first& lt; < " \t& quot; < < it - > second& lt; < endl; auto it = sample.begin(1); // print the first element cout& lt; < " \nThe first key and element in first bucket : " < < it - > first& lt; < " " ; cout& lt; < it - > second; return 0; } Output: Key and Elements of first bucket: 1 2 The first key and element in first bucket: 1 2 The unordered_multimap::end() is a built-in function in C++ STL that returns an iterator pointing to the position after the last element in the container or to the position after the last element in one of its buckets. Syntax: unordered_multimap_name.end(n) Parameters: The function accepts one parameter. If a parameter is passed, it returns an iterator pointing to the position after the last element in one of its bucket. If no parameter is passed, then it returns an iterator pointing to the position after the last element in the unordered_multimap container. Return Value: It returns an iterator. It cannot be used to change the value of the unordered_multimap element. Below are programs that illustrate the above function: Program 1: CPP // C++ program to illustrate the // unordered_multimap::end() function #include& lt; bits / stdc++.h & gt; using namespace std; int main() { // declaration unordered_multimap& lt; int, int& gt; sample; // inserts element sample.insert({ 1, 2 }); sample.insert({ 3, 4 }); sample.insert({ 3, 4 }); sample.insert({ 2, 3 }); sample.insert({ 2, 3 }); // prints all element cout& lt; < " Key and Elements : \n& quot; ; for (auto it = sample.begin(); it != sample.end(); it++) cout& lt; < " " < < it - > first& lt; < " \t& quot; < < it - > second& lt; < endl; return 0; } Output: Key and Elements: 2 3 2 3 1 2 3 4 3 4 Program 2: CPP // C++ program to illustrate the // unordered_multimap::end(bucket) function #include& lt; bits / stdc++.h & gt; using namespace std; int main() { // declaration unordered_multimap& lt; int, int& gt; sample; // inserts element sample.insert({ 1, 2 }); sample.insert({ 3, 4 }); sample.insert({ 3, 4 }); sample.insert({ 2, 3 }); sample.insert({ 2, 3 }); // prints all element cout& lt; < " Key and Elements of first bucket : \n& quot; ; for (auto it = sample.begin(1); it != sample.end(1); it++) cout& lt; < " " < < it - > first& lt; < " \t& quot; < < it - > second& lt; < endl; return 0; } Output: Key and Elements of first bucket: 1 2 Let us see the differences in a tabular form as shown below as follows: unordered_multimap::begin unordered_multimap::end 1. It is used to return an iterator pointing to the first element in the unordered_multimap container or in one of its buckets It is used to return an iterator pointing to the past-the-end element in the unordered_multimap container or in one of its buckets. 2. Its syntax is -: iterator begin() Its syntax is -: iterator end() 3. It takes one parameter which is the Bucket number. It takes one parameter which is the Bucket number. 4. Its complexity is constant. Its complexity is constant. 5. Its iterator validity does not change. Its iterator validity does not change. Learn C++ Online – Master everything from basics to advanced concepts. Apply your knowledge with practical exercises and boost your skills. Take the Three 90 Challenge: finish 90% in 90 days for a 90% refund. Start now and level up your C++ programming!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum/Algorithm for Dynamic Time out timer Calculation/Difference between Round trip time (RTT) and Time to live (TTL)/Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms/Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm/Round Robin Scheduling Algorithm with Different Arrival Time/Selfish Round Robin CPU Scheduling/Find the order of execution of given N processes in Round Robin Scheduling/Calculate server loads using Round Robin Scheduling/set::lower_bound() Function in C++ STL/Implementation of lower_bound() and upper_bound() in List of Pairs in C++/Difference between std::set::lower_bound and std::lower_bound in C++/Difference between std::set vs std::vector in C++ STL/std::minmax() and std::minmax_element() in C++ STL/std::rotate vs std::rotate_copy in C++ STL/std::bitset::to_ullong and std::bitset::to_ulong in C++ STL/std::upper_bound and std::lower_bound for Vector in C++ STL/std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++/std::string::append vs std::string::push_back() vs Operator += in C++/Vector push_back() in C++ STL/vector :: cbegin() and vector :: cend() in C++ STL/unordered_multiset cend() function in C++ STL/unordered_multiset bucket() function in C++ STL/unordered_multiset emplace_hint() function in C++ STL/unordered_multiset end() function in C++ STL/unordered_multiset size() in C++ STL/unordered_multiset emplace() function in C++ STL/unordered_multiset find() function in C++STL/unordered_multiset erase() function in C++ STL/unordered_multiset clear() function in C++ STL/unordered_multiset swap() function in C++ STL/unordered_multiset bucket_size() function in C++ STL/unordered_multiset bucket_count() function in C++ STL/unordered_set bucket_count() function in C++ STL/unordered_set cbegin() function in C++ STL/array::cbegin() and array::cend() in C++ STL/array::rbegin() and array::rend() in C++ STL/multimap rbegin in C++ STL/vector rbegin() and rend() Functions in C++ STL/multiset rbegin() and rend() function in C++ STL/map rbegin() function in C++ STL/map upper_bound() function in C++ STL/Set upper_bound() in C++ STL/multimap upper_bound() function in C++ STL/multimap empty() function in C++ STL/multimap value_comp() function in C++ STL/multimap swap() function in C++ STL/multimap::swap() in C++ STL/multimap equal_range() in C++ STL/unordered_set equal_range in C++ STL/set vs unordered_set in C++ STL/unordered_set count() function in C++ STL/unordered_set bucket() function in C++ STL/unordered_set emplace() function in C++ STL/set::emplace() in C++ STL/multiset::emplace() in C++ STL/multiset find() function in C++ STL/multiset cbegin() and cend() function in C++ STL/multimap::cbegin() and multimap::cend() in C++ STL/multimap::begin() and multimap::end() in C++ STL/set::begin() and set::end() in C++ STL/unordered_multimap begin() and end() function in C++ STL
https://www.geeksforgeeks.org/unordered_multimap-begin-and-end-function-in-c-stl?ref=asr10
PHP
unordered_multimap begin() and end() function in C++ STL
unordered_multiset clear() function in C++ STL, What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, jQWidgets jqxTreeMap width Property, Round Robin Scheduling Algorithm with Different Arrival Time, Difference between Flow and TypeScript, set::begin() and set::end() in C++ STL, unordered_multiset emplace() function in C++ STL, jQWidgets jqxTree destroy() Method, unordered_set bucket_count() function in C++ STL, jQWidgets jqxTree collapseAll() Method, Find the order of execution of given N processes in Round Robin Scheduling, jQWidgets jqxScrollView buttonsOffset Property, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Vector push_back() in C++ STL, jQWidgets jqxListBox enableHover Property, Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm, std::rotate vs std::rotate_copy in C++ STL, Selfish Round Robin CPU Scheduling, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxSlider buttonsPosition Property, std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++, std::upper_bound and std::lower_bound for Vector in C++ STL, Difference between Round trip time (RTT) and Time to live (TTL), jQWidgets jqxSlider rtl Property, Difference between std::set::lower_bound and std::lower_bound in C++, jQWidgets jqxTooltip opacity Property, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, unordered_multiset erase() function in C++ STL, multiset find() function in C++ STL, set vs unordered_set in C++ STL, jQWidgets jqxToolBar height Property, PHP, std::minmax() and std::minmax_element() in C++ STL, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, unordered_set emplace() function in C++ STL, unordered_set bucket() function in C++ STL, map rbegin() function in C++ STL, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, map upper_bound() function in C++ STL, Node.js date-and-time Date.transform() Method, unordered_multiset size() in C++ STL, TypeScript Optional Parameters, jQWidgets jqxToolBar theme Property, Difference between std::set vs std::vector in C++ STL, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, Steps to Diagnose and Resolve a Slow Network, How to use Optional Chaining with Arrays and Functions in TypeScript ?, Calculate server loads using Round Robin Scheduling, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, jQWidgets jqxScrollView showButtons Property, set::emplace() in C++ STL, Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms, jQWidgets jqxScrollView disabled Property, multimap::cbegin() and multimap::cend() in C++ STL, jQWidgets jqxSplitter destroy() Method, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, set::lower_bound() Function in C++ STL, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, jQWidgets jqxTree collapseItem() Method, multimap upper_bound() function in C++ STL, std::string::append vs std::string::push_back() vs Operator += in C++, unordered_multiset swap() function in C++ STL, unordered_multiset cend() function in C++ STL, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), Set upper_bound() in C++ STL, jQWidgets jqxSortable opacity Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, multiset cbegin() and cend() function in C++ STL, multimap rbegin in C++ STL, vector :: cbegin() and vector :: cend() in C++ STL, multimap swap() function in C++ STL, jQWidgets jqxSlider height Property, jQWidgets jqxSwitchButton onLabel Property, unordered_multiset bucket_size() function in C++ STL, unordered_set cbegin() function in C++ STL, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, jQWidgets jqxToolBar tools Property, multimap empty() function in C++ STL, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTree width Property, multimap::swap() in C++ STL, multimap equal_range() in C++ STL, Implementation of lower_bound() and upper_bound() in List of Pairs in C++, jQWidgets jqxTree clear() Method, TLS Handshake?, multiset rbegin() and rend() function in C++ STL, Algorithm for Dynamic Time out timer Calculation, Adhoc TCP, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, jQWidgets jqxTabs position Property, Differences between Wireless Adhoc Network and Wireless Sensor Network, jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, unordered_multimap begin() and end() function in C++ STL, std::bitset::to_ullong and std::bitset::to_ulong in C++ STL, unordered_multiset emplace_hint() function in C++ STL, multimap::begin() and multimap::end() in C++ STL, unordered_multiset bucket_count() function in C++ STL, unordered_multiset find() function in C++STL, unordered_multiset bucket() function in C++ STL, Impact of Three-way Handshake and Slow Start Algorithm, array::rbegin() and array::rend() in C++ STL, multimap value_comp() function in C++ STL, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, multiset::emplace() in C++ STL, unordered_set equal_range in C++ STL, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, unordered_set count() function in C++ STL, vector rbegin() and rend() Functions in C++ STL, array::cbegin() and array::cend() in C++ STL, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, unordered_multiset end() function in C++ STL, How to Sort an Array Having Optional Properties in TypeScript ?
GeeksforGeeks
[-0.035481479, -0.018704433, -0.0104619255, 0.0120315794, -0.00594643271, -0.0464909561, -0.039511472, 0.0228074361, -0.0263409819, -0.00182882929, -0.0134552186, 0.0186752304, -0.00373066566, -0.0156235313, -0.0160031691, -0.0127762519, 0.0241215639, 0.0242091734, -0.00463230396, -0.0308090188, -0.00677141361, 0.00380732305, -0.0414388627, 0.00308820279, -0.00849803258, 0.0131266862, -0.0257423222, -0.00435487693, 0.0303125717, -0.00380732305, -0.0022285434, 0.0103305122, 0.0170544721, -0.00738467369, -0.00521636149, 0.0542881191, 0.0278887339, -0.00421616342, -0.0235375073, -0.00650493754, -0.00592088047, 0.0333204642, 0.0237711295, 0.0215079077, -0.0406211801, 0.0203397945, -0.00895797834, -0.0428698026, -0.0102210017, 0.0108123599, 0.0280785523, -0.0124915242, 0.0423733518, 0.0202229824, 0.0356566943, 0.0177261382, 0.00243113819, 0.0144335143, -0.0269250385, -0.025070658, -0.0153753068, -0.0384017639, 0.0208362415, -0.0160031691, -0.00867325, 0.00230885134, -0.0405919775, 0.0605083294, 0.0104035195, -0.0192884896, -0.0209530536, 0.0260343514, 0.00323969242, 0.00562885171, -0.0470166095, -0.00761464611, 0.0122286985, 0.00778256264, 0.012535329, 0.035919521, -0.0313346721, 0.0151270824, -0.0197995398, -0.0394530669, 0.0292466674, 0.00161619589, -0.0182955936, -0.0346345939, 0.0569163784, 0.0187190343, -0.0258007292, -0.0129806725, -0.00306630065, -0.00992897339, -0.0284727905, 0.0316851065, 0.0370000266, 0.0210406631, -0.0233622901, 0.0280785523, 0.0104765268, -0.00666190311, 0.00692472886, 0.00984866545, 0.0187920425, 0.0275529, 0.051864285, 0.0190694686, -0.0111189894, -0.0129587697, 0.0348390155, 0.0177261382, -0.0158571545, 0.0320355408, -0.0289400369, 0.00699773571, 0.00661079772, -0.00807459187, 0.0270710532, 0.0139005622, 0.00789207313, 0.0389858223, 0.0139735695, 0.0251436643, -0.0589605793, -0.00324881845, 0.0117760543, 0.0116957463, -0.0226322189, -0.0238003321, 0.0181641802, -0.0182809923, -0.00661079772, -0.0368540138, -0.00517985784, 0.0207486339, 0.0170398708, 0.021639321, -0.0256547146, -0.0128784627, -0.040737994, -0.0206902288, -0.0160469729, 0.0137618491, -0.0578800738, -0.0328240171, -0.00177316135, 0.0465493612, 0.00411395309, -0.0111189894, -0.0262533724, 0.00747593259, 0.0363867655, 0.0102064, 0.022413196, -0.0325611904, 0.0308966283, 0.0139808701, -0.00934491586, -0.0332620591, 0.0264869966, -0.00318311201, 0.0163682047, 0.00624576211, -0.015054075, 0.0414388627, 0.0339337252, -0.00590627873, -0.0340505391, 0.0530616, -0.00063242449, 0.0195951201, 0.00787747186, -0.00679696631, 0.0036375816, -0.0239901505, 0.0191424768, 0.0205004085, -0.00825711, 0.0138202542, 0.00658889581, -0.0113161094, 0.0236397162, 0.00928651, 0.0184270069, -0.0102283023, 0.036970824, -0.00811839569, 0.031276267, 0.0106371427, 0.00198396947, -0.000962781836, 0.0443007424, 0.0525651537, 0.0588437691, 0.0178137459, -0.0193761, 0.0168354493, -0.00605959399, 0.0472794324, 0.00499734, 0.0116373403, -5.87479444e-05, 0.0205296129, 0.0381973423, -0.000722770812, -0.0233476888, -0.00319588813, 0.0290568471, -0.00646113325, -0.0352478549, -0.00876815896, 0.0160177704, 0.030663006, -0.00843962748, 0.0197849385, -0.0658816546, 0.0276405085, -0.0190256648, -0.0596322455, -0.0224424, -0.0106225414, 0.0362699553, -0.0355690867, -0.0105495341, -0.046870593, 0.0138713596, 0.00612895051, 0.0147328442, -0.0191570781, 0.0387229957, 0.0272608716, -0.0324151777, -0.0272462703, 0.0009573063, -0.0213472918, -0.0431618318, -0.00562885171, -0.0184124038, 0.0279909428, 0.0236543193, 0.0432202369, -0.0455564633, 0.00291481079, 0.0259175394, 0.0235375073, -0.000594552, -0.0240777601, -0.0159739666, -0.00968074892, 0.0514846444, 0.00716930255, 0.0187774412, -0.0186460279, -0.00385112735, 0.0381681398, -0.0177261382, -0.0186314266, 0.00405189721, -0.0115935365, 0.0212450828, 0.0561571047, -0.0189088527, 0.0259905476, 0.0205734167, 0.00200404646, 0.0315098874, 0.00618005591, -0.0238587391, -0.050024502, 0.0406795889, 0.00271951663, 0.0108926678, -0.00689552585, 0.0207340326, 0.0159447622, -0.0133822113, 0.0370292291, 0.0297431145, -0.00365218287, 0.0322691612, -0.0145503264, -0.0028947338, 0.00797968172, 0.0195513163, -0.00765114976, -0.0235959124, -0.00654144119, -0.0276113059, -0.0391902402, -0.0414096601, 0.00279252371, -0.0107977586, -0.00354814786, 0.0295240935, 0.0651223809, -0.0101771979, -0.0301081501, -0.0344593786, -0.0249830484, 0.00464325491, -0.018981861, -0.00210443116, -0.0519518927, -0.00485862605, -0.0357735045, -0.00141542626, -0.0188066438, 0.0388398059, -0.0276405085, -0.00836662, -0.0520395, -0.00551204, -0.00300972, 0.00320683932, -0.030604599, 0.0516306609, 0.0177407395, -0.0327948146, -0.00384017639, 0.00315025868, -0.0261511635, 0.0102064, 0.0210552644, 0.0260197502, -0.0507545732, -0.00211355719, 0.0433954522, -0.0118271597, -0.081475988, -0.0199893601, -0.00200587162, -0.0247202236, -0.0199893601, -0.0138932616, -0.04205212, -0.0199601557, -0.00124750973, 0.0177115351, 0.0188066438, -0.0015094229, -0.0152146909, -0.00697948411, 0.00228877435, 0.022909645, -0.0134187154, 0.00228329888, -0.00190731196, 0.00209713052, 0.048710376, 0.00133876875, -0.00267571234, -0.0141341854, -0.0143824099, 0.0202521849, -0.00622386, -0.0188796502, -0.0233622901, -0.0033035737, 0.0562155098, -0.0216101184, 0.0393362567, -0.0011964048, 0.0183978025, -0.0137764504, -0.0275236983, -0.0209676549, -0.0299037304, 0.0286480077, -0.0207632352, 0.0051725572, -0.0308090188, 0.0401539356, 0.0150978798, -0.0271002557, -0.0109948777, -0.00257350225, 0.0100238826, -0.00511780148, -0.0113307107, -0.00734817, 0.0304001793, -0.000232368082, -0.0236105137, 0.0231432691, -0.0123528112, -0.00353902183, 0.0161929876, 0.0103451144, -0.0146890394, -0.0122359991, 0.00256985193, 0.00673856027, 0.00436947821, -0.0139443669, -0.0118855648, -0.0206172206, -0.0364451706, -0.0398327038, -0.0215517115, 0.0397743, 0.0141122835, 0.000543447037, -0.0164850149, -0.0282975733, -0.0113599133, 0.0166456308, -0.0119585721, 0.0111700948, 0.0385477766, 0.0245012, 0.00496813701, -0.0141925914, 0.0157403424, 0.0142144933, 0.00557774678, -0.0352478549, 0.0380513296, -0.018207984, -0.00757814292, -0.0230994634, -0.0224277973, -0.0179889631, 0.00465785665, 0.0186606292, 0.0263263807, -0.00974645559, 0.00782636739, 0.00144919206, 0.0139589682, 0.000761555915, -0.00899448153, 0.037584085, 0.0341381468, -0.014221794, -0.0672249869, 0.019317694, 0.00533317262, -0.0286480077, -0.0214056987, 0.0410592258, 0.056945581, 0.0309550334, -0.0107028494, -0.00184343068, 0.02816616, -0.0308090188, 0.00307907676, -0.0117760543, 0.00236725691, -0.0338461176, 0.00318676233, -0.0165434219, 0.00180966489, 0.0410300232, -0.00751243625, 0.031276267, -0.0111335916, 0.0481555201, 0.0318895243, -0.0019054868, 0.0186898317, -0.00998737849, 0.0310134403, 0.024355188, 0.0100238826, 0.0107174506, 0.0307798162, -0.0124185169, -0.00966614764, 0.000139398035, -0.0355106816, 0.0288962331, 0.0132727008, 0.0474546514, 0.0228366386, -0.0110313809, -0.00195841701, -0.0297577158, -0.0206610244, 0.0339337252, -0.0272462703, -0.0216685236, -0.0231724717, -0.0293488763, -0.0174779128, 0.0180911738, -0.02479323, -0.0138567584, -0.000501011615, -0.0148277534, -0.00622021, -0.0337001048, 0.00645018229, 0.0193468966, 0.0242237747, -0.0383433588, 0.0241215639, -0.0110897869, -0.00203142408, 0.0418477021, 1.35747678e-05, -0.0495280549, 0.0276843142, 0.0167478416, -0.0215809159, -0.0261657648, 0.0218291394, -0.0287648197, -0.0272024665, -0.0303125717, 0.0460237116, 0.0208216403, 0.00933031458, 0.0217999369, -0.0155797265, 0.0292028617, 0.0108488631, -0.0265892055, 0.000923996791, 0.0322691612, 0.0103305122, 0.02102606, 0.0565367416, 0.0200477652, 0.0452352352, -0.0116300397, 0.00405919785, 0.0160031691, -0.0402707458, 0.0210698657, -0.00353354635, -0.0159009583, -0.00922080409, -0.00347879087, -0.0108926678, 0.0038547779, 0.0332620591, -0.00932301395, 0.0127981547, -0.0221357699, -0.0051725572, -0.00920620188, 0.0166602321, -0.0226760227, 0.00529301865, 0.0125134261, -0.00106225407, -0.0139151635, -0.0114110187, 0.0264723953, 0.000574018748, 0.0110532837, -0.00990707148, -0.0302249622, 0.0355690867, -0.0310718454, -0.00635892339, 0.0237711295, -0.0194199029, -0.00576756522, 0.0298745278, 0.0426361784, 0.0128930639, 0.0051470045, -0.0136085339, 0.00559964869, 0.00542078121, -0.0170836747, 0.00295131421, 0.0125864334, -0.00962234288, 0.0303125717, -0.00887037, 0.00785557, 0.0193322953, 0.0336124934, 0.010987577, -0.00565805472, 0.00185529434, 0.0160177704, -0.0118198581, 0.00560329901, -0.0435998738, -0.00566535536, -0.00147474452, -0.0245012, -0.00676776329, -0.0176093262, -0.00232892833, 0.0135136247, -0.00785557, -0.00063151191, -0.00632607, 0.0070488411, -0.0173611, 0.0108342618, -0.004621353, -0.0206464231, -0.00300241937, 0.00116446416, -0.00161254557, -0.00119366695, -0.0339337252, -0.00150759774, -0.00906748883, 0.0339045227, 0.0234060939, 0.0303417742, -0.0230556596, -0.0370876342, 0.0315975, 0.0372920558, -0.00485132542, 0.00396428863, 0.0104911281, 0.00861484464, 0.00491703209, -0.0271878652, 0.00235630595, -0.0379929245, -0.00728976447, -0.0192446858, 0.0232600793, 0.000885668036, 0.0154191116, -0.0221357699, -0.0166310295, -0.0181787815, -0.0303709768, -0.00354084698, -0.0185584184, 0.00767305214, -0.0252896789, 0.0366495922, 0.00114256202, -0.0302833673, 0.0222087763, -0.0240777601, 0.00318493717, -0.00372701534, 0.0146160321, -0.00238003326, 0.0613844171, -0.00653049024, 0.0178429484, 0.017215088, 0.0345761888, 0.00668015471, 0.00297869206, -0.0192884896, 0.000649763679, 0.0132727008, 0.00654509151, -0.0228074361, -0.0464033484, -0.00674221059, -0.00178411242, -0.0154191116, 0.0035116442, -0.0151854884, -0.0413512513, -0.00181149, 0.00377447, 0.0255817082, -0.0197703373, -0.0380805321, 0.00623116083, 0.00552664185, 0.00129496446, -0.00773875834, -0.0343133621, 0.0067495117, -0.00269396394, -0.0158425532, -0.0205150116, -0.0217853356, 0.0456148721, 0.00467245793, -0.0214495026, -0.0144262137, -0.0209238511, 0.0180765726, -0.0211720746, -0.00223766943, -0.000929472328, 0.0160323717, -0.0120899854, 0.0258737355, -0.0444759578, 0.0111043882, -0.030604599, 0.0313638747, 0.0251144618, -0.0108853672, -0.00247494248, 0.0113307107, -0.00449724076, -0.00779716438, -0.00475641619, 0.0324443802, -0.0198579468, -0.0257569253, -0.0205296129, 0.0288962331, 0.0221503712, -0.00213545933, -0.00788477249, 0.00506304624, 0.00630051736, 0.00381097361, -0.00627131481, -0.0345469862, -0.00486227637, -0.00851993542, -0.0132215954, -0.000783001771, -0.0191716794, 0.00591723, -0.0530908033, 0.00855643861, 0.00619100686, 0.00806729, -0.014360508, 0.030663006, -0.00762924785, -0.0143240038, -0.00940332189, -0.0231724717, -0.00836662, -0.0136742406, -0.00768035278, 0.0161199793, 0.00425996771, -0.0485059544, 0.0160323717, 0.0327364095, -0.0351602472, -0.00677871425, 0.0134114148, -1.66404989e-05, 0.0236251149, -0.00735182036, -0.0104254214, 0.0128492592, -0.00319588813, -0.00180966489, 0.0124258175, -0.0346053913, 0.0120242788, 0.0154337129, 0.0346053913, 0.00932301395, -0.0190402661, 0.0164704137, -0.0136742406, 0.0247786287, -0.00631146878, -0.00308272708, -0.0144627178, 0.0238441378, 0.00169467856, -0.00341673498, 0.00743577862, -0.0450016111, -0.00732991844, 0.00890687294, 0.0233330876, 0.0235521086, 0.0155213214, -0.00490243034, -0.0231870729, 0.0205734167, 0.00128401339, 0.00273411791, -0.0238441378, -0.0247056223, -0.00384382671, -0.00645748293, 0.00976105686, -0.0439503081, 0.040124733, 0.0236543193, 0.00712914858, -0.00613260129, -0.018981861, 0.0120607819, 0.0265600029, 0.0369124189, -0.0174487103, -0.0134990234, 0.0107904579, 0.0318603218, 0.0132434983, -0.000389675697, -0.0329116248, -0.00278157252, -0.0522147194, -0.0354522765, -0.0303417742, 0.0262971781, -0.00536602596, -0.0160469729, 0.00572376093, -0.019536715, -0.0417308919, 0.000481390918, 0.0114694238, 0.0110970875, 0.0553978309, -0.00661809882, 0.00635162275, -0.0132434983, 0.0144189131, 0.0193322953, 8.19049e-05, -0.00699043507, 0.0161199793, -0.00943252444, -0.00115807599, 0.0242091734, -0.00411760341, 0.0151124811, -0.0347514078, -0.0516598634, 0.027173264, 0.0136085339, 0.0128054554, 0.0159593634, -0.00870975386, -0.00904558692, 0.0190840699, -0.0146525363, 0.038022127, -0.0107831573, 0.00956393778, 0.00654144119, -0.0161783863, -0.0084834313, 0.0477174781, 0.00138166046, -0.01560893, -0.0144189131, 0.00227964832, 0.009658847, -0.0107685551, -0.00369598716, 0.0261073597, -0.0170690734, 0.00991437212, 0.00184616842, 0.0228220373, -0.0193761, 0.0180765726, 0.0123674124, 0.0120096775, -0.0539376847, -0.0102867084, 0.013805653, 0.036357563, 0.0205588154, 0.0104692262, 0.00765114976, 0.0137983523, 0.01408308, 0.0204274021, -0.00053842779, -0.036357563, 0.0117249489, -0.0134771205, 0.00307542644, 0.00453374442, -0.0254502948, 0.0174487103, -0.00879006181, -0.0157549437, 0.00404824689, 0.03232757, 0.00868785195, -0.0237711295, 0.0233330876, -0.00372519018, -0.0422565416, -0.0601578951, -0.0127616506, 0.0191862807, 0.009877868, -0.0112942066, -0.0313930772, -0.008191403, 0.0161491837, -0.0139662689, -0.043278642, -0.00507764751, 0.0136085339, 0.00639177626, 0.00515430514, 0.000778895104, 0.0131850922, -0.0330284387, 0.00302249636, 0.00114986266, 0.0141049828, 0.00419791136, 0.0166602321, -0.0125280283, 0.0465201586, 0.00628226576, -0.00741022639, 0.00695393141, 0.0264431909, -0.0256985184, -0.0312470626, -0.0457608849, 0.00428552, -0.00542808184, -0.0217853356, -0.0103305122, 0.0184416082, -0.012177594, 0.0220335592, 0.0335540883, 0.00436582789, 0.0167478416, 0.0185876209, -0.02031059, -0.00443153456, 0.000437814801, -0.0288962331, 0.000729159, -0.0204858072, 0.00447898917, 0.0149080614, -0.00841042399, -0.0134041142, -0.0102210017, -0.0196973309, 0.00226869737, -0.0527111664, 0.0084834313, 0.00401174324, 0.0036375816, -0.000660714752, 0.0130463783, -0.0221795738, -0.00983406417, -0.0495572574, 0.0102575058, -0.0142144933, -0.0105860373, -0.0174487103, 0.00595008302, -0.00694663078, -0.0162659939, -0.0360363312, -0.0218145382, -0.0194929112, -0.0181057751, -0.0109729758, 0.00644288165, 0.0213326905, -0.00323421694, 0.00522001181, -0.0139881708, 0.032765612, -0.00653779088, 0.00698313443, -0.0170398708, -0.0334956832, 0.0103889182, 0.0199455544, -0.0155797265, 0.0228950437, 0.0387229957, 0.00152949989, 0.032765612, -0.0497324727, -0.0275675021, -0.0273776837, 0.00553394249, 0.0417600945, 0.0151708871, 0.00581502, 0.00396063831, 0.0186022241, 0.0356274918, 0.00539157866, -0.0141341854, -0.0218729433, 0.0178137459, -0.017872151, -0.00653414056, -0.0042964709, -0.00631146878, 0.0204566047, 0.0556022488, 0.0434538573, -0.0305169914, -0.000169513485, -0.0260489527, -0.0273192767, 0.00301519549, -0.0294510871, 0.0244573969, 0.0201207716, 0.00411395309, -0.0245450065, 0.0343425646, -0.0137180444, 0.0146963401, 0.0093522165, -0.0584933348, -0.00296591572, -0.000280164968, 0.0146452356, -0.000965519634, -0.0185438171, -0.0130390776, 0.0322691612, 0.00196936796, -0.0165726244, -0.00577121554, -0.037408866, 0.0305753965, 0.0105495341, 0.0177845433, 0.0191862807, -0.036795605, -0.00333277672, 0.00528936833, 0.00400079228, -0.0196681283, 0.00968805, 0.0263847858, 0.0112796053, -0.000636987446, -0.0201061703, -0.0217853356, 0.0159885678, -0.0101479944, -0.00268483814, -0.00324151781, 0.00662539946, 0.00448263949, -0.00427091867, 0.00345871411, 0.0100603858, -0.0143021019, -0.0123601118, 0.00601944, 0.003203189, 0.0112796053, -0.0045300941, 0.0223255884, 0.0135209253, -0.00515795546, 0.00100567355, -0.0312470626, 0.0186460279, -0.0015486643, -0.00814029761, -0.00244939, 0.0112504028, -0.00502654258, 7.8568246e-06, 0.0349850282, 0.0161783863, -0.00288378261, 0.0261803661, 0.012257901, -0.00428917026, -0.0195951201, -0.0135720298, -0.0118928654, -0.00696853315, -0.0162221901, 0.0060157897, -0.00238550873, 0.0207778364, -0.0317435116, -0.0128638605, -0.00877546053, 0.0236543193, 0.0331160463, 0.0140684787, -0.021361893, 0.0130755818, -0.00296591572, -0.0247348249, -0.0177407395, -0.00574931363, 0.00571281, 0.0121118873, 0.0107977586, -0.00635162275, 0.00504114432, 0.0333496705, 0.059661448, -0.00451184204, 0.00184525584, -0.0239171442, 0.0294072814, 0.00104035193, -0.00559234805, 0.0175801236, 0.0213034879, -0.0061727548, 0.0159593634, 0.0330868438, 0.000711819739, 0.0251290631, -0.00904558692, 0.0146087315, 0.017156681, -0.0163682047, -0.0308674257, -0.00883386564, -0.0249976497, -0.00393873593, 0.0189964622, -0.0111773955, 0.0108269611, 0.00463960459, 0.0225008056, -0.0246180128, 0.00337840617, -0.00208982988, 0.00410665246, -0.0128054554, 0.0173026957, -0.0209092498, 0.0161199793, 0.0340505391, 0.0210990682, 0.0192884896, -0.0179013554, 0.0290130433, 0.00730436575, 0.0128930639, 0.00251692161, 0.0221065674, -0.00781176565, -0.0360655338, -0.0016061574, -0.0104254214, -0.00716200192, 0.00365035771, -0.0152438944, -0.0248662364, 0.0246180128, -0.00423441501, 0.0109072691, -0.00101206172, 0.0304001793, -0.042665381, -0.00221211673, -0.0124769229, 0.00125389791, -0.013805653, 0.0403291546, -0.0127324481, 0.0178867523, 0.0104108201, -0.0207778364, -0.0229972545, 0.0186314266, 0.00456659775, -0.0187482368, 0.00698313443, 0.0338753201, 0.00705614174, -0.0287502185, -0.00979025941, 0.0106298421, -0.00530397, -0.0225592107, -0.00155687763, 0.0105787367, 0.029611703, -0.0106298421, 0.0210698657, -0.00504114432, 0.0211720746, -0.00390588283, 0.0044132825, -0.00440233154, -0.00139078626, -0.0188650489, -0.01408308, -0.0215517115, 0.0149810687, -0.00739197433, 0.00147291936, -0.00805268902, 0.0180911738, -0.0107320519, 0.00732261781, -0.00325611909, 0.00264650933, 0.0195513163, 0.00951283239, 0.024515802, -0.0454688556, 0.00265015964, 0.008191403, -0.00901638344, 0.0175655223, 0.0183247961, 0.00353354635, 0.0186168253, -0.0167770442, 0.00472356286, -0.000412946712, 0.00425631739, -0.0119293695, -0.0136085339, -0.0220189579, -0.00955663621, 0.0195951201, 0.00487687811, -0.00330722425, -0.00581136951, 0.0202521849, 0.0139516676, 0.015054075, -0.000451047323, 0.0160323717, -0.0240047537, -0.00722405827, -0.00978295878, -0.0101114912, 0.00528206769, 0.0142655978, -0.00504479464, 0.0258883368, -0.0126375388, 0.0195951201, 0.0117760543, 0.0204858072, -0.00138804852, -0.036357563, 0.00184525584, 0.00569455791, 0.0181787815, 0.0150102712, 0.01765313, 0.00738467369, -0.0334080756, -0.00914049614, -0.0134260161, -0.0081622, -0.00100476097, -0.0146963401, 0.0196973309, 0.0273338798, -0.0143824099, -0.059223406, 0.00463595428, 0.00562885171, 0.0284727905, 0.0127981547, -0.00685902219, -0.0148788579, 0.0193907, -0.0441255234, -0.0388690084, 0.00841772463, 0.00487687811, -0.0201937798, 0.00950553175, 0.00140082475, 0.0206172206, 0.0122213978, 0.00499734, 0.0199017506, -0.00728611415, 0.0205150116, -0.0189964622, 0.00857834052, -0.0045045414, 0.0127762519, -0.00415410707, 0.023960948, 0.00261365622, 0.00496813701, -0.0151124811, 0.0217269287, -0.00494988495, 0.00952743366, -0.00236543175, -0.0168354493, 0.00379272178, 0.0218875445, 0.0171128772, -0.00549378851, -0.0115059279, 0.011980474, -0.0177991446, 0.0169230588, -0.018923454, -0.0299037304, 0.0130098751, -0.0248808395, 0.0119950753, 0.00261548138, 0.0223109871, 0.000348152884, -0.00759274419, 0.00547918724, 0.0143824099, -0.00416870881, 0.00662905, 0.00191278744, 0.00685537187, 0.0224862043, 0.0117103476, 0.0193468966, 0.0255817082, 0.0221649725, -0.000448537699, -0.0228366386, -0.0223839935, 0.0271440595, 0.0236981232, -0.000317124825, 0.00168464007, 0.0134625193, -0.0262679737, 0.0130974837, 0.0198579468, 0.0164558124, 0.00722770859, 0.00257167709, 0.0174049065, -0.0317435116, -0.0273630824, -0.0106371427, -0.00314295804, 0.00040153935, -0.012535329, -0.0228220373, 0.0143751092, -8.50989672e-05, 0.00343133626, -0.011345312, -0.00228329888, -0.00430012168, -0.0146160321, -0.0210114587, 0.0310718454, -0.0145503264, 0.00556679582, 0.0106809465, 0.0166456308, -0.0218145382, -0.00060139643, -0.0404167622, 0.00783366803, 0.00822790619, 0.00161619589, 0.0341089442, -0.0145284235, -0.00889957231, -0.0143167032, 0.0130244764, -0.0198871493, -0.010987577, 0.0240631588, 0.0321231484, -0.0076584504, 0.018485412, -0.0176677313, -0.033203654, -0.00725691114, -0.00333095156, 0.0127616506, -0.0156965386, -0.00217743847, 0.03907343, -0.0143313045, 0.00411760341, -0.00547188614, -0.00751243625, 0.00467610825, 0.0130536798, 0.0220627617, -0.0254356936, -0.00468705921, -0.0100092813, 0.00264650933, -0.00501194131, 0.00940332189, 0.0237127244, 0.0148788579, -0.0313930772, 0.0288232248, -0.000393782335, -0.00760004483, 0.0114767244, 0.0211574733, 0.0115059279, 0.00248041819, -0.00394968735, 0.0145138223, 0.00527476706, -0.0135355266, -0.0242091734, -0.0115278298, -0.0298015215, -0.0196243227, 0.0183247961, 0.0159301609, -0.0211282708, 0.0129806725, -0.00571281, 0.012535329, 0.0191278756, 0.0116592431, -0.0271586627, -0.03232757, 0.00631876942, 0.00204602559, -0.00828631222, -0.0094763292, 0.0154337129, -0.0328532197, 0.0166164283, 0.0369124189, -0.0164412111, -0.0105349328, 0.00300424453, -0.00230885134, 0.0202083811, -0.0054463339, 0.0183978025, 0.0158133507, 0.00824980903, -0.00501924194, 0.0278011244, -0.00897258, 0.00121648167, 0.00329262274, 0.00489878, 0.00305717462, 0.00586612476, 0.00548283756, -0.00530397, -0.018923454, 0.0124623217, -0.00359377731, 0.000741478929, -0.0278157257, -0.0400079228, -0.00296591572, 0.0368832164, 0.0171274785, 0.0264431909, -0.0152876982, -0.0193907, 0.0195659176, -0.0163536035, -0.0100822886, -0.00155322719, 0.00604499271, 0.00436947821, 0.0393070541, 0.0250998605, 0.00726421177, 0.00327254576, -0.022413196, 0.0273630824, 0.0260781553, -0.0327364095, -0.0112723047, -0.0215955172, -0.00784096867, -0.00920620188, -0.0132215954, -0.0127616506, -0.0199601557, -0.00259905471, -0.000604134228, 0.013309204, -0.00930111203, 0.0115716346, -0.0154045094, 0.0208946485, 0.0164558124, 0.0257423222, 0.0413512513, 0.0174633116, -0.0010850688, -0.00162440923, 0.0117249489, -0.0186314266, -0.0107539538, -0.00735547114, 0.010651744, 0.00274871942, 0.00189636089, 0.00959314, 0.0112504028, 0.0128857633, 0.0353354625, -0.00670935772, 0.0568287708, -0.0278011244, 0.00629686704, 0.0135939326, -0.0262387712, -0.00831551477, 0.0169668626, 0.022909645, 0.00166273792, 0.00752703752, -0.0140246749, 0.013228897, -0.00982676353, -0.00513970386, -0.0161491837, -0.00868785195, 0.0163244, -0.0487395786, 0.00721310684, 0.00811839569, -0.0143167032, -0.0107247513, -0.00352259516, -0.0223255884, 0.00490608066, -0.00172479404, 0.0123090064, 0.0278595313, -0.00736277178, -0.0022285434, -0.00699043507, 0.00167095126, 0.00781176565, -0.0211720746, -0.00401174324, 0.00039264161, -0.00647938484, 0.00361385429, 0.0147255436, -0.00667285407, 0.0187628381, 0.000526564138, -0.000796234293, -0.0139370663, -0.00851263478, 0.0071401, -0.0142144933, -0.0148788579, 0.00152949989, 0.0107393526, 0.0300789475, 0.00347514055, 0.00839582272, -0.0146452356, 0.0010175372, 0.0199455544, 0.0149664665, 0.0234352965, 0.00322509115, 0.0173318982, -0.0156965386, -0.00581502, -0.0130682811, 0.00551204, -0.0148642566, 0.000777982525, 0.0105203316, 0.0202229824, 0.00153771322, -0.00377812027, 0.00404459657, -0.00982676353, 0.0106882472, 0.0392486453, 0.00144645432, 0.028998442, -0.0112138987, 0.00938872062, -0.0276113059, 0.0101260925, -0.00747228228, 0.00222671824, -0.0106955487, 0.00306082494, -0.00125116017, 0.00563980266, 0.00143641583, 0.0142509965, 0.00992897339, 0.00252969796, 0.00109875773, -0.0144627178, -0.0244427957, -0.00450819172, 0.000131412875, 0.0122433, 0.0198725481, -0.0047126119, 0.0107685551, -0.0136888418, 0.00922080409, -0.000259403547, -0.00797238108, -0.0119293695, 0.0043950309, 0.000534321123, 0.0156965386, 0.004205212, 0.00478561921, -0.00415410707, 0.0162805952, 0.00382192456, 0.016105378, 0.00132234208, 0.0155359227, 0.0234498978, -0.0018133152, 0.0206464231, 0.00299694366, -0.00177589909, 0.00374161662, -0.0235521086, -0.00691012712, 0.0117687536, -0.00585882412, 0.00833741762, -0.0191716794, -0.00418331, -0.00990707148, 0.00657064421, 0.00954203494, 0.00260635535, 0.00180601457, 0.0168938562, 0.00458849967, 0.0189088527, -0.0124696223, -0.0030443985, -0.00808919314, 0.0154483141, 0.00594278239, -0.0210406631, 0.00322509115, 0.00703058904, 0.00540252961, -0.00432932423, 0.00463595428, 0.0118052568, -0.00321414, 0.0220189579, -0.00388398068, 0.0145065216, 0.0239171442, -0.00134424423, -0.0130755818, 0.0220627617, 0.0111992974, 0.0223401897, -0.0015441014, 0.0234498978, -0.000915327226, -0.00730071543, 0.0153607056, -0.022194175, 0.0228658412, -0.00384747703, 0.00285092951, 0.0107466532, 0.00958584, -0.0112796053, -0.0044132825, -0.00768765341, 0.015827952, 0.00510685053, 0.0103086103, 0.0034441126, -0.0362115502, -0.00566170504, 0.019536715, -0.00474181492, 0.00489878, 0.00156874128, -0.00106772967, 0.00483672414, -0.00681886822, -0.00152219925, -0.0313638747, -0.0157987494, -0.00676776329, -0.000581319502, -0.0109145697, 0.00361750461, -0.0105276322, 0.0246180128, 0.0116738444, 0.00264285901, 0.00163079728, -0.0267790239, -0.00764384912, -0.000626492663, -0.00811839569, -0.0114621231, -0.00774605898, 0.00118545373, -0.00290568476, -0.0134990234, 0.00989246927, 0.0013506324, -0.013586632, -0.0248370338, -0.0263847858, -0.0232600793, 0.00479657, 0.00161345815, -0.00514335418, 0.00467610825, -0.00128036295, -0.0141049828, 0.00970995147, 0.00870975386, -0.0132654, -0.00986326672, -0.0132361976, 0.0159301609, -0.0111335916, 0.00860024337, -0.00022780514, 0.0176823325, -0.018207984, -0.00979025941, 0.00312653137, 0.0132069942, 0.0145649277, 0.00599388732, -0.00739562465, -0.00293671293, -0.0153899081, 0.00445343647, 9.92441e-06, 0.000791671337, -0.00743942894, 0.00833741762, 0.00362298, 0.014856956, -0.00551934075, -0.0174487103, -0.0260343514, -0.0315682925, 0.0236105137, 0.00240558572, -0.0178429484, 0.0188650489, 0.00755624054, -0.00631876942, 0.00707074301, 0.00869515259, -0.000240011024, -0.0151708871, 0.011484026, 0.0219459515, -0.00389128132, 0.0223109871, 0.00304804882, -0.00805999, -0.00929381, 0.0103305122, 0.0147328442, 0.0104911281, 0.0322983675, 0.00833741762, 0.022909645, -0.00376351876, 0.00205697655, 0.00385842822, -0.00583327189, -0.0147036407, 0.00957123842, -0.0253772866, -0.0194053017, -0.00172935706, -0.000916239806, -0.00509589957, 0.00397523958, 0.00439868122, 0.0119293695, 0.0325319879, 0.00794317853, -0.00624211179, 0.00538427755, 0.00851993542, 0.00965154637, 0.00443518488, 0.0181057751, 0.00784826931, 0.0139954714, -0.0173172969, -0.0295240935, -0.00790667534, -0.000206245211, 0.0125134261, 0.00640272768, -0.015054075, -0.0148423547, 0.0201645773, -0.00261365622, -0.0154775167, -0.00850533321, -0.00677506393, 0.0192738883, -0.00538427755, 0.0204566047, 0.00682251854, 0.00377447, -0.00444248552, 0.00906748883, 0.014141486, 0.000772963278, -0.0100749871, 0.0040044426, -0.0288086236, 0.000730071566, -0.00965154637, -0.0152000897, 0.0167770442, 0.00224679522, -0.00506669655, -1.14073682e-05, 0.00417235913, 0.000922627922, -0.00919160061, -0.0156381335, 0.000777526235, 0.00438042916, -0.0136085339, -0.00477831811, -0.00401904387, -0.00751243625, -0.00919890124, 0.00788477249, -0.000458119903, -0.00543538295, 0.0154629154, 0.00346236443, 0.00132234208, -0.00762924785, -0.0180911738, 0.00132781768, 0.0113161094, -0.0266038068, 0.0205150116, 0.0185000133, 0.0109802764, 0.000136318049, -0.00436947821, -0.00822790619, -0.0129295671, 0.00302067096, 0.00990707148, -0.00221029157, 0.009877868, -0.0123309083, -0.0203835983, 0.0146087315, 0.000665277708, 0.016601827, 0.0234498978, -0.0122433, 0.0229242463, -0.0165434219, -0.00944712572, 0.00141725142, 0.0191862807, 0.00594278239, 0.000643375563, -0.0212596841, 0.0158717558, -0.000772507, 0.000604590517, 0.00140538777, -0.000290659751, 0.0175363179, 0.000128789179, -0.00539157866, 0.0282391682, 0.00500464067, 0.0101406937, 0.0314514823, -0.00791397598, -0.00681156758, 0.0135136247, -0.00112796051, 0.00888497103, 0.0112138987, -0.0265308, 0.00870975386, -0.0057639149, 0.00683347, 0.0129149659, -0.00616180385, -0.00118727889, -0.0152438944, 0.00598293636, 0.00518715847, 0.0111773955, -0.0040044426, 0.00700868713, 0.00579311792, -0.0173611, 0.0071145473, 0.00486227637, 0.00317398598, -0.00399714196, -0.0248224325, 0.0188212451, -0.00209530536, 0.00789207313, 0.0170252696, -0.00326889544, -0.00548648788, 0.00545728486, -0.015827952, 0.00878276117, -0.00213910965, -0.0233768914, 0.00115990115, -0.000186738616, -0.00607054494, -0.00735912146, 0.0233184863, 0.0113088088, -0.0090090828, -0.0117906556, 0.00630416768, 0.019974757, 0.0103232116, -0.0307506137, 0.0084834313, 0.0272754729, 0.00655969279, 0.0147255436, -0.0155797265, -0.0203835983, -0.00109419471, 0.0149372639, -0.0181787815, 0.0112431021, 0.0229972545, 0.0217561331, -0.00162258407, -0.00754894, 0.00119731738, -0.00195841701, -0.00547188614, 0.000470439845, -0.0265892055, -0.000214230371, -0.00698678475, -0.010235603, 0.00265746051, 0.0189964622, -0.0129660713, 0.00827171095, -0.00522366213, -0.0040957015, 0.0278011244, 0.0028272022, -0.00112887309, 0.0227928348, -0.00641367864, -0.00183521735, -0.00455199601, -0.00985596608, 0.0165726244, 0.0144481165, 0.00162623439, -0.0136596384, -0.00126028608, 0.00517985784, -0.0080088852, 0.0130463783, 0.00591723, -0.00563980266, -0.0126375388, 0.0293780789, 0.0200331639, -0.00912589487, 0.00132416724, 0.00686997315, -0.00208252901, 0.0226468202, -0.0273338798, -0.00386207853, 0.0068407706, -0.0271878652, -0.00378907146, 0.00756354118, 0.00857834052, 0.0169960652, -0.00666920375, -0.00203324924, 0.00632972037, 0.0104108201, 0.0100968899, 0.0186022241, 0.0177261382, -0.00120735588, -0.0130682811, -0.00602674065, -0.00119184179, 0.0018525566, 0.0199455544, -0.00369963772, -0.00401174324, 0.0278595313, 0.0237711295, -0.00929381, 0.0237127244, -0.032590393, -0.00559234805, 0.0231724717, 0.00581136951, 0.00125298533, -0.00366678438, 0.0104911281, -0.0080088852, 0.0104546249, -0.00511050085, -0.0119439708, 0.00879736245, 0.0209822562, 0.0276989155, -0.00545728486, -0.0369124189, 0.00684807124, 0.0203251913, 0.00639177626, 0.00829361286, -0.0159739666, 0.00167916459, -0.0158571545, -0.0267352201, 0.00917699933, -0.0181495789, -0.00244208938, 0.0201061703, 0.0122433, -0.0162805952, -0.0140684787, 0.0276113059, 0.0219605528, -0.000482303527, -0.0163390022, -0.00389128132, -0.00484402478, 0.00846152939, 0.0266622137, 0.0137180444, 0.0101333931, 0.0271586627, 0.0115935365, 0.0187628381, -0.0249246433, -0.0236981232, -0.000774788437, -0.0290860515, -0.0178137459, -0.0081622, -0.0229242463, 0.00774605898, -0.0014564927, 0.00602309033, -0.015769545, 0.00336015434, -0.00877546053, -0.00380732305, -0.0145649277, -0.0101041906, -0.0169814639, -0.0052382634, -0.0016636505, 0.0150832785, -0.00440598186, -0.0042125131, -0.00671665836, -0.022690624, 0.0160761755, 0.00456659775, 0.000475002802, 0.00284180348, -0.0213764943, 0.000549835153, 0.0234060939, 0.0180473682, 0.0360655338, 0.00655239215, -0.00531492103, 0.00829361286, 0.0134406174, -0.00155413977, -0.0177699421, -0.00683347, -0.0113015072, 0.00808919314, 0.0122944051, -0.00794317853, 0.00592088047, -0.0181787815, -0.00135154498, -0.00253517344, 0.00118545373, 0.0194929112, 0.0136815412, 0.00684807124, 0.00415775739, -0.00427456899, 0.0018571195, -0.00814029761, 0.00324516813, -0.000289519, 0.000211492603, 0.0172588918, 0.00245851604, 0.0197411347, 0.0173903052, -0.0217269287, 0.0171858836, 0.0162367914, 0.00803808775, 0.0148934601, 0.00782636739, 0.0102502042, 0.00592453079, -0.0029038596, -0.0174779128, -0.00833011605, -0.014002772, -0.00719850557, 0.0303125717, -0.00204967591, -0.0231578704, 0.0174779128, -0.0045045414, -0.0220335592, 0.00575661426, 0.0201937798, -5.64379552e-05, -0.00137983519, 0.0361531451, 0.0182517897, 0.034254957, -0.00455929665, 0.0134990234, 0.00227782317, -0.00413220515, -0.00724596, 0.0197849385, 0.0158863571, -0.0223839935, 0.0142948013, 0.00504114432, -0.026399387, 0.0206172206, -0.000700868666, 0.011484026, -0.0100895893, 0.0025369986, -0.00922810473, -0.00260087987, 0.00242201239, -0.0226760227, -0.00308455224, 0.00528206769, 0.00933031458, 0.00978295878, -0.000860115571, -0.0210844669, -0.00128310081, -0.013228897, 0.00609244732, -0.0285750013, 0.00971725211, 0.00886306912, -0.00520906039, -0.0114256199, 0.00226687221, -0.0189672597, 0.00736277178, 0.00444613583, 0.00841042399, 0.0320939459, 0.0251144618, -0.00958584, -0.00893607549, -0.00525286468, 0.00501194131, 0.0151562858, 0.0142875006, -0.0184416082, -0.018266391, 0.0170690734, 0.000854640035, 0.0226468202, -0.000795778, 0.0168500524, 0.00676046265, -0.00331087457, -0.0064976369, 0.0104619255, 0.0020022213, -0.0129806725, -0.0273192767, -0.00271404092, -0.0136815412, -0.00857834052, -0.00159429375, -0.0149518652, 0.0122725032, -0.00885576755, -0.00891417358, -0.00146744377, 0.0313054696, 0.00192373851, 0.00747593259, 0.00645018229, 0.0253772866, 0.0371460393, -0.00940332189, -0.0290422458, -0.0080088852, -0.0225008056, -0.00400809292, -0.0360363312, -0.00703058904, -0.0133238062, 0.00828631222, -0.00407744944, -0.00315208384, 0.00987056736, -0.000530670746, 0.0189672597, 0.026618408, 0.0102648064, -0.0191132724, 0.0196389258, -0.0304001793, 0.00124294683, 0.00822060555, 0.033816915, -0.0278303269, -0.00656699343, -0.00170654221, -0.0116811451, -0.00994357467, 0.039686691, 0.00806729, -0.00592453079, 0.00974645559, 0.0154629154, 0.00717295287, -0.00719120493, -0.0313930772, -1.83801221e-05, 0.00231250166, 0.00444978615, 0.0184124038, -0.0108780665, -0.00243478874, -0.0143532064, 7.49321498e-06, -0.005990237, -0.00438042916, 0.00716565223, 0.0143313045, 0.00444613583, -0.0142948013, 0.0151708871, 0.00935951713, -0.00707074301, -0.00919890124, 0.0140757794, -0.00497178733, 0.0280493498, -0.00854913797, -0.0223839935, 0.00570915965, 0.000349293608, 0.000532495964, -0.00540252961, -0.00638812594, -0.00349886785, 0.00811839569, -0.0133165056, -0.0180911738, -0.00582597079, -0.0199455544, 0.0121994959, -0.00420156168, 0.0207340326, -0.00241288659, -0.00498638861, 0.0223109871, -0.00613260129, -0.0051725572, 0.0272170678, -0.0127689512, 0.0248224325, -6.736051e-05, -0.00119549222, 0.0135355266, 0.00906748883, 0.0271440595, 0.0139735695, -0.0114621231, -0.00752703752, 0.00593548175, 0.00578581728, -0.0154775167, -0.0177699421, 0.00324334297, -0.00178046199, 0.0278157257, 0.00446073711, -0.0091331955, -0.00454104505, 0.0175071154, -0.0110094789, -0.033641696, 0.00246216636, 0.00990707148, -0.00590992905, 0.0241361652, -0.0191716794, 0.00845422875, 0.0130974837, -0.0144189131, 0.00255525042, -0.00480022049, -0.00404824689, -0.0012064433, 0.0185000133, 0.00987056736, -0.022690624, -0.0142290946, 0.0125134261, 0.00957853906, -0.012455021, 0.0228366386, 0.00115077524, -0.0143021019, 0.022194175, -0.0126010347, -0.0307798162, -0.0320647433, 0.0154775167, 0.00563980266, 0.0058551738, 0.0030188458, -0.0119074667, -0.0227198265, 0.00210808171, 0.0181057751, -0.0167186391, -0.00388033036, -0.0190548673, -0.010987577, 0.0106882472, 0.0106809465, 0.0118198581, 0.00446803775, 0.00254977494, -0.0225738119, 0.0136523377, -0.00451549236, -0.00123838393, -0.00735547114, -0.00371058867, -0.00121100619, 0.000306401897, -0.0230994634, -0.00300789485, -0.00351894484, -0.00816950109, -0.00636257371, 0.00878276117, 0.00267936266, -0.0173757039, 0.00657064421, -0.016879255, 0.0223401897, -0.0154775167, -0.000467702077, 0.0099508753, -0.0156527348, 0.015769545, 0.0109583745, -0.00457754871, 0.00759274419, -0.0167186391, 0.00751243625, 0.0239317454, -0.00628226576, -0.0123820137, 0.0275383, 0.00460310094, -0.010651744, 0.00144371646, -0.0242237747, 0.00730801607, -0.0180181656, -0.00387302949, 0.0146306343, 0.00673125964, 0.00213180901, 0.00621655909, 0.000605503097, 0.0255233012, -0.0101479944, 0.0109437723, -0.0111116888, 0.0180911738, -0.0133968126, -0.00790667534, -0.00737007242, -0.0011097088, 0.0103597157, -0.0262971781, 0.00202047313, 0.0273046754, 0.00290203444, 0.00301519549, 0.0135793313, -0.00645383261, -0.00303162215, 0.00424171565, 0.00936681777, -0.0165580232, -0.0112723047, -0.00981216133, -0.00607419526, 0.0127616506, 0.00100476097, 0.0292028617, -0.000578125415, 0.0095347343, 0.0140246749, 0.0161783863, -0.00728246383, -0.0145211229, -0.00122652017, -0.0120096775, -0.00460675173, -0.0104984287, 0.0179159567, 0.0181495789, 0.00481482176, 0.00690282648, -0.0190986712, -0.0164558124, -0.0124185169, 0.000386481639, 0.0222525802, -0.00354084698, 0.0241507664, -0.0161929876, -0.0285311956, -0.0100530852, -0.00865134783, -0.00182244112, -0.00584422285, -0.0109364716, 0.0176385287, 0.00917699933, 0.040562775, -0.00380732305, -0.00386937917, 0.00633337069, 0.0164850149, -0.0011772404, 0.0166748352, 0.00202959892, -0.00420886232, 0.00395333767, 0.00168281491, -0.0824104771, -0.0236397162, 0.0133384075, 0.021361893, 0.0133019034, 0.0226322189, 6.91286477e-05, -0.00538062723, 0.00266841147, 0.0173757039, 0.00609609764, -0.00538792787, 0.014221794, 0.009658847, -0.0142363952, 0.00457389839, 0.0255087, -0.0202813875, -0.0301373545, 0.00241471175, -0.010651744, -0.00374891749, 0.00283085252, -0.000273776823, 0.00570550933, -0.000147611339, -0.00861484464, -0.0138567584, -0.000259175402, -0.00721310684, -0.00749053434, -0.00732261781, -0.0196243227, 0.0117833549, -0.000928559748, -0.025625512, -0.00165634986, -0.0192300845, 0.00244391453, -0.0130390776, 0.00287830713, -0.00494988495, -0.00831551477, -0.000379637204, -0.0136158345, 0.0119658727, -0.00221029157, -0.00948363, -0.0135720298, 0.00328349671, -0.0184708107, 0.0126886433, -0.0173757039, -0.00979756, -0.013586632, 0.00629686704, -0.00544998422, -0.00650493754, 0.00789207313, 0.0277573206, 0.00772415707, -0.0373796634, 0.000558048429, 0.00183704251, 0.0267060176, 0.0161783863, -0.00946902763, 0.0152876982, 0.00960774161, 0.00916969869, -0.0158863571, -0.0197411347, -0.0130171757, -0.00198214431, -0.00122560759, -0.00151854882, -0.0127105461, 0.0048038708, 0.0205442142, 0.000814486062, 0.0320939459, -0.00272681727, 0.00140721293, 0.00167277642, 0.00612165, 0.00392413465, 0.00929381, -0.000245942851, 0.0195221137, 0.00543173216, 0.0232308768, 0.00218656426, -0.017872151, 0.00577121554, 0.0209676549, 0.0177991446, -0.0233038832, -0.0107320519, 0.0182517897, 0.0210114587, 0.00849073194, 0.00110240804, 0.00535872532, 0.00868055, 0.0197849385, -0.0155067202, 0.00570185902, -0.00411760341, 0.0115497317, 0.00274871942, 0.0295386948, -0.0123674124, -0.0188942514, -0.00919890124, 0.0109510729, 0.0160907768, 0.00487687811, -0.0121410899, 0.000274689432, 0.036357563, -0.00425631739, -0.0128419586, -0.00428917026, 0.0101187918, -0.00063151191, -0.0118271597, -0.000471808744, -0.00478196889, -0.0217853356, 0.00356457429, 0.00989977, 0.00481482176, 0.0156381335, -0.0123893144, -0.0176677313, -0.0109948777, -0.0048294235, 0.00221576728, -0.00509224925, 0.00900178216, -0.00304257311, 0.00312653137, 0.000709082, -0.0119731734, -0.00254247431, -0.0174925141, -0.0147985509, 0.0265454017, 0.00128218823, 0.0101771979, -0.0248516351, -0.0141341854, 0.011900166, -0.00455929665, 0.00671300804, -0.0311594531, 0.0188358463, 0.00417965977, -0.0161345806, -0.0254356936, -0.0015723916, -0.000113161092, -0.0100019807, -0.0142582972, 0.0163974073, 0.0120899854, -0.00225592102, -0.0103962189, 0.0101917991, -0.0135501279, 0.0215225089, 0.0186022241, 0.0198287442, -0.00744307972, -0.00228877435, -0.0140684787, 0.0196097214, -0.0111262901, 0.00377081963, 0.00289655896, 0.00815489888, -0.00654874183, -0.00778986327, -0.0011097088, 0.0181495789, 0.00371058867, 0.0081622, 0.00760004483, 0.00862944592, -0.00957123842, 0.0217269287, 0.0104035195, -0.00624211179, 0.0222233776, -0.010432723, -0.00357735064, 0.00277427188, 0.0076657515, -0.00864404719, 0.00996547658, -0.0116884457, -0.0145941302, 0.00596468477, 0.0163097978, 0.00601213938, -0.0266038068, -0.00153223763, 0.0162951965, -0.0174195077, -0.020865446, -0.0051725572, -0.0142582972, -0.0149810687, 0.0246472154, 0.00293306238, -0.00517620752, -0.0113088088, -0.00922080409, 0.00395333767, 0.0152584957, 0.018485412, 0.0143386051, 0.0249538459, -0.00535872532, 0.0181203764, 0.014002772, 0.00377447, 0.00692837918, -0.0181057751, -0.00397889, 0.0114986273, -0.0201937798, 0.0245450065, -0.0103378128, -0.0159155596, 0.00161893363, -0.00131777918, 0.019974757, -0.00146288087, 0.0234206952, -0.00112704793, 0.0153169008, -0.00129678962, 0.00336928014, -0.011761453, -0.00773145771, 0.0115716346, -0.00677506393, 0.00708534429, -0.00295496453, -0.00732261781, -0.0127032455, 0.00678966567, -0.00326707028, 0.0110970875, -0.0101844985, -0.0355398841, 0.0127689512, 0.0101625957, 0.0308674257, -0.0104400236, -0.00257167709, -0.00266111083, -0.00870245323, 0.00711089699, -0.0164266098, 0.00394968735, -0.0283851828, -0.000378040189, 0.0111554936, 0.00479657, -0.00681886822, -0.00219751545, -0.0107758557, 0.00749783497, -0.00437677884, -0.00751243625, 0.0155797265, -0.0152000897, -0.00470166095, -0.0261657648, -0.0192154832, 0.00467610825, 0.0219605528, -0.0137691498, -0.000266247982, 0.00700503681, -0.0207048301, -0.0045958003, -0.0212158803, 0.015769545, 0.00323056662, 0.0112212, 0.000794865424, -0.00925730728, -0.0217269287, 0.00996547658, 0.00305169914, 0.00219569029, -0.0179013554, 0.012674042, -0.00422346406, -0.0148131521, -0.0145795289, -0.0250998605, -0.00834471826, -0.0236543193, -0.00868785195, -0.0051725572, 0.00362663041, -0.0412052386, 0.0131631903, -0.00526746642, 0.00294218841, -0.00351894484, -0.0127981547, -0.0111408923, -0.00546093518, 0.0234206952, 0.0188796502, -0.0033291264, -0.00327619608, -0.00501924194, 0.0205734167, 0.00669475598, -0.00394603657, -0.00973185338, -0.00431472296, 0.0121556912, 0.00904558692, 0.00426726835, 0.0125207268, -0.0279033352, 0.00862214528, -0.00773145771, -0.00513970386, -0.0162659939, -0.0216831248, 0.0023782081, 0.000258719112, -0.00850533321, 0.00246581668, -0.0113234101, -0.0101333931, 0.0168354493, 0.00758544356, 0.010016582, 0.00757084182, 0.0242529772, 0.000666190288, -0.0116519416, -0.00375621812, 0.0188066438, 0.0186898317, 0.00741752703, 0.00998007786, -0.0157257412, -0.0129003646, 0.00457389839, 0.0053295223, 0.0173465, -0.00643558055, 0.00127671263, -0.0198579468, 0.0119512714, -0.0130463783, 0.0306338016, -0.000918977545, -0.0165434219, -0.00289838412, 0.0145503264, -0.022690624, -0.0230702609, 0.066757746, 0.0134114148, 0.00470531126, -0.0126156369, 0.0143313045, -0.0101844985, -0.00435852725, 0.040562775, -0.0267644227, -0.0110021783, -0.0114548225, 0.0128638605, 0.0141195841, 0.00919160061, 0.00177772425, -0.000855096325, -0.0100238826, -0.0263847858, 0.00591358, -0.0280931536, -0.006088797, 2.3670289e-05, -0.000414543756, -0.0161783863, 0.00671300804, 0.00487687811, 0.00728976447, -0.0017266192, -0.00603039097, 0.0192008819, 0.00835201889, 0.00302067096, -0.0095347343, -0.00912589487, 0.00516890641, -0.0128638605, -0.0391902402, -0.00235813111, 0.0205296129, 0.00134789466, 0.0372336507, 0.00781906676, 0.0248078313, 0.0170252696, 0.00596833508, -0.0111335916, -0.00325246877, 0.00355362333, 0.0279179364, -0.019814143, 0.00873895641, -0.0195513163, 0.00860024337, -0.0157549437, -0.0131777916, -0.00224497, 0.00744673, -0.00906748883, 0.00229059951, 0.0186898317, -0.013447918, 0.00457754871, -0.00137162197, -0.0253626853, -0.00047819686, 0.0101625957, -0.011286906, 0.017930558, -0.012396615, -0.00640272768, 0.0181057751, -0.00442058314, -0.0059719854, -0.0105276322, 0.00664000073, 0.00287283165, -0.0132361976, -0.00322874147, 0.00511050085, 0.00914049614, 0.00573106157, 0.00531492103, -0.00933761522, -0.00945442636, 0.0089506777, -0.000583600951, -0.0142802, -0.0159009583, -0.0116154384, 0.00451549236, 0.00829361286, 0.00555949472, 0.00951283239, 0.0337585099, -0.00174030813, -0.0163974073, -0.00354267214, 0.00594643271, 0.012535329, -0.0124331182, 0.0295824986, -0.00467245793, -0.0189964622, -0.0190986712, -0.0230118558, 0.0119074667, 0.00645018229, 0.00517620752, -0.00229242467, -0.00674221059, -0.0018762839, -0.00146196829, 0.0131996935, 0.0149664665, 0.00271951663, -0.0114183193, 0.00228512404, -0.0112723047, -0.0126229376, -0.00368686137, -0.00587342586, -0.00405189721, 0.0023435296, 0.0175363179, 0.00747228228, 0.00165269943, 0.0184270069, -0.0199017506, 0.00700503681, -0.00301702064, 0.00324699329, -0.00736277178, 0.00485497573, -0.0348098129, 0.0033857068, 0.0204274021, -0.0106590446, 0.016601827, 0.00201864797, 0.0419061072, -0.0128054554, -0.0189672597, -0.0113380114, 0.0205734167, 0.00196206733, 0.00518715847, 0.0119293695, -0.0364159681, 0.00100749871, -0.00867325, 0.0125207268, 0.0224862043, 0.0127689512, 0.00134515681, 0.0294948909, 0.00551204, 0.0102794077, -0.00784826931, 0.0247348249, 0.00277427188, 0.00709629571, -0.00275784521, 0.00809649378, 0.0036375816, 0.0139297657, -0.0124331182, 0.0027103906, -4.72550237e-05, 0.0126375388, 0.005672656, -0.00620925846, 0.0170252696, -0.0012758, 0.0335832909, -0.00481117144, 0.00182882929, 0.0094763292, -0.00822790619, 0.00162532181, -0.0537040643, 0.0110240802, 0.0194491055, 0.00515430514, 0.0362991579, 0.025070658, -0.022909645, -0.0134990234, 0.00551204, 0.0102137011, 0.0130536798, -0.00485862605, 0.0217561331, 0.00775336, -0.00218656426, -0.0297723189, -0.0170252696, 0.0286918115, -0.0012584608, -0.00298781786, -0.00392048433, 0.0208800472, 0.000314387056, 0.0142290946, 0.00460310094, -0.0134990234, -0.000199628936, -0.0014136011, -0.000518807094, -0.00295679, -0.00449359044, -0.0128200566]
08 Aug, 2018
unordered_multimap empty() function in C++ STL 08 Aug, 2018 The unordered_multimap::empty() is a built-in function in C++ STL which returns a boolean value. It returns true if the unordered_multimap container is empty. Otherwise, it returns false. Syntax: unordered_multimap_name.empty() Parameters: The function does not accept any parameter. Return Value: It returns a boolean value which denotes whether a unordered_multimap is empty or not. Below programs illustrates the above function: Program 1: // C++ program to illustrate the // unordered_multimap::empty() function #include <iostream> #include <unordered_map> using namespace std; int main() { // declaration unordered_multimap<int, int> sample; // inserts key and element sample.insert({ 1, 2 }); sample.insert({ 1, 2 }); sample.insert({ 2, 3 }); sample.insert({ 3, 4 }); sample.insert({ 5, 6 }); // if not empty then print the elements if (sample.empty() == false) { cout << "Key and Elements: "; for (auto it = sample.begin(); it != sample.end(); it++) { cout << "{" << it->first << ":" << it->second << "} "; } } // container is erased completely sample.clear(); if (sample.empty() == true) cout << "\nContainer is empty"; return 0; } Output: Key and Elements: {5:6} {3:4} {2:3} {1:2} {1:2} Container is empty Program 2: // C++ program to illustrate the // unordered_multimap::empty() #include <iostream> #include <unordered_map> using namespace std; int main() { // declaration unordered_multimap<char, char> sample; // inserts element sample.insert({ 'a', 'b' }); sample.insert({ 'a', 'b' }); sample.insert({ 'g', 'd' }); sample.insert({ 'r', 'e' }); sample.insert({ 'g', 'd' }); // if not empty then print the elements if (sample.empty() == false) { cout << "Key and elements: "; for (auto it = sample.begin(); it != sample.end(); it++) { cout << "{" << it->first << ":" << it->second << "} "; } } // container is erased completely sample.clear(); if (sample.empty() == true) cout << "\nContainer is empty"; return 0; } Output: Key and elements: {r:e} {g:d} {g:d} {a:b} {a:b} Container is empty Learn C++ Online – Master everything from basics to advanced concepts. Apply your knowledge with practical exercises and boost your skills. Take the Three 90 Challenge: finish 90% in 90 days for a 90% refund. Start now and level up your C++ programming!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum/Algorithm for Dynamic Time out timer Calculation/Difference between Round trip time (RTT) and Time to live (TTL)/Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms/Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm/Round Robin Scheduling Algorithm with Different Arrival Time/Selfish Round Robin CPU Scheduling/Find the order of execution of given N processes in Round Robin Scheduling/Calculate server loads using Round Robin Scheduling/set::lower_bound() Function in C++ STL/Implementation of lower_bound() and upper_bound() in List of Pairs in C++/Difference between std::set::lower_bound and std::lower_bound in C++/Difference between std::set vs std::vector in C++ STL/std::minmax() and std::minmax_element() in C++ STL/std::rotate vs std::rotate_copy in C++ STL/std::bitset::to_ullong and std::bitset::to_ulong in C++ STL/std::upper_bound and std::lower_bound for Vector in C++ STL/std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++/std::string::append vs std::string::push_back() vs Operator += in C++/Vector push_back() in C++ STL/vector :: cbegin() and vector :: cend() in C++ STL/unordered_multiset cend() function in C++ STL/unordered_multiset bucket() function in C++ STL/unordered_multiset emplace_hint() function in C++ STL/unordered_multiset end() function in C++ STL/unordered_multiset size() in C++ STL/unordered_multiset emplace() function in C++ STL/unordered_multiset find() function in C++STL/unordered_multiset erase() function in C++ STL/unordered_multiset clear() function in C++ STL/unordered_multiset swap() function in C++ STL/unordered_multiset bucket_size() function in C++ STL/unordered_multiset bucket_count() function in C++ STL/unordered_set bucket_count() function in C++ STL/unordered_set cbegin() function in C++ STL/array::cbegin() and array::cend() in C++ STL/array::rbegin() and array::rend() in C++ STL/multimap rbegin in C++ STL/vector rbegin() and rend() Functions in C++ STL/multiset rbegin() and rend() function in C++ STL/map rbegin() function in C++ STL/map upper_bound() function in C++ STL/Set upper_bound() in C++ STL/multimap upper_bound() function in C++ STL/multimap empty() function in C++ STL/multimap value_comp() function in C++ STL/multimap swap() function in C++ STL/multimap::swap() in C++ STL/multimap equal_range() in C++ STL/unordered_set equal_range in C++ STL/set vs unordered_set in C++ STL/unordered_set count() function in C++ STL/unordered_set bucket() function in C++ STL/unordered_set emplace() function in C++ STL/set::emplace() in C++ STL/multiset::emplace() in C++ STL/multiset find() function in C++ STL/multiset cbegin() and cend() function in C++ STL/multimap::cbegin() and multimap::cend() in C++ STL/multimap::begin() and multimap::end() in C++ STL/set::begin() and set::end() in C++ STL/unordered_multimap begin() and end() function in C++ STL/unordered_multimap empty() function in C++ STL
https://www.geeksforgeeks.org/unordered_multimap-empty-function-in-c-stl?ref=asr10
PHP
unordered_multimap empty() function in C++ STL
unordered_multiset clear() function in C++ STL, What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, jQWidgets jqxTreeMap width Property, Round Robin Scheduling Algorithm with Different Arrival Time, Difference between Flow and TypeScript, set::begin() and set::end() in C++ STL, unordered_multiset emplace() function in C++ STL, jQWidgets jqxTree destroy() Method, unordered_set bucket_count() function in C++ STL, jQWidgets jqxTree collapseAll() Method, Find the order of execution of given N processes in Round Robin Scheduling, jQWidgets jqxScrollView buttonsOffset Property, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Vector push_back() in C++ STL, jQWidgets jqxListBox enableHover Property, Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm, std::rotate vs std::rotate_copy in C++ STL, Selfish Round Robin CPU Scheduling, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxSlider buttonsPosition Property, std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++, std::upper_bound and std::lower_bound for Vector in C++ STL, Difference between Round trip time (RTT) and Time to live (TTL), jQWidgets jqxSlider rtl Property, Difference between std::set::lower_bound and std::lower_bound in C++, jQWidgets jqxTooltip opacity Property, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, unordered_multiset erase() function in C++ STL, multiset find() function in C++ STL, set vs unordered_set in C++ STL, jQWidgets jqxToolBar height Property, PHP, std::minmax() and std::minmax_element() in C++ STL, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, unordered_set emplace() function in C++ STL, unordered_multimap empty() function in C++ STL, unordered_set bucket() function in C++ STL, map rbegin() function in C++ STL, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, map upper_bound() function in C++ STL, Node.js date-and-time Date.transform() Method, unordered_multiset size() in C++ STL, TypeScript Optional Parameters, jQWidgets jqxToolBar theme Property, Difference between std::set vs std::vector in C++ STL, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, Steps to Diagnose and Resolve a Slow Network, How to use Optional Chaining with Arrays and Functions in TypeScript ?, Calculate server loads using Round Robin Scheduling, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, jQWidgets jqxScrollView showButtons Property, set::emplace() in C++ STL, Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms, jQWidgets jqxScrollView disabled Property, multimap::cbegin() and multimap::cend() in C++ STL, jQWidgets jqxSplitter destroy() Method, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, set::lower_bound() Function in C++ STL, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, jQWidgets jqxTree collapseItem() Method, multimap upper_bound() function in C++ STL, std::string::append vs std::string::push_back() vs Operator += in C++, unordered_multiset swap() function in C++ STL, unordered_multiset cend() function in C++ STL, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), Set upper_bound() in C++ STL, jQWidgets jqxSortable opacity Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, multiset cbegin() and cend() function in C++ STL, multimap rbegin in C++ STL, vector :: cbegin() and vector :: cend() in C++ STL, multimap swap() function in C++ STL, jQWidgets jqxSlider height Property, jQWidgets jqxSwitchButton onLabel Property, unordered_multiset bucket_size() function in C++ STL, unordered_set cbegin() function in C++ STL, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, jQWidgets jqxToolBar tools Property, multimap empty() function in C++ STL, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTree width Property, multimap::swap() in C++ STL, multimap equal_range() in C++ STL, Implementation of lower_bound() and upper_bound() in List of Pairs in C++, jQWidgets jqxTree clear() Method, TLS Handshake?, multiset rbegin() and rend() function in C++ STL, Algorithm for Dynamic Time out timer Calculation, Adhoc TCP, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, jQWidgets jqxTabs position Property, Differences between Wireless Adhoc Network and Wireless Sensor Network, jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, unordered_multimap begin() and end() function in C++ STL, std::bitset::to_ullong and std::bitset::to_ulong in C++ STL, unordered_multiset emplace_hint() function in C++ STL, multimap::begin() and multimap::end() in C++ STL, unordered_multiset bucket_count() function in C++ STL, unordered_multiset find() function in C++STL, unordered_multiset bucket() function in C++ STL, Impact of Three-way Handshake and Slow Start Algorithm, array::rbegin() and array::rend() in C++ STL, multimap value_comp() function in C++ STL, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, multiset::emplace() in C++ STL, unordered_set equal_range in C++ STL, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, unordered_set count() function in C++ STL, vector rbegin() and rend() Functions in C++ STL, array::cbegin() and array::cend() in C++ STL, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, unordered_multiset end() function in C++ STL, How to Sort an Array Having Optional Properties in TypeScript ?
GeeksforGeeks
[-0.0275325775, 0.01125162, -0.0168232042, 0.0172298905, 0.0323179066, -0.0195344388, -0.0207273811, 0.0159556102, -0.013379938, 0.00403634924, -0.00389400939, 0.0230861548, -0.0107907103, -0.0120514343, -0.0358425081, -0.0225167964, 0.013142705, 0.017921254, -0.0202800278, -0.04026182, -0.00592404557, 0.0282781683, -0.0224896837, -0.00816759188, 0.00165724161, 0.00748300506, -0.00250619673, 0.00650018267, 0.00454470562, 0.0118006449, 0.0024926404, 0.00813370105, 0.00809303299, -0.0194802135, -0.00525979325, 0.0194531027, 0.0319654457, 0.0235199519, 0.00426680408, -0.00102772703, 0.00215373631, 0.0146813309, 0.0155082569, -0.00105145026, -0.0237775203, -0.000815911917, -0.0179890357, -0.0290102, -0.0254449286, 0.0351647027, 0.0495342389, -0.00576476054, 0.0439219847, 0.00463282038, 0.0153862508, 0.0167960934, 0.0164571889, -0.00198936765, -0.0046667112, -0.0277901459, -0.0367372185, -0.0274919104, 0.0356256105, -0.0111973956, -0.0248484574, -0.013854404, -0.0262718555, 0.0318298824, 0.0227336939, -0.0164436325, -0.030121807, 0.0510254167, -0.0379030481, -0.0121395485, -0.044166, 0.0150066782, -0.0611654334, -0.0145999938, 0.0167283118, 0.0208087191, -0.0175145697, -0.00601555, 0.00170723, -0.0207680501, -0.00430408353, 0.0332939513, -0.00367372157, -0.0315045342, 0.0460096374, 0.0717934668, -0.034025982, -0.0239673052, 0.000923513959, 0.0180568174, -0.0121124368, 0.0283323918, 0.0350291394, 0.0201444663, -0.00307894475, 0.040072035, -0.00149626215, -0.0245773327, -0.00614433317, 0.044057548, -0.00808625482, -0.00803880766, 0.0458198488, 0.0238046311, -0.00578170596, -0.00188939099, 0.0288204141, 0.000145940619, -0.0417529978, 0.0277901459, -0.000282773195, 0.0228421446, -0.0228828117, 0.0130817024, 0.0274783541, -5.15769862e-05, -0.0161725096, 0.0366829932, -0.0214051902, -0.00478532771, -0.0560683124, 0.0402889326, -0.00946898386, 0.00731355278, 0.0131630395, -0.00854038633, -0.00539535517, -0.0252144728, -0.0186939556, -0.0474465899, -0.0140984152, 0.0107229296, -0.000962487946, 0.0357069485, -0.0256347153, -0.0164165199, -0.0606774092, 0.000504967291, -0.00488699879, 0.0317756608, -0.0100383423, -0.0228421446, 0.00309250085, 0.0334024, 0.0212831851, -0.02423843, -0.0324263535, -0.00669674715, 0.0424579196, 0.00681875274, 0.0276681408, -0.0116650825, 0.039123103, -0.0145999938, -0.0176908, -0.0285221785, 0.0160776153, -0.0228285883, 0.0244011041, -0.0093673123, -0.0374963619, 0.0148168923, 0.0191277545, 0.0216627568, -0.0411023, 0.0482599586, -0.000208320183, 0.0291186497, -0.00557158515, -0.0054156892, 0.0211747345, -0.00838449, 0.0447895825, 0.012315779, 0.0196835566, 0.00840482488, 0.000306708302, -0.0129258065, 0.0148168923, 0.0274919104, 0.0078558, -0.0148304487, 0.0168638732, -0.0151015716, 0.0280070435, -0.0041753, -0.0185855068, 0.0285221785, 0.0356527232, 0.0477448255, 0.0289830882, 0.0316672102, -0.022028774, 0.0346224532, -0.0174061209, 0.0341344327, 0.0169316549, -0.00198936765, -0.0364118703, 0.0240757558, 0.022977706, 0.0141797522, -0.021120511, -0.00944864936, 0.0379572734, 0.00700176088, -0.0277901459, 0.00587321, -0.000911652343, 0.0243333224, 0.0109262718, 0.00706276391, -0.0558514148, 0.0124852313, 0.0093876468, -0.010777154, -0.0049852808, -0.00632734178, 0.00818792544, -0.0338090844, -0.0478261635, -0.05219125, 0.0255127084, 0.00393806677, 0.0177856926, 0.00552075, 0.0207409374, 0.0323721319, -0.0168909859, -0.0278172586, 0.0264616404, -0.0184635017, -0.035056252, -0.038092833, 0.00776090659, 0.0247264504, 0.0271530058, 0.0497240275, -0.0344597809, -0.00383978477, 0.0244688839, 0.0198326744, 0.0191006418, -0.0297964588, 0.00780835329, 0.00825570617, 0.0316129848, 0.020212248, 0.026014287, -0.0177043565, -0.00593421282, 0.0249297936, -0.000679079327, -0.0218525436, -0.00763890101, -0.0385808572, -0.00927919708, 0.0290102, -0.0169045422, 0.0100451205, -0.0205240399, -0.000344623229, 0.0294982232, 0.0105331428, -0.0211069547, -0.0316943228, 0.0553362817, 0.01160408, -0.00284340628, 0.0124310069, 0.0138069578, 0.00161911489, -0.0394213386, 0.0116379708, -0.0277630333, -0.0489919931, 0.0195751078, 0.00192667043, -0.0263531916, -0.021988105, 0.0471483544, 0.00250450219, -0.00982822198, -0.0054360237, -0.0597555898, -0.0283595044, -0.0318027698, 0.00667641312, -0.0216220897, 0.0110550551, 0.0116108581, 0.03410732, -0.0120988805, -0.0159149412, -0.0528148338, 0.00807947665, -0.00732033094, -0.0234657284, -0.0122412201, -0.0310165137, -0.0111228358, -0.0142475329, -0.0176230185, -0.0296608973, 0.0200089049, -0.060080938, -0.00825570617, -0.03307705, -0.0308538396, 0.00642562378, -0.0185719505, -0.00809303299, 0.0318841077, -0.00178771967, -0.0267734323, -0.0248213448, 0.00210967869, 0.00717121316, 0.0028739078, 0.0371981263, 0.0187617373, -0.0293084364, -0.0157116, 0.0222050045, -0.0208493862, -0.0730406344, -0.0182059351, 0.0370354541, -0.0192362033, -0.0173383392, 0.0152100213, -0.0383910686, -0.00944864936, -0.0158200487, 0.0246586706, 0.0262854099, -0.015630262, -0.0221507791, 0.0234928392, 0.0132172639, 0.0323992409, -0.0094418712, -0.0221236665, -0.00367711065, -0.0191413108, 0.0537366532, 0.00114041264, -0.00219440483, 0.00549363717, -0.0155624812, 0.0210120603, -0.00389739848, -0.0437593125, -0.00847260561, -0.00398551347, 0.0299049076, -0.0159284975, 0.0479617231, 0.026529422, -0.0186261758, -0.0145728812, -0.014450876, -0.0243739914, -0.0218525436, 0.0263938606, -0.00747622689, 0.0233708341, -0.030040469, -0.00268920488, 0.0112245074, -0.0597555898, 0.00114295445, 0.0151829086, 0.0323721319, -0.0287661888, -0.0177179128, 0.000969266053, 0.0278443694, 0.0045480947, 0.0114210723, 0.0128648039, -0.013183374, -0.0139628537, 0.0236555133, -0.0239944179, 0.0290102, -0.0326161422, 0.0258109439, -0.00178771967, -0.0024299433, 0.0102552418, 0.0158336051, -0.0276952516, -0.005388577, -0.0411836393, -0.0464163199, 0.0337548591, -0.00968588237, 0.0262583, -0.0255262647, -0.0254855976, -0.00662218826, 0.00930631, 0.0234657284, -0.0108246, 0.0141797522, 0.0175416823, 0.000202707088, -0.0140984152, 0.0323992409, -3.26460067e-05, 0.00625278288, -0.0549295954, 0.0247535631, 0.00702887354, -0.00870983861, -0.0119023155, -0.024631558, -0.00527334958, 0.00891995896, 0.00428036042, 0.01432887, -0.0271258932, 0.00982822198, -0.0129529191, -0.0280070435, 0.0339988694, 0.0126343491, 0.0234115031, 0.0191006418, -0.0115362993, -0.0473110266, -0.00552075, 0.00893351529, -0.0273834597, -0.0236555133, 0.0452504903, 0.0479074977, 0.0254584849, -0.0260685124, 0.00452098204, 0.0266649835, -0.0213238522, -0.00340090366, 0.0233572777, 0.0185583942, -0.0200766847, 0.0257973894, -0.0325076915, 0.00406685052, 0.029606672, -0.01967, 0.0459011868, -0.00499205897, 0.0183008276, 0.00393467769, -0.0253771469, 0.0283595044, -0.0175959058, 0.00896062702, 0.00593082374, 0.0220016614, 0.0040973518, 0.0349478, -0.0142339766, -0.0320467837, -0.00192158693, -0.0298506822, 0.0284408424, -0.00595793594, 0.0261362921, 0.00405668328, -0.0241299793, 0.00422613556, -0.0390959904, -0.00742200203, 0.0249569062, -0.00499205897, -0.0304471552, -0.0154133635, -0.0034585176, -0.0343513303, 0.0423223563, -0.00627989508, 0.00403634924, 0.00446336856, -0.0205104835, -0.0213645212, -0.0110821677, -0.0468501188, -0.000599013176, 0.0394484513, -0.0216085333, -0.00274004065, -0.00848616194, 0.00217237603, 0.048232846, -0.00350088044, -0.0241842046, 0.0473652519, 0.0068051964, -0.0340802073, -0.00170045183, 0.0365474299, -0.0183143839, -0.0115769682, -0.0153998071, 0.0329414904, 0.00803880766, -0.00978077576, 0.0118548693, -0.000634174503, 0.0297964588, 0.0134951659, 0.00354154897, 0.0144237634, 0.00678147329, 0.0197784491, 0.0311791878, 0.0327245891, 0.0193446521, 0.031070739, -0.0201580226, -0.00105992297, 0.0253500342, -0.0495613515, -0.00731355278, -0.00438880967, -0.0130749242, 0.00638156617, -0.00669335807, -0.021513639, -0.00977399759, -0.00191141979, -0.0228692554, -0.0142339766, -0.0127427988, -0.0118752038, 0.0137120644, 0.0199140124, -0.0130071435, -0.00696787052, 0.0302844811, -0.0127495769, -0.00870306, -0.0020486759, 0.0283052791, -0.0209713932, 0.0030281092, -0.0242113173, -0.0109059373, 0.0119497627, -0.0362491943, -0.0390959904, 0.0118955383, -0.0312063, 0.0076660132, -0.000947237248, 0.00868272595, 0.00674758293, 0.0217712075, -0.0233572777, 0.0231403802, -0.00503950566, -0.0142204212, -0.00705598574, -0.0019995349, -0.00803880766, 0.0230861548, -0.0134002725, -0.0289559755, 0.0377945974, 0.020171579, 0.0165249687, -0.0135087222, -0.0115769682, 0.0184499454, 0.00256381044, 0.0140984152, 0.00066552317, -0.0046938234, -0.0123293353, -0.0300133564, -0.00992311537, -0.0330499373, 0.0136103928, 0.0287119653, 0.0216763131, -0.00610366464, -0.000996378367, 0.0276545845, -0.0253635906, 0.000887081784, -0.0237368513, -0.00824215077, -0.00309758447, 0.0139086293, 0.0031246969, 0.0170807727, 0.0165114123, 0.0188837424, 0.0196428876, 0.00280782138, 0.00761856651, 0.0178805869, -0.00447353581, -0.0570443571, -0.0076660132, 0.0344597809, 0.00228590891, 0.0140713025, 0.00827604067, 0.00419563428, 0.0206596013, -0.0263531916, -0.0196293313, -0.0255940463, -0.0526792705, -0.00807269849, 0.0239673052, -0.00118108117, -0.00840482488, -0.0317214355, 0.010539921, -0.002526531, -0.00856072083, 0.0204969272, -0.0179348104, 0.00411090814, -0.0423494689, 0.0354087129, 0.0132782673, -0.0128919166, 0.0105195865, -0.00875728484, 0.0295253359, 0.0138611821, 0.0230319295, 0.00277901464, 0.0422952473, -0.00902840868, -0.0129393628, -0.0207273811, 0.0177721363, 0.0171078853, -0.018043261, -0.0472839139, 0.0172027778, 0.000477431313, -0.00864883512, 0.00382622867, -0.0128715821, -0.0108584911, 0.00400584796, -0.0130545907, 0.00558514148, -0.0220423304, -0.0425392576, -0.0091504138, -0.02320816, 0.00109211879, -0.00218762667, -0.0200224612, -0.0391502157, -0.00376861496, -0.000272394274, 0.0170807727, 0.00297557889, -0.00483616302, -0.00677130604, -0.0201444663, -0.0268005449, -0.00590710063, 0.0203884766, -0.00965199154, -0.0173518956, -0.0071102106, -0.0152100213, 0.0283323918, -0.0257838331, -0.000690517307, -0.00696109235, 0.0108110448, 0.0159827229, 0.00954354275, -0.0490191057, -0.0124716749, -0.0233166106, 0.0102891317, 0.0221236665, -0.00778801879, -0.000635021774, -0.00301285856, 0.015237133, -0.0215678643, 0.00112939824, 0.0185312815, 0.00506661786, -0.0296337847, -0.0195886642, -0.000866747519, 0.034188658, 0.00225540763, -0.0074491147, -0.00396179035, 0.0110686114, 0.0186668448, -0.00862850156, -0.0228285883, 0.0108042667, 0.00551736075, -0.00888606813, -0.00431764, 0.00414818758, 0.00278748712, -0.0678892955, -0.00511406455, 0.00701531721, -9.763354e-07, 0.00458198506, 0.0253093671, -0.0245231092, -0.00106754829, -0.0148575604, -0.00862172339, -0.00542585645, -0.0275868028, 0.0192497596, 0.0150880152, 0.00291457633, -0.033321064, 0.00937409047, 0.0244282149, -0.0183143839, -0.0103298007, -0.00522590289, 0.0125326775, 0.0337548591, -0.0204155892, 0.0169994347, 0.0141933085, -0.00894029345, 0.00662896642, 0.00267903786, -0.0200360175, 0.0157116, 0.0242248736, 0.0234115031, 0.00782190915, -0.0289017521, 0.0128851384, -0.00704920758, 0.0423223563, -0.0175010134, 0.00262820208, 0.00297388458, 0.00639851158, -0.0273021236, 0.00532079628, 0.0311791878, -0.00477854954, -0.0192090906, -0.0162131768, 0.0217034258, 0.0197784491, -0.0079439152, -0.000524454284, -0.0034500449, 0.0352189243, 0.0130342562, -0.00566308945, -0.0414547622, -0.0176094621, -0.00429730536, -9.58993041e-05, 0.0079778051, -0.0214051902, 0.0321823433, 0.0206189323, -0.00300946948, 0.00812014472, -0.0090758549, 0.0198597871, 0.0110076088, 0.0187752936, -0.00190125266, 0.00561564276, 0.00597149227, 0.0318298824, 0.0240350869, 0.000212238767, -0.039123103, -0.0146135492, -0.0566647835, -0.00403296, -0.0298777949, 0.0139628537, 0.0127631323, 0.00155895937, 0.00809303299, -0.0323450193, -0.0313418619, 0.0434068516, 0.0230997112, 0.0297151208, 0.0498867, -0.00922497269, 0.0219203252, 0.00779479695, 0.00674080476, 0.00694075832, -0.00432102848, -0.00782868732, 0.018951524, 0.00240113633, 0.00783546548, 0.0148846731, -0.0155082569, 0.0252144728, -0.0363305323, -0.0223541223, 0.0167283118, 0.0332126133, 0.0196293313, 0.00618161261, -0.0310436264, 0.0129190283, 0.00801847409, 0.0111770611, 0.0243739914, 0.0100112306, -0.00669335807, 0.0094215367, -0.0314503126, -0.00659846514, 0.0610027574, 0.00824892893, -0.00203003618, -0.0243333224, -0.0127224643, 0.0111906175, -0.0188295189, -0.0170807727, 0.0300675817, -0.0082353726, 0.0397738, 0.0207273811, 0.0175145697, -0.0134748314, 0.00357205048, 0.00521573564, 0.0170265473, -0.041373428, -0.0230319295, 0.0143966507, 0.0479617231, 0.000483785756, 0.00356527232, 0.00812014472, 0.0343784429, 0.0116786389, 0.0142746456, -0.00954354275, -0.0438948721, 0.00576814963, 0.00679164054, -0.0158471614, -0.00986889098, -0.00422274647, 0.00759823248, -0.0141119715, 0.00231302134, 0.00535807572, 0.00348054618, 0.000538010441, -0.00475143688, 0.0240622, -0.00546991406, -0.0379572734, -0.0597013645, -0.0147219989, 0.00605960749, 0.0214458592, -0.0271665622, -0.0179348104, -0.0107839322, 0.0202393588, 0.00551058259, -0.0344597809, -0.00372794643, 0.0195615515, -0.0076931254, 0.0119158719, -0.00514795491, 0.0178670306, -0.0154404761, 0.0107297078, -0.0132037085, 0.00211137324, 0.0136510618, 0.00463620946, 0.00678825146, 0.0407769531, 0.01705366, 0.0112787317, 0.0272207856, -0.020564707, -0.0045480947, -0.00943509303, -0.0508898571, -0.0134002725, 0.00698820502, -0.014410207, 0.00889284629, 0.0257024951, 0.00260109, 0.00816759188, 0.0271665622, 0.0118752038, 0.00159284985, -0.0190599728, -0.0301760305, -0.004263415, 0.0215814207, -0.0240622, -0.0137730669, -0.0250924677, 0.0252280291, 0.0254855976, 0.00744233653, -0.0108313784, -0.013854404, -0.0187346246, -0.0119700972, -0.0599182658, 0.00506322877, 0.00502594933, 0.00849293917, 0.0104924748, 0.00463959854, -0.0453047156, 0.00740844617, -0.0480159484, -0.0109262718, 4.51695778e-05, -0.00911652297, -0.0309622884, -0.00367711065, -0.0034025982, -0.0042363028, -0.0188566297, -0.0292270985, -0.0173654519, -0.0141526395, -0.0229370371, 0.00320264488, -0.0030552214, 0.0011692195, 0.0365203172, -0.00883184373, 0.0406413935, -0.0124920094, -0.018436389, -0.0256753825, -0.0255127084, 0.0099570062, 0.0174332336, -0.024590889, 0.0283052791, 0.043108616, 0.00522251381, 0.0224490147, -0.0481515117, -0.0377945974, -0.0152506894, 0.0244282149, 0.00879795291, 0.0189108551, 0.0108178221, -0.015237133, 0.00256550498, 0.0284137297, -0.00788291171, -0.0291457623, -0.0217983183, 0.0194124337, -0.0153998071, 0.00223507336, -0.0124242287, -0.0100857895, 0.032128118, 0.0487750955, 0.024157092, -0.0348664671, 0.00338226394, -0.0294439979, -0.00817437, -0.00719154719, -0.0364389792, 0.0194259901, 0.00776768476, -0.0332939513, -0.02147297, 0.0432441793, -0.0171214417, 0.0181110408, 0.0286035147, -0.0560683124, -0.00820826, -0.00321789552, -0.00365338731, -0.0153455827, -0.017094329, -0.00960454531, 0.0446811318, 0.0131562613, -0.0076660132, 0.00487683155, -0.0544415712, 0.00231810473, 0.00910296757, 0.012437785, 0.0141661959, -0.00125902914, -0.00181144301, 0.00559869781, 0.0200631302, -0.0160505027, 0.00729321875, 0.00404312741, 0.00465993304, -0.0100247869, -0.026448084, -0.0369541161, 0.0147491116, -0.00533096306, -0.0177043565, 0.00537502067, -0.0128512476, 0.0140035218, -0.00334159564, 0.00554108387, 0.00217915419, -0.0123090008, 0.00449387, 0.0227743629, 0.00356188323, -0.00102433795, -0.00984177832, 0.00885217823, 0.0191955343, 0.000399695156, 0.0227608066, -0.00306708319, 0.0361407436, -0.00582915265, -0.012159883, -0.00649340451, 0.00343479426, -0.0103094662, 0.00952998642, 0.0172705594, 0.00767956953, 0.00320433942, 0.0524081476, 0.00373811345, 0.010973718, -0.0157793798, -0.0115837464, -0.0148304487, 0.01705366, -0.00795069244, 0.0154540325, 0.00850649551, 0.0165656377, -0.0238588564, -0.019737782, -0.0246451143, 0.00478193862, 0.0389333144, -0.00187414035, -0.0274376851, 0.000249094592, -0.00417868886, -0.0348664671, -0.00830315333, 0.00370422308, 0.007401668, 0.0160911717, 0.0157929361, 0.0114346277, 0.00723221572, 0.0275596902, 0.0511338674, -0.0096452143, 0.00471415743, -0.00449048076, 0.0159013849, 0.00262481323, -0.018477058, -0.00361271901, 0.0235199519, -0.00159708608, 0.00830315333, 0.00818114728, 0.00384317385, 0.0125326775, -0.0111567266, 0.00671030348, 0.0353273749, -0.0164978579, -0.0173383392, -0.0269089937, -0.02250324, 0.0114210723, 0.013027478, -0.0118548693, 0.00816759188, -0.0119565409, 0.0204698145, -0.0356256105, -0.0298506822, 0.0158064924, -0.0201037973, -0.00197920064, 0.0193175394, -0.0266649835, 0.0170807727, 0.0296608973, 0.0226388015, 0.0115973018, -0.0176094621, 0.0317756608, 1.22455629e-06, 0.00303149829, -0.00950287376, 0.00678486237, -0.0133053791, -0.0159827229, 0.0243468788, -0.000622312888, 0.012200552, 0.00448709168, -0.0164707452, -0.0345953405, 0.0182330459, -0.00213509658, 0.00651712809, -0.013739177, 0.0109669408, -0.0267056525, -0.0133392699, -0.0180703718, -0.00618839078, -0.0146271056, 0.00710343244, -0.0250517987, 0.0132579328, 0.00918430462, -0.0176094621, -0.020212248, 0.0185583942, 0.00273156795, 0.0185990632, -0.000843024231, 0.0327245891, -0.00390756549, -0.0216763131, 0.00795069244, 0.0134544969, -0.0233301651, -0.0201173536, -0.000778632413, 0.0064222347, 0.0362491943, -0.00707632, 0.00403296, 0.00452776, -0.013698508, -0.00658490881, -0.00395501219, -0.0204020329, 0.00765923504, -0.0252280291, -0.0331041627, -0.0270174444, 0.0268141013, -0.0198191181, -0.0213916339, 0.00530385086, 0.0146135492, -0.00195547729, 0.0177450255, -0.0091300793, 0.00567664579, 0.0164165199, 0.0232488289, 0.0116786389, -0.0390959904, -0.0190870855, -0.0135765029, -0.0093876468, 0.014803336, 0.0231946036, 0.00112770381, 0.00576814963, -0.0285492912, -0.00544280186, -0.00498867, -0.00634089764, -6.05658897e-06, -0.00752367359, -0.0195479952, -0.0008383643, 0.0151015716, 0.00873695, -0.00334498449, 0.0236012898, 0.0109940525, 0.0202529151, -0.00637817709, -0.010187461, 0.0134273851, -0.0243197661, -0.00117853936, -0.0266514271, -0.0207002684, 0.00931986608, 0.0173654519, -0.0143424263, 0.0145864375, -0.00178263616, 0.0226116888, -0.00189108553, 0.00590371154, -0.0193446521, -0.0035551053, -0.0134002725, -0.0115024094, 0.00422952464, 0.0142068649, 0.0148440041, -0.0105128083, -0.0104179159, -0.0106483707, -0.0195208825, -0.0283866171, -0.00778124062, -0.00694753649, 0.00327381468, 0.0133867161, -0.0108178221, -0.0543060116, -0.0111838393, 0.00488699879, 0.0311520752, 0.0273563489, -0.00869628228, -0.0148168923, -0.000289974909, -0.0257973894, -0.0457927361, 0.0122276638, 0.00840482488, -0.0249704625, -0.00657474156, -0.00694075832, 0.0216898695, 0.00637139939, 0.0110957241, 0.0221778918, 0.00393128907, 0.00290779816, -0.0174332336, -0.00312130782, -0.00209781714, 0.0144373197, -0.00819470361, 0.0151286842, -0.00699498272, 0.00605282933, -0.012790245, 0.0104518058, -0.00319078309, -0.0129800318, 0.0102959098, -0.00264684181, 0.00937409047, 0.0378759354, 0.0156031502, 0.00520895794, -0.00384317385, 0.0221372228, -0.0169045422, 0.00985533465, -0.00715087866, -0.0247400068, 0.00676791696, -0.024197761, 0.00669335807, 0.0221236665, 0.0208900552, -0.00077693793, 0.015630262, -0.0040973518, 0.0106687043, -0.00681536365, 0.010065455, 0.0160369482, 0.00843193661, 0.00425324775, 0.00799814, 0.0317756608, 0.0186532885, 0.0404244959, -0.00315689272, -0.0121869957, -0.0097197732, 0.0143017573, 0.0164029635, -0.0125123439, -0.0106958169, -0.00898774, -0.0120446561, -0.0103975814, 0.00473449193, 0.001850417, -0.00856072083, 0.0148304487, 0.0140035218, -0.0256076027, -0.00495139044, -0.0142339766, -0.00471415743, -0.00729999691, -0.0140984152, 0.0039279, 0.0159556102, -0.000178348346, 0.00256719952, 0.00802525133, 0.0100383423, -0.00886573456, -0.0241028685, -0.00252483645, 0.0162945148, -0.0154404761, 0.00784902181, 0.00473110285, 0.00114380172, -0.0164707452, -0.00216390332, -0.0418614484, 0.00696109235, 0.0257431641, -0.00986211281, 0.0152506894, -0.01397641, -0.00901485234, -0.0212154035, 0.000838787935, -0.0185855068, -0.0201580226, 0.00560208643, 0.0102213509, 0.0133392699, 0.0246993396, -0.021079842, -0.0121259931, -0.00780157512, -0.00605621841, 0.0334566236, -0.0103908032, -0.0174332336, 0.0357069485, -0.00622567, -0.0130003653, -0.0157387108, -0.0266378708, 0.0325348042, 0.0094418712, 0.0321010053, -0.0104450276, -0.00325178588, 0.00136154762, -0.0128105795, 0.00620533619, 0.0240350869, 0.0387977548, 0.00586304301, -0.0402889326, 0.0155760376, -0.00963843614, -0.00134883879, -0.000215733715, 0.00683230907, 0.0168909859, 0.00776768476, -0.00295355031, 0.00784902181, 0.0141119715, 0.000897248916, -0.0142068649, -0.024631558, -0.0466874428, -0.0230725985, 0.0196293313, 0.00775412843, 0.00556819607, -0.0160911717, -0.0275054667, -0.00545296865, 0.0134070506, 0.00873695, -0.0173925646, -0.0195208825, 0.0113871815, 0.021594977, -0.0157929361, -0.0088386219, 0.00680180732, -0.0243062098, 0.0150202345, 0.0311249625, -0.00199106219, 0.0129190283, -0.00369405583, 0.000935375632, -0.00748300506, -0.0269225501, -0.00982822198, 0.00480566174, 0.00738811167, 0.00676452788, 0.0107161514, -0.0130207, 0.00530385086, 0.00980788749, 0.00468026707, 0.00835737772, 0.00663913367, -0.00564953312, 0.00811336655, -0.0394755639, -0.00770668173, 0.0127834668, -0.0275190212, -0.014410207, -0.0196428876, 0.0103230225, 0.0268276576, 0.0155489249, 0.0133663826, -0.0234792847, -0.00946220569, 0.0195479952, 0.00232149381, -0.00111245306, -0.00406685052, 0.021594977, 0.0116379708, 0.0125394557, 0.000751943735, 0.00629006233, 0.0117938668, -0.016186066, 0.0205240399, 0.0461180843, -0.0225167964, 0.0076931254, -0.0022367679, 0.00725932838, -0.0088182874, -0.00622228114, -0.0029586337, -0.0102010164, 0.0247806758, 0.000625278277, 0.00916397, -0.00325178588, 0.017012991, 0.00184533349, 0.00696109235, 0.0142475329, 0.0185041707, 0.0378759354, 0.00164961629, -0.00223846221, 0.00136917306, 0.000568088202, 0.0105670337, -0.0125326775, -0.00139797991, 0.00840482488, 0.00222490611, -0.00810658839, 0.0140848588, 0.00201986916, 0.00869628228, 0.02558049, -0.00457859598, 0.0457385108, -0.0168774296, 0.019181978, 0.0211611781, -0.0121937739, -0.0102077946, 0.00618161261, 0.015277802, 0.00132596272, 0.00537502067, -0.0107297078, 0.00520895794, -0.00556480698, -0.0205511507, -0.0488293171, -0.0088182874, 0.00573087, -0.0297151208, 0.00856749807, 0.00275020767, -0.0186939556, -0.00197920064, 0.00236216234, -0.00239944179, 0.0194124337, 0.00376522588, 0.0252009165, 0.0190735292, 0.0102416854, 0.011407516, 0.0093402, -0.00289932545, 0.0131223714, -0.0110618332, 0.00477177138, -0.00266717607, 0.00404990511, -0.00724577205, 0.0218661, 0.00723899389, 0.0115498556, 0.00727966242, 0.00995022804, -0.0213916339, -0.0189379677, 0.0258922819, -0.00806592, 0.00640867883, -0.00208934443, 0.00554108387, 0.0121395485, 0.00432102848, 0.0268141013, -0.00308741746, 0.0148440041, 0.0029366049, 0.0108991591, 0.00340598729, -0.000991294859, 0.0172705594, -0.0228014756, -0.00540213333, 0.0021181514, -0.00012370004, -0.0201851353, -0.00965199154, 0.0258109439, 0.0382012837, -0.00198767311, 0.0064222347, -0.00645951414, -0.0207544938, 0.00700853905, 0.0222321171, 0.00954354275, 0.0258109439, -0.0219745487, -0.0106958169, -0.0381199457, 0.0160098355, 0.00513101, -0.0143153137, -0.0231674928, -0.0105263647, 0.0138476258, 0.0280070435, -0.00559530873, -0.00194192119, 0.00943509303, 0.00805914216, 0.00265192543, -0.00891318079, -0.013895073, -0.00736099947, -0.000266675255, 0.0233979467, 0.0177992489, 0.000539281347, -0.00125479279, 0.00458876323, -0.00222490611, -0.00931308791, 0.0019995349, -0.0142610893, 0.00876406301, -0.00789646804, 0.028142605, -0.00414140942, -0.00195547729, -0.0118548693, -0.00262820208, 0.00493105641, 0.0176094621, -0.00565292221, 0.0100518987, 0.0225710198, -4.73671607e-05, 0.0312876366, 0.00992989354, -0.0143559827, 0.0167689808, -0.0209578369, 0.0029586337, -0.000833704369, -0.0122141074, -0.0018860019, -0.0177856926, -0.00802525133, -0.010187461, 0.00927919708, 0.0159149412, 0.00218762667, 0.00139797991, 0.0183279403, 0.000438457326, 0.0157522671, -0.0151151279, -0.0167825371, 0.0176908, 0.00814725738, 0.0128241358, 0.00396179035, -0.00034081054, 0.00691364612, -0.00443286728, 0.00201478554, 0.000978585915, 0.0109804962, 0.0093673123, 0.00929275341, -0.00375505863, 0.00959776714, 0.00984855648, -0.00781513099, -0.0241028685, 0.0215814207, -0.0113600688, 0.00637478847, 0.00880473107, 0.0312876366, 4.36339178e-05, -0.00517167849, 0.00976044126, -0.0132104866, 0.0198055618, -0.000183220094, 0.0028739078, 0.00265362, 0.0126817953, -0.0271530058, -0.0166334193, 0.00605960749, 0.010892381, 0.00330601051, 0.0209849495, 0.0173112266, -0.0298777949, -0.0171214417, 0.0185855068, -0.00500222621, -0.00367711065, 0.00671708165, 0.00229099253, 0.00550041534, 0.00198936765, 0.010777154, -0.0297964588, -0.0129529191, -0.00473449193, -0.0177043565, -0.0043108617, 0.00362966419, 0.00272817886, 0.00623922655, 0.00426002592, -0.0100112306, 0.0109127155, -0.00815403555, 0.0184228327, -0.00185211154, -0.0166334193, -0.00220118277, 0.00275020767, -0.00217745965, 0.00697464868, 0.00260278443, -0.000498189183, 0.00727288425, -0.00754400762, -0.0120243216, -0.015630262, -0.0209442805, -0.00976044126, 0.00463620946, -0.0107839322, -0.00468704524, -0.00605282933, -0.00390417664, -0.00468026707, 0.0156573746, -0.0248891246, -0.0123903379, -0.00413124217, 0.00591048924, -0.0149117857, 0.0166063067, -0.00903518591, 0.0229234807, 0.0058189854, -0.0334024, -0.00857427623, 0.0198733434, 0.0148711167, -0.00436508609, -0.0145728812, 0.00285865692, -0.0115701901, 0.0176365748, 0.00435153, -0.0186397322, -0.00458537415, 0.0154947005, 0.0124581186, 0.027003888, -0.0108246, -0.022543909, -0.00146660802, -0.0196835566, 0.0215000827, -0.0124648968, -0.0250111315, 0.00927919708, -0.0106619261, -0.00616805675, 0.0132104866, -0.00286543509, 0.0166876428, -0.0113261789, 0.0134477187, 0.0337277465, 0.00665268954, 0.022069443, 0.00772023806, 0.0165249687, -0.0184499454, 0.008289597, 0.0165520813, 0.00845227111, 0.0178263616, 0.0139086293, 0.0170401037, 0.000541823101, -0.00750333909, 0.00300777494, -0.00682214182, 0.00605960749, 0.000417487638, -0.0148846731, -0.0155218132, 0.00736099947, -0.00506322877, -0.021120511, -0.00890640263, 0.00836415589, 0.0123225572, 0.0121869957, 0.0155760376, -0.0221914481, 0.000657050521, -0.00207070471, 0.00579526182, 0.000826502626, 0.00732033094, 0.0101806829, 0.000721866, -0.00646290323, -0.0387977548, 0.00875728484, 0.0331312753, 0.00651712809, 0.00645612506, -0.0157793798, -0.00592743466, 0.0239401944, 0.00462265359, -0.0234115031, 0.00835737772, -0.0169316549, 0.0204562582, -0.00582576357, 0.023682626, 0.0105060302, 0.00497511402, -0.010065455, -0.0100586768, 0.00551736075, -0.00994345, 0.0169316549, -0.0194666572, -0.025973618, 0.0100315651, -0.00493783457, 0.00734066544, 0.0126207927, 0.00227065827, -0.00151574914, -4.40178337e-06, 0.00734744314, -0.000404566905, -0.0306911655, -0.00916397, 0.00634089764, 0.00868272595, -0.00106500648, -0.0164843015, 0.00291796518, 0.00267056515, -0.0285764039, -0.000249094592, -0.00337040238, 0.00830315333, 0.0229234807, 0.0119158719, -0.0113194007, -0.00472771376, -0.0217440948, -0.0065882979, 0.01705366, -0.00341954362, 0.0278172586, 0.0187888499, 0.0112448419, -0.0194124337, -0.0205511507, -0.0110550551, -0.0233030543, 0.00192836497, 0.0137730669, -0.0179348104, 0.0112177292, -0.0186668448, -0.00134968606, 0.0148440041, -0.00879117567, 0.032128118, 0.00781513099, -0.0259329509, 0.0193988774, -0.0199546795, -0.0150880152, 0.00669674715, 0.0209442805, -0.00188769645, 0.00214018021, -0.0238046311, 0.0156167066, -0.00544619048, -0.00588337705, 0.0142068649, 0.0129664754, 0.0232217163, 0.0218118746, 0.0115498556, 0.0328872651, 0.00203342526, 0.0215678643, 0.0149388975, -0.0130545907, 0.00543263461, 0.0140441908, -0.0115905236, 0.00551736075, 0.0107025951, -0.0358696207, 0.00346699, -0.0220016614, 0.00556819607, 0.0375505872, -0.012078546, 0.00487005338, 0.00147677516, 0.013739177, 0.00625617197, 0.00476838229, 0.0133324917, 0.00933342241, 0.00426002592, 0.0039787353, 0.0054156892, -0.00283323927, 0.00941475946, -0.00662557734, -0.0264616404, 0.0120514343, 0.0117193079, 0.0103162443, 0.00430408353, 0.00267734332, -0.00715765683, -0.0150202345, -0.00654424028, -0.00152422173, -0.0046701, -0.0232759416, -0.0111025022, -0.00782190915, -0.0114414059, 0.00302302558, 0.0159962792, 0.00143525936, -0.0231810473, -0.00470060157, 0.00940120313, 0.00700853905, 0.0158336051, -0.0183279403, 0.0108313784, 0.0292542111, -0.00707632, 0.00893351529, -0.0125801247, -0.00723221572, 0.0115362993, 0.0101332357, -0.0242790971, 0.00535468664, 0.0356256105, 0.00820826, -0.0100857895, 0.00186905672, -0.00155895937, 0.00618161261, -0.0118548693, -0.0020825665, -0.0230454858, 0.0106754825, 0.00301624741, -0.0130410343, 0.00484294118, 0.00325517496, -0.012119215, -0.000479973096, 0.00153523614, -0.0204291455, 0.0135900592, 0.0165249687, 0.00984177832, 0.0230048187, -0.0325890295, -0.0122615546, 0.00408040686, -0.00917752646, 0.0270852242, 0.011448184, -0.00472771376, -0.00952320825, -0.0122479983, 0.0103094662, 0.0088589564, 0.0195073262, -0.019737782, -0.00696787052, 0.00396517944, 0.0327517, 0.0269225501, -0.00180127588, -0.000276206934, 0.0233708341, 0.00285187899, 0.0241435356, -0.0270987805, 0.0101671265, 0.000679079327, -0.0112855099, -0.0146271056, 0.0152642457, 0.00898096152, 0.0050056153, 0.0151286842, 0.00946220569, -0.0071169883, 0.0228828117, -0.0103975814, 0.0175823513, 0.0160369482, 0.00841160212, -0.0160369482, -0.0114617404, 0.0206731576, 0.000746860169, 0.011726086, 0.00930631, -0.0169994347, 0.030555604, 0.0062968405, -0.0104314713, 0.0279257074, -0.0153049147, -0.0164300762, 0.026529422, 0.00126411277, -0.0051038973, -0.0141119715, 0.0172027778, -0.00844549295, 0.00149795657, 1.58530383e-06, -0.0128105795, 0.00592065649, 0.00328228739, 0.00791680254, -0.0125055658, -0.0341344327, 0.0172163341, 0.00613416638, 0.00422613556, 0.00256889383, -0.0213102978, -0.00862850156, -0.00646290323, -0.0145322122, 0.00449048076, 0.00718476949, -0.00277223648, 0.0176094621, 0.00708309794, -0.00965199154, -0.013420607, 0.0245366655, 0.00337209692, 0.00249602948, -0.0119158719, 0.00075618003, 0.00365677639, 0.000546906667, 0.00365677639, 0.00979433209, -0.0021181514, 0.0247942321, 0.00621889252, 0.00715087866, -0.00539874425, -0.0242113173, -0.0051242318, -0.0477448255, -0.0179348104, -0.0230997112, -0.00633073086, 0.00571392523, -0.000529537851, 0.00126241823, -0.0215814207, -0.0167418681, -0.0156031502, 0.0113736251, -0.00519540161, 0.0108788256, -0.0107907103, -0.00109550788, 0.00223337882, -0.0032568695, -0.0201173536, -0.00697464868, 0.00624600472, -0.00097519689, 0.0149253411, 0.00570375798, 0.00496494677, 0.00931308791, -0.0130139217, 0.0160776153, 0.0182872713, 0.0257973894, 0.0133528262, 0.0147626679, -0.00893351529, -0.000824384508, 0.00406685052, 0.00523945922, -0.0220152177, -0.0145457685, -0.0243197661, 0.00441592187, 0.00789646804, -0.0122751109, 0.0236961823, -0.00629006233, 0.00490733283, -0.00461926451, -0.0233030543, 0.0286035147, 0.0188566297, 0.00428374903, 0.00341615453, 0.0150337908, -0.00476160413, -0.0105602555, -0.00830993149, -0.00643579103, -0.0116583053, 0.0235335082, 0.000891318079, 0.0318569951, 0.0253907032, -0.00428374903, 0.00232996652, 0.0297964588, -0.016145397, 0.0123767816, -0.00824215077, 0.00643918, 0.00841160212, 0.00392451091, -0.016660532, -0.0191548653, 0.00146321894, -0.0061307773, 0.0145457685, 0.000841753324, -0.00807947665, 0.00415157666, -0.0177450255, -0.016660532, -0.0112448419, -0.00761856651, -0.00900807418, -0.00278409803, 0.0500764847, 0.00919108186, 0.0128783602, -0.00048802208, -0.00879117567, -0.00503950566, 0.00457181782, 0.00459893, 0.0212967414, 0.012986809, -0.0135358339, 0.0230454858, 0.00233166106, -0.0244282149, 0.0145186568, -0.0112448419, 0.0137188425, -0.00542246737, 0.00746267056, 0.00242655422, -0.0160233919, -0.0213916339, 0.000402660575, -0.0163758509, 0.0183008276, -0.00891995896, 0.00274004065, 0.00797102693, -0.024631558, 0.00356188323, -0.0194937699, 0.0178941432, 0.00286374055, 0.0176230185, 0.00775412843, -0.00730677461, -0.0125394557, -3.17457925e-05, -0.0288746394, 0.000755756395, 0.00328906532, 0.000423630263, 0.0203478094, 0.0256753825, -0.00788969, -0.00221812818, 0.00830315333, -0.00816081371, 0.0302844811, 0.0088454, -0.00602910575, -0.0114414059, 0.0281154942, -0.00226218556, 0.0150744598, -0.0157116, 0.0300946943, 0.00742200203, -0.00301624741, -0.0131901521, 0.0195344388, 0.0279528201, -0.0381470583, -0.0202393588, 0.000901485211, -0.00560886459, -0.0146948863, -0.0128783602, -0.0229234807, 0.0191277545, -0.00908941124, -0.00297388458, 0.00882506557, 0.0285221785, -0.0182194896, 0.00310944626, -0.00260109, 0.0171892215, 0.0207273811, -0.00439558784, -0.0242926534, -0.0120107653, -0.0227743629, -0.00662896642, -0.0125055658, 0.0106280362, -0.0017123135, 0.00696109235, -0.00255364319, -0.0101603484, 0.0275461338, -0.00176738552, 0.0151693523, 0.0174603444, 0.000868442061, 0.00346190645, 0.0189379677, -0.0233843904, -0.00236894051, 0.025973618, 0.0132986009, -0.00583254127, -0.00873695, 0.0117803104, 0.00209781714, -0.0248755701, 0.0448438041, -0.00275020767, 0.00616466766, 0.00556819607, 0.0152913583, 0.0106958169, 0.00521573564, -0.0246044453, -2.05328288e-05, 0.00750333909, 0.0143153137, 0.0192904286, -0.0225167964, -0.00199275673, 0.00231471588, -0.0107703758, 0.000302048371, -0.0243739914, 0.002575672, 0.00472771376, 0.00734744314, 0.00467687799, 0.00162843475, 0.00129207235, -0.00928597525, -0.011129614, -0.00738133397, 0.00361949694, 0.0199411232, 0.0102687981, -0.0263667479, 0.00255025411, 0.00100824, -0.0171214417, 0.00300946948, -0.00104128325, -0.00897418335, -0.00106415921, -0.0186126195, -0.0226659141, 0.00277054193, -0.017446788, 0.00441253278, -0.0273563489, 0.00602910575, 0.0148846731, -0.006513739, 0.0254584849, 0.00856072083, -0.0127970232, 0.0249975752, -0.00701531721, 0.026570091, -0.00220287731, -0.0167825371, 0.00232657744, -0.00494800135, 0.0386079662, 0.01365784, -0.0196022205, 0.0074491147, 0.00805236399, 0.00067314849, -0.0315858722, -0.0127292424, 0.00651035, 0.00374150253, 0.0310436264, 0.0103094662, -0.0145322122, -0.00589693338, 0.0244011041, -0.00199106219, -0.0175416823, 0.0116583053, -0.00430747261, -0.00425663684, 0.013379938, -0.00428036042, 0.0202529151, -0.013142705, -0.0164843015, 0.0093673123, -0.0101942383, -0.0165114123, 0.00606299657, 0.0111973956, 0.0122141074, -0.0155353695, -0.00332295592, 0.00989600271, 0.00192497589, 0.00158098817, 0.0235335082, -0.000933681091, -0.0146135492, 0.0121124368, -0.0230997112, -0.0155218132, 0.00416852161, -0.00439558784, 0.0102281291, 0.0166740865, 0.0188430734, -0.020090241, -0.0210662857, -0.00492427824, 0.0202800278, -0.0063951225, -0.02013091, -0.0101671265, -0.00223168428, 0.0123496698, 0.0105331428, 0.00860138889, 0.00281629409, 0.00489038788, -0.0171214417, 0.00492088916, -0.0138069578, 0.00761178881, -0.0113736251, -0.0118142013, 0.0148846731, -0.0114210723, -0.0196293313, -0.00887929, 0.0091097448, -0.0127631323, -0.0228557, 0.00392112182, 0.00122683321, -0.0137188425, -0.00134544971, -0.0227472503, 0.0100586768, -0.0216763131, -0.0307725016, -0.00948254, 0.00841160212, 0.0094079813, 0.00299082976, -0.0185583942, 0.00365677639, 0.00231810473, 0.0149524538, 0.0368185528, 0.0035686614, -0.00623244839, 0.0229099244, 0.0255533773, -0.00894707162, -0.00418207794, -0.0317756608, 0.010065455, -0.0231539365, -0.0203884766, 0.00484294118, 0.00408718502, -0.0167147554, 0.00666624587, -0.00282476656, 0.0204562582, -0.0180297047, 0.00625956059, -0.0119497627, 0.0124987876, -0.0224490147, -0.0120988805, -0.0124106724, 0.00385673, -0.00772701623, -0.0182330459, 0.0114685185, 0.0107297078, -0.00987566914, -0.00891318079, 0.0105602555, 0.00543263461, -0.0203206968, -0.0102213509, 0.0137527334, -0.00413802033, -0.027708808, -0.0102281291, -0.0146135492, 0.0041447985, 0.00405668328, 0.00903518591, -0.020212248, 0.00653068395, 0.0354358256, 0.00438880967, 0.00561903184, -0.00791680254, 0.0031026681, -0.0187617373, -0.0109466063, -0.0135358339, 0.0230997112, 0.0132172639, 0.000409438653, -0.000805744785, -0.0147626679, -0.0206596013, -0.0260685124, -0.0132511547, 0.0118074231, -0.00394145586, 0.0191006418, 0.000373218267, -0.00968588237, -0.0130410343, -0.00382622867, -0.000384444458, -0.0183279403, 0.0060121608, 0.00863528, 0.0163216274, 0.0320196711, -0.00156743196, -0.00225879648, 0.00230285409, -0.00102942158, 0.0102077946, 0.0132037085, -0.00599860447, -0.000970113324, -0.00602571713, 0.00791002437, -0.0825299546, -0.0116311926, 0.00647984864, 0.00869628228, -0.0126479054, 0.0114820749, -0.00726610608, -0.0236284025, 0.00583254127, -0.0135493902, -0.00781513099, 0.00348732434, 0.0104789184, 0.0169316549, -0.0209171679, -0.00450742617, -0.00389739848, -0.0139628537, -0.0129800318, 0.00330262166, -0.0137120644, -0.010539921, -0.000279172353, -0.0065882979, 0.00570714707, 0.00399568072, 0.00969266053, -0.0051038973, -0.0112922881, 0.00669335807, -0.00524623739, -0.00240452541, 0.00929953158, 0.017487457, -0.00894707162, -0.0350833647, -0.00273665157, -0.0207544938, -0.0004295611, -0.00571053615, -0.00484971935, -0.0115024094, -0.00424646959, -0.00950287376, 0.0124445623, 0.0067984187, 0.000308826449, -0.00547330314, -0.00552752754, 0.00191141979, -0.0140577471, 0.0158742741, -0.0140170781, 0.00241977605, -0.0150473472, -0.00245536095, 0.00730677461, 0.0131088151, -0.00112346746, 0.0207816064, -0.00376522588, -0.0191413108, -0.00681875274, 0.0163622946, 0.0149117857, 0.0255127084, -0.0115091875, 0.0145186568, 0.0148846731, -0.00290271454, -0.00685942126, -0.0335379615, -0.00833026599, -0.00197750609, 0.0141933085, 0.0231946036, -0.0171214417, 0.000758721784, 0.00974688493, -0.000998072908, 0.0160776153, 0.00275359675, -0.00327720377, 0.00526657142, 0.00464298762, 0.00464976579, 0.0355713852, -0.00206562108, 0.0067069144, 0.00176738552, 0.00180297042, 0.0121869957, -0.0209985059, 2.0347492e-05, 0.00935375597, -0.00692381291, -0.00821503811, 0.000497341913, 0.0279528201, 0.00554786203, -0.00753045175, -0.00330601051, 0.00731355278, 0.00830315333, 0.021988105, -0.0191277545, 0.00873695, -0.0108178221, 0.012986809, 0.0196022205, 0.0316672102, -0.0110008307, -0.0114752967, 9.23513944e-05, 0.00424308097, 0.0159691665, 0.00260786782, -0.00453792745, -0.007164435, 0.0182330459, -0.00351443677, -0.0190193038, 0.000436762813, 0.00110228593, -0.00399907, -0.00714410096, 0.020605376, -0.0142882019, -0.00167842314, -0.00308402837, -0.00871661678, 0.0143830944, -0.00612399913, -0.00878439751, -0.0152913583, -0.0353002623, -0.00911652297, -0.00530046178, -0.00864205696, 0.0118277567, -0.0184228327, -0.00273495703, 0.018477058, -0.007164435, -0.00424646959, -0.00547330314, -0.0129596973, 0.028223943, 0.0168096498, 0.00661879918, -0.027044557, -0.0103840251, 0.0218389872, 0.00583593035, 0.0204562582, -0.0369541161, 0.00262311869, -0.00611383189, -0.0102823535, -0.0169858783, -0.000815488282, 0.000743047509, -0.00692042382, -0.00323653524, -0.00142932846, 0.00659507606, 0.00870306, -0.0225845762, -0.00831671, -0.0111635048, 0.0268412139, 0.00514456583, 0.0261634048, -0.0129732536, -0.000915888639, -0.0142204212, -0.00421935739, -0.00401262566, -0.0120717678, 0.0194937699, -0.00631039636, 0.00248925155, -0.0228421446, 0.0236961823, 0.0359238461, -0.00402957108, 0.00824892893, -0.00824215077, -7.45589277e-05, 0.00145813532, 0.0151422406, 0.0226388015, 0.0109127155, 0.0191684216, -0.00386011903, 0.00339073665, 0.00232149381, 0.00407023961, -0.00870983861, -0.00608333061, 0.00367372157, -0.0223947912, 0.0178805869, -0.00177755265, 0.0093402, -0.00791680254, -0.0124852313, 0.0192633159, -0.0127563542, -0.0213916339, -0.016186066, -0.00637478847, -0.00242147059, 0.0168503169, 0.0104111377, -0.00530385086, -0.000748131075, -0.00393467769, -0.0112041729, 0.00264853635, 0.0299591329, 0.0277901459, 0.00889962446, -0.00390756549, 0.0256482717, 0.023723295, -0.00557158515, 0.0085810544, -0.0299862456, 9.51579495e-05, -0.00563936587, -0.0158607177, 0.0296608973, -0.0117803104, 0.00345173944, -0.00844549295, -0.00129291962, 0.0195751078, -0.0200224612, 0.0290373135, 0.0133189354, 0.0309622884, -0.00877761934, -0.00366355455, -0.00791002437, -0.00963165797, 0.00355171622, -0.0237910766, 0.0109804962, 0.0088386219, -0.0247535631, 0.00857427623, -0.00826248433, 0.00168011768, 0.00131240662, -0.0117531978, -0.0264209732, 0.00635445397, 0.00559530873, 0.00878439751, 0.00402957108, -0.00129207235, -0.0203749221, -0.00990955904, -0.00849971734, -0.0225167964, 0.00539535517, -0.00929953158, -0.0128715821, 0.00463282038, 0.000836246123, -0.00622905931, -0.0101129021, 0.00782190915, 0.00995022804, -0.00684586493, -0.00713054463, 0.0185990632, -0.00845904928, 0.000357967569, -0.0221643355, -0.0142746456, -0.015155796, 0.0153320264, -0.00163944915, 0.0091097448, 0.0148711167, 0.00609349785, -0.0117938668, -0.0146271056, 0.00392451091, -0.0179483667, 0.0179348104, 0.0220152177, -0.00453792745, -0.0143424263, 0.00136408943, 0.00501239346, 0.0141255278, -0.0211340673, 0.0255669337, 0.018043261, -0.00199445128, -0.00225540763, -0.0228828117, 0.00641545653, -0.019222647, 0.0035686614, -0.00917074829, 0.00908941124, -0.0323721319, 0.00265700906, -0.0044294782, 0.0152642457, 0.000515558058, 0.000184914607, -0.00290779816, -0.0055817524, 0.00520895794, 0.00910296757, 0.0154133635, -0.013379938, -0.00568681257, -0.001687743, 0.0148304487, -0.00196733885, -0.00456842873, -6.81515157e-05, 0.000298659346, -0.000503272749, -0.00786935538, 0.00099214213, -0.0233843904, 0.00977399759, -0.00690686796, -0.00757789798, -0.000291881239, -0.0199411232, 0.00676113926, 0.00526657142, -0.0234792847, 0.00155641756, -0.0344055556, -0.0234115031, -0.00481244, 0.0117735323, -0.00447353581, 0.00637139939, 0.0358153954, 0.00184872246, -0.00961132348, -0.020171579, 0.00188430748, 0.0129935872, 0.00866239145, -0.0023740239, -0.00614772225, -0.012159883, 0.0131698176, 0.010302688, 0.0238724127, -0.0198462307, 0.00930631, -0.01705366, 0.0132443765, -0.00754400762, 0.0221914481, 0.0153726954, -0.0148575604, -0.00556819607, 0.0106212581, -0.00696787052, -0.0219338816, 0.0542517863, 0.0290373135, 0.01432887, -0.0153862508, 0.017528126, 0.00744233653, -0.00332803931, 0.0303929299, -0.0494257919, 0.00780157512, -0.00666624587, 0.00796424877, 0.0122954445, 0.0103501342, -0.00661879918, -0.0151151279, 0.00623922655, -0.0234521721, -0.00556819607, -0.0148575604, -0.00250111311, 0.00349749136, -0.00652729534, -0.0173112266, -0.00183177728, -0.0210933983, 0.0123700034, 0.00278918166, -0.0276952516, 0.00885217823, 0.00919786, 0.00876406301, 0.00488360971, -0.0200631302, -0.00620533619, -0.000597742328, -0.0468772314, 0.0154133635, 0.00479210541, 0.0224761274, 0.0140984152, 0.00729321875, 0.00632395269, 0.00205884315, 0.0132172639, -0.00621211436, -0.0212696288, -0.00648662681, 0.0288475268, -0.0285764039, 0.0279799309, -0.0280612689, 0.00599521538, -0.00358560658, -0.0119972089, 0.0166740865, -0.00215543085, 0.00590710063, -0.0127224643, 0.00880473107, -0.0116176363, 0.00673063751, 0.00697464868, -0.025146693, 0.00633412, -0.00682892, -0.0103501342, 0.0240622, -0.0235606208, -0.00155641756, 0.0114414059, -0.0096994387, -0.0148846731, -0.0227065831, 0.00975366309, 0.0104518058, -0.0182872713, -0.000693482754, 0.00254008709, 0.0016352128, 0.00326703652, 0.0091097448, -0.0116989734, -0.00617483491, 0.0148304487, -0.011170283, -0.0117396424, -0.00482599577, -0.00698142685, 0.00189278007, 0.0202529151, -0.00542585645, -0.00377200381, 0.0306098294, 0.00728644058, 0.00101162912, -0.00830993149, 0.00756434212, 0.0243739914, -0.00378894899, 0.0412378646, -0.00300099677, -0.0109872743, 0.0018148321, -0.0183414966, 0.0187617373, 0.00782190915, 0.00647984864, -0.0042905272, -0.0130817024, 0.000993836555, -0.00827604067, 0.0226388015, 0.0106415926, 0.00115989964, -0.0208358318, -0.0214323029, -0.00843193661, -0.00757789798, -0.00117684493, -0.0210933983, -0.0126004582, -0.00780835329, 0.0149117857, -0.00967232604, 0.00157082104, 0.0339717567, -0.0250111315, -0.0038804533, 0.00181144301, 0.0177585799, -0.00185211154, -0.00168604846, -0.0141933085, -0.00489377696, 0.0200089049, -0.0211340673, 0.0248349011, 0.00440236554, 0.0290644243, -0.00750333909, -0.00382283959, -0.0102416854, 0.0255262647, 0.0101603484, -0.00183855533, -0.00655779662, -0.0176636875, 0.0247942321, -0.00370761217, 0.00249772402, 0.0123632252, 0.0180568174, -0.00659507606, 0.0262040738, -0.0279528201, 0.016579194, -0.013501944, 0.0119904308, -0.00171061896, 0.0194531027, -0.00119887362, 0.00174366217, 0.0116718607, 0.00394484494, -0.0140577471, -0.0186668448, 0.00363644212, 0.0115159648, 0.011014387, -0.0142882019, 0.0239673052, 0.00263498025, 0.0218254309, 0.0163894072, 0.0118277567, 0.00963843614, -0.0177856926, -0.00641206792, -0.0513236523, 0.00584948668, 0.0243875477, 0.0130207, 0.0459011868, 0.021513639, -0.0124106724, -0.0108246, -0.00842515845, 0.00791002437, 0.00527673867, -0.00199445128, 0.00121412438, 0.0073745558, -0.00398890255, -0.0380386077, -0.0285221785, 0.0200631302, 0.027749477, 0.00396179035, 0.0055817524, 0.00952320825, -0.0011497325, -0.00520556886, 0.0191277545, -0.0193988774, 0.00398890255, -0.0184635017, -0.00292474334, 0.0116921952, -0.00102010171, -0.00220457185]
23 Feb, 2023
unordered_multimap find() function in C++ STL 23 Feb, 2023 The unordered_multimap::find() is a built-in function in C++ STL which returns an iterator which points to one of the elements which has the key k. If the container does not contain any element with key k, then it returns an iterator which points to the position which is past the last element in the container. Syntax: unordered_multimap_name.find(k) Parameters: The function accepts a mandatory parameter k which specifies the key. Return Value: It returns an iterator which points to the position where an element with key k is. Below programs illustrate the above function: Program 1: CPP // C++ program to illustrate the // unordered_multimap::find() function #include <iostream> #include <unordered_map> using namespace std; int main() { // declaration unordered_multimap<int, int> sample; // inserts key and element sample.insert({ 1, 2 }); sample.insert({ 1, 2 }); sample.insert({ 2, 3 }); sample.insert({ 3, 4 }); sample.insert({ 2, 6 }); // find the element with key 1 and print auto it = sample.find(1); if (it != sample.end()) cout << 1 << ":" << it->second << endl; else cout << "element with key 1 not found\n"; // find the element with // key 2 and print it = sample.find(2); if (it != sample.end()) cout << 2 << ":" << it->second << endl; else cout << "element with key 2 not found\n"; // find the element with // key 100 and print it = sample.find(100); if (it != sample.end()) cout << 100 << ":" << it->second << endl; else cout << "element with key 100 not found\n"; return 0; } Output: 1:2 2:6 element with key 100 not found Program 2: CPP // C++ program to illustrate the // unordered_multimap::find() #include <iostream> #include <unordered_map> using namespace std; int main() { // declaration unordered_multimap<char, char> sample; // inserts element sample.insert({ 'a', 'b' }); sample.insert({ 'a', 'b' }); sample.insert({ 'a', 'd' }); sample.insert({ 'b', 'e' }); sample.insert({ 'b', 'd' }); // find the element with // key r and print auto it = sample.find('r'); if (it != sample.end()) cout << "r" << ":" << it->second << endl; else cout << "element with key or not found\n"; // find the element with // key a and print it = sample.find('a'); if (it != sample.end()) cout << 'a' << ":" << it->second << endl; else cout << "element with key a not found\n"; // find the element with // key 'b' and print it = sample.find('b'); if (it != sample.end()) cout << "b" << ":" << it->second << endl; else cout << "element with key b not found\n"; return 0; } Output: element with key r not found a:d b:d Learn C++ Online – Master everything from basics to advanced concepts. Apply your knowledge with practical exercises and boost your skills. Take the Three 90 Challenge: finish 90% in 90 days for a 90% refund. Start now and level up your C++ programming!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum/Algorithm for Dynamic Time out timer Calculation/Difference between Round trip time (RTT) and Time to live (TTL)/Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms/Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm/Round Robin Scheduling Algorithm with Different Arrival Time/Selfish Round Robin CPU Scheduling/Find the order of execution of given N processes in Round Robin Scheduling/Calculate server loads using Round Robin Scheduling/set::lower_bound() Function in C++ STL/Implementation of lower_bound() and upper_bound() in List of Pairs in C++/Difference between std::set::lower_bound and std::lower_bound in C++/Difference between std::set vs std::vector in C++ STL/std::minmax() and std::minmax_element() in C++ STL/std::rotate vs std::rotate_copy in C++ STL/std::bitset::to_ullong and std::bitset::to_ulong in C++ STL/std::upper_bound and std::lower_bound for Vector in C++ STL/std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++/std::string::append vs std::string::push_back() vs Operator += in C++/Vector push_back() in C++ STL/vector :: cbegin() and vector :: cend() in C++ STL/unordered_multiset cend() function in C++ STL/unordered_multiset bucket() function in C++ STL/unordered_multiset emplace_hint() function in C++ STL/unordered_multiset end() function in C++ STL/unordered_multiset size() in C++ STL/unordered_multiset emplace() function in C++ STL/unordered_multiset find() function in C++STL/unordered_multiset erase() function in C++ STL/unordered_multiset clear() function in C++ STL/unordered_multiset swap() function in C++ STL/unordered_multiset bucket_size() function in C++ STL/unordered_multiset bucket_count() function in C++ STL/unordered_set bucket_count() function in C++ STL/unordered_set cbegin() function in C++ STL/array::cbegin() and array::cend() in C++ STL/array::rbegin() and array::rend() in C++ STL/multimap rbegin in C++ STL/vector rbegin() and rend() Functions in C++ STL/multiset rbegin() and rend() function in C++ STL/map rbegin() function in C++ STL/map upper_bound() function in C++ STL/Set upper_bound() in C++ STL/multimap upper_bound() function in C++ STL/multimap empty() function in C++ STL/multimap value_comp() function in C++ STL/multimap swap() function in C++ STL/multimap::swap() in C++ STL/multimap equal_range() in C++ STL/unordered_set equal_range in C++ STL/set vs unordered_set in C++ STL/unordered_set count() function in C++ STL/unordered_set bucket() function in C++ STL/unordered_set emplace() function in C++ STL/set::emplace() in C++ STL/multiset::emplace() in C++ STL/multiset find() function in C++ STL/multiset cbegin() and cend() function in C++ STL/multimap::cbegin() and multimap::cend() in C++ STL/multimap::begin() and multimap::end() in C++ STL/set::begin() and set::end() in C++ STL/unordered_multimap begin() and end() function in C++ STL/unordered_multimap empty() function in C++ STL/unordered_multimap find() function in C++ STL
https://www.geeksforgeeks.org/unordered_multimap-find-function-in-c-stl?ref=asr10
PHP
unordered_multimap find() function in C++ STL
unordered_multiset clear() function in C++ STL, What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, jQWidgets jqxTreeMap width Property, Round Robin Scheduling Algorithm with Different Arrival Time, Difference between Flow and TypeScript, set::begin() and set::end() in C++ STL, unordered_multiset emplace() function in C++ STL, jQWidgets jqxTree destroy() Method, unordered_set bucket_count() function in C++ STL, jQWidgets jqxTree collapseAll() Method, Find the order of execution of given N processes in Round Robin Scheduling, jQWidgets jqxScrollView buttonsOffset Property, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Vector push_back() in C++ STL, jQWidgets jqxListBox enableHover Property, Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm, std::rotate vs std::rotate_copy in C++ STL, Selfish Round Robin CPU Scheduling, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxSlider buttonsPosition Property, std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++, std::upper_bound and std::lower_bound for Vector in C++ STL, Difference between Round trip time (RTT) and Time to live (TTL), jQWidgets jqxSlider rtl Property, Difference between std::set::lower_bound and std::lower_bound in C++, jQWidgets jqxTooltip opacity Property, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, unordered_multiset erase() function in C++ STL, multiset find() function in C++ STL, set vs unordered_set in C++ STL, jQWidgets jqxToolBar height Property, PHP, std::minmax() and std::minmax_element() in C++ STL, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, unordered_set emplace() function in C++ STL, unordered_multimap empty() function in C++ STL, unordered_set bucket() function in C++ STL, map rbegin() function in C++ STL, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, map upper_bound() function in C++ STL, Node.js date-and-time Date.transform() Method, unordered_multiset size() in C++ STL, TypeScript Optional Parameters, jQWidgets jqxToolBar theme Property, Difference between std::set vs std::vector in C++ STL, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, Steps to Diagnose and Resolve a Slow Network, How to use Optional Chaining with Arrays and Functions in TypeScript ?, Calculate server loads using Round Robin Scheduling, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, jQWidgets jqxScrollView showButtons Property, set::emplace() in C++ STL, Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms, jQWidgets jqxScrollView disabled Property, multimap::cbegin() and multimap::cend() in C++ STL, jQWidgets jqxSplitter destroy() Method, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, set::lower_bound() Function in C++ STL, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, jQWidgets jqxTree collapseItem() Method, multimap upper_bound() function in C++ STL, std::string::append vs std::string::push_back() vs Operator += in C++, unordered_multiset swap() function in C++ STL, unordered_multiset cend() function in C++ STL, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), Set upper_bound() in C++ STL, jQWidgets jqxSortable opacity Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, multiset cbegin() and cend() function in C++ STL, multimap rbegin in C++ STL, vector :: cbegin() and vector :: cend() in C++ STL, multimap swap() function in C++ STL, jQWidgets jqxSlider height Property, jQWidgets jqxSwitchButton onLabel Property, unordered_multiset bucket_size() function in C++ STL, unordered_set cbegin() function in C++ STL, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, jQWidgets jqxToolBar tools Property, multimap empty() function in C++ STL, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTree width Property, multimap::swap() in C++ STL, multimap equal_range() in C++ STL, Implementation of lower_bound() and upper_bound() in List of Pairs in C++, jQWidgets jqxTree clear() Method, TLS Handshake?, multiset rbegin() and rend() function in C++ STL, Algorithm for Dynamic Time out timer Calculation, Adhoc TCP, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, jQWidgets jqxTabs position Property, Differences between Wireless Adhoc Network and Wireless Sensor Network, jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, unordered_multimap begin() and end() function in C++ STL, std::bitset::to_ullong and std::bitset::to_ulong in C++ STL, unordered_multiset emplace_hint() function in C++ STL, multimap::begin() and multimap::end() in C++ STL, unordered_multiset bucket_count() function in C++ STL, unordered_multiset find() function in C++STL, unordered_multiset bucket() function in C++ STL, Impact of Three-way Handshake and Slow Start Algorithm, array::rbegin() and array::rend() in C++ STL, multimap value_comp() function in C++ STL, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, multiset::emplace() in C++ STL, unordered_set equal_range in C++ STL, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, unordered_set count() function in C++ STL, vector rbegin() and rend() Functions in C++ STL, array::cbegin() and array::cend() in C++ STL, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, unordered_multiset end() function in C++ STL, How to Sort an Array Having Optional Properties in TypeScript ?, unordered_multimap find() function in C++ STL
GeeksforGeeks
[-0.0460630953, 0.0164576955, -0.0079866536, 0.00095652428, -0.000940666301, -0.0253035631, -0.0297783948, 0.0113485446, -0.0358217247, 0.0194562953, -0.0241041239, 0.0148084667, -0.0193986297, -0.00273766322, -0.027933104, -0.00124124705, 0.0237811971, 0.0211285912, -0.036813572, -0.0235966686, -0.0149814626, 0.0114292754, -0.0211285912, 0.00411442388, -0.0146354698, -0.00392412813, -0.0139434859, -0.0125364512, 0.00574923726, -0.00591646647, -0.00220281701, 0.0377131514, 0.0214861166, -0.0289710797, 0.00232679746, 0.0339764357, 0.0165960919, 0.035568, 0.0209209956, -0.00856907386, -0.015315922, 0.00019426021, 0.0382206067, 0.00367328385, -0.0123634543, 0.0127094472, 0.00475450931, -0.0368366353, -0.0240579918, 0.0021379434, 0.0585418791, -0.00814235, 0.0324079357, 0.00421245489, 0.0105758281, 0.0192602333, 0.0242655873, 0.0179569945, -0.00978004653, -0.049407687, -0.0255572908, -0.0278177727, 0.0251651667, -0.00769256, 0.0190295707, 0.00458151335, -0.0357525274, 0.0395815074, 0.0048208246, -0.00745036546, -0.00581555208, 0.0439179428, -0.0205404032, 0.00668918248, -0.0322464742, -0.00588186737, -0.0560968705, -0.00175446877, 0.010137572, 0.027564045, 0.0066026845, 0.0035060544, -0.00289480132, -0.021820575, 0.0400658958, -0.00251997658, 0.0122596575, -0.0326155312, 0.0389125906, 0.0442178026, -0.0151890581, -0.0015598482, -0.00420092186, 0.0154312523, -0.0300551895, 0.0124903182, 0.0129977735, 0.0318312831, -0.0146585368, 0.0802240595, -0.00911689457, -0.0173342098, -0.0181530584, 0.0482082479, 0.0100107081, 0.00610099593, 0.0101721706, 0.0218667071, -0.0080443183, -0.0156042483, 0.0166998897, 0.0134475632, -0.00161318865, 0.0326616652, 0.00728313578, 0.0331229866, 0.0050313035, -0.00998764113, 0.0353604034, -0.0358217247, -0.00158291438, 0.031023968, 0.0184644498, 0.0037136497, -0.0572963096, 0.0272180531, 0.0199291501, 0.0387280621, 0.0141510814, -0.025257431, 0.00509761833, -0.0242194533, -0.0295477342, -0.0316928849, -0.00491597271, 0.0250959676, 0.00967624877, 0.0197907537, 0.00111582491, -0.0385435298, -0.0210709255, -0.0175072048, -0.0242425203, 0.0456248373, -0.0236889329, -0.0322926044, -0.0157541782, 0.0438948758, 0.0411038734, -0.00496787159, -0.0294093378, -0.0227086209, 0.0151775246, -0.00286164391, 0.0252112988, -0.00615289481, 0.0234236717, -0.0234582722, 0.0101318052, -0.047078006, 0.0336073749, -0.0126633151, 0.0230546147, 0.0235274695, -0.00694291, 0.0403426923, -0.00279532862, -0.0116080381, -0.0374363549, 0.0324310027, 0.0115388399, 0.0265722014, 0.0336765759, -0.0058097858, -0.0146124037, -0.0253035631, 0.0429491661, 0.0234006066, 0.0197561551, 0.00243636174, 0.0113081783, 0.00642968854, 0.0413114689, 0.0231930111, 0.0139434859, -0.0160886366, 0.0236889329, 0.000847680902, 0.0709053352, 0.00649888674, -0.00730043557, 0.0314391591, 0.0184298512, 0.0504225977, 0.0483927764, 0.0412653349, -0.0143817421, 0.014162614, -0.017622536, 0.0309317037, 0.00541189453, -0.0267336648, -0.0257187542, 0.0201482791, 0.00527349766, 0.0109045208, -0.0209786613, -0.0108180232, 0.0265491344, 0.00407405803, -0.0320158117, 0.00949748605, -0.00123331801, -0.00485254079, 0.0213131197, 0.0193755627, -0.0483466424, 0.0525908135, 0.0171842799, -0.0340456329, 0.00226480723, -0.0174841397, 0.0158464424, -0.0322003402, -0.0260647461, -0.0272180531, 0.010235603, 0.0341148302, 0.0114292754, 0.00162039686, -0.00649312045, 0.0184413847, -0.0224548932, -0.0112505127, 0.0234813374, -0.0265260693, -0.0505609922, -0.0391893834, 0.0136205601, 0.0172534771, 0.0366290398, 0.0403196253, -0.0291556101, 0.0151429251, 0.0221089013, 0.030631844, 0.0060894629, -0.0444023311, -0.0187066458, 0.0194793604, 0.0316928849, 0.00345127215, 0.0294093378, 0.0108583886, -0.00528214779, 0.0203789417, -0.0225356258, -0.0195716247, -0.0339303, -0.00713320589, 0.00142145134, 0.0184990503, -0.0241502561, 0.0180031285, 0.000514303, -0.00582996849, 0.041680526, -0.0328000598, -0.0083153462, -0.0314160921, 0.0150391273, 0.0229277499, 0.00621632673, 0.0142318122, 0.0120635945, -0.00017101386, -0.0470088087, 0.0140703497, 0.00791745447, -0.0488079675, 0.0196408238, 0.00020939736, -0.0297553297, 0.00572617073, 0.0078367237, -0.00715627195, 0.00672378158, -0.0277716406, -0.0295708012, -0.00199089688, -0.0278408397, -0.0065680854, -0.032938458, -0.00459592976, 0.0236197338, 0.0429722331, -0.00385204656, -0.0175302718, -0.0432028919, 0.0153735867, 0.0223510955, -0.0105008632, -0.00424417108, -0.0132515011, 0.0168382879, -0.0239195935, -0.000685497071, -0.0180723257, 0.00386646297, -0.0763489455, -0.0055647078, -0.0445407294, -0.0353834704, -0.00717357174, -0.0163193, -0.00791745447, 0.0108699221, 0.00821154844, -0.0123519218, -0.024888372, -0.0183029883, -0.0167690888, 0.008615206, 0.0315775536, 0.027171921, -0.0491770245, 0.00420092186, 0.0415421315, -0.0247038435, -0.0687832534, -0.0064873537, 0.0148315327, -0.0246115793, -0.0158579759, 0.00995304249, 0.00147262926, -0.0255572908, 0.0112678129, 0.0211285912, 0.0222588312, 0.0199637506, 0.00530521385, 0.0179339293, 0.0107372915, 0.00230373139, 0.0145662716, -0.0074272994, -0.00823461451, 0.0228124186, 0.0424417108, 0.000532323436, -0.0111121163, -0.0184183177, -0.00735233445, 0.00689677801, -0.0277716406, -0.0202405434, -0.0415190645, -0.00497940462, 0.0473317318, 0.00365021778, 0.0270796567, -0.0128247775, 0.0236197338, -0.00516105024, -0.0297553297, -0.0257187542, -0.00700634206, 0.0274025816, -0.0112389801, 0.00647005439, -0.0188681073, 0.0169074852, 0.0302166529, -0.0400197655, -0.00582131883, 0.0140934158, 0.0183952525, -0.00307068089, -0.0103739994, 0.00547821, 0.0333305821, -0.00424128771, -0.0145893376, 0.00178618473, 0.0182337891, -0.00514375092, -0.0052994471, -0.02086333, 0.00813658349, -0.0148661314, 0.0089323651, 0.00330999214, -0.0140357502, 0.0137820225, -0.0209901929, -0.0459477641, -0.0243809167, -0.0404349566, -0.0557739437, 0.0287634842, -0.00875360239, -0.00749649759, -0.002246066, -0.0418881215, -0.0318774134, 0.0132861007, -0.0267567299, 0.00135369448, 0.0441947356, 0.0296630654, 0.00283425278, -0.0113543104, -0.000745324884, 0.0108064897, 0.00617596088, -0.027933104, 0.0553587526, 0.0165038276, -0.0035060544, -0.0268720612, -0.0358217247, 0.00954938494, -0.013574427, -0.0138742877, 0.0365137123, 0.0159041081, 0.00224462431, -0.00584150152, -0.0320619456, 0.0213592518, 0.00211776071, 0.0199637506, 0.0410346761, -0.0166998897, -0.0434335545, 0.0336073749, 0.0113081783, 0.00652771955, -0.00239167106, 0.0345530882, 0.0390509851, 0.0254188944, -0.00634319056, -0.00192458159, 0.0497767441, -0.00930142403, 0.00686794519, 0.0265491344, 0.0285558905, -0.0102298362, 0.0356602632, 0.000132720452, -0.0060894629, 0.0414498672, -0.0241041239, 0.0529598743, 0.00946865324, 0.0613559522, 0.0376900844, 0.0049851709, 0.0118444664, -0.01433561, -0.00307933055, -0.013205369, 0.0149007309, 0.00467954436, 0.034852948, 0.00817118213, -0.0162039679, 0.0276332442, -0.0257879514, 0.0115330731, 0.0336996391, 0.0522678904, 0.0137820225, -0.00387222948, -0.012836311, -0.0141856801, -0.00443735, 0.0295477342, -0.0162847, -0.0433182232, 0.000453754357, 0.00094210793, -0.0466628149, 0.0164807625, -0.00533981295, -0.00533981295, 0.0241271891, -0.002964, -0.0365598425, -0.00852294173, -0.0411730707, -0.000819569046, 0.0290172119, -0.0331691206, 0.00167950382, -0.0134475632, -0.0209209956, 0.0521294922, 0.00495345518, -0.0233544745, 0.0251882318, 0.00872477051, -0.0490847602, 0.00242194533, 0.0184759833, -0.0378284827, -0.0162270349, 0.003877996, 0.0540209152, 0.0362830497, -0.00389529555, 0.00113817013, -0.00368481688, 0.050930053, -0.00326962629, -0.014750801, -0.015708046, 0.016054038, 0.0144048091, 0.00413460704, 0.0243347846, -0.0301013216, 0.0150275948, -0.00161318865, -0.0127671119, 0.018406786, -0.0307241082, 0.00103581417, -0.00169247855, -0.0370672978, -0.00072370033, -0.0122135244, -0.0128593771, -0.0119828628, -0.00510915136, -0.0169882178, -0.0112389801, -0.0109852524, -0.0122250579, 0.0180146601, -0.00569733838, -0.0124787856, -0.00829804596, 0.0156273153, -0.0101837041, -0.0499612726, 0.00557335792, 0.0204020068, -0.0031542955, -0.0181069244, -0.0197907537, -0.00137676066, 0.0294324029, -0.0036559843, -0.0432951562, 0.0109102875, -0.00630859099, 0.00463629561, 0.0226509571, 0.0465936176, 0.00193034811, 0.00765219424, -0.014358676, 0.00201540464, 0.00794628728, -0.0325002, 0.0136205601, -0.00356660294, -0.00454691425, 0.0283713602, -0.0109967859, -0.00988384429, 0.0191103034, 0.017784, 0.00405964162, -0.0304703806, -0.0370903648, 0.0112505127, 0.0104950964, 0.0147854006, -0.00574635388, -0.0114581082, -0.0176917352, -0.0140242176, -0.0227201544, -0.0357294604, -0.000588907569, 0.0130208395, 0.00773869222, -0.0071159061, -0.00476027606, 0.0198022872, -0.0338841714, 0.0189027078, -0.0277485754, -0.0137589565, -0.024888372, 0.0106796259, 0.0122019919, -0.00880550127, -0.0194908939, 0.0152813224, 0.0187181775, 0.0260416791, -0.00562525634, 0.0167575553, -0.0157426447, -0.037874613, 0.0214399826, 0.0351758748, -0.00545514375, 0.0041922722, 0.0465474837, -0.0246346444, 0.0169651508, 0.00336189079, -0.00875936914, -0.0248653069, -0.0346914865, -0.00566562219, 0.0224779602, 0.0219589714, 0.0346222855, -0.0400889628, 0.00693137711, 0.000225976153, -0.0126517816, 0.0200329479, -0.0242425203, 0.00551857566, -0.0286481548, 0.0305165127, 0.00161463022, -0.0126402481, 0.0391893834, -0.00675838115, 0.0334459133, -0.0220051035, 0.00424417108, 0.0285328235, 0.029847594, 0.00207018666, 0.0165845603, 0.00649888674, 0.0170920156, 0.00115330738, -0.0119828628, -0.0429030322, 0.0127440458, 0.0165845603, 0.00569733838, -0.0126863811, -0.0218782406, -0.0104662646, 0.014750801, 0.00110573345, 0.0115215406, -0.00300148246, -0.0133668324, -0.00845950935, 0.00161895517, 0.0119251981, 0.0159387067, -0.0105008632, -0.0131938364, -0.0178185981, 0.0223164968, 0.00114898244, -0.019340964, -0.0150737269, -0.00968778133, 0.0266644657, -0.0226394236, -0.0129747074, 0.0323156714, -0.0125825834, -0.013597494, -0.012617182, -0.0107661244, 0.0218551736, -0.0114927078, 0.0165845603, -0.00560507365, 0.0292478744, -0.0104547311, 0.00521006575, -0.0550819598, -0.0226509571, -0.0267567299, 0.0264799371, 0.0211401228, 0.00456133066, 0.00229796488, -0.0103105679, 0.00127728784, -0.00218984229, -0.0144509412, 0.0145432055, -0.00426435377, 0.00394431129, -0.0452557802, 0.0169766843, 0.0507455245, -0.00674684811, -0.00245942781, -0.0231930111, -0.035568, 0.0194101632, -0.0333305821, -0.0105008632, 0.014162614, -0.0180146601, -0.00489578955, 0.00444023311, -0.0065334863, 0.0307702404, -0.039766036, 0.000803711067, 0.0162385665, 0.013032373, 0.0149007309, 0.034806814, -0.0165384281, -0.0193524975, -0.0319004804, -0.0072312369, -0.00623362605, -0.0313238278, -0.00558200758, 0.00295823324, -0.00440563401, -0.0276332442, 0.0250498354, 0.0430414304, -0.0181069244, -0.0149353305, -0.0232622083, 0.0131707694, 0.0109621864, -0.00343973911, 0.0405733511, -0.00795205403, 0.0125133842, -0.00809621718, -0.0225010253, -0.0284174923, 0.0327077955, 0.018383719, 0.0339764357, 0.00461899582, -0.00699480902, 0.0202866755, -0.0159271751, 0.0471241362, -0.0366290398, 0.00581843546, -0.0295246672, 0.0209901929, -0.0164576955, 0.00781365763, 0.0296399985, -0.0152697889, -0.0240349248, 0.0073119686, 0.0147969332, 0.0244501159, 0.0174380075, -0.0211285912, -0.00711014, 0.00927835796, -0.0107776569, -0.0168152209, -0.0280253682, -0.00652771955, -0.00370788318, 0.000159300573, 0.0218090415, -0.00822308101, 0.0370903648, 0.0334459133, 0.0252804961, -0.00848257542, -0.00123259728, 0.0285558905, 0.034437757, 0.0335151106, -0.0119482642, -0.0198368859, 0.0150045287, 0.0206788015, 0.0260647461, 0.0128593771, -0.0196754225, -0.00749073131, -0.0488079675, -0.00574347051, -0.0299629252, 0.0229277499, -0.00120520615, 0.0188450422, 0.0108064897, -0.0128132449, -0.0180031285, 0.0399967, 0.0469857417, 0.0284174923, 0.030262785, -0.0326616652, 0.0100856731, -0.0150737269, 0.0172996093, 0.0150621943, -0.00144595909, -0.0167921558, 0.00232679746, 0.01377049, 0.0156157818, 0.0257187542, -0.0204135403, 0.0440563411, -0.0169190187, -0.0108468551, 0.00348010496, 0.0284174923, 0.0028472275, 0.00482659135, -0.0257418193, -0.00768102705, 0.0433182232, 0.0112389801, -0.00243780343, -0.0277947076, -0.0080443183, 0.0454864427, -0.0297091976, -0.00918032601, 0.0372056961, 0.00822308101, -0.01433561, -0.0490847602, 0.00680451328, 0.00956668425, 0.00313411281, -0.0119713303, 0.0202290099, -0.0144048091, 0.0220512357, 0.00721393758, -0.00463629561, -0.0151544586, -0.00391836185, 0.0157541782, 0.0190872364, -0.0470088087, -0.0281637646, 0.018187657, 0.0200560149, 0.0118214, 0.0192717649, 0.00113240362, 0.022996949, 0.0165614933, 0.0373210274, -0.00198513037, -0.0385896638, 0.019906085, 0.013378365, -0.00785402302, 0.000155786591, -0.0195600931, -0.00812505, 0.00871323701, -0.0197792202, -0.00690831104, 0.0259724818, 0.00579825277, -0.00677568046, 0.019121835, -0.00249979366, -0.0226048231, -0.0701210871, -0.0204712059, 0.000533404644, 0.0119713303, -0.0156734474, -0.0209786613, -0.0272641852, 0.0236658659, -0.00705824094, -0.00704670791, -0.0271257889, -0.00176023529, 0.00472856034, 0.00864403881, 0.00483812438, 0.0194332283, -0.0276332442, 0.015731113, 0.0123173222, 0.0039471942, -0.00845950935, 0.00741576636, 0.00357236946, 0.058218956, 0.0101837041, -0.0155350501, 0.0130208395, 0.0257879514, -0.0111351823, -0.00595683232, -0.0442408696, 0.0155811822, -0.0297783948, -0.0198714864, 0.0042730039, 0.0142548792, 0.00516970037, 0.0155927157, 0.028348295, -0.00180636765, -0.00754263, -0.00997034181, -0.0371364951, -0.0110775167, 0.00557624083, -0.0175302718, 0.010800723, -0.0296169333, 0.0125595173, 0.0171496794, 0.00975698, 0.0037136497, -0.0290402789, -0.0332383178, -0.0165730268, -0.0307702404, -0.010333634, -0.00421822164, 0.00472856034, -0.0161001701, -0.0171150807, -0.0296861306, 0.00507743564, -0.0306779761, -0.00374536566, 0.00095003692, -0.0119021321, -0.0238273293, 0.00702940812, 0.00765219424, -0.030631844, -0.0146931354, 0.0103624668, -0.0142548792, -0.0230892133, -0.0118905986, 0.0140818823, 0.0337688401, 4.75288762e-05, 0.032938458, -0.00247961073, 0.0321311429, 0.00753686344, -0.0293170735, -0.0287634842, -0.0254650265, 0.0161463022, 0.0296169333, -0.0236889329, 0.0335843116, 0.0315083563, 0.0122250579, 0.0335381776, -0.0333305821, 0.000502769894, -0.0169882178, -0.00193323148, 0.0124557195, 0.0103163337, 0.0135513609, -0.0023181478, -0.00545802712, 0.0427646376, -0.00138685212, -0.013989618, -0.009572451, 0.0330768563, -0.0290172119, 0.0125249177, -0.00573482085, -0.0296169333, 0.0227432214, 0.0361677185, 0.039789103, -0.0280945674, 0.0152813224, -0.0194793604, -0.0192602333, 0.00960128382, -0.0366982408, 0.0199868158, -0.00140775577, -0.0252112988, -0.0263876729, 0.0538825206, 0.00240464578, 0.011584972, 0.0270104576, -0.0403196253, -0.00679298025, -0.0085344743, 0.00432778569, -0.00581555208, -0.0208863951, -0.0187989101, 0.0347606838, -0.00430471962, -0.0071966378, 0.0134360306, -0.0303550493, 0.0188796408, -0.0012621507, 0.00494768843, 0.027564045, -0.00857484, 0.0129747074, 0.00282848626, 0.01703435, -0.0233083423, 0.00447483268, 0.018406786, 0.00630859099, -0.0241271891, -0.0184759833, -0.0538363867, 0.0165960919, 0.0113254786, 0.00726583647, -0.00107113423, -0.00728890253, 0.00690254429, -0.0114004435, -0.00686794519, 0.0086036725, -0.0118098669, 0.00938792154, -0.000952920178, 0.00791168865, -0.00706977397, 0.00140487251, 0.030631844, 0.00823461451, 0.00330134225, 0.0202405434, -0.0120635945, 0.0109275868, 0.00698904227, -0.0105873616, -0.00697750924, 0.0043566185, -0.0059741321, 0.00436815154, 0.017207345, 0.0115330731, 0.0313468948, 0.0256956872, 0.00465936167, -0.00611829525, -0.0105642956, -0.0164115634, 0.00643545482, 0.0112562794, -0.0153851202, 0.00764642749, -0.000883000961, 0.0153851202, -0.0240349248, -0.0135628944, 0.00241329568, 0.0107084587, 0.0215899143, 0.0241271891, -0.0325924642, 0.0172534771, 0.0130900387, -0.0272641852, -0.00584726827, -0.00993574318, 0.0112966457, 0.0125825834, 0.0101202717, 0.0128478436, 0.0095032528, 0.0327769965, 0.0444253981, -0.0227201544, 0.00274342974, -0.00713897264, 0.00769832637, 0.016077105, -0.0112562794, -0.00352623709, 0.00949748605, 0.0103567, -0.000347974448, 0.00749073131, 0.0132284351, 0.00835571159, 0.0219935719, 0.0228700843, 0.0390279219, -0.0354526676, -0.0186720453, -0.00553875836, -0.0139088864, 0.0127209798, 0.0104893306, -0.00693137711, -0.0114350421, -0.0118098669, 0.0165153611, 0.00248826062, -0.0282790959, 0.00283857761, 0.00953785144, -0.0187527779, 0.0124557195, -0.012836311, 0.0228354856, 0.0405733511, 0.0258340836, 0.027933104, -0.00970508158, 0.029824527, -0.0164346304, 0.0259494148, 0.00962435, 0.00991844293, -0.00108410895, -0.0385896638, 0.00926682446, 0.00769256, 0.0116138048, 0.000848401687, 0.0114350421, -0.0144394077, 0.0280484352, -0.00041086573, 0.0105988942, -0.0116484044, 0.0268951263, -0.0238273293, 0.00525331497, -0.00243924512, -0.0127094472, 0.000347253634, 0.0349452123, 0.00217110105, 0.00412595691, 0.0132745672, -0.0116426377, -0.0144278752, 0.0356833301, 0.0222242326, -0.022039704, -0.0154197188, 0.0453019142, -0.00621056, -0.0195139609, -0.00890353229, -0.0102067702, -0.0341609642, -0.0169074852, -0.00187268283, -0.000947153661, 0.0332613848, -0.00655655237, 0.0199868158, -0.015684979, -0.0131707694, 0.00342532271, -0.0175302718, -0.0138281547, 0.00654501934, -0.0251651667, -0.00875360239, -0.0265952665, 0.0146585368, 0.00883433409, 0.00452961447, -0.00516970037, 0.0178070646, -0.0165845603, -0.00328980922, -0.0147162015, -0.00688524498, 0.00877090264, 0.00963588245, 0.034460824, -0.045509506, -0.0136782248, -0.00156128977, 0.0190295707, 0.00719087105, 0.0128709096, 0.0083730109, 0.00117349019, -0.0286712199, -0.000253367209, -0.00601449795, 0.0141510814, -0.00873630308, -0.0106680933, -0.0138742877, 0.0180031285, 0.0229508169, 0.00453538122, -0.00108482968, -0.0106334938, 0.0125249177, -0.00179915945, -0.00930719, 0.00325232674, 0.00617019413, -0.00126142986, 0.00395872723, -0.00765796099, -0.0338149704, 0.0179223958, 0.0129516413, 0.00888046622, 0.0269181933, -0.000141099939, 0.0294554699, 0.00994150899, 0.0104720304, -0.00338207372, -0.023735065, -0.0154773844, -0.00433931872, 0.00198368868, 0.00497363787, 0.00924952514, 0.00954361819, -0.0195946917, 0.000472135202, -0.0260647461, -0.0161693692, -0.0194562953, -0.0196292903, 0.0373902246, 0.0101029724, -0.00360120228, -0.0578960292, -0.0143471435, -0.00263819052, 0.0192025676, 0.017403407, -0.00642968854, -0.0128593771, -0.00493903877, -0.0338380374, -0.0340456329, -0.00927835796, 0.0102759684, -0.00197792216, 0.00271892198, 0.00448636571, 0.0139319524, 0.00431625266, 0.0129516413, 0.032915391, -0.0100683728, 0.0213361867, -0.0186028481, -0.0123634543, 0.00297553302, 0.0126056494, -0.0110602174, 0.0318543501, 1.31549123e-05, 0.010114505, -0.0192487, 0.027910037, -0.00544072734, -0.00201972947, 0.013597494, -0.00317447842, -0.000826777192, 0.0404349566, -0.00446618255, -0.0211977884, -0.0207941309, 0.0316006206, 0.00341090653, 0.00386357959, -0.0102471355, -0.017230412, 0.00263819052, -0.00881126802, 0.00422398793, 0.0120981941, 0.0216475781, 0.00200819643, 0.0158695094, -0.00922645908, -0.0215322487, -0.00145749212, 0.00636049, 0.00681604631, -0.00266558165, 0.0227432214, 0.0185336489, 0.0175879374, 0.0288557503, 0.0165730268, 0.00340225664, -0.0230546147, -0.0195946917, 0.00442293379, -0.00445176614, -0.0160655715, 0.00255169254, -0.00756569626, -0.043664217, 0.0111697819, 0.00250556017, 0.0152351903, 0.00511203473, 0.00102572271, 0.0191910341, -0.0416574627, -0.0123634543, -0.00445464952, -0.00711014, 0.00198801351, 0.00421533827, 0.000703877886, 0.0192487, -0.000216965942, -0.00799818616, -0.00933602266, -0.0047862255, -0.00862673856, -0.0223164968, -0.00218119263, 0.000230661462, -0.00171986956, -0.0173688084, 0.00124989683, 0.00950901862, -0.0207364652, -0.0242425203, -0.0226624887, 0.00443446683, 0.0183260534, 0.00166364585, 0.0196062252, -0.0132399686, -0.0330307223, -0.00246375287, -0.00606639683, -0.0319004804, 0.00832687877, -0.0111121163, 0.00791745447, 0.00867863744, 0.0117118359, -0.00118934817, -0.00522736553, 0.00295246672, -0.00761182839, 0.0101318052, -0.00964741595, -0.0168152209, 0.0232160762, -0.0205404032, 0.0130900387, -0.00824038126, -0.0138858203, 0.00456709694, 0.0218551736, 0.00578671973, -0.0189834386, -0.00457574707, 0.0272411201, -0.0100337742, -0.00323791034, 0.00984924473, 0.0165384281, -0.008892, 0.00148920808, -0.00139694347, -0.0113773765, -0.00471702684, -0.0195946917, -0.00401350949, 0.00552434195, 0.000449069048, -0.013966552, -0.0114754084, 0.00335612427, 0.00596836535, -0.0222818982, -0.0127786454, -0.0117522022, -0.0219935719, 0.0330307223, 0.00290777604, 0.00951478537, -0.00927259121, -0.0118214, 0.00508320192, 0.000175879366, -0.0173342098, -0.00417497242, 0.00477757584, 0.0105123967, -0.00195197272, -0.0172996093, 0.00286452705, 0.0166998897, -0.0254650265, 0.0211516563, 0.0103913, 0.0131361708, 0.01377049, 0.00713897264, 0.0017818599, 0.0189027078, -0.0100683728, 0.0106450263, 0.0212323889, -0.00195341441, 0.00278091244, 0.0169651508, -0.0208979286, -0.00281983637, 0.0154081862, 0.0328000598, 0.000959407538, 0.0113427779, -0.00626822561, 0.0178185981, -0.0142433457, -0.0125825834, -0.00049916585, -0.029109478, -0.013574427, -0.0442408696, 0.0136782248, 0.0275179129, 0.0124326535, 0.013966552, -0.00618172716, -0.0282329638, 0.027148854, -0.0107834237, -0.00626822561, -0.0165268946, 0.00166797079, -0.00123836379, 0.0114523415, 0.0133437663, 0.0167806223, 0.00255457568, -0.0274717808, 0.0215437803, 0.0280945674, -0.00875936914, -0.0180838592, -0.00912842806, -0.00318024494, -0.00261224108, -0.0137589565, -0.0186259132, -0.00718510477, 0.0203558747, -0.0117810341, 0.00678144721, -0.0199522171, 0.0166537575, -0.0106104277, 0.0333536491, 0.0121443262, 0.0067180153, 0.0506532602, -0.00754839648, 0.0163769647, 0.0134475632, 0.0185913146, -0.0227316879, -0.0247961078, -0.017991595, -0.00736386748, 0.0441255383, 0.0142779453, 0.00796935335, -0.018729711, 0.00480352528, 0.0209786613, -0.0216475781, 0.0250498354, -0.0159041081, 0.017991595, 0.0293170735, 0.000932016468, -0.020667268, 0.0163423643, 0.00713320589, -0.00150506606, 0.0186028481, -0.014554739, 0.00904769637, 0.028348295, -0.0350144096, -0.025995547, 0.0020543288, 0.00961858314, -0.0292478744, 0.00782519, 0.00784825627, -0.00202405429, 0.000169211809, 0.0109794857, 0.00201972947, 0.00442005042, -0.00265549, 0.010062607, 0.032523267, 0.000286524795, -0.00813081674, -0.0287634842, 0.0115215406, -0.00636625662, -0.0268259291, 0.0157887768, -0.0136320926, -0.000272468867, -0.00115835306, 0.0249345042, 0.00681604631, 0.0221435018, 0.0112793455, -0.00508031901, -0.0191795, -0.0146124037, -0.00600296492, -0.02007908, -0.00856907386, -0.00315141235, 0.0102759684, 0.00316582876, -0.0104258982, 0.0151083264, -0.00289912638, 0.0115215406, -0.000766949379, 0.0167460218, 0.000835427, -0.00128882099, 0.0053801788, -0.0167460218, -0.000900300569, 0.00181934237, 0.0197792202, -0.00585303456, -0.00621056, 0.0184990503, 0.021601446, -0.00815965, -0.00149209134, -0.00896696467, -0.00907652918, 0.019340964, 0.0243578516, 0.0161347706, 0.0323618054, -0.021624513, 0.0182799213, -0.0252112988, 0.0186143797, 0.00127872953, -0.0148891974, -0.0163538978, 0.00968201552, 0.0027477548, 0.0150160613, 0.0056137233, -0.00318601145, 0.00987807754, 0.00243636174, 0.0243578516, 0.0118905986, -0.00625669211, -0.00731773488, -0.00416920613, 0.0186489802, 0.00933025684, -0.00644698786, 0.0131131047, -0.0113658439, 0.0116714705, 0.00689677801, -0.00791745447, -0.0096416492, 0.00921492558, 3.87213913e-05, 0.0201828778, -0.00261079939, -0.000346893212, -0.0113543104, -0.0105239293, 0.000200747556, 0.022800887, -0.0118098669, -0.0128939757, 0.0323618054, -0.00736963376, 0.0177032668, 0.00269297254, -0.0110371513, 0.00667764945, -0.00706977397, -0.0111697819, 0.00822308101, -0.00515816687, -0.00686794519, -0.0193294305, 0.0148199992, -0.0108237891, 0.00896119792, 0.00803278573, -0.00796358753, 0.00382321374, 0.00429318659, 0.00477757584, 0.0128478436, 0.00225615758, 0.00179771776, 0.00533981295, -0.00407982478, -0.00570022175, -0.0234467387, 0.00473432662, -0.0309547689, 0.0112101473, 0.00247672759, 0.00534269633, 0.0050313035, 0.0113658439, 0.0148661314, 0.00487272348, 0.0103105679, 0.0249345042, 0.00988961, 0.00702940812, 0.0169882178, 0.0170689486, -0.00192458159, -0.00224894937, 0.00817694888, -0.00849410892, -0.00626245886, 0.00414037332, -0.0256034229, 0.023342941, 0.00546379341, 0.00230084825, 0.0159848407, -0.00175014394, -0.0220281705, -0.00265981513, 0.00169247855, 0.00640085572, -0.00685641216, 0.00961858314, 0.00501112035, -0.0261108782, -0.024496248, 0.0137820225, -0.0327308625, -0.0129055092, 0.0148776649, -0.00688524498, 0.0168382879, -0.0101491045, 0.00122322654, -0.0129055092, -0.0227432214, -0.0156388469, -0.0210939907, -0.0160886366, 0.00878243521, -0.00873053633, 0.00474009337, 0.00724277, 0.0171381477, -0.00229652319, -0.0237811971, 0.0120866606, 0.0010978044, -0.0188335087, -0.0104604978, -0.00572617073, -0.0149122635, 0.0034339726, -0.00579825277, -0.0101779373, -0.00113600772, -0.00499093765, -0.00074460404, -0.0289249476, -0.0251882318, 0.00440563401, 0.00294237537, 0.0029048929, -3.95323104e-06, -0.00149064977, 0.00162616337, 0.0067180153, -0.010235603, -0.0124787856, -0.0156157818, -0.017622536, 0.0200214162, -0.0107545909, -0.00550992601, -0.00500247069, 0.0072773695, 0.00714473892, -0.00430471962, -0.00751956366, 0.015708046, -0.00611829525, -0.0126633151, 0.00596836535, 0.00467666145, -0.0225702245, 0.0058934004, -0.00103148923, -0.0108468551, -0.0152582563, 0.00159588899, 0.00755992951, 0.0188450422, -0.00333882472, -0.0199637506, -0.00138685212, -0.0325002, 0.0277485754, -0.0259263497, -0.0415421315, 0.0213246532, 0.00636625662, -0.0179108623, 0.0151083264, -0.00307644741, 0.0124326535, -0.0142548792, 0.0262031425, 0.0366521068, -0.0212208554, 0.0444484651, -0.0136666922, -0.000193539396, -0.0100799063, -0.00059863861, 0.0065680854, 0.00217398442, 0.017403407, 0.0113312444, 0.0157195795, -0.00878820196, -0.000733791792, -0.0135398284, 0.0118329329, 0.00633742381, 0.00881703477, -0.0122942561, -0.0132861007, -0.0104489643, 0.00793475471, -0.0182222556, 0.00247961073, -0.00275063794, 0.00270883064, 0.0141510814, 0.00731773488, -0.00630859099, 0.00439410098, -0.00521871587, 0.00770409312, -0.0126517816, 0.00599719817, 0.00644698786, 0.00508896867, -0.00871900376, -0.034899082, -0.00864980463, 0.0136436261, 0.00464494526, 0.00312257954, 0.00367040071, 0.000576653692, 0.00382609712, 0.00418650545, -0.0210247934, -0.0140242176, -0.0126402481, 0.00336189079, -0.011215914, 0.0144509412, 0.00589051703, 0.0274717808, -0.0191679671, -0.00367328385, 0.00248105242, -0.00704670791, 0.016665291, -0.000903183827, -0.0180146601, -0.0102471355, -0.00506013585, 0.000184078657, 0.0199291501, 0.0264799371, 0.00610099593, -1.0068914e-05, 0.00222444162, 0.00165643764, 0.00559065724, -0.0118444664, 0.00436815154, -0.00126719649, -0.0128017114, 0.00436526816, 0.00970508158, -0.00618172716, -0.00795205403, 0.0050313035, 0.00237148814, 0.00302743167, 0.0158349089, 0.00641815551, 0.00697174296, -0.0205634702, -0.0217629094, -0.00452384818, 0.0147046689, -0.00825768057, 0.00552434195, 0.0150737269, 0.0043912176, -0.014554739, -0.0204250738, -0.0039933268, -0.00633165753, 0.0117925676, 0.015119859, -0.0189373065, -0.0024752859, -0.00941098761, -0.0158003103, 0.0121789258, 0.00564255612, 0.0381052755, 0.0114350421, -0.0217167772, -0.00247672759, -0.0224318281, 0.00342820608, 0.0214053839, 0.0194332283, 0.00337054068, 0.00922069233, -0.0123634543, 0.00773292594, -0.0139204198, -0.00262089097, -0.00189574889, -0.00632589078, 0.00108699221, -0.00379726454, 0.00862673856, 0.0283021629, 0.00765796099, 0.0212323889, 0.0141395479, -0.0054609105, 0.00180925091, 0.01703435, -0.00378284813, 0.0198022872, 0.0270565897, -0.0151775246, 0.00613559503, -0.0172765441, 1.06264206e-05, 0.0213131197, -0.00266990648, 0.00816541631, -0.000524754869, 0.0129747074, -0.010431665, -0.00271892198, 0.00252141827, 0.00816541631, 0.000216425338, -0.0116253383, -0.0105239293, 0.0011554698, 0.0111582484, -0.0059741321, -0.0313007608, 0.00974544697, -0.00267711468, 0.0128939757, 0.0173342098, -0.00756569626, -0.0250498354, -0.00698327599, -0.0153851202, 0.0194332283, -0.00101635209, -0.0196062252, 0.00888046622, 0.0013378365, -0.00626245886, -0.00626822561, 0.03789768, 0.0220743027, -0.0186605137, -0.00935332291, 0.00400774321, -0.00200819643, 0.0056137233, -0.00537152914, 0.0195370261, 0.0346222855, 0.000566201808, 0.00236139679, 0.00147551263, -0.0334920436, 0.00555605814, 0.0109967859, -0.0175302718, 0.00535711274, 0.0224894937, 0.0108410893, 0.0091630267, -2.4214949e-05, -0.00228931499, 0.0117810341, -0.0115330731, 0.0171381477, -0.000777761627, 0.0118444664, -0.00330710877, -0.0155811822, 0.0120866606, 0.0241733212, -0.0253266301, 0.00479775853, -0.00581266917, -0.0267105978, 7.68120735e-05, 0.000833985396, 0.00787708908, 0.0279561691, -0.000636841927, -0.00797512, 0.00634895684, -0.0159733072, 0.0279792361, 0.0282790959, 0.0194793604, -0.00679298025, -0.0205750037, 0.018383719, 0.0023527469, 0.00904193, -0.0168728866, 0.00495922146, -0.00499670394, 0.0355910659, 0.029847594, -0.00200531306, 0.00975698, 0.00610676222, 0.00930719, 0.0154081862, -0.00939945504, 0.00505436957, 0.00625669211, -0.020125214, -0.0121097267, 0.00201107957, 0.0186374467, 0.00807891786, 0.000472856016, -0.0117060691, -6.93786424e-05, 0.0204366054, -0.00875360239, 0.0222473, -0.00374536566, 0.00862097275, -0.0103682326, -0.0178877972, 0.0225356258, 0.00478045875, 0.00673531508, -0.00648158742, -0.00531963026, 0.018925773, 0.0255572908, -0.0150160613, 0.0192371663, -0.0372056961, 0.001040139, 0.0289941467, -0.000431048626, 0.00287606, -0.00240608747, 0.0137243578, -0.0119251981, 0.00922069233, 0.00633165753, 0.0031773618, 0.00484389067, 0.0139319524, 0.017230412, -0.00685641216, -0.01377049, 0.0200098827, 0.0158003103, -0.0065334863, -0.00626245886, -0.0110371513, -0.00166076259, -0.00685064541, -0.015119859, 0.0085460078, -0.000410505338, 0.0182914548, 0.0225471593, 0.00377708161, -0.0137589565, -0.0127209798, 0.0294554699, 0.0188219752, 0.00220570038, -0.011683003, 0.0115734395, -0.00414325669, 0.00153389876, 0.00836147834, 0.0287865512, 0.006124062, 0.030239718, 0.0137012908, 0.00645275461, -0.0215668473, -0.0166998897, -0.0072773695, -0.0301013216, -0.00113672856, -0.0037713151, 0.00191304856, 0.00227201544, -0.00522736553, -0.00206297846, -0.0204020068, 0.00464494526, -0.0041576731, 0.0119367307, -0.0204020068, 0.00619326066, -0.0128824431, -0.00646428764, -0.00517258327, 0.000880117645, -0.00606063, -0.00174149405, 0.0123403883, -0.0168613531, 0.0233083423, 0.0105527621, -0.00315141235, 0.0213938504, -0.0235736016, 0.0169305522, 0.0131823029, 0.0122365905, 0.0379438102, 0.00373959914, 0.00666035, 0.00880550127, 0.000703877886, 0.0163538978, -0.012052062, -0.00749073131, -0.00845950935, 0.0132515011, 0.0201713461, -0.0190872364, 0.0188565757, -0.0193063654, 0.00353488699, -0.0167575553, -0.00640662247, 0.018406786, 0.0106796259, -0.00843644328, -0.002754963, 0.00127368385, -0.00456998032, -0.00634319056, 0.0178762637, -0.000267062744, -0.017968528, -0.00570887141, 0.00986654405, 0.0311623644, 0.00891506579, 0.00716780499, 0.00392412813, 0.00171266135, 0.00179339293, 0.00156993966, -0.0228239521, 0.0228239521, 0.0067526144, -6.9153386e-05, -0.00694291, -0.00880550127, 0.00141784723, 0.00302743167, 0.0280253682, 0.0188911743, -0.0133898985, 0.000609450857, -0.000231202081, -0.0251882318, -0.0105181625, 0.0088747, 0.0257879514, 0.00025210579, 0.0310701, 0.0178877972, 0.0327077955, -0.00249979366, 0.000861376408, -0.00622209301, -0.0159963723, -0.00785402302, 0.0286712199, 0.0222242326, -0.0129862409, 0.0196984895, 0.00586168468, -0.0301013216, -0.00139694347, -0.0077905911, 0.0171727464, -0.00496787159, 0.0106623266, -0.00267134816, 0.00354930339, -0.00891506579, -0.00257187546, -0.0295016021, 0.0154081862, 0.00546379341, 0.0243578516, -0.00458728, -0.0182453226, -0.00205577025, -0.00963588245, 0.0119136646, -0.00252141827, 0.0253266301, 0.000777761627, -0.00710437307, -0.0108295558, 0.0119828628, -0.0315314233, 0.0083153462, 0.0092437584, 0.00710437307, 0.024911439, 0.0196984895, -0.00545514375, -0.00745613175, -0.000982473721, 0.00199522171, 0.0244501159, 0.00138829369, -0.000120016048, -0.00328692584, 0.0128017114, -0.022558691, -0.00426147087, -0.00335324113, 0.025672622, 0.0169190187, -0.00753109716, -0.0198253524, 0.017011283, 0.01816459, -0.01377049, -0.011659937, 0.00276217097, 0.00291065942, -0.00101346883, 0.00183375867, -0.0156503804, 0.017403407, -0.0189142413, -1.15330731e-05, -0.00263963221, 0.0286020227, 0.00506301923, -0.0189142413, 0.00402504252, 0.026410738, 0.00864403881, 0.00301589863, -0.0181184579, -0.00755416322, -0.0135282949, -0.0202866755, -0.00934755616, 0.000735593843, -0.0120405285, 0.00644698786, 0.00247096107, -0.00440275064, 0.00995304249, 0.00684487913, 0.00909959525, 0.00577230332, 0.00474009337, -0.0240810569, 0.0206096023, -0.0278639048, 0.00959551707, 0.0224433616, 0.0234352052, -0.0180953927, -0.0155581161, -0.012052062, -0.00587610109, -0.0112332134, 0.0459477641, 0.0138512217, -0.000105870007, -0.00309663033, 0.0169651508, 0.00517835, -0.00367328385, -0.0202290099, -1.339143e-05, 0.00171121978, 0.00333594158, 0.00880550127, -0.0195024274, -0.00795782078, -0.00912842806, -0.00740423333, 0.014750801, 0.00636049, -0.00659691822, 0.0204712059, 0.0207018666, -0.0013702733, 0.010062607, 0.00050565321, -0.0103105679, -0.0293632057, 0.0117003033, 0.000627110887, 0.0197561551, 0.0134129645, -0.0238965284, -0.0039933268, 0.0212093219, -0.0270565897, 0.00568292197, 0.0192256328, -0.00375978183, 0.0123865213, -0.0260186139, -0.0152121242, -0.00646428764, -0.0296630654, 0.01816459, -0.0187989101, 0.0214284509, 0.00141063903, 0.005694455, 0.0144970734, 0.0189719051, -0.0118675325, 0.0210478585, 0.00221002521, 0.0275409799, -0.0124672521, -0.00982617866, 0.000841193541, 0.0167229567, 0.017403407, 0.00745036546, -0.0125710499, -0.00454403087, 0.00613559503, -0.00257620029, -0.0260878112, -0.0019029571, -0.00123980537, 0.00416920613, 0.0177032668, 0.00911689457, -0.0257187542, -0.000713248504, 0.0134244971, -0.0110140853, -0.0322464742, 0.00918609276, 0.00208316138, -0.0171150807, 0.0329845883, 0.0155235166, 0.0133091668, -0.00874783657, 0.00496210484, 0.0159156416, 0.00730620185, -0.00307933055, 0.0111121163, 0.016688358, 0.0215437803, -0.00446041627, -0.0125941159, 0.0280484352, 0.0141972136, -0.00200819643, 0.0187873766, -0.00341090653, -0.00430183625, 0.0101433378, -0.00285731885, 3.72572322e-05, -0.0127094472, -0.00980887935, -0.00683334609, 0.0123173222, 0.00294958358, -0.014554739, -0.0229162164, -0.00447771559, 0.024911439, -0.00948018674, -0.00046060211, 0.00519853272, -0.000127224223, 0.0157772452, 0.000855609891, -0.000443302502, 0.00260647456, -0.00729466882, -0.0192717649, 0.00478045875, -0.00525908126, 0.0102817351, 0.0012095311, -0.00290921773, 0.0132169025, -0.00686794519, -0.00982041191, -0.012248124, 0.00715050567, -0.000646212546, -0.0224202946, 0.00589051703, 0.0130669726, -0.0208056644, 0.0190065056, -0.00659115147, 0.012075128, -0.00697750924, -0.0127555793, -0.00746189849, 0.00526773138, 0.00992421, -0.00232823915, -0.0114927078, -0.0107430583, -0.0155350501, 0.00730620185, 0.00729466882, -0.00340514, -0.013966552, 0.0226163566, -0.0077905911, -0.0119251981, -0.005694455, -0.0169305522, 0.0058443849, -0.00622209301, -0.0120405285, -0.0020038716, -0.00502842, 0.00803278573, -0.0126863811, -0.00880550127, 0.0221089013, -0.011486941, 0.00569733838, -0.0078943884, 0.00918609276, -0.0167806223, 0.00309951347, -0.0156157818, -0.0148084667, -0.00469684415, 0.00606063, 0.013378365, 0.0149007309, -0.00872477051, 0.00404810859, 0.0115907388, 0.0109852524, -0.0156042483, -0.00100986473, 0.0126863811, -0.0155811822, -0.0181530584, -0.0144740073, -0.00188709912, -0.00255025085, -0.00356083643, 0.0203443412, -0.0016175136, -0.00261512445, 0.0152582563, 0.00346568855, -0.00794628728, -0.00529079745, 0.00120808941, -0.0205980688, -0.0226278901, -0.0195831582, 0.0232968088, -0.00194043957, 0.00867863744, 0.00659691822, -0.0272641852, -0.0173688084, -0.0165384281, -0.0180492606, 0.00320907775, -0.00108050485, 0.0266414, -0.0210939907, -0.0119828628, -0.00365886744, -0.00398179376, 0.0065219528, -0.00594529929, 0.0100453068, 0.009572451, 0.00178330147, 0.0136897583, -0.0171842799, -0.00683911238, 0.00837877765, -0.00401062611, 0.0048554237, -0.0105988942, -0.00988384429, 0.0168382879, -0.00129458751, 0.00157138123, -0.0685064569, -0.0305626448, 0.011561906, 0.0107603576, -0.011659937, 0.0097915791, -0.018360652, -0.0219820384, -0.00946288649, 0.0101087391, -0.00103725574, -0.0054609105, 0.0211977884, 0.00269153109, 0.00905922893, 0.00500247069, 0.00739846658, -0.006798747, -0.0101318052, -0.00156273146, -0.0173342098, -0.00792898796, 0.016469229, -0.00441140076, -0.0089323651, -0.0106796259, 0.00920339301, 0.000387439184, -0.00670071552, -0.0106853927, -0.00389529555, 0.0123173222, -0.00345703866, 0.0164230969, -0.00780789088, -0.0245885123, 0.00768679334, -0.00683911238, -0.00159012247, -0.0184298512, -0.0110140853, -0.0109967859, -0.0104662646, -0.000975265517, -0.00519276643, 0.0181299914, -0.0015310155, -0.00833264552, -0.0110890502, 0.0139319524, -0.0127094472, 0.00824038126, 0.00574058713, -0.00368481688, -0.0141395479, -0.00524178194, 0.00740999961, 0.0164000299, -0.00331287528, 0.0214284509, 0.00686217891, -0.0226855557, 0.0119251981, 0.0196062252, 0.000728025276, 0.0168498196, -0.0110544506, 0.0238965284, 0.0178416651, 0.0128132449, -0.0136897583, -0.016273167, -0.0161693692, -0.0137589565, -0.000970219786, 0.0215091817, -0.00988961, 0.000414469832, 0.00696021, -0.00237148814, 0.00433066906, -0.00512645114, -0.00291065942, 0.0018741244, -0.000584582682, 0.0143240774, 0.029847594, -0.00169824506, 0.0153274545, -0.00110285019, 0.00757146254, -4.36770097e-05, -0.0118905986, 0.00897849724, 0.017230412, 0.00194332283, -0.0029467002, 0.00776175829, 0.0161347706, 0.0200098827, -0.014923797, 0.00382898049, -0.00346857193, -0.00757146254, 0.0296630654, -0.00884010084, -0.000459881296, -0.00596259907, 0.00535711274, 0.0178416651, 0.0321311429, -0.0071159061, 0.0142202796, -0.0161001701, -0.0060433303, 0.0173803419, -0.0049851709, -0.000724060752, -0.0103048012, 0.0302858502, 0.00103365176, -0.00193611474, -0.00572617073, 0.0143817421, -0.00504283654, -0.00476315944, 0.00627399189, -0.0113254786, -0.00178762642, 0.0158349089, 0.0180146601, -0.00227057375, 0.0124903182, -0.00530233048, -0.0151083264, -0.0357525274, -0.0090938285, -0.014727735, -0.00859790668, 0.00980887935, -0.00405387534, -0.00560795702, 0.000283281115, -0.0066026845, -0.00242194533, 0.00848257542, -0.00366463419, 0.0100510735, 0.0172765441, -0.000205432865, -0.0278639048, 0.00147262926, 0.0168036874, 0.00159300573, 0.0161924344, -0.0330768563, 0.00458728, 0.00292940065, -0.00931295659, -0.0247269087, 0.0124095874, 0.00913996063, 0.0161463022, -0.0028976847, -0.00518411631, 0.0197215565, 0.00436526816, -0.0225471593, -0.00493903877, -0.0107891904, 0.0215437803, 0.0136897583, 0.0276793763, -0.0263876729, -0.00946288649, -0.0113831433, -0.0065334863, -0.00397314364, 0.00442293379, 0.00284866919, 0.00574347051, -0.00616442785, -0.0191910341, 0.0111524817, 0.0506993905, -0.00888046622, 0.00988961, -0.000893813209, -0.0083960779, 0.000302562985, 0.00894966535, 0.0148891974, 0.00585303456, 0.0175187383, -0.00776752504, 0.0219935719, 0.011094817, 0.00705824094, 0.010062607, 0.0106219603, -0.0185336489, -0.0201598126, 0.0168844201, 0.0119367307, 0.00614136178, -0.0280484352, -0.0046910774, 0.0142318122, -0.0151775246, -0.0227201544, 0.00338495709, -0.0103682326, -0.0077098594, 0.0345761552, -0.000698471733, -0.00942828786, 0.0198599529, 0.00701210881, 0.0146931354, -0.00343973911, 0.0257418193, 0.0149699291, 0.00379726454, -0.00271892198, 0.015292855, 0.0260416791, -0.00334747462, -0.0206326675, -0.0258802176, -0.0135513609, 0.00276072952, -0.0232276097, 0.0258802176, -0.0144855399, -0.00428742, 0.00267999782, -0.00842491, 0.0280945674, -0.0162501, 0.0231699441, -0.00941098761, 0.0181530584, -0.00810775068, -0.00637778966, -0.00908806175, -0.0108872214, 0.0111467158, -0.00289480132, 0.00848834217, 0.000612694537, -0.0011915107, -0.00426723715, 0.0129285753, 0.01138891, 0.00402504252, -0.00822308101, -0.00787708908, 0.0103913, 0.00135946099, 0.0088747, 0.0057290541, 0.00659115147, -0.0136090266, -0.0195254926, -0.00308509707, -0.0167690888, 0.0021884006, -0.0127325132, -0.0111524817, 0.00187268283, -0.00372518273, 0.00610099593, -0.00200531306, 0.00060873, 0.0250498354, -0.0207134, -0.00628552493, -0.0113831433, -0.00364445127, 0.011192848, -0.0217629094, -0.00824038126, -0.00953785144, 0.0187989101, -0.0269412603, 0.00859790668, 0.0433643572, -0.00871900376, -0.015119859, -0.0198138207, 0.0114581082, -0.0164115634, 0.00826921407, 0.00294814189, -0.00354642, -0.005939533, -0.00589916715, 0.0137243578, -0.00357525283, -0.0180261936, 0.014750801, 0.0188104436, 0.0126633151, -0.00147623336, -0.0187066458, 0.0110659841, -0.0229508169, -0.00356083643, -0.0107891904, 0.00954361819, -0.0453941785, 0.0308394376, 0.0166537575, 0.00726583647, 0.00505148619, -0.010431665, -0.0356833301, -0.00633165753, -0.00782519, 0.00897273142, -0.0145432055, -0.00314564584, 0.0151544586, 0.0110083185, 0.0106219603, 0.00904769637, -0.0230776798, -0.00867287163, 9.55983633e-05, 0.003062031, -0.00847680867, 0.00415190635, 0.00278523727, -0.00408559106, -0.0195716247, -0.0101721706, -0.0111582484, -0.0218090415, 0.0187873766, -0.00157714775, 0.00491597271, -0.00198513037, -0.0427185036, -0.00437968457, 0.00108627137, 0.0115676727, 0.00676414743, 0.0111005828, 0.0164000299, -0.00191304856, -0.0217629094, -0.0136320926, 0.0177609324, 0.00189286564, 0.0077098594, -0.000284182141, -0.0156734474, -0.00706977397, -0.00471126055, 0.00498228753, 0.0241041239, -0.0122135244, 0.00936485548, -0.00460457942, 0.0194101632, -0.019883018, 0.0366751738, -0.0019101653, -0.0104547311, 0.00611829525, -0.00994727574, 0.00129530835, -0.0215091817, 0.00190872361, 0.00396449398, 0.0121558597, -0.00393854454, 0.000507094839, -0.00899003074, -0.00532251317, 0.0247269087, -0.0399736315, -0.00713897264, -0.0235851351, 0.00952055212, 0.00826344732, -0.00263963221, -0.0185105819, 0.00730620185, -0.0023527469, -0.013597494, -0.00606639683, -0.017230412, -0.0147046689, 0.0112562794, -0.00384051353, 0.00569733838, 0.00508320192, -0.0116484044, 0.0280253682, 0.000579897373, -0.00751956366, 0.00357813598, -0.00483235763, 0.0244039837, 0.00373959914, -0.0247499757, -0.0103048012, -0.0102471355, -0.0446329936, -0.0025747586, -0.00196927227, 0.0234813374, 0.0071966378, 0.00931872334, 0.0154889179, 0.0141049484, 0.0138742877, 0.00100337737, -0.0044287, -0.0171381477, 0.0273564495, -0.0195485596, 0.0242886525, -0.0237811971, 0.00360696879, -0.0235851351, -0.0049707545, 0.00270450581, 0.00820001494, -0.0101087391, 0.00122755149, 0.0158695094, -0.0103105679, 0.00174870226, 0.00102788513, -0.0274487156, 0.00179627619, 0.00755416322, -0.00508896867, 0.0138050886, -0.0322695412, 0.00622209301, 0.0252804961, -0.0159156416, -0.0119828628, -0.0195831582, 0.0254650265, 0.00554164173, -0.010235603, 0.000843356, -0.00637202291, 0.00360408542, -0.00160598045, -0.00108843378, -0.00927835796, -0.00327827618, 0.0111986147, -0.00268720603, -0.011561906, -0.0028544357, -0.00603756402, 0.0155696487, 0.0198714864, -0.00682181306, 0.0115100071, 0.014923797, -0.00743883243, -0.0156042483, 0.00199522171, -0.00945712067, 0.00127800868, -0.0125018517, 0.034460824, -0.0056108404, -0.000932016468, -0.0254188944, -0.0288788155, -0.00380303105, 0.00991267618, -0.00292219245, -0.0159041081, 0.00333882472, -0.00341090653, -0.000478982955, 0.0107661244, 0.0123634543, -0.00848834217, -0.00750226434, -0.00364156789, -0.016665291, -0.0159963723, -0.00597989839, -0.00698327599, -0.0119828628, -0.00543496106, 0.0152121242, -0.00811928324, 0.00240032095, 0.0169536173, -0.0311623644, -0.000897417252, -0.00629705796, 0.00489867292, 0.00484965742, 0.000435373513, -0.0317390189, 0.014162614, 0.0184875168, -0.0250959676, 0.0114984745, -0.000742441625, 0.0263876729, -0.0157541782, -0.017207345, -0.0102702016, 0.0252112988, 0.00670648227, -0.00290921773, -0.00811351743, -0.0308163725, -0.00472279359, -0.0163193, 0.0112332134, -0.000898858882, 0.00947442, -0.000244717405, 0.0310931653, 0.00872477051, 0.00926105771, -0.00915149413, 0.0170228165, 0.00301878201, 0.0322234072, 0.000982473721, 0.00794628728, -0.0174380075, 0.00984924473, -0.00897849724, 0.0132861007, 0.02007908, 0.0114811743, 0.014162614, -0.00604909705, 0.034899082, -0.00798088685, 0.0291556101, -2.04644475e-05, 0.011561906, 0.00163337158, -0.00845950935, 0.00379149779, -0.0540670492, 0.0198368859, 0.0107488241, 0.0100568403, 0.0139088864, 0.0286020227, -0.0123980539, -0.0134706302, 0.0033763072, 0.00484965742, 0.0140818823, 0.0058097858, 0.0140818823, 0.00236428017, -0.0089438986, -0.0169536173, -0.0302858502, 0.00366175082, 0.0254419595, 0.00817118213, -0.00536287902, 0.0194216948, -0.00751956366, -0.00986654405, 0.00652771955, -0.0335381776, 0.00227489881, -0.0108353226, -0.0142433457, -0.0120059298, -0.0281407, -0.00523601519]
08 Aug, 2018
unordered_multimap equal_range() function in C++ STL 08 Aug, 2018 unordered_multimap::equal_range() is a built-in function in C++ STL which returns the range in which all the element’s key is equal to a key. It returns a pair of iterators where the first is an iterator pointing to the lower bound of the range and second is an iterator pointing to the upper bound of the range. If there is no element equal to a given value in the container, then it returns a pair where both lower and upper bound points to the position past the end of the container or unordered_multimap.end(). Syntax: unordered_multimap_name.equal_range(k) Parameters: The function accepts a mandatory parameter k. The range returned will have the elements with key k. Return Value: It returns a pair of iterators. Below programs illustrates the above function: Program 1: // C++ program to illustrate the // unordered_multimap::equal_range() #include <iostream> #include <unordered_map> using namespace std; int main() { // declaration unordered_multimap<int, int> sample; // inserts key and element sample.insert({ 1, 2 }); sample.insert({ 1, 2 }); sample.insert({ 2, 3 }); sample.insert({ 3, 4 }); sample.insert({ 2, 6 }); // iterator of pairs pointing to range // which includes 1 and print by iterating in range auto itr = sample.equal_range(1); cout << "Elements with Key 1: "; for (auto it = itr.first; it != itr.second; it++) { cout << it->second << " "; } cout << endl; // iterator of pairs pointing to range // which includes 2 and print by iterating in range itr = sample.equal_range(2); cout << "Elements with Key 2: "; for (auto it = itr.first; it != itr.second; it++) { cout << it->second << " "; } return 0; } Output: Elements with Key 1: 2 2 Elements with Key 2: 6 3 Program 2: // C++ program to illustrate the // unordered_multimap::equal_range() #include <iostream> #include <unordered_map> using namespace std; int main() { // declaration unordered_multimap<char, char> sample; // inserts key and element sample.insert({ 'a', 'b' }); sample.insert({ 'a', 'b' }); sample.insert({ 'a', 'd' }); sample.insert({ 'b', 'e' }); sample.insert({ 'b', 'd' }); // iterator of pairs pointing to range // which includes b and print by iterating in range auto itr = sample.equal_range('b'); cout << "Elements with Key b: "; for (auto it = itr.first; it != itr.second; it++) { cout << it->second << " "; } cout << endl; // iterator of pairs pointing to range // which includes a and print by iterating in range itr = sample.equal_range('a'); cout << "Elements with Key a: "; for (auto it = itr.first; it != itr.second; it++) { cout << it->second << " "; } return 0; } Output: Elements with Key b: d e Elements with Key a: d b b Learn C++ Online – Master everything from basics to advanced concepts. Apply your knowledge with practical exercises and boost your skills. Take the Three 90 Challenge: finish 90% in 90 days for a 90% refund. Start now and level up your C++ programming!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum/Algorithm for Dynamic Time out timer Calculation/Difference between Round trip time (RTT) and Time to live (TTL)/Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms/Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm/Round Robin Scheduling Algorithm with Different Arrival Time/Selfish Round Robin CPU Scheduling/Find the order of execution of given N processes in Round Robin Scheduling/Calculate server loads using Round Robin Scheduling/set::lower_bound() Function in C++ STL/Implementation of lower_bound() and upper_bound() in List of Pairs in C++/Difference between std::set::lower_bound and std::lower_bound in C++/Difference between std::set vs std::vector in C++ STL/std::minmax() and std::minmax_element() in C++ STL/std::rotate vs std::rotate_copy in C++ STL/std::bitset::to_ullong and std::bitset::to_ulong in C++ STL/std::upper_bound and std::lower_bound for Vector in C++ STL/std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++/std::string::append vs std::string::push_back() vs Operator += in C++/Vector push_back() in C++ STL/vector :: cbegin() and vector :: cend() in C++ STL/unordered_multiset cend() function in C++ STL/unordered_multiset bucket() function in C++ STL/unordered_multiset emplace_hint() function in C++ STL/unordered_multiset end() function in C++ STL/unordered_multiset size() in C++ STL/unordered_multiset emplace() function in C++ STL/unordered_multiset find() function in C++STL/unordered_multiset erase() function in C++ STL/unordered_multiset clear() function in C++ STL/unordered_multiset swap() function in C++ STL/unordered_multiset bucket_size() function in C++ STL/unordered_multiset bucket_count() function in C++ STL/unordered_set bucket_count() function in C++ STL/unordered_set cbegin() function in C++ STL/array::cbegin() and array::cend() in C++ STL/array::rbegin() and array::rend() in C++ STL/multimap rbegin in C++ STL/vector rbegin() and rend() Functions in C++ STL/multiset rbegin() and rend() function in C++ STL/map rbegin() function in C++ STL/map upper_bound() function in C++ STL/Set upper_bound() in C++ STL/multimap upper_bound() function in C++ STL/multimap empty() function in C++ STL/multimap value_comp() function in C++ STL/multimap swap() function in C++ STL/multimap::swap() in C++ STL/multimap equal_range() in C++ STL/unordered_set equal_range in C++ STL/set vs unordered_set in C++ STL/unordered_set count() function in C++ STL/unordered_set bucket() function in C++ STL/unordered_set emplace() function in C++ STL/set::emplace() in C++ STL/multiset::emplace() in C++ STL/multiset find() function in C++ STL/multiset cbegin() and cend() function in C++ STL/multimap::cbegin() and multimap::cend() in C++ STL/multimap::begin() and multimap::end() in C++ STL/set::begin() and set::end() in C++ STL/unordered_multimap begin() and end() function in C++ STL/unordered_multimap empty() function in C++ STL/unordered_multimap find() function in C++ STL/unordered_multimap equal_range() function in C++ STL
https://www.geeksforgeeks.org/unordered_multimap-equal_range-function-in-c-stl?ref=asr10
PHP
unordered_multimap equal_range() function in C++ STL
unordered_multiset clear() function in C++ STL, What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, jQWidgets jqxTreeMap width Property, Round Robin Scheduling Algorithm with Different Arrival Time, Difference between Flow and TypeScript, set::begin() and set::end() in C++ STL, unordered_multiset emplace() function in C++ STL, jQWidgets jqxTree destroy() Method, unordered_set bucket_count() function in C++ STL, jQWidgets jqxTree collapseAll() Method, Find the order of execution of given N processes in Round Robin Scheduling, jQWidgets jqxScrollView buttonsOffset Property, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Vector push_back() in C++ STL, jQWidgets jqxListBox enableHover Property, Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm, std::rotate vs std::rotate_copy in C++ STL, Selfish Round Robin CPU Scheduling, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxSlider buttonsPosition Property, std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++, std::upper_bound and std::lower_bound for Vector in C++ STL, Difference between Round trip time (RTT) and Time to live (TTL), jQWidgets jqxSlider rtl Property, Difference between std::set::lower_bound and std::lower_bound in C++, jQWidgets jqxTooltip opacity Property, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, unordered_multiset erase() function in C++ STL, multiset find() function in C++ STL, set vs unordered_set in C++ STL, jQWidgets jqxToolBar height Property, PHP, std::minmax() and std::minmax_element() in C++ STL, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, unordered_set emplace() function in C++ STL, unordered_multimap empty() function in C++ STL, unordered_set bucket() function in C++ STL, map rbegin() function in C++ STL, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, map upper_bound() function in C++ STL, Node.js date-and-time Date.transform() Method, unordered_multiset size() in C++ STL, TypeScript Optional Parameters, jQWidgets jqxToolBar theme Property, Difference between std::set vs std::vector in C++ STL, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, Steps to Diagnose and Resolve a Slow Network, How to use Optional Chaining with Arrays and Functions in TypeScript ?, Calculate server loads using Round Robin Scheduling, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, jQWidgets jqxScrollView showButtons Property, set::emplace() in C++ STL, Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms, jQWidgets jqxScrollView disabled Property, multimap::cbegin() and multimap::cend() in C++ STL, jQWidgets jqxSplitter destroy() Method, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, set::lower_bound() Function in C++ STL, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, jQWidgets jqxTree collapseItem() Method, multimap upper_bound() function in C++ STL, std::string::append vs std::string::push_back() vs Operator += in C++, unordered_multiset swap() function in C++ STL, unordered_multiset cend() function in C++ STL, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), Set upper_bound() in C++ STL, jQWidgets jqxSortable opacity Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, multiset cbegin() and cend() function in C++ STL, multimap rbegin in C++ STL, vector :: cbegin() and vector :: cend() in C++ STL, multimap swap() function in C++ STL, jQWidgets jqxSlider height Property, jQWidgets jqxSwitchButton onLabel Property, unordered_multiset bucket_size() function in C++ STL, unordered_set cbegin() function in C++ STL, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, jQWidgets jqxToolBar tools Property, multimap empty() function in C++ STL, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTree width Property, multimap::swap() in C++ STL, multimap equal_range() in C++ STL, Implementation of lower_bound() and upper_bound() in List of Pairs in C++, jQWidgets jqxTree clear() Method, TLS Handshake?, multiset rbegin() and rend() function in C++ STL, Algorithm for Dynamic Time out timer Calculation, Adhoc TCP, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, jQWidgets jqxTabs position Property, Differences between Wireless Adhoc Network and Wireless Sensor Network, jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, unordered_multimap begin() and end() function in C++ STL, std::bitset::to_ullong and std::bitset::to_ulong in C++ STL, unordered_multiset emplace_hint() function in C++ STL, multimap::begin() and multimap::end() in C++ STL, unordered_multiset bucket_count() function in C++ STL, unordered_multiset find() function in C++STL, unordered_multiset bucket() function in C++ STL, Impact of Three-way Handshake and Slow Start Algorithm, array::rbegin() and array::rend() in C++ STL, multimap value_comp() function in C++ STL, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, multiset::emplace() in C++ STL, unordered_set equal_range in C++ STL, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, unordered_multimap equal_range() function in C++ STL, unordered_set count() function in C++ STL, vector rbegin() and rend() Functions in C++ STL, array::cbegin() and array::cend() in C++ STL, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, unordered_multiset end() function in C++ STL, How to Sort an Array Having Optional Properties in TypeScript ?, unordered_multimap find() function in C++ STL
GeeksforGeeks
[-0.0157712959, 0.00622767489, -0.0141133228, -0.00770066725, -0.0158809144, -0.00968064368, -0.0294050388, 0.0302819833, -0.0382292904, 0.01069461, -0.0374619663, -0.00660106121, 0.018128084, -0.0267605036, -0.0295694657, -0.0126197767, 0.0159220211, 0.0165797286, -0.0235541761, -0.034502279, -0.0239104349, 0.00541239092, -0.0492185019, 0.00752253784, -0.0369138755, 0.0014147578, -0.0366946384, -0.00737181306, 0.00906404201, 0.0113180624, 0.0144421766, -0.00503215333, -0.00221120147, -0.00719368411, -0.0147847328, 0.0141955363, 0.037215326, 0.00626878161, -0.0142777497, -0.00573439384, -0.0111878915, 0.0196353309, 0.0255684089, 0.00759790046, -0.0148806488, 0.0209918544, 0.0098656239, -0.00667299842, -0.00758419838, 0.00100283383, 0.0226087216, -0.00408327207, 0.0207452141, 0.0165386219, 0.0271852743, 0.0292132087, 0.0165249202, 0.0251710434, 0.00650514569, -0.0340638049, -0.00552543439, -0.0268564206, 0.0230883, -0.0315974019, 0.0298161078, -0.0101670735, -0.0192379653, 0.0420659222, 0.0115372986, -0.0098656239, -0.0208137259, 0.0499036126, 0.0105712898, -0.00242187362, -0.0320084691, -0.00966694113, -0.0489444546, -0.0143599631, -0.0250203181, 0.0295146573, -0.019662736, 0.00432991283, -0.00593307661, -0.0341734253, 0.0119278133, 0.0012743097, 0.0047752359, -0.0339815915, 0.0389144048, 0.0287199263, -0.0434361473, -0.00587826734, -0.00177444203, -0.00156805187, 0.000894928526, 0.0275552347, 0.0625919, 0.020142315, -0.0297887027, 0.0686757043, -0.0180458706, -0.0221017376, 0.00292029302, 0.0308300741, 0.0283636674, 0.0191694554, 0.0264727566, 0.00596390665, -0.00933123566, -0.00669355178, 0.0362835713, 0.00277470658, -0.0111536356, 0.0409697443, -0.00350777735, -0.0133459968, -0.0113043608, -0.0171826277, 0.020841131, 0.0197038427, -0.0310767144, 0.033926785, 0.0204026587, -0.00132055487, -0.0539046712, 0.0184706394, 0.012352583, 0.0208000224, -0.00686140405, -0.0056144991, 0.0127842044, -0.0174977798, -0.0270893592, -0.0388321914, -0.00990673061, 0.0325017497, 0.0321180858, 0.0258150492, -0.00185323006, -0.0183062125, -0.0432991274, 0.00144986983, -0.00153636537, 0.00881055, -0.0149902673, -0.0332690738, -0.0128664179, 0.0354888402, 0.00179670821, -0.0544253588, -0.0223894846, 0.000482576288, 0.0497939959, -0.00551515771, 0.0180047639, -0.0138598308, 0.00313781644, 0.0049191094, 0.0120305801, -0.0310493093, 0.0399831794, -0.0134145077, 0.0276785549, 0.0261302013, -0.00887906179, 0.0467520952, -0.00174789387, -0.00569328712, -0.0503968932, 0.0607832037, 0.0487252176, -0.0084679937, 0.0156616773, -0.00302819838, 0.000590909738, -0.0137502132, 0.00155691872, -0.00972175, 0.00538498629, 0.00439842371, 0.00328511558, 0.00160744577, 0.00429565692, 0.0147025194, 0.0343652554, -0.019470904, 0.0412985981, 0.0139694493, 0.0436279811, -0.00324058323, -0.00653940113, 0.0168811791, 0.0369412787, 0.0605091602, 0.049985826, 0.019183157, -0.0129417796, 0.0120853893, 0.0132021224, 0.0303641967, 0.00815284159, -0.0159768295, -0.00323887053, -0.00147556164, 0.0474646129, -0.00566588249, -0.0166208353, -0.00384690822, 0.00939974748, -0.0205396805, -0.062427476, 0.0128458645, 0.00499789743, 0.0178129319, -0.0106260991, 0.00131456007, -0.0227183383, 0.0349133462, 0.0209507477, -0.0280485172, -0.0171689261, -0.0303916018, 0.0294872522, -0.0366946384, -0.0198134612, -0.0209644511, 0.0152506102, 0.0244311206, 0.0044429563, -0.0198134612, 0.00302819838, 0.0370783024, -0.0248284861, -0.0113934251, -3.60487065e-05, -0.0112975091, -0.0507531539, -0.0336527377, -0.00265309913, 0.033899378, -0.00449433969, -0.00320118945, -0.0165386219, 0.0221017376, 0.0345570892, 0.0114208292, 0.0122429654, -0.0013436774, 0.0153876329, 0.00338103157, 0.0236226879, 0.0146751152, 0.0210192595, -0.0116263637, -0.0286103096, 0.0247599743, -0.0115715545, -0.0233486425, -0.00804322399, -0.0348859429, 0.00148669467, 0.0267331, -0.0395173021, -0.000322003, 0.0238556266, 0.000250066165, 0.031213738, -0.0100232, -0.0375715829, -0.0346941091, 0.0251573399, -0.00233452162, -0.00770066725, -0.0144010698, 0.0269112289, 0.0037441412, -0.0231431089, 0.0107220151, 0.00561107369, -0.0374071561, 0.0155931665, -0.0132706342, -0.0188131966, -0.00773492316, 0.0221017376, -0.00915995799, -0.00541239092, -0.00116126612, -0.0362013578, -0.0192927755, -0.0225265082, -0.00633044168, -0.033104647, -0.0079404572, 0.0367220454, 0.0508353673, 0.0143736657, -0.0434361473, -0.0495747589, 0.020937046, -0.00284835626, -0.00853650458, 0.00798156392, -0.0331320539, 0.0365302116, -0.0129143754, -0.0238830298, -0.000670125941, 0.00731015299, -0.0290761851, -0.0157301892, -0.0376263931, -0.0372701325, 0.0138598308, 0.00350263901, -0.0149765648, 0.0351051763, 0.0147573287, 0.000623024418, 0.0262261163, 0.0138050225, -0.0210740678, 0.00473412918, 0.0323373228, 0.0218687989, -0.0478482731, -0.00525481487, 0.041654855, -0.0270619541, -0.068401657, -0.0305286236, 0.0149491606, -0.0150450757, -0.0254313853, -0.00423742225, -0.0317618288, 0.0073512597, -0.00636812299, 0.0241433736, 0.0210466646, 0.00468617119, -0.0289665665, 0.00755679375, 0.019374989, 0.0248421878, 0.00289973966, -0.010310947, -0.0144010698, 0.0222387593, 0.0634688437, 0.00115441496, -0.00377839687, -0.000145265309, 0.00861871894, 0.0119757708, -0.0449159928, -0.0218276922, -0.0131747182, 0.0223346762, 0.0304190069, -0.0315425918, 0.04047646, -0.0326935798, 0.00730330218, -0.0254450869, -0.0124416472, -0.0196079277, 0.0151546942, 0.0210603662, -0.0151546942, 0.0270893592, -0.0362835713, 0.0173059478, 0.0335705243, -0.0639073178, 0.0102972444, 0.0253217667, 0.0238145199, -0.0104274163, -0.025691729, 0.000488571, 0.0460395776, -0.00863242056, -0.0152095035, 0.0294324439, 0.00468274578, 0.00478893798, 0.0197449494, 0.00759104919, -0.0163467899, -0.0197449494, 0.0160042346, 0.000280682143, -0.0261576045, -0.000730073254, 0.000196006484, -0.032172896, -0.0222524628, -0.0163193867, -0.0419289023, 0.0215399452, -0.00639210222, -0.020663, 0.00348722399, -0.0202108268, -0.0303916018, 0.0038332059, -0.00568986125, 0.00435046619, 0.0330224335, 0.00900923274, 0.0214303266, -0.0296242759, 0.00813228823, 0.00313952914, 0.00845429115, -0.0231568106, 0.0639621243, -0.0145929018, -0.01075627, -0.0173059478, -0.0398461595, -0.00683742529, -0.00629961165, -0.0116880238, 0.026746802, -0.0148395421, 0.0243078, -0.0031566571, -0.0236774962, -0.0167030487, 0.0107836751, 0.00245270366, 0.0311041195, -0.00803637225, -0.0264042448, -0.0208822377, 0.00626535621, -0.0310493093, -0.0147436261, 0.00691621331, 0.0487800278, 0.0262809247, -0.0273634028, 0.0059228, 0.0201560166, -0.00577550055, 0.00644691102, 0.0225676149, 0.0274867229, -0.00329025392, 0.0311863329, -0.030610837, -0.00477181049, 0.0627563298, -0.0244448241, 0.0440390483, -0.00286205858, 0.0504243, 0.0419837087, -0.0147847328, 0.0170867126, -0.00338274427, -0.004532021, -0.00588169321, 0.0233760476, 0.0161960647, 0.0166893471, -0.00724164164, -0.0318440422, 0.000233794723, -0.0463410281, 0.0133117409, 0.0172511395, 0.0366946384, 0.0203341469, -0.0192927755, 0.0152369076, -0.0308574792, 0.0212110914, 0.0458203405, -0.0318988487, -0.0272674877, 0.0204711687, -0.000969434564, -0.0303093884, 0.036036931, 0.000882939086, -0.0158535093, 0.0140722161, 0.00294598495, 0.0161275547, -0.0198408663, -0.0317070186, -0.0101670735, 0.0149902673, -0.047272779, -0.00563162705, -0.0281170271, 9.80032419e-05, 0.0231842156, 0.00416206, -0.0267193969, 0.0267056953, 0.0300627481, -0.0408875309, -0.0159905311, 0.0300627481, -0.022471698, -0.0171689261, 0.0130308447, 0.0217180736, 0.0303093884, 0.00161429693, 0.0125307124, -0.0181691907, 0.0200189948, -0.00785139203, -0.022403188, -0.0171278194, 0.00700527802, 0.0195257142, 0.0135583812, 0.0245407391, 0.022183951, 0.0199915897, -0.0120853893, 0.00362082082, 0.0162508748, -0.0281992406, -0.0213755183, -0.0123388804, -0.00711832149, 0.00146785413, -0.0376263931, -0.0432991274, -0.0164975151, 0.0295146573, -0.0175251849, -0.00994098652, -0.0289117582, 0.00696417131, 0.00148926384, 0.0248421878, -0.0261302013, 0.0142229404, 0.023458261, -0.000319862, -0.00670382846, 0.0254998971, 0.00984507054, -0.021608457, 0.00076004694, -0.015798701, -0.00942030083, 0.0164290033, -0.0187446848, -0.0266371835, -0.00403873948, -0.0171963293, 0.00803637225, 0.0104342671, 0.0291858036, 0.0162919816, 0.0159357227, -0.0347215161, 0.00431278488, 0.0151409917, -0.031789232, -0.00637497427, -0.00354545843, -0.02904878, 0.0312685445, -0.00117239915, -0.0239515416, 0.0282266457, 0.0138324266, 0.0305012204, -0.0140722161, -0.0168263689, -0.00340501033, -0.00883110333, -0.0184980445, 0.00586799067, 0.00429908233, -0.0459299609, -0.0310767144, -0.0160316378, -0.0191146452, 0.0185939595, -0.00342213828, 0.0194983091, -0.0152369076, -0.0108179301, 0.026650887, -0.00692649, -0.000685112784, -0.0202245284, -0.00940659828, 0.0018480916, 0.0316522084, -0.00620369613, 0.0260479879, -0.0112701049, -0.00332964794, -0.00136679993, 0.032172896, 0.01889541, 0.0398187526, -0.00894757267, -0.0557407737, 0.0435183607, 0.0119072599, 0.00256403442, 0.012606075, -0.0072964509, 0.00825560838, 0.0244311206, -0.00715942821, -0.017360758, -0.029651681, -0.0451352298, -0.0125307124, 0.0279114936, 0.00539183756, 0.0176348016, -0.0353244133, 0.00484032184, 0.000270405435, 0.00231568119, 0.0172648411, -0.0217454787, 0.021992119, -0.0134145077, 0.0361739546, -0.00263597141, -0.00989302807, 0.0253354702, -0.0027147592, 0.0231294073, -0.00185494276, 0.0134898704, 0.0278977919, 0.0367494486, -0.00639210222, -0.0119757708, 0.00462793652, 0.0211014729, -0.000103890925, -0.00619684486, -0.0385033377, 0.00657023117, 0.0249655098, 0.000537385291, -0.0152917169, -0.0206355955, -0.0213070065, 0.005809756, -0.0237597097, 0.0216769669, -0.0272400826, -0.0361465476, 0.0185117461, -0.0179225504, -0.00537470961, -0.0113043608, -0.00294941035, -0.0214851368, -0.00281752623, -3.59148944e-05, -0.0146477111, -0.024705166, 0.000189262399, -0.013599488, -0.00183096388, -0.00625850493, 0.0106877591, 0.0111193797, -0.000952306727, -0.0185665563, -0.00683742529, -0.0248695929, 0.0429428667, -0.0122703696, 0.0314603783, -0.0195257142, 0.0283636674, -0.0101396684, 0.0215262435, -0.0533565804, -0.0150861833, -0.0427784398, 0.001986827, 0.0514108613, -0.00874203909, 0.0277607683, -0.0106809083, 0.0140996203, -0.0263220314, -0.0143873682, 0.0131952716, -0.0013119909, -0.0138598308, -0.0176211, 0.00660791248, 0.0188680049, -2.93313897e-05, 0.0128390128, -0.0130788023, 0.00100454653, 0.00599131128, 0.00924902223, -0.0175525881, 0.0291583985, 0.00855705794, -0.00385033363, 0.00134025188, 0.00642635766, 0.00414493214, -0.0570013821, 0.00804322399, 0.0188268982, 0.0155520597, -0.0118250465, 0.0347489193, -0.0144284749, -0.00979711208, -0.0360095277, -0.0130445473, -0.00311383745, -0.0358451, 0.00498077, 0.0167304538, 0.00207075337, -0.0181143805, 0.0219236091, 0.0307752658, -0.0394624956, -0.0155794639, -0.00601529, 0.0159768295, 0.00206218939, 0.00652912445, 0.00889276341, 0.00666614715, -0.001204942, 0.00192002847, -0.0286377128, -0.0295968708, -0.000260771048, 0.00939289574, 0.00963268522, -0.0220880359, -0.0328580067, 0.00116726081, 0.000535244355, 0.045546297, -0.0137228081, 0.00683742529, -0.0107288659, 0.0374345593, 0.00164940895, 0.0210740678, 0.0193201806, -0.0032971052, -0.00388801494, -0.0137707666, 0.0245681442, 0.0200189948, -0.000667984947, -0.0165523235, -0.0193612874, 0.027801875, -0.00166396762, -0.0167852622, -0.0250614248, -0.028473286, -0.00556654111, 0.00570698921, 0.0156890824, -0.00392569602, 0.0418740921, 0.0176896118, -0.005090388, -0.016949689, -0.0221976526, 0.0202656351, 0.0285280943, 0.0303093884, -0.0165112168, 0.00111673377, -0.00630303752, 0.0248421878, 0.0214029234, -0.00237391563, -0.0205807872, -0.0175799932, -0.0596870221, -0.0369412787, -0.0336527377, 0.0164427068, -0.00276785553, -0.00461766, -0.00606667344, -0.0256506223, -0.0248558912, 0.0168263689, 0.0529729165, 0.0289117582, 0.0495473556, -0.00687168073, 0.0391336419, -0.0022043502, 0.00915995799, 0.0113112116, -0.0170867126, -0.0103383511, 0.00580290519, 0.00466561783, -0.00826931093, 0.0183747243, -0.0253080651, 0.0137776174, -0.0369686857, -0.028692523, 0.0158261042, 0.0332416706, 0.0347215161, 0.0190461352, -0.031213738, -0.0105575873, 0.0208274275, 0.00242701196, 0.00907774363, 0.000619170663, -0.0112769557, 0.0125238616, -0.0130308447, 0.00565903122, 0.0481771305, 0.00262055639, -0.0120031759, -0.0109343994, -0.00581318187, 0.0247873794, -0.017360758, -0.0121264961, 0.0184432361, -0.00230540452, 0.0130171422, 0.0123388804, 0.0140722161, -0.0148532446, -0.011044018, 0.0120031759, 0.00987932552, -0.0335705243, -0.041654855, 0.0128184594, 0.0259931777, 0.0255410038, 0.00475468254, -0.00950251427, 0.026746802, 0.0303093884, 0.0214577317, -0.0107836751, -0.0448063761, 0.0128732687, -0.0218413938, 0.00121950067, 0.0145654976, -0.00279697287, 0.00728959963, 0.00157747208, -0.00896127522, 0.0032988179, 0.0188406017, -0.00348551106, -0.00781028531, 0.0159357227, -0.018799495, -0.0424495861, -0.0626467094, 0.00180184655, 0.0205944888, -0.00765270926, -0.0223209728, -0.00503215333, -0.0118318973, 0.0210877713, -0.0172100328, -0.0193475839, -0.0109960595, 0.00317207212, 0.0056693079, 0.00242358632, -0.00207931711, 0.0251299366, -0.00632359087, 0.00137707661, -0.00109189842, -0.00786509458, 0.00636812299, 0.0248147845, 0.0179225504, 0.0299257245, 0.0216906704, 0.00847484451, 0.023718603, 0.00449433969, 0.00436416827, -0.0315151885, -0.0498762093, 0.0153328236, -0.0164153017, -0.0221976526, 0.0298435111, 0.0154013345, 0.00778973196, -0.00277984492, 0.0351325832, 0.0301449616, 0.00726904627, -0.00761845382, -0.0366946384, -0.0175114814, 0.00320461486, -0.029651681, -0.0093106823, -0.0223072711, 0.0079130521, 0.0171689261, 0.00317721046, -0.0256369188, -0.00959157851, 0.0106055457, -0.0236226879, -0.0502872765, -0.00734440889, -0.00123577216, 0.012989738, 0.0107014617, -0.0166071337, -0.0224442948, 0.0108247818, -0.0471905656, 0.0112632541, -0.000155006768, 0.0187857915, -0.0124827549, 0.00805692561, -0.0170182, -0.0229101703, -0.00490198191, 0.00604612, -0.0261439029, 0.00246298034, -0.0393528752, 0.00107305788, -0.00204334874, 0.00236363895, 0.0149491606, -0.00726904627, 0.0254039802, -0.016853774, -0.0093038315, -0.0341734253, -0.0388595946, 0.0128732687, 0.00831726845, -0.0193064772, 0.0203341469, 0.00414150674, 0.00787194539, 0.0268564206, -0.0457381271, -0.0294324439, -0.00546377432, 0.0204848722, 0.000448320672, 0.0300079379, 0.0137844691, 0.0113591691, 0.013277485, 0.032967627, -0.00673123263, -0.0175662916, -0.0218276922, 0.0182514042, -0.00309499679, 0.0272126794, -0.0322825126, -0.00429908233, 0.0394350886, 0.0611668676, 0.0407505073, -0.0200601015, 0.00849539787, -0.0137296598, -0.00445323298, -0.00617286609, -0.0328032, 0.0401750132, 0.0152917169, -0.00708406605, -0.0296242759, 0.0162234697, -0.0234445594, -0.00375099224, 0.0119620683, -0.0372701325, 0.0120100267, -0.0361191444, -0.00615231274, 0.00305731571, -0.00375784351, -0.0184706394, 0.0363931879, -0.0127293952, -0.0236363895, -0.00577550055, -0.0483689606, 0.00730330218, 0.00111673377, 0.00793360546, 0.00109618041, -0.00557339238, 0.00657023117, -0.00711147, 0.00539526297, -0.0121401977, 0.0214714333, 0.0141681321, -0.0068751066, -0.00499104662, 0.00658050785, -0.0293502305, -0.00136337441, 0.010598694, 0.0117839398, 0.00885165669, 0.0036310975, 0.0133596985, -0.00698472466, 0.0130102914, 0.00160059473, -0.00840633363, 0.0192927755, -0.00239446899, 0.00013327584, 0.008330971, -0.00108247821, 0.0238556266, 0.0186213646, 0.00758419838, 0.0180047639, -0.0251162332, 0.0134145077, 0.0109275486, -0.0113043608, -0.0127705019, 0.0106192473, 0.00093089696, 0.0173059478, 0.0205533821, 0.0152917169, -0.00102681271, 0.0383389108, 0.00267707813, 0.0114345318, -0.0134487636, 0.00559394574, -0.00657708244, -0.004021612, -0.00443953089, 0.028473286, -0.00514862221, 0.0197449494, -0.0398461595, -0.0223072711, -0.0249381047, 0.00956417434, 0.0295968708, 0.0112975091, -0.0273908079, 0.0160453413, -0.00946825836, -0.0316796154, -0.0140585136, 0.00318577443, -0.002433863, 0.0262946282, 0.00437444495, -0.00814599078, -0.00831041764, 0.0214714333, 0.0636880845, -0.00645033643, 0.00413123, -0.00439842371, 0.0115235969, 0.0247599743, -0.00516575, 0.00560422242, 0.0251162332, -0.000635013857, 0.0268975273, -0.00249209767, 5.07946897e-05, 0.0154972505, 0.0152369076, 0.0261987112, 0.0315425918, -0.0145106884, 0.00288603758, -2.90102435e-05, -0.00973545201, 0.0183884259, 0.00340843596, -0.00256574736, -0.00138050225, -0.00375784351, 0.020663, -0.0161275547, -0.0114824902, 0.0125649683, -0.00980396383, -0.00568301044, 0.0244448241, -0.0215947535, 0.0139625976, 0.0385033377, -0.00192002847, 0.036639832, -0.00921476632, 0.0347215161, -0.0117565347, 0.0350503698, -0.00739921769, 0.00777603, -0.0223209728, -0.0271852743, -0.00443953089, -0.00564190373, -0.0128664179, 0.00273017422, -0.011715428, -0.020142315, 0.0241159685, 0.00291858031, 0.00687168073, 0.00170250516, 0.0141818337, -0.0475194193, -0.00335362693, -0.0227457434, -0.00748143112, -0.00892701931, 0.0229786821, -0.0134008052, 0.0212796014, 0.00879684743, -0.0161275547, -0.0272674877, 0.0178814437, -0.00203992333, -0.0144695817, -0.00239275629, 0.0630851835, 0.00232253224, -0.0367220454, 0.0190324318, 0.00883110333, -0.0336527377, -0.00996154, 0.0120922402, 0.00498077, 0.0184843428, -0.00374071556, -0.0106877591, -0.0070121293, 0.00872833654, 0.000519829278, -0.00119038345, -0.000669697707, -0.000812286802, -0.0301997699, -0.00571384048, -0.0297887027, 0.00674150931, -0.00102852553, 0.0033502013, -0.00323201949, 0.0105370339, -0.0196901411, -0.00516575, -0.00816654414, 0.0085776113, 0.0117085772, 0.0134282103, 0.00252464041, -0.0440390483, -0.0104342671, 0.00140533759, 0.0167989656, 0.0220058225, 0.0188268982, 0.00106535037, 0.010372607, -0.0131130582, -0.00508696213, 0.01452439, -0.00982451718, -0.00745402696, 0.00241330964, -0.00456970232, -0.000440613134, 0.0127225434, 0.019183157, 0.00903663691, -0.0133871036, -0.020937046, 0.0263768416, 0.00963953603, 0.0257328358, 0.00272332318, -0.00448063761, -0.0181006789, -0.0207589157, -0.0167578589, -0.00192859245, 0.00287062256, -0.00233280892, 0.028692523, -0.00336732925, 0.00809803233, 0.0135172745, 0.0116674704, -0.00593307661, -0.0297338944, -0.0112838075, -0.0237871148, 0.0213481132, 0.0155794639, 0.0215536468, -0.0249792114, -0.0341460183, -0.0156342722, -0.00202108268, -0.0211151745, 0.00102338719, -0.00186693226, 0.0144147724, 0.0181691907, -0.00614888687, -0.0448337793, 0.00436074287, 0.00339130824, 0.0274045095, 0.0364205949, -0.00238247961, -0.00876259245, 0.00356943742, -0.0213481132, -0.0504517034, 0.0138666825, 0.0153602278, 0.00237562857, 0.0159220211, 0.00331765856, 0.0277333651, -0.000974572904, 0.00702240597, 0.0304190069, 0.0137022547, 0.0297338944, -0.0336253345, -0.0183062125, -0.0189091116, 0.0232116207, -0.00519315479, 0.0229923837, -0.0184980445, -0.00660106121, -0.024705166, 0.0248284861, -0.00698815, 0.00441555167, 0.0108384835, 0.0153191211, 0.0103863096, 0.0411067642, 0.0123251788, -0.0165112168, -0.0256643239, 0.0323373228, -0.0130102914, -0.0060906522, -0.00249894871, -0.0205122754, 0.0132021224, -0.0112701049, 0.00676891394, 0.0100574549, 0.0198682696, 0.00553913647, -0.00171877665, -0.0231294073, -0.0153739303, -0.0149628622, -0.00288946298, 0.000182625372, 0.00145843381, 0.00777603, 0.0258561559, 0.0258013457, 0.0177992303, 0.0293502305, 0.00683742529, -0.00464163907, -0.0323921293, -0.0119209616, -0.00852280296, -0.000680830795, 0.0102766911, -0.0136954039, -0.0227868501, 0.000381522172, -0.00511436677, 0.015675379, -0.0018463789, -0.00668670051, 0.000532675185, -0.024129672, -0.0246366542, -0.00386403594, 0.021128878, -0.0160179362, -0.0218825024, 0.0186213646, 0.035461437, -0.000189583545, -0.00537128421, -0.0120031759, -0.00759790046, -0.00317207212, -0.032145489, -0.00475125713, 0.0101602217, -0.0129965888, 0.0153739303, 0.00822820421, 0.0135789346, -0.000970290916, -0.00665244507, -0.0321180858, -0.0100780083, -0.00665587047, 0.00128886837, 0.0277881734, -0.0105712898, -0.0213070065, -0.01452439, 0.0150450757, -0.0153054185, -0.0163604934, 0.000392012967, 0.00708406605, -0.00391541934, 0.00909144618, 0.0077691786, -0.0157712959, -0.0240063518, -0.00535073085, 0.0253902785, -0.00974230375, -0.00325257285, 0.0228827652, -0.00796786137, 0.0112838075, -0.00502530206, -0.022759445, 0.00662846584, 0.0147025194, 0.0240885653, -0.0284184776, -0.00638867635, 0.00492938608, -0.00670725387, 0.000584486814, 0.0229238737, 0.0296790842, -0.000864526664, -0.00452516973, 0.00094031723, -0.0180321671, -0.00855705794, -0.00529934699, -0.0102013294, 0.0241570752, 0.00410382543, -0.0127773527, -0.00713202357, 0.0086392723, -0.00744032441, -0.0061797169, -0.0337075479, -0.0215125401, -0.0303367935, 0.0320358723, 0.0101739243, 0.00447378634, -0.00236021355, -0.0144147724, -0.0115030436, 0.0149628622, -0.0216769669, -0.0131130582, -0.0258972626, 0.0158672109, 0.00167338795, -0.0285829045, -0.00774862524, 0.0126608834, -0.017648505, 0.0282540508, 0.0544801652, -0.00403873948, 0.0216221586, 0.00531304954, 0.00126917136, -0.00657023117, -0.00746087776, 0.0276374482, 0.00713202357, -0.00434018951, 0.00522055943, 0.0282266457, -0.0177307185, -0.00260856678, 0.0228416584, -0.00140362477, -0.0204163603, 0.00911199953, -0.0131062074, 0.00336561631, -0.0308300741, -0.0161275547, 0.000697102223, -0.0157575943, -0.0146066044, -0.0387499779, 0.00931753311, 0.0229101703, 0.0235130694, 0.0260205828, -0.0231979173, -0.0125170099, -0.00226258487, -0.00582688395, 0.0328032, -0.0107905259, 0.0348037295, -0.00737866433, 0.0219236091, 0.0136748506, -0.0124896057, 0.0120237293, -0.0344748758, 0.0168400723, 0.0295146573, -0.00991358142, -0.0258972626, -0.0164153017, -0.0197723545, -0.0109823579, -0.0130651006, -0.0107631218, -0.00744717568, 0.0100300508, -0.0125307124, 0.0124622006, -0.0079404572, 0.0185254496, -0.00230711722, 0.0131541649, 0.0233212374, 0.0176622067, 0.0213207081, 0.0106329499, -0.00297167664, -0.00376812019, -0.00236877729, -0.0284184776, 0.00531990035, -0.0235130694, 0.000118074902, 0.00747458031, 0.0192516688, 0.0139077893, 0.00158175407, 0.00290145259, 0.0137639157, -0.0224305913, 0.0446145423, 0.00270962087, -0.00499447202, 0.035077773, -0.0016245736, -0.0262946282, 0.0221291427, 0.01512729, 0.0133254435, 0.00602899212, -0.00898182858, 0.0166071337, 0.0119826226, -0.0224991031, -0.0218413938, -0.0315974019, 0.0106466524, -0.0293228254, -0.0186624713, -0.00148583832, 0.0044429563, -0.00807062816, 0.0109001435, 0.00483689597, 0.0150724808, -0.000965152576, 0.0281170271, 0.0145106884, 0.00176073983, 0.00452516973, -0.00050013233, 0.00809118152, -0.00272332318, -0.00900923274, 0.00739921769, -0.00739236642, 0.00240817131, 0.0116332145, 0.0221017376, 0.0115921078, 0.0113934251, 0.00039436802, 0.00623795157, -0.0230334904, -0.0132432291, 0.00732385553, -0.0082967151, 0.000372744165, -0.0157712959, 0.000130064378, 0.0173059478, 0.0116400653, 0.0196490344, -0.00387088698, 0.0110645713, -0.0108316327, 0.0268701222, 0.0105575873, -0.00845429115, 0.00837892946, -0.0254587904, 0.0118181948, 0.00214954116, -0.0107631218, -0.00514862221, -0.0140585136, 0.0335157178, 0.0160590429, -0.00421001809, 0.00980396383, -0.0135926371, -0.0147984354, 0.00370303448, 0.0326387733, 0.00371331116, 0.0331868604, -0.023239024, 0.00207760441, -0.0287199263, 0.011044018, -0.0140996203, -0.0142229404, -0.0173333529, 0.00219236081, -0.00411752751, 0.0155794639, -0.00355573511, 0.00607352471, 0.000619598839, 0.0190050285, 0.0184843428, -0.0119415149, -0.0170045, -0.0128184594, -0.000550659373, 0.0290213767, 0.0195805226, -0.00848169625, 0.0146477111, 0.0038571849, 0.00627563288, -0.00521370815, -0.0157849975, -0.00907774363, 0.0071525774, -0.0114139784, 0.0157712959, -0.0101054134, 0.0131473141, -0.010948102, -0.0148532446, 0.00571726589, 0.00110474427, -0.015606869, 0.00839948282, 0.0128527153, 0.000136915507, 0.0355710536, 0.00776232732, -0.01069461, 0.0196901411, 0.00708406605, -0.0149628622, 0.00936549157, -0.00482661929, 0.00382292923, -0.0151409917, 0.00112615409, -0.0128801195, 0.00557681778, 0.0147847328, 0.00442582835, 0.00177958037, 0.00308472, 0.00186350674, 0.0290761851, -0.005809756, -0.0232116207, -0.00179670821, 0.0152643118, 0.0104959272, -0.00944085419, 0.000141625656, 0.0167304538, 0.0170730092, -0.00111159543, 0.00114499475, 0.00956417434, 0.0117565347, 0.0170182, -0.0133665502, 0.00989302807, 0.0297338944, 0.00774862524, -0.0150587782, 0.0152780144, 0.00883795414, -0.00193886913, 0.0109549528, 0.00992728397, -0.00787879713, -0.00299051707, 0.00328682852, -0.0118250465, 0.014010556, -0.00130599621, 0.0159494244, 0.0182102975, 0.0102561377, -0.0215262435, 0.00643663434, 0.00404559076, 0.0172648411, 0.000977998483, -0.00757049583, 0.0013316879, -0.0165386219, -0.0165249202, 0.0140996203, 0.00302991108, -0.0101739243, -0.00141133228, -0.00768011389, 0.0115921078, 0.00620369613, 0.0195531175, -0.0157438908, -0.0141681321, -0.00455942517, -0.00662504043, -0.0281444322, 0.00862557, 0.000111437868, 0.00479236385, 0.0158261042, 0.0100300508, -0.00143616763, -0.0174566731, 0.00974230375, 0.0107014617, -0.0314329751, -0.00615231274, 0.00597760873, -0.0299257245, 0.00576179847, -0.010564439, 0.00939289574, -0.00353518175, -0.00657023117, -0.0184295326, -0.00199881638, -0.0146614127, -0.00491225859, -0.0163604934, -0.000104586747, 0.000112401314, 0.00700527802, -0.0097286012, -0.00244071428, -0.0100574549, -0.0193338823, -0.00654967781, -0.0122498162, 0.000909487193, -0.00936549157, 0.0133185918, -0.00709776813, 0.00132141123, 0.00297338935, -0.00887906179, -0.00365850213, 0.0250614248, -0.00602214132, 0.00374756684, -0.0171963293, -0.0128595661, -0.0232938342, -0.00745402696, 0.00168452098, -0.00214097742, -0.00220263749, 0.0166208353, 0.0153602278, 0.00482661929, 0.00238933065, -0.0338171646, -0.0157301892, -0.0247325711, 0.019950483, -0.0129417796, -0.0247873794, 0.0153739303, -0.00255033234, -0.0115921078, 0.000827701821, 0.00981081463, 0.0194846075, -0.0187720899, 0.0177718252, 0.0400928, 0.00256917276, 0.00680317, 0.00538498629, -0.00706351269, -0.0159631278, -0.00436759368, 0.0141955363, 0.0106535032, 0.0228827652, 0.0147847328, 0.0154013345, 0.00323544489, -0.00850225, 0.00432991283, 0.00998209324, -0.00635099504, 0.00346667063, -0.0115167452, -0.0136337439, -0.0085776113, -0.00221805251, -0.0156479757, -0.000234437015, 0.000149333166, 0.00229855324, 0.00921476632, 0.0259246659, -0.0137228081, 0.000713373651, 0.0127019901, 0.0018206872, -0.00671067927, 0.0198408663, 0.0119346641, 0.00574124511, -0.0125581166, -0.0224168897, -0.00376812019, 0.00125118718, 0.0140859187, -0.0141818337, -0.0131815691, 0.00909144618, -0.00223518047, 0.0130719515, -0.0102629894, -0.00475468254, -0.0217865855, -0.00107391423, -0.0221428443, 0.0193201806, 0.00962583441, 0.0202245284, -0.00872833654, 0.00485059852, 0.00180013373, -0.0109892087, 0.00201594434, 0.0124553498, -0.0198545679, 0.00555626443, -0.00658050785, 0.00507668545, 0.0211836863, -0.00211871113, -0.00403873948, -4.38565849e-06, 0.00117411197, 0.0124279456, -0.0031600825, -0.0142503455, -0.00635099504, 0.00868037902, -0.00735811098, -0.0100917108, 0.0233623441, -0.0130171422, 0.000426054496, 0.00987932552, -0.0100163482, 0.00132055487, 0.0246503577, -0.000346838322, -0.000177165872, 0.00208445545, -0.0184021294, -0.00246298034, 0.0167715605, -0.0095847277, 0.0247325711, 0.0148669472, -0.0123183271, -0.0239926483, -0.00749513367, -0.00019086813, -0.00907774363, 0.0192790721, 0.00662504043, -0.00783768948, 0.000392441143, -0.0129212262, -0.020649299, 0.0229786821, 0.0021786585, 0.0440938585, -0.0112701049, -0.0183610227, -0.00153208338, -0.022471698, -0.0173333529, 0.00814599078, 0.0309122875, -0.00851595122, -0.00347180897, -0.0197449494, 0.00666957255, -0.000694104878, 0.0152506102, 0.00746087776, -0.00199710368, 0.0201149099, 0.0133665502, 0.0003596842, 0.0204711687, 0.0104411189, 0.0133254435, 0.0231294073, -0.0142914522, -0.0107836751, 0.0174703747, -0.0119483666, -0.00124604884, 0.0179499537, -0.0289117582, 0.00778288115, -0.0210329611, 0.0134282103, 0.00121179316, 0.000353475363, -0.00302648568, 0.00717998156, 0.0085776113, 0.00378182251, 0.00956417434, -0.00175560149, 0.00658735912, 0.00886535924, -0.000694961229, -0.000236363907, -0.00142760365, 0.00151153, -0.00560422242, -0.020717809, 0.0160727445, -0.00140448113, 0.0104205655, 0.021992119, 0.00278840889, -0.0307478607, -0.0147847328, -0.0207452141, 0.00601186464, 0.00805692561, -0.0159220211, -0.0159083176, -0.00679289317, -0.0128801195, -0.01264033, 0.0274456162, 0.00304875174, -0.0231431089, 0.00235507521, 0.0204574671, 0.0262535214, -0.00635099504, -0.0176759083, 0.00124347967, 0.0205807872, -0.00546377432, 0.0138118733, -0.0145654976, 0.00120751129, 0.00661476376, 0.0125855217, -0.0221154392, 0.0123662855, 0.0198956747, 0.0153054185, -0.00147299247, 0.00815284159, -0.0113934251, 0.00200052932, -0.0214851368, -0.00863242056, -0.02393784, 0.0166482404, 4.38632742e-05, -0.0247736778, 0.0070155547, 0.020717809, -0.028281454, -4.14546739e-05, -0.0108727394, -0.00116897363, 0.0204711687, 0.0085776113, 0.0153465262, 0.0146751152, -0.015003969, 0.00593307661, -0.00774862524, -0.0204985738, 0.0163193867, 0.0171826277, 0.00454572309, -0.00952991843, -0.00323030655, 0.0133802518, 0.0040284628, 0.0025743111, 0.00713887485, 0.00182411273, -0.00991358142, 0.0238830298, 0.0206767023, -0.00722793955, -0.0172785446, 0.0159357227, 0.00175388868, 0.0135789346, -0.00118952699, 0.00148926384, 0.0135583812, -0.0158535093, -0.00700870343, 0.00719368411, 0.00588169321, 0.00212213676, -0.0139900027, 0.00381950359, 0.00185494276, 0.0194160957, 0.00164683978, 0.0261850096, 0.0124553498, 0.00411752751, -0.0115441503, -0.0222661644, -0.0058440119, 0.00616258942, 0.00931753311, 0.00324914721, -0.00494651403, 0.0327757932, 0.0207452141, -0.0177581236, 0.0137502132, -0.0299257245, -0.0192653704, 0.0243763123, -0.00744717568, 0.00970804784, 0.00108676008, 0.0176073983, -0.00384690822, 0.00462108571, -0.0169085823, -0.0210877713, -0.00400105864, 0.014010556, 0.0232527275, -0.00534387957, -0.0213207081, 0.0271715727, 0.00364137441, 0.013469317, 0.00774177397, -0.00356258638, 0.0016605421, -0.0014644285, -0.0139146401, 0.0102218827, 0.00509723881, 0.0118387481, 0.0159494244, 0.00195599697, -0.0122909229, -0.00905033946, 0.0378182232, 0.0118387481, 0.00175902701, -0.000310655829, -0.00871463399, -0.00488485396, 0.00828301348, 0.0018583684, 0.0250203181, -0.0065976358, 0.0205807872, -0.00610435475, -0.00563847786, -0.0109755062, -0.0230745971, -0.0103589045, -0.0242803954, -0.00375099224, 0.00278498325, -0.00323373219, -0.0240611602, -0.0128664179, 0.00264967349, -0.00534387957, 0.00623795157, -0.0126951393, -0.00425797561, -0.00905719, -0.00473755458, -0.0212659, -0.00754994247, -0.00392569602, 0.00221462687, 0.00565218041, -0.00696759671, 0.0107151633, -0.0140996203, 0.0102629894, 0.00145757734, -0.00676891394, 0.00206904043, -0.00641265558, 0.00549460435, 0.00909829699, 0.0266371835, 0.00961213186, 0.00745402696, -0.00708406605, 0.0154698463, 0.0211699847, -0.0013102782, -0.0121470494, -0.0118456, -0.0122018578, 0.0121059427, -0.00210843445, -0.0188817084, 0.0280211121, -0.0140859187, -0.00390171725, 0.00178471871, 0.00288775028, 0.0380648635, 0.0103246495, 0.00655310368, -0.004915684, 0.00121179316, -6.71196394e-05, -0.0149902673, 0.0113591691, -0.00497391867, -0.0137913199, 0.0206904057, 0.00547405099, 0.0265686736, 0.0140996203, -0.00873518735, 0.00149697135, 0.0123046255, 6.86718486e-05, 0.0153876329, -0.0182102975, 0.000740778167, -0.00210500904, 0.000884651847, -0.0172648411, -0.0279388987, -0.00915995799, -0.0114482343, 0.0255821105, 0.01647011, -0.00665587047, 0.00474440586, 0.00082598906, -0.0176759083, -0.00727589754, 0.0110303154, 0.00702925678, -0.00113557442, 0.0362287611, 0.0141955363, 0.0254861955, -0.0108932927, 0.00895442348, 0.00152437587, -0.0194572024, -0.00435389159, 0.0279251952, 0.030802669, -0.0154013345, 0.0114619369, 0.000269334967, -0.034502279, 0.0102355843, -0.0190461352, 0.00618314277, 0.0039702286, 0.00819394831, -0.000287105067, -0.00667299842, -0.000844829658, -0.0107083125, -0.0084679937, 0.00627220748, -0.00681344653, 0.00785139203, -0.0051417714, -0.0114345318, -0.00606667344, -0.00931753311, 0.00543294428, -0.00451489305, 0.0144832833, 0.00395995192, -0.00330224354, -0.00696759671, -0.00554598775, -0.0238556266, -0.0128458645, 0.00662846584, -0.00644348562, 0.0226772316, 0.00998894405, -0.00250751269, 1.22437141e-05, 0.000686825544, 0.0153465262, 0.0157849975, -0.00246640597, -0.0187857915, -0.0208822377, 0.0174018648, -0.00841318443, -0.00494651403, -0.00503900414, 0.0335431211, 0.013085654, -0.00667299842, -0.0164975151, 0.0230745971, 0.00459025567, -0.0177581236, 0.000297167659, 0.00347694731, -0.0010507917, -0.00572411716, 0.000665843952, -0.0317618288, 0.0269523356, -0.016661942, -0.0126608834, -0.000509124424, 0.0269934423, 0.00799526554, -0.0178677402, -0.00691963872, 0.0282266457, 0.023718603, -0.00996839069, -0.0227183383, -0.00420316681, 0.00064828794, -0.00463136239, -0.0267879087, 0.000591766147, -0.00291001634, -0.00679289317, 9.10450617e-05, -0.0106740566, 0.00974230375, 0.00753624039, 0.0271167625, 0.00789935049, -0.0152780144, -0.0108727394, 0.0173744597, -0.0285555, 0.00387088698, 0.00252464041, 0.0203752536, -0.0314603783, -0.00266337581, 0.00495336531, -0.00406957, -0.00359684206, 0.0389144048, 0.00295626163, 0.0147984354, -0.00607009884, 0.0126540326, 0.0059502041, 7.51483e-05, -0.0101054134, -2.05801443e-05, 0.00271818484, 0.0108042285, 0.0277196616, -0.0126677351, -0.0135104237, 0.00608037552, 0.000966009, 0.00365165109, -0.00465191575, -0.00277984492, 0.0116400653, 0.00489513064, -0.00825560838, -0.00401476072, -0.0103794578, -0.00379895023, -0.015003969, -0.00158946158, -0.00300593232, 0.0275004264, 0.00691278791, -0.00835152436, -0.000678689801, 0.00259486446, -0.0177033134, 0.00258630072, -0.0112221474, 0.00245270366, 0.0159494244, -0.0244037155, -0.0278155785, 0.00948881172, -0.0179499537, 0.0133254435, -0.0199367814, 0.0215399452, 0.0128184594, 0.00265995017, 0.0125238616, -0.0144421766, -0.00437444495, 0.0238967333, -0.0114413826, 0.0319810621, -0.00353175635, -0.00573781924, 0.0187446848, 0.00746772904, 0.0270482525, 0.00065085711, -0.00852280296, 0.010852186, -0.00635442091, -0.00524111278, -0.0159768295, -0.000494137581, -0.00497734407, -0.0157575943, 0.0132432291, 0.00907089282, -0.0175114814, 0.0035523097, 0.0231431089, -0.0107014617, -0.0230608955, 0.0100163482, 0.00113643077, 0.000180912582, 0.0249244012, -0.0171004143, 0.0257739425, 0.00322345551, 0.00185323006, 0.0263631381, 0.00104051502, -0.00884480588, 0.00218379684, 0.0126334792, 0.0223209728, -0.00881740078, -0.0172648411, 0.0170456059, 0.0178540386, 0.00973545201, 0.0238282215, -0.00759790046, -0.00495336531, 0.0193886906, -0.0271852743, -0.0211425796, -0.0286651179, 0.00121264963, -0.00213583908, -0.00141647062, 0.00537128421, -0.00289288862, -0.022279866, -0.0252121501, 0.036612425, -0.00918051135, 0.0104137138, 0.000636726676, -0.0026239818, 0.0199367814, 0.00660106121, 0.00103537668, -0.00129914505, 0.0061797169, -0.019758651, 0.0144147724, 0.00900238194, 0.00940659828, -0.00552200899, -0.0134419119, 0.0061762915, 0.00220606313, -0.0241844803, -0.00162885559, 0.0152780144, -0.00156462623, -0.0212521981, -0.00605982216, 0.00436074287, -0.00168880296, 0.00296996371, -0.010598694, 0.00837892946, -0.00475125713, -0.0163878966, -0.0163193867, 0.00447036093, 0.00841318443, 0.0057549472, 0.00165454729, -0.00233623455, -0.00711832149, 0.0122498162, 0.0287473314, 0.00322002987, -0.0127842044, 0.0229923837, -0.00438472163, -0.0118524507, -0.0100369016, -0.0207041074, 0.0127499485, -0.00429565692, 0.008330971, 0.0226224232, -0.00867352728, -0.00831041764, 0.0111947423, -0.00126831501, 0.0224991031, -0.0082008, -0.000709091721, -0.00963268522, 0.0148395421, -0.0144284749, -0.0138050225, -0.000919763872, -0.00135909242, -0.00653597573, -0.0154835479, 0.0218550973, 0.0210740678, -0.00874203909, 0.0107768234, 0.0238145199, 0.00771437, -0.0096943453, -0.00788564794, 0.0143599631, -0.0140585136, -0.00870778318, 0.00805692561, -0.0129006729, -0.00377154583, 0.00645033643, 0.00157490291, -0.031213738, 0.00281581352, 0.0085776113, 0.00591252325, 0.0152780144, 0.00598788541, 0.00892701931, 0.00744032441, -0.0231431089, -0.00985877216, 0.00638867635, 0.0147436261, 0.00849539787, 0.00199539098, -0.0302819833, -0.0296242759, -0.0064537623, -0.0215947535, 0.0107699726, -0.00549802976, 0.00556996651, 0.00543294428, -0.00812543742, -0.0121196443, -0.0067346585, 0.00996839069, -0.00836522691, 0.00464163907, 0.0107151633, 0.0102492869, 0.0197860561, -0.0246777609, -0.00887221, 0.00275586615, 0.0033227969, 0.00706351269, -1.37557799e-05, 0.00570013793, -0.00868037902, 0.000917194702, 0.0131815691, -0.0926272422, -0.0135309771, 0.0227046367, 0.0122155603, -0.0221428443, 0.00427167816, -0.00124176685, -0.011044018, 0.016374195, 0.00841318443, -0.000593050732, 0.00374756684, 0.0110988263, 0.0139831509, -0.00691621331, 0.00611805683, 0.00841318443, -0.0110988263, -0.0219647158, -0.00128030451, -0.00872833654, -0.00032328759, 0.00819394831, -0.0047204271, -0.010948102, 0.00768696517, -0.00188234728, -0.00627563288, -0.000645290595, -0.00183610222, -0.00884480588, 0.0168811791, 0.00127859169, 0.020649299, -0.00975600537, -0.0227046367, 0.00704295933, -0.00710461941, 0.00157233374, -0.0134830186, -0.00798841473, -0.0125718191, -0.00712517276, 0.0138803842, 0.00538841169, 0.00180184655, 0.00601529, -0.0173196513, -0.0185939595, 0.019950483, -0.00554941315, 0.0187720899, -0.00310698641, -0.00934493821, -0.0142914522, -0.00072108116, -0.0121401977, 0.0212384947, -1.53481324e-05, 0.0358999074, -0.0109960595, -0.037187919, -0.00286377128, 0.0159494244, 0.00468617119, 0.0255273022, -0.00905033946, 0.0158398077, 0.0166071337, 0.00324058323, -0.0229923837, -0.020663, -0.00349236233, -0.0035523097, 0.0144284749, 0.0297612976, -0.00203135936, 0.00510409, 0.00990673061, 0.00774177397, 0.0162645765, 0.00919421297, 0.00451489305, -0.00039693719, -0.00138564059, 0.0038571849, 0.0288569499, 0.00897497684, 0.0148121379, -0.00411410211, -0.00119637814, 0.0198682696, -0.0265960768, 0.00709776813, 0.0198134612, 0.00826246, -0.011331765, -0.0022677232, 0.0125649683, 0.00966694113, 0.000595619902, 9.05098204e-05, 0.00294255931, 0.0146751152, 0.0220332257, -0.0164153017, 0.00319776381, -0.00437444495, 0.0084679937, 0.01069461, 0.0263768416, 0.00210158341, -0.0121264961, -0.0125855217, 0.0066490192, 0.0175388865, -0.00267707813, -0.00220092479, -0.00349921337, 0.0274045095, 0.00839948282, -0.0228553619, 7.22579862e-05, -0.0074334736, -0.0131952716, -0.0085776113, 0.0243900139, -0.0157575943, -0.0124347964, -0.000986562343, 0.0147025194, 0.0102561377, 0.0121470494, -0.0262124147, -0.0170182, -0.0389144048, -0.0182651058, 0.0109412512, -0.018703578, 0.0149491606, -0.012989738, 0.00114071276, 0.0139420442, -0.00687168073, -0.00543979509, -0.000710376306, -0.010180776, 0.00854335632, 0.00503557874, 0.0047752359, -0.0192790721, -0.0114002759, 0.00712517276, -0.00195428403, 0.0107014617, -0.0203478485, 0.0157575943, -0.0157301892, -0.00467932, -0.0160727445, -0.00416206, 0.00113129243, -0.00696074544, -0.0171004143, -0.000115933923, 0.0103863096, 0.00154578569, -0.0189639218, 0.0167989656, -0.0168948807, 0.020142315, 0.00907774363, 0.01385298, -0.00752253784, 0.00532675162, 0.00323030655, -0.00802952144, -0.00544322096, -0.00744717568, 0.0185665563, 0.0293776356, -0.0250751264, -0.0134967212, -0.000443182304, 0.0297612976, -0.00434361491, 0.0034375533, -0.0044463817, -0.0110919755, -0.00304703903, 0.028473286, 0.00467932, 0.0140585136, 0.0275826398, -0.0186761729, -0.00130599621, 0.0120100267, 0.00844058953, -0.00147984351, 0.00869408064, -0.00611805683, -0.0194846075, 0.00699842675, 0.036036931, 0.0091668088, -0.00638867635, -0.0180458706, 0.00754994247, -0.00620027026, -0.0272537861, 0.0013693691, -0.0149354581, -0.00119809096, 0.0221565459, 0.00793360546, -0.0174018648, 0.00303504942, 0.000569928146, 0.00345810666, -0.00292543136, 0.0248558912, 0.0212110914, 0.00910514873, -0.00196113531, 0.01196892, 0.0177307185, 0.00759790046, 0.00978341047, -0.0215125401, -0.00136508711, -0.0194297973, -0.0150450757, 0.0249107, -0.0040250374, -0.00887221, -0.00165882928, 0.000779315771, 0.0153465262, -0.0188131966, 0.0296790842, 0.00779658323, 0.0143462615, -0.00707721477, -0.000238290784, -0.01264033, 0.00348208565, 0.0133802518, 0.001496115, 0.00319091277, -0.00116554811, 0.00724849291, 0.0196216293, 0.00456627645, -0.000119145392, 0.00481976802, -0.0202108268, -0.0365302116, 0.0165797286, -0.00605297135, 0.0184295326, -0.00853650458, -0.000380879879, -0.0160727445, -0.0183610227, 0.00884480588, -0.0232801307, -0.000752339431, -0.00856391, -0.0143873682, 0.0131062074, -0.00574124511, 0.00996154, -0.0149765648, -0.0146066044, 0.00961213186, -0.011105678, -0.0163604934, 0.0180869773, -0.00913255289, 0.00527536822, -0.020430062, -0.0189091116, -0.00717313075, 0.0129760355, -0.0220606308, -0.00319776381, 0.0233760476, -0.0167852622, -0.0125512658, -0.0238282215, 0.00455257436, -0.00283636688, 0.00563847786, -0.00815284159, -0.00126488938, -0.0123594338, 0.0196216293, 0.021416625, 0.00497391867, -0.0134556144, 0.0156616773, 0.00391199393, -0.000625165412, -0.0134487636, -0.0158672109, -0.00690936204, -0.0166482404, -0.00489855604, 0.00254861941, -0.00220263749, -0.0386129543, 0.0258972626, 0.00314809312, 0.00789249875, 0.00086067291, 0.00474098045, -0.00674493518, -0.0187857915, 0.00937919319, 0.0203341469, 0.0149354581, -0.0130582489, 0.00279868557, 0.00501502538, -0.00317378482, 0.00105250452, -0.00726904627, 0.00300250668, 0.00129058119, -0.00645033643, -0.00957102515, 0.00923532, -0.0103246495, 0.00388116366, -0.0158398077, 0.00587826734, -0.00731700426, -0.0249518063, 0.0240063518, 0.00547405099, -0.00114413828, -0.00393597269, -0.0251299366, -0.0191283487, 0.0182788093, 0.00233794726, 0.005090388, 0.00480606593, 0.031789232, 0.0144147724, -0.0111125289, 0.00621739822, 0.00253320439, 0.0092764264, 0.00520685688, -0.00356601179, -0.0177033134, -0.0150450757, -0.00102424354, -0.00230197888, 0.0340364, -0.0157438908, -0.018196594, -0.0089201685, 0.0121333469, -0.0162371732, 0.0194846075, 0.0156205706, -0.0105370339, -0.00456285104, -0.0174429715, -0.00395310065, -0.00935864, 0.0568369552, 0.0246777609, 0.0202519335, -0.0134761678, 0.00807747897, -0.00415178342, 0.006320165, 0.0323647261, -0.0365850218, 0.0027353128, -0.00583030935, 0.0119072599, -0.00867352728, -0.000491568411, -0.00509381341, 0.00319433818, 0.0203204434, -0.0221702494, -0.00262912014, -0.0229786821, 0.0127088418, -0.00765956054, -0.00443953089, -0.00648459233, 0.0079404572, -0.0178951453, 0.00653255032, -0.00246983138, -0.00334506296, 0.0114208292, -0.0155794639, 0.0177033134, -0.00577207515, -0.0106466524, -0.0162919816, -0.00352147967, -0.0504243, 0.00907774363, 0.00399078196, 0.018128084, -0.00641950639, 0.0175388865, 0.0191283487, 0.0215673503, 0.00905719, -0.0223483779, -0.0113454675, -0.0103452029, 0.0303916018, -0.0142777497, 0.0288569499, -0.0263083298, 0.00937919319, -0.0152095035, -0.0210466646, 0.00765956054, 0.0408875309, 0.00010003717, -0.00112101575, 0.0031343908, -0.00525481487, -0.0173059478, 0.0139351934, -0.0247462727, -0.0136542972, 0.00546034845, 0.00880369917, 0.0107494192, -0.0341734253, -0.00762530509, 0.0116674704, -0.00666957255, -0.014140727, -0.0123731364, 0.0105712898, -0.00590224657, -0.0232801307, -0.0108316327, 0.0112495515, -0.00675863726, -0.00555969, 0.00154321652, -0.0229375754, -0.0093106823, 0.0176759083, -0.00368933217, -0.019758651, -0.0239926483, -0.00317207212, 0.00795415882, 0.0186624713, -0.00740606897, 0.00943400245, 0.0218276922, 0.00050441426, -0.0160590429, 0.00390514266, 0.00865297392, 0.0227183383, 0.00134025188, 0.017648505, -0.00466561783, -0.0131062074, -0.0132980384, -0.0215399452, 0.014332559, -0.00216666912, 0.000906061614, -0.00360711874, -0.0187446848, 0.00295112329, -0.000356472738, 0.0205670856, 0.0112084448, -0.0119278133, -0.0151135875, -0.000834124803, -0.00961213186, -0.00511436677, -0.00887906179, -0.0124142431, -0.00752938911, -0.0198408663, 0.0135104237, -0.00863242056, -0.0240337551, 0.0196079277, -0.0293502305, -0.00300935772, -0.0043915729, 0.0253491718, -0.000350478, -0.00914625544, -0.00381950359, 0.0119552175, 0.0277470667, -0.0205122754, 0.0163056832, 0.00527879363, 0.0351599865, 0.00971489865, -0.0114619369, -0.0194846075, 0.0330224335, 0.0144832833, 0.0101396684, -0.000155649061, -0.0274456162, 0.0142777497, -0.00112444127, -0.0010173925, 0.0180458706, 0.0220195241, -0.0124759031, 0.0296790842, -0.000588340568, 0.0109343994, -0.0192379653, 0.0173196513, 0.00257602404, 0.0176759083, -0.00156034436, -0.000683399965, 0.00861871894, 0.012832162, -0.0144010698, -0.00173247885, 0.0098656239, 0.021416625, 0.0144558791, -0.00104394055, 0.0257876441, -0.0110645713, 0.014140727, 0.00950251427, -0.00670382846, 0.00715942821, -0.0118456, 0.00288603758, -0.0352970101, 0.00163827592, 0.0153191211, 0.00296996371, 0.0424769893, 0.031569995, -0.0110029113, -0.0168948807, -0.000141839744, 0.018799495, 0.0103452029, -0.00785139203, -0.0144832833, -0.00272674882, -0.00512464345, -0.00802952144, -0.0367220454, 0.0202793367, 0.00841318443, -0.000382806757, -0.0200601015, 0.0177718252, -0.000857247331, 0.00143788045, 0.00684770197, -0.0158124026, 0.00915310625, -0.0107973767, -0.0173744597, 0.0026873548, -0.0135241263, 0.00771437]
08 Aug, 2018
unordered_multimap bucket_count() function in C++ STL 08 Aug, 2018 The unordered_multimap::bucket_count() is a built-in function in C++ STL which returns the total number of buckets in the unordered_multimap container. A bucket is a slot in the container’s internal hash table to which elements are assigned based on their hash value. Syntax: unordered_multimap_name.bucket_count() Parameters: The function does not accept any parameter. Return Value: It returns an unsigned integral type which denotes the total count of buckets. Below programs illustrate the above function: Program 1: // C++ program to illustrate the // unordered_multimap::bucket_count() #include <bits/stdc++.h> using namespace std; int main() { // declaration unordered_multimap<int, int> sample; // inserts key and element sample.insert({ 10, 100 }); sample.insert({ 10, 100 }); sample.insert({ 20, 200 }); sample.insert({ 30, 300 }); sample.insert({ 15, 150 }); cout << "The total count of buckets: " << sample.bucket_count(); // prints all element bucket wise for (int i = 0; i < sample.bucket_count(); i++) { cout << "\nBucket " << i << ": "; // if bucket is empty if (sample.bucket_size(i) == 0) cout << "empty"; for (auto it = sample.cbegin(i); it != sample.cend(i); it++) cout << "{" << it->first << ", " << it->second << "}, "; } return 0; } Output: The total count of buckets: 7 Bucket 0: empty Bucket 1: {15, 150}, Bucket 2: {30, 300}, Bucket 3: {10, 100}, {10, 100}, Bucket 4: empty Bucket 5: empty Bucket 6: {20, 200}, Program 2: // C++ program to illustrate the // unordered_multimap::bucket_count() #include <bits/stdc++.h> using namespace std; int main() { // declaration unordered_multimap<char, char> sample; // inserts key and element sample.insert({ 'a', 'b' }); sample.insert({ 'a', 'b' }); sample.insert({ 'b', 'c' }); sample.insert({ 'r', 'a' }); sample.insert({ 'c', 'b' }); cout << "The total count of buckets: " << sample.bucket_count(); // prints all element bucket wise for (int i = 0; i < sample.bucket_count(); i++) { cout << "\nBucket " << i << ": "; // if bucket is empty if (sample.bucket_size(i) == 0) cout << "empty"; for (auto it = sample.cbegin(i); it != sample.cend(i); it++) cout << "{" << it->first << ", " << it->second << "}, "; } return 0; } Output: The total count of buckets: 7 Bucket 0: {b, c}, Bucket 1: {c, b}, Bucket 2: {r, a}, Bucket 3: empty Bucket 4: empty Bucket 5: empty Bucket 6: {a, b}, {a, b}, Learn C++ Online – Master everything from basics to advanced concepts. Apply your knowledge with practical exercises and boost your skills. Take the Three 90 Challenge: finish 90% in 90 days for a 90% refund. Start now and level up your C++ programming!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum/Algorithm for Dynamic Time out timer Calculation/Difference between Round trip time (RTT) and Time to live (TTL)/Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms/Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm/Round Robin Scheduling Algorithm with Different Arrival Time/Selfish Round Robin CPU Scheduling/Find the order of execution of given N processes in Round Robin Scheduling/Calculate server loads using Round Robin Scheduling/set::lower_bound() Function in C++ STL/Implementation of lower_bound() and upper_bound() in List of Pairs in C++/Difference between std::set::lower_bound and std::lower_bound in C++/Difference between std::set vs std::vector in C++ STL/std::minmax() and std::minmax_element() in C++ STL/std::rotate vs std::rotate_copy in C++ STL/std::bitset::to_ullong and std::bitset::to_ulong in C++ STL/std::upper_bound and std::lower_bound for Vector in C++ STL/std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++/std::string::append vs std::string::push_back() vs Operator += in C++/Vector push_back() in C++ STL/vector :: cbegin() and vector :: cend() in C++ STL/unordered_multiset cend() function in C++ STL/unordered_multiset bucket() function in C++ STL/unordered_multiset emplace_hint() function in C++ STL/unordered_multiset end() function in C++ STL/unordered_multiset size() in C++ STL/unordered_multiset emplace() function in C++ STL/unordered_multiset find() function in C++STL/unordered_multiset erase() function in C++ STL/unordered_multiset clear() function in C++ STL/unordered_multiset swap() function in C++ STL/unordered_multiset bucket_size() function in C++ STL/unordered_multiset bucket_count() function in C++ STL/unordered_set bucket_count() function in C++ STL/unordered_set cbegin() function in C++ STL/array::cbegin() and array::cend() in C++ STL/array::rbegin() and array::rend() in C++ STL/multimap rbegin in C++ STL/vector rbegin() and rend() Functions in C++ STL/multiset rbegin() and rend() function in C++ STL/map rbegin() function in C++ STL/map upper_bound() function in C++ STL/Set upper_bound() in C++ STL/multimap upper_bound() function in C++ STL/multimap empty() function in C++ STL/multimap value_comp() function in C++ STL/multimap swap() function in C++ STL/multimap::swap() in C++ STL/multimap equal_range() in C++ STL/unordered_set equal_range in C++ STL/set vs unordered_set in C++ STL/unordered_set count() function in C++ STL/unordered_set bucket() function in C++ STL/unordered_set emplace() function in C++ STL/set::emplace() in C++ STL/multiset::emplace() in C++ STL/multiset find() function in C++ STL/multiset cbegin() and cend() function in C++ STL/multimap::cbegin() and multimap::cend() in C++ STL/multimap::begin() and multimap::end() in C++ STL/set::begin() and set::end() in C++ STL/unordered_multimap begin() and end() function in C++ STL/unordered_multimap empty() function in C++ STL/unordered_multimap find() function in C++ STL/unordered_multimap equal_range() function in C++ STL/unordered_multimap bucket_count() function in C++ STL
https://www.geeksforgeeks.org/unordered_multimap-bucket_count-function-in-c-stl?ref=asr10
PHP
unordered_multimap bucket_count() function in C++ STL
unordered_multiset clear() function in C++ STL, What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, jQWidgets jqxTreeMap width Property, Round Robin Scheduling Algorithm with Different Arrival Time, Difference between Flow and TypeScript, set::begin() and set::end() in C++ STL, unordered_multiset emplace() function in C++ STL, jQWidgets jqxTree destroy() Method, unordered_set bucket_count() function in C++ STL, jQWidgets jqxTree collapseAll() Method, Find the order of execution of given N processes in Round Robin Scheduling, jQWidgets jqxScrollView buttonsOffset Property, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Vector push_back() in C++ STL, jQWidgets jqxListBox enableHover Property, Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm, std::rotate vs std::rotate_copy in C++ STL, Selfish Round Robin CPU Scheduling, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxSlider buttonsPosition Property, std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++, std::upper_bound and std::lower_bound for Vector in C++ STL, Difference between Round trip time (RTT) and Time to live (TTL), jQWidgets jqxSlider rtl Property, Difference between std::set::lower_bound and std::lower_bound in C++, jQWidgets jqxTooltip opacity Property, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, unordered_multiset erase() function in C++ STL, multiset find() function in C++ STL, set vs unordered_set in C++ STL, jQWidgets jqxToolBar height Property, PHP, std::minmax() and std::minmax_element() in C++ STL, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, unordered_set emplace() function in C++ STL, unordered_multimap empty() function in C++ STL, unordered_set bucket() function in C++ STL, map rbegin() function in C++ STL, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, map upper_bound() function in C++ STL, Node.js date-and-time Date.transform() Method, unordered_multiset size() in C++ STL, TypeScript Optional Parameters, jQWidgets jqxToolBar theme Property, Difference between std::set vs std::vector in C++ STL, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, Steps to Diagnose and Resolve a Slow Network, How to use Optional Chaining with Arrays and Functions in TypeScript ?, Calculate server loads using Round Robin Scheduling, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, jQWidgets jqxScrollView showButtons Property, set::emplace() in C++ STL, Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms, jQWidgets jqxScrollView disabled Property, multimap::cbegin() and multimap::cend() in C++ STL, jQWidgets jqxSplitter destroy() Method, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, set::lower_bound() Function in C++ STL, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, jQWidgets jqxTree collapseItem() Method, multimap upper_bound() function in C++ STL, std::string::append vs std::string::push_back() vs Operator += in C++, unordered_multiset swap() function in C++ STL, unordered_multiset cend() function in C++ STL, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), Set upper_bound() in C++ STL, jQWidgets jqxSortable opacity Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, multiset cbegin() and cend() function in C++ STL, multimap rbegin in C++ STL, vector :: cbegin() and vector :: cend() in C++ STL, multimap swap() function in C++ STL, jQWidgets jqxSlider height Property, jQWidgets jqxSwitchButton onLabel Property, unordered_multiset bucket_size() function in C++ STL, unordered_set cbegin() function in C++ STL, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, jQWidgets jqxToolBar tools Property, multimap empty() function in C++ STL, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTree width Property, multimap::swap() in C++ STL, multimap equal_range() in C++ STL, Implementation of lower_bound() and upper_bound() in List of Pairs in C++, jQWidgets jqxTree clear() Method, TLS Handshake?, multiset rbegin() and rend() function in C++ STL, Algorithm for Dynamic Time out timer Calculation, Adhoc TCP, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, jQWidgets jqxTabs position Property, Differences between Wireless Adhoc Network and Wireless Sensor Network, jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, unordered_multimap begin() and end() function in C++ STL, std::bitset::to_ullong and std::bitset::to_ulong in C++ STL, unordered_multiset emplace_hint() function in C++ STL, multimap::begin() and multimap::end() in C++ STL, unordered_multiset bucket_count() function in C++ STL, unordered_multiset find() function in C++STL, unordered_multimap bucket_count() function in C++ STL, unordered_multiset bucket() function in C++ STL, Impact of Three-way Handshake and Slow Start Algorithm, array::rbegin() and array::rend() in C++ STL, multimap value_comp() function in C++ STL, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, multiset::emplace() in C++ STL, unordered_set equal_range in C++ STL, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, unordered_multimap equal_range() function in C++ STL, unordered_set count() function in C++ STL, vector rbegin() and rend() Functions in C++ STL, array::cbegin() and array::cend() in C++ STL, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, unordered_multiset end() function in C++ STL, How to Sort an Array Having Optional Properties in TypeScript ?, unordered_multimap find() function in C++ STL
GeeksforGeeks
[-0.0158436, -0.00720414566, -0.015553778, 0.00421276921, 0.0459850803, -0.0198597033, -0.0142426789, 0.0306935236, -0.0203703418, 0.00618286803, -0.00943301432, 0.0153467618, -0.0027308818, -0.00692467438, -0.0302242879, -0.0202737357, -0.00324152038, 0.0057998891, -0.0248556826, -0.0169476829, 0.0190730449, 0.0144634955, -0.0351374596, 0.00856354833, -0.016423244, 0.0154847726, -0.0195284784, -0.000765958, 0.0169890858, 0.00601035496, -0.0295342356, 0.0093364073, -0.0189212319, -0.0286785718, 0.0057998891, 0.0211432017, 0.015788395, 0.00397815136, -0.0175273269, -0.00721104583, -0.00699367933, 0.028733775, 0.0199839137, 0.0178861544, -0.00939161144, -0.00659689959, -0.000698677904, -0.0250074938, -0.0262771901, 0.0396918058, 0.0236549918, -0.0130833909, 0.030859137, 0.0198459029, 0.0176239349, 0.00213916204, 0.0127935689, 0.0297826547, 0.0136837363, -0.00741806161, -0.0264704041, -0.0213088132, 0.0262081847, -3.93545415e-05, -0.0256699435, -0.0146981133, -0.0249798913, 0.0551765785, 0.0485520773, -0.0253939219, -0.0407958888, 0.0447153859, 0.0299482681, 0.00912249088, -0.0329845, 0.0200253166, 0.000719810778, -0.0158159975, 0.000289390649, 0.0537688695, -0.0375388414, 0.00754227117, -0.0140908668, -0.0274778809, -0.00557562197, 0.0130281867, -0.0202047303, -0.0237654, 0.0130833909, 0.029120205, -0.0173479132, -0.0150293382, 0.00892927591, 0.00219436618, -0.0450742133, 0.0367107801, 0.0366831794, 0.0150293382, 0.0010756189, 0.0396642052, -0.00401955424, -0.0192938615, 0.00866705645, 0.0106751081, 0.0190868452, 0.0146981133, 0.0280575249, -0.00170270388, 0.00494767446, -0.00907418691, 0.054817751, 0.0231029484, -0.0300586764, 0.0233789701, -0.0073835589, 0.00957792532, -0.00776308775, 0.0130143855, 0.0154709714, 0.00219954154, 0.00336227962, 0.0393881835, 0.00984014478, -0.0136354323, -0.0414583385, 0.0100885639, 0.00624497281, 0.00739045953, 0.00763887819, -0.0386153236, 0.0226475149, -0.0410995111, -0.0155399768, -0.0471443683, -0.0296722464, 0.00320874294, 0.0313835777, 0.0279885195, -0.0209223833, -0.0276434924, -0.0595101044, -0.0081426166, -0.0173203107, 0.00961242802, -0.0109373285, -0.00848074257, -0.013138595, 0.0245934613, 0.0126348566, 0.0150017357, 0.00817711931, 0.0159402061, 0.0526647866, 0.034530215, 0.0217780489, -0.00617941795, 0.0170994941, 0.000709891261, -0.000584819296, -0.0345026143, 0.0236411896, 0.000220385438, 0.0235169809, 0.0029361723, -0.0142564792, 0.0325980671, 0.00542726088, -0.000568430522, -0.0319356173, 0.036655575, 0.0263461955, 0.0209223833, 0.020618761, 0.0125865526, 0.00621047, -0.0073697581, 0.0483588614, 0.0194456726, 0.00359517219, 0.0179137569, -0.00140080601, -0.0134422174, 0.0319632217, -0.000242596492, 0.0178999547, 0.0029171959, 0.000484761695, 0.00807361118, 0.0380356796, 0.0266084149, 0.000617165468, 0.0166164581, 0.0301414821, 0.0639816448, 0.0565842837, 0.0219160598, -0.0313007683, 0.0250488967, -0.0194456726, 0.0381736904, -0.022261085, -0.00186831644, -0.0437769145, 0.00481656473, 0.0136147309, 0.0283197444, -0.032791283, -0.0123036318, 0.0422312, 0.0238068029, -0.0368487909, 0.0246210638, 0.00156814372, 0.00926740188, -0.0320736282, 0.02521451, -0.0496561602, 0.0319908224, 0.0266084149, -0.0467303395, 0.0318804123, -0.0165060498, 0.0213778187, -0.0321288332, -0.0199149083, -0.036020726, 0.0293686241, 0.00900518149, 0.0030086278, -0.0276986975, 0.0572467335, 0.0159816109, -0.0458194688, -0.0135319242, 0.0429488532, -0.0274640787, -0.0556458123, -0.00710063754, -0.00360897323, 0.0292858183, 0.00357447076, 0.0795492232, -0.0189902373, -0.00799080543, 0.00931570493, 0.020811975, -0.0215158295, -0.0446601808, 0.000993675203, 0.00923979934, 0.0317424051, 0.00470270589, 0.0338953659, -0.0152501548, 0.0117308879, 0.0370972082, -0.0390845612, -0.0204117447, 0.00966763217, -0.0260839742, 0.0174997244, 0.0409615, -0.0382564962, 0.0133318091, 0.0145463012, 0.00946751703, 0.0238896087, -0.0199149083, -0.0288165826, -0.0293410216, 0.0295066349, -0.0107924175, -0.00316733983, 0.012462344, 0.0118481973, 0.00910869, -0.0014887877, 0.00960552692, -0.0178585518, -0.0041575646, 0.034337, 0.00754227117, -0.0113375587, 0.0191282481, 0.00533410395, -0.00412651245, -0.0290926024, -0.0108959246, -0.020811975, -0.0529684089, -0.0227993261, 0.0113444589, -0.0105508985, -0.011979307, 0.00537895737, 0.0245244578, -0.00477861194, -0.0281955358, -0.0418447666, -0.0242484361, -0.0235445835, -0.0397194065, -0.0168372747, -0.0384497121, 0.00623117201, -0.0284025501, -0.00386429252, -0.0117101865, 0.00577918766, -0.0138769504, -0.000691346126, -0.0450466126, -0.0482760556, -0.0101299668, -0.0239724144, -0.0173893161, 0.0354134813, 0.0130212856, -0.0450742133, -0.00849454291, -0.00779759046, 0.00607245974, -0.0251317024, 0.0434732921, 0.0181345735, -0.0187142175, -0.00953652244, 0.0570259169, -0.00216331379, -0.0488557, -0.00962622929, 0.0145048983, -0.0313283727, -0.0310247485, -0.0057136328, -0.0415135436, -0.0149327302, 0.0319908224, -0.002548018, 0.0393053778, 0.00901898276, 0.00217711483, -0.0169890858, -0.00451639201, 0.0166440606, 0.0210189912, -0.00410236046, -0.0259735659, 0.00445773732, 0.057136327, 0.00122398022, 0.00576883694, 0.00334157795, 0.0142012751, 0.0254767295, 0.00114979956, -0.0200115144, -0.0229925402, -0.00692812447, 0.0164508466, -0.0498493761, 0.0220816713, -0.00154485449, 0.00834963191, -0.00449569058, -0.0144220917, -0.0148913274, -0.0386153236, 0.0376768522, -0.0284025501, 0.00526854908, -0.011737789, 0.0155951809, 0.0133042075, -0.0405198671, -0.0107165119, 0.00309660938, 0.0068487688, -0.0191006456, -0.0151121439, 0.011013234, 0.0415963493, 0.0241794307, -0.0195422806, -0.00438873237, -0.00376423495, -0.0256837439, 0.00148102466, -0.00684531825, 0.00742496224, -0.0317700058, -0.0162024274, 0.025642341, -0.00488557, 0.00211673533, 0.0119448043, -0.027864309, -0.0296446439, -0.0541000962, -0.0618838854, 0.0400782339, -0.00146204815, -0.00266705197, -0.0184934, -0.0313559733, -0.00212191069, 0.0191558506, -0.0182173792, -0.0168648772, 0.0175963324, 0.0184934, -0.0264980067, -0.00376078486, 0.0321564339, 0.00303795515, -0.0197906978, -0.0524991751, 0.0142564792, -0.0134077156, -0.0226475149, -0.0234065726, -0.0096538309, -0.0252559129, -0.00550316647, -0.0191972535, 0.0103783859, -0.0239862166, 0.0150845423, -0.000397426978, -0.0328464881, 0.0172513071, 0.00783209316, 0.00399195217, 0.0401058383, 0.00793560129, -0.0447429866, 0.00883956905, -0.00735595683, -0.0132973073, -0.0333433263, 0.0368211865, 0.0464819185, 0.00671075797, -0.0261391792, -0.00235652854, 0.0207705721, -0.0128211705, -0.0288993884, -0.00187866727, 0.0156917889, -0.0352754705, 0.00957792532, -0.0233789701, 0.00436458038, 0.00928810332, -0.0129108774, 0.02125361, -0.00458194688, 0.0367107801, 0.0125382496, -0.0301966872, 0.0118896, -0.0288165826, 0.0158436, -0.0126486579, 0.0424244106, 0.0104473913, 0.0240828227, -0.0171547, -0.0110753383, -0.00263599958, -0.0259045623, 0.0202185307, -0.00194422225, 0.016078217, -0.00979184173, 0.00340023241, -0.00183208869, -0.0245382581, -0.00886027049, 0.0313007683, -0.0201357249, -0.039553795, -0.00983324461, -0.0138493488, -0.0227165204, -0.00139908097, 0.000979011646, 0.00148274982, -0.00487176888, -0.0212122053, -0.0220678709, -0.0126348566, -0.014587705, 0.0108959246, 0.0234065726, -0.0404370613, 0.00148447487, 0.00253249169, -0.00389534491, 0.0354134813, -0.00352789205, -0.0300586764, 0.03748364, 0.0101299668, -0.0415687487, 0.00532030268, 0.0499873832, -0.0326808728, -0.0276848972, -0.00641748589, 0.0549281575, 0.0063415803, -0.0129867829, -0.00825302489, -0.00132835063, 0.0405474715, -0.00813571643, -0.00961242802, -0.00732145458, 0.0121104168, 0.0295894407, 0.0224404987, 0.0348062366, 0.0196940918, 0.0182587821, -0.0312179644, 0.0099436529, 0.0324048549, -0.0488833, 0.00661070039, 0.0058723446, -0.025642341, -0.0111719463, -0.00210810965, -0.00217538979, 0.0145325, 0.0105094956, -0.0233789701, 0.00559287332, -0.00155434269, -0.0105647, 0.0160920192, 0.0280989278, -0.0353306755, 0.0139666572, 0.00970903505, 0.00053867203, -0.0186866149, -0.00834963191, 0.00545141287, -0.0115100713, 0.0064140358, -0.0147119137, -0.0153605631, 0.0283473469, -0.00622772146, -0.0160920192, 0.045157019, -0.0159540083, -0.00970903505, 0.0380080789, 0.0218884572, 0.037235219, 0.0136423325, -0.00786659587, 0.004395633, 0.0164508466, -0.0243312418, -0.00647959067, 0.0015828074, -0.0128901759, 0.0284301527, -0.0127659664, -0.0141115682, 0.0123312334, -0.0061621666, 0.0135664269, -0.0141598722, 0.00817021821, 0.00836343318, -0.00429212488, -0.00162248535, -0.0168510769, -0.0168234743, -0.0123726372, -0.0264704041, -0.0135250241, -0.0497113653, 0.00494767446, -0.0108062178, 0.00995055307, -0.00785969477, -0.00601035496, 0.0110753383, -0.0158297978, -0.00507533411, -0.0144634955, -0.0171685, -0.0101782707, 0.0139873587, -0.00373663288, 0.00239620637, -0.0147395162, 0.00772858504, 0.0150017357, 0.0252973158, 0.0238758083, 0.0105094956, 0.00676251203, -0.0458470732, 0.0103576845, 0.0639264435, 0.00684186816, 0.00751466909, 0.0348338373, 0.00187349191, 0.0349166431, -0.0150569398, -0.0104197888, -0.0140701653, -0.0245520584, -0.0224266984, 0.0196802896, 0.0149327302, -0.0105439983, -0.0253111161, -0.0222334843, 0.00461644959, -0.0110201342, -0.00358137116, -0.0284025501, 0.0069212243, -0.0343922041, 0.0180379655, 0.0123864375, -0.0358275138, 0.0125244483, -0.0236825924, 0.00824612472, -0.00423347065, 0.0176929403, 0.00708683673, 0.0350546539, -0.00981254317, 0.014587705, -0.0170718934, 0.00832893047, 0.00492352294, -0.00595515082, -0.0295894407, 0.00853594672, 0.0244968552, -0.000739649753, -0.00810811389, -0.0164094418, -0.0288993884, 0.0079287, 0.00467165373, 0.0171961021, -0.0384773128, -0.0627671555, 0.0129867829, -0.020328939, 0.0181207713, -0.00441288436, -0.0243588444, -0.0109718312, 0.000118063625, 0.00332950219, 0.00327257277, 0.000757763628, 0.0121863224, -0.0212122053, -0.0165336523, -0.00927430205, -0.0188522283, 0.0256975461, 0.0153743643, -0.0265256092, -0.0253249183, -0.0171547, 0.0141460709, -0.0259045623, -0.0159816109, -0.0056411773, 0.0206325632, 0.0262633879, 0.0152501548, -0.0381460898, -0.0120069096, -0.0376216471, 0.0158159975, 0.0342265926, -0.00455089472, 0.000131217748, 0.0203703418, 0.0156365838, -0.00444393652, -0.00776308775, 0.00446118787, -0.00534445466, -0.01439449, -0.0297274515, 0.0118827, 0.0379804745, -0.00638643373, -0.00992985163, -0.0183967929, -0.00896377861, 0.00332432683, 0.00569638144, -0.0269534402, -0.00453364337, -0.0238206033, -0.0108890245, -0.0140287625, -0.0184243955, -0.00734215602, -0.064092055, 0.00679356419, -0.00797700416, 0.00133352599, -0.00463715103, 0.0234479755, -0.00576538639, 0.0183829926, -0.0237792, 0.00786659587, -0.00147498667, -0.0148223219, -0.0130833909, 0.012558951, 0.00395054929, -0.0433352813, 0.0505394265, 0.0165060498, -0.020328939, -0.0251869075, -0.00882576872, -0.00390914595, 0.0167268664, 0.015553778, 0.0102610765, 0.00765958, 0.0133663118, 0.00404025614, 0.0174169187, -0.0277401, 0.0198735055, 0.0100540612, 0.0484692715, 0.00819782075, -0.0196664892, 0.00519609358, -0.0167406667, 0.0219022576, -0.0154019659, -0.0141460709, 0.0108062178, 0.0108752232, -0.00532030268, 0.0149327302, 0.0223714933, -0.00947441719, -0.0195008758, -0.0194456726, 0.0199425109, 0.0192800593, -0.00963312946, -0.0318252109, -0.000842295, 0.00182691333, 0.0171270967, 0.0012015535, -0.0472547784, -0.00691432366, 0.00668660644, -0.0138079459, 0.0175963324, -0.0166854635, 0.0320736282, 0.00805291, 0.0179551598, -0.00874296203, 0.000119680939, 0.0263737962, 0.0291478075, 0.0243864469, 0.00529960124, -0.0182863846, -0.00825302489, 0.0110822394, 0.0184795987, 0.0184243955, -0.0256285407, -0.00175877067, -0.0464543179, -0.0149327302, -0.03660037, 0.0327360779, 0.00452329265, -0.0154295685, 0.00279643666, -0.0228269286, -0.031245565, 0.0319908224, 0.0106061026, 0.0277124979, 0.0499597825, -0.012752166, -0.00457159616, 0.00304658059, 0.0154571701, 0.0211156, -0.0184657983, 0.00513743889, -0.0123933386, 0.0328188837, 0.000590857235, 0.0146981133, 0.00443703588, 0.0204117447, -0.0330397, -0.0436389036, 0.0228269286, 0.0424796157, 0.0140425637, 0.0130350869, -0.0330949053, 0.0111995479, 0.00589304604, -0.00389534491, 0.0212950129, 0.012172522, 0.0143806888, 0.0233513676, -0.0410167053, -0.00304658059, 0.0510362647, 0.0144082913, -0.0176377352, -0.00140511885, -0.0116618834, 0.012848773, -0.00602415623, -0.0051477896, -0.00665555382, -0.0129867829, 0.0105025955, -0.00139563065, 0.0381184854, -0.00256009377, 0.00176394603, 0.0105647, 0.00596895209, -0.0263047926, -0.0201909281, 0.0237239972, 0.05746755, 0.014684312, 0.00110494613, -0.000922944862, 0.0334813334, 0.0139528569, 0.0384497121, -0.0136699351, -0.0510086641, -0.00413341308, -0.00457504625, 0.00250834, 0.00668315589, 0.00201667775, 0.00215813844, -0.0222472847, -0.0191006456, -0.00367797841, 0.034337, -0.0072386479, -0.0210741963, 0.00992985163, -0.0186038092, -0.0380080789, -0.0631535798, -0.00634503039, 0.00386429252, 0.0165198501, -0.0116756838, -0.0125520509, -0.0179551598, 0.0108614229, -0.011447967, -0.00515814079, -0.0110891396, 0.000425244711, 0.00595515082, 0.0152225522, 0.00305693154, 0.031052351, -0.0318252109, 0.00383669045, -0.0258493572, -0.0232409593, 0.00318114087, 0.0363795534, 0.00797700416, 0.036655575, 0.0365175642, 0.00238240534, 0.01729271, -0.00210293429, -0.0127107622, -0.036020726, -0.045350235, -0.0115169724, 0.00617251731, -0.0270362478, 0.00528235, -0.00367797841, 0.0128280716, 0.0298654605, 0.0207981747, 0.0200805198, 0.00945371576, -0.00662795175, -0.0222472847, -0.0237239972, -0.00202875352, -0.0259597655, 0.00186831644, -0.0276434924, 0.00795630272, 0.00937781, 0.00668315589, -0.00656929752, -0.0109787313, -0.0302518904, 0.00500287861, -0.0430592597, 0.0108821243, 0.0166026577, 0.00576193631, 0.0114962701, 0.00370558049, -0.0453226306, 0.00641058525, -0.0406578779, -0.00680736545, -0.0132973073, -0.00451639201, -0.0392501727, 0.0117032863, 0.0123933386, 0.0041575646, -0.0364899635, -0.0134077156, -0.0222058818, -0.000601639331, -0.00624497281, 0.0121863224, 0.00393329794, -0.0167958718, -0.00834963191, -0.000950547, 0.00886027049, -0.00588959595, -0.0138493488, -0.0130281867, -0.0306935236, 0.02521451, -0.00562737603, -0.0339781716, 0.0405198671, 0.0484416671, -0.0245520584, 0.0301138796, -0.0323496498, -0.028154131, -0.0216124356, 0.0118067944, 0.0357999094, 0.00959172659, 0.00518919295, 0.0108062178, 0.00181483745, 0.0497113653, 0.0172789078, -0.00276365923, -0.0282645393, 0.0244968552, 0.00746636512, 0.00440943381, 0.00743186288, -0.0105578, 0.0356342979, 0.0513398871, 0.0313559733, -0.0273536704, 0.00197527464, -0.0377596579, -0.0176929403, 0.010771716, -0.00884647, -0.00154312933, 0.0230201427, -0.0210051909, -0.0154985739, 0.0311903618, -0.0122208251, 0.0223300904, 0.00173893163, -0.0534928516, -0.00776308775, 0.0182725843, 0.0191006456, -0.0102748778, -0.014008061, -0.0215848349, 0.0442737527, 0.0136009296, -0.0243864469, 0.0111374436, -0.040133439, 0.0232271589, 0.00915699359, 0.0167820714, 0.00503393123, -0.0296722464, 0.0295342356, 0.0118965, 0.0122760292, -0.0279057138, -0.00546176359, 0.0137941446, 0.000408855965, -0.000770270824, -0.00955032278, -0.0325704664, 0.0119103016, -0.0102817789, -0.00929500349, 0.00169407832, -0.0198597033, 0.0162024274, -0.0064657894, 0.0183139872, 0.0242484361, -0.0132697048, -0.0108545218, 0.0214606244, -0.00908798818, 0.00763887819, -0.0174445212, 0.0273950752, 0.0151673481, -0.0087498622, 0.0109580299, -0.00997125544, 0.0410995111, -0.00380563806, -0.00369177945, -0.0112133492, 0.00585854379, -0.0100126583, 0.000901380728, -0.00368487905, 0.0220264681, 0.0135319242, 0.0314663835, 0.0110339355, 0.000525733572, -0.0217642486, -0.0146429092, -0.00260149688, 0.00495802565, -0.0341161825, 0.0148361232, -0.00911559, 0.0201081224, -0.0292858183, -0.0294238273, -0.0249522887, 0.0146291079, 0.060614191, 0.0148361232, -0.0109028257, 0.0241380278, 0.00964693073, -0.0262081847, -0.0102334749, -0.00220989226, 0.00781139126, 0.0199425109, 0.0197906978, 0.0115238726, -0.0031535388, 0.0297550522, 0.0613870472, -0.00169580337, 0.0037021304, -0.0105716009, 0.0290926024, -0.0226751175, -0.00725244917, -0.00946751703, 0.0328740887, 0.00919839647, -0.0125313485, 0.0233375672, 0.0017786097, 0.018590007, -0.000373922056, 0.0062691248, 0.0321564339, 0.00227889745, -0.0203565415, -0.019749295, -0.0288165826, 0.00607936038, 0.00743876304, -0.0221782792, 0.00328809908, -0.00389189459, 0.0138010448, -0.0322392397, -0.00745946495, 0.00523059582, -0.00476826122, -0.00271018012, 0.00608626101, -0.0238620061, 0.0067176586, 0.0277124979, 0.0176239349, 0.00992985163, -0.0319632217, 0.0138700502, 0.00527544925, 0.0190592427, -0.00433007767, 0.00238585565, -0.0122139249, -0.0218470544, 0.0186176095, -0.00379528734, 0.0104197888, -0.00395054929, -0.00376078486, -0.0131523963, 0.0274640787, -0.00661070039, 0.0120897153, -0.00840483606, 0.0120897153, -0.0376768522, -0.00157418172, 0.00179586094, 0.00960552692, -0.0154157672, 0.045736663, -0.0140701653, -0.00239620637, 0.0240138192, -0.0210465938, -0.0308315344, 0.019514678, 0.0168924797, -0.0060517583, 0.00522369565, 0.0264980067, -0.0120000085, -0.0275330842, -0.0175135266, 0.00269810436, -0.0220264681, -0.0125520509, -0.018010363, 0.00585164316, 0.0200253166, -0.0321012288, 0.00538930809, -0.0176929403, 0.0109442286, 0.00985394605, -0.0118136946, -0.0197216924, 0.0224543, -0.0242760386, -0.00937091, -0.0234065726, 0.012172522, -0.0222196821, 0.00790799875, -0.0113996631, -0.00307418266, -0.0102127735, -0.000923807442, -0.0229925402, -9.14319244e-05, 0.0199977141, 0.021391619, 0.0159264058, -0.0394709893, -0.0113789616, -0.00181656249, -0.0181759764, 0.0167682692, 0.00757677387, -0.000953134673, 0.000155693037, -0.0222748872, 0.00700058, 0.00642438652, -0.0145048983, -0.00387809356, -0.00852904562, -0.00580333965, 0.000332303287, 0.021833254, 0.0220678709, -0.00501668, 0.00685566897, 0.00892927591, 0.0153743643, -0.00576883694, -0.0185072012, -0.00188901799, -0.0176515374, -0.0143668875, -0.00812191516, -0.0246072635, -0.00144393428, 0.00614146516, 0.00160954683, 0.0125520509, -0.0126003539, 0.0262081847, 0.00706268474, 0.0258217547, -0.00603450695, -0.0210741963, 0.00879126601, -0.00329672452, 0.0236135889, 0.0179689601, 0.0235721841, 0.00545486296, -0.0233375672, -0.0115031712, -0.02521451, -0.0102127735, -0.00176998402, -0.0210879967, 0.00796320289, 0.00530305132, 0.00382288941, -0.0295066349, -0.00105146714, 0.0070799361, 0.00508568529, 0.016133422, 0.0084324386, -0.0140977679, -0.00109718309, -0.0190730449, -0.0668522641, -2.65373601e-05, 0.00442323508, -0.0079287, -0.00967453234, 0.0188660286, 0.0164370444, -0.00086040888, 0.0139045529, 0.0242070332, -0.0045060413, 0.0210603941, -0.0301966872, -0.00797700416, 3.57425488e-05, 0.0159678087, -0.00765958, 0.0038470414, -0.00323979533, 0.00215468812, -0.0251455046, 0.0117032863, 0.0056549781, 0.0150293382, -0.00908798818, 0.00157418172, -0.0052927006, 0.0111995479, 0.00814951677, -0.00260322215, -0.00588269532, 0.00322081894, -0.00198217505, 0.0141322697, -0.00692467438, -0.024345044, 0.0156503841, -0.0103438832, 0.0217504464, -0.00811501406, 0.00293272198, 0.0072248471, 0.00497182645, 0.0158574, 0.00460954895, 0.00528925052, 0.0316872, 0.00935020763, -0.00411271164, 0.00803910848, 0.00317941583, 0.0204255469, 0.0120138098, 0.0403266549, -0.00163024839, -0.0149189299, -0.0210051909, 0.0150569398, 0.0093640089, 0.0104749929, -0.0154157672, 0.00793560129, 0.0049545751, 0.00190454419, 0.0103645846, 0.0141046681, -0.0158159975, 0.0110960398, 0.0214606244, -0.0259597655, -0.00724554854, -0.0369868, -0.0051477896, -0.0123933386, -0.0279885195, 0.0148085216, 0.0208533797, -0.000169062798, -0.00532720331, 0.00863255374, 0.00279988698, 0.00719724502, 0.00114376156, -0.000382763363, 0.00687982095, -0.0193766672, -0.00233755191, 0.00523404637, 0.0186038092, -0.00971593522, -0.00564462738, -0.0364347585, 0.0130419871, 0.0261115767, 0.00144048408, 0.0388637409, -0.0241104253, -0.0069350251, -0.0100126583, 0.00695227645, -0.0166302584, -0.0217366461, 0.0138355475, 0.0240690224, 0.00340023241, 0.0304451045, -0.0248418804, -0.0143530872, -0.0115859769, 0.0180517677, 0.0461782962, -0.00857735, -0.0198873058, 0.0377872624, -0.0073835589, 0.00433007767, -0.0126555581, -0.0153743643, 0.029065, 0.0132076, 0.0271742567, -0.0178861544, -0.0142288776, -0.0034243844, -0.00688327104, -0.00035774897, 0.0296446439, 0.028154131, 0.00345716183, -0.0146567095, 0.00664175302, 0.00614491524, -0.0155951809, -0.0268430319, 0.00166906393, 0.0242346358, -0.0122070247, -0.0115790768, 0.0139459558, 0.0124209402, 0.0154571701, 0.00191834522, -0.0216124356, -0.0295066349, -0.0179827623, 0.0237515979, -0.00401955424, -0.00863255374, 0.00545486296, -0.0185072012, 0.00368142873, 0.0204255469, 0.020328939, -0.0274502784, -0.0233375672, 0.000184265518, 0.0151811494, -0.0130971922, -0.00733525539, 0.0141874738, -0.0225233063, 0.0194318704, 3.52843126e-05, -0.00834273174, 0.0244140495, 0.0018700416, -0.00779069, 7.55418523e-06, -0.0146429092, 0.00293272198, 0.00606555911, -0.0010782067, 0.0218746569, 0.012124218, -0.00434732903, 0.00112823548, 0.0182311796, 0.0268844347, 0.0188108236, -0.000664175313, -0.00456469553, -0.00104284147, -0.0371248126, 0.0039988528, -0.020522153, -0.0149189299, -0.00848074257, -0.0268982369, 0.00204773014, 0.0411271155, 0.0208809804, -0.000755607209, -0.0112340506, -0.0156503841, 0.0178309493, -0.017140897, -0.00395744946, -0.00725935, 0.0107165119, -0.00476826122, 0.0377596579, 0.00680736545, 0.0136561338, 0.0041437638, -0.0368487909, 0.00891547464, 0.0265532099, -0.0156227825, -0.00746636512, -0.0326256715, 0.0111926477, -0.0104059875, -0.017720541, 0.00338470633, -0.0247866772, 0.0185072012, 0.013428417, 0.0267050229, -0.00850834418, 0.0278505087, -0.00935020763, 0.0109787313, 0.0282921419, 0.0322392397, 0.0314387791, 0.0306935236, 0.00766648073, -0.000852645782, 0.0138148461, -0.00441288436, -0.00523749646, -0.00638298318, 0.00967453234, 0.0281679332, -0.00483381609, 0.0166302584, -0.00096434803, 0.00287924311, 0.0417895652, -0.00651754346, 0.00968833361, -0.0338125601, 0.00655204616, 0.0313559733, -0.00379183702, -0.0150569398, 0.0142564792, -0.00221161754, 0.00864635501, 0.00109200773, -0.0184657983, -0.000177041526, -0.00772858504, -0.0469787568, -0.025932163, -0.0125865526, 0.00246521155, -0.0406578779, 0.00391604658, 0.0196112841, -0.00985394605, -0.00543416152, 0.0125865526, -0.0242760386, 0.0358551145, 0.00493042311, 0.00460954895, 0.00555492053, -0.0101023652, -0.00803910848, 0.0297826547, 0.0137251392, -0.00159057043, -0.0130212856, -0.00205808086, -0.0090396842, -0.00943991449, 0.000919494603, 0.00505463267, -0.011303056, 0.0132559035, 0.0202047303, 0.0196112841, -0.017872354, 0.00140080601, 0.0185348038, -0.0156503841, 0.00113168568, -0.00699713, 0.000646061439, -0.00453709345, 0.0123933386, 0.0231167506, -0.0158988032, 0.0130074853, 0.0100609614, 0.000960035191, 0.00241518277, 0.00915009249, 0.00574123487, -0.0319632217, 0.00368142873, -0.00941921305, 0.00653479481, -0.0148223219, -0.0199839137, 0.01439449, 0.0410167053, 0.0131523963, 0.00708683673, 0.00165008742, -0.0135457255, 0.0137320394, 0.0283473469, 0.0122139249, 0.0288441833, -0.0269810427, -0.0133042075, -0.0317976065, 0.00270845508, -0.00134215166, 1.77095444e-05, -0.000222757488, -0.00555147044, 0.01043359, 0.019224856, 0.00894997735, 0.00559632387, 0.00131627463, 0.00643818732, -0.0182587821, -0.00552041782, -0.00946751703, 0.0101575693, -0.00375043391, 0.0101989722, 0.00192869606, -0.00547901494, 0.00559287332, -0.00228752312, 0.00177515938, 0.00360207283, -0.00046535398, -0.00995055307, 0.0181345735, -0.0103576845, 0.023130551, -0.00743876304, -0.00268257805, -0.0103300819, 0.00410236046, 0.012462344, 0.0146567095, 0.000311817363, 0.0155951809, 0.0271466561, 0.00745256431, 0.0321564339, -0.00682461681, -0.00378838694, 0.0117170876, -0.0126693593, -0.00201667775, 0.00777688902, -0.0039609, 0.00625187345, -0.0194732752, -0.00644163787, -0.0131178936, 0.00183898921, -0.000997988, -0.0089016743, -0.00600690488, -0.00526509853, 0.00297412509, 0.0243864469, -0.00378493662, -0.00877746474, 0.0132352021, 0.0149879353, 0.0144082913, -0.00831512921, 0.000476567337, 0.0107786162, -0.00745946495, 0.00648304075, 0.00342265912, 0.00432662759, 0.0166302584, 0.0112685533, -0.00923289917, 0.0192800593, 0.0111236423, -0.00473030796, -0.011834396, 0.0144220917, -0.000759057468, 0.0160230137, 0.014587705, 0.0282369386, -0.0119517045, 0.00567913, 0.0135319242, -0.0194318704, 0.00955032278, -0.00581024, 0.0128004691, 0.0155123742, 0.00714894151, -0.014297883, -0.00304658059, -0.0102127735, 0.00240310701, 0.0141046681, 0.00394364865, 0.021391619, -0.0141322697, -0.023420373, 0.00167423929, -0.00687982095, -0.0142840818, -0.00288096815, -0.00168372749, -0.00163628638, 0.00449569058, 0.000687464548, -0.0259597655, -0.0105232969, -0.0103783859, 0.00242380844, -0.0216952432, 0.00358137116, -0.0115997782, 0.00786659587, 0.0145325, -0.0132352021, 0.00688672159, -0.0250488967, 0.00572053296, -0.00410581101, -0.0217918493, -0.00334330322, -0.0118412962, 0.000404974417, 0.00170787936, -0.00831512921, 0.0127797676, 0.0010566425, -0.00327774812, -0.00295169861, -0.00804601, -0.0231857561, 0.00264980062, 0.0147395162, -0.0191420503, -0.00321046798, -0.00841863733, -0.0131523963, 0.00441633444, -0.00641748589, -0.00932260603, -0.00675906194, -0.00633467967, 0.00457159616, -0.00761127612, 0.0158159975, -0.012558951, 0.0109028257, 0.00704543339, -0.0248418804, -0.00577228703, 0.0116135795, 0.0091914963, -0.00162162283, -0.0197906978, 0.00210983469, -0.0104680927, 0.00141201937, -0.00992295146, -0.0144496942, -0.0252283104, 0.00516849151, 0.012607255, 0.0106061026, -0.0156089822, -0.0208257772, -0.000684014289, -0.0269396398, 0.0165612549, 0.0116894851, -0.00337263034, 0.00791489892, -0.000942783896, -0.0130488882, 0.00978494063, 0.00152587809, 0.00361587387, -0.0134077156, 0.0211846046, 0.0328464881, -0.00559632387, 0.00825302489, 0.00563772675, 0.0108821243, -0.0165474527, 0.0025738948, 0.0175135266, -0.00293272198, 0.00886027049, 0.0173341129, 0.00879816618, -0.00859805103, -0.00812191516, -0.00487866951, -0.00365727697, 0.00239103101, -0.0091845952, -0.00984014478, -0.0191282481, 0.00817711931, -0.00177343423, -0.00317769055, -0.00743876304, 0.0228131283, 0.00368487905, 0.0087498622, 0.00503393123, -0.0163128357, 0.00458539743, 0.00486141816, 0.00820472091, 0.00962622929, 0.0311627593, 0.0127245635, 0.0159264058, -0.0103438832, -0.0194042698, -0.0173065104, 0.00774928695, 0.00805291, 0.0101368679, -0.0216124356, 0.00307418266, 0.0279333144, 0.00109200773, -0.0159954112, -0.00535825593, -0.0110546369, 0.0210465938, -0.0137113379, 0.0329845, 0.00710063754, -0.000368531037, -0.00772858504, 0.00132576283, -0.00323634502, -0.00892237574, -0.00940541178, -0.0256147403, -0.0245244578, -0.00519264303, -0.00359517219, -0.00504083186, 0.0170856938, 0.00309660938, -0.000186961028, -4.5823781e-06, -0.00430937624, 0.0092467, -0.0171823017, -0.000267395255, 0.00689707231, 0.00719034439, -0.0287613776, -0.0042886748, 0.00475101, -0.00675906194, -0.0185348038, 0.0070074806, -0.0046647531, 0.0119310031, 0.0382012911, 0.0183415897, -0.0178585518, -0.020039117, -0.0258079544, 0.0133456104, 0.012607255, -0.0131661966, 0.01729271, 0.0231029484, 0.00676251203, 0.00518229231, -0.0166854635, -0.0126417568, -0.0151949506, 0.00191316986, 0.0124347415, -0.00679701474, 0.00327084772, -0.0260149706, -0.0112064481, 0.0154019659, 0.0113582602, 0.017872354, 0.0156365838, -0.0201219227, 0.0153743643, -0.00483381609, -0.0134422174, 0.00499252789, 0.0272708647, 0.00581714045, 0.00350546534, -0.0218056515, 0.0177757461, -0.00357447076, -0.0112064481, -0.0153191602, 0.00735595683, 0.0134077156, 0.0176653378, 0.00153191597, 0.034861438, 0.00330880051, 0.0126624592, 0.0205911584, -0.0135940295, 0.00130333623, 0.0128763746, 0.00928810332, 0.0129246786, 0.0052927006, -0.0201909281, 0.00807361118, -0.0121311182, 0.00742496224, 0.019224856, -0.00261702319, 0.00519609358, -0.0104680927, 0.0118965, 0.0153467618, 0.00968833361, 0.00985394605, 0.00803220831, 0.00731455395, -0.00163801154, 0.00338815665, -0.000355808181, 0.00462335, -0.0045784968, -0.0202047303, 0.0166716632, 0.00198217505, 0.00588269532, 0.00710753817, -0.00198045, -0.00828062743, -0.00240310701, -0.028250739, -0.00176135835, -0.00151121442, -0.0254077241, -0.0109787313, -0.0120690139, -0.0065589468, 0.0245244578, 0.0369315967, -0.0112064481, 0.00364692626, -0.00524094701, 0.00892927591, 0.0190178398, 0.0193628669, -0.0114548672, 0.0158159975, 0.0263461955, -0.00576883694, 0.0132973073, -0.0042162193, -0.0203979444, -0.00703508267, 0.0158436, -0.0214606244, -0.00278091058, 0.0358275138, 0.0255595353, -0.00100747624, -0.0184657983, -0.00882576872, -0.00280678761, -0.0258217547, 0.00612766389, -0.0253249183, 0.00603105687, -0.0165198501, 0.00132835063, 0.00675216131, 0.00300000212, -0.00348648895, 0.0143254846, 0.00412306236, -0.0240966249, 0.0175135266, 0.0234065726, -0.00230304943, 0.0182311796, -0.0175963324, 0.00573088415, -0.0093295062, -0.00510293618, 0.0299482681, 0.0148361232, -0.0135871284, -0.00365037634, 0.00990225, 0.0072386479, 0.0146567095, 0.0202461332, -0.00835653301, -0.00618631858, -0.0116618834, 0.029065, 0.0384773128, 0.00286889216, 0.00840483606, -0.00158108224, 0.00162076019, 0.00841863733, -0.0253939219, -0.00376078486, -0.00996435434, -0.0102748778, -0.00990225, 0.00819092058, 0.0106682079, 0.00377803599, 0.0146567095, -0.00820472091, 0.00719034439, 0.0159540083, 0.0215848349, 0.0230891481, 0.00253249169, 0.0239586141, -0.00290339487, -0.0105232969, 0.0241518281, 0.00290684518, 0.00830132887, -0.00523059582, -0.0185624063, 0.0168234743, 0.0172789078, -0.0134491185, 0.01874182, -0.0388361402, -0.00825992506, 0.0123381345, -0.0140356626, -0.00556182116, -0.0139390556, 0.0154433697, -0.0118619986, -0.00311386073, 0.0127383647, -0.00730765332, 0.00854284689, 0.00096693571, 0.0170856938, -0.0122415265, -0.0243174415, 0.0222748872, 0.0038539418, 0.00964003, -0.00492007239, -0.0211708024, -0.00455779489, -0.0127383647, -0.0035227167, -0.00400920352, 0.000734474335, 0.00999195687, 0.0214606244, 0.00284301536, -0.0143254846, -0.0187556203, 0.0164784472, 0.0145325, -0.00714894151, 0.00952272117, 0.00857735, -0.0076940828, 0.00593444938, 0.00382633973, 0.0203013364, 0.00954342261, 0.0247590747, -0.00190109399, 0.0147947203, -0.0171823017, -0.0193766672, 0.00141374453, -0.0260839742, -0.0135043226, -0.0239724144, -0.0119655058, 0.0164370444, -0.00797010306, -0.00627602544, -0.00851524435, -0.0135250241, -0.0077078836, 0.0129246786, -0.0127797676, 0.00375733455, -0.0139045529, -0.00271708076, -0.00326222205, -0.00504428195, 0.00999885704, -0.00449569058, 0.00316733983, -0.00279298658, -0.00178551022, 0.0104749929, -0.00116273807, 0.0130488882, -0.00700058, 0.00995055307, 0.0167406667, 0.00999195687, 0.0275606867, 0.00323116966, 0.00477516139, -0.0049166223, 0.00559632387, 0.00350029, -0.01729271, -0.00226854673, -0.00301897852, -0.00694882637, 0.0186866149, -0.0186176095, 0.0122898305, -0.0165336523, -0.00966763217, -0.00796320289, 0.00102559011, 0.010771716, 0.00189246831, -0.000840138586, -0.00404370623, 0.00375043391, -0.0019424971, -0.0233927704, 0.00310178497, 0.0052927006, -0.0180517677, 0.000488211954, 0.00312076136, 0.035165064, 0.0157331917, -0.0052789, -0.000965210609, 0.0157055892, 0.00667625573, 0.00922599901, -0.00927430205, -0.000437320617, 0.0168786775, 0.0118205948, -0.00562392594, -0.00995055307, -0.00855664816, 0.0136078307, 0.0276986975, 0.0117791919, -0.0146015054, 0.0235445835, -0.00839103572, -0.0132076, -0.0229787398, -0.0012929854, -0.00518574286, -0.0132006994, 0.0271328539, 0.00418861723, 0.0148775261, -0.0187832229, -0.00666590454, 0.00646924, -0.00243933476, 0.00374698383, 0.0168924797, 0.00839793589, -0.0161196198, 0.0205083527, 0.0074042608, -0.0173341129, 0.0261391792, -0.00119120267, 0.0142702805, -0.0130764898, 0.00787349604, 0.00382979, -0.0211156, -0.0063933339, -0.0146429092, -0.00482691545, 0.00474065915, -0.00546866423, 0.00844624, -0.0115514742, -0.0181207713, -0.00179241074, -0.00823232345, 0.0109442286, -0.0145187, 0.00123691862, 0.0153329615, -0.0138493488, -0.000652530638, -0.00600690488, -0.0248832833, 0.00821162201, -0.00173030607, 0.00449569058, 0.0182587821, 0.0254215244, -0.00686947023, 0.00195974833, 0.0151535477, -0.00485451752, 0.00971593522, 0.00890857447, -0.01729271, -0.00930190459, 0.0298102573, -0.00823232345, 0.0134698199, -0.0223576929, 0.0148085216, 0.00527199917, 0.00167337665, -0.00137234142, 0.0178585518, 0.016078217, -0.0177895464, -0.0207981747, -0.00598620344, -0.00831512921, -0.00835653301, -0.0147671178, -0.0238344055, 0.0143392859, -0.0103576845, -0.00261874823, -0.000280549371, 0.0332881212, -0.00438873237, 0.00561357522, -0.00595170073, 0.0306935236, 0.0150569398, -0.0103162816, -0.0217366461, 0.00685566897, -0.0232271589, 0.00112651032, -0.0250488967, 0.0155399768, -0.00863255374, -0.00242035836, -6.25359871e-06, -0.00497872708, 0.00908798818, 0.00116187544, 0.00289994455, 0.0103852861, -0.00582749117, -0.032791283, 0.00842553843, -0.0187832229, -0.0144358929, 0.0155951809, 0.0322944447, -0.0110753383, -0.00716274232, 0.0202599335, -0.00481311465, -0.012993684, 0.0514502972, -0.00184934, -0.000677545031, 0.0102610765, 0.025352519, -0.00612766389, 0.00547556439, -0.0397746116, -2.31410104e-05, 0.0106544066, 0.0161748249, 0.00548936566, -0.0143254846, -0.00192869606, -0.00999885704, -0.00611386308, 0.0125037469, -0.00997125544, -0.00150172622, -0.000948821835, 0.00251696561, -0.00504083186, 0.0126486579, -0.00577573711, -0.000601208, -0.00237032957, -0.00405750703, -0.00566532882, 0.00870845933, -0.0218746569, -0.0175549295, 0.0113237575, 0.00144220924, -0.0167268664, 0.00563427666, 0.000564980262, -0.00946751703, 0.0150017357, -0.0205635577, -0.0135664269, -0.00310178497, 0.000454571913, 0.00625187345, -0.0143530872, 0.00196319865, 0.0135250241, 0.000955722353, 0.00378493662, 0.00841863733, -0.00834273174, 0.0307487287, -0.00923289917, 0.0156365838, -0.00403680559, 0.00371248112, 0.0029896514, -0.00162938586, 0.0331225097, 0.0195008758, -0.00171477988, -0.00401955424, 0.00658999896, 0.0059793028, -0.0260977764, -6.42072046e-05, 0.0211846046, -0.00733525539, 0.0238482058, 0.0074042608, -0.00475791, 0.0057136328, 0.0147119137, 0.00163197354, -0.0147119137, 0.00808051229, 0.00337608065, 0.0032070179, 0.0231857561, -0.0100057572, 0.013138595, 0.0108545218, -0.0280299224, 0.00445083715, -0.00288096815, -0.013573328, 0.0218746569, 0.0177067406, 0.00661070039, -0.0177481435, -0.00848764274, 0.00297412509, 0.0112202493, -0.00488557, 0.0213502161, -0.00558597315, -0.0160644166, 0.00223576929, -0.0186728146, -0.027864309, -0.00555147044, 0.000497700181, 0.00425072201, 0.0147809191, -0.00129384792, -0.00945371576, -0.0233789701, 0.0189350341, 0.00948821846, -0.020811975, -0.00830822904, -0.0115100713, 0.00274985819, 0.0131247938, -0.000385351042, 0.0155951809, 0.00576193631, -0.0076940828, -0.0192110538, 0.00573433423, 0.00318459119, -0.0150569398, -0.00240310701, 0.0053513553, 0.00356757012, -0.00646924, -0.0181483738, -0.0141046681, 0.000310739153, -0.0102058724, -0.00939851161, 0.00121621706, 0.00839103572, -0.0305555128, -0.000865584298, -0.00943991449, 0.0248142797, -0.0124899456, -0.0284853578, 0.00204255455, -0.00614491524, 0.0136630349, 0.00605520839, -0.00777688902, 0.0132973073, -0.00512708817, 0.0127176633, 0.0291478075, -0.00647614058, -0.0133801131, 0.0179137569, 0.0101299668, -0.00366417738, -0.00274295779, -0.0290374, -0.00490627158, -0.0203565415, -0.00110494613, 0.00381943909, 0.00195629802, -0.0178585518, 0.0184795987, -0.0001257189, 0.0309695452, -0.0135181239, 0.012124218, -0.00436458038, 0.0092190979, -0.0192800593, -0.0171547, -0.00870155916, 0.00487521896, 0.0184105933, -0.0372076184, 0.0173755158, 0.0280161221, -0.0109994328, -0.00181828765, 0.00373318256, 0.0061966693, -0.0166992638, -0.00844624, 0.00642093597, -0.00928120315, -0.0326256715, -0.0170994941, -0.0116411811, 0.00208223262, 0.00266705197, 0.00887407176, -0.00222024322, 0.0126555581, 0.0104956944, 0.0259873681, -0.00243070908, -0.0201771278, 0.00704198331, 0.000279471162, -0.0102196736, -0.0177619457, 0.0154985739, 0.0189488344, -0.00366762769, 0.0120414114, -0.0169614851, -0.0271190535, -0.0210465938, -0.0256975461, 0.0317976065, 0.00508223474, 0.0223852955, -0.0159816109, -0.00976423919, -0.0166440606, -0.00360207283, -0.0118136946, 0.00526509853, 0.00789419748, 0.000302329136, 0.0256009381, 0.0340333767, 0.00765958, 0.00295687397, -0.0051477896, 0.0185072012, 0.0111098411, 0.0190868452, 0.017002888, 0.0057136328, -0.00402300479, 0.0107165119, -0.0763473809, -0.00504428195, 0.0178171489, 0.00957792532, 0.000409502885, 0.021681441, 0.00229959912, -0.0103714857, 0.00190281903, -0.00625187345, 0.000389232591, 0.000758626207, 0.0158159975, 0.00138269225, -0.00213571172, 0.00684186816, 0.0226337146, -0.000206800032, 0.00263254927, 0.00512363808, -0.00717654359, 0.0114755686, 0.00564807747, -0.00109804561, 0.00127142132, -0.00285509112, -0.00812191516, 0.002548018, -0.0152225522, -0.00167682697, 0.00901208259, -0.000354298711, 0.00215813844, 0.0117308879, -0.0130005842, -0.0353858806, 0.0109097259, -0.0215158295, -0.00189591851, 0.00158970791, -0.0125796525, -0.0111719463, -0.0132559035, -0.000438398827, 0.00712823961, 0.0230063424, -0.0094813183, 0.0063933339, -0.00961242802, 0.00282576401, 0.0033778057, 0.022261085, -0.0180655681, -0.000422010082, -0.0116480822, 0.0103024803, 0.00701438123, 0.00862565357, 0.0104197888, 0.0144496942, -0.00957792532, -0.0439149253, -0.00943301432, 0.00992295146, 0.00932260603, 0.0306107178, 0.0148913274, 0.00311213569, 0.0142288776, 0.00388844451, -0.0235031787, -0.0236135889, -0.00765267946, -0.000724123558, 0.000500287861, 0.0210465938, -0.00823922362, 0.00318286591, 0.00705578411, -0.0115238726, 0.0192110538, 0.0155813796, 0.00940541178, -0.00349856494, 0.00478896266, -0.00136975374, 0.0221506767, 0.0030810833, 0.0160230137, -0.00533755403, 0.0240276195, 0.00754227117, -0.0159402061, -0.000942783896, 0.00882576872, 0.00540310889, -0.0206463635, -0.00480621401, 0.0180241652, 0.0129315788, 0.00697987853, -0.00149741338, -0.00724554854, 0.00410236046, 0.0141736735, -0.00563772675, 0.00280161202, 0.000323677639, 0.0101575693, 0.00661760103, 0.0361035354, -0.00794250146, -0.0230615456, -0.00246866187, 0.0146567095, 0.014297883, 0.00923289917, -0.0127935689, -0.00163801154, 0.0230891481, -0.0054962663, -0.0169752855, -0.00794250146, -0.00255319336, -0.00019795874, -0.0280575249, 0.00375043391, -0.00133870135, -0.0123243332, -0.000169170627, -0.000185775, 0.0118827, -0.00294307293, -0.0219850652, -0.0209775884, -0.0396918058, -0.00332432683, 0.0049166223, -0.000946234155, 0.0219298601, -0.00493042311, 0.0021443374, 0.0217504464, -0.0282093361, 0.00157504424, 0.012703862, -0.0148775261, 0.0171685, 0.0152225522, -0.00511328736, -0.0243726447, -0.00340885809, 0.0193628669, 0.00215468812, -7.71996e-05, -0.0400230289, 0.00797700416, 0.0064140358, 0.00286544207, -0.0227993261, 0.000709028682, 0.0140356626, -0.00745256431, -0.0040851091, 0.000853077101, 0.00667280518, -0.00324842101, -0.0093640089, 0.00789419748, -0.000434086, 0.0293410216, 0.0135388253, 0.0319908224, -0.015553778, -0.00293099694, -0.0242208336, 0.00717654359, -0.0172651075, -0.012752166, 0.0140632652, 0.00218056515, -0.0150155369, -0.017872354, 0.00257044472, 0.018879829, 0.00274813315, 0.0155675784, 0.0040851091, -0.000543847447, -0.00448879, 0.0146153066, 0.0139597571, 0.000729299, 0.0199839137, -0.0134560186, -0.00429902552, 0.000445083715, 0.00662795175, -0.00934330747, 0.00445428723, -0.00368832937, -0.0135802282, 0.0221092738, 0.017582532, 0.00277573522, -0.0180379655, 0.000109869259, 0.0118274959, -0.0144772958, -0.01874182, -0.0105854012, -0.0110270353, -0.0155399768, 0.0312731676, 0.00629672688, -0.00798390433, -0.00338125601, -0.00706613483, 0.000557217165, 0.0105854012, 0.0271190535, 0.020522153, 0.0129039772, -0.016133422, 0.0196664892, 0.0246900693, -0.00064433628, 0.00479931338, -0.038394507, 0.00336055434, -0.00687982095, -0.0103300819, 0.0317700058, -0.00283438968, -0.00466820365, 0.00342265912, 0.00408165902, 0.00064563012, -0.0208257772, 0.0253663212, 0.00243070908, 0.0399402231, 0.00349511462, -0.00324324565, -0.0102748778, -0.016133422, 0.0190730449, -0.0013404265, 0.0215158295, 0.00631052768, 0.00606210902, 0.00275158323, -0.00200287672, 0.0126348566, 0.00818401948, -0.00539275818, -0.0280023199, 0.0231167506, -0.00674871122, 0.00742496224, -0.00538930809, -0.00870155916, -0.00666935509, 0.00625187345, 0.00122829305, -0.0201771278, 0.00199252577, -0.0233513676, -0.00100661372, 0.0216538403, 0.00475101, 0.00517194159, -0.00347096287, -0.0101299668, 0.000720242038, 0.00551696774, -0.00972283632, 0.0266636182, 0.00428522425, -0.0121587208, -0.0268706344, -0.0145048983, -0.0195836835, 0.0191420503, 0.00564462738, -0.00140684401, 0.0199977141, 0.00276020891, 0.0123036318, -0.0113444589, 0.00763887819, -0.00531685259, 0.0179275572, 0.0216538403, -0.0133939143, -0.0168786775, 0.0116825849, 0.00906038564, 0.00564807747, -0.0330949053, 0.0118550975, 0.0132006994, -0.0160506144, -0.00622427138, -0.0102058724, -0.00524439709, -0.0195422806, -0.00819782075, -0.0141046681, 0.0040713083, -0.020673966, 0.0190592427, -0.0130971922, -0.00184243952, -0.0150569398, -0.0015707314, -0.00273605715, -0.0187142175, 0.00915009249, 0.00690742303, 0.00515814079, 0.00647614058, 0.00538240746, 0.0084324386, 0.0130695896, -0.0126348566, -0.0140494639, 0.00661070039, -0.0151811494, 0.00748706702, 0.00834273174, 0.00710063754, -0.0236825924, 0.0129867829, 0.00596550154, -0.0012110417, -0.00263254927, -0.0202599335, 0.0174445212, 0.0298378598, -0.00419896794, 0.0029292719, -0.0241794307, -0.029313419, 0.000814261672, 0.0159816109, 0.00821162201, 0.00151121442, 0.0359379202, -0.00224612, -0.01241404, -0.00331570115, 0.00808741245, 0.0273674726, 0.0148637258, -0.00343300984, -0.0140149612, -0.0207567718, 0.00404025614, 0.0158988032, 0.0218746569, -0.0225647092, 0.0117998933, -0.0214468241, 0.028250739, -0.00651754346, 0.0127314636, -0.000506325858, -0.0174721237, -0.00312421145, 0.0124209402, -0.0133111076, -0.0211708024, 0.0608350076, 0.0218056515, 0.00303795515, -0.0182311796, 0.0150569398, -0.0057136328, -0.00554802, 0.0292582158, -0.0314663835, -0.0109856315, -0.0150293382, 0.0120690139, 0.0181345735, 0.00318459119, -0.00425072201, -0.00397470081, -0.0102196736, -0.021971263, 0.024055222, -0.0306107178, 0.000885854592, -0.00327084772, -0.0033519289, -0.0210327934, 0.00764577882, -0.0120414114, 0.00946061593, 0.0112478519, -0.0115859769, 0.0233927704, 0.00742496224, 0.0159402061, -0.00937091, -0.0248970855, 0.010626805, -0.00119120267, -0.0120690139, 0.0173479132, 0.00920529664, 0.0105025955, 0.0178033486, 0.0173893161, 0.0158850029, 0.00598620344, 0.0068625696, -0.0213226154, 0.000116446317, -0.00718344375, 0.0301690847, -0.0284577552, 0.0200805198, -0.0135043226, 0.0127314636, -0.0102334749, 0.00513053825, 0.0131247938, 0.0182725843, 0.00952272117, 0.00643818732, 0.0130971922, -0.0180241652, -0.00229269871, -0.00629327632, -0.0138010448, -0.00127573404, -0.00198907568, -0.019224856, 0.0125727523, -0.0196526889, -0.00335365394, 0.00801840704, -0.00940541178, 0.000742668752, -0.0300586764, 0.00447843922, -0.0119931083, 0.00124295661, -0.00403335551, 0.0185348038, 0.0108614229, 0.0117584905, 0.0102196736, -0.0207981747, 0.00710063754, 0.0104473913, -0.00194077194, -0.0151949506, -0.0122139249, -0.0229373369, 0.00416791579, 0.00593789946, 0.00144479692, 0.0113582602, 0.0329292938, 0.0059793028, -0.0100333598, -0.00202012807, 0.0123588359, -0.00364692626, 0.00298620109, 0.0351374596, -0.00667280518, -0.0119448043, -0.0125865526, -0.029120205, 0.0133525115, 0.0181207713, 0.0148775261, -0.0178447515, -0.0027377822, -0.00660034968, 0.000791403698, 0.0286233667, 0.0158159975, 0.0145739038, -0.00941921305, -0.0193076618, -0.0223162901, -0.0195836835, 0.0072386479, -0.00651409337, -0.00096176035, -0.022550907, 0.00937091, 0.0122484276, 2.97045935e-05, 0.0233513676, -0.0049545751, -0.000798735477, -0.00758367404, 0.0179551598, -0.0070937369, 0.00974353775, -0.03458542, 0.00401610415, 0.0216538403, -0.0158988032, 0.0170856938, -0.00419551786, 0.0300034713, -0.0065589468, -0.0244692527, -0.0113651603, 0.0150569398, -0.00132058747, 0.00856354833, 0.0059448, -0.0133387102, 0.00450949138, -0.00180966198, 0.00440253317, -0.00514088944, 0.016423244, -0.00544796232, 0.0304175038, -0.0189626366, 0.0135112228, 0.0154985739, 0.0201495253, -0.000489074504, 0.0135181239, -0.00779069, 0.0189350341, 0.000245399831, 0.00525819836, -0.0143116834, -0.00426797336, 0.000172944347, 0.0264290012, -0.0010782067, 0.00474755932, 0.00939161144, -0.00445773732, 0.0226751175, -0.0127452649, 0.016713066, 0.0149051286, -0.00453364337, -0.00908798818, -0.0415411443, -0.00024798754, 0.0250488967, -0.00147498667, 0.0359931253, 0.0216400381, 0.000597326492, -0.0198459029, -0.00821852218, 0.00451294193, 0.00776998838, 0.0048821196, -0.0106475065, 0.00627602544, -0.00620357, -0.0322944447, -0.0128556732, 0.018451998, -0.000598620332, 0.0140011599, 0.00389879523, 0.00256871944, -0.00426452281, 0.00385049148, 0.0113651603, -0.0191834532, -0.0058723446, -0.0256699435, 0.00685566897, 0.000511501217, -0.010771716, -0.00400575344]
08 Aug, 2018
unordered_multimap emplace() function in C++ STL 08 Aug, 2018 The unordered_multimap::emplace() is a built-in function in C++ STL which inserts a new {key, element} in the unordered_multimap container. The insertion is done automatically at the position according to the container’s criterion. It increases the size of the container by one. Syntax: unordered_multimap_name.emplace(key, element) Parameters: The function accepts a single mandatory parameter key and element which is to be inserted in the container. Return Value: It returns an iterator which points to the newly inserted element. Below programs illustrates the above function: Program 1: // C++ program to illustrate // unordered_multimap::emplace() #include <iostream> #include <string> #include <unordered_map> using namespace std; int main() { // declaration unordered_multimap<int, int> sample; // inserts key and elements sample.emplace(1, 2); sample.emplace(1, 2); sample.emplace(1, 3); sample.emplace(4, 9); sample.emplace(60, 89); cout << "Key and Elements: \n"; for (auto it = sample.begin(); it != sample.end(); it++) cout << "{" << it->first << ":" << it->second << "}\n "; return 0; } Output: Key and Elements: {60:89} {4:9} {1:3} {1:2} {1:2} Program 2: // unordered_multimap::emplace #include <iostream> #include <string> #include <unordered_map> using namespace std; int main() { // declaration unordered_multimap<string, string> sample; // inserts key and elements sample.emplace("gopal", "dave"); sample.emplace("gopal", "dave"); sample.emplace("Geeks", "C++"); sample.emplace("multimap", "functions"); sample.emplace("multimap", "functions"); cout << "Key and Elements: \n"; for (auto it = sample.begin(); it != sample.end(); it++) cout << "{" << it->first << ":" << it->second << "}\n "; return 0; } Output: Key and Elements: {multimap:functions} {multimap:functions} {Geeks:C++} {gopal:dave} {gopal:dave} Learn C++ Online – Master everything from basics to advanced concepts. Apply your knowledge with practical exercises and boost your skills. Take the Three 90 Challenge: finish 90% in 90 days for a 90% refund. Start now and level up your C++ programming!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum/Algorithm for Dynamic Time out timer Calculation/Difference between Round trip time (RTT) and Time to live (TTL)/Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms/Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm/Round Robin Scheduling Algorithm with Different Arrival Time/Selfish Round Robin CPU Scheduling/Find the order of execution of given N processes in Round Robin Scheduling/Calculate server loads using Round Robin Scheduling/set::lower_bound() Function in C++ STL/Implementation of lower_bound() and upper_bound() in List of Pairs in C++/Difference between std::set::lower_bound and std::lower_bound in C++/Difference between std::set vs std::vector in C++ STL/std::minmax() and std::minmax_element() in C++ STL/std::rotate vs std::rotate_copy in C++ STL/std::bitset::to_ullong and std::bitset::to_ulong in C++ STL/std::upper_bound and std::lower_bound for Vector in C++ STL/std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++/std::string::append vs std::string::push_back() vs Operator += in C++/Vector push_back() in C++ STL/vector :: cbegin() and vector :: cend() in C++ STL/unordered_multiset cend() function in C++ STL/unordered_multiset bucket() function in C++ STL/unordered_multiset emplace_hint() function in C++ STL/unordered_multiset end() function in C++ STL/unordered_multiset size() in C++ STL/unordered_multiset emplace() function in C++ STL/unordered_multiset find() function in C++STL/unordered_multiset erase() function in C++ STL/unordered_multiset clear() function in C++ STL/unordered_multiset swap() function in C++ STL/unordered_multiset bucket_size() function in C++ STL/unordered_multiset bucket_count() function in C++ STL/unordered_set bucket_count() function in C++ STL/unordered_set cbegin() function in C++ STL/array::cbegin() and array::cend() in C++ STL/array::rbegin() and array::rend() in C++ STL/multimap rbegin in C++ STL/vector rbegin() and rend() Functions in C++ STL/multiset rbegin() and rend() function in C++ STL/map rbegin() function in C++ STL/map upper_bound() function in C++ STL/Set upper_bound() in C++ STL/multimap upper_bound() function in C++ STL/multimap empty() function in C++ STL/multimap value_comp() function in C++ STL/multimap swap() function in C++ STL/multimap::swap() in C++ STL/multimap equal_range() in C++ STL/unordered_set equal_range in C++ STL/set vs unordered_set in C++ STL/unordered_set count() function in C++ STL/unordered_set bucket() function in C++ STL/unordered_set emplace() function in C++ STL/set::emplace() in C++ STL/multiset::emplace() in C++ STL/multiset find() function in C++ STL/multiset cbegin() and cend() function in C++ STL/multimap::cbegin() and multimap::cend() in C++ STL/multimap::begin() and multimap::end() in C++ STL/set::begin() and set::end() in C++ STL/unordered_multimap begin() and end() function in C++ STL/unordered_multimap empty() function in C++ STL/unordered_multimap find() function in C++ STL/unordered_multimap equal_range() function in C++ STL/unordered_multimap bucket_count() function in C++ STL/unordered_multimap emplace() function in C++ STL
https://www.geeksforgeeks.org/unordered_multimap-emplace-function-in-c-stl?ref=asr10
PHP
unordered_multimap emplace() function in C++ STL
unordered_multiset clear() function in C++ STL, What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, jQWidgets jqxTreeMap width Property, Round Robin Scheduling Algorithm with Different Arrival Time, Difference between Flow and TypeScript, set::begin() and set::end() in C++ STL, unordered_multiset emplace() function in C++ STL, jQWidgets jqxTree destroy() Method, unordered_set bucket_count() function in C++ STL, jQWidgets jqxTree collapseAll() Method, Find the order of execution of given N processes in Round Robin Scheduling, jQWidgets jqxScrollView buttonsOffset Property, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Vector push_back() in C++ STL, jQWidgets jqxListBox enableHover Property, Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm, std::rotate vs std::rotate_copy in C++ STL, Selfish Round Robin CPU Scheduling, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxSlider buttonsPosition Property, std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++, std::upper_bound and std::lower_bound for Vector in C++ STL, Difference between Round trip time (RTT) and Time to live (TTL), jQWidgets jqxSlider rtl Property, Difference between std::set::lower_bound and std::lower_bound in C++, jQWidgets jqxTooltip opacity Property, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, unordered_multiset erase() function in C++ STL, multiset find() function in C++ STL, set vs unordered_set in C++ STL, jQWidgets jqxToolBar height Property, PHP, std::minmax() and std::minmax_element() in C++ STL, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, unordered_set emplace() function in C++ STL, unordered_multimap empty() function in C++ STL, unordered_multimap emplace() function in C++ STL, unordered_set bucket() function in C++ STL, map rbegin() function in C++ STL, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, map upper_bound() function in C++ STL, Node.js date-and-time Date.transform() Method, unordered_multiset size() in C++ STL, TypeScript Optional Parameters, jQWidgets jqxToolBar theme Property, Difference between std::set vs std::vector in C++ STL, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, Steps to Diagnose and Resolve a Slow Network, How to use Optional Chaining with Arrays and Functions in TypeScript ?, Calculate server loads using Round Robin Scheduling, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, jQWidgets jqxScrollView showButtons Property, set::emplace() in C++ STL, Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms, jQWidgets jqxScrollView disabled Property, multimap::cbegin() and multimap::cend() in C++ STL, jQWidgets jqxSplitter destroy() Method, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, set::lower_bound() Function in C++ STL, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, jQWidgets jqxTree collapseItem() Method, multimap upper_bound() function in C++ STL, std::string::append vs std::string::push_back() vs Operator += in C++, unordered_multiset swap() function in C++ STL, unordered_multiset cend() function in C++ STL, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), Set upper_bound() in C++ STL, jQWidgets jqxSortable opacity Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, multiset cbegin() and cend() function in C++ STL, multimap rbegin in C++ STL, vector :: cbegin() and vector :: cend() in C++ STL, multimap swap() function in C++ STL, jQWidgets jqxSlider height Property, jQWidgets jqxSwitchButton onLabel Property, unordered_multiset bucket_size() function in C++ STL, unordered_set cbegin() function in C++ STL, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, jQWidgets jqxToolBar tools Property, multimap empty() function in C++ STL, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTree width Property, multimap::swap() in C++ STL, multimap equal_range() in C++ STL, Implementation of lower_bound() and upper_bound() in List of Pairs in C++, jQWidgets jqxTree clear() Method, TLS Handshake?, multiset rbegin() and rend() function in C++ STL, Algorithm for Dynamic Time out timer Calculation, Adhoc TCP, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, jQWidgets jqxTabs position Property, Differences between Wireless Adhoc Network and Wireless Sensor Network, jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, unordered_multimap begin() and end() function in C++ STL, std::bitset::to_ullong and std::bitset::to_ulong in C++ STL, unordered_multiset emplace_hint() function in C++ STL, multimap::begin() and multimap::end() in C++ STL, unordered_multiset bucket_count() function in C++ STL, unordered_multiset find() function in C++STL, unordered_multimap bucket_count() function in C++ STL, unordered_multiset bucket() function in C++ STL, Impact of Three-way Handshake and Slow Start Algorithm, array::rbegin() and array::rend() in C++ STL, multimap value_comp() function in C++ STL, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, multiset::emplace() in C++ STL, unordered_set equal_range in C++ STL, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, unordered_multimap equal_range() function in C++ STL, unordered_set count() function in C++ STL, vector rbegin() and rend() Functions in C++ STL, array::cbegin() and array::cend() in C++ STL, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, unordered_multiset end() function in C++ STL, How to Sort an Array Having Optional Properties in TypeScript ?, unordered_multimap find() function in C++ STL
GeeksforGeeks
[-0.0492248721, 0.0110147828, -0.0202119891, -0.00649134209, 0.0257740449, 0.0210182816, -0.0246124361, 0.0238061436, -0.0182987507, 0.0105569717, -0.00154340197, 0.0426925309, -0.0118347416, -0.00708581228, -0.0264983419, -0.0223028846, 0.00733863283, 0.0179981, -0.0382100902, -0.021988567, -0.00433211681, -0.0155928871, -0.0143492827, -0.0167408288, 0.00364198466, -1.09501361e-05, -0.0077007818, 0.0159482025, 0.0246124361, 0.00959352, -0.027113311, 0.007960435, 0.00265461719, -0.0366795, -0.0102084894, 0.0292178728, 0.0554838926, 0.00629660161, -0.008739396, -0.0129963504, 0.0095866872, 0.0154288951, 0.0274412949, 0.0118757393, -0.0227401964, -0.00765978359, 0.0189683847, -0.0415445901, -0.0171918068, 0.0347116, 0.0499081723, -0.00810392853, 0.0229725186, -0.00155706797, -0.0191323757, 0.0321970582, 0.0160028674, -0.00333962473, -0.0145542724, -0.00649817521, -0.0325797051, -0.00843874458, 0.0118005769, -0.0317870788, 0.0101264939, -0.0208542906, -0.0174241289, 0.0379367694, 0.0323883817, -0.0171371438, -0.00655967183, 0.0317324139, 0.00570896454, -0.0120602306, -0.0348482579, 0.00657675462, -0.0511381105, -0.00129570602, 0.00869156513, 0.0146636, -0.00165700051, -0.0126956981, 0.00781010929, -0.00483434182, 0.0506188, -0.0287805609, 0.00393921975, -0.0208269581, 0.043594487, 0.0366248339, -0.04487909, -0.0380461, 0.0126683665, -0.00684665749, -0.0335636549, 0.0377727784, 0.0243801139, 0.0294638593, -0.0289445519, 0.0460270308, 0.00295014423, 0.00696281856, 0.00243596151, 0.0102563202, -0.00402121572, 0.0472569689, 0.063027516, 0.0273729637, -0.00531606749, -0.0164538436, 0.0258697066, -0.00537756458, -0.0166178364, 0.0431298427, -0.00386064034, 0.00201402418, 0.0101059945, -0.000201359726, 0.0238744728, -0.0112539371, 0.0213872641, 0.0274139624, -0.0166178364, -0.00714730937, -0.0480496, 0.0328530222, 0.0020071913, 3.65671804e-05, 0.0521220602, -0.0144859422, -0.025610052, -0.0250087492, -0.0230818465, -0.0308304578, -0.00478992704, 0.0404239781, -0.00776911154, 0.0218655728, 0.00290743797, -0.0165358391, -0.065979369, -0.00545956055, -0.0271816403, 0.0342196226, -0.0187907275, -0.0393033698, 0.00259141205, 0.0242571197, 0.0055347234, -0.00429453515, -0.0476669483, -0.0411346108, 0.0296551846, 0.0032627536, 0.0403966457, -0.0111856069, 0.0105911372, -0.0233415, -0.00923137181, -0.0378001109, 0.0277419463, -0.0300378315, 0.000151927292, 0.00783060864, -0.0338643081, 0.0261293594, 0.00340966275, -0.0111787748, -0.0310764462, 0.0541446246, 0.0264026802, 0.0222892184, 0.0443051197, -0.0141716246, -0.00610869471, -0.0213189349, 0.0138504738, 0.0162215214, 0.047994934, 0.0340009667, 0.0272499714, -0.00524773775, 0.0250087492, 0.0368434899, 0.00957302097, 0.00218997383, 0.0200479981, -0.0162898526, 0.0595836863, -0.0106526343, 0.0100854961, 0.0479402691, 0.0354768932, 0.0453437343, 0.0376907811, 0.0212642699, -0.0162215214, 0.0323063843, -0.00123762561, 0.0446057692, 0.014308285, -0.0269903168, -0.0188590568, -0.00746845966, 0.0178204421, 0.00765295047, -0.0169184878, -0.0328803547, 0.0151419099, 0.00778277731, -0.0175334569, 0.014253621, 0.0131535092, 0.00636493182, 0.0175607894, -0.00509057892, -0.0316230841, 0.0231911745, 0.0261430256, -0.0377181135, -0.0177521128, -0.00679882662, 0.0170004833, -0.0607316308, -0.0201436598, -0.0352855697, 0.00936119817, 0.0143766142, 0.00117100391, 0.0088692233, 0.0414352603, 0.0505914688, -0.0107961269, -0.0140486304, 0.0343016163, -0.0329350196, -0.0420912281, -0.0328256935, 0.000274387334, 0.0270996448, 0.00939536374, 0.0267579947, -0.0435671546, 0.014144293, 0.0116775827, 0.0345476046, 0.0148959216, -0.00650842441, 0.00841824617, -0.0222892184, 0.028507242, 0.0206903, 0.0187770613, -0.0296278521, -0.000513755542, 0.0506461337, 0.00231980067, -0.0285892375, 0.00480701, -0.0497988425, -0.0137889767, 0.0248174258, -0.0260473639, -0.00384014123, 0.0143219503, -0.0452344045, 0.0400413312, -0.0131535092, -0.0137753114, -0.0206493, 0.0375541225, 0.01758812, 0.000989929656, -0.00774177955, 0.027837608, 0.00388797233, -0.0133584989, 0.0143492827, -0.0108302915, -0.0597476773, 0.0204033125, 0.00233517494, -0.00908787921, 0.00632051704, 0.0157432128, -0.0101128276, -0.0114999246, -0.0220568962, -0.0220159, -0.0325797051, -0.0169594847, 0.00137513957, -0.0263070185, 0.020321317, 0.0521767251, 0.0294365287, -0.028671233, -0.0307757948, -0.0432665, 0.014417612, -0.00182440877, -0.0223165508, 0.0160985291, -0.00546980975, -0.0205673054, 0.00468059909, -0.021824576, -0.00595495244, 0.00511791091, -0.0246671, 0.0161258597, -0.0334269963, -0.0404513106, 0.0135019915, -0.0185310729, 0.00368981552, 0.0376087874, 0.0154288951, -0.0449884161, 0.0125112077, -0.0171508081, -0.0129348533, -0.0213599317, 0.0293545313, 0.033263, -0.0135361562, -0.0131603424, 0.0247080978, -0.00891705416, -0.077732116, -0.0296825152, 0.0119714011, -0.0255143903, 0.00886239, -0.00728396932, -0.0209499523, -0.00615652557, 0.0176291186, 0.000145521364, 0.00579779362, -0.00656650495, -0.0294365287, 0.011527257, -0.00254870579, 0.0364335105, 0.0379641019, 0.000315598794, -0.0162078571, 0.0105569717, 0.00413395977, 0.0011821076, -0.0107892938, -0.0141579583, 0.00295356056, 0.0160028674, -0.0354768932, -0.0214829259, -0.0182850864, -0.00984634086, 0.0409706198, -0.0171781406, 0.0306118019, 0.018708732, -0.0140622966, -0.00799460057, -0.0155792208, -0.0156612173, 0.00525457039, 0.0300378315, -0.0153469, 0.00863006804, -0.0415992513, 0.0169594847, -0.0114315953, -0.0326617, -0.00329008559, 0.0338369757, 0.0415445901, -0.00813809317, -0.0062521873, -0.00400071684, 0.0124770431, -0.0166588333, 0.0119714011, 0.00772811333, -0.00912204385, -0.00140247156, 0.0121763907, 0.000215025706, 0.00226172013, -0.0257467125, 0.0126137026, -0.0535979867, -0.0244211126, 0.00966868363, -0.016645167, -0.0189000554, -0.0253640655, -0.0151282437, -0.0367888287, 0.0135566555, -0.0291632079, -0.0100308321, 0.0273456331, 0.0134814922, -0.00301676593, 0.00645717699, 0.0117117474, 0.0211412758, 0.011130943, 0.0244484432, -0.00124189619, -0.00403146492, -0.00130510144, 0.00517257489, 0.00142126228, -0.052395381, 0.0335636549, 0.00166468765, -0.00774861267, -0.0167681612, -0.0221388936, -0.0217015818, 0.00924503803, 0.0129963504, 0.0306664668, -0.022712864, 0.00724980421, -0.00952519, -0.00957302097, 0.0191323757, -0.00871889759, 0.0203623157, 0.0308577903, -0.0154698929, -0.0490062162, 0.0306391343, 0.00976434536, 0.00280494313, -0.0207039639, 0.0185584053, 0.0416265838, 0.0152375717, -0.0220842287, -0.0066758329, 0.0440318, -0.00682957517, -0.010912288, 0.0290812124, 0.0440044664, -0.0159892011, 0.0182714202, -0.0436491519, -0.0191323757, 0.0251044109, -0.0150599135, 0.0335636549, -0.00750945788, 0.0428018607, 0.0156612173, -0.0177247804, 0.0235054921, 0.0120055666, 0.00369323208, 0.00177145307, 0.0126478672, 0.00379914325, 0.0314864255, 0.00613261, -0.00444144476, 0.000974555442, -0.0386200696, 0.0213872641, 0.0130441813, 0.0092928689, 0.0116775827, -0.0340556316, -0.00871889759, -0.00504616415, 0.00606428, 0.0082337549, -0.00692182034, -0.0236148182, -0.0201299936, -0.0259790346, -0.0486509, 0.0165495053, -0.0220022332, -0.0226445347, 0.0300104991, -0.0126615334, -0.00159464939, -0.0184080787, -0.0316504166, -0.00732496707, 0.00363515154, -0.0294911917, 0.0194056965, -0.0173284672, -0.00234884094, 0.023382498, 0.0126888659, -0.0305024739, 0.0368708223, 0.018763395, -0.0431571752, 0.00974384602, 0.00316709164, -0.0266896654, 0.00579437707, -0.00757095497, 0.0496075191, 0.0372261368, 0.0257877111, -0.00375472894, -0.0198430084, 0.0371441431, 0.0262523536, -0.0379641019, 0.0157295465, 0.0182167552, 0.00509741157, 0.00384014123, 0.0120602306, -0.0155108906, 0.0201026611, -0.0126683665, -0.00474209618, 0.024161458, -0.0584357455, -0.0108986218, 0.0127093643, -0.025446061, -0.00400071684, -0.0122105563, -0.0225625392, -0.00353948958, 0.00153059012, -0.0296551846, -0.017765779, -0.000592334953, -0.01452694, 0.0192143731, 0.0205673054, 0.000409338914, -0.00485825725, 0.0189410523, -0.0184900761, -0.0143902805, 0.00302189053, 0.0128255254, -0.0185174067, -0.0156612173, -0.0113291005, -0.0240521301, 0.00303897308, -0.0168501567, -0.0388113931, -0.0100581637, -0.00281177601, 0.00799460057, 0.00998983346, 0.0229588524, 0.00530240173, 0.0101948231, -0.040314652, 0.0125932032, 0.00331741734, -0.0196653493, -0.00388113922, 0.00981900934, -0.00908787921, 0.0280972607, -0.0182440877, -0.0333176665, 0.0233688317, 0.049826175, 0.0464370102, -0.0126820328, -0.0126615334, -0.00416129176, 0.00777594466, -0.00800826587, -0.00276052859, 0.0159892011, 0.00263070175, -0.0605676398, -0.0229588524, -0.0268126596, 0.00826108735, 0.0165358391, -0.00707897916, -0.00954568945, -0.000234884094, 0.0264163464, -0.0112881018, 0.0178341083, -0.00501541607, -0.00752312364, 0.0130920121, 0.00975067914, 0.0120943952, 0.0253504, -0.00274002971, -0.00632051704, -0.00574312964, 0.0296551846, -0.00402121572, 0.0136044864, -0.0182304215, -0.0296551846, 0.0302564874, 0.0324430428, -0.00778277731, -0.0147865936, 0.0122105563, -0.0163855143, 0.0392760374, -0.0207996257, -0.0182304215, -0.0301744919, -0.0492795371, -0.0112539371, 0.0311037786, 0.0135224909, -0.00740013, -0.0205399729, -0.00979167689, 0.0131330099, -0.0103314836, 0.0277692787, -0.020881623, 0.0158935394, -0.0318144076, 0.0285892375, 0.0112197725, -0.00908787921, 0.0330716781, -0.0211822744, 0.0202939846, -0.0155655546, 0.027564289, -0.00380597636, 0.0462456867, -0.00722930534, 0.00375472894, -0.0202529877, -0.00112488121, 0.0178477746, -0.0129758511, -0.0490608811, 0.00568504911, -0.0027195306, 0.00242571207, -0.00610869471, -0.028725896, -0.0148275923, -0.00131791329, -0.0187770613, 0.0289992169, -0.00507007958, -0.00860957, 0.00631026784, -0.0128801893, 0.00904004835, -0.00988733862, -0.0192827024, -0.0341102928, -0.013085179, 0.00921770558, 0.00649134209, -0.016590504, -0.00554838916, -0.00246158522, -0.007960435, -0.0244211126, -0.0169184878, 0.0145816039, 0.00318588247, -0.0146772657, -0.00834991597, -0.00687740603, 0.011745913, -0.0293272, 0.0196243525, -0.0111992732, -0.00811759382, 0.00364198466, 0.014253621, -0.0252274051, -0.00218143268, -0.0384560786, 0.0036385681, 0.0159892011, -0.00570213143, -0.000494964828, -0.00368298241, 0.0123472158, 0.0061462759, -0.00267853262, 0.0281519257, -0.00409637857, -0.0266213361, -0.0499355048, 0.00864373427, 0.0430751778, -0.00377522781, 0.00492317043, -0.0328256935, -0.00474892929, 0.0231228434, -0.0165768377, -0.00352924014, 0.0110216159, 0.00891705416, 0.00304238964, -0.015087246, -0.0127776945, -0.00247012638, -0.0493068695, 0.0126000363, 0.0156338848, 0.00977801066, -0.027277302, 0.0456170514, -0.0225625392, -0.022603536, -0.0150735797, -0.0233005024, -0.0102494871, -0.0204853099, 0.0056167189, 0.0191460419, 0.015251237, -0.0399046727, 0.00386405666, 0.032962352, -0.0255280565, -0.0273593, -0.0154015636, 0.00430478482, 0.0368434899, 0.00116929575, 0.00311584421, -0.00338233076, 0.01285969, 0.0093748644, -0.00863690116, -0.0182850864, 0.0214145966, 0.0341102928, 0.0276599508, 0.00329862675, -0.019487692, 0.00741379615, -0.027946936, 0.0323610492, 0.0130783459, 0.00854807254, -0.0104203122, 0.0307757948, -0.00772811333, -0.00622485531, 0.0141852908, -0.0215239245, -0.00466693332, 0.00594470277, 0.0146772657, -0.000571835961, 0.00834308285, -0.00545272743, 0.0219749, 0.0300924946, -0.00179878506, 0.000683299149, -0.0348482579, -0.00975067914, -0.000960035308, 0.0050393315, -0.00289718853, -0.00070507935, 0.0223302171, 0.00751629099, 0.00613944279, -0.0146226017, -0.00226001209, 0.00891705416, 0.0144039467, 0.00979167689, -0.0232458375, 0.00673049688, 0.00108132092, 0.0181620922, 0.0216195863, 0.00910837762, -0.00326104532, 0.00902638212, -0.0409979485, -0.00886239, -0.0292725358, 0.00821325555, 0.00117527461, 0.0179161038, 0.0076666167, -0.0283159167, -0.0340829641, 0.0320330635, 0.0206493, 0.0405879691, 0.0388387255, -0.0125043746, 0.0328530222, 0.00332595874, 0.00968234893, 0.00968234893, 0.0131740076, 0.000503933115, -0.000691413356, 0.0121763907, 0.00401096605, 0.0335909873, -0.0127161974, 0.041025281, -0.0168638229, -0.0277419463, 0.0319510698, 0.0345749371, 0.0314864255, 0.0223165508, -0.0318964049, 0.0167681612, -0.00446877675, 0.00607794616, 0.00323542161, -0.00617360789, -0.00443461165, 0.028671233, -0.0290538799, -0.0171508081, 0.0391667075, -0.00304580596, -0.00654942263, -0.0376087874, -0.00624535419, 0.0278786067, 0.00372056384, -0.0236831494, 0.011691249, 0.0122788856, 0.0130031835, 0.0265803374, 0.01592087, -0.0317597464, 0.00214043469, -0.00312438537, 0.0233961642, -0.0521220602, -0.034793593, 0.021879239, 0.0305844713, 0.0235054921, 0.0231775083, 0.00418520719, 0.0371168107, 0.0216469169, 0.0211959407, 0.00846607704, -0.0343016163, 0.0282065887, -0.00603353186, 0.021045614, 0.0041817911, -0.0108781224, 0.0192963686, -0.027564289, -0.017041482, 0.0168911554, 0.00559963658, -0.0292178728, -0.00400071684, 0.0280699302, 0.00663825125, -0.0136591503, -0.0725937039, 0.000380725745, 0.00120773131, 0.0162078571, -0.027003983, -0.0156338848, -0.0357775427, 0.0226582009, -0.01347466, -0.0246124361, 0.00142211642, 0.0137274805, -0.0277966093, -0.0066075027, 0.00116673333, 0.00738646416, -0.0120875621, 0.00709264539, -0.0265256744, -0.00492658699, 0.016590504, 0.00372056384, 2.83729296e-05, 0.0492248721, 0.019761011, 0.0121285599, 0.0251590759, -0.000282928551, 0.0112402709, -0.0146909319, -0.0517394133, -0.012190057, -0.00733863283, -0.0121968901, 0.00919037405, 0.00456443848, -0.0126683665, 0.00421937229, 0.0287532285, 0.0348482579, 0.000913912605, -0.0262523536, -0.0241477918, -0.0216879155, 0.0320877284, -0.0359415375, 0.0148959216, -0.0102904858, 0.0133858304, -0.00674074609, -0.0172874685, -0.00856173877, -0.0225352068, -0.0215649214, -0.00567138288, -0.0513021, 0.0119577358, -0.00265461719, 0.0174104627, -0.0206903, -0.014198957, -0.0436764844, -0.0117322467, -0.052778028, 0.0102084894, -0.00644351123, 0.00818592403, -0.0325250402, -0.0155382231, 0.00862323586, -0.0195150245, -3.12022166e-05, -0.00821325555, -0.0178204421, -0.0171508081, -0.00854123943, 0.00816542469, 0.00975067914, -0.0118279085, 0.0169048216, -0.00261191116, 0.0205263067, -0.0070311483, -0.0107414629, -0.0199250039, -0.0152375717, 0.00360781956, 0.0258013774, -0.00726347, 0.018039098, 0.0142399548, -0.0047933436, 0.0192963686, -0.0282612536, -0.0140896291, -0.0163581818, 0.0185720716, 0.0230955109, -0.00388455577, 0.0193783641, 0.0107892938, 0.0158935394, 0.0230818465, 0.0173967965, -0.0281245932, -0.0271816403, 0.0267169978, -0.0215512551, 0.0116434181, -0.00852074102, -0.0129621848, 0.0377181135, 0.0583264157, 0.0378274433, -0.0123950467, 0.00989417173, -0.0114452606, 0.00574312964, -0.0295185242, -0.0347389281, 0.0243254509, 0.0208679568, -0.0360508636, -0.0123540489, 0.0312951021, 0.00242742035, 0.00906054676, 0.0038503909, -0.00947735924, 0.0239564683, 0.00425012084, -0.00576704508, -0.00483092526, -0.0113905966, -0.0271269772, 0.0471476428, 0.00807659607, -0.00486850645, 0.02327317, -0.0572331399, 0.0118484078, 0.00924503803, 0.0121763907, 0.0120465644, -0.0049710013, -0.00383672491, -0.00646742666, 0.00584220793, -0.0131671745, 0.00385380723, 0.00955935568, -0.01592087, -0.00819959, -0.0191460419, -0.0259790346, 0.0037444795, -0.00746162701, 0.00529556861, 0.00527848583, -0.0125658717, -0.00345578557, 0.000630343508, 0.0112676034, 0.0192963686, 0.00145457312, 0.00544247776, 0.0189683847, 0.0062180222, 0.00540831266, 0.00275540398, 0.011356432, -0.00464301789, -0.00402804837, 0.00933386665, -0.0126683665, 0.0443871133, 0.0190777127, -0.0150189158, -0.0199523363, 0.00731813395, -0.0268263258, 0.0128938556, 0.0341649577, 0.0114179291, 0.028725896, 0.0355042256, 0.00699698366, 0.0261703581, -0.015251237, -0.0162898526, 0.0109737841, 0.0250497479, -0.00437653111, 0.0262660198, -0.00635126559, 0.0179844331, -0.0309944507, -0.0162761863, 0.00776227843, 0.00932703353, 0.0304204784, 0.0143902805, -0.0321697257, 0.0042637866, 0.00592078734, -0.026676, -0.0311857741, -0.000420015451, 0.0309124533, 0.0218655728, 0.0152785694, 0.0147729283, 0.00433895, 0.024995083, 0.0403966457, -0.0098805055, -0.0137001481, 0.00218655728, 0.0264983419, -0.00468401564, -0.00395971863, -0.00258287089, 0.021428261, -0.0067134141, 0.00760511961, -0.00214043469, 0.000797751767, 0.0099283373, 0.00701064942, 0.0231091771, 0.0584904067, -0.0292725358, -0.00546297664, -0.0198156759, -0.0240111332, 0.0066075027, 0.0133858304, -0.00399046717, -0.00494025275, -0.00893072, 0.026839992, -0.0198430084, -0.021715248, 0.0164128467, -0.00635126559, -0.0233415, 0.0261566918, -0.0134268282, 0.0223302171, 0.0276872814, 0.0171371438, 0.0179024376, -0.0106184687, 0.0266623329, -0.00637176493, 0.0062419381, -0.0131125106, 0.00393580319, -0.00893072, -0.00545956055, 0.00792627, -0.00571921421, -0.0100308321, 0.00984634086, 0.00269903173, -0.0357775427, 0.0203623157, -0.0109191211, 0.0103861475, 0.0086779, 0.00783744175, -0.0223302171, -0.00110779877, -0.00380939292, -0.00347628444, 0.00167237467, 0.0180800967, 0.00837041438, 0.00143663655, 0.00221730582, -0.0026136192, -0.00350190816, -0.00296893483, 0.00716780825, -0.00376156182, -0.00658700382, 0.0397406779, 0.000167194768, -0.0248584244, -0.00271782232, 0.018927386, -0.026676, -0.00879406, -0.00361465267, 0.0239838, 0.0326343663, -0.00330375135, -0.00190298818, -0.00403146492, -0.0205536392, 0.0246534348, 0.00886239, -0.00179366034, 0.00972334668, -0.00628635241, -0.0272636358, -0.00782377552, -0.000358305, 0.00535364915, -0.0157978758, -0.00380597636, 0.0132833356, -0.0327710286, -0.00352924014, -0.0260336976, 0.0195833538, 0.00354973925, 0.0282065887, 0.014977918, -0.0487602279, -0.00703798141, -0.0060062, 0.0033157093, 0.0133175012, 0.029955836, 0.00756412186, 0.0102358218, -0.00755728874, -0.0203486495, 0.00765295047, -0.00118637818, -0.00978484377, -0.0073318, -0.00743429502, 0.00767345, 0.02160592, 0.0201026611, 0.0083020851, 0.0147182643, -0.00708581228, -0.00290402141, 0.00310730306, -0.0150052495, 0.0152375717, -0.0140759628, -0.0296551846, -0.0296278521, -0.0309124533, -0.000140289863, 0.00206527184, 0.000338660146, 0.0239018053, -0.0107414629, 0.0141852908, 0.00523748808, 0.00466351677, -0.00219168211, -0.00846607704, -0.00384355779, -0.0319510698, 0.0107414629, 0.0301744919, 0.0262933522, -0.0118484078, -0.000855832186, 0.00109071634, -0.0162351876, -0.028725896, -0.00340966275, -0.00423645461, 0.00870523136, -0.0120533975, 0.0107209636, -0.0396860167, -0.0145132747, 0.00737279793, 0.0121490592, 0.0423372164, -0.0204443112, -0.0225762036, 0.00717464136, -0.0216742493, -0.0418179072, -0.00310730306, 0.0195560213, 0.00260678632, -0.0101469923, 0.00481384248, 0.0376361161, 0.00255383062, 0.00718830712, 0.00543906121, -0.000995908515, 0.0221798904, -0.0232595038, -0.0129211871, -0.00682274206, 0.012586371, 0.00327983592, 0.0317324139, -0.0114862593, -0.00214385102, -0.0252547376, 0.00785110705, 0.00186028192, -0.0129895173, 0.00812442694, -0.00342503702, 0.0185447391, 0.0218929052, -0.00877356157, -0.00556547148, -0.0114452606, 0.0148002598, -0.0251727421, 0.0206083022, 0.00467718299, 0.00407929579, 0.0119509026, -0.0130031835, 0.00485825725, -0.00107961264, 0.0273183, -0.00238813064, 0.0117390798, -0.00684324093, -0.018148426, -0.0082337549, 0.0220568962, -0.00420912309, 0.018872723, 0.0151692415, 0.00234713266, 0.0268126596, 0.0274002962, 0.0319237374, 0.000685434497, 0.001412721, -0.0351215787, 0.00264778431, 0.0147729283, -0.0230818465, -0.00394946896, 0.0174924582, -0.0143356165, -0.00742746191, -0.0162488539, 0.0116502512, -0.0198020097, -0.00148532155, 0.0253230669, -0.0234781597, -0.0142809525, -0.0014562814, 0.00170483137, 0.0095866872, -0.0123813804, 0.00775544532, 0.0215649214, -0.000188334336, 0.00491633732, -0.0163445156, -0.00367614953, 0.00197985931, -0.0308031272, 0.0138778063, -0.00428428594, -0.000629489368, -0.00455418881, 0.019433029, -0.00326104532, 0.000144240184, -0.00994883571, -0.0244757757, -0.0142809525, 0.0106936321, -0.0193783641, 0.0161941908, -0.0341102928, -0.0116775827, -0.0204169787, -0.00455418881, -0.021715248, 0.00886239, -0.00070507935, 0.0115477555, -0.00427745283, 0.00672708033, 0.00554155605, -0.0148412576, -0.0218519066, -0.00498808408, 0.0255143903, -0.000427702558, -0.00460201968, 0.0370621458, -0.0150462473, -0.00305776368, -0.00139563857, -0.0292452034, 0.0177247804, 0.0140076326, 0.0295185242, -0.00843874458, 0.0164538436, 0.00216947496, -0.0153878974, 0.00651525753, 0.0118415747, 0.0232321713, -0.00287668942, -0.0146909319, 0.021879239, 0.0019081129, 0.00226513669, -0.0305571388, -0.00302701537, 0.0159618687, -0.00317050819, -0.00547664287, 0.0254597273, 0.0109054549, -0.00275882031, -0.01285969, -0.0224942081, -0.0320057347, 0.00232321722, 0.0125385392, 0.028725896, -0.0033874556, -0.00335329073, -0.02571938, -0.00637859758, 0.0029979751, 0.00110096578, -0.021879239, -0.00482067559, 0.020990951, 0.000687996857, -0.0242844522, -0.00512132747, 0.0166861657, -0.00635126559, 0.0171781406, 0.0239428021, -0.0140486304, 0.0132901687, 0.0155108906, 0.00477626128, 0.0129758511, -0.029955836, -0.000611979805, 0.00956618786, 0.00408954546, -0.00515890867, 0.00818592403, -0.00853440631, -0.00191836245, 0.0149095878, 0.0246261023, 0.000966014166, 0.0268946551, -0.013638651, 0.0151555752, -0.0203623157, 0.00420570653, -0.0105159739, -0.0283705816, -0.00953885633, -0.0183807481, 0.00458493736, 0.00570213143, 0.00828841887, 0.014198957, -0.0232321713, -0.0307211298, 0.00752312364, -0.00252649863, -0.00740696304, -0.000872914679, 0.00755045563, 0.00218143268, 0.0195696875, 0.0100718299, 0.0113291005, 0.0283159167, -0.00299626682, 0.0142262885, 0.0303384829, -0.037417464, -0.0239018053, -0.0308577903, 9.29393645e-05, -0.0146636, -0.0138983047, 0.00932703353, -0.018148426, 0.0386474021, -0.00826108735, -9.06972855e-05, -0.00743429502, 0.0365428403, -0.0220568962, 0.017205473, 0.0165221747, 0.00984634086, 0.028561905, -0.00394605286, 0.0178067759, -0.0181620922, 0.0074206288, -0.00324737933, -0.00152204884, -0.0161395259, -0.00606428, 0.00869839825, -0.00299285026, 0.0113359336, -0.0146362679, 0.00866423361, 0.0179297701, -0.00890338793, 0.0222208891, -0.00863006804, 0.0102426549, 0.0317050815, 0.0106116356, -0.0034404113, 0.00638201414, 0.0207312964, -0.00167322881, -0.00288523082, 0.0175197907, -0.0147592621, 0.00866423361, -0.0291632079, -0.0319237374, -0.00202939846, 0.00700381631, -0.0311857741, 0.0124838762, -0.00974384602, 0.00334474933, -0.00377522781, 0.0118005769, 0.000268621981, 0.00684324093, -0.00292964512, 0.0187497288, 0.040014, 0.0194193628, -0.0127913607, 0.0171508081, -0.000132175686, -0.0132765025, -0.000863092253, 0.00385380723, -0.00410662778, -0.00863690116, 0.00880089309, 0.0130988453, 0.00938853063, -0.00206868816, 0.0101948231, 0.00159379526, -0.0187497288, -0.0260610301, 0.0110762799, -0.0261976905, 0.017765779, -0.000832770835, 0.0217562448, 0.0108439578, 0.0019081129, 0.0433758311, -0.0164675098, 0.0133243334, -0.0166041702, 0.0181074273, 0.0130920121, -0.00523407152, 0.0136728166, -0.00387772266, -0.0158525407, 0.00655625528, 0.00276394514, -0.0234781597, -0.00804243144, 0.0188590568, 0.0314044282, -0.00747529278, 0.00830891822, 0.00586270681, -0.0206629671, 0.00707214652, 0.0234644935, 0.0208679568, 0.0362148546, -0.016754495, -8.18357512e-05, -0.0317324139, 0.01452694, -0.000221858703, -0.0020789376, -0.0215102583, -0.000915620883, 0.0089512188, 0.015087246, -0.00773494644, 0.0011428179, -0.00837724749, 0.00372739695, 0.000372184528, -0.00729080196, -0.00722930534, -0.00856857188, 0.00638543069, 0.012969018, 0.0203486495, -0.010351982, 0.01452694, 0.00339087215, 0.00276394514, 0.00271269772, 0.0134814922, -0.00791943725, 0.0164128467, -0.0086574005, 0.0236694831, 0.00663483469, -0.0036966484, -0.0445784368, -0.00871206447, 0.00475234585, 0.00173130922, -0.0103246504, 0.00507007958, 0.0155245569, 0.0150052495, 0.0350669138, -0.0036385681, -0.00741379615, 0.0288898889, -0.0037581455, 0.012415546, 0.0059344531, -0.00902638212, 0.0131125106, -0.0120670637, -0.00260507804, -0.0170551464, -0.0047215973, -0.00681249285, -0.00424328772, 0.0068193255, 0.00845241081, -0.00587637303, 0.0280972607, -0.00254870579, -0.00558255427, 0.0165358391, -0.00122054317, 0.0244621094, -0.00735913217, 0.00010206781, 0.00957985409, -0.0171644744, -0.000326915935, 0.00935436599, 0.0167954937, 0.00168347836, 0.0174377952, 0.00297405967, -0.00467718299, 0.00972334668, 0.00215239241, -0.0103451498, 0.00245133578, -0.003604403, 0.01080296, 0.00889655482, 0.0118757393, 0.0120055666, 0.00686374027, 0.012750362, -0.0117869107, 0.0118142422, 0.014417612, 0.00317221647, 0.0193783641, 0.00487192301, -0.0251590759, -0.012135393, 0.0118689062, 0.00977117848, -0.00731130084, 0.0211959407, -0.00299968338, -0.0259927, 0.00375472894, 0.0215785876, -0.00354290614, -0.00524432119, 0.0180254318, 0.00411687745, 0.0088077262, -0.000867362891, 0.00548689207, -0.0271269772, -0.0180117656, -0.000690132147, 0.00307484623, -0.00233175838, 0.00932703353, -0.000720880635, -0.00681590894, 0.0135498224, 0.0120124, -0.00551764062, -0.0131808408, 0.014472276, 0.0133926636, -0.0259107035, 0.00129143544, -0.000652977789, -0.00923137181, 0.008739396, -0.0101674916, -0.00547322631, -0.00178511906, -0.00550739141, -0.0164265111, -0.0209226198, -0.0207039639, 0.00650159176, 0.011527257, -0.00497783441, -0.00482067559, 0.00614969246, -0.00655967183, 0.00195081916, 0.00550739141, -0.0146499341, -0.0130988453, -0.0119645679, -0.00778277731, -0.0252000727, 0.0135908201, 0.00159721181, 0.00913571, -0.00455760537, -0.0157978758, 0.00393238664, -0.00132218387, 0.00458493736, 0.0141169606, -0.00845241081, -0.0062419381, -0.0156612173, 0.0131261768, -0.000398875884, -0.0174514614, 0.00238129753, 0.00448244251, 0.00360781956, 0.00562355202, -0.0140212988, -0.0202803183, -0.00285448227, -0.0429658517, 0.0105843041, -0.0137138143, -0.0346842669, 0.0198293421, -0.00808342919, -0.0228495244, 0.000499235466, -0.0080902623, 0.00765295047, -0.00585245714, 0.0314590931, 0.0305024739, -0.0100649968, 0.023437161, 0.00311242766, -0.00156048452, -0.0083840806, 0.00567138288, -0.00214726757, 0.00981217623, 0.0177521128, 0.0155792208, 0.0186404, -0.00493342, -0.0178887714, -0.0084455777, 0.0183670819, 0.00651525753, 0.000894267811, -0.0237924773, -0.0159072038, -0.00819959, -0.00933386665, -0.00996250194, -0.00520332297, -0.010577471, 0.00016377827, 0.011581921, 0.00448244251, -0.0235328227, 0.00176803663, 0.000723015924, -0.00133243343, 0.00144261541, 0.00530923437, 0.0128665231, 0.0083840806, -0.00142211642, -0.033126343, 0.00914254319, 0.0121763907, -0.00190982118, -0.00179366034, 0.00110181991, -0.0039802175, 0.0114930924, 0.00577387773, -0.0161941908, -0.000910496165, -0.0215649214, 8.19959e-05, -0.00377181149, 0.00749579165, 0.0218109097, 0.0195013583, -0.0190503802, -0.0105569717, 0.0126752, 0.00130766374, 0.0135566555, -0.0109054549, -0.0147592621, 0.00402463228, -0.0120602306, -0.00254528946, 0.0123198843, 0.00800143369, -0.0061462759, -3.95032339e-06, 0.00657333806, 0.0321423933, 0.00728396932, -0.00926553644, -0.00476259505, 0.0115204239, -0.0158798732, 0.00357707124, 0.00833625, -0.00882822555, -0.0166588333, -0.012135393, 0.000184384015, 0.00347115984, 0.025664717, 0.00711314427, -0.0116229188, -0.0127981929, -0.0299011711, -0.00849340856, 0.0216332506, -0.0122310547, 0.00677149463, 0.0131740076, 0.0155655546, -0.00771444757, -0.020881623, -0.0057465462, -0.0103724813, 0.0245577712, 0.0381827578, -0.0306664668, 0.000202107083, -0.00457127159, -0.0335363224, -0.00432186713, 0.00884872396, 0.0463276841, 0.0112402709, -0.00707214652, 0.0018944469, -0.0125248739, -0.0121217268, 0.0072771362, 0.028561905, 0.00782377552, -0.000913912605, -0.0190093834, 0.00474551274, 0.00454735616, 0.000587637303, 0.0121422261, -0.00217630784, 0.0157978758, 0.0147182643, 0.0137206474, 0.0429658517, 0.0145679386, 0.0172601361, 0.00778961042, -0.00043560323, 0.00544247776, 0.00455077225, -0.0219339039, 0.002839108, 0.00845241081, -0.0149642518, 0.0188453905, -0.0263616815, 0.0216605831, 0.031513758, -0.00538439723, -0.00391872087, 0.00313634309, 0.0164128467, -0.00218997383, 0.00778961042, 0.00352582359, 0.0157978758, 0.00825425424, -0.00152119482, 0.0113632651, 0.000722588855, 0.00624535419, -0.0225215405, -0.0278649405, 0.00972334668, -0.00368981552, 0.0157978758, 0.0119782342, -0.000147229614, -0.00744112767, -0.00485825725, -0.000229118756, 0.00406904658, 0.0173011348, -0.0200753286, -0.00912887696, -0.0195696875, -0.0118005769, -0.00101896992, 0.026443677, -0.00156048452, -0.0250224154, -0.0179024376, 0.0145952702, 0.00416812487, 0.000421296631, -0.0157978758, 0.00666216668, 0.0320057347, -0.0111787748, 0.00594470277, -0.0036966484, -0.0215649214, -0.00173557992, 0.00299626682, -0.0142672863, 0.00721563911, 0.0173284672, 0.0102904858, -0.000144880774, -0.00994883571, -0.00341649586, -0.00578754395, -0.0119714011, -0.0114042629, -0.0313224345, 0.00109498692, 0.00185686548, 0.000569273601, 0.0113837644, 0.0214419272, -0.0137138143, -0.0098805055, -0.00394605286, -0.00191152946, 0.0116707496, 0.000918183243, 0.00758462073, 0.020266654, -0.00231638411, 0.0123745482, -0.0126410341, -0.0310764462, 0.0175744537, 0.0111377761, 0.00256237178, -0.0221115611, -0.00953885633, 0.00294672768, 0.00760511961, 0.00414762599, -0.00765295047, -0.00131193444, 0.00858907, 0.0529146865, 0.0127708614, -0.0135156577, -0.00206527184, 0.0245167743, -0.00863690116, 0.00983950775, -0.00963451806, 0.0118689062, 0.00376839493, 0.00146994728, 0.00467035, -0.00768028246, 0.00998983346, 0.000582939596, -0.00122225133, -0.00177145307, 0.00730446819, 0.0102494871, -0.00802876521, 0.0206766333, 0.00195936044, 0.00790577102, -0.00815859158, -0.0205263067, 0.00643326156, 0.00663483469, 0.0108849555, 0.0168501567, -0.00316538336, 0.0163718481, 0.00442436198, -0.000812698971, 0.0221662242, -0.0245577712, -0.0108439578, 0.0186130684, 0.00933386665, -0.00641617924, -0.00779644353, 0.0161395259, -0.0201709922, -0.00117185805, 0.011581921, 0.0010898622, 0.0160575304, -0.00411346089, 0.0222072229, -0.00797410123, 0.0011915029, 0.0211412758, 0.0108781224, 0.0122993849, 0.000280793261, -0.00120089832, 0.000959181227, -0.0125453724, -0.0228495244, 0.00323542161, 0.00761878584, 0.00829525199, 0.0126888659, 0.00522040576, -0.0131056784, -0.0136113195, 0.0321970582, 0.0172191393, 0.00395971863, -0.00491633732, -0.00343870302, -0.00923137181, -0.00529215205, 0.0112334378, 0.0219202377, 0.00882139243, 0.0337003134, 0.0163718481, 0.0179844331, -0.00111719419, -0.0186540671, -0.00566113368, -0.0343016163, -0.00645034434, -0.0209226198, 0.0039699683, 0.00839774683, -0.0118005769, 0.00837724749, -0.0116092525, -0.00673391344, 0.00188419747, 0.0128255254, -0.00892388728, 0.0122857187, 0.00125043746, 0.00606428, -0.00336012361, -0.00179024378, -0.00638543069, -0.0233551655, -0.0171644744, -0.00336183188, -0.00735913217, 0.0110762799, 0.00951152481, 0.00855490565, -0.00910837762, 0.00487533957, 0.00864373427, 0.0231365096, 0.0121148946, 0.00227026152, 0.00351557415, 0.00669633178, -0.00259141205, 0.00535706524, -0.0109942835, -0.00295356056, -0.0212232713, 0.0130578466, 0.00350532471, -0.0162625201, 0.0215102583, -0.0168091599, 0.00941586215, 0.0145542724, 0.000988221378, 0.0133448327, 0.00720197335, 0.00425695395, 0.0252000727, 0.0213326, 0.000775544555, -0.0314044282, -0.00348995044, -0.00039524585, -0.0191733744, 0.00832258351, -0.00653917296, 0.0219612345, 0.0217425786, -0.013338, -0.00264265947, 0.00979851, -0.00716097513, 0.0100581637, -0.0066758329, -0.014472276, 0.00976434536, 0.0207039639, 0.00324396277, -0.0161258597, -0.0114862593, 0.0125590386, 0.0180254318, 0.026676, -0.0132970018, 0.00065383187, -0.00610527815, -0.0156885497, -0.0187360626, 0.000298729865, 0.00775544532, 0.00181586749, 0.0212506037, 0.0196380187, 0.00459177047, 0.0053229006, 0.000158333234, 0.00627951929, -0.0138983047, 0.00132218387, 0.0311311092, 0.0308577903, -0.0150735797, 0.0166315, 0.0181347597, -0.0254187286, -0.00335329073, 0.00302189053, 0.00944319461, 0.00313975965, -0.00321663078, -0.00182440877, 0.0128665231, -0.00365565042, 0.0144586107, -0.0133038349, 0.0155245569, -0.00615310902, 0.00778961042, 0.00870523136, -0.0142946187, 0.00826791953, -0.0163581818, 0.00672024721, 0.00585587369, 0.0299285036, -0.0179297701, 0.00696281856, 0.00580120971, -0.00869156513, -0.0413806, -0.00634443294, -0.0083840806, -0.0144039467, 0.0237924773, 0.0184217449, -0.00650842441, -0.0251317434, -0.00908787921, 0.000405922416, 0.0243664477, 0.0152922357, -0.00208918727, -0.0109942835, 0.0115545886, -0.016590504, 0.010577471, 0.000121926198, 0.0140896291, 0.00901271589, 0.00957985409, -0.00977117848, 0.00952519, 0.00770761445, -0.00776911154, -0.0337823108, 0.00653917296, -0.0173421334, -0.0226991978, 0.0125112077, -0.0240794625, 0.0363788493, -0.0100854961, 0.00678857742, 0.0111377761, 0.0277009476, -0.0123745482, 0.00156987982, -0.00814492628, 0.0292178728, 0.0249130875, -0.0101196608, -0.0151829077, -0.00431161793, -0.0353948958, -0.00516574178, -0.00689790491, 0.0115409233, -0.00168347836, 0.00781694241, 0.00533998292, -0.018927386, 0.0145816039, -0.0083840806, 0.015196573, 0.0298465081, 9.2672446e-05, -0.01486859, 0.0308851227, -0.0310764462, -0.0114862593, 0.0252820682, 0.018872723, -0.0138573069, -0.0104613099, 0.00563721824, -0.0095866872, -0.0153059009, 0.0437858105, -0.00448244251, 0.000491975399, 0.00396313518, 0.0326343663, -0.0131261768, 0.0085139079, -0.0157842115, -2.31547674e-05, -0.00451660762, 0.00991467107, -0.00485484069, -0.0162078571, -0.0112266056, 0.0005197344, -0.00533656636, -0.00262557715, 0.0141306268, 0.000716182927, 0.0119167371, 0.0026614503, -0.00429453515, 3.00544871e-05, 0.0103793144, -0.0104749762, -0.0175471231, 0.00848657545, -0.00269049057, 0.0121832239, 0.0077007818, -0.0277282801, 0.0114315953, 0.00740013, -0.00260678632, 0.00297576794, -0.0199113376, -0.00790577102, 0.00868473202, -0.0238881391, -0.0176154524, -0.00543564465, -0.0102563202, 0.00534339948, -0.0314044282, 0.020594636, 0.0164538436, 0.0111036114, 0.0272226389, 0.015032582, 0.00241546263, 0.0200206656, 0.00778277731, 0.0161668584, -0.00130168488, -0.00389822177, 0.00406563, 0.0275506228, 0.035914205, 0.00927237, -0.0112334378, -0.00338574732, 0.0153469, -0.0181757584, -0.0296825152, -0.00516232522, -0.000364710926, -0.00790577102, 0.0165495053, 0.00863006804, -0.0136044864, 0.00319954823, 0.0253913961, 0.0146089364, -0.0153469, 0.00856173877, -0.00298089255, -0.0132696694, 0.0127298636, -0.00775544532, 0.00953885633, -0.0089375535, 6.44863612e-05, 0.0146499341, -0.00839774683, -0.00899221655, -0.00895805191, 0.00295185228, 0.014253621, -0.00929970201, -0.00900588278, 0.00144005299, 0.0210729465, 0.00431845058, -0.00345578557, 0.00233175838, -0.00457810424, 0.00887605641, -0.026676, -0.0179707687, 0.00128631073, 0.00205673045, 0.018203089, -0.000976263662, 0.00229759351, -0.0202393215, -0.0275506228, 0.00241375435, 0.0163171832, -0.00828158576, 0.00302530709, 0.000276309089, -0.00222926354, 0.000465497549, 0.0189957172, 0.00910154451, -0.00163906382, 0.00282715028, -0.0104954755, 0.0340283, -0.00364881754, 0.0119577358, -0.010187991, -0.0194466934, 0.0149915833, -0.00495391898, -0.0211686082, -0.00452002417, 0.0102426549, -0.0218929052, -0.0148275923, 0.0110421143, 0.00202256558, -0.0180937611, 0.0186267346, -0.0139256371, 0.0044038631, -0.0051828241, -0.0154425614, -0.017478792, 0.00188078091, 0.000119577351, -0.0109464526, -0.0103724813, -0.00351557415, 0.00202427385, -0.00254528946, 0.0280699302, 0.00849340856, 0.00320125651, 0.0227948595, 0.0050051664, -0.00602328219, -0.0116434181, -0.0122173894, 0.00271269772, -0.00517257489, -0.00474551274, 0.0239838, 0.00452002417, -0.0115614217, 0.00639226381, 0.0062180222, 0.0227811933, -0.0218519066, 0.00951152481, -0.00444144476, 0.0214555934, -0.0186540671, -0.00903321523, -0.00870523136, -0.0100444974, -0.0116775827, -0.00718147401, 0.0162761863, 0.0148549238, -0.00325079588, -0.00469426531, 0.0204579774, -0.00393921975, -0.0158525407, 0.0113086011, 0.0157842115, -0.0115477555, -0.000270116696, -0.00587978913, -0.0117664114, -9.09108203e-05, 0.000433467911, 0.0148275923, -0.0193920303, -0.00645034434, 0.0126137026, 0.0105979703, -0.00677149463, 0.00139990915, 0.0027861523, 0.00176462007, -0.00262216059, -0.0118689062, 0.00892388728, 0.0117800776, 0.0087257307, 0.00789210573, -0.0190913789, -0.0252684038, -0.0179981, -0.0231365096, 0.0180527642, 0.0140486304, 0.010632135, 0.00210285326, -0.0143356165, -0.000977117801, -0.00759145385, 0.00346261845, -0.00764611783, 0.0158525407, 0.00840458, 0.0208132919, 0.0199250039, -0.00261020288, -0.00493342, 0.00195936044, -0.00938853063, 0.00912204385, 0.00377181149, -0.013194507, -0.00535023259, 0.00898538437, 0.0253367331, -0.0863143504, -0.0248994213, 0.0164538436, 0.0181894246, -0.0148139261, -0.000703798141, -0.010577471, -0.00945002772, -0.00196106872, -0.00628635241, -0.00451660762, -0.00435603224, 0.0161121935, 0.00876672845, 0.00755045563, -0.00479676, -0.000433254376, -0.00921770558, -0.00782377552, 0.0129416864, -0.019761011, -0.00992150418, 0.00391188776, -0.0166588333, 0.0015844, -0.00672708033, 0.007960435, -0.00325421221, -0.0099283373, -0.00425012084, -0.00258628745, 0.00783744175, 0.00897171814, 0.0201846566, -0.021428261, -0.0278649405, 0.00185686548, -0.0236558169, 0.018763395, -0.0159618687, -0.00701748254, 4.49215804e-05, -0.0169048216, -0.0110011166, 0.0262933522, 0.00219509867, 0.0147455959, 0.00707897916, -0.0131603424, -0.00666558323, -0.0109396195, 0.0253230669, -0.00936119817, 0.00151777826, -0.00390505465, -0.000364710926, 0.0170278158, -0.00203110673, -0.00317221647, 0.0153332334, -0.0137274805, -0.0399593338, -0.00070678757, 0.0202119891, 0.00437994767, 0.0473389663, -0.0176974479, -0.00187565619, 0.0125043746, 0.012914354, -0.0169321541, -0.0146636, -0.0169594847, -0.0207039639, 0.00622827187, 0.00558938738, -0.0177384466, -0.00215239241, 0.0190640464, 0.00167493708, 0.0196380187, -0.00201402418, -0.00690815458, -0.000375601, -0.0123745482, 0.000210434795, 0.0232458375, -0.00224463781, 0.0172874685, -0.0136659835, 0.000954910589, 0.0138914725, -0.0153469, -0.00117100391, 0.0190777127, 0.00940219685, -0.0128186923, 5.6532328e-05, 0.00991467107, 0.00885555707, -0.0136454841, -0.00574312964, 0.00441752933, -0.000523577968, 0.0296825152, -0.0155928871, 0.00487533957, -0.00659042038, 0.019870339, 0.00712681049, 0.0254323948, -0.00978484377, 0.00694573624, -0.0278512742, -0.00330716791, 0.0166041702, 0.00691498769, -0.000986513216, -0.00225147069, 0.0204853099, 0.00926553644, -0.0143766142, -0.00264095119, 0.0107004652, 0.00441411277, -0.0202256553, 0.0176564511, -0.00248037605, 0.00204477273, 0.00579096051, -0.00858223718, 0.00895805191, 0.00801509898, -0.023163842, -0.0180664305, -0.0454530604, -0.00914937537, -0.00484800758, 0.0017466835, 0.0183397494, -0.00328496075, -0.0047933436, 0.0162215214, -0.00605744729, -0.00874622911, 0.00947735924, 0.00919037405, 0.016590504, 0.0191050451, -0.00966868363, -0.0230955109, 0.00358732068, 0.00767345, 0.00600278331, -0.00389138865, -0.026389014, 0.0275779534, -0.00683299173, 0.000912204385, -0.0202803183, 0.0170551464, -0.0134814922, -9.83310238e-05, 0.00406563, -0.0059242039, 0.0118005769, 0.00795360189, -0.0192690361, 0.00416812487, -0.00505983038, 0.0259380359, -0.0015254654, 0.0244074464, -0.00869839825, 0.00236250693, 0.00146226026, -0.0227675289, 0.00144774013, -0.0023778812, 0.00811759382, 0.016590504, -0.00382647524, -0.00221559755, 0.00861640275, 0.0372534692, -0.00984634086, 0.00479676, 0.00587295648, -0.00664508436, 0.000976263662, -0.002728072, 0.0344382785, 0.0204033125, 0.0123198843, -0.00916987471, -0.00384697434, 0.00784427486, 0.0236148182, -0.00805609673, -0.00276394514, -0.0120328981, -0.0167134982, 0.0112539371, 0.00283739972, 0.0187223963, -0.0129075209, -0.0117185805, 0.0206903, -0.00523748808, -0.0232458375, -0.003368665, -0.028835224, -0.00879406, 0.0249267537, -0.000337806036, -0.0127776945, 0.0105364732, -0.00245646061, -0.00154425611, -0.00394263631, 0.0220978949, 0.0270176493, 0.0243391171, 0.00694915233, 0.0212642699, 0.0207176302, 0.0068193255, -0.000106498577, -0.0242434535, -0.0105296401, -0.0134541607, -0.0246397685, 0.035750214, -0.00635468215, 0.00816542469, -0.00395288551, -0.00166639581, 0.00540831266, -0.004899255, 0.0170004833, 0.0114384284, 0.0245441068, -0.00220876466, -0.0193646979, -0.00707897916, 0.00928603578, -0.00686715683, -0.00790577102, 0.0121148946, 0.0302564874, -0.00886239, -0.00776227843, -0.00332254218, 0.0089375535, 0.00420570653, -0.013809476, -0.0253913961, 0.020881623, -0.00422962196, 0.0308851227, -0.00619410677, 0.00815859158, -0.0328530222, -0.0253230669, 0.0153742312, -0.0155245569, 0.00814492628, -0.0122857187, 0.00218655728, -0.00201402418, -0.00144346943, -0.00522382231, -0.0150735797, -0.0080902623, 0.0147865936, -0.00791943725, 0.00127606117, 0.00783744175, -0.00830891822, 0.00294160284, -0.0248174258, -0.0104339784, -0.0113769313, 0.031513758, -0.0120533975, 0.00613261, 0.0329076871, -0.00367273297, -0.0102836527, -0.0082337549, 0.00927920267, -0.00678516086, 0.00498466752, 0.00890338793, -0.00200548302, 0.000774690416, -0.00154169369, 0.0240794625, 0.0165768377, -0.0324430428, 0.0135703217, 0.0144449444, 0.00754362298, -0.00811759382, -0.0250907447, -0.00185686548, -0.0154835591, -0.00774861267, -0.0105501395, -0.000412328343, -0.0394946933, 0.0242024567, -0.00312438537, 0.00765978359, 0.0069252369, -0.0131330099, -0.0138504738, -0.00905371364, 0.00285619055, 0.00205331389, 0.0102904858, -0.00475576241, -0.0103451498, 0.00660067, 0.0136044864, -0.00358732068, -0.0227675289, -0.00914937537, -0.000331400108, 0.000598313811, -0.00981217623, -0.00883505866, -0.00692182034, 0.0102768196, -0.0216195863, -0.00332595874, 0.00651867408, -0.0338916369, 0.0058285417, -0.00646742666, -0.0182440877, -0.0122447209, -0.0157432128, -0.0184490774, 0.000723443, 0.00675782887, 0.00232834183, 0.000619666942, 0.0343289487, -0.0111104446, -0.00605744729, -0.011527257, 0.00897171814, 0.00115648389, 0.0215375889, -0.00454735616, -0.00736596482, -0.0225898698, 0.00312438537, 0.00638884725, 0.0326617, -0.022439545, -0.00106594665, -0.0180800967, 0.0308851227, -0.0248447582, 0.0239564683, 0.00253162347, -0.0125658717, 0.00393921975, 0.020430645, -0.0171644744, -0.0322790518, 0.0539806336, 0.0184080787, 0.037198808, 0.0083020851, 0.0128255254, 0.0107756276, -0.00538781378, 0.0338096432, -0.0381280929, -0.00913571, -0.00311071938, 0.000350831426, 0.00610869471, 0.00818592403, 0.00657675462, 0.00485484069, 0.0201983228, -0.0311584417, -0.0137753114, -0.0286439, -0.0137069812, -0.0133789973, -0.0122310547, -0.00980534311, 0.0143219503, -0.00659725349, 0.00652892329, 0.000886580674, -0.0238744728, 0.000966014166, 0.0108849555, 0.0159755349, 0.00713364314, 0.00443461165, -0.0190777127, -0.00124189619, -0.0340009667, -0.0085139079, 0.00318246591, 0.0346022695, 0.0101811578, 0.019433029, 0.0159892011, 0.00277419458, 0.019761011, -0.00888288952, -0.0143492827, -0.00983950775, 0.021045614, -0.0266350023, 0.00569871487, -0.0297645107, -0.00134353701, -0.0247080978, -0.00614285935, 0.00664508436, 0.00709264539, 0.00197644276, -0.000758889131, 0.0116707496, -0.0219612345, -0.00994883571, -0.00795360189, -0.0316504166, -0.000649561291, -0.00647767587, -0.00879406, 0.0172464717, -0.0187223963, -0.00364881754, 0.0114247622, -0.0122310547, -0.00353607326, -0.0153059009, 0.0193510316, -0.00312096905, -0.00746845966, -0.0105501395, 0.00280665141, 0.00953202322, 0.0059242039, -0.00106680079, -0.00495391898, -0.00673049688, -0.00434578257, -0.00221559755, -0.0180664305, -0.0103793144, -0.0284525771, 0.000265419018, 0.0162625201, -0.000352753181, 0.014923254, 0.0037581455, -0.00443119509, -0.0183807481, -0.022712864, 0.00747529278, 0.0162898526, -0.000858394604, 0.025828708, 0.00272465544, -0.0218382422, -0.0155518893, -0.0212916024, 0.0142399548, 0.0114042629, 0.00623168843, 0.00477967784, 0.0085275732, -0.00169714435, -0.0130305151, 0.019433029, 0.0185310729, -0.00947052613, -0.0127298636, -0.0147865936, -0.00822692178, -0.00291939569, -0.00485142414, -0.00672708033, 0.00386747322, -0.0265393388, 0.0183534157, -0.0080219321, -0.0118962387, 0.0398500077, -0.0112539371, 0.0107619623, -0.0027724863, 0.0226172023, 0.00192007062, -0.00740013, -0.0144586107, 0.00759145385, 0.00406904658, -0.00202769018, 0.0225352068, 0.00326617, 0.0340009667, 0.00308167934, -0.0135224909, -0.0185447391, 0.0358322076, 0.00747529278, 0.00392555352, -0.00917670783, -0.0230545141, 0.00885555707, 0.0121217268, 0.00612236047, 0.0176291186, 0.0228905212, -0.012306218, 0.0146499341, -0.0072771362, 0.0147865936, -0.0144859422, 0.0328530222, 0.00122566789, 0.0105501395, 0.00148361328, -0.00267682457, -0.0100513306, -0.00109327864, -0.00517599098, 0.00836358219, 0.0238744728, 0.0100581637, 0.0165221747, -0.0226991978, 0.0275369566, -0.0111377761, 0.00545614399, 0.00104886421, 0.0162078571, 0.015811542, -0.0191187114, -0.00466351677, -0.0375541225, -0.00544247776, 0.0192963686, 0.00845924392, 0.0463550165, 0.0172191393, -0.00746162701, -0.00515549211, 0.00722247222, 0.0119099049, 0.0143902805, -0.0109464526, 0.00285106571, 0.00550397485, -0.00449610827, -0.0214692596, -0.0275916196, 0.0224805418, 0.0260610301, -0.0144039467, 0.00953885633, 0.0151829077, -0.00189957162, -0.00883505866, -0.00230613467, -0.0280152652, 0.0095866872, -0.0173967965, 0.00363515154, -0.0185720716, -0.0056064697, -0.00961402]
28 Dec, 2022
unordered_multimap count() function in C++ STL 28 Dec, 2022 The unordered_multimap::count() is a built-in function in C++ STL that returns the number of elements in the container whose key is equal to the key passed in the parameter. Syntax: unordered_multimap_name.count(key) Parameters: The function accepts a single mandatory parameter key that specifies the key whose count in the unordered_multimap container is to be returned. Return Value: It returns an unsigned integral type which denotes the number of times a key occurs in the container. Time Complexity: O(N) Below programs illustrates the above function: Program 1: CPP // C++ program to illustrate the // unordered_multimap::count() #include <bits/stdc++.h> using namespace std; int main() { // declaration unordered_multimap<int, int> sample; // inserts key and element sample.insert({ 10, 100 }); sample.insert({ 10, 100 }); sample.insert({ 20, 200 }); sample.insert({ 30, 300 }); sample.insert({ 30, 150 }); cout << "10 occurs " << sample.count(10) << " times"; cout << "\n20 occurs " << sample.count(20) << " times"; cout << "\n13 occurs " << sample.count(13) << " times"; cout << "\n30 occurs " << sample.count(30) << " times"; return 0; } Output: 10 occurs 2 times 20 occurs 1 times 13 occurs 0 times 30 occurs 2 times Program 2: CPP // C++ program to illustrate the // unordered_multimap::count() #include <bits/stdc++.h> using namespace std; int main() { // declaration unordered_multimap<char, char> sample; // inserts key and element sample.insert({ 'a', 'b' }); sample.insert({ 'a', 'b' }); sample.insert({ 'b', 'c' }); sample.insert({ 'r', 'a' }); sample.insert({ 'r', 'b' }); cout << "a occurs " << sample.count('a') << " times"; cout << "\nb occurs " << sample.count('b') << " times"; cout << "\nz occurs " << sample.count('z') << " times"; cout << "\nr occurs " << sample.count('r') << " times"; return 0; } Output: a occurs 2 times b occurs 1 times z occurs 0 times r occurs 2 times Learn C++ Online – Master everything from basics to advanced concepts. Apply your knowledge with practical exercises and boost your skills. Take the Three 90 Challenge: finish 90% in 90 days for a 90% refund. Start now and level up your C++ programming!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum/Algorithm for Dynamic Time out timer Calculation/Difference between Round trip time (RTT) and Time to live (TTL)/Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms/Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm/Round Robin Scheduling Algorithm with Different Arrival Time/Selfish Round Robin CPU Scheduling/Find the order of execution of given N processes in Round Robin Scheduling/Calculate server loads using Round Robin Scheduling/set::lower_bound() Function in C++ STL/Implementation of lower_bound() and upper_bound() in List of Pairs in C++/Difference between std::set::lower_bound and std::lower_bound in C++/Difference between std::set vs std::vector in C++ STL/std::minmax() and std::minmax_element() in C++ STL/std::rotate vs std::rotate_copy in C++ STL/std::bitset::to_ullong and std::bitset::to_ulong in C++ STL/std::upper_bound and std::lower_bound for Vector in C++ STL/std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++/std::string::append vs std::string::push_back() vs Operator += in C++/Vector push_back() in C++ STL/vector :: cbegin() and vector :: cend() in C++ STL/unordered_multiset cend() function in C++ STL/unordered_multiset bucket() function in C++ STL/unordered_multiset emplace_hint() function in C++ STL/unordered_multiset end() function in C++ STL/unordered_multiset size() in C++ STL/unordered_multiset emplace() function in C++ STL/unordered_multiset find() function in C++STL/unordered_multiset erase() function in C++ STL/unordered_multiset clear() function in C++ STL/unordered_multiset swap() function in C++ STL/unordered_multiset bucket_size() function in C++ STL/unordered_multiset bucket_count() function in C++ STL/unordered_set bucket_count() function in C++ STL/unordered_set cbegin() function in C++ STL/array::cbegin() and array::cend() in C++ STL/array::rbegin() and array::rend() in C++ STL/multimap rbegin in C++ STL/vector rbegin() and rend() Functions in C++ STL/multiset rbegin() and rend() function in C++ STL/map rbegin() function in C++ STL/map upper_bound() function in C++ STL/Set upper_bound() in C++ STL/multimap upper_bound() function in C++ STL/multimap empty() function in C++ STL/multimap value_comp() function in C++ STL/multimap swap() function in C++ STL/multimap::swap() in C++ STL/multimap equal_range() in C++ STL/unordered_set equal_range in C++ STL/set vs unordered_set in C++ STL/unordered_set count() function in C++ STL/unordered_set bucket() function in C++ STL/unordered_set emplace() function in C++ STL/set::emplace() in C++ STL/multiset::emplace() in C++ STL/multiset find() function in C++ STL/multiset cbegin() and cend() function in C++ STL/multimap::cbegin() and multimap::cend() in C++ STL/multimap::begin() and multimap::end() in C++ STL/set::begin() and set::end() in C++ STL/unordered_multimap begin() and end() function in C++ STL/unordered_multimap empty() function in C++ STL/unordered_multimap find() function in C++ STL/unordered_multimap equal_range() function in C++ STL/unordered_multimap bucket_count() function in C++ STL/unordered_multimap count() function in C++ STL
https://www.geeksforgeeks.org/unordered_multimap-count-function-in-c-stl?ref=asr9
PHP
unordered_multimap count() function in C++ STL
unordered_multiset clear() function in C++ STL, What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, jQWidgets jqxTreeMap width Property, Round Robin Scheduling Algorithm with Different Arrival Time, Difference between Flow and TypeScript, set::begin() and set::end() in C++ STL, unordered_multiset emplace() function in C++ STL, jQWidgets jqxTree destroy() Method, unordered_set bucket_count() function in C++ STL, jQWidgets jqxTree collapseAll() Method, Find the order of execution of given N processes in Round Robin Scheduling, jQWidgets jqxScrollView buttonsOffset Property, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Vector push_back() in C++ STL, jQWidgets jqxListBox enableHover Property, Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm, std::rotate vs std::rotate_copy in C++ STL, Selfish Round Robin CPU Scheduling, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxSlider buttonsPosition Property, std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++, std::upper_bound and std::lower_bound for Vector in C++ STL, Difference between Round trip time (RTT) and Time to live (TTL), jQWidgets jqxSlider rtl Property, Difference between std::set::lower_bound and std::lower_bound in C++, jQWidgets jqxTooltip opacity Property, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, unordered_multiset erase() function in C++ STL, multiset find() function in C++ STL, set vs unordered_set in C++ STL, jQWidgets jqxToolBar height Property, PHP, std::minmax() and std::minmax_element() in C++ STL, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, unordered_multimap count() function in C++ STL, unordered_set emplace() function in C++ STL, unordered_multimap empty() function in C++ STL, unordered_set bucket() function in C++ STL, map rbegin() function in C++ STL, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, map upper_bound() function in C++ STL, Node.js date-and-time Date.transform() Method, unordered_multiset size() in C++ STL, TypeScript Optional Parameters, jQWidgets jqxToolBar theme Property, Difference between std::set vs std::vector in C++ STL, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, Steps to Diagnose and Resolve a Slow Network, How to use Optional Chaining with Arrays and Functions in TypeScript ?, Calculate server loads using Round Robin Scheduling, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, jQWidgets jqxScrollView showButtons Property, set::emplace() in C++ STL, Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms, jQWidgets jqxScrollView disabled Property, multimap::cbegin() and multimap::cend() in C++ STL, jQWidgets jqxSplitter destroy() Method, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, set::lower_bound() Function in C++ STL, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, jQWidgets jqxTree collapseItem() Method, multimap upper_bound() function in C++ STL, std::string::append vs std::string::push_back() vs Operator += in C++, unordered_multiset swap() function in C++ STL, unordered_multiset cend() function in C++ STL, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), Set upper_bound() in C++ STL, jQWidgets jqxSortable opacity Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, multiset cbegin() and cend() function in C++ STL, multimap rbegin in C++ STL, vector :: cbegin() and vector :: cend() in C++ STL, multimap swap() function in C++ STL, jQWidgets jqxSlider height Property, jQWidgets jqxSwitchButton onLabel Property, unordered_multiset bucket_size() function in C++ STL, unordered_set cbegin() function in C++ STL, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, jQWidgets jqxToolBar tools Property, multimap empty() function in C++ STL, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTree width Property, multimap::swap() in C++ STL, multimap equal_range() in C++ STL, Implementation of lower_bound() and upper_bound() in List of Pairs in C++, jQWidgets jqxTree clear() Method, TLS Handshake?, multiset rbegin() and rend() function in C++ STL, Algorithm for Dynamic Time out timer Calculation, Adhoc TCP, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, jQWidgets jqxTabs position Property, Differences between Wireless Adhoc Network and Wireless Sensor Network, jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, unordered_multimap begin() and end() function in C++ STL, std::bitset::to_ullong and std::bitset::to_ulong in C++ STL, unordered_multiset emplace_hint() function in C++ STL, multimap::begin() and multimap::end() in C++ STL, unordered_multiset bucket_count() function in C++ STL, unordered_multiset find() function in C++STL, unordered_multimap bucket_count() function in C++ STL, unordered_multiset bucket() function in C++ STL, Impact of Three-way Handshake and Slow Start Algorithm, array::rbegin() and array::rend() in C++ STL, multimap value_comp() function in C++ STL, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, multiset::emplace() in C++ STL, unordered_set equal_range in C++ STL, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, unordered_multimap equal_range() function in C++ STL, unordered_set count() function in C++ STL, vector rbegin() and rend() Functions in C++ STL, array::cbegin() and array::cend() in C++ STL, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, unordered_multiset end() function in C++ STL, How to Sort an Array Having Optional Properties in TypeScript ?, unordered_multimap find() function in C++ STL
GeeksforGeeks
[-0.0171250831, 0.00348820398, -0.0177311655, 0.00515815755, 0.0304847099, -0.0245399345, -0.0110320095, 0.0328574628, -0.00731813582, 0.00436509075, -0.00696351239, 0.0295304507, -0.0289888456, -0.0217158422, -0.0190336015, -0.0182340872, -0.0114511093, 0.00441667251, -0.0182082951, -0.0133467326, -0.000788633944, 0.0282924939, -0.0274156071, 0.0304331295, 0.00383960339, 0.014881284, -0.012134565, 0.00706022792, 0.00538382679, -0.0118057327, -0.015629217, 0.00924599729, -0.0143525731, -0.0282667037, -0.0121732512, 0.0246559922, 0.029762568, -0.00197299523, -0.00659599388, -0.017640898, -0.00111867546, 0.0490282886, 0.0192528237, 0.00842069183, -0.0153197274, -0.00775013166, -0.00622202735, -0.0380156189, -0.0359523557, 0.0348175615, 0.0534385107, -0.00921375863, 0.0239467453, 0.0215739943, 0.0228506383, 0.0102647338, 0.034147, 0.00256618345, 0.00669915695, -0.0259971134, -0.0175764207, -0.0263581853, 0.0264097657, -0.0116187492, -0.0361071, -0.028859891, -0.035101261, 0.0457786471, 0.0359523557, -0.0184146222, -0.0280603766, 0.0514268316, 0.00122909225, -0.00744709, -0.0214192495, 0.0197944287, -0.0319289938, 9.00662635e-05, 0.00120974914, 0.0391504169, -0.0362618454, 0.0117734941, -0.0104646124, -0.0403625816, 0.0137593849, 0.0123731298, 0.00104452693, -0.0281119589, 0.0204134081, 0.0328574628, -0.0270803273, -0.0236114655, 0.0226443112, 0.00261454098, -0.029968895, 0.0168155935, 0.0398467667, 0.0187370069, 0.00174732588, 0.0525100417, 0.0103163151, -0.0218963791, 0.0173700955, 0.0236372575, 0.0357202403, 0.0116638839, 0.0265387204, 0.00474228105, 0.0105548799, -0.0111803059, 0.0422453098, -0.000897035818, -0.0186467394, 0.0246430971, 0.00744064199, 0.0198331159, -0.012231281, 0.0144041544, 0.0014176874, -0.000728186744, -0.0149328662, 0.0300720576, 0.012134565, 0.00484544411, -0.0363134295, 0.0331411622, -0.00132097187, 0.0241659675, -0.014326782, -0.0376803391, 0.00282892701, -0.0311036892, -0.00829818565, -0.0421937294, -0.0100584067, 0.00956193451, 0.00621558, 0.0317226686, -0.00461010309, -0.0413168408, -0.0412136763, 0.0138109662, -0.0269771628, 0.0342759565, 0.00257585477, -0.0301752221, -0.00351399486, 0.0279056318, 0.0378350839, 0.0170992911, -0.0132693602, -0.0276993047, 0.0434574783, 0.00212290417, 0.0139012346, 0.00800804, 0.02978836, -0.00392987113, 0.0084400354, -0.0496730581, 0.0182211921, -0.00869794283, 0.0331411622, 0.00134515075, -0.0206842106, 0.03602973, -0.00540961744, 0.00408783974, -0.0424258448, 0.0383766927, 0.0252362862, 0.0219221693, 0.0155518446, 0.0119604776, 0.00847227406, -0.00989076681, 0.0397178121, 0.019304404, -0.0109868757, 0.0322384834, 0.0161063466, -0.00927823596, 0.0205552578, 0.00797580089, 0.0414200053, -0.00936850347, 0.00678297691, 0.00320934108, 0.0507046878, 0.0235727802, -0.0166866388, 0.0429674499, 0.0256360434, 0.0616399832, 0.0492346138, 0.0203489307, -0.0322900675, 0.0368034542, -0.0013580462, 0.0563270785, -0.0113608418, -0.0281119589, -0.0241530724, 0.0182211921, 0.0136949085, 0.0142623056, -0.0199491736, -0.0167124309, 0.0490024947, 0.0333474874, -0.0519942269, 0.0152423549, -0.0074277469, 0.00496795028, -0.0076856548, 0.0263710804, -0.046526581, 0.0340696312, 0.0376803391, -0.041162096, 0.025004169, -0.0281893313, 0.0219737515, -0.0395372771, -0.0337343514, -0.0242304448, 0.0135788498, 0.00341727934, 0.0109352935, -0.0192528237, 0.0402078368, 0.0168026984, -0.0432511494, -0.00897519384, 0.031825833, -0.0250428542, -0.0373966433, -0.0251976, 0.00132661359, 0.03014943, 0.013050138, 0.0481256098, -0.00366551569, -0.00562883914, 0.0196009986, 0.0149715524, -0.00935560837, -0.0349981, -0.000729395717, 0.00424580835, 0.0195365213, 0.0263839755, 0.0406204909, 0.00418777904, -0.0104194777, 0.0262421258, -0.0283956565, -0.0279056318, -0.00653796457, -0.023701733, 0.00845937803, 0.0250428542, -0.0499051735, 0.0253781341, 0.0183372498, 0.0100326166, 0.0393309519, -0.0403367914, -0.00313035678, -0.0248752143, 0.0392277874, 0.0147781214, -0.0174732581, 0.0137980711, 0.00360748637, 0.00991011, -0.0210968647, 0.000136509829, -0.0119282389, -0.00668626139, 0.0244625621, 0.0298141502, -0.0247462597, -0.00689258799, 0.00675073871, -0.0145717952, -0.00835621543, -0.00701509416, -0.0455465317, -0.0372161046, -0.0149844475, 0.00289662788, -0.0117670465, -0.00973602198, 0.00727300206, 0.0186596345, -0.0193301942, -0.0323158577, -0.0327543, -0.0109675322, -0.00958127715, -0.0230569635, 0.0104259262, -0.0326769277, 0.018388832, -0.0250686444, 0.0149328662, -0.0240112226, -0.00126294256, -0.0200394411, -0.0122570721, -0.046526581, -0.0291435905, -0.0067249476, -0.0298141502, -0.0123537872, 0.0351528414, 0.000329437, -0.0405431166, -0.003123909, 0.00701509416, 0.00125568896, -0.00694416929, 0.0410847254, 0.0199104883, -0.00796935335, -0.0197170563, 0.0389698781, -0.010761206, -0.0647348762, -0.0319547839, 0.0271577, -0.0239983276, -0.0155776357, 0.00869794283, -0.0314389691, -0.00331411627, 0.0128631555, 0.0128889456, 0.0124891885, 0.00361071015, 0.00200684555, -0.0123537872, 0.00938784704, 0.0317742489, 0.0280345865, -0.0171379782, -0.0250557493, -0.0077049979, 0.0601957, 0.00102034805, -0.00862057, 0.00858188421, 0.0162868816, 0.00649927836, 0.00589964259, -0.0309231542, -0.0267708376, -0.0269771628, 0.0196138937, -0.0181051325, 0.0404915363, -0.00804027822, 0.00650250213, -0.0127793355, -0.0282924939, -0.012592352, -0.0102260476, 0.0444117375, -0.0202715583, 0.00635420531, -0.00704088481, 0.00513881445, 0.0295820329, -0.0515042022, -0.000445697049, 0.00919441599, 0.0348691456, -0.0117154652, -0.0141204558, -0.0040330342, 0.0339406766, 0.0256876238, 0.00360748637, -0.00678297691, 0.00787263829, -0.0204263031, -0.00207777042, 0.0033656978, 0.0259713233, -0.038995672, -0.00955548696, -0.0117541514, -0.0118250763, 0.0167511161, 0.00978115574, -0.0374224335, -0.00838200562, -0.0394083224, -0.0508852229, 0.0264613479, -0.00212935195, 0.0179245975, -0.00171508733, -0.0288083088, -0.000632277282, 0.0120185073, -0.018388832, -0.00621880358, 0.0228635333, 0.0265129302, 0.00029478065, -0.0229666959, 0.0150489248, 0.00985208061, -0.0174861532, -0.0557081, 0.0281377491, -0.00798224844, 0.00116783904, -0.0263452884, -0.024449667, -0.000717306277, -0.0148168076, -0.0144686317, -0.00387506583, -0.000130565866, 0.0207228977, 0.00996169169, -0.0113866329, 0.0074793282, 0.00291758287, 0.0104388213, 0.0386603884, -0.00291435886, -0.0507562682, -0.00426192768, 0.00467458041, -0.0167898033, -0.0346886106, 0.0282924939, 0.0387377627, 0.0157323796, -0.0395888574, 0.00701509416, 0.0455207415, -0.0146233765, -0.014339678, 0.00185210095, 0.0175764207, -0.0239467453, 0.0260615908, -0.00117670465, -0.0155260544, 0.0462170914, -0.00326414662, 0.0393051617, -0.00809830707, 0.0462686718, 0.00924599729, -0.0168671757, 0.0198975932, -0.0217029471, -0.00405560108, -0.0204134081, 0.0295304507, -0.00139431446, 0.00383960339, -0.0189691242, -0.0162481964, -0.00565463025, -0.0153584136, 0.0235469881, -0.00644124905, 0.0136304311, -0.00565785402, 0.00990366191, -0.00309005869, -0.0259455312, -0.0144686317, 0.0177440625, -0.00783395208, -0.0535416752, -0.0020600392, -0.0208131652, -0.0377319232, 0.0245657247, -0.0121861473, 0.0033270116, -0.0149973426, -0.0175248403, -0.0112705743, -0.00571265956, -0.0401820466, -0.000684664818, 0.026874, -0.0420389846, -0.00551922852, 0.0151520874, -0.0136949085, 0.0479450747, -0.0206068382, -0.0296851955, 0.046474997, -0.00458431244, -0.0615884, 0.0218963791, 0.0338890962, -0.0351786353, -0.00313358055, -0.0196912661, 0.0549859591, 0.00431673322, 0.00580615085, -0.00720207719, -0.000942169689, 0.0402852111, -0.0074793282, -2.64204446e-05, -0.000433607609, 0.00424580835, 0.0334248617, 0.0314905532, 0.0298399404, -0.000792260747, 0.0159902889, -0.00882689655, 0.00961996336, 0.0233406629, -0.0551407039, -0.0159516018, 0.00247591548, -0.0313873887, -0.0127470968, -0.0120056113, -0.0315679237, 0.00245012483, 0.00980694685, -0.0427353345, 0.0189949144, 0.000914767, -0.0194075666, 0.00261292909, 0.0182985645, -0.0197557434, 0.00213902351, 0.0123795783, -0.00538705057, -0.0127213057, 0.00429416588, 0.00166834157, -0.00209066574, 0.0230311733, -0.0083046332, -0.0160418693, 0.0262808129, -0.00907191, -0.0271319076, 0.0211742371, -0.0207486879, -0.0084916167, 0.0295046605, 0.0273898169, 0.0319032036, 0.0124827409, -0.014533109, 0.00905256625, 0.0049937414, -0.0110964859, -0.00220833626, 0.00264194375, 0.0165447909, 0.0305620823, -0.0236501526, -0.0120894313, 0.0193688814, 0.0105548799, 0.0137593849, -0.0236630477, 0.00812409818, -0.00625104224, 0.00669915695, 0.00980694685, -0.0121990424, -0.0144170504, -0.0285504013, -0.0177827477, -0.00577068888, -0.0586998314, 0.00750511931, -0.00372999255, 0.0163255688, -0.0127922306, -0.0127084106, -0.00236952864, -0.0115478253, -0.0075180144, -0.0102969715, -0.0110642482, -0.00909125246, 0.00633486221, 0.00420389837, 0.0250815414, -0.0113479467, 0.0150489248, 0.00458753621, 0.0147781214, 0.0188788567, 0.0270545352, 0.00709891412, -0.0462686718, 0.0109933233, 0.0488477498, -0.0069506173, -0.00981984194, 0.0337085575, -0.00735682203, 0.0387635529, -0.018930437, -0.0168284886, -0.0144428406, -0.0265645105, -0.0286019836, 0.036571335, 0.0173700955, -0.00778237, -0.029762568, -0.00809185952, -0.0101809129, -0.0152165648, 0.00431028521, -0.01489418, 0.00450371625, -0.0297109876, 0.0406462811, 0.0182082951, -0.00458108867, 0.00139753823, -0.0234567206, 0.0247204695, -0.0228377413, 0.0034849802, 0.00276928581, 0.0399499312, -0.000607695431, 0.0141333519, -0.0425032191, 0.012315101, -0.0117348079, -0.0221284963, -0.0280087944, 0.0116703315, 0.0232503954, -0.00618011737, -0.00558048161, -0.0130694816, -0.0150231337, 0.0170735, -0.00218415726, 0.0168671757, -0.0192012414, -0.0449275523, 0.00900098495, -0.00890426897, 0.0108385785, -0.0162739865, -0.0144170504, -0.0289114732, -0.00569976401, 0.01195403, 0.0025323329, 0.00282570324, 0.00491314521, -0.0175893176, -0.0344822817, -0.00134676264, -0.0135143725, 0.0180922374, 0.00564818224, -0.01489418, -0.018569367, 0.00206165109, 0.0334248617, -0.0117025701, -0.0169187561, -0.00918152, 0.0103614489, 0.0234696157, 0.00873018149, -0.0536448359, -0.0168155935, -0.0395888574, 0.0101035405, 0.0443859436, -0.00309489458, -0.00888492633, 0.00781460851, 0.0077372361, 0.016557686, -0.0142752007, 0.0168929659, -0.00197460712, -0.0240241177, -0.0420389846, 0.00369775412, 0.0557081, -0.0127148582, 0.00886558276, -0.0257005189, -0.00590931438, 0.025558671, 0.00432318076, -0.0264871381, 0.0024533486, -0.00443279138, -0.01783433, 0.00149344781, 0.003723545, -0.00503242761, -0.0560691729, 0.0166092664, -0.00143944833, 0.00291758287, -0.00040560044, 0.0286535639, -0.0180535503, -0.0132177789, -0.0303557571, -0.00177472853, 0.00286922511, -0.0240757, 0.0024775276, 0.0187627971, 0.00558370538, -0.0408526063, 0.0329090431, 0.0285504013, -0.0197170563, -0.0214063544, -0.0124505023, 0.00361393415, 0.0209292248, 0.0242175497, 0.0232246034, 0.000225467898, 0.00535803614, -0.0119024487, 0.0159516018, -0.0144815268, 0.0170992911, 0.0147523303, 0.0348949358, -0.00116461527, -0.0269771628, 0.0149973426, -0.017460363, 0.0326253474, 0.00819502305, 0.00634130975, 0.0120829837, 0.0128567079, 0.00662823254, 0.00543863233, 0.0159644969, -0.015796857, -0.00937495101, -0.0235083029, 0.0285504013, 0.0179890748, 0.00396211, -0.0147910165, 0.0108256834, 0.0129469754, 0.0359781496, -0.0173700955, -0.0475582108, -0.0143138869, -0.00304331281, -0.0141462469, 0.0218963791, -0.00244851294, 0.03602973, 0.0119991638, 0.0182985645, 0.0104517164, 0.012785783, 0.0142107243, 0.0292467531, 0.00952969585, -0.00354300952, -0.00123473397, -0.013978607, 0.0173185132, 0.0255715661, -0.00991011, -0.0173572, -0.0084400354, -0.0513236672, -0.00641223462, -0.0270545352, 0.0295046605, 0.0262034405, -0.0168800708, -0.0110062184, -0.0105161937, -0.00134756858, 0.0192012414, 0.0192657188, 0.0369582, 0.037886668, -0.00297722407, -0.000194841341, -0.00489702588, -0.00423291279, 0.030691037, -0.0110513521, 0.00136368792, -0.00326898228, 0.0146749578, -0.00238725985, 0.0235856753, 0.00624137046, 0.0361844748, -0.0348949358, -0.021883484, 0.0228764284, 0.0386861823, 0.0208776426, 0.0183630399, -0.0400015116, -0.00334957847, 0.0186596345, -0.0109352935, 0.0218061116, 0.0197686385, 0.00896229874, 0.00886558276, -0.0198202208, -0.012592352, 0.0407494456, 0.00632196665, -0.00927823596, -0.00435219519, -0.0135530587, 0.0213547722, 0.0100777503, -0.0105613274, 0.0164803136, -0.000746320933, 0.00998103432, 0.00200523366, 0.0244367719, 0.00992300548, 0.00841424428, 0.015448682, 0.00835621543, -0.0371903144, -0.0257134158, 0.0288341, 0.0379898287, 0.0113737369, 0.00204230798, 0.0056804209, 0.0492346138, 0.00673139561, 0.0318516232, -0.00796935335, -0.0354881249, 0.0113092605, -0.00200523366, 0.00747288065, -0.00123151008, 0.0204778854, -0.000194539098, -0.0213031899, -0.00585773261, -0.00854964554, 0.0226829983, 0.000167539372, -0.000913155091, 0.0237533152, -0.0201941859, -0.0314131789, -0.0790745541, -0.0347659811, 0.00762117747, 0.016531894, -0.0263839755, -8.28126067e-05, -0.0215482023, 0.0179503877, 0.00796935335, -0.00215191883, -0.0152294599, -0.00396533357, -0.00061333715, 0.0318774134, -0.000360265054, 0.0241143852, -0.0152294599, 0.0107096247, -0.0113414992, -0.00183275784, 0.00990366191, 0.0268997904, 0.0160805564, 0.039176207, 0.00230988744, 0.0140946656, 0.0190980788, 0.00392987113, -0.0195881035, -0.0235985704, -0.0592672303, -0.0108192349, 0.0172669329, -0.0346886106, 0.0184919946, 0.0145073179, 0.0109610846, 0.0252233893, 0.0139399208, 0.00394921424, 0.00729234517, -0.024449667, -0.0284730289, -0.018943334, 0.00260164565, -0.0242433399, 0.00763407303, -0.010290524, 0.00937495101, 0.008820449, 0.00166028191, -0.00963285938, -0.0175764207, -0.0177053753, -0.0223735087, -0.0380156189, -0.0041007353, 0.00119604776, 0.0108063398, 0.00543863233, 0.00342695089, -0.0267708376, 0.00116461527, -0.0286019836, 0.00390408048, 0.00759538682, -0.0120442975, -0.0126052471, 0.0235985704, 0.0226314161, -0.000409025757, -0.0126632769, 0.00275800237, -0.0253007617, 0.00445535872, -0.0152423549, 0.0114059756, 0.0131339589, -0.0239854325, 0.00765986368, 0.0012282863, 0.00967799313, -0.00769855, -0.0258423686, -0.0338375121, -0.024449667, 0.0111029344, 0.0159516018, -0.0166350584, 0.0263066031, 0.0343791209, -0.00982629, 0.0304589197, -0.0632905886, -0.0300720576, -0.011676779, 0.0166479535, 0.0159644969, 0.0160418693, 0.00752446242, 0.00241627428, -0.00479708659, 0.031077899, -0.00361071015, -0.022425089, -0.0157194845, 0.0141462469, -0.00921375863, 0.0101809129, -0.00472616171, -0.0208389554, 0.0269513726, 0.0593703911, 0.0460623465, -0.0232890807, 0.0107741011, -0.0325995535, -0.00804672576, -0.00377190276, -0.0311810616, 0.0101680178, 0.000336892146, -0.0298657324, -0.0115155866, 0.0347144, -0.00538705057, 0.0134498952, 0.00658954633, -0.0466039516, -0.00491314521, 0.00878176279, 0.00628005667, -0.00181825052, -0.00377190276, -0.0337601416, 0.0542122349, 0.00321095297, -0.0239467453, 0.0158226471, -0.0298399404, 0.0169703383, -0.00280958391, 0.00922665372, 0.0131146153, -0.0115607204, 0.0138367573, 0.015448682, 0.00634775776, -0.0278282594, -0.000656859134, 0.0117025701, 0.00529033504, -0.00837555807, -0.0261260681, -0.032006368, 0.0264097657, -0.00719562965, 0.00165383425, -0.00667981384, -0.0205939431, 0.0144299455, -0.00696351239, 0.0248236321, 0.0298399404, -0.00800804, 0.00075438054, 0.023727525, -0.00972312689, 0.00948456209, -0.0143912593, 0.0372934788, 0.0162095092, -0.00436509075, 0.0267966278, -0.0155518446, 0.0331153721, -0.00697640795, 0.000236751366, -0.00386861805, -0.0125214271, -0.0131855402, -0.0026919134, 0.00441989629, 0.0170348156, 0.00630907156, 0.0292209629, 0.00575134577, 0.000475114648, -0.0323674381, -0.0134885814, -0.0131146153, 0.0100970929, -0.0292209629, 0.0224379841, -0.00755025307, 0.0237791054, -0.0274671894, -0.0142365145, -0.0160289742, 0.0224895664, 0.0498535931, 0.0227603707, -0.0305878744, 0.0210323874, 0.0251589138, -0.0343791209, 0.00540317, 0.00359136704, 0.00458431244, 0.0232503954, 0.0179117024, 0.0219995417, -0.00202618865, 0.0359007753, 0.0680876821, -0.00498406962, -0.00591253815, -0.00181180285, 0.0151778786, -0.0105032986, -0.0124698458, 0.000587949355, 0.0233148709, 0.00249525858, -0.00309973024, 0.0108901598, -0.00420067459, 0.0205939431, 0.00325769885, 0.0202844534, 0.0359523557, -0.0146878529, -0.0140172932, -0.00654118834, -0.0173572, 0.0229022186, 0.00524197752, -0.0106129088, -0.0102195991, -0.0120120589, 0.0172153506, -0.0262550209, -0.00833042432, 0.00528066372, 0.00776302721, -0.00285149389, -0.000458995404, -0.0274671894, 0.0114704529, 0.00754380552, 0.0145460041, 0.0146362716, -0.0323158577, 0.0215224121, -0.00171831122, 0.0348949358, -0.00574489776, -0.013424105, 0.00206487486, -0.019858906, 0.00359459105, -0.00483254855, 0.0168155935, -0.00634453353, -0.00745998509, -0.0120442975, 0.0291177984, -0.00168446079, 0.0243980847, -0.0136949085, 0.0170735, -0.0294788703, -0.00280636013, -0.00757604372, 0.0170477107, -0.0201812908, 0.0355912857, -0.0157710668, -0.00946521852, 0.0329606272, -0.0145588992, -0.0208389554, 0.0413684212, 0.0184275173, -0.0111029344, -0.00639611529, 0.0359007753, -0.00389763271, -0.0224895664, 0.00472938549, 0.0092975786, -0.00717628654, -0.0107676536, -0.00388796115, -0.00764696859, 0.0212387126, -0.0260100085, -0.00353656174, -0.018014865, -0.00410718285, 0.00662178453, -0.0109675322, -0.0154873682, 0.0190722868, -0.040311, -0.0257907882, -0.0153326234, 0.00878176279, -0.0217803195, -0.00710536214, -0.00233245431, 0.00197460712, -0.0119346865, 0.0185306799, -0.0438185483, 0.00684745423, 0.0224637762, 0.00343017466, 0.0241272822, -0.0366229191, -0.0103421053, -0.0063155191, 0.0033463547, 0.0242046546, 0.0200652331, 0.00956838205, -0.00346886087, -0.0241143852, 0.00587707572, -0.00331089227, 0.00714404788, -0.0113672893, -0.0116445404, -0.00755025307, -0.00252910913, 0.0212902948, 0.0153713096, -0.00140156806, -0.0018811156, -0.000332257885, -0.00579647953, -0.0127664395, -0.00978760421, -0.0100713028, -0.0280603766, -0.011025562, -0.0217287391, -0.0219995417, 0.0111545157, 0.0142494095, -0.00481320592, 0.0288856812, -0.010845026, 0.0286535639, 0.00766631169, 0.0080660684, -0.00714404788, -0.0302525926, -0.00347530865, -0.00994879659, 0.0169961285, 0.00638321973, 0.0176151078, -0.00743419444, -0.0316710882, -0.003123909, -0.0273124445, -0.0201297104, 0.00132580765, -0.0106709385, 0.00885913521, 0.0102002565, 0.00314002833, -0.0373708494, -0.00230021589, -0.00240337895, -0.00257585477, 0.0157581717, -0.0136820124, -0.0258681588, 0.000103465383, -0.0152939372, -0.0682424232, -0.00307071558, -0.000331653398, 0.00192463747, -0.0138883386, 0.00831108168, 0.0252104942, -0.00753735751, 0.0142752007, 0.0248881094, 0.00340760779, 0.0263452884, -0.0263839755, -0.00239531929, -0.00783395208, -0.00723431585, -0.00147813454, 0.0121281175, -0.0124698458, 0.0055611385, -0.026641883, 0.019304404, -0.00582549395, -0.0016409388, 0.00653796457, -0.00943942834, 0.00185371283, 0.0233148709, 0.00836266298, -0.023727525, -0.0170606058, 0.0201168135, 0.000948617409, 0.0060576112, -0.024836529, -0.00321417698, 0.00136449386, -0.015796857, -0.00154180545, 0.00791132357, 0.0241143852, 0.00487123476, -0.00393954292, 0.0136562223, 0.00600602943, 0.0121603562, 0.0220898092, 0.00248558703, 5.43520691e-05, 0.0294272881, 0.00335280225, 0.0202457681, 0.00663468, 0.0363908, -0.0125730084, -0.0176151078, -0.0210839678, 0.0165189989, 0.00919441599, 0.00206809887, -0.0196525808, 7.72212443e-05, -0.014339678, 0.00268546562, 0.0149586564, 0.00203424832, -0.00641223462, 0.020761583, 0.0223992988, -0.0313100144, -0.00213418761, -0.0202586632, 0.0175764207, -0.00789842848, -0.0270029549, 0.00991655793, 0.0107483109, -0.000156558133, -0.00378157408, 0.00133870309, 0.00484544411, 0.00833042432, -0.0106064612, -0.00666047074, 0.000836588675, -0.019472044, 0.00652506901, 0.0178988073, 0.0192915089, 0.000526293239, -0.0174087808, -0.0249783769, 0.00381381274, 0.0119927162, 0.00372999255, 0.0314647593, -0.0111545157, -0.00613498362, -0.0254168212, -0.00557081029, -0.0145073179, -0.00416843593, -0.00963930693, 0.0230827555, -0.0112834694, 0.0169316512, -0.0108321309, -0.0127793355, 0.00800159201, 0.0143783642, 0.0456239022, -0.00815633684, -0.0245528296, 0.0213418771, -0.0128051257, -0.0112770218, -0.0332701169, -0.0226701014, 0.0149973426, 0.00680876803, 0.0258423686, -0.0281119589, -0.0239596423, 0.0101164365, -0.00356235239, 0.00995524414, 0.0257521011, 0.0220253319, -0.00562561536, -0.00808541197, 0.00369775412, -0.0107676536, -0.00346241309, -0.0242046546, -0.00998103432, 0.0166350584, -0.00115091389, -0.0160289742, 0.010664491, 0.0175764207, -0.00912993867, -0.00581259886, -0.0356170759, -0.0283956565, -0.0219866466, 0.0304073375, 0.000953453186, -0.0077049979, 0.00690548308, -0.0318000391, 0.00219382881, 0.00834331941, 0.000202094991, -0.0172540359, -0.00560949603, 0.00289501599, 0.0020165171, -0.0176795851, -0.0218576919, 0.00783395208, -0.0158871245, 0.0255844612, -0.00220511225, -0.00773078855, 0.0379124582, 0.0174345728, 0.00126294256, -0.00153455185, -0.0177827477, 0.00747288065, 0.0128889456, -0.00753091, 0.0255070888, 0.0156163219, -0.00906546135, 0.00842713937, 0.0236114655, 0.0376803391, 0.000183054144, 0.00405560108, -0.00431673322, 0.0098133944, -0.0312842242, -0.0108385785, -0.0011073919, -0.0206197351, -0.0119604776, -0.0277250968, 0.00798224844, 0.0259326361, 0.0212516095, 0.0164674185, -0.0219092742, -0.0269771628, 0.0158484392, -0.0110578, 0.00707957102, -0.0283440761, 0.00124037568, -0.0060382681, 0.0202586632, 0.0322642736, 0.0136175361, 0.0181567147, -0.0433285236, 0.0139270248, 0.0292725433, -0.00878821, -0.0194075666, -0.032934837, 0.0113221556, -0.00179407164, -0.0303299651, 0.00778881786, -0.0133596277, 0.0247720517, 0.00537093123, 0.0172927231, -0.00925244484, 0.0264613479, -0.012495636, -0.00297883595, 0.0125020845, 0.0280087944, 0.0350754708, 0.00836911052, 0.0255844612, 0.000196251771, 0.00804672576, -0.0158226471, -0.020955015, -0.00635742908, -0.00523875374, 0.0276735146, 0.026874, 0.0124311596, -0.00779526541, -0.00905256625, 0.0132951513, -0.018388832, 0.013411209, -0.0234825127, 0.00556436228, 0.0265645105, -0.00620913226, -0.0271577, -0.00556436228, -0.000116965253, 0.00879465882, 0.0130823767, -0.0166608486, -0.0106064612, 0.00148377626, -0.0421421453, -0.0295820329, -0.0179117024, 0.0290146358, -0.0278024692, 0.0151005061, 0.0173700955, -0.00790487602, -0.00645092083, 0.0151649825, -0.0139399208, 0.013437, 0.0133338375, 0.0174216777, 0.0152810412, 0.0229022186, 0.00434574764, 0.00878176279, -0.00299979094, -0.00345274154, -0.011399528, 0.0173185132, -0.0033270116, -0.00654118834, 0.000295183621, 0.00666047074, -0.00118234637, 0.00626071356, 0.00555146718, 0.00824015681, -0.0100455116, -0.00795645826, 0.00889782142, -0.0235598851, 0.00188595138, -0.0131984353, 0.0139399208, 0.000585531467, 0.0161450338, 0.0266934652, -0.00529033504, 0.0154228909, -0.00642835395, 0.00164416269, 0.00503565138, 0.00144992582, -0.00791132357, -0.0254555065, 0.00217126193, 0.00180374319, -0.000579889747, -0.0211742371, -0.0229022186, 0.0230311733, 0.0383509025, 0.0180535503, 0.0100197205, 0.00212935195, -0.0153584136, 0.00677008182, 0.00829173811, 0.00956838205, 0.0383251086, -0.0189691242, -0.00604471564, -0.0351786353, 0.0175893176, 0.000794275664, -0.00957483, 0.0049260403, -0.000428368861, 0.0034817562, 0.0144944228, 0.00539994612, 0.00593510503, 0.0130436905, 0.00841424428, 0.000532338, -0.00917507242, -0.0131275104, -0.00917507242, -0.00282086735, 0.0114962431, 0.0059189857, -0.0145460041, 0.0125988, 0.00632841466, 0.00813054573, -0.0069506173, -0.0056610778, -0.018014865, 0.0224379841, -0.0125601133, 0.0165061038, -0.0210452825, -0.00864636153, -0.00499051716, -0.00272415183, 0.00693772174, 0.0126374858, -0.00640901085, 0.0120185073, 0.0188272744, 0.00412974972, 0.0215997845, -0.0074664331, -0.00284021045, 0.0155389495, -0.0152681461, -0.00188272749, 0.00699575106, -0.00983918551, -0.00198589056, -0.0197944287, -0.000171871419, -0.0132435691, 0.00396211, -0.0026919134, -0.0175119452, -0.00717628654, -0.00590286637, -0.0109804273, 0.0259584282, -0.00890426897, -0.018014865, 0.0247720517, 0.0156936944, 0.0152423549, -0.0120056113, -0.00131533016, -0.00265645119, 0.00340760779, 0.00860122778, 0.00250654225, 0.0084400354, 0.0108579211, 0.00406527286, 0.00361393415, 0.0190593917, 0.0117348079, 0.00309005869, -0.0119282389, 0.0226958934, -0.00829818565, 0.0122570721, 0.00542573677, 0.0211484451, -0.00287083699, 0.0014354185, 0.0216384698, -0.0152294599, 0.0192012414, 0.00712470477, 0.00625104224, 0.0142752007, -0.00271931617, -0.0130307954, -0.00510979956, -0.00596089568, -0.00214708294, 0.0087172864, -0.00440700073, 0.0196912661, -0.0163384639, -0.00942008477, 0.00870439, 0.00151279091, -0.0128373643, 0.00299495528, 0.00407172041, 0.0115349293, 0.00355912861, 0.00971667934, -0.0302525926, -0.0144170504, -0.00679587247, -0.00492926408, -0.00937495101, 0.00439732941, -0.00485189166, -0.00960706826, 0.0199878607, -0.00456819311, 0.00616399804, -0.0287567284, 0.0075180144, 9.88814791e-05, -0.0147523303, -0.00698930351, -0.0164932087, -0.00625104224, 0.0120249549, -0.00369453034, 0.00500986027, -0.0181567147, -0.00487123476, 0.00482932478, -0.00842713937, -0.014326782, 0.000268788368, 0.0212516095, -0.00228409655, -0.0211226549, -0.00240660296, -0.00914283376, 0.00433607632, 0.0033270116, -0.00564173469, -0.00314486423, -0.0152036687, 0.0151907736, -0.0252749715, 0.000851901947, -0.0162095092, 0.0021599785, 0.00688614044, -0.027931422, -0.0137980711, 0.0135401636, 0.00194559246, 0.00261937687, -0.00573845, 0.001574044, -0.0183630399, -0.00607050676, -0.00579003198, -0.0208131652, -0.0272608623, 0.00887203123, 0.012315101, 0.0186467394, -0.015087611, -0.0231859181, 0.00725365896, -0.0259584282, 0.0241143852, -0.00941363722, -0.0301752221, 0.00381381274, 0.00209227763, -0.0116380928, 0.00402658666, -0.00281119579, 0.0211742371, -0.00199233834, 0.0264355578, 0.0390214622, -0.00622202735, 0.0171250831, 0.00608662562, -0.00469392352, -0.0267192554, 0.0109804273, 0.0156163219, 0.0177827477, 0.00952969585, 0.0123731298, 0.0236501526, -0.0065863221, -0.000929274305, -0.00781460851, 0.00399112422, -0.000582307635, -0.00017882284, -0.00729879271, -0.0135143725, 0.00470037106, 0.00341405557, -0.00479386281, -0.000996975112, 0.0141204558, -0.000657262106, 0.000562158588, 0.0138496524, -0.0115671679, -0.000402175094, 0.00630584732, 0.000599232852, 0.00625749, 0.0161966141, 0.0102002565, 0.0207357928, -0.0118379714, -0.0180664472, -0.00363005325, 0.00318677421, 0.0151649825, 0.0105161937, -0.0124633983, 0.0126632769, 0.0204263031, -0.00182469818, -0.0279830042, -0.0122957574, -0.0145073179, 0.0072214203, -0.0119604776, 0.0278282594, 0.0135143725, 0.00314647611, -0.0161321368, 0.00421679392, -0.00975536555, -0.0106387, -0.00807896443, -0.0306394547, -0.0169961285, 0.00133789715, 0.00477451971, -0.000780171307, 0.0292725433, 0.0157581717, 0.00101309433, -6.0793468e-06, -0.0054418561, 0.0167640112, -0.0118637625, -0.00564495847, 0.00242272206, -0.00563528715, -0.0327543, -0.00839490164, 0.00671205251, -0.0155131584, -0.0148168076, 0.0156808, -0.00390730426, 0.00633163843, 0.0375255942, 0.0147523303, -0.0187756941, -0.0232890807, -0.0220769141, 0.00743419444, 0.0146878529, -0.00762117747, 0.0159387067, 0.023701733, 0.00968444068, -0.00760828238, -0.0161450338, -0.0176022127, -0.00640901085, 0.0064348015, 0.00409428729, -0.0136691174, 0.00580937462, -0.015796857, -0.0157194845, 0.00460365554, 0.00173926621, 0.0269513726, 0.00916862488, -0.0281635392, 0.0116961217, -0.019472044, -0.000441667245, 0.00234051398, 0.0199878607, 0.00773078855, 0.010290524, -0.0177053753, 0.0180793423, -0.0119411349, -0.0199104883, -0.0103550013, 0.000999393, 0.00954259094, 0.00635742908, 0.00315292366, 0.0377061293, -0.00164658052, 0.0190722868, 0.0155002633, -0.0151134012, -0.00237920019, 0.00370097789, 0.011025562, 0.0156550072, 0.00853675, -0.0143912593, 0.00192947325, -0.0163255688, 0.00684745423, 0.0264355578, 0.00555791473, -0.0144815268, -0.00515493378, 0.0116961217, 0.0146104814, 0.0036010386, 0.00692482619, 0.0207100026, -0.00589641882, -0.00640578661, 0.00440377695, 0.00291274698, 0.00495827897, -0.00287083699, -0.0239338502, 0.0152294599, 0.0174216777, 0.0184533074, 0.00822081324, -0.00837555807, -0.0118315239, 0.00387506583, -0.0159129165, 0.00419422658, 0.00857543666, -0.0188788567, -0.00785974227, -0.0180277601, -0.00662178453, 0.00983273797, 0.035281796, -0.00247430359, -0.014159142, -0.0098133944, 0.000896229874, 0.0123795783, 0.0153713096, -0.0121539086, 0.0279056318, 0.0250299592, 0.00238242396, 0.00687324489, 0.00811120216, -0.0144815268, -0.0072214203, 0.011206097, -0.0319805779, 0.00171831122, 0.0311810616, 0.0147136441, -0.00521618687, -0.0014845822, 0.00966509711, -0.00257746689, -0.0215353072, 0.0144299455, -0.00707957102, -0.00121700275, -0.00775013166, -0.00617367, 0.0047164904, 0.00717628654, -0.0167124309, 0.00722786831, 0.00498084584, -0.0243851896, 0.00199556211, 0.0321611129, 0.00539027434, 0.0198846962, -0.0195365213, 0.0156936944, -0.00930402614, -0.011025562, 0.0354107507, 0.0229409058, -0.00081079785, -0.00489702588, -0.00737616513, 0.0197170563, 0.0151262963, 0.020232873, -0.00491314521, -0.00547087099, -0.00286116544, 0.0287567284, 0.0275445618, -0.00465201307, 0.00973602198, 0.0118766576, 0.00612853607, 0.00860122778, -0.0178730153, 0.00600602943, -0.00675718626, -0.0119798211, -0.00461332686, 0.0183501448, 0.0128953941, 0.0016812369, 0.0122377286, -0.00995524414, 0.0067442907, 0.0154099958, 0.00709246658, 0.0237791054, 0.000872856937, 0.0167898033, -0.00696351239, -0.0224121939, 0.0263452884, -0.0115607204, 0.00193753291, 0.00656697946, -0.0114317667, 0.025739206, 0.00527744, -0.022979591, 0.0162610915, -0.0292209629, -0.0128438119, 0.0271061175, -0.0159129165, -0.0132693602, -0.0133338375, 0.0188014843, -0.0205939431, 0.00196977146, 0.00345596555, -0.0117090177, 0.0161579289, -0.00878821, 0.0309489444, -0.0214192495, -0.0199491736, 0.0168929659, 0.00293370197, 0.0105419839, 0.00313196867, -0.00994879659, -0.0103807915, -0.0120120589, -0.00706022792, -0.00457786489, -0.00510979956, 0.0084400354, 0.0180535503, 0.00065524719, -0.0247075744, -0.0188530646, 0.0308199916, 0.0156550072, -0.00880110636, 0.00941363722, 0.00105500442, 0.000934916, 0.00103243743, 0.000339713035, 0.0253781341, 0.00100181089, 0.0288083088, 0.00845293049, 0.0168284886, -0.00657987455, -0.0157839619, 0.00426837523, -0.025739206, -0.00606728252, -0.0290662181, -0.00273865927, 0.00510657579, -0.00595122436, 0.0034656371, -0.00468425173, -0.0072601065, -0.010941742, 0.00618656492, -0.0115736155, 0.00199072645, -0.0136949085, -0.00646381592, 0.00608985, 0.00172153511, 0.00382348429, 0.00270642084, -0.00108563097, -0.00462299865, 0.00851096, -0.00606728252, -0.00397178112, 0.0224637762, -0.00115736155, 0.018569367, 0.0141075607, 0.0252104942, 0.0225798339, -0.0135788498, -0.00167156535, -0.00317387888, 0.0027112565, 0.00834331941, -0.0226056259, 0.00070642581, -0.00909125246, -0.00419100281, 0.0212645046, 0.00169090845, 0.0111803059, -0.0177182704, -0.00785974227, 0.0015442234, -0.0109610846, 0.0143912593, 0.00647026394, -0.00423291279, -0.00688614044, 0.00501630828, 0.00974246953, -0.0202457681, -0.00264516752, 0.0123860259, -0.0129727656, -0.000157364106, 0.00863346644, 0.0288856812, 0.0218190067, 0.00434574764, -0.00954259094, 0.00661533698, 0.00595444813, 0.00747288065, -0.014520213, 0.00584806083, 0.0225024614, 0.0151778786, 0.000145879138, -0.00711180968, -0.0165834762, 0.00869149528, 0.0246430971, 0.020400513, -0.00429739, 0.0227216836, -0.00867215265, -0.0221929718, -0.0118831052, -0.00932337, 0.00207454641, -0.010845026, 0.0323674381, 0.00406849664, 0.0144041544, -0.0212000273, -0.00206165109, -0.0137722809, -0.00426192768, 0.00274188304, 0.015255251, 0.00499696517, -0.0159516018, 0.0271319076, 0.0165834762, -0.0291177984, 0.00977470819, 0.00237114052, 0.019678371, -0.0137722809, 0.0122506237, 0.00603182055, -0.0140688745, -0.0178601202, -0.00266773463, -0.0100003779, 0.0049743983, -0.0119153438, 0.0131984353, 0.00321901264, -0.00810475461, 0.0047874148, -0.00858188421, 0.00856254157, -0.00344951777, 0.00923955, -0.00274027116, -0.00847227406, 0.00955548696, 0.000204412136, -0.0269513726, 0.00807251688, -0.00449404446, 0.00750511931, 0.0157710668, 0.0212645046, 0.000505338248, 0.000788633944, 0.00434897142, -0.0074664331, 0.0125536658, 0.0106129088, -0.00461010309, -0.000683858874, 0.0159516018, -0.018917542, 0.00827239547, -0.0243207123, 0.0319289938, 0.018014865, 0.00876242, -0.0137464898, 0.0223477166, 0.0204778854, -0.01360464, -0.0255844612, -0.000415473478, -0.00622847537, -0.0177311655, -0.00268546562, -0.0174732581, 0.0232117083, -0.0211742371, -0.00314486423, 0.0064348015, 0.0317742489, 0.00163449114, 0.00454240246, 0.00546442298, 0.0251202267, 0.0171508733, -0.00450694, -0.0221413914, 0.0114059756, -0.0248494241, -0.00808541197, -0.0090074325, 0.00831752922, -0.0113479467, 0.0106258048, 0.00283215079, -0.0181825049, 0.00963285938, 0.0138883386, 0.0102776289, 0.00706022792, 0.0037042019, -0.035281796, -0.00127342017, -0.0253523439, -0.010483955, 0.00608662562, 0.0243078172, -0.0199491736, 0.000848678115, 0.0115155866, 0.0090074325, -0.0345338657, 0.0498278029, -0.00381058874, 0.00244045327, 0.00677008182, 0.0270029549, -0.00372676877, 0.0140946656, -0.0294014979, -1.94942077e-05, 0.0012685844, 0.0170348156, 0.0108321309, -0.00146443315, -0.00872373395, -0.00916217733, -0.0135272676, -0.00797580089, -0.00563528715, -0.00272576394, 0.00550633296, 0.0201426055, 0.00421356969, 0.0191883463, -0.00297077629, -0.0118186288, -0.00419422658, 0.00918796845, 0.00085029, 0.00865925662, -0.00337536936, -0.00715049589, 0.00388473738, -0.00343984622, -0.023173023, 0.00216159038, 0.00495505519, 0.00520973885, 0.00524520129, -0.035101261, -0.0222316589, -0.00755025307, -0.00111867546, -0.00286277733, -0.0260229036, -0.0118895527, 0.00925889239, 0.00143300067, 0.00428771833, 0.0163255688, -0.00932981726, 0.0193559863, -0.0037428881, 0.032006368, -0.00463589421, -0.0222058687, 0.00621880358, 0.000504129275, 0.0277250968, 0.0153713096, -0.00969088823, 0.00563851092, 0.00621558, -0.00212290417, -0.025184704, 0.00633808598, 0.0128244692, 0.00179407164, 0.0258810557, 0.0156679042, -0.0165189989, 0.00597056746, 0.00981984194, -0.00285471766, -0.0105484324, 0.0186596345, -0.00319805765, 0.00228893245, 0.021316085, -0.00796935335, 0.0154744722, 0.000684261846, -0.0183114596, 0.017086396, -0.00519039575, -0.0202199779, 0.00961351581, 0.0147136441, 0.00912349112, -0.010941742, -0.0133854188, -0.00257424288, 0.0114317667, 0.000933304138, 0.0166221634, -0.00417810772, 0.000551278063, 0.00371064944, -0.0117090177, -0.022979591, 0.00557081029, -0.00701509416, 0.00191657792, 0.0103678964, 0.00220833626, -0.0141204558, -0.0236630477, 0.0154744722, 0.0220253319, -0.0175119452, 0.000830140954, -0.0139141297, 0.00561594404, 0.0185564719, 0.00541928923, 0.00190045859, 0.00608662562, -0.0084787216, -0.0138754435, 0.0149070751, -0.00540317, -0.00128309173, -0.00998103432, -0.00418455526, 0.0168542787, -0.0138754435, -0.00997458678, -0.0175893176, 0.0133467326, -0.0192399267, -0.0084400354, 0.00168768468, 0.00618656492, -0.0133080464, 0.0138883386, -0.0225669388, 0.017112188, -0.00706667593, -0.0246430971, -0.0279830042, -0.00375255966, 0.0157194845, -0.000728186744, -0.0017602212, 0.0104710599, -0.00415876461, 0.0155389495, 0.0133854188, -0.0115736155, -0.00724721141, 0.0132822553, 0.00558048161, -0.00915573, -0.0137206987, -0.0210194923, -0.00181019085, -0.0230827555, -0.00919441599, -0.00317387888, -0.00648315903, -0.0191367641, 0.0198846962, -0.00181502663, 0.0262163356, 0.00210194918, 0.00673784316, -0.00381381274, 0.0120120589, -0.0178214349, -0.0074986713, -0.0147910165, -0.00887203123, 0.0128502594, -0.0219479594, 0.0180793423, 0.0189046469, -9.89822183e-06, 0.00865280908, 0.00679587247, 0.000645978609, -0.0130759291, -0.0104388213, 0.00585128507, -0.0112383356, -0.0267708376, -0.00954259094, -0.0114769, 0.00241466239, -0.00793066714, 0.013146854, 0.00385249895, 0.00231311121, 0.0245141443, 0.015448682, 0.00453917868, -0.0140043972, 0.00181180285, 0.000208945668, -0.0230311733, -0.0199104883, 0.0178730153, 0.00694416929, -0.00611886429, 0.0155260544, -0.0288341, -0.0378608741, -0.012134565, -0.0292209629, 0.0137593849, 0.00262904842, 0.0224379841, -0.00902032759, -0.00983918551, -0.00411040662, -0.00240982673, 0.00270803273, 0.00558370538, 0.00365584414, -0.000394719944, 0.0330379978, 0.0191625543, -0.0193559863, -0.000854319835, -0.00678297691, 0.0095232483, 0.0101164365, 0.00292725442, -0.00020421065, 0.00558370538, -0.00794356223, 0.0122119375, -0.0795387849, -0.0154228909, 0.0234309305, 0.0144686317, -0.00503565138, 0.0135014774, -0.00908480491, -0.0165834762, -0.0120249549, -0.0117025701, -0.0228506383, -0.00426837523, 0.0243851896, 0.00800159201, 0.00980694685, -0.00299011939, -0.00340438401, 0.0040136911, -0.00793711469, 0.00811765064, -0.0115220342, 0.00233729021, -0.00342372712, -0.00580937462, -0.00392342359, -0.010026169, -0.0127470968, 0.0090074325, -0.00984563306, -0.00418133149, 0.00167478924, 0.00098488573, 0.000340921979, 0.0112254405, -0.00954259094, -0.0378350839, 0.0078404, -0.0329864174, 0.00171508733, -0.0152294599, -0.00125085318, 0.0051130238, -0.00506144203, 0.00268063, 0.0111996494, 0.0249783769, -0.00505177025, 0.0105806701, -0.00838200562, 0.00791777205, -0.0106773861, 0.00819502305, -0.00723431585, 0.00353333796, -0.0208389554, 0.00411363039, 0.0157323796, 0.0152036687, 0.00627038535, 0.0251202267, -0.00954259094, -0.0266160928, 0.004874459, 0.0176022127, 0.0229151137, 0.0202844534, -0.00464556552, 0.0116703315, 0.0109095033, 0.000959900848, -0.0212000273, -0.0235985704, -0.0135530587, -0.0134756863, -0.00100422883, 0.0239338502, -0.014159142, -0.0084400354, 0.00463589421, 0.00879465882, 0.0155647397, 0.0171637684, -0.00328348973, 0.00262098876, 0.00171186356, 0.00615110295, 0.0217674244, 0.00584161328, 0.0139012346, -0.00876242, 0.0105935661, 0.00305298436, -0.018388832, 0.00170541578, 0.0117090177, 0.00483899657, -0.0200394411, 0.00526132062, 0.0111480681, 0.00579647953, -0.00687969243, 0.00822081324, -0.00235018553, 4.28671083e-05, 0.0146878529, -0.00996813923, 0.00507111335, -0.00466168486, 0.0024533486, 0.00939429458, 0.0321095288, -0.00662178453, -0.0127535444, -0.00772434101, 0.0059383288, 0.0214321446, 0.00328832539, -0.00185693672, -0.00863991398, 0.0336053967, -0.00426515145, -0.0276477244, 0.00416843593, 0.000962318736, -0.0052323062, -0.0232632905, 0.00232600654, -0.00878176279, -0.000670157489, 0.00458431244, 0.000841424451, 0.0167124309, -0.00925889239, -0.014326782, -0.0186338443, -0.0403625816, -0.00217448571, -0.00673139561, 0.00521296309, 0.00974246953, -0.0117090177, -0.00950390473, 0.0100068254, -0.0116896741, -0.0064541446, 0.00872373395, -0.00987142418, 0.0170477107, 0.00408783974, -0.0110900383, -0.0314389691, 0.010290524, 0.0322384834, -0.0153842047, -0.00529355928, -0.0333474874, 0.0127664395, -0.00483899657, -0.00222767936, -0.0248236321, -0.00512914266, 0.0027354355, -0.0107547585, 0.013050138, -0.00531290239, 0.00596411945, 0.00436831452, -0.00309167057, 0.005145262, -0.00903322361, 0.0153713096, 0.00292403041, 0.0227345787, -0.0330379978, -0.00493248785, -0.0182340872, -0.00692482619, -0.0121603562, -0.00494215963, 0.0215353072, -0.000937333913, -0.0116832266, -0.0173443053, 0.011857314, 0.035849195, -0.0107354149, 0.0114962431, 0.00606083497, -0.00996169169, -0.00776302721, 0.0178214349, 0.0224379841, -4.5612418e-05, 0.0055417954, -0.0187885892, 0.000631874311, -0.00100584072, 0.0174732581, -0.00989721436, 0.0104904026, -0.00510979956, -0.0285761915, 0.0181567147, 0.0130307954, 0.00242111017, -0.00639289152, -0.00486801099, 0.0210581776, -0.00990366191, -0.0230827555, -0.00379769341, -0.0121087749, -0.012315101, 0.0343017466, 0.0207486879, -0.0037396641, 0.00252104946, -0.0114704529, -0.000939751801, 0.00525487307, 0.0282151215, 0.0114962431, 0.00580937462, -0.00789198093, 0.0111158295, 0.0281635392, 0.00388151361, -0.00523553, -0.0438701287, -0.00704088481, -0.008820449, -0.0155002633, 0.0243594, -0.00466490863, 0.00421356969, 0.00395888602, 0.00983918551, 0.0156421121, -0.0128953941, 0.0236501526, 0.00657020323, 0.0311294794, 0.00510012824, -0.008543198, -0.00972957443, -0.00808541197, 0.00329960883, -0.00422324147, 0.0157839619, 0.00851740781, -0.00370742567, 0.00102760165, 0.0077565792, -5.18334382e-05, 0.00977470819, -0.0047680717, -0.0246430971, 0.0125988, -0.00355268107, 0.00433285208, 0.00520973885, -0.00343662244, -0.0205036756, 0.00791132357, -0.00118879415, -0.0165189989, -0.00281280768, -0.00750511931, -0.0110320095, 0.0225411486, 0.00366873946, 0.00612853607, 0.00133467326, -0.00068829162, 0.0017424901, -0.00471004238, -0.00809830707, 0.0199878607, -6.6290384e-05, -0.00718273409, -0.0162095092, -0.0231859181, -0.0177440625, 0.0269255824, 0.00398790045, 0.00841424428, 0.027028745, 0.00609629741, 0.00204553176, -0.0161063466, 0.00195526402, -0.0166866388, 0.0144686317, 0.0122570721, -0.00536448369, -0.0263839755, -0.000708843698, 0.00689903554, 0.00710536214, -0.0434316844, 0.0171508733, 0.013965711, -0.000573845, -0.0126181431, -0.0212129224, 0.002298604, -0.0120120589, -0.00057142711, -0.010109989, 0.00130968844, -0.0318516232, 0.0168413837, -0.00814344082, 0.00199395022, -0.00614787871, -0.000164617755, -0.0131984353, -0.00988431927, -0.000153032059, 0.00524842506, 0.00658954633, 0.00334313069, 0.0142107243, 0.00972312689, 0.00228087278, 0.00110819784, -0.0168671757, -0.00879465882, -0.00358814327, 0.00759538682, 0.00581582263, 0.0013056586, -0.0104194777, -0.00227281312, -0.00529678306, 0.00338504091, -0.00373644033, -0.0225024614, 0.0140043972, 0.0179245975, -0.00441989629, -0.00204553176, -0.0263066031, -0.026822418, 0.00457141688, 0.00936205592, -0.00443279138, 0.00662178453, 0.0328574628, 0.00202296488, -0.0199233834, -0.0092846835, -0.00540961744, 0.0242691301, 0.0200910233, -0.00274994271, -0.020955015, -0.00985852815, -0.00111706345, 0.0223864038, 0.0232632905, -0.0223477166, 0.00942008477, -0.014339678, 0.0224766713, 0.000785410055, 0.023353558, -0.00265806308, -0.0137206987, 0.0041007353, 0.0133725228, -0.00520329131, -0.0240885951, 0.0509883873, 0.0157194845, 0.0216771569, -0.0115478253, 0.014881284, 0.00354945706, -0.00307716336, 0.0252749715, -0.0408268161, -0.00753735751, -0.00755670061, 0.0125536658, 0.014326782, 0.00778881786, -0.00995524414, -0.0110835908, 6.94134869e-05, -0.018569367, 0.0189820193, -0.0331411622, -0.0124376072, -0.00380091718, -0.00553212408, -0.0199620686, 0.00540317, -0.0138754435, 0.00862701796, 0.00365584414, -0.0144428406, 0.010941742, 0.0145588992, 0.0092331022, -0.00112351112, -0.0226314161, 0.000828529068, -0.00081120088, -0.0197041612, 0.0266934652, 0.0140688745, 0.0119733727, 0.0107934447, 0.0244367719, 0.0158355441, 0.00408461597, 0.00833687186, -0.0238177925, 0.00586418, -0.0111480681, 0.0148554938, -0.0109610846, 0.0196525808, -0.00858833175, 0.0108708171, -0.0216642618, 0.00598023878, 0.0109159509, 0.0127277533, 0.000413861533, -0.00246785604, 0.0201555, -0.00740840379, 0.00134112092, 0.0140688745, -0.011896, 0.00803383067, -0.00440377695, -0.0179761779, 0.0250557493, -0.0250944365, -0.00709891412, 0.0225411486, -0.0111158295, -0.00633486221, -0.0280861668, 0.0157323796, 0.000797499495, 0.00887203123, 0.00817567948, 0.00541284168, 0.0110642482, -0.00687324489, 0.00117348088, -0.0215868894, 0.00550633296, -0.000876080827, 2.96694798e-05, -0.00521618687, -0.0100455116, -0.0202199779, 0.0182211921, 0.0141978282, -0.00254200445, 0.0106709385, 0.0300204773, -0.0104323737, -0.000712067529, -0.00356235239, 0.00749222375, 0.011580064, 0.00881400146, 0.0319805779, -0.00231955899, -0.00818212703, -0.0109030558, -0.0192915089, 0.015448682, 0.0120249549, 0.0150618199, -0.0221027043, 0.00188917515, -0.00659277, -0.00111222768, 0.0284472387, 0.00811765064, 0.0105355363, 0.000651217357, -0.0192528237, -0.0225540437, -0.0166737437, 0.00310134212, 0.00119282387, -0.00491959276, -0.0252233893, 0.010651595, -0.00555146718, -0.00460365554, 0.0284472387, -0.00317065488, 0.00303202937, 0.00428771833, 0.0221671816, -0.00644447282, 0.00331734, -0.0197815336, 0.00402336288, 0.0311810616, -0.0273898169, 0.0192399267, -0.0113672893, 0.0247978419, -0.0128567079, -0.0220253319, -0.00844648294, 0.0166479535, 0.0104194777, 0.000169352788, -0.00814344082, -0.00992300548, 0.0302783847, 0.00134353887, 0.00421356969, -0.00433607632, 0.00708601903, -0.0116251977, 0.0173572, -0.00331089227, 0.0098649757, 0.000464637153, 0.0279056318, -0.00985852815, 0.0237146281, 0.00061333715, 0.0124182645, -0.00713760033, -0.00496150274, -0.0125278747, -0.00341405557, 0.00292403041, 0.0231214408, 0.00891071744, 0.00793711469, 0.0146749578, 0.00469392352, 0.0156550072, -0.00103082554, 0.0161192417, 0.0122699672, -0.010483955, -0.00851096, -0.0432253592, 0.0147394352, 0.0302525926, -0.000141748591, 0.037138734, 0.0286535639, -0.00555146718, -0.0232246034, -0.00685390178, 0.0125278747, 0.00985208061, 0.00853675, -0.00204230798, 0.00019514357, 0.00109449658, -0.0333474874, -0.0263839755, 0.014520213, 0.00369453034, 0.0116638839, -0.00626716111, 0.00695706485, -0.00397178112, 0.00107998925, 0.00635098154, -0.0257263109, 0.0275961421, -0.0265129302, -0.00364939636, 0.00354945706, -0.00363005325, 0.00306588]
08 Aug, 2018
unordered_multimap clear() function in C++ STL 08 Aug, 2018 The unordered_multimap::clear() is a built-in function in C++ STL which clears the contents of the unordered_multimap container. The final size of the container after the call of the function is 0. Syntax: unordered_multimap_name.clear() Parameters: The function does not accept any parameter. Return Value: It returns nothing. Below programs illustrates the above function: Program 1: // C++ program to illustrate the // unordered_multimap::clear() #include <bits/stdc++.h> using namespace std; int main() { // declaration unordered_multimap<int, int> sample; // inserts key an delement sample.insert({ 10, 100 }); sample.insert({ 10, 100 }); sample.insert({ 20, 200 }); sample.insert({ 30, 300 }); sample.insert({ 15, 150 }); cout << "Key and Elements of multimap are:"; for (auto it = sample.begin(); it != sample.end(); it++) { cout << "\n{" << it->first << ", " << it->second << "}"; } sample.clear(); cout << "\nSize of container after function call: " << sample.size(); return 0; } Output: Key and Elements of multimap are: {15, 150} {30, 300} {20, 200} {10, 100} {10, 100} Size of container after function call: 0 Program 2: // C++ program to illustrate the // unordered_multimap::clear() #include <bits/stdc++.h> using namespace std; int main() { // declaration unordered_multimap<char, char> sample; // inserts element sample.insert({ 'a', 'b' }); sample.insert({ 'a', 'b' }); sample.insert({ 'b', 'c' }); sample.insert({ 'r', 'a' }); sample.insert({ 'c', 'b' }); cout << "Key and Elements of multimap are:"; for (auto it = sample.begin(); it != sample.end(); it++) { cout << "\n{" << it->first << ", " << it->second << "}"; } sample.clear(); cout << "\nSize of container after function call: " << sample.size(); return 0; } Output: Key and Elements of multimap are: {c, b} {r, a} {b, c} {a, b} {a, b} Size of container after function call: 0 Learn C++ Online – Master everything from basics to advanced concepts. Apply your knowledge with practical exercises and boost your skills. Take the Three 90 Challenge: finish 90% in 90 days for a 90% refund. Start now and level up your C++ programming!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum/Algorithm for Dynamic Time out timer Calculation/Difference between Round trip time (RTT) and Time to live (TTL)/Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms/Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm/Round Robin Scheduling Algorithm with Different Arrival Time/Selfish Round Robin CPU Scheduling/Find the order of execution of given N processes in Round Robin Scheduling/Calculate server loads using Round Robin Scheduling/set::lower_bound() Function in C++ STL/Implementation of lower_bound() and upper_bound() in List of Pairs in C++/Difference between std::set::lower_bound and std::lower_bound in C++/Difference between std::set vs std::vector in C++ STL/std::minmax() and std::minmax_element() in C++ STL/std::rotate vs std::rotate_copy in C++ STL/std::bitset::to_ullong and std::bitset::to_ulong in C++ STL/std::upper_bound and std::lower_bound for Vector in C++ STL/std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++/std::string::append vs std::string::push_back() vs Operator += in C++/Vector push_back() in C++ STL/vector :: cbegin() and vector :: cend() in C++ STL/unordered_multiset cend() function in C++ STL/unordered_multiset bucket() function in C++ STL/unordered_multiset emplace_hint() function in C++ STL/unordered_multiset end() function in C++ STL/unordered_multiset size() in C++ STL/unordered_multiset emplace() function in C++ STL/unordered_multiset find() function in C++STL/unordered_multiset erase() function in C++ STL/unordered_multiset clear() function in C++ STL/unordered_multiset swap() function in C++ STL/unordered_multiset bucket_size() function in C++ STL/unordered_multiset bucket_count() function in C++ STL/unordered_set bucket_count() function in C++ STL/unordered_set cbegin() function in C++ STL/array::cbegin() and array::cend() in C++ STL/array::rbegin() and array::rend() in C++ STL/multimap rbegin in C++ STL/vector rbegin() and rend() Functions in C++ STL/multiset rbegin() and rend() function in C++ STL/map rbegin() function in C++ STL/map upper_bound() function in C++ STL/Set upper_bound() in C++ STL/multimap upper_bound() function in C++ STL/multimap empty() function in C++ STL/multimap value_comp() function in C++ STL/multimap swap() function in C++ STL/multimap::swap() in C++ STL/multimap equal_range() in C++ STL/unordered_set equal_range in C++ STL/set vs unordered_set in C++ STL/unordered_set count() function in C++ STL/unordered_set bucket() function in C++ STL/unordered_set emplace() function in C++ STL/set::emplace() in C++ STL/multiset::emplace() in C++ STL/multiset find() function in C++ STL/multiset cbegin() and cend() function in C++ STL/multimap::cbegin() and multimap::cend() in C++ STL/multimap::begin() and multimap::end() in C++ STL/set::begin() and set::end() in C++ STL/unordered_multimap begin() and end() function in C++ STL/unordered_multimap empty() function in C++ STL/unordered_multimap find() function in C++ STL/unordered_multimap equal_range() function in C++ STL/unordered_multimap bucket_count() function in C++ STL/unordered_multimap count() function in C++ STL/unordered_multimap clear() function in C++ STL
https://www.geeksforgeeks.org/unordered_multimap-clear-function-in-c-stl/?ref=next_article
PHP
unordered_multimap clear() function in C++ STL
unordered_multiset clear() function in C++ STL, What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, jQWidgets jqxTreeMap width Property, Round Robin Scheduling Algorithm with Different Arrival Time, Difference between Flow and TypeScript, set::begin() and set::end() in C++ STL, unordered_multiset emplace() function in C++ STL, jQWidgets jqxTree destroy() Method, unordered_set bucket_count() function in C++ STL, jQWidgets jqxTree collapseAll() Method, Find the order of execution of given N processes in Round Robin Scheduling, jQWidgets jqxScrollView buttonsOffset Property, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Vector push_back() in C++ STL, jQWidgets jqxListBox enableHover Property, Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm, std::rotate vs std::rotate_copy in C++ STL, Selfish Round Robin CPU Scheduling, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxSlider buttonsPosition Property, std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++, unordered_multimap clear() function in C++ STL, std::upper_bound and std::lower_bound for Vector in C++ STL, Difference between Round trip time (RTT) and Time to live (TTL), jQWidgets jqxSlider rtl Property, Difference between std::set::lower_bound and std::lower_bound in C++, jQWidgets jqxTooltip opacity Property, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, unordered_multiset erase() function in C++ STL, multiset find() function in C++ STL, set vs unordered_set in C++ STL, jQWidgets jqxToolBar height Property, PHP, std::minmax() and std::minmax_element() in C++ STL, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, unordered_multimap count() function in C++ STL, unordered_set emplace() function in C++ STL, unordered_multimap empty() function in C++ STL, unordered_set bucket() function in C++ STL, map rbegin() function in C++ STL, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, map upper_bound() function in C++ STL, Node.js date-and-time Date.transform() Method, unordered_multiset size() in C++ STL, TypeScript Optional Parameters, jQWidgets jqxToolBar theme Property, Difference between std::set vs std::vector in C++ STL, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, Steps to Diagnose and Resolve a Slow Network, How to use Optional Chaining with Arrays and Functions in TypeScript ?, Calculate server loads using Round Robin Scheduling, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, jQWidgets jqxScrollView showButtons Property, set::emplace() in C++ STL, Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms, jQWidgets jqxScrollView disabled Property, multimap::cbegin() and multimap::cend() in C++ STL, jQWidgets jqxSplitter destroy() Method, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, set::lower_bound() Function in C++ STL, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, jQWidgets jqxTree collapseItem() Method, multimap upper_bound() function in C++ STL, std::string::append vs std::string::push_back() vs Operator += in C++, unordered_multiset swap() function in C++ STL, unordered_multiset cend() function in C++ STL, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), Set upper_bound() in C++ STL, jQWidgets jqxSortable opacity Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, multiset cbegin() and cend() function in C++ STL, multimap rbegin in C++ STL, vector :: cbegin() and vector :: cend() in C++ STL, multimap swap() function in C++ STL, jQWidgets jqxSlider height Property, jQWidgets jqxSwitchButton onLabel Property, unordered_multiset bucket_size() function in C++ STL, unordered_set cbegin() function in C++ STL, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, jQWidgets jqxToolBar tools Property, multimap empty() function in C++ STL, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTree width Property, multimap::swap() in C++ STL, multimap equal_range() in C++ STL, Implementation of lower_bound() and upper_bound() in List of Pairs in C++, jQWidgets jqxTree clear() Method, TLS Handshake?, multiset rbegin() and rend() function in C++ STL, Algorithm for Dynamic Time out timer Calculation, Adhoc TCP, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, jQWidgets jqxTabs position Property, Differences between Wireless Adhoc Network and Wireless Sensor Network, jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, unordered_multimap begin() and end() function in C++ STL, std::bitset::to_ullong and std::bitset::to_ulong in C++ STL, unordered_multiset emplace_hint() function in C++ STL, multimap::begin() and multimap::end() in C++ STL, unordered_multiset bucket_count() function in C++ STL, unordered_multiset find() function in C++STL, unordered_multimap bucket_count() function in C++ STL, unordered_multiset bucket() function in C++ STL, Impact of Three-way Handshake and Slow Start Algorithm, array::rbegin() and array::rend() in C++ STL, multimap value_comp() function in C++ STL, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, multiset::emplace() in C++ STL, unordered_set equal_range in C++ STL, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, unordered_multimap equal_range() function in C++ STL, unordered_set count() function in C++ STL, vector rbegin() and rend() Functions in C++ STL, array::cbegin() and array::cend() in C++ STL, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, unordered_multiset end() function in C++ STL, How to Sort an Array Having Optional Properties in TypeScript ?, unordered_multimap find() function in C++ STL
GeeksforGeeks
[-0.0359489955, 0.000384878425, -0.0159488209, 0.027427651, 0.0248888042, -0.0189198125, -0.0284945071, 0.0222959388, -0.0151790641, 0.0203377865, -0.0184471551, 0.0240785331, -0.00632010866, -0.0306282192, -0.0151250465, -0.0145173436, -0.0133627085, 0.00873066299, -0.0301960744, -0.0364351571, 0.0083592888, 0.0224579927, -0.00398045313, -0.00219448213, 0.00279712072, 0.00600612909, -0.00739371683, -8.17128093e-05, 0.025753092, 0.0142742628, -0.00305370637, -0.00497641042, 0.000254475541, -0.00716414, -0.0150440196, 0.0149224792, 0.0351117142, 0.00865638815, -0.0026502593, 0.00332548446, 0.00587108405, 0.0226200465, 0.026468832, 0.0186902359, -0.0245917048, 0.00337781454, -0.0161919016, -0.0357329212, -0.0188117772, 0.0334371552, 0.0463744737, 0.00344196102, 0.0342474282, -0.0108643752, 0.0072046537, 0.00809595082, 0.0187577587, 0.0024392514, -0.0112154922, -0.0288726334, -0.0180420205, -0.0331130475, 0.0366512276, -0.0124714114, -0.0104997531, -0.022579534, -0.0288186148, 0.0282514263, 0.0194329843, -0.0305201821, -0.0233627949, 0.0589336641, -0.0089534875, -0.0315465257, -0.0390550308, 0.0193384513, -0.0304391552, -0.0238894708, 0.0159218125, 0.0412157513, -0.0280083455, -0.0146118756, -0.0028443865, -0.0265228488, 0.0102229109, 0.0158407856, -0.00367997773, -0.024173066, 0.052559536, 0.0350036807, -0.035543859, -0.00823099632, 0.0370563641, 0.00619181572, -0.0219043083, -0.011472078, 0.0287916064, 0.0207969397, -0.0165025052, 0.0535858795, -0.0155031728, -0.0166915692, -0.0210940372, 0.0268469583, -0.00528026186, 0.00456114672, 0.0328969769, 0.0242000744, 0.00601963326, -0.001521789, 0.0303851385, -0.00341326394, -0.0284134801, 0.023200741, -0.00355843734, -0.00268233242, 0.000795077765, 0.0222554263, 0.0123836314, 0.000436786358, -0.0112087401, 0.0118839648, -0.00479072332, 0.00278699235, -0.072168082, 0.0310063455, 0.00454089, 0.00548620569, 0.0139906676, -0.00209826254, -0.0375965424, -0.0233357865, -0.0123093566, -0.0240515247, -0.0220663622, 0.00148211955, -0.000532584, 0.0288996417, -0.00433494616, -0.0417289212, -0.0469686724, 0.0113100233, 0.00402434263, 0.00660370337, -0.0114788301, -0.018339118, -0.0182040744, 0.0398923084, 0.00931810867, -0.00560437, -0.0319516622, -0.0187307503, 0.0342204161, 0.0154221458, 0.0303311199, -0.0187037401, 0.00961520802, -0.00403784728, -0.0139501542, -0.0473738052, 0.0406215526, -0.0131601412, 0.0162594244, -0.00740046892, -0.0381637327, 0.0438356251, 0.0136868162, 0.0107293297, -0.0283864718, 0.0555845462, 0.010675312, 0.0290346872, 0.00140615669, -0.00977051, 0.023281768, -0.0205133446, 0.0194599926, 0.0129440688, -0.000820398738, 0.02415956, 0.011823195, -0.0124579063, 0.0234303176, 0.0419990122, 0.0178124439, -0.00636737468, 0.00706960866, -0.00667122565, 0.0358949751, -0.0207699295, -0.00119177264, 0.0323567949, 0.0159218125, 0.0529376641, 0.0384608321, 0.0179204792, -0.0155571904, 0.0250103455, 0.00630322797, 0.0322217494, 0.00117235992, -0.0235923715, -0.025307443, 0.0217422545, 0.0160163436, 0.0262662638, -0.0180150103, -0.0293858051, 0.0516952462, 0.0237139128, -0.0146523891, 0.0261852369, -0.00752201, 0.0127752628, 0.0176638942, 0.0131668933, -0.0687649399, -0.00945990626, 0.0181365516, -0.0358679667, 0.0157462545, -0.0267524254, 0.00641126418, -0.0313304551, -0.0387849398, -0.0354088135, 0.00707636122, 0.0176503882, 0.0165430196, -0.00326302624, 0.0131803975, 0.0424581654, -0.0330050103, -0.00334236515, 0.0412157513, 0.00285957917, -0.0445918776, -0.0139906676, 0.0182986055, 0.00292710168, 0.0292507596, 0.0442407615, -0.029898975, -0.00690080225, 0.0100946184, 0.0384878404, 0.0114923343, -0.0243351199, 0.00316005433, 0.0116678933, 0.0404054821, 0.0246322192, 0.0153951366, -0.00544569176, -0.0261582285, 0.032978002, -0.0210940372, -0.0388929769, -0.0161783975, -0.0436465628, -0.0120122582, 0.0321407244, -0.0181905702, 0.00481773261, 0.0160838664, 0.00336599816, 0.0151655599, 0.0204728302, -0.0244836695, -0.04831912, 0.0223364532, 0.0118029378, -0.004409221, 0.00091661833, 0.00143991795, 0.010763091, -0.0268199481, 0.00612091739, -0.0328699686, -0.0481840782, 0.024605209, -0.00067438127, -0.00686028879, -0.00573941506, 0.0273871385, -0.00404122332, -0.00346728181, -0.0156382173, -0.043214418, -0.000708564534, -0.0231197141, -0.00945990626, -0.0169481542, 0.0075490186, 0.0370293558, 0.0363541283, -0.0016669624, -0.0232412536, -0.0723841488, 0.00563137885, -0.00275829528, -0.0266308859, 0.0168671273, -0.0327619314, -0.00954768527, -0.00496290578, 0.0123836314, -0.0164619926, 0.0271305516, -0.0425932109, -0.0213101096, -0.0464825071, -0.0204728302, 0.00769081619, -0.00112593814, -0.00244093942, 0.0386498943, 0.013585533, -0.0570970513, -0.0113437846, -0.0231602266, -0.000433410227, 0.00407836074, 0.039784275, 0.0234438218, -0.0270495247, -0.0192979388, 0.0267389212, -0.00876442436, -0.0743288, -0.0322757699, 0.0163539574, -0.00354155665, -0.00914930273, 0.0263878051, -0.0208239481, 0.0135787809, -0.00646190578, 0.00809595082, 0.00429780874, -0.0221744, -0.031222418, 0.0189063083, 0.0109454021, 0.022309443, 0.00282750581, -0.0268064439, -0.00985153671, 0.0164484885, 0.0508039519, 0.0010930209, -0.0168941375, 0.0209319834, 0.0131736454, 0.0245917048, -0.00606689928, -0.019487001, 0.0048244847, -0.000519079447, 0.0468066186, -0.0104389833, 0.0403784737, 0.0127144922, -0.0167996045, -0.0124444021, -0.0234438218, -0.0108508701, -0.0218502898, 0.0284945071, 0.00748149632, 0.0325998776, -0.0319246501, -0.0108238617, 0.0136868162, -0.0328159481, -0.0282784346, 0.0223499574, 0.0212695971, -0.0159218125, -0.0135787809, 0.0157192443, 0.0376505628, 0.0140852, -0.00014454042, 0.0104659917, 0.0092978524, -0.0285215154, 0.00592510169, -0.0068096472, -0.020013677, -0.0210940372, 0.0243891366, -0.00527013326, 0.0136327986, -0.000203200616, 0.0138083575, -0.0272385888, -0.0125929518, -0.0410536975, -0.0463744737, 0.0226065423, -0.00281231338, 0.0105132582, -0.0159893353, -0.0173938032, -0.00304357801, 0.00342676835, -0.00661720801, -0.0080081718, 0.0288996417, 0.0273871385, -0.00835253671, -0.00875767227, 0.0207159109, 0.00746123958, -0.00603313791, -0.0409726687, 0.0246187132, -0.0178259481, -0.0115868663, -0.00730593782, -0.0504258238, -0.00313642155, 0.00128630421, 0.0134707447, 0.0138286138, 0.00192101591, -0.00534778414, -0.00399733381, -0.00977726188, 0.0282514263, 0.0104727438, 0.0270630289, 0.0279543269, -0.00963546522, -0.0519923456, 0.00625596242, 0.00775833847, -0.0249023084, -0.00419652509, 0.0367862731, 0.0266713984, 0.0259016417, -0.0271845702, 0.00830527116, 0.0274141468, -0.0256990753, -0.0161378849, 0.00836604089, 0.026198741, -0.0185957048, 0.0396762379, -0.016759092, -0.0153816324, 0.0370563641, -0.0316815712, 0.0397572666, -0.0105470186, 0.0410266891, 0.0266173817, 0.00689405, 0.0214991737, -0.0221068766, -0.0153546231, -0.0224579927, -0.00257429644, 0.00851459056, 0.0351657346, -0.0121337986, -0.00922357757, -0.0119379833, -0.0464555, 0.0202162452, -0.00814996939, 0.029547859, 0.0251994077, -0.00520598702, -0.00328665902, -0.0289806686, -0.036678236, 0.0265768673, -0.00500341924, -0.0418639667, -0.010675312, -0.0129913343, -0.0154086407, 0.0089534875, 0.000163425619, 0.000635555829, -0.0125997039, 0.0016669624, -0.0193384513, -0.00348753855, -0.0360300206, 0.00134538638, 0.0229171459, -0.0318166167, -0.0012500108, -0.00980427116, -0.0206618942, 0.0407025814, -0.00471307244, -0.0352467597, 0.0564488359, -0.00567526836, -0.0589336641, 0.00923708174, 0.0368673019, -0.0225660298, 0.00444298238, 0.00684003206, 0.052316457, 0.0121135414, -0.015611209, 0.0114855822, -0.0235923715, 0.0326268859, 0.0082580056, -0.00916955899, 0.0171777308, 0.00958144665, 0.00547270104, 0.0119447354, 0.0268064439, 0.00184842921, 0.0184201468, 0.00583057059, -0.00775158638, 0.0195275154, -0.0572591051, 0.00104744325, -0.0102431672, -0.0233898032, -0.00821073912, -0.00642814487, -0.019500507, -0.000253420498, -0.0131128747, -0.0255640298, 0.00601625722, -0.00787312724, -0.00337275025, 0.014112209, 0.0206889026, -0.00740046892, 0.00878468063, 0.00822424423, -0.00134285435, -0.0152735962, 0.00758278, 0.0311143808, 0.00940588862, 0.0109926676, -0.0270630289, -0.0308713, 0.0210940372, -0.0149224792, -0.0409456603, -0.00377113326, -0.0125862, -0.00786637422, 0.00689405, 0.0238084439, 0.0214586593, 0.0156247132, -0.0273871385, 0.0121878162, 0.000679445453, -0.00862262677, 0.0112560056, 0.0055436, 8.30843601e-06, 0.0326809026, -0.00335418154, -0.0326809026, 0.0187172443, -0.00322926487, 0.0423771404, -0.0213101096, 0.00595548702, 0.00681977533, 0.00157833914, 0.0113707939, -0.000489538361, -0.0141527224, -0.0102836816, -0.0269279853, 0.0127685098, -0.0222959388, -0.00510132685, 0.00636737468, 0.00884545129, 0.00947341, -0.0020594371, 0.0257665962, -0.00730593782, 6.79445438e-05, -0.0281163808, -0.0128292805, -0.00159099954, 0.0224985071, 0.00970298704, 0.0030790274, 0.00958819874, 0.0173667949, -0.00676575722, 0.00178090669, 0.0159353167, 0.0217287503, -0.00721140625, -0.056880977, 0.0117016546, 0.0334911756, 0.0138691273, -0.00960170384, 0.0300610289, -0.00505068526, 0.0274006426, -0.0169076417, -0.0405675359, -0.0218367856, -0.0361650661, -0.00751525722, 0.0331940763, 0.0247402545, 0.00325796194, -0.0345445275, 0.00389267388, -0.0121405507, -0.01816356, 0.00365296891, -0.0315465257, 0.00522286771, -0.0364621654, 0.0186902359, 0.00271102949, -0.0069143069, 0.011114208, -0.0175018404, 0.0458072834, -0.00466243085, 0.00249158125, 0.0234168135, 0.0332210846, -0.016583534, -0.016043352, -0.0232547596, 0.0137205776, 0.00537816947, -0.0237139128, -0.0418639667, 0.00682652788, 0.000881169, 0.00605677068, -0.00233459147, -0.0245376863, -0.0143282805, 0.00945315417, -0.00597236771, 0.0146253798, -0.0228226148, -0.0323838033, 0.00790688768, -0.00940588862, 0.0154761635, -0.00274647889, -0.0272926055, -0.0251859035, -0.00361583149, 0.00896699168, 0.00188894279, 0.00154626591, 5.14068e-05, 0.00140531268, -0.00923708174, -0.0207159109, -0.00746123958, 0.0340043455, -0.0139501542, -0.0145173436, -0.014990001, -0.00549971, 0.019757092, -0.0266578943, 0.0126807308, -0.00819723494, 0.0101621402, 0.014814443, 0.0221068766, -0.0581774116, -0.00233121542, -0.0217692629, -0.00530727068, 0.0180690289, -0.0160973705, 0.00642476883, 0.00577655248, 0.00216409704, -0.00164670567, -0.00981777534, 0.0247267503, -0.00648216298, -0.0358949751, 0.0141662266, 0.00498316251, 0.0532077514, -0.00746123958, -0.0156382173, -0.0193249471, 0.00550646242, 0.0165970381, -0.00271778181, -0.0172452535, 0.00888596475, 0.00851459056, 0.00043931845, -0.017731417, -0.00283425814, 0.00948016346, -0.0739506707, -0.0076638069, 0.019054858, 0.00209319848, -0.000908178, 0.0212020744, -0.0123633752, -0.0043045613, -0.0291967411, -0.00526675722, -0.00207969383, -0.0173127763, 0.0198651273, 0.0201217141, -0.000634289754, -0.0395411924, 0.0177854337, 0.0110466853, -0.0256450567, -0.0186767317, -0.0132006546, 0.00737346, 0.0212020744, 0.00322926487, 0.0268739667, -0.00510470336, -0.00893323, -0.00894673541, 0.0131668933, -0.00437883614, 0.0135382675, 0.0207024068, 0.0175288487, 0.0137408348, -0.0184471551, -0.00271946983, -0.0123633752, 0.0197300836, -0.0164079741, -5.75524064e-05, -0.00107360817, 0.0178529564, -0.00989880227, -0.00165261386, 0.0143282805, -0.0188657939, -0.0154761635, -0.00118586444, 0.0243081097, 0.0163404513, -0.00541193085, 0.00662396, -0.00586770754, 0.0535318591, -0.00187712628, 0.0159083083, -0.0289806686, -0.0204053074, 0.00259624119, -0.00314148562, 0.00755577115, -0.0179880019, 0.0495345257, 0.00932486169, 0.0077245771, 0.00191595173, 0.0135652758, 0.00823774841, 0.0134707447, 0.0120325144, 0.0174343176, 0.0126739787, 0.000828417, 0.0242270827, 0.0168401189, 0.000881169, -0.0371914096, -0.00827151, -0.0535588712, -0.0164214782, -0.04180995, 0.00802167598, 0.00948691554, 0.0055841133, 0.0208509564, -0.025050858, -0.0348416232, 0.0403244533, 0.0233357865, 0.0311143808, 0.0376235545, -0.0133424513, 0.0280893724, 0.010317442, 0.00697507709, 0.021782767, -0.0144903343, -0.00290178065, 0.0108643752, -0.00396694848, 0.00190751138, 0.0237949397, 7.00018718e-05, 0.044888977, -0.0284945071, -0.0344635, 0.0325998776, 0.0351387225, 0.0221203808, 0.00583732268, -0.0293047782, -0.0025793605, 0.0220933706, -0.00089889369, 0.00562800281, -0.00471982453, -0.00531402323, 0.0177989379, -0.0304121468, -0.0132951858, 0.025401976, 0.00324445753, -0.0148279471, -0.00744773494, -0.00370698678, 0.029898975, -0.00130234077, -0.029277768, 0.0283054449, -0.00363608822, 0.0174073074, 0.025131885, 0.0274411552, -0.00294398237, 0.0122215776, -0.000327273243, 0.00783261377, -0.0402704366, -0.0174748302, 0.016056858, 0.0325728692, 0.0256450567, 0.016043352, 0.00268908474, 0.0248212814, 0.0126537215, 0.0270630289, -0.00589809287, -0.0507229231, 0.0251724, 0.0068535367, 0.00706285657, -0.0150035061, -0.00538829761, -0.000401759055, -0.00935862213, -0.0175963715, 0.00131837733, -0.00180960377, 0.0258746333, 0.00636062212, 0.00698858174, -0.0266308859, -0.0298179481, -0.0698993206, -0.0114923343, 0.0160163436, 0.0155842, -0.0146793975, -0.0139771635, -0.00388592156, -0.000846141716, -0.00132512965, -0.020904975, -0.00452063326, -0.0019800982, -0.0205808673, 0.0171777308, -0.0016424855, 0.0123633752, -0.0210400205, 0.00216072099, -0.0217017401, -0.00347065809, 0.0270090122, 0.0118569564, 0.0157057401, 0.0300070122, 0.0284134801, 0.00990555529, 0.0143147763, 0.00128630421, 0.0051688496, -0.000633445743, -0.0559086539, 0.00152600917, 0.0142472535, -0.025307443, 0.0241460558, 0.00164164149, 0.0231872369, 0.0260636955, 0.0296018757, 0.000864288362, 0.0125389332, -0.0264013093, -0.0217287503, -0.0203512907, 0.000734307512, -0.0177989379, 0.00130149676, -0.0210130103, 0.0115666091, 0.016056858, -0.00314486166, -0.0207429212, -0.0201487225, -0.0170561913, -0.0106010372, -0.0682247654, 0.00608378, -0.0100473519, -0.00912229344, 0.00257767248, -0.0105605237, -0.0470496975, 0.00575291924, -0.0582854487, -0.00301150489, -0.00952742901, -0.0216612276, -0.0337072462, 0.00419652509, 0.00149478, -0.0206618942, -0.0213101096, -0.025320949, -0.0212695971, 0.00028106253, -0.0185822, 0.00349766691, -0.00316005433, -0.00715738814, 0.036948327, -0.00588796474, 0.0237004068, -0.011910974, -0.0300610289, -0.00717764487, -0.0139906676, 0.0249833353, 0.0263878051, -0.0160838664, 0.0468066186, 0.0277382545, 0.00385216018, 0.0566108897, -0.0417829417, -0.0333291218, -0.00891297404, 0.0257801022, 0.0245106779, 0.0162459202, 0.00439234031, -0.00924383383, -0.00719114952, 0.0256315526, -0.000234429783, -0.0276572276, -0.0139906676, 0.0177044068, -0.0287645981, 0.00535791274, 0.00860237051, -0.00903451443, 0.0291427244, 0.0533157885, 0.0477789417, -0.0226470567, -0.000122806596, -0.0297639314, 0.00076638069, -0.00275660725, -0.0332210846, 0.0173667949, 0.00982452836, -0.0200541914, -0.0174478218, 0.0346255526, -0.00492239231, 0.0168266147, 0.0146523891, -0.0468606353, 0.000848251744, -0.00646190578, 0.00660707941, 0.000745279889, -0.0172452535, -0.0316275507, 0.0508039519, 0.00655306131, -0.0317355879, -0.00104153506, -0.0353007764, -0.000730931351, 0.0169211458, 0.0136260465, 0.029898975, 0.00741397357, 0.012343118, 0.0253479574, 0.00753551442, -0.0174208116, 0.00535791274, 0.0234708302, -0.00266714, -0.00838629808, -0.0175153445, -0.0185686946, 0.0114045553, -0.00240717805, -0.00566176418, 0.0133086909, 0.00234134379, 0.0280353539, 0.00349091482, -0.00256585609, 0.00222655549, -0.0224174801, 0.00173364091, 0.0222014077, -0.00680627069, -0.00200373097, 0.00459828414, 0.0107225776, 0.0228631292, -0.00815672148, 0.0126537215, -0.00433157, 0.0377315879, 0.0058035613, -0.00465567829, -0.006968325, -0.00699533382, -0.00391293038, 0.020459326, 0.0112627577, 0.00590822147, 0.0116273798, 0.0395952091, 0.00459828414, 0.00290684495, -0.019581534, -0.00688392203, -0.0124511542, 0.0102094067, -0.0114450688, 0.0242675971, -0.00441597356, 0.013234416, -0.0199866686, -0.00577655248, -0.0104457354, 0.0176233798, 0.0377315879, 0.0135585237, -0.0357599296, 0.0236869026, -0.0102499202, -0.0166375507, -0.0113910502, 0.00449700048, 0.00825125258, 0.0228361189, 0.0306552276, 0.012174312, -0.00598249584, 0.0396222211, 0.0599059872, -0.00116645172, -0.00431468943, 0.00334574119, 0.0127144922, -0.00728568109, -0.00550983846, -0.0160703622, 0.0340853743, 0.0099730771, 0.0156652275, 0.00622220105, 0.018339118, 0.0107158255, -0.00874416716, -0.0157327484, 0.033518184, -0.0293047782, -0.00878468063, -0.00417289231, -0.0348146148, 0.0123363659, 0.0221744, 0.000457887159, -0.000996801304, -0.00613104552, 0.0226875693, -0.0174073074, -0.0400813743, 0.00591834961, -0.0044699912, -0.00839305, 0.0343284532, -0.0244701635, 0.0125119248, 0.0279273186, 0.0173667949, 0.0102836816, -0.00840655528, 0.0180285145, 0.000441428536, 0.0218097772, -0.0096287122, -0.00425391924, -0.0129778301, -0.0126267131, 0.0145173436, -0.0128427846, 0.0255235154, -0.00196321751, -0.0131466361, -0.0146523891, 0.0298179481, -0.0259151459, 0.0201352183, -0.00216916134, 0.0106212934, -0.0378936417, -0.0277922731, -0.0132141588, -0.00672524376, -0.00993256364, 0.0257260837, -0.031222418, 0.0128630418, 0.0159758311, -0.00826475769, -0.0235653631, -0.00123903842, -0.00219954643, 0.00205774908, -0.00390955433, 0.0207969397, -0.00541193085, -0.0227145795, 0.0160973705, -0.00742072612, -0.0252264161, -0.0200812, -0.0137340827, -0.00338287861, 0.0314925089, -0.0166780651, 0.00510132685, -0.00805543736, -0.0126402173, 0.016043352, -0.00404797541, -0.0196220465, 0.012262091, -0.0174073074, -0.0220663622, -0.0213776324, 0.0265363529, -0.015611209, -0.00936537515, 0.0109791635, 0.023902975, 0.0044699912, 0.0106212934, -0.0138151096, -0.00442610169, 0.00778534776, 0.00360907917, 0.0071438835, -0.0460773744, -0.00940588862, -0.00660032732, 0.0099730771, 0.0188252814, 0.0382987782, 0.0314654969, -0.00767055945, -0.0243486241, 0.00773132965, -0.00738696475, -0.000766802696, 0.0134437354, -0.000662142818, -0.0217692629, -0.0209724978, 0.0199191459, 0.0207564253, 0.00566176418, 0.0147739295, -0.000965572137, 0.00438221218, 0.000668051, -0.0117151588, -0.000380658254, -0.0267389212, 0.00524650048, -0.0240110122, -0.0170696955, 0.0158407856, 0.015611209, -0.0108171087, 0.0256720651, -0.0173532907, 0.0272655971, -0.0110804467, -0.000622895313, -0.0151115423, -0.0230386872, -0.00495952973, 0.00622220105, 0.00042961209, 0.00583057059, 0.0231062099, 0.00429780874, -0.019311443, -0.0150305144, -0.0236733984, -0.0270900391, -0.017461326, -0.00300812861, 0.00785287, 0.0141662266, -0.00483798934, -0.0592577718, -0.0142202443, 0.00637075072, 0.0100203436, 0.0175153445, -0.0153141096, -0.0144498209, -0.00477046659, -0.0342204161, -0.0442947783, -0.00711687468, 0.00107360817, -0.0133019378, -0.000913242227, -0.0052397484, 0.0251994077, 0.0145578571, 0.0214991737, 0.00674550049, 0.00705610448, 0.0119784968, -0.0233627949, -0.000395006791, -0.00201554759, -0.00421002973, -0.00337443827, 0.00172773271, -0.0137070734, -0.01207978, -0.0113302805, 0.021350624, -0.00504055666, -0.00730593782, -0.0014002485, -0.0164079741, 0.00478397124, 0.0338152833, 0.013754339, -0.0126739787, -0.0164214782, 0.0142067401, -0.00891972613, 0.00836604089, -0.0125929518, -0.0162999388, 0.000471391657, -0.0216207132, -0.00879143365, 0.0228766333, 0.0116611412, 0.0063234847, 0.0214856695, 0.00342339231, 0.0154221458, 0.0117421681, 0.0167185776, 0.00279543269, 0.0144768301, 0.0204053074, 0.00183830084, 0.0252264161, 0.0195275154, 0.033599209, -0.00607027533, -0.00670161098, -0.00501354784, 0.0200271811, 0.00925058685, -0.0118029378, -0.00826475769, 0.000229787605, -0.023457326, -0.0101351319, -0.00128124, -0.00564488349, -0.0205538571, 0.0136868162, 0.0156382173, -0.013842118, -0.0209454875, -0.0206753984, 0.00798791554, 0.00139265216, -0.0167861, 0.0136463027, 0.0164754968, -0.000183998898, -0.00979751907, -0.000683243561, -0.00119177264, 0.00902776234, -0.0110466853, 0.00618506363, -0.00756252324, -0.00846732501, 0.0167996045, -0.00623908173, 0.0203647949, -0.0212020744, -0.0251859035, -0.0213236138, -0.0131668933, 0.0114450688, -0.00619856827, 0.0257665962, -0.0366242193, 0.00414250698, -0.0290076789, -0.00120696519, -0.0231737327, -0.0237679295, 0.00426404784, 0.000396061834, 0.00931135658, 0.0250913724, -0.011026429, 0.00321407244, 0.00488187885, -0.00900750514, 0.0295208488, -0.00787987933, -0.0210670289, 0.0202432536, -0.00174545741, -0.00112509413, -0.0170832, -0.0284945071, 0.017906975, 0.0132479202, 0.0285485256, -0.0119987531, -0.00634036539, 0.00252703065, -0.0108373659, 0.0116746454, 0.021350624, 0.0299259853, 0.00193620846, -0.0380556956, 0.0146929026, -0.018352624, 0.00399733381, -0.0167185776, 0.0124038886, 0.00492239231, 0.00787987933, -0.00289334031, 0.00628634728, 0.00419652509, -0.00664084079, -0.0199461542, -0.0259826686, -0.0298179481, -0.0219043083, 0.0214856695, 0.0178259481, -0.00721815834, -0.0145713622, -0.031141391, -0.00062838156, 0.00419652509, 0.0182445869, -0.0172317494, -0.0151115423, 0.0254965071, 0.00274479087, -0.0157462545, -0.0131331319, 0.012174312, -0.0158542898, 0.0143958032, 0.0129373167, 0.00737346, 0.0110872, 0.00333561283, -0.0061546783, 0.00876442436, -0.0157732628, 0.014112209, 0.00597236771, 0.00426742388, 0.0126334652, 0.00226031663, -0.0125186769, 0.0146253798, 0.0153546231, 0.030952327, -0.00241730642, 0.0342744365, 0.0003367686, -0.00247638882, -0.0410536975, -0.00113691064, -0.00881169, -0.0336262211, -0.00858211331, -0.0178664606, 0.0118907178, 0.0427822731, 0.00823774841, 0.0225120112, -0.0223364532, -0.00744098285, 0.0185416862, -0.0115801133, 0.0037745093, -0.0226065423, 0.0099933343, 0.00255572773, 0.0147874337, 0.00468943967, 0.000642308034, 0.0175558571, -0.0297909398, 0.0182580911, 0.0603921488, -0.00587108405, -0.00249833358, 0.00367997773, 0.00162222877, -0.0106415506, -0.0102634244, -0.00671173958, -0.00996632501, 0.0312764347, 0.00185518153, 0.0161108747, -0.00522624375, 0.0297099128, -0.0111277131, -0.00538154552, 0.0361110494, 0.0151790641, 0.0219448227, 0.020904975, 0.000131879933, -0.00636062212, -0.00105419545, 0.00972999632, -0.0194599926, -0.0119514875, 0.0100676091, 0.0104794968, 0.0132141588, 0.0165565237, -0.00453751395, 0.00705610448, 0.0281433892, -0.0117151588, 0.0549903475, -0.0299529936, 0.0194059741, 0.031573534, -0.0173397847, -0.0174343176, 0.0166240465, 0.0304661654, -0.00963546522, 0.0117016546, -0.00138421182, -0.0144228125, 0.00516547356, -0.0422420949, -0.0338693, -0.020202741, 0.00747474376, -0.0369753353, 0.00526675722, 0.0127144922, 0.00572928647, -0.00966247357, -0.0114383167, 0.00261312188, 0.00634374144, 0.0186767317, 0.0165970381, 0.0163809657, 0.0108576231, 0.0152465869, 0.0106347986, 0.0134504875, 0.00607027533, -0.00278868037, 0.0115125915, 0.00809595082, 0.00126520335, -0.00414250698, 0.0151385507, 0.00271609379, 0.00490551163, 0.00564150745, 0.0076638069, -0.0150305144, 7.976099e-05, 0.0234033093, -0.0224850029, 0.0087239109, -0.0194059741, 0.0198921375, 0.004939273, 0.0166375507, 0.0255235154, -0.00657331804, 0.0058643315, 0.00283763418, 0.00487512676, -0.00108795671, 0.0107698431, 0.00449024839, -0.0226065423, -0.00920332, -0.00891972613, 0.0103106899, -0.0174478218, -0.00408173678, 0.0259286519, 0.0239164792, 0.013491001, 0.000852471916, 0.0104794968, -0.0177989379, 0.00483798934, 0.0194734968, 0.0148954699, 0.0316815712, -0.0181095414, 0.000160049487, -0.0345715359, 0.00713037886, 0.00129052438, -0.0018298605, -0.011553105, 0.000610656862, 0.0255910382, 0.00914255064, 0.00708986539, 0.00794064905, 0.0120392665, 0.0140716946, 0.0017927232, -0.0146523891, -0.00744773494, -0.0148954699, 0.00279374467, 0.0214451551, 0.014814443, -0.016489001, 0.00152263301, 0.00308409147, -0.00397370104, -0.0120257623, -0.00326471427, -0.025050858, 0.00858211331, 0.000681977544, 0.0238759667, -0.00764355, -0.0102431672, -0.0198516231, -0.00902776234, 0.00814996939, 0.0133289471, -0.00163742132, 0.0118029378, 0.0236463901, -0.0066138315, 0.0331940763, 0.000613610959, -0.00784611795, 0.0215396862, -0.0050203, -0.00252703065, 0.00748149632, -0.00752201, 0.00165008183, -0.024429651, -0.00251183799, 0.00361920753, 0.0164214782, -0.00403109519, -0.00206112512, -0.00735320337, 0.0137340827, 0.00100524165, 0.0214586593, -0.00287308358, -0.0106212934, 0.00966922566, 0.00941939279, 0.01093865, 0.00570902973, 0.00199191459, 0.00213202392, 0.00817022566, -0.00592172565, 0.01207978, 0.000689573819, 0.00496628182, 0.00397032453, 0.00709661795, -0.00925058685, 0.00437883614, -0.00892647821, -0.00850783847, 0.0108373659, -0.00134454237, 0.0062694666, 0.00769081619, 0.0223904699, 0.00716414, 0.0014129089, 0.0139501542, 6.56234552e-05, 0.00833903253, 0.00518573029, 0.0152465869, 0.0117556723, -0.00467255898, -0.0121405507, -0.0121337986, -0.00493589696, 0.0018298605, 0.00439571682, 0.0106010372, 0.0122891, -0.0204323176, -0.0314654969, 0.0246997401, 0.00290178065, -0.00154964207, 0.0168401189, 0.000138210176, 0.00970974, 0.00360570312, 0.0124038886, -0.0215261821, -0.0185957048, 0.00256923214, -0.00912229344, -0.0134504875, 0.0227956064, -0.0125389332, -0.0012744877, 0.00669485889, -0.00965572149, 0.0077921, -0.0125591904, 0.00559086539, -0.00602301, -0.0319246501, -0.00217591343, -0.0225930382, -0.0172317494, 0.004189773, 0.00994606875, 0.00713713141, -0.0082580056, -0.0179474875, -0.00830527116, -0.0101081226, -0.0282784346, -0.00172182452, 0.0100811133, -0.0134842489, -0.00621207245, 0.00448687188, -0.0042437911, -0.00522624375, 0.0143958032, -0.0290887058, -0.00654630922, -0.00381502276, -0.0110466853, -0.0306282192, -0.00280049699, -0.00827826187, 0.0201892368, 0.0227956064, -0.0199191459, -0.0131871495, 0.010411974, 0.00580693735, 0.00726542389, 0.00314823794, -0.00520261098, -0.00857536122, 0.00292710168, -0.00428430457, -0.0103376992, -0.0129845822, 0.0204728302, -0.0062694666, 0.0112762619, -0.00365634495, -0.0207834337, 0.00248145289, -0.0241055433, 0.0261582285, -0.0019750339, -0.0319516622, 0.010844118, -0.00215396867, -0.0119312312, 0.00548958173, -0.00810945593, 0.0150710288, -0.0137138255, 0.0182445869, 0.0222149119, 0.00594535889, 0.0160298478, 0.0108711272, 0.0117691765, -0.0255100112, 0.00529714255, 0.0186767317, 0.00486499816, 0.0173667949, 0.0017994754, 0.00966247357, -0.00384878414, 0.00285789114, 0.00287308358, 0.00239536166, 0.00570227765, 0.00788663141, -0.0158677939, -0.0196625609, -0.000277897401, 0.00120105699, -0.0193924699, -0.0130791143, -0.000780729228, 0.0105065051, 0.00873741508, 0.0123566231, -0.0211345516, 0.0022096748, 0.00508444663, 0.000843187561, -0.00266376371, 0.0197841, 0.00354155665, -0.000639775943, -0.016489001, -0.0255235154, 0.00457802741, 0.0155977039, 0.0248482898, -0.00655306131, -0.00582044199, 0.000539758243, 0.0204458218, -0.00206956547, -0.0298719667, 0.00264857127, -0.0123093566, 0.00547945313, 0.00143907394, 0.0290616956, 0.00917631201, 0.00174545741, -0.0173262805, -0.00727892853, -1.16186229e-05, -0.0118569564, -0.00189400697, -0.0208239481, -0.0375965424, 0.00804193318, -0.00945315417, -0.00192439207, 0.0118366992, 0.00313135725, -0.00306552276, -5.13672376e-06, 0.000165641206, -0.0100406, -0.0184201468, 0.00118080026, 0.0150170103, 0.00998658221, -0.0143012712, -0.0174343176, 0.00203074, 0.000375383068, -0.0113437846, 0.00180285156, 0.00349091482, 0.00841330737, 0.0439166538, 0.0047096964, -0.0132951858, -0.00387916924, -0.0266443901, -0.00631673262, 0.0201082099, -0.0102836816, 0.0361920744, 0.0137948524, -0.00220798678, -0.0158948041, -0.00856860913, -0.00570902973, -0.0281163808, -0.00350441923, 0.00491564, -0.0213101096, 0.00608040392, -0.0214046407, -0.00154288975, 0.00785287, 0.00907502789, 0.0315195173, -0.00481098, -0.0286295526, 0.0092911, -0.0257801022, -0.00973674841, 0.0100608571, 0.0370293558, 0.00279374467, 0.0100068385, -0.0198921375, 0.0138083575, -0.0121135414, -9.96484814e-05, -0.00291697332, 0.00670161098, 0.018352624, 0.00408511283, -0.000681555539, 0.0284945071, -0.00467593502, 0.013761091, 0.00846057292, -0.0253344532, -0.00559424143, 0.0182445869, 0.00140109251, 0.00717089279, 0.0164754968, -0.0213641282, 0.00124916679, -0.0237949397, 0.0107495869, 0.033788275, -0.0136463027, -0.0101081226, -0.00986504182, 0.00514184078, 0.00771782501, 0.00159099954, 0.0120257623, 0.0199056417, -0.000406401232, -0.00320563209, 0.0095139239, -0.0148414522, 0.01093865, -0.00491901627, -0.0286025424, 0.0119177261, 0.000847407733, 0.0147064067, 0.00139602832, 0.00119430467, -0.00568202091, -0.00297605549, -0.00867664535, 0.00596899167, -0.00206956547, -0.0281974077, -0.00543556362, -0.00257092039, -0.00594198238, 0.0168806314, 0.030169066, 0.00383527973, -0.0243351199, -0.0232142452, -0.00235316018, 0.00669485889, 0.0192034077, -0.0243351199, 0.0143687939, 0.0331400558, 0.00214890437, 0.00194127276, -0.0011225621, -0.018433651, -0.00389605, 0.000645684195, -0.0216747317, 0.00293554203, 0.0389199853, 0.0121945683, 0.0042944327, 0.00927084312, -0.0101148747, -0.00147705537, -0.0212155785, 0.0115328478, -0.0150710288, 0.0117489202, -0.0018653099, -0.0111209601, 0.00927759521, 0.0092978524, -0.0225660298, -0.00664759288, 0.00202736398, -0.0289536603, 0.0134977531, 0.0263067763, 0.00328665902, 0.0323297866, -0.0198651273, 0.0044193496, -0.00988529809, -0.0162594244, 0.0201757308, 0.0121945683, 0.00441597356, -0.000489538361, -0.0126739787, -0.00441597356, 0.017636884, 0.0213236138, -0.00138505583, -0.00750175305, -0.00887246057, 0.0266578943, 0.0291697327, -0.00359557476, 0.00910203718, 0.0227280837, 0.0107360817, 0.0156652275, -0.0217692629, 0.00817022566, 0.0070426, -0.0221744, -0.0106077893, 0.0102634244, 0.00314317364, 0.00735320337, 0.0190278478, -0.00206281315, 0.00635049399, 0.012086533, 0.00133357, 0.0295208488, 0.0109859155, 0.0157732628, -0.0168266147, -0.00662058406, 0.0145983705, 0.00256416807, -0.0015943757, 0.0108036045, -0.0185686946, 0.0302771013, 0.00478059519, -0.0197435878, 0.0360030122, -0.0274816696, -0.0209184792, 0.0249968395, -0.00320056779, -0.0140581904, -0.00232277508, 0.018339118, -0.0173667949, -0.00326302624, 0.0099730771, -0.00211514323, 0.00293385377, 0.0164079741, 0.0127482535, -0.0126604745, -0.0181770641, 0.0153411189, -0.00346390577, 0.00195477717, 0.00727217644, -0.0143958032, -0.0117016546, -0.0240110122, -0.00819048285, -0.00125676312, 0.0160838664, -0.00804193318, 0.0328429565, 0.0015276972, -0.0191088747, -0.023200741, 0.0198516231, 0.0144093074, 0.000541024259, -0.00368673, -0.00899400096, 0.00114197482, -0.00165852206, 0.000989205088, 0.0154086407, 0.00616480689, 0.0289266519, -0.00306214672, 0.0221744, -0.00047729988, -0.029547859, -0.00378801394, -0.0446999148, -0.0058035613, -0.0132884337, -0.0150305144, 0.00459828414, -0.00981777534, 0.0046489262, -0.017636884, 0.000488272286, -0.00783936586, 0.00812296, -0.00349766691, 0.0129103074, -0.00621207245, -0.00106347981, 0.000472235697, -0.00769081619, -0.00121456152, -0.00776509102, 0.0153141096, 0.000809004297, 0.0205133446, 0.0116003705, 0.0011529472, 0.0141797308, -0.0111682266, 0.0113167763, 0.00227550929, 0.0284404885, 0.0170696955, -0.00873741508, -0.00544569176, 0.00430118525, 0.0180555247, 0.00775158638, -0.0232412536, -0.0138016045, -0.031843625, 0.00963546522, 0.00948691554, -0.0104254782, 0.0137340827, -0.00985153671, -0.0059284782, -0.012174312, -0.00349091482, 0.0145038394, 0.0160028394, 0.00345546543, 0.0125119248, 0.0115868663, 0.0122148255, -0.00523299584, 0.00305201835, -0.0092911, -0.0143282805, -0.00466918293, 0.00210163882, 0.0307632647, 0.0192439202, -0.00407160865, 0.0165700279, 0.0197030734, -0.0116813974, 0.00803518109, -0.0151925692, 0.017461326, 0.011201988, 0.00529376604, 0.00266376371, -0.0125591904, -0.00265194732, -0.00351117156, 0.0151520558, 0.0158948041, -0.00717089279, 0.00244600349, -0.00555372797, -0.0105740279, -0.00116138754, -0.0111344652, 0.00262156222, -0.0135720279, 0.0340583622, -0.00023379676, 0.0203782991, -0.00185686955, -0.00764355, -0.00973674841, -0.00867664535, -0.000205627206, 0.0286295526, 0.0124106407, -0.00868339743, 0.0140311811, -0.00528701395, -0.0245646965, 0.0142607577, -0.00751525722, 0.0133356992, -0.0164484885, 0.0056989016, -0.0142337494, -0.000571409415, -0.0174073074, -0.000304273388, 0.000305750436, 0.00926409103, -0.00256754411, 0.00717089279, -0.00518573029, -0.033788275, 0.00593860634, -0.00960170384, 0.0207699295, 0.00244093942, 0.00769756828, -0.00827151, -0.00882519409, 0.000647794281, 0.00576304784, -0.0295748673, 0.00983803254, -0.00657331804, 0.00295073446, 0.0207024068, 0.0257665962, 0.00161632057, -0.0130723612, -0.00921682548, 0.00617831154, 0.0182986055, 0.0124646584, -0.0134504875, -0.0028494508, 0.0249833353, -0.00868339743, 0.00488863094, -0.0240650289, 0.0142202443, 0.00653618062, 0.010054105, -0.0116071226, 0.02293065, 0.0160703622, -0.02415956, -0.0200271811, 0.014112209, 0.00891972613, -0.0129305646, -0.000912398158, -0.0199461542, 0.0284945071, -0.00979751907, -0.00680627069, 0.0107833482, 0.0415938795, -0.00763004553, 0.00337612652, 0.00447336771, 0.0279273186, 0.00863613188, -0.00963546522, -0.0395411924, -0.00343352067, -0.0302771013, -0.0143958032, -0.0104997531, 0.00652267644, -0.00612429343, 0.0114248116, -0.0132816816, 0.00419652509, 0.0118366992, -0.0071438835, 0.0120122582, 0.0238084439, 0.00221305084, -0.00279880874, 0.00916955899, -0.0218097772, -0.0026502593, 0.0154491542, 0.0031094125, -0.0267929398, -0.00270596542, -0.000874416728, 0.00684678461, -0.0186767317, 0.0518573038, -0.0101283789, 0.00159015553, 0.00296761515, 0.0243081097, 0.0106280465, 0.0197841, -0.0258071106, -1.92808475e-05, 0.000438052404, 0.0225390196, 0.0129575729, -0.0120730279, -0.0150170103, -0.000615299039, -0.0079136407, -0.0137881, -0.00120527716, -0.00215734472, 0.0207834337, 0.0113640418, 0.0099730771, 0.0101486361, -0.00030364038, -0.000269457087, -0.000857114093, -0.00465567829, 0.00926409103, 0.017191235, 0.012174312, -0.016056858, 0.00503718061, 0.0118772127, -0.0100068385, -0.000165219186, -0.000790013582, -0.00119008461, 0.0105402665, -0.0257665962, -0.0168266147, 0.00388254551, -0.0119784968, 0.00486162212, -0.0197976045, 0.010405222, 0.00538492156, -0.00643152092, 0.0297639314, 0.0198651273, 0.00472320104, 0.0198921375, -3.54229524e-05, 0.0350847058, 0.00813646428, -0.00767731154, 0.00694131618, -0.00249833358, 0.0337342545, 0.024173066, -0.0145443529, -0.00553684728, 0.0125659425, 0.0113032712, -0.0180015061, 0.011640884, 0.00506756594, -0.0015876235, 0.0271845702, 0.0104254782, -0.010493001, 0.0109116407, 0.0105132582, 0.00464555, -0.00889946893, -0.00141712907, 0.00121456152, -0.0102431672, 0.0136192944, -0.00315667829, 0.0174208116, 0.00502367597, -0.014287767, 0.0063943835, -0.0145443529, -0.0152600911, 0.0118029378, 0.00946665835, 0.0194464885, -0.0137138255, -0.00455777068, -0.000335924589, -0.00216409704, 0.0152600911, 0.0148549564, 0.00625933846, -0.00582381804, 0.00873066299, -0.00809595082, -0.0201082099, -0.00160534808, -0.0143147763, 0.00229914207, 0.0207159109, 0.00433832267, -0.0262527596, -0.0141257131, -0.00944640208, 0.0251724, -0.0103376992, -0.0108508701, -0.0016669624, -0.00593523029, 0.0120662758, 0.0145983705, 0.0174343176, 0.00893998239, 0.00716414, -0.0130453529, 0.0110061718, -0.0138218617, 0.00212358357, 0.00698182965, -0.00992581155, 0.00820398703, -0.000686619722, -0.0214181468, 0.00283594616, 0.00531739928, -0.0224579927, -0.0241190474, 0.00497641042, -4.10146604e-05, -0.00188050244, 0.0265363529, -0.0206618942, 0.013139884, -0.0108846314, -0.0125591904, -0.0116746454, 0.00910878927, 0.0117894337, 2.88817064e-05, -0.00748149632, -0.00114366284, -0.00211683125, 0.00955443736, 0.0386498943, -0.00398382917, -0.00796765834, 0.0203242805, 0.0249428228, -0.0148549564, -0.0124849156, -0.0338693, 0.00443285424, -0.017110208, -0.0232277494, 0.0115463529, -0.00120443315, -0.0199191459, 0.0151790641, -0.00387579319, 0.0334641635, -0.00927759521, 0.00916280691, -0.0106280465, 0.00879143365, -0.0294668321, -0.00920332, -0.0192169119, -0.0121202935, 0.0040648561, -0.0208644606, 0.00272284588, -0.00335586979, -0.0106415506, 0.00344702508, 0.00342001603, 0.00798116252, -0.0310603641, -0.0182175785, 0.00732619455, -0.0157732628, -0.0314654969, -0.00965572149, -0.00725191971, 0.0100811133, 0.00505743735, 0.00569214905, -0.015530182, -0.00462866947, 0.0208104439, 0.0136665599, -0.00304864207, -0.0163674615, 0.0192844346, -0.0092843473, -0.0140311811, -0.0179609936, 0.00979751907, 0.00777184311, -0.00794064905, 0.0086091226, -0.0280353539, -0.0195680279, -0.0221879035, -0.0261312183, 0.00641464, 0.00272622216, 0.0327079147, -0.00321576046, -0.00540180225, -0.0150305144, -0.0192439202, 0.00703584729, -0.0181365516, 0.00275154295, 0.00511820754, 0.010763091, 0.0300070122, -0.00623232918, -0.00706285657, 0.00482110865, -0.000836857362, 0.0219718311, 0.00846732501, 0.000592088152, 0.00563137885, 0.0011774241, 0.0224039759, -0.0906962603, -0.00948016346, 0.0240515247, 0.00546257244, -0.0127347494, -0.00327821868, -0.00326640229, -0.0119447354, 0.00356181338, -0.00986504182, -0.00343689672, 0.0159218125, 0.0168266147, 0.00391630689, 0.000369263842, 0.00219954643, -0.00232615112, -0.000382979342, -0.0122013213, -0.00281062536, -0.0162864346, -0.00902101, 0.00221136282, -0.0032545859, 0.00376100489, 0.00134960655, 0.00935862213, -0.000277264393, -0.0092911, 0.00262156222, 0.00139096414, -0.0124579063, 0.00438221218, 0.0134639926, -0.0116611412, -0.0303311199, 0.00188556663, -0.0100608571, -0.00293891807, -0.0113505367, 0.00817022566, -0.005688773, -0.00468943967, -0.000275576313, 0.00079465576, 0.00317862304, 0.00419990113, 0.00099089311, -0.0229171459, 0.00666447356, -0.00566176418, 0.0255505256, -0.00942614488, -0.00773132965, -0.0188657939, 0.00210332684, 0.00848758221, 0.00289165229, -0.00635724608, 0.0379206538, -0.0131466361, -0.0328159481, 0.0055436, 0.0185281821, 0.00692781154, 0.0259691644, -0.0095139239, 0.0187307503, 0.0112289963, -0.0072046537, -0.0074882484, -0.0266308859, -0.0057596718, -0.00405135192, 0.0130723612, 0.0254559927, -0.0136125414, 0.00419652509, 0.0110939518, 0.0101756454, 0.015962325, 0.00429105666, 0.00155386224, 0.00470632035, 0.0168806314, 0.0068096472, 0.0379746705, -0.0082445005, 0.0182445869, 0.00622895313, 0.00302669732, 0.011904222, -0.0172857679, 0.00282075373, 0.00985153671, -0.00295411074, -0.0106685599, -0.00308071543, 0.017191235, 0.00647541042, -0.00736670801, -0.00806894246, 0.00670161098, 0.0102161588, 0.00690755481, -0.0173667949, 0.00933161378, -0.0224039759, 0.0131803975, 0.00935187, 0.026468832, -0.00945990626, -0.00741397357, -0.00387916924, 0.00863613188, 0.0178124439, 0.0087239109, -0.00504055666, -0.0113707939, 0.0255505256, -0.00116560771, -0.00170156767, -0.00224006, -0.00203918037, 0.00109555305, -0.00135973492, 0.0133154429, -0.013585533, -0.00322082452, -0.00478734728, 0.0101891495, 0.00548282918, -0.00583732268, -0.00819723494, -0.0143687939, -0.0418369584, -0.000175769586, -0.014638884, -0.0016728706, 0.020013677, -0.000621629297, -0.00507769408, 0.0249563269, -0.0181365516, 0.00580018526, -0.00593860634, -0.0107563389, 0.0277922731, 0.0183931366, -0.00566176418, -0.0359219871, -0.00579343317, 0.011640884, 0.00110652542, 0.011553105, -0.0287375879, 0.00722491043, -0.00606689928, -0.0087239109, -0.0167996045, -0.00293723, -0.0100203436, 0.000219448222, -0.00258948887, -0.00861587469, 0.00585757941, 0.0195950381, -0.0177179109, -0.00860237051, -0.0141662266, 0.0241055433, 0.00860237051, 0.0289266519, -0.016489001, -0.00614455, -0.00698858174, -0.00261143385, -0.00457802741, -0.0193654615, 0.0224985071, 0.0200947039, -0.00908853207, -0.0138083575, 0.023551859, 0.0354358219, -0.00165936619, 0.019054858, -0.00193114427, -0.00693456363, 0.000507685, 0.00416276371, 0.00355843734, 0.00253378297, 0.0188792981, -0.0203107763, -0.000551574631, 0.00773132965, 0.00529376604, 0.00618843967, 0.00469281571, 0.000798453926, -0.0256315526, 0.0143012712, 0.0108306138, 0.00611416483, -0.0209724978, 0.00299968827, 0.0138961365, -0.0161108747, -0.0217422545, -0.0188252814, -0.00204762071, -0.0232952721, 0.0262662638, 0.0118704606, -0.000534694, 0.00297605549, -0.00581706595, 0.00136142294, 0.0214181468, 0.0290887058, 0.0121135414, -0.00161378842, -0.0148414522, 0.0230656955, 0.0195275154, -0.00536128879, -0.000584491878, -0.0149494875, 0.00546257244, 0.00525662908, -0.0157732628, 0.0362460949, -0.00806219, -0.0110399332, -0.00662733614, 0.00566514, 0.00398382917, -0.0251588933, 0.0284945071, 0.018352624, 0.0287916064, -0.00630998053, -0.00258611282, -0.0112222442, -0.0151925692, 0.00414925953, -0.0209184792, 0.00763004553, 0.004939273, -0.0181365516, 0.00431806594, -0.00167877891, 0.00640788814, -0.00127786386, -0.00848758221, -0.0181905702, 0.0148549564, 0.00416276371, 0.0151250465, 0.00120358902, -0.00422015786, -0.0173938032, -0.00654630922, 0.00452738535, -0.023457326, 0.0078933835, -0.00807569455, -0.0082580056, 0.0129508208, 0.00101114984, -0.0113302805, -0.0010803605, 0.00949366763, 0.00395344384, -0.0124849156, -0.00794064905, 0.0148684606, -0.00271946983, 0.00261649792, -0.00853484776, -0.0125997039, -0.0230656955, 0.0273601282, -0.00431806594, 0.00609728415, 0.0178259481, -0.0102026537, -0.0013099371, -0.0168266147, 0.00621207245, -0.00666784961, 0.0158542898, 0.0290346872, 5.14331768e-05, -0.0326538943, 0.0019142637, 0.0134707447, 0.0147199109, -0.0195140112, 0.0215666965, 0.00876442436, -0.00651592389, -0.00692105899, -0.0244836695, -0.00415263558, -0.0227821, -0.000145700964, -0.0099730771, 0.00250846194, -0.0555305295, 0.00318875141, 0.00599262444, 0.00921682548, -0.00927759521, -0.00794064905, -0.00608040392, -0.0120932851, 0.0027599833, 0.00221305084, 0.0152330827, -0.0026502593, -0.00950717181, -0.00272115786, 0.0126739787, -0.00598587235, -0.0137340827, 0.00160788023, -0.0038892976, -0.00212189555, 0.00347403414, 0.00157411897, -0.022052858, 0.0138151096, -0.0114585729, -0.00667797821, 0.00498316251, -0.0246592276, 0.00998658221, 0.0108306138, -0.0107360817, 0.00174376927, -0.034139391, -0.0305201821, 0.00431806594, 0.00463204551, -0.00253378297, 0.000517391367, 0.0344364904, 0.0024645722, -0.0162459202, -0.00534103205, 0.00190075918, -0.00157918315, 0.0174883343, -0.0138083575, -0.0117691765, -0.0101216268, 0.00149309193, 0.0123768793, 0.0371103808, -0.016489001, 0.00219448213, -0.00813646428, 0.0165160112, -0.0138218617, 0.0305201821, 0.00318537536, -0.00605339464, -0.0052397484, 0.0245782, -0.00238016923, -0.0164754968, 0.0539099872, 0.0239164792, 0.00290346867, -0.0181365516, 0.0142067401, 0.0107090734, -0.0028849, 0.0300610289, -0.0425932109, -0.0104592396, -0.0206618942, 0.0113505367, 0.00303007336, 0.0163809657, -0.00230758241, -0.00521273911, -0.00997983, -0.0217692629, 0.00180791575, -0.0130858663, 0.0005798497, -0.0114180595, -0.00814996939, -0.0217152461, 0.017380299, -0.0283864718, 0.0117894337, 0.0050439327, -0.0311143808, 0.00543556362, 0.01243765, 0.0181365516, 0.00603313791, -0.0178934708, -0.0119852489, -0.0126807308, -0.0464555, 0.0162864346, 0.0104727438, 0.021080533, 0.025320949, 0.0148279471, 0.0155571904, 0.00442610169, 0.00964221731, -0.0171777308, -0.0100473519, -0.00276842364, 0.00398045313, -0.0350036807, 0.0159218125, -0.0256450567, 0.00305033033, -0.0166240465, 0.0040749847, 0.0107698431, 0.0158542898, -0.00447674375, -0.0037137391, 0.00921682548, -0.0143147763, 0.0115396, 0.00263337861, -0.0319786705, -0.00379814231, -0.010675312, -0.00597574376, 0.0215802, -0.0129508208, -0.00481098, 0.0145443529, -0.0108643752, -0.00308071543, -0.0208644606, 0.0168806314, -0.00108373654, -0.0173532907, 0.00372724351, -0.00544231571, 0.0198111106, 0.000293723, 0.00528026186, -0.00601288117, -0.00288827624, 0.00979751907, -0.00611416483, -0.00724516716, -0.00996632501, -0.0168671273, 0.00843356363, 0.00979751907, -0.0077245771, 0.0118637085, 0.0290076789, 0.00201048329, -0.00533090346, -0.0161919016, 0.0128427846, 0.0141527224, 0.00107614032, 0.0270630289, 0.000211113409, -0.011640884, -0.0157597587, -0.02293065, 0.0175153445, 0.000736839604, 0.00685016066, -0.0247537587, -0.00257767248, 0.00554022333, 0.00245106779, 0.0203647949, 0.0242000744, 0.00265194732, -0.011195235, -0.0066138315, 0.00394669175, -0.000389942608, 0.00111074559, -0.0136935692, -0.00760978879, -0.00543556362, 0.0277922731, 0.00195984147, -0.00264857127, 0.0329509936, -0.0138961365, -0.000582803856, -0.00157158682, 0.0133086909, 0.00706960866, -0.0105875321, -0.017906975, -0.00396019639, 0.0175828673, -0.0156922359, 0.0158407856, -0.00393656362, 0.0382987782, -0.00186193374, -0.00827151, -0.0141932359, 0.0202972721, 0.00662733614, 0.00619519223, -0.00673199631, -0.00947341, 0.0143012712, -0.00633023726, -0.00478397124, -2.13381736e-05, 0.00854835194, -0.0076638069, 0.0277922731, -0.0237004068, 0.0107563389, -0.0129103074, 0.00308409147, 0.00533090346, 0.00991230737, -0.00168553111, 0.00213708798, -0.00178090669, -0.00171338418, 0.00617493503, -0.0111074559, 0.00897374377, 0.0251453891, 0.00623232918, 0.00912904553, 0.0226740651, 0.00875767227, 0.0231062099, 0.00893323, 0.0109859155, 0.00758953206, -0.0207159109, -0.0161243808, -0.0394601673, 0.00524650048, 0.029277768, 0.0100270957, 0.0439436622, 0.0263202824, -0.0121337986, -0.0272655971, -0.00188387861, 0.00995957293, 0.0131736454, -0.00391630689, 0.00594873494, 0.0128427846, -0.00812971219, -0.0268064439, -0.0224309843, 0.0205673631, 0.0193789657, 0.00200373097, 0.00635387, 0.0203242805, -0.00571578229, -0.00738021219, 0.00892647821, -0.0126267131, 0.00116560771, -0.0105605237, -0.00378463767, 0.00655643735, -0.0104727438, -0.00579343317]
08 Aug, 2018
unordered_multimap bucket_size() function in C++ STL 08 Aug, 2018 The unordered_multimap::bucket_size() is a built-in function in C++ STL which returns the number of elements in the bucket n. Syntax: unordered_multimap_name.bucket_size(n) Parameters: The function accepts a parameter n which specifies the bucket number whose count is to be returned. Return Value: It returns an unsigned integral type which denotes the number of elements in the bucket with bucket number n. Below programs illustrate the above function: Program 1: // C++ program to illustrate the // unordered_multimap::bucket_size() #include <bits/stdc++.h> using namespace std; int main() { // declaration unordered_multimap<int, int> sample; // inserts element sample.insert({ 10, 100 }); sample.insert({ 10, 100 }); sample.insert({ 20, 200 }); sample.insert({ 30, 300 }); sample.insert({ 15, 150 }); cout << "The total count of buckets: " << sample.bucket_count(); // prints all element bucket wise for (int i = 0; i < sample.bucket_count(); i++) { cout << "\nNumber of elements in Bucket " << i << " = " << sample.bucket_size(i); } return 0; } Output: The total count of buckets: 7 Number of elements in Bucket 0 = 0 Number of elements in Bucket 1 = 1 Number of elements in Bucket 2 = 1 Number of elements in Bucket 3 = 2 Number of elements in Bucket 4 = 0 Number of elements in Bucket 5 = 0 Number of elements in Bucket 6 = 1 Program 2: // C++ program to illustrate the // unordered_multimap::bucket_size() #include <bits/stdc++.h> using namespace std; int main() { // declaration unordered_multimap<char, char> sample; // inserts element sample.insert({ 'a', 'b' }); sample.insert({ 'a', 'b' }); sample.insert({ 'b', 'c' }); sample.insert({ 'r', 'a' }); sample.insert({ 'c', 'b' }); cout << "The total count of buckets: " << sample.bucket_count(); // prints all element bucket wise for (int i = 0; i < sample.bucket_count(); i++) { cout << "\nNumber of elements in Bucket " << i << " = " << sample.bucket_size(i); } return 0; } Output: The total count of buckets: 7 Number of elements in Bucket 0 = 1 Number of elements in Bucket 1 = 1 Number of elements in Bucket 2 = 1 Number of elements in Bucket 3 = 0 Number of elements in Bucket 4 = 0 Number of elements in Bucket 5 = 0 Number of elements in Bucket 6 = 2 Learn C++ Online – Master everything from basics to advanced concepts. Apply your knowledge with practical exercises and boost your skills. Take the Three 90 Challenge: finish 90% in 90 days for a 90% refund. Start now and level up your C++ programming!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum/Algorithm for Dynamic Time out timer Calculation/Difference between Round trip time (RTT) and Time to live (TTL)/Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms/Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm/Round Robin Scheduling Algorithm with Different Arrival Time/Selfish Round Robin CPU Scheduling/Find the order of execution of given N processes in Round Robin Scheduling/Calculate server loads using Round Robin Scheduling/set::lower_bound() Function in C++ STL/Implementation of lower_bound() and upper_bound() in List of Pairs in C++/Difference between std::set::lower_bound and std::lower_bound in C++/Difference between std::set vs std::vector in C++ STL/std::minmax() and std::minmax_element() in C++ STL/std::rotate vs std::rotate_copy in C++ STL/std::bitset::to_ullong and std::bitset::to_ulong in C++ STL/std::upper_bound and std::lower_bound for Vector in C++ STL/std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++/std::string::append vs std::string::push_back() vs Operator += in C++/Vector push_back() in C++ STL/vector :: cbegin() and vector :: cend() in C++ STL/unordered_multiset cend() function in C++ STL/unordered_multiset bucket() function in C++ STL/unordered_multiset emplace_hint() function in C++ STL/unordered_multiset end() function in C++ STL/unordered_multiset size() in C++ STL/unordered_multiset emplace() function in C++ STL/unordered_multiset find() function in C++STL/unordered_multiset erase() function in C++ STL/unordered_multiset clear() function in C++ STL/unordered_multiset swap() function in C++ STL/unordered_multiset bucket_size() function in C++ STL/unordered_multiset bucket_count() function in C++ STL/unordered_set bucket_count() function in C++ STL/unordered_set cbegin() function in C++ STL/array::cbegin() and array::cend() in C++ STL/array::rbegin() and array::rend() in C++ STL/multimap rbegin in C++ STL/vector rbegin() and rend() Functions in C++ STL/multiset rbegin() and rend() function in C++ STL/map rbegin() function in C++ STL/map upper_bound() function in C++ STL/Set upper_bound() in C++ STL/multimap upper_bound() function in C++ STL/multimap empty() function in C++ STL/multimap value_comp() function in C++ STL/multimap swap() function in C++ STL/multimap::swap() in C++ STL/multimap equal_range() in C++ STL/unordered_set equal_range in C++ STL/set vs unordered_set in C++ STL/unordered_set count() function in C++ STL/unordered_set bucket() function in C++ STL/unordered_set emplace() function in C++ STL/set::emplace() in C++ STL/multiset::emplace() in C++ STL/multiset find() function in C++ STL/multiset cbegin() and cend() function in C++ STL/multimap::cbegin() and multimap::cend() in C++ STL/multimap::begin() and multimap::end() in C++ STL/set::begin() and set::end() in C++ STL/unordered_multimap begin() and end() function in C++ STL/unordered_multimap empty() function in C++ STL/unordered_multimap find() function in C++ STL/unordered_multimap equal_range() function in C++ STL/unordered_multimap bucket_count() function in C++ STL/unordered_multimap bucket_size() function in C++ STL
https://www.geeksforgeeks.org/unordered_multimap-bucket_size-function-in-c-stl?ref=asr7
PHP
unordered_multimap bucket_size() function in C++ STL
unordered_multiset clear() function in C++ STL, What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, jQWidgets jqxTreeMap width Property, Round Robin Scheduling Algorithm with Different Arrival Time, Difference between Flow and TypeScript, set::begin() and set::end() in C++ STL, unordered_multiset emplace() function in C++ STL, jQWidgets jqxTree destroy() Method, unordered_set bucket_count() function in C++ STL, jQWidgets jqxTree collapseAll() Method, Find the order of execution of given N processes in Round Robin Scheduling, jQWidgets jqxScrollView buttonsOffset Property, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Vector push_back() in C++ STL, jQWidgets jqxListBox enableHover Property, Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm, std::rotate vs std::rotate_copy in C++ STL, Selfish Round Robin CPU Scheduling, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxSlider buttonsPosition Property, std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++, std::upper_bound and std::lower_bound for Vector in C++ STL, Difference between Round trip time (RTT) and Time to live (TTL), jQWidgets jqxSlider rtl Property, Difference between std::set::lower_bound and std::lower_bound in C++, jQWidgets jqxTooltip opacity Property, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, unordered_multiset erase() function in C++ STL, multiset find() function in C++ STL, set vs unordered_set in C++ STL, jQWidgets jqxToolBar height Property, PHP, std::minmax() and std::minmax_element() in C++ STL, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, unordered_set emplace() function in C++ STL, unordered_multimap empty() function in C++ STL, unordered_set bucket() function in C++ STL, map rbegin() function in C++ STL, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, map upper_bound() function in C++ STL, Node.js date-and-time Date.transform() Method, unordered_multiset size() in C++ STL, TypeScript Optional Parameters, jQWidgets jqxToolBar theme Property, Difference between std::set vs std::vector in C++ STL, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, Steps to Diagnose and Resolve a Slow Network, How to use Optional Chaining with Arrays and Functions in TypeScript ?, Calculate server loads using Round Robin Scheduling, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, jQWidgets jqxScrollView showButtons Property, set::emplace() in C++ STL, Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms, jQWidgets jqxScrollView disabled Property, multimap::cbegin() and multimap::cend() in C++ STL, jQWidgets jqxSplitter destroy() Method, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, set::lower_bound() Function in C++ STL, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, jQWidgets jqxTree collapseItem() Method, multimap upper_bound() function in C++ STL, std::string::append vs std::string::push_back() vs Operator += in C++, unordered_multiset swap() function in C++ STL, unordered_multiset cend() function in C++ STL, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), Set upper_bound() in C++ STL, jQWidgets jqxSortable opacity Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, multiset cbegin() and cend() function in C++ STL, multimap rbegin in C++ STL, vector :: cbegin() and vector :: cend() in C++ STL, multimap swap() function in C++ STL, jQWidgets jqxSlider height Property, jQWidgets jqxSwitchButton onLabel Property, unordered_multiset bucket_size() function in C++ STL, unordered_set cbegin() function in C++ STL, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, jQWidgets jqxToolBar tools Property, multimap empty() function in C++ STL, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTree width Property, multimap::swap() in C++ STL, unordered_multimap bucket_size() function in C++ STL, multimap equal_range() in C++ STL, Implementation of lower_bound() and upper_bound() in List of Pairs in C++, jQWidgets jqxTree clear() Method, TLS Handshake?, multiset rbegin() and rend() function in C++ STL, Algorithm for Dynamic Time out timer Calculation, Adhoc TCP, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, jQWidgets jqxTabs position Property, Differences between Wireless Adhoc Network and Wireless Sensor Network, jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, unordered_multimap begin() and end() function in C++ STL, std::bitset::to_ullong and std::bitset::to_ulong in C++ STL, unordered_multiset emplace_hint() function in C++ STL, multimap::begin() and multimap::end() in C++ STL, unordered_multiset bucket_count() function in C++ STL, unordered_multiset find() function in C++STL, unordered_multimap bucket_count() function in C++ STL, unordered_multiset bucket() function in C++ STL, Impact of Three-way Handshake and Slow Start Algorithm, array::rbegin() and array::rend() in C++ STL, multimap value_comp() function in C++ STL, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, multiset::emplace() in C++ STL, unordered_set equal_range in C++ STL, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, unordered_multimap equal_range() function in C++ STL, unordered_set count() function in C++ STL, vector rbegin() and rend() Functions in C++ STL, array::cbegin() and array::cend() in C++ STL, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, unordered_multiset end() function in C++ STL, How to Sort an Array Having Optional Properties in TypeScript ?, unordered_multimap find() function in C++ STL
GeeksforGeeks
[-0.0252767112, 0.0012343229, -0.0138813583, 0.0074857953, 0.0488034971, -0.017929798, -0.014749377, 0.0368873328, -0.0208602306, 0.0148188192, -0.0120619908, 0.029970957, 0.00947876647, 0.00393039, -0.0216101985, -0.0165131912, -0.0172353834, 0.00421857182, -0.0284987967, -0.00995096844, 0.0236240029, 0.00687471, -0.0407205038, 0.0154299047, -0.0214990918, 0.0191936344, -0.0194852892, -0.000823315931, 0.00847880915, 0.00463522086, -0.033693023, 0.0202074796, -0.0127702942, -0.0316931084, 0.00283147767, 0.0128050148, 0.0210130028, 0.0215963107, -0.0227212626, -0.00366998394, -0.00699276058, 0.0337208, 0.0188880917, 0.0187908728, -0.00494423555, 0.0086176917, -0.0109578706, -0.0140549624, -0.0319153182, 0.0349985212, 0.0169020649, -0.0104787247, 0.0249850564, 0.0202352572, 0.0174159314, -0.00200512377, 0.00492340326, 0.0319986492, 0.0116800629, -0.0218463, -0.0179159101, -0.026609987, 0.0239434335, 0.00200685975, -0.0267905351, -0.0231101364, -0.0210685544, 0.0558865294, 0.0502201021, -0.0206519067, -0.0376373, 0.0411371514, 0.0209018961, 0.0107009374, -0.032109756, 0.0116939507, 0.000197474306, -0.0165965222, -0.00141573884, 0.0468035787, -0.0415538028, 0.0121522648, -0.0198741611, -0.0236934442, -0.00469077425, 0.00958292838, -0.0233740136, -0.0249572806, 0.025387818, 0.0264849924, -0.0150132552, -0.00416649086, 0.0169576183, -0.00242871698, -0.0294709783, 0.0473035574, 0.0247211792, 0.0225407146, 0.0011171404, 0.0409982689, -0.00228288979, -0.0156660061, 0.00852047373, 0.00623584772, 0.0155271227, 0.0105273332, 0.030720925, -0.000657958328, -0.00565948337, -0.0144577231, 0.0622751489, 0.0122772595, -0.0251656044, 0.0291098822, -0.0186242145, 0.00832603779, -0.0112564694, 0.000608481234, 0.015499346, 0.008214931, 0.0147077125, 0.0437203757, -0.00115359714, -0.0185408834, -0.0527477749, 0.00288529485, 0.0167631805, 0.00843714364, 0.00998569, -0.0439703651, 0.0201102626, -0.0211518854, -0.0102426233, -0.0550254546, -0.0402205251, 0.000568986405, 0.0339152366, 0.0174992606, -0.018763097, -0.0247767325, -0.0588308498, -0.00911072642, -0.00881212763, 0.0130827809, -0.0184436664, -0.0122703156, -0.0119439401, 0.0294154249, 0.00226552947, 0.0127077969, 0.000629747752, 0.00635737041, 0.0488590486, 0.0260683447, 0.0245406311, -0.000397986674, 0.00222039246, 0.00738857687, 0.00648930948, -0.0116870068, 0.0392761193, 0.00379497861, 0.0146521591, -0.00143223116, -0.0167770702, 0.0253739282, 0.00998569, 0.00853436161, -0.0280682594, 0.0365262367, 0.0261100084, 0.0230129175, 0.00963153783, 0.0215546452, 0.00701706484, -0.0151938032, 0.0438592583, 0.0265405457, 0.00222907262, 0.0219296291, -0.00329326373, -0.000998221803, 0.0312486812, 0.0029217517, 0.0124091981, 0.00323076639, 0.00895101111, 0.00703095319, 0.056192074, 0.0165548567, 0.000996485702, 0.0228184815, 0.0143882819, 0.057942, 0.0541088283, 0.0265822113, -0.0383317135, 0.0186242145, -0.014193845, 0.0360818096, -0.0230684709, 0.00192873809, -0.0440259203, 0.0173603781, 0.0116245095, 0.0248600617, -0.0334152579, -0.00517686503, 0.0353873968, 0.0105620539, -0.032026425, 0.0278599355, 8.84294277e-05, 0.00288703083, -0.0232629068, 0.026235003, -0.0524144545, 0.043025963, 0.0209991131, -0.0400260873, 0.0169853941, -0.011020368, 0.0281793661, -0.0381650552, -0.0207907893, -0.038192831, 0.032776393, 0.00990236, 0.00607613241, -0.0263461098, 0.0542754866, 0.000500412891, -0.0438314825, -0.00770106399, 0.0506367497, -0.0271516312, -0.0463869311, 0.00113623671, -0.0137146991, 0.0284015797, -0.00465952558, 0.0817187726, -0.0150271431, -0.0163743086, 0.0159159955, 0.0117564481, -0.0208324548, -0.0372762047, 0.00359359826, 0.00673235487, 0.0189297572, 0.00174992613, 0.0316931084, -0.0137355309, 0.00799966231, 0.0308598094, -0.0317208841, -0.0271516312, 0.00724275, -0.0201658159, 0.0103745619, 0.0366095677, -0.0343318842, 0.00859685894, 0.00316653308, 0.00825659558, 0.0390816852, -0.0181520116, -0.0304709356, -0.0383317135, 0.0124508636, -0.0104856687, -0.00514561636, 0.00743718585, 0.0086176917, 0.0164437499, -0.0146799358, 0.00392344547, -0.00917322375, -0.00445467327, 0.0311375745, -0.0029964014, -0.00993013661, 0.026235003, 0.0112217488, 0.0023714276, -0.0300265104, -0.013166111, -0.011395352, -0.052275572, -0.0304431599, 0.00731913559, -0.0128050148, -0.0119022755, 0.00446856162, 0.0306653716, -0.00993708055, -0.0210685544, -0.0348874182, -0.0255267, -0.0232073534, -0.0331930444, -0.0271932967, -0.0400816426, 0.00505534234, -0.0249572806, -0.0111661954, -0.022679599, 0.0066281925, -0.0165409688, 0.00269606686, -0.0485535078, -0.0496645719, -0.00545115862, -0.0336652473, -0.023985099, 0.0386928096, 0.025387818, -0.0514978245, -0.00652055815, -0.0110550886, 0.00159802288, -0.01848533, 0.046692472, 0.0228601471, -0.0106870485, -0.0182908941, 0.0590530634, -0.00154854578, -0.0551087856, -0.00474979961, 0.0193325169, -0.0393038951, -0.0171103887, 0.00724969385, -0.0433037281, -0.013353603, 0.029220989, -0.0139577445, 0.0443870164, 0.0153743513, -0.000672280672, -0.0179436877, -0.00633653812, 0.00866630115, 0.021471316, -0.00297209667, -0.0258877967, 0.00695456751, 0.0483868457, 0.00115706923, 0.00471507898, 0.0168465115, 0.0214296505, 0.0157632232, -0.00376373, -0.0146382712, -0.0213324334, -0.00541643798, 0.00965931453, -0.0483035184, 0.0244989656, -0.021193549, 0.00573934102, -0.00275162, -0.0152493566, -0.00601710705, -0.0354151726, 0.0358873755, -0.0274849515, 0.0146382712, -0.0129022328, 0.0248739496, 0.0173881557, -0.0370817669, 0.00436092727, 0.0232906844, 0.00407621684, -0.0162215382, -0.00641986774, 0.00268912269, 0.03902613, 0.0188880917, -0.00693026325, 1.72111868e-05, -0.00298424903, -0.0291654356, 0.00916628, -0.00404496817, 0.0161520969, -0.0291098822, -0.031276457, 0.0271238554, -0.00937460456, 0.00478799222, 0.00855519436, -0.0270405244, -0.0304987133, -0.0542477109, -0.0541921556, 0.0281654783, 0.00100777, -0.00241135666, -0.0168604, -0.0265683234, -0.00587475207, 0.0174437091, -0.0232906844, -0.0117425602, 0.0125619695, 0.023985099, -0.0200269315, -0.00809688, 0.0232073534, 0.00889545772, -0.0194852892, -0.0472757816, 0.00738163292, -0.00570809236, -0.0265683234, -0.0240684282, -0.0107495459, -0.0275127273, -0.0110550886, -0.0121036554, 0.0221379548, -0.0207491238, 0.0191519689, 0.00300681754, -0.0427759737, 0.00456230761, 0.0226379335, -0.000471334264, 0.0329986066, 0.00370123261, -0.0453314185, 0.0137633076, 0.00205026078, -0.0102773439, -0.030804256, 0.029776521, 0.0472480059, 0.013909135, -0.0236656684, -0.00108589162, 0.0190686397, -0.0124855842, -0.0239295457, 0.00356929377, 0.0179159101, -0.0386094823, 0.00238358, -0.0243878588, 0.0134577649, 0.0221240669, -0.0211241078, 0.0215824228, -0.00559351407, 0.0358040445, 0.00890934654, -0.0378595144, 0.008964899, -0.0188325383, 0.0179992411, -0.00460744463, 0.0347763114, 0.0119856056, 0.0314708948, -0.0214018747, 7.20998214e-05, -0.00201901211, -0.0294709783, 0.0243323054, -0.00503103761, 0.0113259107, -0.0118328342, -0.00254850346, 0.000871491, -0.00461786054, 0.00272731553, 0.0393316746, -0.0152493566, -0.0403316319, -0.00359012629, -0.0179575756, -0.0283460263, 0.00635389844, 0.00301028951, 0.012506417, -0.00705873, -0.0253739282, -0.0170548353, -0.0090343412, -0.0154854571, 0.0124925282, 0.0326097347, -0.0298320744, -0.00207977323, 0.00741635356, 0.00182631181, 0.0266655404, 0.00786078, -0.0370817669, 0.0470535681, 0.00731913559, -0.0468035787, 0.00750662759, 0.0486368351, -0.032776393, -0.0172492713, -0.000383013336, 0.0567753799, 0.00463522086, -0.00924961, -0.014006353, -0.0120619908, 0.0407482795, -0.0109995361, -0.0114370175, -0.000979993376, 0.0210407786, 0.0310264677, 0.0148743717, 0.0348596387, 0.0154715693, 0.0150965853, -0.0246378481, 0.0164576378, 0.02781827, -0.0323319696, -0.00675665913, 0.00948571, -0.0205824655, -0.0159576591, -0.0120619908, -0.00437481515, 0.0107217701, 0.0114925709, -0.0170409475, 0.016804846, 0.00854130648, -0.0122355949, 0.0197213907, 0.0309431385, -0.0288598929, 0.0144021697, 0.00987458322, -0.00202595606, -0.0222073961, -0.0104995565, 0.0120619908, -0.0127147408, 0.010548166, -0.0160965435, -0.00738163292, 0.0327486172, -0.000779046968, -0.021193549, 0.0374706425, -0.00810382422, -0.00879824, 0.0356929377, 0.0259294603, 0.0461647175, 0.00879824, -0.0116036767, 0.00431231782, 0.0185686611, -0.0232212413, 0.00133414508, 0.0015919467, -0.0135619277, 0.0297209676, -0.0196102839, -0.0121314321, 0.0212907679, -0.00583308702, 0.0109856473, -0.0198186077, 0.00661777612, 0.0098884711, -0.0112773022, -0.00322382222, -0.00870796572, -0.0210685544, -0.0141105158, -0.037442863, -0.0201102626, -0.037526194, 0.00683304481, -0.00833992567, 0.00840936694, -0.0118328342, -0.00496854028, 0.0131522231, -0.00943710189, -0.00503798202, -0.0136591457, -0.0151799144, -0.0110342568, 0.018402, -0.00752051594, -0.0114578493, -0.0200408213, 0.00319778174, 0.012693909, 0.0317208841, 0.0309153609, 0.00895795505, 0.00514214393, -0.0532477535, 0.0113536874, 0.0552476682, -0.00484354561, 0.00426023686, 0.0317764357, -0.0110342568, 0.0288876705, -0.0191936344, -0.00276203617, -0.0183325596, -0.0249017272, -0.0234156791, 0.00799966231, 0.014193845, -0.00687818183, -0.0301376171, -0.0210268907, 0.00672888244, -0.0184714422, -0.00699276058, -0.0357207134, 0.000174146291, -0.0354985, 0.0253461525, 0.0110898092, -0.0343874358, 0.0136591457, -0.0286099035, 0.0205269121, -0.00769411959, 0.00613862975, -0.000344169501, 0.032943055, -0.00811771303, 0.00259884866, -0.0183047839, 0.0102773439, 0.00389219681, -0.00549629563, -0.0352207348, 0.0130827809, 0.0181381237, 0.000850658515, 0.000137798008, -0.00961070508, -0.0169715062, 0.00710039493, 0.0131036136, 0.0158604421, -0.0508311875, -0.0573309138, 0.00384011562, -0.0179436877, 0.0153882392, -0.0113397995, -0.0256655831, -0.017832581, 0.0105759427, 0.0111731393, -0.000833298138, -0.00476021552, 0.0102148466, -0.0234851204, -0.00968014728, -0.00848575309, -0.0115411794, 0.029776521, 0.0140896831, -0.0213602092, -0.0300820637, -0.0127980709, 0.0169298407, -0.0254017059, -0.0202213693, -0.0107634347, 0.017263161, 0.0209991131, 0.00516297668, -0.0377761833, -0.0071038669, -0.0281515904, 0.0244850777, 0.038359493, 0.00675318716, -0.00481229695, 0.0148465959, 0.0159993246, -0.00305195455, -0.00468383031, 2.86446248e-05, -0.00336617744, -0.015582676, -0.038276162, 0.0205408, 0.039776098, -0.00792327709, -0.0135549838, -0.0149021484, -0.0108398199, 0.0104162274, 0.008777407, -0.0220962893, -0.013818861, -0.0232490189, -0.0108606527, -0.00852741767, -0.0274293981, -0.010173182, -0.0462758243, -0.00474632764, -0.0101940138, -0.00648583751, -0.00226205727, 0.0179436877, -0.00774272857, 0.0142216217, -0.0221518427, 0.00872879848, -0.000422725221, -0.0112703573, -0.0199574903, 0.025387818, 0.00266481796, -0.0360818096, 0.0457202941, 0.00974958856, -0.0174992606, -0.0293320958, -0.0185131077, -0.00918016769, 0.00553796068, 0.018110346, 0.0117772808, -0.00507964659, 0.00957598444, 0.010832876, 0.00599627476, -0.0358318202, 0.0239989869, 0.000929648231, 0.0404982902, 0.00673235487, -0.01222865, -0.000436396513, -0.0207352359, 0.029026553, -0.0128189037, -0.0158048887, 0.00466646953, 0.0163465329, -0.000638427911, 0.00727747055, 0.0167909581, -0.00889545772, -0.0255961418, -0.0179992411, 0.0152910212, 0.0258183554, -0.0224434976, -0.0321375318, -0.00335228909, 0.00227420963, 0.00395122217, 0.0054337983, -0.0440536961, -0.0130272275, 0.0136938663, -0.0105412221, 0.0115134027, -0.0151104731, 0.0234990083, 0.00694415113, 0.0298876278, -0.00813160092, -0.00510742329, 0.0277766045, 0.033526361, 0.0403316319, 0.0010216583, -0.0152632445, -0.00232976279, 0.00853436161, 0.0275266152, 0.022679599, -0.0187075436, 0.0018523524, -0.045192536, -0.00568031566, -0.0283460263, 0.0281654783, 0.00112061237, -0.0158326644, 0.0144299464, -0.0248045083, -0.0366095677, 0.0256239176, 0.00974958856, 0.0225684922, 0.0505256467, -0.0209852252, 0.000796407345, -0.00272905151, 0.014374393, 0.0212352145, -0.0102773439, 0.00410399353, -0.00483312923, 0.0308598094, 0.00126904366, 0.0266238768, 0.00629140111, 0.0189158674, -0.0249433909, -0.0436370485, 0.0157771111, 0.040526066, 0.022221284, 0.00177596672, -0.0286099035, 0.0139438557, 0.00814549, -0.00476021552, 0.0299154036, 0.010645384, 0.0139577445, 0.0201797038, -0.0354985, -0.011020368, 0.0612751916, 0.0103884507, -0.0135549838, -0.00781911425, -0.0066281925, 0.0117564481, -0.0154576804, -0.00588169601, 0.000837638276, -0.0116383974, 0.0042012115, -0.00484701758, 0.0255544763, -0.00790244434, -0.0109925913, 0.00358318212, 0.00763162225, -0.0250406098, -0.0275821686, 0.00511783967, 0.0528311022, 0.0133605469, 0.0044893939, 0.0184575543, 0.0192630757, 0.0225823801, 0.0330819376, -0.0206796825, -0.0481646322, -0.00538866129, -0.000401892758, 0.0102148466, 0.00273252348, -0.00206935708, -0.0164159741, -0.0156521164, -0.0142910639, -0.00947182253, 0.0236795563, -0.0091940565, -0.0103120646, 0.00941626914, -0.0132216644, -0.0423593223, -0.0692748502, -0.000393212569, 0.00386094814, 0.0148188192, -0.0143188396, -0.0206519067, -0.0252350457, 0.015582676, -0.0205130223, -0.00655875076, -0.0214990918, 0.00480188057, 0.0107981553, 0.0102912327, 0.00715247588, 0.0187353212, -0.0405816212, 0.00245996565, -0.0263599977, -0.0160965435, 0.000972181209, 0.0227629282, 0.0113606313, 0.0330263823, 0.0491368137, 0.00531574804, 0.0114925709, 0.0116036767, -0.00547546335, -0.0359984823, -0.0547476895, -0.0152354678, -0.00446161721, -0.0310542453, 0.00178985496, -0.00220476813, 0.00795799773, 0.0231934655, 0.0131036136, 0.0314986706, 0.0138674704, -0.00150861684, -0.0216796398, -0.0248600617, -0.0148743717, -0.0164159741, 0.000477410416, -0.0270544142, 0.0108884294, 0.0138396937, -0.0059094727, -0.00365609559, -0.0205408, -0.0249017272, -0.00244434131, -0.0633306578, 0.023901768, 0.0133952675, -0.0017811748, 0.0200547092, 0.0076455106, -0.0541921556, 0.0131799988, -0.0436648242, -0.0139021911, -0.00618376676, -0.00689207, -0.0408038348, 0.0109856473, 0.0149160372, -0.00592683302, -0.0289987754, -0.0105759427, -0.0172770489, -0.00288703083, -0.00169263687, 0.00907600578, 0.00328979176, -0.0048643779, -0.000238922206, -0.00290439138, 0.00542685436, -0.00498242863, -0.0128050148, -0.0115897888, -0.0227907039, 0.0213046558, 0.00219608797, -0.027443286, 0.0407205038, 0.0384428203, -0.0239434335, 0.0351651832, -0.025762802, -0.022026848, -0.0131383343, 0.00279154885, 0.0397205465, 0.000865414855, 0.00755523657, 0.010832876, -0.00353457313, 0.0353873968, 0.0320542, 0.00355019746, -0.0325541832, 0.0149993673, 0.00493729161, -0.0017108653, 0.0194019582, -0.0174853727, 0.0325541832, 0.0471646748, 0.0340263434, -0.032943055, 0.0114717381, -0.0491645932, -0.0189575329, 0.0130272275, -0.00878435187, -0.00588516844, 0.0349985212, -0.0168881752, -0.00848575309, 0.0269294195, -0.0271238554, 0.0165548567, 0.00695803948, -0.0537199564, -0.000537303684, 0.0193325169, 0.017263161, -0.0017334338, -0.0207352359, -0.0161520969, 0.0416371301, 0.0190964155, -0.0246795136, 0.000387353444, -0.0419704504, 0.0186242145, 0.00857602712, 0.016249314, 0.00545115862, -0.0217351932, 0.032776393, 0.0180964582, 0.0134924864, -0.0257350244, -0.00760384556, 0.0195408426, 0.00368040032, 0.00121609448, -0.0090621179, -0.0382206105, 0.00732607953, -0.00565948337, -0.0121453209, 0.00577058969, -0.0144577231, 0.0138466377, -0.00247385399, 0.00532269198, 0.0159159955, -0.0221379548, -0.0155548993, 0.0253739282, -0.00454494683, 0.0113050779, -0.0128050148, 0.0299154036, 0.0128050148, -0.0119578289, 0.0146660479, -0.00482271332, 0.0469980165, -0.0056212903, -0.00596155412, -0.0085621383, 0.00791633222, -0.0124786403, -0.00440606382, -0.00416301889, 0.0249711685, 0.024929503, 0.020721348, 0.00468730228, -0.00530880364, -0.0134994304, -0.00672193849, 0.00431231782, 0.00570462039, -0.0308875851, 0.0146660479, -0.00664902478, 0.00997180119, -0.0291654356, -0.0253183749, -0.0222629495, 0.00750662759, 0.0613307431, 0.00831214897, -0.00727052661, 0.0217074174, 0.00439912, -0.0181520116, -0.014103571, -0.0031092437, 0.00818715431, 0.0280682594, 0.0164437499, 0.0142910639, 0.00628792914, 0.0282488074, 0.0600530207, 0.00721497322, 0.0098884711, -0.0159576591, 0.0195408426, -0.0186658781, 0.0023488591, -0.00713858753, 0.0291654356, 0.0128397355, -0.017638145, 0.0269571953, 0.00115186116, 0.0185408834, 0.00158587052, 0.00418732315, 0.0254294816, -0.00153292145, -0.0118953316, -0.0124369748, -0.0370262153, 0.00641639577, 0.0117772808, -0.0189297572, 0.00505881431, -0.00878435187, 0.0257350244, -0.0189436451, -0.00999263395, 0.00407968881, -0.00707261823, -0.00680526812, 0.0063122334, -0.0263877753, 0.00488868263, 0.0347207561, 0.0175131503, 0.0181797873, -0.0294987541, 0.0159298833, 0.00293911202, 0.0174159314, -0.0014964646, 0.0100412425, -0.0129161216, -0.0220962893, 0.0123605896, -0.00324639073, -0.000127924286, -0.0049581239, -0.00777050527, -0.0190964155, 0.0187769849, -0.00847186428, 0.0066004158, -0.00954820774, 0.00931905117, -0.0371650979, 0.000871925, -0.0139021911, 0.0130758369, -0.008589915, 0.0441648029, -0.00876351912, 0.00305889873, 0.018402, -0.0266516525, -0.030720925, 0.005649067, 0.0128952889, -0.00105117087, 0.00369428843, 0.0268183127, -0.00915933587, -0.0237212218, -0.0224296097, -0.00929821841, -0.0198324956, -0.0178603567, -0.0146938246, 0.00458661187, 0.0143327285, -0.0302487239, 0.0168187339, -0.0217351932, 0.0123467008, 0.0180270169, -0.0115828449, -0.0232212413, 0.0239989869, -0.019888049, -0.0117078396, -0.0216101985, 0.0299154036, -0.0220546238, 0.0115411794, -0.0121314321, -0.00432620617, -0.0102565112, -0.00446508918, -0.0265961, 0.00225684908, 0.015582676, 0.0256655831, 0.0101454053, -0.0423593223, -0.0114092408, -0.00483660121, -0.0134994304, 0.015582676, -3.61855382e-05, 0.0111523075, -0.0023957321, -0.0173603781, 0.00420468347, 0.00307105086, -0.0123953102, 0.00108849572, -0.00781217031, -0.00495118, -0.00734691229, 0.00900656451, 0.0231934655, -0.00833298173, 0.0130411163, 0.00248947833, 0.0119925495, 0.0032064619, -0.012506417, 0.00229504192, -0.0210685544, -0.00647194916, -0.00388178066, -0.0186381023, 0.00153465744, -0.00630876143, -0.000180330928, 0.0213046558, -0.00879129581, 0.0259294603, 0.0143466163, 0.0339985639, -0.013728587, -0.0182353407, 0.0044893939, -0.000509961101, 0.0249017272, 0.0156521164, 0.0300542861, 0.0118120015, -0.0265405457, -0.0146243824, -0.0294987541, -0.0117911687, -0.00568031566, -0.0296931919, 0.00718025258, -0.00178985496, 0.0010685313, -0.0361373648, -0.00247038179, 0.00820104312, 0.00340263406, 0.0222073961, 0.0133744357, -0.0151521387, 0.00140705868, -0.015402128, -0.0529977642, -0.00618723873, 0.00501714926, -0.00888157, -0.00754829263, 0.0166242979, 0.00858297106, 0.000992145622, 0.0169298407, 0.0254294816, -0.000332885247, 0.0241239816, -0.0336374678, -0.00295994454, 0.0115967328, 0.00765939895, -0.0110620335, 0.00645458885, -0.00729830284, -0.00524977827, -0.022971252, 0.0198741611, 0.000581138651, 0.0195825063, -0.00491298689, 0.00713858753, 0.000637559919, 0.0186242145, 0.0162770916, 0.00514214393, -0.0104162274, 0.00376025797, -0.00640597939, 0.00552060036, -0.00232976279, -0.0226379335, 0.0176520329, -0.0037290093, 0.0189853106, -0.00865241233, 0.0033505531, 0.00451022619, 0.0113050779, 0.00690248655, -0.00528797135, 0.00243566115, 0.0174437091, 0.0124994721, -0.0133327702, 0.00857602712, 0.00465952558, 0.0192353, 0.011298134, 0.0326652862, 0.00101558212, -0.0179992411, -0.0194714, 0.0174853727, 0.0024460773, 0.00173777388, -0.0108398199, 0.0102148466, -0.00349811628, 0.00300334557, 0.012603635, 0.00706914626, -0.0132980496, 0.0117842248, 0.0178464688, -0.0194852892, -0.0119856056, -0.0456369631, -0.00954820774, -0.0104995565, -0.0237489976, 0.0120203262, 0.0192075223, -0.000187817597, -0.00373942545, 0.0095412638, 0.00298424903, 0.00315438071, -0.00491993129, -5.31661572e-05, 0.00735385623, -0.0181381237, -0.00357276597, 0.00539560569, 0.0206519067, -0.00312834023, -0.00616987841, -0.0341374464, 0.0158882178, 0.0277071632, -0.00990930386, 0.0396649912, -0.0204296932, -0.0107495459, -0.00609349273, 0.0150688086, -0.0156521164, -0.0204991344, 0.0131730549, 0.0204574689, 0.00541643798, 0.0354429483, -0.0251656044, -0.0195825063, -0.0156521164, 0.0132077755, 0.0410538241, -0.0105898306, -0.0158604421, 0.036776226, -0.00448592193, 0.0121175442, -0.00765939895, -0.00579836639, 0.020638017, 0.0107426019, 0.027721053, -0.00566642731, -0.00741635356, -0.00383664365, -0.0185825489, 0.00349290809, 0.0270127486, 0.025860019, 0.0135758156, -0.0226657093, 0.00939543638, 0.000946140615, -0.00990236, -0.0182908941, 0.0058435034, 0.0188464262, -0.0132633289, -0.00346686761, 0.0190964155, 0.0107078813, 0.0105412221, -0.00175079412, -0.0275682807, -0.0306653716, -0.0168465115, 0.0219990723, 0.00121783058, -0.00793716498, 0.00466299755, -0.0259016845, 0.00347901974, 0.0202769227, 0.0218740776, -0.0255822539, -0.0151382498, 0.00251725479, 0.00868713297, -0.008214931, -0.00996485725, 0.00606918847, -0.0209713373, 0.0189714208, 0.00386442, -0.005274083, 0.0153465746, 0.00569073204, -0.0153882392, 0.000588950817, -0.0178464688, -0.000290135329, 0.0115897888, -0.000815937761, 0.0171103887, 0.0136452578, -0.00205894094, 0.00309882755, 0.0161243193, 0.0343041085, 0.0248739496, 0.000714813592, -0.00015038428, -0.00247211778, -0.0384983756, 0.00303806621, -0.0180547927, -0.0221101772, -0.0118258893, -0.0301376171, -0.00477410387, 0.0348318629, 0.0126244668, -0.00310229952, -0.0175964795, -0.0198463853, 0.0194436237, -0.0121522648, -0.00130810449, -0.0135827605, 0.00350853242, -0.0161798727, 0.0313042328, 0.00585392, 0.00502409367, 0.00737468852, -0.0260127913, 0.00177509873, 0.0232073534, -0.011673118, -0.000922704116, -0.040609397, 0.00454147486, -0.0106939934, -0.0189853106, -0.00832603779, -0.0255544763, 0.0184297785, 0.0178881343, 0.0286654569, -0.00255891983, 0.0293876491, -0.0152910212, 0.0136452578, 0.0353040658, 0.0302209463, 0.0309986919, 0.0341652259, 0.0110064801, -0.0105134454, 0.013068893, -0.00665944116, 0.00535394065, 0.00257801614, 0.0195686184, 0.0227212626, -0.010173182, 0.0119994935, -0.0116453422, 0.00900656451, 0.04460923, -0.00670805, 0.00305542652, -0.0474146642, 0.0101801259, 0.0303320531, -3.29575923e-05, -0.00721497322, 0.00413177, -0.00321861403, 0.0103259534, -0.00301723368, -0.0199297145, -0.00111974438, -0.00931905117, -0.0418315679, -0.0222907253, -0.0084302, -0.00289223902, -0.041442696, 0.00334881688, 0.0159298833, 0.00297036069, -0.00439217594, 0.00232976279, -0.0193602946, 0.0296654142, 0.00326201506, 0.00923572108, -0.0026092648, -0.0205685757, -0.00641639577, 0.0278877113, 0.0106801046, -0.00513867196, -0.0204574689, -0.00187144883, -0.0100342985, -0.00750662759, 0.000551192032, 0.00731913559, -0.00924266502, 0.0114578493, 0.0153465746, 0.0176520329, -0.0204019174, 0.000954820833, 0.0161659848, -0.0105967745, -0.00350679643, -0.00542685436, 0.000786425138, -0.00844408758, 0.0104231713, 0.022221284, -0.0214157626, 0.00698581617, 0.0122078182, 0.00551018398, 0.00642681215, 0.0080552157, 0.00618029479, -0.0303042773, 0.00300334557, -0.0164854154, 0.0133952675, -0.0157771111, -0.0242350884, 0.0202491451, 0.0346929803, 0.0124716954, 0.00120133813, 0.00361443078, -0.0116036767, 0.00612126943, 0.0293876491, 0.0109578706, 0.0317208841, -0.0230129175, -0.00871491, -0.0349707454, 0.00623584772, 0.00515603228, -0.00188360107, -0.00632612174, -0.00241482863, 0.0168326236, 0.0153049091, 0.0111592514, 0.00350853242, -0.000776008936, -0.00100256188, -0.0153743513, -0.0101176286, -0.00239399611, 0.00779828196, -0.00837464631, 0.00808993634, 0.00468730228, -0.00151729712, 0.0124578075, -0.00337832957, -0.00957598444, 0.00534699671, 0.0039199735, -0.0127147408, 0.0128883449, -0.0057497574, 0.0282626953, -0.00260579283, -0.000994749716, -0.0108814854, 0.00223775278, 0.0145966057, 0.0150410319, -0.0063469545, 0.0135619277, 0.0250822753, -0.00343388272, 0.0320819803, 0.00430884585, -0.00961070508, 0.0116036767, -0.0202769227, 0.00125428732, 0.0118258893, -0.00394080579, 0.00285925437, -0.0139438557, -0.00545810303, -0.01120786, 0.00122130266, 0.00731219118, -0.00589558436, -0.00705525791, -0.000654486241, 0.00267523434, 0.0205408, 0.00142702309, -0.00814549, 0.0102773439, 0.0148327071, 0.0113328546, -0.00676360354, 0.00471855095, -0.000679224788, -0.0061316858, 0.00721497322, -0.0031561167, 0.00643722806, 0.0161520969, 0.0229851417, -0.00868713297, 0.0185964368, 0.0129438983, -0.00207803724, -0.0104370592, 0.00904822908, 0.00352936494, 0.00270127482, 0.0133813797, 0.0194852892, -0.00727052661, 0.00399983115, 0.0103537301, -0.0132841617, 0.00871491, -0.00436439924, 0.0124091981, 0.013166111, 0.00793716498, -0.0119786607, -0.00371512095, -0.0143605052, 0.000100798694, 0.00894406717, 0.00398594281, 0.0198324956, -0.0124230869, -0.0228601471, 0.00768717565, -0.00120220624, -0.0131313903, 0.00135671359, 0.00100777, -0.00933293905, 0.0104301153, -0.00300855353, -0.0284987967, -0.0162354261, -0.0106870485, -0.00392344547, -0.0205685757, 0.00170392112, -0.0106870485, 0.00227420963, 0.00990930386, -0.0166798513, 0.00102339429, -0.0150549198, 0.00646153279, 0.00111887639, -0.0232906844, 0.000871491, -0.00962459389, -0.00140879466, 0.00128814008, -0.0133119384, 0.00825659558, 0.0031127159, -0.00673582684, -0.00306757889, -0.00207630126, -0.0259850137, 0.00700664893, 0.013249441, -0.0215407573, -0.0032029897, -0.00395816611, -0.00876351912, 0.00895795505, -0.0023488591, -0.00786078, -0.00182631181, -0.00466299755, 0.00357276597, -0.0108189881, 0.0136660896, -0.0136938663, 0.0178186931, 0.00635737041, -0.0201241504, -0.0115967328, 0.00931905117, 0.00675318716, -0.0132355522, -0.0118606109, 0.00358318212, -0.00854130648, -0.00225684908, -0.00618376676, -0.0155548993, -0.017082613, 0.0152632445, 0.0129577862, 0.00646153279, -0.00967320241, -0.0209296718, -0.00286272634, -0.0213046558, 0.0137980292, 0.0120133823, -0.00330888806, 0.00676707551, -0.00403455179, -0.0115759, 0.00489562657, 0.00345471525, -0.00736080064, -0.0132286083, 0.0201797038, 0.0354429483, -0.00331583223, 0.000922704116, -0.000303589622, 0.0136938663, -0.0205824655, 0.00680179615, 0.0151521387, -0.00689554214, 0.0113050779, 0.0149715906, 0.00879824, -0.0105273332, -0.0059372494, -0.00173864188, 0.00334013673, 0.00769411959, -0.00278807688, -0.0128536243, -0.0209296718, 0.00338180177, -0.00201380393, -0.00152337318, -0.0127494615, 0.0174437091, 0.00681915646, 0.00483660121, 0.00364567945, -0.0162770916, 0.00268217851, 0.00626709638, 0.0078677237, 0.00852047373, 0.0304153822, 0.00920794439, 0.0153326858, -0.0166381858, -0.0205546878, -0.0140757952, 0.00351374061, 0.00172562164, 0.00619765511, -0.0216657519, 0.00131591666, 0.0311375745, 0.0023714276, -0.014186901, -0.00149906869, -0.0137563637, 0.0181381237, -0.00882601645, 0.0298598502, 0.0045171706, -0.0040067751, -0.00683998922, -0.00468730228, -0.00476368796, -0.00559004163, -0.0113467434, -0.0276099462, -0.033526361, 0.00141921092, -0.00495118, -0.00305542652, 0.0102426233, 0.00797188561, -0.00162406336, -6.93397942e-06, -0.000354802731, 0.00759690162, -0.0172076076, -0.00616987841, 0.00459702825, 0.00564212305, -0.0255961418, -0.00451369816, -0.00580878276, -0.0104231713, -0.0149854785, 0.00836770236, -0.00687818183, 0.0169715062, 0.0373595357, 0.0156104518, -0.0177075863, -0.0198324956, -0.0209852252, 0.0163881965, 0.0121592088, -0.0192630757, 0.0174298193, 0.0227073748, 0.00475327158, 0.0037290093, -0.0172770489, -0.0138049731, -0.018402, 0.00674277078, 0.0121939294, -0.00148691644, 0.00312486803, -0.0293320958, -0.00615946203, 0.0221796185, 0.00526019465, 0.0116522862, 0.0225684922, -0.0231934655, 0.0205963533, -0.005180337, -0.00960376114, 0.000320733, 0.0269988608, 0.00609349273, 0.00980514195, -0.0257905778, 0.0133119384, -0.009201, -0.00618376676, -0.0157632232, 0.000202573909, 0.0172353834, 0.0123119801, 0.00449981028, 0.0361651406, 0.00215095095, 0.013443877, 0.0164437499, -0.0116175655, 0.00503103761, 0.0147216013, 0.00604141178, 0.0124855842, 0.00713858753, -0.0216101985, -0.00162753544, -0.0167354047, 0.0113189667, 0.0222490616, -0.00460744463, 0.00986763928, -0.00895101111, 0.00501367729, 0.00880518369, 0.00565948337, 0.0130133396, 0.0121175442, 0.00406232849, -0.00712469919, 0.00972181186, 0.00478799222, 0.013721643, -0.00698581617, -0.0168742873, 0.0163465329, 0.000784689095, 0.00632265, 0.00559698604, 0.00597544201, -0.00895795505, -0.00100082578, -0.028471021, -0.0105342772, -0.00484701758, -0.0293876491, -0.00524977827, -0.0136383129, -0.00563865108, 0.0314708948, 0.0317486599, -0.00513867196, -0.00230372231, -0.00673929881, 0.0122911483, 0.011388408, 0.0240406524, -0.0116314534, 0.0199574903, 0.0242350884, -0.00591294467, 0.0199158266, -0.008964899, -0.022596268, -0.00924961, 0.0149577018, -0.0204158053, -0.000302721601, 0.0409982689, 0.0252211578, -0.00577058969, -0.0169576183, -0.0191936344, -0.00457966793, -0.0246656258, 0.00532269198, -0.0251794923, 0.000605009205, -0.0230406933, -0.000260405679, 0.00557962572, -0.00225337711, 0.00198429124, 0.0180686824, 0.00314049236, -0.0221657306, 0.00850658584, 0.0173187125, -0.00223775278, 0.0281793661, -0.0154854571, -0.00886768103, -0.011673118, -0.00575670134, 0.0268738661, 0.00832603779, -0.0113189667, -0.00880518369, 0.00763162225, 0.0107287141, 0.0150826965, 0.0170409475, -0.00217699143, -0.00155548984, -0.00684693316, 0.0237767734, 0.0420537814, 0.00115967332, 0.00482271332, 0.00351374061, 0.00295647234, 0.00613862975, -0.0206519067, -0.000633219781, -0.0149160372, -0.0138258049, -0.013353603, 0.00715942, 0.00864546839, 0.013624425, 0.0149715906, -0.00733996788, 0.00772884, 0.0184158888, 0.0244573, 0.019888049, -0.00241482863, 0.0262905564, -0.00380192278, -0.0149438139, 0.020721348, -2.32466318e-05, 0.0114995148, -0.00845103245, -0.0136174811, 0.0211102199, 0.0206519067, -0.0150965853, 0.0286376793, -0.0349985212, -0.0102495672, 0.0153049091, -0.0113814641, -0.00445814524, -0.0147910425, 0.0173048247, -0.00954820774, -0.00336791342, 0.0169298407, -0.0139438557, 0.00570114842, -0.00115186116, 0.0224990509, -0.0116383974, -0.0299431812, 0.0239156578, 0.00879824, 0.00687471, 0.00403802423, -0.0260266792, -0.000799011439, -0.0145549411, -0.0041074655, 0.000199644346, 0.00358318212, 0.0112356367, 0.0186103247, -0.00154767768, -0.0143188396, -0.0170409475, 0.0151521387, 0.0167492926, -0.00648583751, 0.00290612737, 0.000693547132, -0.00649625342, 0.00560045801, 0.00350679643, 0.0223323908, 0.0171242766, 0.0248739496, -0.00256586401, 0.015402128, -0.0191797465, -0.0297209676, 0.00449633785, -0.022596268, -0.00776356133, -0.0108675966, -0.00598585838, 0.0198047198, -0.00331583223, -0.00988152716, -0.0175409261, -0.00970097911, -0.0119925495, 0.0125966901, -0.00948571, -0.00194436242, -0.00415954646, 0.000262141722, -0.00882601645, -0.0129022328, 0.0113606313, -0.00669069, 0.00494076358, -0.0104926126, -0.00118658191, 0.0113467434, 0.000812031678, 0.0172214955, -0.00472896686, 0.00646153279, 0.0177770276, 0.0150549198, 0.0267766472, 0.00153812952, 0.00551712839, -0.00554143265, 0.00503103761, 0.00370470481, -0.0166659635, -0.00477410387, -0.0090343412, -0.00356234959, 0.0159993246, -0.0220407359, 0.0111175859, -0.0112634134, -0.00740940962, -0.0144021697, -0.00376025797, 0.00862463564, 0.00378803466, -0.00278634066, -0.000819409848, 0.0107078813, -0.000904475688, -0.0254711471, 0.000945272623, 0.00363873527, -0.0221379548, -0.000363482919, -0.00244260533, 0.0351651832, 0.0239989869, -0.0109856473, -0.00315438071, 0.0254155938, 0.00175339822, 0.0110550886, -0.0157215595, 0.00549629563, 0.0201102626, 0.0130550042, -0.00322903041, -0.016249314, -0.00123345491, 0.00560740242, 0.0185964368, 0.00455883518, -0.0117703369, 0.0184575543, -0.0130133396, -0.0113189667, -0.0204296932, -0.00143743935, -0.00659347186, -0.0114995148, 0.0285543501, 0.00599974673, 0.0138674704, -0.0117981136, -0.00430537388, 0.00183672807, -0.00538866129, 0.00683304481, 0.0165687446, 0.00772189628, -0.0168604, 0.0177631397, 0.00348596391, -0.0069163749, 0.0282071419, -0.00383664365, 0.0149715906, -0.0159993246, 0.00874268636, 0.000862376823, -0.00476021552, -0.00516297668, -0.0136938663, -0.0032811116, 0.00700664893, -0.00741635356, 0.00515950425, -0.00649625342, -0.0211796612, 0.0072358055, -0.0171381664, 0.00967320241, -0.00760384556, 0.0072358055, 0.00604835572, -0.0173742659, -0.00264572166, -0.00168048462, -0.0269571953, 0.0152493566, 0.00497548422, -0.00369428843, 0.0171520542, 0.0242906418, -0.00718025258, 0.00199644361, 0.00716636423, 0.00279849302, 0.0029964014, 0.00786078, -0.0132355522, -0.0106245512, 0.028971, -0.0119856056, 0.0105551099, -0.0231795777, 0.00718025258, 0.00222560042, -0.005274083, 0.000821579888, 0.01587433, 0.0173187125, -0.0177214742, -0.0169020649, -0.00904128514, -0.0106245512, -0.00485396199, -0.00859685894, -0.0201935917, 0.01120786, -0.00590600073, -0.0117008947, -0.000861942768, 0.0360540338, -0.000460918032, 0.0060969647, -0.00103554653, 0.0352207348, 0.0168465115, -0.00804132689, -0.0273877326, 0.0110273119, -0.0222490616, -0.000658392324, -0.0232212413, 0.0173603781, -0.0115967328, -0.00339916209, 0.00300508155, -0.0154576804, 0.00992319267, 0.00497548422, -0.000685734965, 0.0104023386, 0.000710907509, -0.0271377433, 0.0146243824, -0.0212768801, -0.0118189454, 0.011478682, 0.0275266152, -0.0107495459, -0.0139230238, 0.014374393, 0.000911419862, -0.0138049731, 0.0558309779, 0.00718719652, -0.00417343481, 0.00883296, 0.0280265957, -0.000451803848, 0.00611432502, -0.0431370698, -2.09545196e-05, 0.00839547906, 0.0143327285, 0.00413871417, -0.015791, -0.00262836134, -0.0074857953, -0.00256412779, 0.0111453626, -0.0144021697, -0.00141487084, -0.003850532, -0.00383664365, -0.0033279846, 0.0127077969, -0.00431926223, 0.000897531572, -0.00580878276, 0.000792067265, -0.00477410387, 0.0085621383, -0.0237628855, -0.01063844, 0.0158048887, 0.00684693316, -0.0102287345, 0.00346165942, -0.000167853155, -0.00656222319, 0.0136591457, -0.0169437286, -0.0105759427, -0.00190269749, 0.000909683818, 0.00986069534, -0.0120967114, 0.00175426621, 0.0102565112, 0.00788855553, 0.00862463564, 0.00635389844, -0.00942321308, 0.0288321171, -0.00695803948, 0.0198741611, -0.00472896686, -0.00535394065, 0.00182631181, 0.0076455106, 0.032859724, 0.0124647515, -0.00177336263, -0.00762467831, 0.0118050575, 0.0100204106, -0.0297209676, -0.00191832182, 0.0208602306, 0.0033002079, 0.0232906844, 0.00683998922, 0.000141704091, 0.00952043105, 0.0199574903, 0.00302591384, -0.0180686824, 0.00715247588, 0.00768023124, 0.00934682786, 0.0269155297, -0.0126175229, 0.0109648146, 0.0145410532, -0.0234851204, -0.00105551095, -0.0045171706, -0.0194575116, 0.0226518214, 0.0210268907, 0.00655875076, -0.0138258049, -0.0124716954, 0.00699623255, 0.00856908318, -0.00820798706, 0.0234851204, -0.00785383489, -0.0154160159, 0.00974264462, -0.013541095, -0.0240128748, -0.0158187766, -0.00540254964, 0.00507617462, 0.0146104945, -0.00244434131, -0.0164715275, -0.0192908533, 0.00754829263, 0.0076732873, -0.0168881752, -0.0109509267, -0.0095968172, 0.00144611951, 0.0212629922, 0.000884077279, 0.0193047412, 0.00496506831, -0.00733996788, -0.00790244434, 0.00910378247, 0.00622195937, -0.0103884507, -0.0053018597, 0.00207456527, 0.00652750209, -0.00839547906, -0.026318334, -0.00208498142, -0.00549976807, -0.0149299251, -0.00776356133, 0.00195651455, 0.00618723873, -0.0300265104, -0.00444078492, -0.0113259107, 0.025012834, -0.0158187766, -0.0331652686, 0.00276030018, -0.00734691229, 0.012978619, 0.00683998922, -0.00870796572, 0.0131799988, 0.00791633222, 0.00584697537, 0.0326652862, -0.00706220185, -0.0151521387, 0.0231934655, 0.0127216857, -0.00353978109, -0.00309709157, -0.0273877326, -0.00797188561, -0.018388113, 0.00522547401, 0.00226900144, 0.00106505922, -0.0137633076, 0.0170548353, -0.00444425689, 0.0263322219, -0.014186901, 0.00854130648, -0.00862463564, 0.0120619908, -0.0182770062, -0.0165826343, -0.0069823442, 0.00574281299, 0.016804846, -0.0357762687, 0.00852741767, 0.0277071632, -0.0132286083, 0.00203116424, 0.0061316858, 0.0044893939, -0.0202769227, -0.00633653812, 0.00250163046, -0.00529838726, -0.032859724, -0.0186381023, -0.00325680687, 0.00583308702, 0.00127338374, 0.0134299891, 0.00610738108, 0.0150965853, 0.014193845, 0.0221796185, -0.00157024618, -0.0229156986, 0.011020368, -0.00616640644, -0.0164715275, -0.0232351311, 0.0160826538, 0.0191103052, -0.00585044734, 0.0115342354, -0.0247489549, -0.0205408, -0.0217074174, -0.0233045723, 0.0327486172, -0.00315785292, 0.0152354678, -0.0127633503, -0.01092315, -0.0146521591, -0.0067879078, -0.0146521591, 0.00888157, 0.0027030108, -0.00157111429, 0.0293043181, 0.0273044035, 0.00651361374, 0.00847880915, -0.00385747617, 0.0170965, 0.00479493663, 0.017929798, 0.0109023172, 0.0114370175, -0.00535394065, 0.015499346, -0.0763301104, -0.00220824, 0.0192214102, 0.0117008947, 0.000231544051, 0.0265961, 0.00157458626, -0.0074580186, 0.00881907251, -0.00719414093, -0.00656569516, -0.00223948876, 0.0156937819, -0.00310403574, 0.00351721258, 0.00591294467, 0.0194852892, -0.00587475207, 0.00872185454, 0.00704831351, -0.00941626914, 0.00180895138, 0.00568031566, -0.00101211, 0.00183499197, -0.00652403, -0.00347554777, -0.000413394, -0.0154715693, -0.00313875638, 0.00651014177, 0.00621501543, -0.00931210723, 0.0178464688, -0.0151382498, -0.0278460477, 0.00944404583, -0.0182075649, -0.00715247588, 0.00192873809, -0.0112286927, -0.0154160159, -0.0159437712, -0.00542338239, 0.0042012115, 0.0223879442, -0.00984680653, 0.00141921092, -0.017457597, 0.00124821125, 0.00537477294, 0.0238601044, -0.0175964795, 0.0018992254, -0.0145410532, 0.013818861, 0.00280370121, 0.0105203893, 0.00570114842, 0.0168326236, -0.00611432502, -0.0493034758, -0.0144299464, 0.00750662759, 0.00872879848, 0.029776521, 0.0111939721, 0.00270821899, 0.0155965639, -0.00376373, -0.0280821472, -0.0216518641, -0.00551712839, 0.00127164775, -0.00233323476, 0.0190408621, -0.0181520116, 0.00362137496, -0.000595895, -0.0165548567, 0.0179992411, 0.0122703156, 0.00702053681, -0.00190096139, 0.00537824538, 0.00506575825, 0.0164437499, 0.0102148466, 0.0193325169, -0.00655875076, 0.0241517592, 0.0109856473, -0.0146243824, -0.00026561378, 0.00590600073, 0.00535394065, -0.0145549411, -0.00263009733, 0.0209157839, 0.0145827178, 0.0156382285, -0.00275856419, -0.00169350486, -0.000740420131, 0.0146938246, -0.0140619064, -0.00488868263, 0.00230372231, 0.0115689561, 0.0104787247, 0.0272210725, -0.00573934102, -0.026318334, -0.00271863514, 0.0171103887, 0.0190408621, 0.00687818183, -0.0204158053, 0.0058435034, 0.0209713373, 0.0018992254, -0.0060969647, -0.00625668047, -0.000347858586, 0.0021839356, -0.0238601044, 0.00509353494, -0.0103467852, -0.00119786605, 0.00428106915, 0.0139230238, 0.0137494197, -0.0072635822, -0.0175270382, -0.0245267432, -0.0383872688, -0.0027776605, 0.00121522648, -0.00523241796, 0.0230268054, -0.010082908, 0.000146369697, 0.0209435597, -0.0244989656, 0.00490951492, 0.00669763377, -0.0132424962, 0.0216518641, 0.0114578493, -0.00578100607, -0.0272766259, -0.00808993634, 0.0147771537, 0.0119231082, 0.00373942545, -0.0366651192, 0.00681915646, 0.00385747617, 0.000127707288, -0.0191797465, -0.00341131445, 0.0128119588, -0.00387136429, -0.00305889873, -0.00306063471, 0.00841631182, -0.00648583751, -0.00983986259, 0.0131522231, -0.00422551623, 0.0280265957, 0.0201935917, 0.0341096707, -0.0118606109, -0.00300681754, -0.0223462787, 0.00988152716, -0.013346659, -0.0094093252, 0.0113467434, -0.00389219681, -0.00911767, -0.0121383769, 0.00304848235, 0.0177770276, 0.0093815485, 0.0149854785, 0.0041352422, 0.00178464688, -0.00185582449, 0.0206657946, 0.0135549838, 0.00402066344, 0.0200963747, -0.0174159314, -0.00868713297, -8.95144476e-05, 0.0109648146, -0.00754829263, 0.000421640201, -0.00221865624, -0.0176798087, 0.0257489122, 0.0172770489, -0.00431231782, -0.0179714635, 0.0102009587, 0.0120897675, -0.0115967328, -0.0143882819, -0.0153882392, -0.0108189881, -0.0141174598, 0.0220407359, -0.00449633785, -0.0112842461, -0.00586433569, -0.00978430919, 0.00210060575, 0.0127980709, 0.0273599569, 0.0130827809, 0.0160687659, -0.0226240456, 0.0232629068, 0.0288598929, 0.000266264804, 0.0120064374, -0.0414149202, 0.00774272857, -0.00617335038, -0.0055622654, 0.0279432647, -0.00651361374, -0.00153986551, 0.000575930579, 0.00282279751, 0.00274293986, -0.0232351311, 0.0186519902, 0.00454841927, 0.0355818309, 0.00152250519, -0.00361443078, -0.00778439362, -0.0110273119, 0.0273321792, -0.000819843845, 0.0184714422, 0.00376025797, 0.001925266, 0.00360054243, -0.00243566115, 0.00990236, 0.00569420401, -0.00565253897, -0.0246378481, 0.0167631805, -0.0101384614, 0.00877046306, -0.00836770236, -0.00713858753, -0.00305021857, -0.00101818622, 0.00329499971, -0.0249017272, 0.00139751041, -0.0232767947, 0.000136495975, 0.016054878, 0.00251378282, 0.00490604294, -0.00528102694, -0.0120758796, -0.00180547941, 0.00167961663, -0.00559004163, 0.0167215168, -0.00841631182, -0.0185547732, -0.0330541618, -0.0162076484, -0.0150271431, 0.0242906418, 0.00190096139, -0.00552407233, 0.0167492926, 1.84996534e-05, 0.00902045239, -0.0123953102, 0.0086176917, -0.00295300037, 0.0176242553, 0.0212768801, 0.00154680968, -0.0131244464, 0.0103190085, 0.0109578706, 0.00900656451, -0.0312209036, 0.0111661954, 0.00838853512, -0.0122703156, -0.00528797135, -0.0136799784, -0.0113606313, -0.0211379975, -0.0119717168, -0.0127355736, 0.00288876705, -0.0209018961, 0.0142355105, -0.0134230442, -0.00421857182, -0.00783300307, -0.00375678577, -0.0115272915, -0.0186103247, 0.00364915142, 0.0121453209, 0.00439564791, 0.00943015795, 0.00646500476, 0.00791633222, 0.0212074388, -0.0195408426, -0.0153604625, 0.0140202418, -0.014186901, 0.00386789232, 0.00502062123, 0.00278460467, -0.0268044248, 0.0181381237, 0.000830694102, 0.00450328225, -0.0032029897, -0.0252350457, 0.00997874513, 0.0290821064, -0.00173690589, -0.00211275811, -0.0294432025, -0.0200408213, 0.00246170163, 0.0155548993, 0.0090621179, 0.00529838726, 0.0301376171, -0.00419773953, -0.0122564267, -0.000548153941, 0.0072913589, 0.0298598502, 0.0170131717, -0.00379497861, -0.0183186717, -0.0217351932, 0.00328284758, 0.011020368, 0.0204852466, -0.0200963747, 0.0133813797, -0.0311931279, 0.0283599142, -0.01063844, 0.0120689347, 0.00555184903, -0.0175409261, -0.0058157267, 0.0111592514, -0.0171103887, -0.0192491878, 0.0585530847, 0.0138744144, 0.00332451239, -0.0191936344, 0.0198324956, -0.00560740242, -0.00974958856, 0.0303876065, -0.0297487434, -0.0164020862, -0.022221284, 0.0130758369, 0.0197075009, 0.00484007364, -0.00256412779, 0.000865414855, -0.0153743513, -0.0168326236, 0.0181381237, -0.0241100937, -0.00378456246, -0.000421423174, 0.000460918032, -0.0188880917, 0.00829131715, -0.0143327285, 0.0148882605, 0.00950654317, -0.0184297785, 0.0212491024, 0.00465605361, 0.0147354892, -0.00810382422, -0.0242073108, 0.0165548567, -0.00727052661, -0.00921488926, 0.0156243406, 0.00384705979, 0.0111036981, 0.0182770062, 0.0134299891, 0.0180964582, 0.00750662759, 0.00384705979, -0.0159021057, -0.00444425689, -0.00165791612, 0.0236517787, -0.0247906204, 0.0169020649, -0.0216101985, 0.00621154346, -0.0128397355, -0.00307799503, 0.0110967541, 0.0268599782, 0.0121522648, 0.00318042142, 0.00843714364, -0.0257072486, -0.00379150664, -0.00515603228, -0.0148604838, -0.00126383558, 0.00309535535, -0.0134716537, 0.00968014728, -0.020818565, -0.0033470809, 0.00534352427, -0.013811917, 0.00170739321, -0.0248461738, 0.00836770236, -0.00668721786, 0.00606224407, -0.00762467831, 0.0174298193, 0.0124300309, 0.0165826343, 0.00724275, -0.0177075863, 0.00472549489, 0.0092218332, -0.00179679913, -0.011950884, -0.0174437091, -0.0168187339, 0.00508311857, 0.00548587972, 0.000347207562, 0.00916628, 0.0318042114, 0.00469424622, -0.0120203262, -0.008964899, 0.00754829263, -0.00979125313, -0.00101211, 0.0314986706, -0.014471611, -0.0095412638, -0.00818715431, -0.0310264677, 0.00849964097, 0.0185964368, 0.0142216217, -0.0182492305, -0.00127859181, -0.0023019861, 0.000112191447, 0.0253322646, 0.0200408213, 0.0092218332, -0.00601016311, -0.0135619277, -0.025762802, -0.0243878588, 0.00686776545, 0.000574194535, 0.00166659628, -0.0212629922, 0.0191519689, 0.00928433053, -0.00282974169, 0.0233601257, -0.00364567945, -0.00174819015, -0.00273946766, 0.0213185437, -0.00487132231, 0.0116522862, -0.036776226, 0.00420815591, 0.0230406933, -0.0216101985, 0.0200130437, -0.0011874499, 0.0206796825, -0.0072358055, -0.0114439614, -0.0182075649, 0.0211518854, -0.00323076639, 0.0120203262, -0.000777744921, -0.00881212763, -0.000929648231, -0.00628792914, 0.00305889873, -0.00674277078, 0.013811917, 7.29135863e-05, 0.0374150872, -0.0183742251, 0.0129855629, 0.0179159101, 0.0216657519, -0.00636431482, 0.0129161216, -0.0125758583, 0.0183742251, 0.00605877209, 0.00998569, -0.0107009374, -0.00756912492, -0.00179159106, 0.0231240243, -0.00107287138, 0.000806823606, 0.0237489976, -0.0036352633, 0.0209435597, -0.0156243406, 0.0171103887, 0.00983291864, -0.00819409825, -0.0110689774, -0.0418037921, 0.000559438195, 0.0214296505, 0.00696151191, 0.0361929163, 0.0207769014, -0.00728441495, -0.0210407786, -0.00791633222, 0.0113259107, 0.0108189881, 0.000692245085, -0.00307625905, 0.0110620335, -0.00791633222, -0.0316375531, -0.00613515778, 0.0188047625, -0.00138362218, 0.0124994721, 0.00246690982, 0.000209518068, -0.000480014452, 0.00870796572, 0.0134299891, -0.0145271644, 0.000751704385, -0.0218185242, -0.00230893027, -0.000864112808, -0.00771495234, -0.0103398412]
20 Jun, 2021
unordered_multimap operator= in C++ 20 Jun, 2021 The unordered_multimap::operator= is a built-in function in C++ STL which does three types of tasks which are explained below. Syntax (copying elements from different container) : unordered_multimap_name1 operator= (unordered_multimap_name2) Parameters: The function does not accepts any parameter. The container to the right is the one from which the elements are to be copied to the container in the left. Return Value: It does not return anything. Below program illustrates the above function: CPP // C++ program to illustrate the // unordered_multimap::operator= #include <bits/stdc++.h> using namespace std; int main() { // declaration unordered_multimap<int, int> sample1, sample2; // inserts key and element // in sample1 sample1.insert({ 10, 100 }); sample1.insert({ 50, 500 }); cout << "Key and Elements of Sample1 before copy  are:"; for (auto it = sample1.begin(); it != sample1.end(); it++) { cout << "{" << it->first << ", " << it->second << "} "; } cout << "\nThe size of sample2 before copy: " << sample2.size(); // operator= to copy sample2 = sample1; cout << "\nKey and Elements of Sample2 after copy are: "; for (auto it = sample2.begin(); it != sample2.end(); it++) { cout << "{" << it->first << ", " << it->second << "} "; } return 0; } Output: Key and Elements of Sample1 before copy are:{50, 500} {10, 100} The size of sample2 before copy: 0 Key and Elements of Sample2 after copy are: {50, 500} {10, 100} Syntax (For moving elements from different container): unordered_multimap_name1 operator= (unordered_multimap_name2) Parameters: The function does not accepts any parameter. The container to the right is the one from which the elements are to be moved to the container in the left. The elements in the right container are destroyed after operator= is used. Return Value: It does not return anything. Below program illustrates the above function: CPP // C++ program to illustrate the // unordered_multimap::operator= #include <bits/stdc++.h> using namespace std; // Function to merge two lists unordered_multimap<char, char> merge(unordered_multimap<char, char> a, unordered_multimap<char, char> b) { unordered_multimap<char, char> temp(a); temp.insert(b.begin(), b.end()); return temp; } int main() { // declaration unordered_multimap<char, char> sample1, sample2, sample3; // inserts key and element // in sample1 sample1.insert({ 'a', 'A' }); sample1.insert({ 'g', 'G' }); // inserts key and element // in sample1 sample2.insert({ 'b', 'B' }); sample2.insert({ 'c', 'C' }); sample2.insert({ 'd', 'D' }); cout << "Key and Elements of Sample1 are: "; for (auto it = sample1.begin(); it != sample1.end(); it++) { cout << "{" << it->first << ", " << it->second << "} "; } cout << "\nKey and Elements of Sample2 are: "; for (auto it = sample2.begin(); it != sample2.end(); it++) { cout << "{" << it->first << ", " << it->second << "} "; } // merging and moved sample3 = merge(sample1, sample2); sample1 = sample3; cout << "\n\nKey and Elements of Sample1 are: "; for (auto it = sample1.begin(); it != sample1.end(); it++) { cout << "{" << it->first << ", " << it->second << "} "; } return 0; } Output: Key and Elements of Sample1 are: {g, G} {a, A} Key and Elements of Sample2 are: {d, D} {b, B} {c, C} Key and Elements of Sample1 are: {c, C} {b, B} {d, D} {a, A} {g, G} Syntax (For assigning the elements from different list): unordered_multimap_name1 operator= (intitializer_list il) Parameters: It does not accepts any parameter, it has the list to the right which will be assigned to the container. Return Value: It does not returns anything. Below program illustrates the above function: CPP // C++ program to illustrate the // unordered_multimap::operator= #include <bits/stdc++.h> using namespace std; int main() { // declaration by using operator= unordered_multimap<int, int> sample1 = { { 1, 2 }, { 3, 4 }, { 5, 6 } }; cout << "Key and Elements of Sample1 are: "; for (auto it = sample1.begin(); it != sample1.end(); it++) { cout << "{" << it->first << ", " << it->second << "} "; } // declaration by using operator= unordered_multimap<char, char> sample2 = { { 'a', 'A' }, { 'b', 'B' }, { 'c', 'C' } }; cout << "\n\nKey and Elements of Sample1 are: "; for (auto it = sample2.begin(); it != sample2.end(); it++) { cout << "{" << it->first << ", " << it->second << "} "; } return 0; } Output: Key and Elements of Sample1 are: {5, 6} {3, 4} {1, 2} Key and Elements of Sample1 are: {c, C} {b, B} {a, A} Learn C++ Online – Master everything from basics to advanced concepts. Apply your knowledge with practical exercises and boost your skills. Take the Three 90 Challenge: finish 90% in 90 days for a 90% refund. Start now and level up your C++ programming!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum/Algorithm for Dynamic Time out timer Calculation/Difference between Round trip time (RTT) and Time to live (TTL)/Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms/Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm/Round Robin Scheduling Algorithm with Different Arrival Time/Selfish Round Robin CPU Scheduling/Find the order of execution of given N processes in Round Robin Scheduling/Calculate server loads using Round Robin Scheduling/set::lower_bound() Function in C++ STL/Implementation of lower_bound() and upper_bound() in List of Pairs in C++/Difference between std::set::lower_bound and std::lower_bound in C++/Difference between std::set vs std::vector in C++ STL/std::minmax() and std::minmax_element() in C++ STL/std::rotate vs std::rotate_copy in C++ STL/std::bitset::to_ullong and std::bitset::to_ulong in C++ STL/std::upper_bound and std::lower_bound for Vector in C++ STL/std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++/std::string::append vs std::string::push_back() vs Operator += in C++/Vector push_back() in C++ STL/vector :: cbegin() and vector :: cend() in C++ STL/unordered_multiset cend() function in C++ STL/unordered_multiset bucket() function in C++ STL/unordered_multiset emplace_hint() function in C++ STL/unordered_multiset end() function in C++ STL/unordered_multiset size() in C++ STL/unordered_multiset emplace() function in C++ STL/unordered_multiset find() function in C++STL/unordered_multiset erase() function in C++ STL/unordered_multiset clear() function in C++ STL/unordered_multiset swap() function in C++ STL/unordered_multiset bucket_size() function in C++ STL/unordered_multiset bucket_count() function in C++ STL/unordered_set bucket_count() function in C++ STL/unordered_set cbegin() function in C++ STL/array::cbegin() and array::cend() in C++ STL/array::rbegin() and array::rend() in C++ STL/multimap rbegin in C++ STL/vector rbegin() and rend() Functions in C++ STL/multiset rbegin() and rend() function in C++ STL/map rbegin() function in C++ STL/map upper_bound() function in C++ STL/Set upper_bound() in C++ STL/multimap upper_bound() function in C++ STL/multimap empty() function in C++ STL/multimap value_comp() function in C++ STL/multimap swap() function in C++ STL/multimap::swap() in C++ STL/multimap equal_range() in C++ STL/unordered_set equal_range in C++ STL/set vs unordered_set in C++ STL/unordered_set count() function in C++ STL/unordered_set bucket() function in C++ STL/unordered_set emplace() function in C++ STL/set::emplace() in C++ STL/multiset::emplace() in C++ STL/multiset find() function in C++ STL/multiset cbegin() and cend() function in C++ STL/multimap::cbegin() and multimap::cend() in C++ STL/multimap::begin() and multimap::end() in C++ STL/set::begin() and set::end() in C++ STL/unordered_multimap begin() and end() function in C++ STL/unordered_multimap empty() function in C++ STL/unordered_multimap find() function in C++ STL/unordered_multimap equal_range() function in C++ STL/unordered_multimap bucket_count() function in C++ STL/unordered_multimap bucket_size() function in C++ STL/unordered_multimap operator= in C++
https://www.geeksforgeeks.org/unordered_multimap-operator-in-c/?ref=next_article
PHP
unordered_multimap operator= in C++
unordered_multiset clear() function in C++ STL, What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, jQWidgets jqxTreeMap width Property, Round Robin Scheduling Algorithm with Different Arrival Time, Difference between Flow and TypeScript, set::begin() and set::end() in C++ STL, unordered_multiset emplace() function in C++ STL, jQWidgets jqxTree destroy() Method, unordered_set bucket_count() function in C++ STL, jQWidgets jqxTree collapseAll() Method, Find the order of execution of given N processes in Round Robin Scheduling, jQWidgets jqxScrollView buttonsOffset Property, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Vector push_back() in C++ STL, jQWidgets jqxListBox enableHover Property, Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm, std::rotate vs std::rotate_copy in C++ STL, Selfish Round Robin CPU Scheduling, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxSlider buttonsPosition Property, std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++, std::upper_bound and std::lower_bound for Vector in C++ STL, Difference between Round trip time (RTT) and Time to live (TTL), jQWidgets jqxSlider rtl Property, Difference between std::set::lower_bound and std::lower_bound in C++, jQWidgets jqxTooltip opacity Property, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, unordered_multiset erase() function in C++ STL, multiset find() function in C++ STL, set vs unordered_set in C++ STL, jQWidgets jqxToolBar height Property, PHP, std::minmax() and std::minmax_element() in C++ STL, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, unordered_set emplace() function in C++ STL, unordered_multimap empty() function in C++ STL, unordered_set bucket() function in C++ STL, map rbegin() function in C++ STL, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, map upper_bound() function in C++ STL, Node.js date-and-time Date.transform() Method, unordered_multiset size() in C++ STL, TypeScript Optional Parameters, jQWidgets jqxToolBar theme Property, Difference between std::set vs std::vector in C++ STL, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, Steps to Diagnose and Resolve a Slow Network, How to use Optional Chaining with Arrays and Functions in TypeScript ?, Calculate server loads using Round Robin Scheduling, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, jQWidgets jqxScrollView showButtons Property, set::emplace() in C++ STL, Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms, jQWidgets jqxScrollView disabled Property, multimap::cbegin() and multimap::cend() in C++ STL, jQWidgets jqxSplitter destroy() Method, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, set::lower_bound() Function in C++ STL, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, jQWidgets jqxTree collapseItem() Method, multimap upper_bound() function in C++ STL, std::string::append vs std::string::push_back() vs Operator += in C++, unordered_multiset swap() function in C++ STL, unordered_multiset cend() function in C++ STL, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), Set upper_bound() in C++ STL, jQWidgets jqxSortable opacity Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, multiset cbegin() and cend() function in C++ STL, multimap rbegin in C++ STL, vector :: cbegin() and vector :: cend() in C++ STL, multimap swap() function in C++ STL, jQWidgets jqxSlider height Property, jQWidgets jqxSwitchButton onLabel Property, unordered_multiset bucket_size() function in C++ STL, unordered_set cbegin() function in C++ STL, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, jQWidgets jqxToolBar tools Property, multimap empty() function in C++ STL, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTree width Property, multimap::swap() in C++ STL, unordered_multimap bucket_size() function in C++ STL, multimap equal_range() in C++ STL, Implementation of lower_bound() and upper_bound() in List of Pairs in C++, jQWidgets jqxTree clear() Method, TLS Handshake?, multiset rbegin() and rend() function in C++ STL, unordered_multimap operator= in C++, Algorithm for Dynamic Time out timer Calculation, Adhoc TCP, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, jQWidgets jqxTabs position Property, Differences between Wireless Adhoc Network and Wireless Sensor Network, jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, unordered_multimap begin() and end() function in C++ STL, std::bitset::to_ullong and std::bitset::to_ulong in C++ STL, unordered_multiset emplace_hint() function in C++ STL, multimap::begin() and multimap::end() in C++ STL, unordered_multiset bucket_count() function in C++ STL, unordered_multiset find() function in C++STL, unordered_multimap bucket_count() function in C++ STL, unordered_multiset bucket() function in C++ STL, Impact of Three-way Handshake and Slow Start Algorithm, array::rbegin() and array::rend() in C++ STL, multimap value_comp() function in C++ STL, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, multiset::emplace() in C++ STL, unordered_set equal_range in C++ STL, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, unordered_multimap equal_range() function in C++ STL, unordered_set count() function in C++ STL, vector rbegin() and rend() Functions in C++ STL, array::cbegin() and array::cend() in C++ STL, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, unordered_multiset end() function in C++ STL, How to Sort an Array Having Optional Properties in TypeScript ?, unordered_multimap find() function in C++ STL
GeeksforGeeks
[-0.0467227623, 0.013568406, -0.0130982846, 0.0247645099, 0.0136551969, 0.00218063663, -0.0244607404, 0.0142627377, -0.0346587412, 0.035642378, -0.00785463117, 0.0228261668, -0.0040285727, -0.0415442027, -0.0126209315, -0.0159551725, -0.00887443125, 0.0465491787, -0.0539553873, -0.00435765693, 0.0111310109, -0.00351143978, -0.0124401161, -0.00888889655, -0.0255601, 0.00550764427, 0.00664678309, 0.00300515606, 0.0211481974, -0.00262001855, -0.0183853339, 0.011297361, 0.0103571201, -0.0164469909, -0.00321128569, 0.0131272152, 0.0376096517, 0.0229997505, -0.0366260149, -0.00905524753, 0.0068926923, 0.016548248, 0.0275273733, 0.0146171367, -0.0163602, 0.02184253, 0.00442998344, -0.0246053915, -0.0139878979, 0.0205985177, 0.0297984183, 0.000737727794, 0.0223198831, -0.000116061041, 0.00710243825, 0.0338776186, -0.00206491468, 0.009887, -0.0187035706, -0.00985806901, -0.0355555862, -0.0555465668, 0.0324310921, -0.0268619712, -0.0146533, 0.00154416554, -0.0463177338, 0.0298562795, -0.00710605457, -0.0119482977, -0.0357870311, 0.0664823, 0.000217769833, -0.00862128939, -0.0315053165, 0.0180526339, -0.0206274483, -0.0209022872, 0.000389883731, 0.0405894965, -0.0370889045, -0.0201500952, -0.00290932367, -0.0353820063, 0.0290606897, -0.0178645849, -0.00510623353, -0.0297405571, 0.0479089133, -0.00302685378, -0.0538685955, -0.032199651, 0.0161576848, 8.2666651e-05, -0.0216689464, 0.0455366112, 0.0631842166, 0.0195136238, -0.019774, 0.0396926478, -0.019050736, 0.00959046185, -0.0126787927, 0.013025959, 0.00659253821, 0.0259361956, 0.0314185247, -0.00422385335, 0.00175481581, 0.0184142645, 0.0403291211, 0.0166784339, -0.0252997242, 0.0477353297, -0.0205117259, -0.0130404243, -0.0206997748, -0.00451677479, 0.0199331157, -0.0204972606, 0.0311581511, 0.0246921834, 0.0176042113, -0.0176620726, -0.0424989089, 0.013235705, -0.0141325509, -0.0175608154, 0.0158394501, -0.0176331419, 0.00574270496, 0.00378627959, -0.0197306033, -0.0142916683, -0.0300587919, 0.0120350895, -0.00120694435, 0.0402712598, -0.00334508927, -0.0149136744, -0.038853664, -0.00273574074, -0.00359642319, 0.0188192911, -0.0104945395, -0.0161287561, 0.00247175, 0.0359316841, 0.0108634038, -0.0197884645, -0.0355555862, -0.00737004541, 0.0335015208, 0.0209022872, 0.0241280384, 0.00329446094, -0.00643703667, 0.021321781, 0.00395986252, -0.014298901, 0.0275563039, -0.0358448923, 0.03914297, 0.0255167037, -0.0272525325, 0.0361920595, 0.0118470406, -0.0140529918, -0.00957599655, 0.0521327667, 0.0186023135, 0.00927222613, 0.0243016221, 0.00892506, 0.0149281397, -0.0492975749, 0.0204104688, 0.0017738014, -0.0104800742, 0.00896122307, 0.0463177338, -0.000420170341, 0.0143639948, 0.0175174195, 0.0319971368, -0.012881306, 0.00101437571, -0.0250682812, 0.0295959041, -0.00404303754, 0.00478438195, 0.0340512022, 0.0188771524, 0.0659615472, 0.0374650024, 0.0293066, -0.0148702785, 0.00748576736, 0.00212820014, 0.051380571, 0.0258494038, -0.0124473488, -0.0370021127, 0.0071241362, 0.0261821058, -0.0241859, -0.0196148809, -0.0240412485, 0.0363367125, -0.00375373266, -0.0408498682, 0.0143278316, 0.0352662839, 0.00474098604, 0.00467227632, 0.00552934222, -0.0372046269, 0.0119049018, 0.0120857172, -0.0343115777, -0.00837538, -0.0332122184, 0.00486032432, -0.0276286304, -0.0143205989, -0.0525377914, 0.0178935155, 0.0140819224, 0.0150872571, 0.0162444767, 0.0440900847, 0.0349480473, -0.0488057584, -0.00707712397, 0.00630684942, -0.0053521432, -0.0581213795, -0.0151595837, 0.0032818038, 0.0169532746, 0.0180526339, 0.0312449429, -0.0159696378, -0.00136787037, 0.0187469665, 0.0313317329, -0.000526173506, -0.000441868237, 0.0110731497, -0.00652021216, 0.0388247333, 0.0151885143, 0.000426950923, -0.00197812309, -0.0288581755, 0.0376964435, 0.0100388844, -0.0219293218, -0.0330097042, -0.0515541546, 0.00636832695, 0.0179079808, -0.0163891297, -0.00382605894, 0.0291330162, -0.0215676893, 0.0302613061, -0.0227538403, -0.0194846932, -0.0204538647, 0.022594722, 0.00064460776, 0.00697225099, 0.0218280647, 0.0201356299, 0.0250248853, -0.00554380752, 0.0195570197, 0.0093662506, -0.0229708198, 0.0461152196, 0.00335413, -0.0132067744, -0.00632493105, 0.017068997, -0.00743513927, -0.0211192667, 0.00327818748, -0.0421517417, -0.0282506365, -0.00967002, 0.00930115674, -0.00617304584, 0.01267156, 0.0201790258, 0.03734928, 0.00345719513, -0.059944, -0.0565302037, 0.00780400308, 0.0104800742, -0.0204394, 0.0252273977, -0.0435982682, -0.00820179749, 0.00314800022, 0.0338197574, 0.00168068137, -0.0137130581, -0.0348612554, 0.0151595837, -0.0179369114, -0.0353820063, 0.0117023885, -0.0183274727, 4.18418713e-05, 0.051669877, -0.00729771936, -0.0345719494, 0.00758702448, -0.0054750978, -0.0105451681, -0.00200162921, 0.0276430957, 0.0036380107, -0.0329807736, -0.0250972118, 0.0558648, -0.0201500952, -0.0698960945, -0.0376675129, 0.0187903605, -0.024345018, 0.00125757279, 0.0204394, -0.0261097793, 0.00718199741, 0.0181394257, -0.020801032, -0.00673719076, -0.0235205, -0.0286411978, -0.00342103187, 0.0359606147, 0.0250393506, 0.00355121912, -0.0022728527, -0.0130621223, 0.0194991585, 0.0549390242, 0.00120875251, -0.0199041851, 0.00190037244, 0.0261097793, 0.033559382, -0.0231444016, -0.0288292468, -0.00872254651, 0.00278094457, 0.0232022628, -0.0105451681, 0.0316789, -0.00756532652, -0.0340512022, -0.0199186504, 0.00514239678, -0.0322864391, -0.00828135666, 0.0297405571, -0.0205551218, 0.00724347448, -0.037493933, 0.0147473235, 0.0163602, -0.0423831865, 0.011087615, 0.0283084959, 0.0336751044, 0.00723624183, -0.000253367907, -0.0185444523, 0.0115215722, -0.0153910276, -0.00441913446, -0.0135177774, -0.00581141468, 0.00470120646, 0.00993039459, -0.004231086, 0.00243016216, -0.00557997078, 0.00277732825, -0.0246921834, 0.00787632912, 0.00290209102, 0.0170111358, -0.0296103694, -0.0235205, -0.0189350136, -0.00150257803, 0.0163168032, -0.0474170931, -0.0171413235, 0.0208733585, -0.00118434243, -0.0153476316, -0.0111961048, -0.0137853846, 0.0194412973, 0.039287623, 0.0135033121, 0.0249670241, -0.0322285816, 0.0180671, 0.0070952056, -0.00712775253, -0.0307820551, 0.0627791882, -0.00311364536, -0.0236796159, -0.00891782716, -0.029451251, 0.0170834623, 0.00320405327, 0.021321781, 0.0257336814, 0.000615677272, 0.0153331663, 0.0198173951, -0.00264352467, 0.0278600734, 0.0188192911, 0.0117240865, 0.0292342734, 0.000415423943, -0.0432511, 0.0146243693, -0.0128379101, -0.0159407072, -0.0111382436, 0.0356134474, 0.02184253, 0.00228912593, -0.0163168032, 0.0114492467, 0.0136262663, -0.0310424287, -0.00567399478, 0.0100967456, 0.0169532746, -0.0367706679, -0.00299973157, 0.00371395331, -0.0170545317, 0.00670102751, -0.0260085221, 0.0442058071, -0.00660700351, 0.0424699783, 0.0221318342, 0.00778953778, 0.0387668721, 0.0108706364, -0.00127022993, 0.00947473943, 0.0098002078, 0.000154484369, 0.0256613549, -0.0249091629, -0.0350927, 0.00330169359, -0.0494711585, 0.0290896203, -0.0105740987, 0.0182406828, 0.033096496, -0.0101039782, 0.0120350895, -0.022884028, -0.0173727665, 0.0283084959, -0.010588564, -0.0288003162, -0.0182696115, -0.0019112213, -0.0435982682, 0.034456227, 0.0240846425, -0.0157237276, 0.00480246358, -0.00211192667, -0.00770274643, 0.0104511436, 0.0138070825, 0.000289531046, 0.00577886775, -0.00990869757, -0.00403942121, -0.0100750476, 0.00855619647, 0.0282072406, 0.0174016971, -0.00841877609, 0.0330386348, 0.0133514274, -0.0559515916, -0.0180671, 0.0286122672, -0.0195280891, -0.000647772045, 0.000900913961, 0.0217846688, 0.0350927, 0.0097857425, 0.0180815645, -0.00506283808, 0.0160130337, -0.00341199106, 0.0055401912, 0.00428894721, 0.0110152885, -0.000505379692, 0.0135973366, 0.0301166531, 0.00511346618, 0.0313895941, -0.0191519931, -0.0126136988, 0.0220305771, -0.0233758464, -0.0135177774, 0.00940241292, -0.00778953778, 0.00348974182, -0.00391285028, -0.036539223, -0.00439382, -0.00264714099, -0.0209167525, 0.0219148565, -0.00591267133, -0.00312268618, -0.00797758624, -0.00639725756, -0.00788356178, 0.0012666136, 0.0119121345, -0.00854173116, 0.00458186818, 0.0128740733, -0.00641895505, 0.00425278395, 0.0134671489, -0.00702287955, 0.00599223049, 0.0270934161, -0.0254299119, -0.0304348879, -0.0125992335, -0.034890186, 0.0249380935, 0.00131181744, 0.0305506103, 0.0258928, 0.0142048765, -0.0279468652, 0.0114347814, -0.015318701, 0.000570021337, 0.00213543279, 0.00519302534, -0.0168954134, 0.0288437102, 0.0152608398, -0.032951843, 0.0222764872, 0.0101835374, 0.0556044243, -0.0357581, -0.00249706395, -0.00860682409, -0.00556188915, 0.0102703283, 0.0144001581, 0.0230720751, 0.00244824379, -0.0346587412, 0.00358014973, 0.0066757137, 0.0143712275, 0.0126136988, 0.0226670485, -0.0105451681, -0.0219582506, 0.00148630457, 0.000462662021, -0.00154959, -0.00977851, -0.0118470406, -0.00445891358, 0.0233613811, 0.0107042864, 0.00372118596, -0.0110948477, -0.0300877225, 0.0102775609, 0.0206563789, 0.00606094, 0.00136425404, -0.0266883895, -0.0259651262, 0.0113841528, 0.0185155217, -0.00690354127, 0.00573908864, 0.00483501, -0.0133152641, 0.0336461738, -0.0243594833, -0.051380571, -0.0127077233, -0.0293499958, -0.00425640028, 0.00308652292, 0.00961939245, 0.00812223833, -0.0281349141, 0.0150293959, -0.0186457094, -0.0112611977, -0.0166495051, 0.000725522754, 0.0313317329, -0.0313895941, 0.0626056045, 0.0104366792, 0.00838261284, 0.00321851834, -0.0115649682, 0.0180381685, -0.0216544811, 0.00414791098, 0.0162010808, 0.067697376, -0.0117096212, 0.00602116063, -0.0329807736, 0.0123099284, 0.000325694185, -0.029451251, -0.0589892939, -0.00245186, 0.0157237276, 0.00836091489, 0.00361812091, -0.0521906279, -0.0125992335, -0.000865202863, -0.0016183, 0.0189205483, -0.0165048521, -0.0343694389, -0.00147907191, 0.00434319163, 0.00849833526, -0.00812947098, -0.0340512022, -0.0204249341, -0.00191302947, 0.0237664077, -0.0298273489, -0.0232456587, 0.0289738979, 0.00399240945, -0.0245475322, -0.03280719, -0.0124401161, 0.0317946225, -0.00158394501, -0.0411391743, -0.0163312685, -0.0210035443, 0.0128885387, -0.0240123179, 0.00750746531, -0.00141488237, 0.0265292712, 0.0108344732, 0.0181972869, -0.0412259661, -0.0136985928, -0.0248513017, 0.00619112747, 0.0246053915, -0.00677335402, -0.00454208907, 0.0107621467, 0.0195859503, 0.00581503101, -0.00371395331, 0.0194557626, -0.0212205239, -0.0309845675, -0.0293210652, 0.0238965955, 0.0360763371, -0.000129509208, -0.0156803317, -0.0372624882, 0.0134888468, 0.0143350642, 0.000294051424, -0.00862852205, 0.0108923344, 0.0112033375, -0.0134382183, -0.00481692888, -0.0199909769, -0.00403942121, -0.0565302037, -0.0171413235, -0.0163891297, 0.02817831, -0.0131272152, 0.0159841031, -0.0189784095, -0.0278166775, -0.0272525325, -0.00608263817, -0.0037465, -0.0170256011, 0.00962662511, 0.0241425037, 0.0025513086, -0.00826689135, -0.00574993761, 0.0318814144, -0.0434825458, -0.00214628177, -0.0250393506, 0.0128451427, 0.00587650854, 0.0102992589, 0.0101763047, 0.00184703176, 0.0101401415, 0.0172281135, 0.000712413632, -0.0161432195, 0.0334725901, 0.0320839286, 0.0202947482, 0.00144019653, -0.021553224, 0.00968448538, -0.00664678309, 0.0192387849, 0.00357291708, 0.0138215479, -0.00954706594, 0.0271223467, -0.0108634038, -0.00829582196, 0.00459995, -0.0309556369, -0.0166350398, -0.0215242933, 0.0203381442, 0.0107187508, -0.00553295854, -0.0146822296, 0.0103932833, 0.0455655418, 0.0155935409, 0.00450954214, -0.0266739242, -0.0273393244, -0.0114058508, -0.00865745265, 0.0227249097, -0.0140963877, 0.040039815, 0.0208154973, -0.0026272512, 0.0212639198, -0.000918995473, 0.00237049302, 0.0234915689, 0.00311364536, -0.015362097, 0.0100244191, 0.014942605, 0.0182117522, 0.00373926735, 0.00283699739, -0.0279613305, 0.00162824488, -0.051380571, -0.0186891053, -0.0370599739, 0.00295271934, -0.00400325842, 0.0177777931, 0.0122014396, -0.0272814631, -0.0377253741, 0.0222475566, 0.0359027535, 0.00323298364, 0.0201645605, -0.0248079058, 0.0141831785, 0.000970075896, 0.00185064808, 0.0130114937, 0.00344092166, -0.0100027211, -0.0166350398, 0.00233975449, -0.0031443839, 0.0438007824, -0.019716138, 0.0220016465, -0.0133875897, -0.0173149053, 0.0379857495, 0.00902631693, 0.00918543432, 0.00398879312, -0.0446108356, 0.0193979014, 0.00215351419, -0.00982190575, 0.0173438359, 0.0133224968, 0.0129825631, 0.0358738229, -0.0245475322, -0.0135033121, 0.024865767, 0.010400516, -0.0167507604, -0.0304059591, 0.00308652292, 0.00339933415, 0.00337944436, -0.00364524336, 0.034456227, 0.0117964121, 0.0105957966, 0.0180960298, 0.0172715094, -0.0163168032, 0.0183274727, 0.0062092091, 0.00462164776, -0.0353820063, -0.0342537165, 0.0161576848, 0.0270500202, 0.019774, 0.0218859259, 0.0100316517, 0.0225223955, 0.0255167037, 0.0236651506, -0.00238857465, -0.0234337077, 0.00724347448, 0.00327818748, -0.00935178529, -0.00393816456, -0.0244607404, 0.0326046757, -0.028033657, 0.000760781812, 0.0201500952, -0.00148268824, 0.0106102619, 0.0211915933, 0.016779691, 0.0120640192, -0.0205261912, -0.069491066, 0.010942963, 0.0186023135, 0.0205551218, -0.0349769779, -0.0187614318, -0.0215966199, 0.0098002078, 0.000390561792, -0.0404159129, -0.0242582262, 0.0221173689, -0.0105957966, -0.00119971181, -0.00134526833, 0.0181828216, 0.00131543376, -0.000591267133, -0.0135756386, -0.0256902855, 0.00746407, 0.0181249604, 0.0170834623, 0.050165493, 0.0172715094, 0.0082307281, 0.0440611541, 0.00190037244, 0.0109068, -0.0337908268, -0.0495579503, 0.0100533497, 0.0175318848, -0.0143639948, 0.00103245734, 0.00574632129, 0.00478799827, 0.0111599416, 0.0306084715, 0.0062092091, 0.0193111096, -0.0213507116, -0.0188337564, -0.0188771524, 0.0299430694, -0.0102124671, 0.00431426102, -0.0326336063, 0.0152897704, 0.00928669143, -0.00396347884, -0.0199331157, -0.0177054685, -0.0120929498, -0.0194412973, -0.0729048699, -0.00369406352, -0.0183998, 0.0163602, 0.0166495051, 0.000617485435, -0.0450158603, -0.00684206374, -0.0631263554, 0.00812947098, -0.00954706594, 0.00765211787, -0.0271223467, 0.00910587609, 0.0152608398, -0.0188192911, -0.0149281397, -0.0186457094, -0.0304348879, -0.0118687386, -0.0278166775, 0.0182696115, 0.0151885143, -0.0217846688, 0.0088671986, 0.00349516631, -0.00304674357, 0.0119266, -0.00121508108, 0.00438297121, -0.0473881625, 0.016924344, 0.0145592755, -0.025531169, 0.0240412485, 0.0176186766, -0.026428014, 0.0495290197, -0.0245909281, -0.0294801816, -0.00120694435, 0.0261097793, 0.0181683563, -0.00170780369, 0.0192532502, -0.00655275863, 0.00852003321, 0.0243884139, 0.00536299171, -0.0254877731, -0.0161721501, 0.00454208907, -0.0119699957, 0.00185064808, -0.004137062, -0.0129680978, 0.0516120158, 0.0397215784, 0.0224790014, -0.0346876718, 0.0149715347, -0.0234192424, -0.00110749586, -0.0341379941, -0.0181249604, 0.0250972118, 0.0213651769, -0.0150583265, -0.00500497688, 0.0148558132, -0.00966278743, -0.00201428635, 0.00562698254, -0.039750509, -0.000564596849, 0.000111653659, 0.0168375522, 0.0187325012, -0.000800561276, -0.0173872318, 0.0499919094, 0.00578248408, -0.0253720507, -0.0198607892, -0.028930502, -0.00371756963, 0.0130982846, 0.0153910276, 0.0135756386, -0.0127004907, -0.0135250101, 0.0298273489, -0.0303770285, -0.0111237783, 0.00509176869, 0.00906971283, -0.0116879232, -0.0175318848, -0.00956153125, -0.0480535664, 0.0102486303, -0.00323298364, 0.0016409019, -0.00476630032, 0.00543531822, 0.00630323309, 0.00994486, -0.0250972118, 0.0082307281, -0.00324564078, 0.00541362027, 0.00783293322, 0.0082451934, 0.00855619647, 0.00878040772, 0.0146533, 0.00480246358, 0.00727963774, 0.0182985421, -0.00913480576, 0.0242003649, 0.0254733078, -0.0113407569, -0.0216110852, 0.01730044, -0.0135973366, 0.000852997764, 0.0326046757, 0.0150438612, 0.0194123667, 0.0457101949, 0.0052255718, 0.00738451071, -0.0233903117, -0.00624175603, -0.000318687555, -0.00372480229, -0.00302504562, 0.0228984933, -0.00506283808, 0.00564144785, -0.0173872318, -0.00327999564, -0.0116155967, 0.015130653, 0.0212060586, 0.00825242605, -0.0359027535, 0.0162155461, -0.0119338324, -0.0171702541, -0.00496158097, 0.00178284221, 0.0188192911, 0.0221463, -0.00309013925, 0.00675888872, -0.00292378897, 0.0196293462, 0.0596546978, -0.0010577715, -0.00503029115, 0.00728325406, 0.0293355305, 0.00040773928, 0.00731218467, -0.000235738393, 0.018906083, 0.00131995417, 0.00994486, 0.00182352576, 0.0233903117, 0.0274695121, -0.00484585902, -0.00486394065, 0.0426724926, -0.00486032432, -0.00282253209, -0.0236506853, -0.0192532502, 0.0260374527, 0.0185733829, -0.00880933832, 0.00524003711, -0.00985806901, -0.000899557839, -0.0144797163, -0.0161287561, 0.0033432811, -0.00588374119, -0.0124111855, 0.00734834746, -0.0246921834, 0.0114203161, 0.0376964435, -6.690179e-05, 0.0163312685, -0.0148124173, 0.0205840524, 0.00378627959, 0.0411681049, -0.0233903117, -0.00520387432, -0.00674080709, -0.00854173116, 0.00717476476, -0.0113262916, 0.0372624882, 0.00946750678, -0.00380074489, -0.0444951132, 0.0134526836, -0.00506645441, 0.00152427587, 0.00659253821, 0.0134526836, -0.0358738229, -0.0154199582, -0.00882380363, 0.00310641271, -0.0120784845, 0.00976404455, -0.0213073157, 0.0098002078, 0.0175174195, 0.00269776932, -0.0169098787, 0.00893952511, 0.00221137539, -0.00437212223, 0.00592713663, 0.0429328643, 0.00371395331, -0.0285399407, 0.00809330773, 0.00722177653, -0.0217702035, -0.0111454763, -0.00706627546, 0.000967363652, 0.0283374265, -0.010400516, 0.0170979276, -0.00773890922, -0.00701926323, 0.0122448355, 0.0115288049, -0.0123750223, 0.00619836, -0.0328650512, -0.0129102366, -0.00431426102, 0.012360557, -0.0224790014, -0.0126353968, 0.0202079564, 0.0124762794, -0.0163457338, -0.0102197, -0.0144146234, -0.000366829743, 0.0154633541, 0.0423542559, 0.00905524753, -0.0280481223, -0.00151613913, -0.00391646661, 0.0177054685, 0.0217846688, 0.0244028792, 0.022218626, 0.0100244191, -0.004762684, -0.00833921693, -0.00448784418, 0.00982913841, -0.0228695627, -0.00478799827, -0.0271512773, -0.00901185162, -0.00282434025, 0.0103860507, 0.0109646609, -0.00273393258, -0.0211048014, 0.00172498124, 0.00442275079, -0.0118325753, 0.00358557422, -0.0176765379, -0.0124256508, -0.01335866, -0.00134165201, 0.0154054929, 0.00341379922, -0.00670826, 0.0293499958, -0.0239978526, 0.00186601747, 0.000929392409, 0.00778953778, -0.0121291131, -0.0262978263, -0.00509538455, -0.0224934649, -0.00404303754, 0.0139589673, 0.0297116265, 0.000261956651, -0.00131091336, -0.014797952, -0.0166061092, -0.025386516, -0.0168520175, -0.00796312094, 0.00289666653, 0.00179369119, -0.000509900099, -0.0594811141, -0.000840340683, 0.0240412485, 0.039750509, 0.0308688469, -0.0233903117, -0.0122014396, -0.00463611307, -0.033096496, -0.0432511, -0.0082596587, 0.00442998344, -0.0210614055, 0.017965842, 0.0108344732, 0.0235783588, -0.0161721501, -0.00605009124, 0.0119338324, 0.000667209737, 0.017589746, -0.0398373, 0.00425640028, 0.000563240726, 0.0209022872, 0.00420938805, -0.000789260259, -0.0178067237, -0.0143784601, -0.0273537897, 0.0220305771, -0.0132646356, 0.00169514667, -0.000836272317, 0.0208444279, -0.0145882061, 0.0235060342, -0.000900461921, -0.0115288049, -0.0214375015, 0.0186601747, -0.00859959144, 0.0155212143, 0.00151071465, -0.0253575854, 0.0209456831, -0.0195280891, 0.00868638325, 0.0196004156, 0.0427303538, 0.0102486303, 0.0114854099, -0.010234165, -0.00080824591, 0.00569930905, 0.0138215479, -0.00614049938, -0.00638279226, 0.00515324576, -0.0122303702, 0.0301166531, 0.0307531245, 0.0317078307, 0.0152174439, 0.00865745265, -0.0139083387, 0.0126498621, 0.0232890546, -0.00271765911, -0.0165627133, -0.00702649588, -0.0308977775, -0.000337447185, 0.00339390966, 0.014986, -0.0160130337, -0.00687461067, 0.0308399163, -0.0305795409, 0.00594160194, -0.0121291131, -0.00177741772, -0.00961216, -0.0251695365, 0.000598499784, 0.0110659171, -0.000137306881, -0.0114854099, -0.0152319092, -0.0137709193, 0.00013391659, -0.0484875217, -0.0062236744, -0.0174161624, -0.0122809988, -0.00296176015, 0.0163457338, 0.0137130581, -0.00504837278, -0.0276720263, -0.0413995497, -0.0253720507, -0.0049941279, -0.0127004907, 0.0270934161, -0.0329229124, -0.00358195789, -0.0176331419, -0.00353132957, -0.0365681536, -0.0165048521, 0.00523642078, 0.0194846932, 0.00444444828, -0.0026272512, 0.021177128, -0.0182551462, 0.00728687039, 0.00313895964, 0.00411174772, -0.008274124, 4.39890537e-05, 0.0475038849, -0.0128885387, -0.00205225754, 0.00151704322, -0.0321417898, -0.00675165607, 0.00852003321, 0.0219148565, -0.0210903361, 0.00400325842, -0.0237230118, 0.0145809734, -0.00613688305, 0.0120857172, 0.0230865404, -0.0146677652, -0.00951090269, 0.0140023632, -4.70120685e-05, -0.00770997908, -0.0126209315, 0.00946027413, 0.0208878238, 0.0171991829, -0.00142030686, 0.0110369865, -0.00145556591, 0.00599223049, -0.00869361591, -0.0435693376, -0.0346587412, -0.0221752301, 0.0180092379, 0.024156969, -0.0122665334, -0.00116445275, -0.0350059085, -0.0016318612, 0.0210758708, -0.0122593008, -0.0101690721, 0.000883736473, 0.00917820167, 0.0173438359, 0.0117674824, -0.0361052677, 0.0214808974, -0.0204538647, 0.0400687456, 0.0254733078, -0.00146641489, 0.0129174693, 0.00137148669, 0.00883103628, 0.0167507604, -0.0207431708, 0.0157526582, 0.0184431951, 0.00124220341, -0.00570292538, -0.00704457751, -0.0136334989, 0.0142916683, 0.0239110608, 0.00833198521, -0.0132791009, 0.0211192667, -0.0133803571, 0.00867191795, -0.0356713086, 0.00212639198, 0.00740620866, -0.0210469402, -0.00387668726, -0.0317078307, 0.00719284639, 0.0286845937, 0.00907694548, -0.00588012487, -0.012859608, -0.0151017224, 0.0184576605, -0.0273393244, -0.0080282148, -0.0116083641, -0.00798481889, -0.00571739068, -0.00321671017, 0.00760872196, 0.00489287125, 0.0294078551, -0.0202947482, 0.0264858752, 0.0374360718, -0.0106898211, -0.00820179749, -0.0129825631, -0.0253286548, -0.0363945737, -0.0188048258, -0.0131995417, -0.00530513097, -0.00457825186, -0.00838984549, 0.0179947726, 7.00660603e-05, 0.0296537653, 0.00298707443, 0.00206129835, 0.03460088, 0.0254009813, 0.0310134981, 0.0215242933, 0.0125124427, -0.00120604038, -0.0133152641, -0.000781575625, 0.0055691218, -0.00205225754, 0.00197269861, 0.0188192911, 0.00164813455, 0.00311002904, 0.00209022872, -0.00967725273, 0.0313895941, -0.00492903451, 0.0280770529, -0.00748576736, -0.000957418815, 0.0283229612, -0.0162300114, -0.019571485, 0.00596691621, 0.0270789508, 0.0061296504, -0.00394539721, -0.00539553864, -0.00573908864, 0.00652744481, -0.0307820551, -0.0350927, -0.00930115674, 0.0314185247, -0.0203960035, 0.00398879312, 0.00677697035, -0.00259289634, -0.0155212143, -0.0102486303, -0.00865745265, 0.00104692252, 0.00891059451, 0.0127077233, 0.0184576605, 0.00914203841, -7.65076184e-05, 0.0217702035, 0.00209926954, -0.00195280893, -0.0113262916, -0.00193834363, -0.000949282141, -0.00355121912, -0.0142699704, 0.0157237276, 0.00663231779, 0.0171557888, 0.0117747141, 0.0114564793, -0.0118832039, -0.00238495832, 0.0126787927, -0.0207576361, -0.00371756963, 0.00151885138, 0.0166639704, 0.00951090269, 0.0132935662, 0.0323732309, -0.0153910276, 0.0182840768, -0.00771721173, 0.00742067397, 0.0120061589, 0.00361992908, -0.000367959816, -0.0158683807, -0.0190073401, -0.0116951559, 0.00447337888, -0.0251550712, -0.0188626871, 0.026428014, 0.0246632528, 0.0167507604, 0.00405027, -0.0103571201, -0.0222330913, 0.00170961185, 0.0236940812, -0.00861405674, 0.0440900847, -0.00650936319, 0.0126136988, -0.0274984427, 0.00383329159, 0.0088816639, 0.0069867163, -0.00116083643, -0.00387307093, 0.000832656049, 0.0178790502, 0.000478709408, 0.0190652013, -0.00107494893, 0.0156369358, 0.00820179749, -0.00295091118, -0.00642257137, -0.00356930075, 0.00620559277, 0.0223343484, 0.0179513767, -0.00836814754, -0.0015703839, 0.000805533666, 0.00990869757, -0.00334870559, -0.00236506853, -0.00535937538, 0.0139155714, -0.0179947726, 0.0168809481, 0.00463249674, -0.0106536578, -0.012172509, -0.0276286304, -0.0095687639, 0.0147256255, 0.00436127326, 0.0158249848, 0.0119699957, 5.62506175e-05, 0.0357291698, 0.00372480229, -0.00215532235, 0.0113190589, -0.0124473488, -0.0103571201, 0.0170545317, -0.0101112109, 0.0081801, -0.0245619975, 0.00762318727, -0.00733026629, -0.0127945151, -0.00278094457, 0.00993762724, 0.00578248408, 0.0197016727, -0.00565591315, 0.0402134, -0.0128379101, -0.002600129, 0.0125558386, 0.0179513767, 0.00650936319, 0.00453485642, 0.00588012487, -0.009887, -0.00833198521, -0.0177633278, -0.00896122307, 0.0149136744, -0.00215532235, 0.0166639704, 0.00339029334, 0.00297803362, 0.022884028, 0.018153891, -0.0129464, 0.00446614623, 0.00571015803, 0.0127872825, 0.00428533088, 0.0267607141, 0.0158973113, -0.00527981669, 0.0150149306, -0.0147256255, 0.016779691, 0.00680951728, 0.0035005908, -0.00447337888, 0.0208588932, -0.028930502, 0.0033921015, 0.010067815, 0.0147400908, 0.00116083643, 0.0181104951, 0.000170192725, -0.0279324, -0.0181972869, 0.0255022384, 0.00247175, -0.0104222139, 0.0151451183, 0.0104583763, 0.0124401161, -0.000524365343, 0.00273393258, -0.0298273489, -0.013756454, -0.00642980402, -0.0108344732, -0.00411174772, 0.00716391578, 0.00166079169, 0.00540638762, 0.00522918813, 0.00627068663, -0.00145104551, -0.0206997748, -0.0080571454, -0.00455655437, -0.0256324261, -0.0178935155, -0.00350601529, -0.00875147711, 0.0105813313, -0.00190941314, 0.00176928099, -0.00168339361, -0.0138360132, 0.00243377849, -0.00364705152, -0.0315921083, -0.00697586732, -0.00473736972, 0.00520749064, -0.00697225099, 0.00264894916, 0.00526896771, 0.0068926923, 0.00470843911, -0.0202079564, -0.000508544, -0.00804991275, -0.00429256354, -0.0239833873, 0.00597053254, -0.00586204324, 0.0209022872, -0.00274297339, -0.00662508514, -0.0036705574, -0.00539915496, 0.00180544413, -0.00700479792, -0.0162155461, 0.0031877798, -0.0244173445, -0.00215351419, 0.00736281276, -0.0104222139, -0.0100605823, 0.0277588181, 0.00169876299, 0.0144218551, 0.0143929254, -0.00760872196, 0.000284106587, -0.0173438359, 0.0263990834, 0.00367598189, -0.0192821808, 0.00655637495, -0.0042455513, -0.00991593, 0.00119790365, -0.00849833526, 0.00653467746, -0.0147473235, 0.0159696378, 0.0273248591, 0.00163728558, 0.0112828957, 0.00181358086, -0.00929392409, -0.0190652013, 0.0121942069, 0.00319320429, 0.00812947098, 0.0180092379, 0.0132284723, 0.0105957966, -0.0129753305, -0.0113841528, 0.000548775482, 0.00703372853, 0.0102124671, 0.00426724926, -0.0104366792, -0.0228117015, -0.00744237192, -0.00724347448, 0.000561884604, -0.0271223467, 0.00599946314, -0.00925776083, 0.00307748211, -0.00273212441, -0.0160998255, -0.0118036447, 0.00722900918, 0.00874424446, -0.00594521826, 0.015362097, -0.00167254463, -0.00175119948, -0.00020646886, -0.0220016465, 0.0120206242, 0.0160998255, 0.0120640192, -0.00887443125, -0.00906248, -0.00523280445, 0.00276467111, -0.000235738393, -0.020092234, -0.0036579005, -0.0115143396, -0.00681674946, -0.015882846, 0.0219003912, 0.00650213053, 0.0193979014, -0.0249380935, -0.0113986181, 0.00212639198, -0.00512793148, 0.007493, -0.0172136482, -0.0263846181, 0.0150293959, -0.0134165203, -0.0055546565, 0.0109284976, 0.0200777687, -0.00445529725, -1.35752989e-05, -0.0136118019, 0.0218859259, -0.00108308566, -0.0141397836, -0.00907694548, 0.0189784095, -0.0124835121, -0.0058005657, -0.00361088826, -0.00804991275, -0.001479976, 0.0102847936, -0.00835368223, 0.00819456484, 0.0361052677, 0.0152319092, -0.0111816395, -0.0100822803, -0.0224934649, -0.000706085062, 0.00854896381, -0.0095687639, 0.0236940812, 0.020236887, 0.0172715094, -0.0210324749, -0.0126136988, -0.0227538403, -0.019426832, 0.00290932367, 0.00550764427, -0.0154488888, 0.00699033262, -0.0142699704, -0.0232745893, 0.0202079564, 0.000264216855, 0.0319971368, -0.00329084462, -0.0215966199, 0.0113190589, -0.0215966199, -0.0272669978, 0.00884550158, 0.0345719494, 0.00244824379, -0.000115948031, -0.0243739486, 0.00766658317, -0.0103932833, -0.0158105195, 0.023115471, 0.0175752807, 0.0139589673, -0.00124310749, 0.00107856526, 0.0209312178, 0.0132212397, 0.0111310109, 0.0140529918, -0.00891782716, -0.00220956723, 0.00613688305, -0.0162878726, 0.00120061589, 0.000864750822, -0.0301455837, 0.000951090246, -0.0150583265, 0.0283084959, 0.00584034529, 0.0095687639, -0.00447337888, -0.000124423765, 0.0106898211, 0.0117313191, -0.000862038578, 0.00625983765, 0.0165193174, 0.00426724926, -0.000640539394, 0.0082162628, -0.00765211787, 0.0125847682, -0.017821189, -0.0291185509, 0.0051315478, 0.00915650371, 0.0138360132, 0.0133948224, -0.0055401912, -0.00818733219, 0.00188409898, -0.0154488888, 0.00909864344, 0.00590543868, -0.0186023135, -0.0121291131, -0.0174740236, -0.00385137321, -0.00139770494, 0.0169966705, -0.00584396161, -0.00912757311, -0.0123026958, 0.00252780272, 0.00762318727, 0.00099086971, -0.0274261162, 0.013025959, 0.0101256762, 0.0103137242, 0.00389476889, -0.0127366539, -0.0168664828, 0.00841877609, -0.00518940901, -0.00729410304, 0.00878040772, 0.0284965448, 0.0210469402, -0.00457825186, -0.00325468159, -0.0159985684, -0.0100750476, 0.00372118596, -0.00794142298, -0.00671187649, 0.0224790014, -0.0116083641, 0.000800109236, 0.0112539651, 0.0120640192, -0.0187325012, -0.0137492213, 0.000369767979, -0.0127221886, 0.0179079808, 0.0213796422, 2.83795798e-05, 0.0202224217, -0.00362535357, 0.0115215722, -0.0210180096, -0.0258638691, 0.0148558132, 0.00917820167, 0.0149570694, -0.0172281135, 0.00226381188, 0.0147762541, 0.00869361591, 0.00655637495, 0.000581322296, 0.00239399914, 0.00617666217, 0.029972, 0.0222764872, -0.00140584155, 0.00929392409, 0.0165916439, -0.0043106447, 0.0159696378, -0.0189784095, 0.00651659584, 0.0147545561, -0.0260229874, -0.00487840595, 0.00891782716, -0.00555104, 0.00935178529, 0.0127800498, 0.00922883, 0.0205985177, 0.0214953627, -0.00733388262, 0.0337908268, -0.00901185162, 0.00909864344, -0.0184721258, 0.00329265278, 0.00437212223, 0.00525450241, -0.00313353515, 0.0101763047, 0.00746407, 0.035497725, 0.0285254754, -0.00870084856, 0.0333568677, -0.0159985684, -0.0146894623, 0.0279613305, 0.00159569806, -0.00429618, -0.0191085972, 0.0216110852, -0.0189639442, -0.0116662253, 0.00328542013, -0.0054461672, 0.0204538647, 0.0203092135, 0.0334147289, -0.0172570441, -0.0176331419, 0.0037465, 0.00138414372, 0.0122231375, -0.00816563424, -0.00195642514, -0.00164271006, -0.00674080709, -0.0157092623, 0.00705542648, 0.0195859503, 0.00194015179, 0.0143278316, 0.00686737802, -0.00868638325, -0.0293789245, 0.0264858752, 0.000100013654, 0.00466866, -0.0119338324, 0.00929392409, 0.00783293322, 0.00489287125, 0.0192243196, 0.0212205239, 0.0032962691, 0.0194412973, 0.00259470451, 0.0133731244, -0.0134599162, -0.0314474553, -0.0055980524, -0.00917820167, -0.00537745701, -0.0126570947, 0.00324383262, 0.0105740987, 0.00488202227, -0.00439743651, -0.0108851017, -0.00875147711, 0.00348250917, -0.0117096212, -0.00752916327, 0.00712775253, -0.0132791009, 0.000330214563, -0.00125847687, -0.000177990398, -0.00377543061, -0.0150438612, -0.00938794855, 0.0105162375, 0.0192098543, -0.00140222535, 0.0113479896, 0.0152174439, -0.0112467324, 0.0132429376, 0.00887443125, 0.0153331663, 0.0158973113, 0.00683844741, 0.00207576365, 0.0164325256, 0.0134092877, 0.00409005, -0.0193834361, -0.00993762724, -0.0130114937, -0.00933008734, 0.00286231167, -0.0070952056, 0.0215966199, -0.0250972118, -0.00870808121, 0.001214177, 0.0122303702, 0.0117602497, 0.0101401415, 0.0105813313, 0.0101618394, 0.00288581755, -0.000943857653, -0.00642257137, 0.0147111602, 0.000192342632, -0.0187758971, 0.0110369865, 0.00102251244, 0.0239399914, 0.00954706594, -0.014465251, 0.00640449, 0.00669741118, 0.00504475646, 0.0142410398, -0.0117385518, 0.00917820167, 0.0200488381, 0.0193255749, -0.0013615418, -0.02184253, 0.0012756543, -0.011442014, 0.0257336814, 0.0111599416, -0.0150727918, -0.00312268618, -0.00736281276, -0.022218626, -0.00324383262, 0.00558720343, 0.00648043258, -0.0143278316, 0.0169098787, 0.0054534, 0.0335304514, 0.00324202445, 0.00568122743, 0.00834645, -0.0192966461, -0.0115071079, 0.0348323248, 0.0163746644, -0.0166929, 0.00614773203, 0.019774, -0.0275707692, -0.00776784, 0.00995209254, 0.0248802323, 0.0025802392, 0.0213651769, 0.000476449204, 0.0183853339, -0.0168230869, -0.00120332814, -0.0111165456, 0.0151017224, -0.00946750678, -0.00495434878, 0.0136479642, -0.00599223049, -0.00444444828, -0.0160419643, 0.00403580489, -0.00428533088, 0.0227972362, -0.0213796422, 0.00319682062, 0.00908417813, -0.0177199338, -0.0290317591, 0.0058005657, 0.00232890551, 0.0152319092, 0.0251695365, 0.0176765379, -0.0134309856, 0.00589097338, 0.0029075155, 0.010754914, 0.0323443, -0.00207576365, -0.0193545055, -0.0132212397, 0.0192532502, -0.00368683087, 0.00636832695, -0.0116734579, 0.0210469402, 0.0124328835, 0.00898292102, 0.00523642078, 0.0266883895, 0.0175174195, -0.00851280056, -0.0247645099, 0.0143495295, -0.000243423056, -0.0131561458, 0.00915650371, -0.0283808224, 0.0215387587, -0.0103354221, 0.00341741554, 0.00151071465, 0.0173293706, 0.000504475611, -0.00331977522, 0.000451135, 0.0252707936, 0.0251116771, -0.00359823136, -0.0161142908, -0.0019112213, -0.033559382, -0.0107259834, -0.0108200079, -0.0125847682, -0.00414429465, -0.00276286295, 0.00668294588, 0.001826238, 0.00344272982, 0.000712865673, 0.0150149306, 0.0093662506, 0.00226381188, -0.0100316517, 0.0116228294, -0.0220016465, -0.00289485836, -0.00333424052, 0.0216110852, -0.0403001904, -0.0142627377, 0.00852003321, -0.00591628766, -0.0103209568, 0.0460573584, 0.00337944436, 0.00271946727, 0.013214007, 0.0250538159, -0.00172950164, 0.00736281276, -0.0223198831, -1.78272912e-05, -0.00562698254, 0.034456227, 0.0149715347, -0.00812947098, -0.00793419, 0.00238495832, 7.49254832e-05, -0.0021444736, -0.0108344732, 0.0163457338, 0.00835368223, 0.0161287561, -0.00504475646, 0.00339933415, 0.00449869316, 0.0101184435, 8.57179184e-05, -0.00845493935, 0.0120206242, 0.00617666217, 0.00993762724, -0.00865745265, 0.0118542733, 0.0203960035, 0.00155682268, 0.00588374119, -0.00995932519, -0.00237049302, 0.0129464, -0.0294801816, -0.0201790258, -0.0121363457, -0.00282253209, 0.0069831, -0.0187903605, 0.0146388346, 0.00397432782, 0.00252237823, 0.0238965955, -0.000404348975, 0.0215821546, 0.0263990834, 0.00156676758, 0.0352373533, -0.00590182235, -0.0102124671, 0.0156080062, 0.012338859, 0.0315053165, 0.00509176869, -0.00819456484, -0.0169966705, 0.00882380363, 0.00171051593, -0.0118036447, -0.000757165486, 0.00507368706, -0.0119121345, 0.0109791253, 0.0239544567, -0.0155356796, -0.00333243236, 0.0163168032, -0.00764488522, -0.0125558386, 0.00655275863, -0.00151885138, 0.00367417373, 0.0274550468, 0.00641172286, 0.00779677043, 0.00188590714, 0.00760872196, 0.0212783851, 0.00309194741, 0.00246451725, 0.0113479896, 0.0149136744, 0.0095832292, -0.0136262663, -0.0156658664, 0.0136696622, 0.00521472329, 0.00430341205, 0.0204972606, 0.00308471476, 0.00300696422, 0.0176042113, -0.00385137321, -0.0099737905, -0.0182406828, -0.00496881362, 0.00820179749, 0.00241569686, 0.0117819468, -0.00539915496, -0.0278456081, -0.0125775356, 0.019050736, -0.0149715347, 4.12203153e-05, 0.00347889285, -0.00597053254, 0.0146460673, 0.00796312094, 0.000282524445, -0.00822349545, 0.00830305461, -0.0102847936, 0.00450592581, -0.0206563789, -0.00512793148, -0.00922159757, -0.0169822052, 0.0110586844, -0.00394901354, -0.0272814631, 0.0104583763, 0.00609710347, -0.0246632528, -0.0151885143, 0.0108706364, 0.00289847469, -0.0167941563, 0.022073973, -0.0216110852, 0.0123026958, 0.00789802708, -0.0323153697, -0.0016318612, -0.0137419887, 0.0113045936, -0.00243197032, -0.0175029542, -0.010067815, -0.00954706594, 0.0176765379, 0.0246487875, -0.00313172699, -0.00281891576, 0.00914203841, 0.0120206242, -0.00195100077, -0.00990146492, -0.0231444016, 0.00398517679, 0.000391013833, 0.00856342912, 0.0116589926, -0.0126787927, -0.00454932172, 0.00546786515, 0.0143278316, 0.0289738979, -0.00327457115, 0.0138360132, -0.0126860254, 0.0206997748, -0.0161576848, -0.0219727159, -0.020092234, 0.0116155967, -0.0198897198, -0.00220956723, 0.0178790502, 0.00799205154, -0.0136334989, 0.000888708862, 0.0212783851, -0.000989061547, -0.0219148565, -0.0145375775, -0.000410677516, -0.00561251771, -0.0204394, -0.00627068663, -0.00460356614, -0.0122593008, 0.00635024533, 0.026428014, -0.00876594242, -0.00933008734, 0.0185444523, -0.00901908427, -0.00252961088, 0.00705542648, 0.00533044524, -0.0196004156, -0.0097857425, -0.0106825884, 0.0122737661, 0.00610795245, 0.00765211787, 0.00252237823, -0.027368255, -0.0179513767, -0.0106536578, -0.0173727665, 0.0193111096, 0.00920713227, 0.0241714343, -0.00570654171, 0.00496519729, -0.00522195594, -0.00493626716, 0.000288852985, -0.0190652013, -0.000758521608, 0.000592171215, 0.0143856928, 0.0193400402, -0.00727963774, -0.0173583012, -0.00611156877, 0.00501220953, 0.0181104951, 0.000219578, 0.00488202227, -0.0113479896, 0.000954706571, 0.00728687039, -0.0862128958, -0.0170111358, 0.027136812, 0.00947473943, -0.0257770773, -0.0142338071, -0.000208616053, -0.0190218054, -0.000256984233, 0.0177922584, -0.00707712397, -0.00147816783, 0.0158973113, 0.0040285727, 0.00414791098, -0.0220450424, 0.0265582018, -0.00599584682, -0.0110948477, 0.00606094, -0.00117439753, 0.00768104848, 0.0152029796, -0.0141976438, 0.0114854099, 0.00128017471, -0.00183347065, 0.00229455042, -0.00146279857, -0.00844047405, -0.00591267133, 0.00968448538, -0.000598951825, 0.0102775609, -0.00541000394, -0.0271802079, 0.00295995199, -0.0316210389, 0.00503029115, -0.0146460673, -0.00524726976, -0.00899738632, -0.0156369358, -0.00460718246, 0.0225802567, 0.0138721764, -0.00662508514, 0.00676612137, -0.00781846792, -0.00716391578, -0.00537384069, 0.000442998309, -0.0180815645, -0.0117747141, -0.00770274643, 0.00159841031, -0.000800109236, -0.00490733655, 0.00677335402, 0.0328361206, -0.00880933832, -0.0225513261, 0.0154488888, 0.00717114843, 0.00877317507, 0.0283663571, -0.0110659171, 0.0213507116, 0.0108127752, -0.00243558665, -0.00624175603, -0.0163457338, -0.0168230869, -0.00120965659, 0.00273212441, 0.0148051847, -0.0181828216, -0.00263267569, 0.0173872318, 0.0056920764, 0.0309556369, 0.00328903645, 0.0102197, -0.00954706594, 0.00659977086, 0.00562336622, 0.00368140638, -0.0081801, 0.00321671017, -0.0095976945, 0.000153806308, -0.000442320248, -0.0115288049, 0.00828858931, 0.0161142908, 0.0233035199, -0.0148992091, -0.00321671017, 0.00771721173, 0.0184576605, 0.00985083636, 0.00602477696, -0.00218063663, 0.00567037845, 0.025531169, -0.0270210896, -0.0111816395, -0.00883826893, 0.00830305461, 0.00695416937, 0.0246921834, 0.000702016754, 0.000274839782, 0.00703734485, 0.013568406, 0.0112467324, 0.00503390748, -0.00225296291, -0.0120278569, 0.034456227, 0.0150004653, -0.0147617888, 0.00773167703, 0.00869361591, 0.00539192231, -0.00195642514, -0.00838261284, -0.0121797416, -0.0203236789, -0.00822349545, 0.0164325256, 0.0016508468, 0.00471567176, -0.0237085465, 0.00148359232, -0.0282072406, -0.0139517346, -0.0082307281, -0.0226959791, 0.00945304148, 0.00551849324, -0.0108055426, 0.0158394501, -0.0116662253, -0.0122086722, -0.0071386015, -0.0173149053, 0.00315704104, 0.0229129586, 0.00365428417, -0.0175318848, -0.0115722008, 0.0139589673, -0.00710243825, 0.00344815431, -0.0372914188, 0.0274261162, -0.0153042357, -0.00844047405, -0.0286701284, 0.00433234265, -0.0108706364, -0.0170545317, -0.00348974182, -0.00657084025, 0.0167652257, 0.0175174195, -0.016027499, 0.00196908228, -0.0228406321, 0.0156080062, 0.0245330669, 0.0163168032, -0.0143929254, 0.00249887211, -0.000870175252, -0.0152897704, -0.0100533497, 0.0123460917, 0.0185010564, 0.015130653, -0.00875871, -0.0101690721, 0.00360727194, 0.0404737741, 0.000528433709, 0.0095687639, 0.00741344132, -0.0102703283, -0.00489287125, 0.0268330406, 0.00263990834, 0.0126860254, 0.0158973113, -0.0100750476, -0.0097857425, 0.00249706395, 0.00917096902, -0.0160853602, 0.00763042, -0.0191809237, -0.0252852589, 0.0121146478, 0.0187758971, 0.00771721173, -0.0300009307, -0.0145303449, 0.0187325012, -0.00238495832, -0.0181104951, -0.000861586537, 0.000102556369, -0.00713136885, 0.0194412973, 0.00237410935, -0.00335593824, -0.00369406352, -0.000544707116, 0.00208480423, -0.00156134309, 0.0189784095, -0.00356568443, 0.0186167788, -0.00265799, 0.0117457844, 0.0068926923, 0.00868638325, -0.00658168923, -0.0312449429, -0.00195642514, -0.0103281895, -0.0182840768, 0.0348033942, -0.00701203058, -0.0277298875, -0.00921436492, -0.00536660803, 0.0151017224, 0.00761595462, 0.0190941319, 0.0276430957, 0.0258638691, -0.00194015179, 0.00214628177, 0.00789802708, -0.010899567, 0.0192387849, -0.00194376812, 0.0107693793, 0.000459723757, -0.012714956, 0.00752193062, -0.00165717537, 0.0127438866, 0.00778953778, -0.00826689135, -0.0142627377, 0.0240701791, 0.00584757794, 0.0157671236, 0.00158123276, 0.00539553864, -0.0184576605, -0.0237230118, 0.00179911568, -0.0217123423, 0.000657716882, -0.00632493105, -0.00653106114, 0.00719646271, -0.00109031831, -0.0215821546, -0.0144941816, -0.0113407569, 0.0126860254, -0.0138866417, -0.0119916936, 0.0145448102, -0.00604285859, -0.0172715094, -0.0292487387, -0.00842600875, -0.0181249604, 0.021321781, -0.00530513097, 0.00075309712, 0.0186312441, -0.0151885143, 0.00250610476, 0.00303770276, 0.00793419, -0.0126787927, 0.000737275754, 0.00361992908, -0.00471928809, -0.000591267133, -0.00188952347, 0.0219871812, 0.00823796075, -0.0246632528, 0.019426832, 0.0198607892, 0.0147690214, -0.0113552222, -0.0363656431, -0.0122231375, -0.0212928504, 3.94404124e-05, -0.00414067833, 0.0140168285, -0.0325468145, 0.00520749064, -0.00319682062, 0.0053376779, 0.0119555304, 0.0123967202, -0.0117457844, -0.00716391578, -0.000819546869, -0.00594883459, 0.00300515606, -0.000947474, 0.00387307093, 0.0224934649, 0.0159985684, 0.000980020734, -0.0130910529, -0.0100171864, 0.0107404487, 0.000198558177, 0.00686376169, 3.11907e-05, 0.00904078223, -0.00563059887, -0.0152753051, 0.00732665, -0.0126209315, -0.0158249848, 0.0108055426, 0.00461441511, -0.0311292205, -0.0212060586, -0.0229129586, -0.0294223204, 0.00927222613, -0.00425278395, -0.00674442342, 0.0127221886, 0.0371178351, -0.0069071576, -0.016403595, -0.0056776111, 0.0108344732, 0.0245186016, 0.00930115674, -0.0189205483, -0.00530513097, -0.00710605457, -0.00407920079, 0.00770997908, 0.0280191917, -0.0200199075, -0.0070952056, 0.00125124422, 0.00855619647, -0.0328650512, 0.0259651262, 0.00410089875, -0.0055401912, 0.011984461, 0.00659253821, -0.00721816, -0.02046833, 0.0620269962, 0.0151595837, 0.01867464, -0.0141976438, 0.0284676142, -0.00616581319, 0.00103064917, 0.0390561782, -0.0177488625, -0.0129825631, -0.0334147289, 0.013402055, 0.00971341599, -0.0010957428, 0.0178935155, -0.00191483763, 0.00121869741, -0.038101472, -0.000925776083, -0.0319971368, 0.00258204737, -0.0212783851, -0.00254588434, -0.0137926172, 0.0141253183, -0.0157381929, 0.0112322681, -0.000145895625, -0.0147834867, 0.0152463745, -0.000568213174, 0.00943857618, 0.0104366792, 0.000667661778, -0.0181394257, -0.0161142908, -0.029972, 0.0141397836, 0.00367779, 0.028409753, 0.0105524007, 0.0194123667, 0.0154922837, 0.00982913841, 0.0190652013, -0.0209746137, -0.0147183929, -0.000995390117, 0.0163312685, -0.0191230625, 0.00888889655, -0.0235060342, -0.00524726976, -0.0237953383, -0.00244824379, -0.00743513927, 0.0232456587, 0.00930115674, -0.000657716882, 0.0182262175, -0.0161866155, -0.00553295854, -0.00302866194, -0.012172509, -0.00523642078, -0.0082596587, -0.0173872318, 0.0223054178, -0.0116228294, -0.00705904281, 0.0172281135, -0.00852726586, -0.0105524007, -0.0140168285, 0.0104583763, -0.00263267569, -0.0159117766, -0.0080282148, 0.00199620472, -0.00246813358, 0.00273574074, 0.00453847274, -0.0081801, -0.0101329088, 0.00887443125, 0.0105307028, -0.016548248, -0.0101907691, -0.0175174195, 0.0207287055, 0.0105017722, -0.00195280893, 0.006878227, 0.0127728172, -0.0143350642, -0.0112178028, -0.0214375015, 0.0154488888, 0.0117168538, -0.0027267, 0.0162444767, -0.0161576848, -0.00865745265, -0.0262544304, -0.0143133663, 0.0160853602, -0.0020540657, 0.0172570441, -0.00418407377, -0.00091221492, 0.00412982935, -0.00396347884, 0.00893229246, 0.0240123179, -0.0125775356, -0.011442014, 0.00133893988, -0.0181683563, 0.00415514363, 0.00421300437, -0.00522918813, -0.00449869316, -0.0236217547, 0.0174595583, -0.00321671017, -0.00685291272, 0.0439743623, -0.0175608154, 0.0220450424, 0.000593527337, 0.0269487631, -0.00301781297, 0.00527981669, -5.13064369e-05, -0.00172859756, 0.00813670363, -0.0245909281, 0.0295669734, -0.00383690791, 0.0271223467, -0.00436850591, -0.00189856428, -0.0207287055, 0.0225802567, 0.0224356055, -0.00195642514, 0.00137148669, -0.00794865564, 0.00235602772, 0.00650936319, 0.0105379354, -0.00251695374, 0.0177922584, -0.0110731497, 0.0176620726, -0.0147256255, 0.00899738632, -0.0161721501, 0.0177343972, 0.0100895129, 0.00719284639, -0.00351686426, 0.00432872633, 0.00330531, 0.00098454114, 0.00116626092, -0.0115722008, 0.00380436098, 0.0138866417, 0.0142627377, 0.010255863, 0.00545701617, -0.00218425295, 0.00563783152, -0.00319139613, 0.023968922, -0.00700479792, -0.0231877975, 0.00435765693, -0.0405316353, -0.0114347814, 0.0181394257, 0.0186601747, 0.0306374021, 0.0177922584, -0.00377181428, -0.0145954387, 0.00253503537, 0.00156947982, 0.0195859503, 0.00121146475, 0.0146749979, -0.00261821039, -0.00163005304, -0.0359027535, -0.0355266556, 0.0259217303, 0.00989423227, -0.00149263314, -0.00581141468, 0.0185010564, -0.000315749319, -0.00849833526, -0.000424238708, -0.00689992495, 0.0307241939, -0.000260374538, -0.0155212143, -0.000922611798, 0.000545611198, -0.00356568443]
14 Dec, 2018
unordered_multimap operator= in C++ STL 14 Dec, 2018 The ‘=’ is an operator in C++ STL which copies (or moves) an unordered_multimap to another unordered_multimap and unordered_multimap::operator= is the corresponding operator function. There are three versions of this function. The first version takes reference of an unordered_multimap as an argument and copies it to an unordered_multimap. The second version performs a move assignment i.e it moves the content of an unordered_multimap to another unordered_multimap. The third version assigns contents of an initializer list to an unordered_multimap. Syntax: umm.operator= ( unordered_multimap& umm ) umm.operator= ( unordered_multimap&& umm ) umm.operator= ( initializer list ) Parameters: The first version takes the reference of an unordered_multimap as argument. The second version takes the r-value reference of an unordered_multimap as argument. The third version takes an initializer list as argument. Return value: All of them returns the value of this pointer(*this). Below program illustrates the unordered_multimap::operator= in C++. Example // C++ code to illustrate the method // unordered_multimap::operator=() #include <bits/stdc++.h> using namespace std; // merge function template <class T> T merge(T a, T b) { T t(a); t.insert(b.begin(), b.end()); return t; } int main() { unordered_multimap<int, int> sample1, sample2, sample3; // List initialization sample1 = { { 1, 2 }, { 3, 4 }, { 5, 6 } }; sample2 = { { 7, 8 }, { 9, 10 }, { 11, 12 } }; // Merge both lists sample3 = merge(sample1, sample2); // copy assignment sample1 = sample3; // Print the unordered_multimap list for (auto& it : sample1) cout << it.first << " : " << it.second << endl; cout << endl; for (auto& it : sample2) cout << it.first << " : " << it.second << endl; cout << endl; for (auto& it : sample3) cout << it.first << " : " << it.second << endl; return 0; } Output: 7 : 8 9 : 10 11 : 12 1 : 2 3 : 4 5 : 6 11 : 12 9 : 10 7 : 8 7 : 8 9 : 10 11 : 12 1 : 2 3 : 4 5 : 6 Learn C++ Online – Master everything from basics to advanced concepts. Apply your knowledge with practical exercises and boost your skills. Take the Three 90 Challenge: finish 90% in 90 days for a 90% refund. Start now and level up your C++ programming!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum/Algorithm for Dynamic Time out timer Calculation/Difference between Round trip time (RTT) and Time to live (TTL)/Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms/Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm/Round Robin Scheduling Algorithm with Different Arrival Time/Selfish Round Robin CPU Scheduling/Find the order of execution of given N processes in Round Robin Scheduling/Calculate server loads using Round Robin Scheduling/set::lower_bound() Function in C++ STL/Implementation of lower_bound() and upper_bound() in List of Pairs in C++/Difference between std::set::lower_bound and std::lower_bound in C++/Difference between std::set vs std::vector in C++ STL/std::minmax() and std::minmax_element() in C++ STL/std::rotate vs std::rotate_copy in C++ STL/std::bitset::to_ullong and std::bitset::to_ulong in C++ STL/std::upper_bound and std::lower_bound for Vector in C++ STL/std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++/std::string::append vs std::string::push_back() vs Operator += in C++/Vector push_back() in C++ STL/vector :: cbegin() and vector :: cend() in C++ STL/unordered_multiset cend() function in C++ STL/unordered_multiset bucket() function in C++ STL/unordered_multiset emplace_hint() function in C++ STL/unordered_multiset end() function in C++ STL/unordered_multiset size() in C++ STL/unordered_multiset emplace() function in C++ STL/unordered_multiset find() function in C++STL/unordered_multiset erase() function in C++ STL/unordered_multiset clear() function in C++ STL/unordered_multiset swap() function in C++ STL/unordered_multiset bucket_size() function in C++ STL/unordered_multiset bucket_count() function in C++ STL/unordered_set bucket_count() function in C++ STL/unordered_set cbegin() function in C++ STL/array::cbegin() and array::cend() in C++ STL/array::rbegin() and array::rend() in C++ STL/multimap rbegin in C++ STL/vector rbegin() and rend() Functions in C++ STL/multiset rbegin() and rend() function in C++ STL/map rbegin() function in C++ STL/map upper_bound() function in C++ STL/Set upper_bound() in C++ STL/multimap upper_bound() function in C++ STL/multimap empty() function in C++ STL/multimap value_comp() function in C++ STL/multimap swap() function in C++ STL/multimap::swap() in C++ STL/multimap equal_range() in C++ STL/unordered_set equal_range in C++ STL/set vs unordered_set in C++ STL/unordered_set count() function in C++ STL/unordered_set bucket() function in C++ STL/unordered_set emplace() function in C++ STL/set::emplace() in C++ STL/multiset::emplace() in C++ STL/multiset find() function in C++ STL/multiset cbegin() and cend() function in C++ STL/multimap::cbegin() and multimap::cend() in C++ STL/multimap::begin() and multimap::end() in C++ STL/set::begin() and set::end() in C++ STL/unordered_multimap begin() and end() function in C++ STL/unordered_multimap empty() function in C++ STL/unordered_multimap find() function in C++ STL/unordered_multimap equal_range() function in C++ STL/unordered_multimap bucket_count() function in C++ STL/unordered_multimap bucket_size() function in C++ STL/unordered_multimap operator= in C++/unordered_multimap operator= in C++ STL
https://www.geeksforgeeks.org/unordered_multimap-operator-in-c-stl?ref=asr2
PHP
unordered_multimap operator= in C++ STL
unordered_multiset clear() function in C++ STL, What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, jQWidgets jqxTreeMap width Property, Round Robin Scheduling Algorithm with Different Arrival Time, Difference between Flow and TypeScript, set::begin() and set::end() in C++ STL, unordered_multiset emplace() function in C++ STL, jQWidgets jqxTree destroy() Method, unordered_set bucket_count() function in C++ STL, jQWidgets jqxTree collapseAll() Method, Find the order of execution of given N processes in Round Robin Scheduling, jQWidgets jqxScrollView buttonsOffset Property, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Vector push_back() in C++ STL, jQWidgets jqxListBox enableHover Property, Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm, std::rotate vs std::rotate_copy in C++ STL, Selfish Round Robin CPU Scheduling, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxSlider buttonsPosition Property, std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++, std::upper_bound and std::lower_bound for Vector in C++ STL, Difference between Round trip time (RTT) and Time to live (TTL), jQWidgets jqxSlider rtl Property, Difference between std::set::lower_bound and std::lower_bound in C++, jQWidgets jqxTooltip opacity Property, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, unordered_multiset erase() function in C++ STL, multiset find() function in C++ STL, set vs unordered_set in C++ STL, jQWidgets jqxToolBar height Property, PHP, std::minmax() and std::minmax_element() in C++ STL, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, unordered_set emplace() function in C++ STL, unordered_multimap empty() function in C++ STL, unordered_set bucket() function in C++ STL, map rbegin() function in C++ STL, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, map upper_bound() function in C++ STL, Node.js date-and-time Date.transform() Method, unordered_multiset size() in C++ STL, TypeScript Optional Parameters, jQWidgets jqxToolBar theme Property, Difference between std::set vs std::vector in C++ STL, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, Steps to Diagnose and Resolve a Slow Network, How to use Optional Chaining with Arrays and Functions in TypeScript ?, Calculate server loads using Round Robin Scheduling, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, jQWidgets jqxScrollView showButtons Property, set::emplace() in C++ STL, Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms, jQWidgets jqxScrollView disabled Property, multimap::cbegin() and multimap::cend() in C++ STL, jQWidgets jqxSplitter destroy() Method, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, set::lower_bound() Function in C++ STL, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, jQWidgets jqxTree collapseItem() Method, multimap upper_bound() function in C++ STL, std::string::append vs std::string::push_back() vs Operator += in C++, unordered_multiset swap() function in C++ STL, unordered_multiset cend() function in C++ STL, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), Set upper_bound() in C++ STL, jQWidgets jqxSortable opacity Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, multiset cbegin() and cend() function in C++ STL, multimap rbegin in C++ STL, vector :: cbegin() and vector :: cend() in C++ STL, multimap swap() function in C++ STL, jQWidgets jqxSlider height Property, jQWidgets jqxSwitchButton onLabel Property, unordered_multiset bucket_size() function in C++ STL, unordered_set cbegin() function in C++ STL, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, jQWidgets jqxToolBar tools Property, multimap empty() function in C++ STL, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTree width Property, multimap::swap() in C++ STL, unordered_multimap bucket_size() function in C++ STL, multimap equal_range() in C++ STL, Implementation of lower_bound() and upper_bound() in List of Pairs in C++, jQWidgets jqxTree clear() Method, TLS Handshake?, multiset rbegin() and rend() function in C++ STL, unordered_multimap operator= in C++, Algorithm for Dynamic Time out timer Calculation, Adhoc TCP, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, jQWidgets jqxTabs position Property, Differences between Wireless Adhoc Network and Wireless Sensor Network, jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, unordered_multimap begin() and end() function in C++ STL, std::bitset::to_ullong and std::bitset::to_ulong in C++ STL, unordered_multiset emplace_hint() function in C++ STL, multimap::begin() and multimap::end() in C++ STL, unordered_multiset bucket_count() function in C++ STL, unordered_multiset find() function in C++STL, unordered_multimap operator= in C++ STL, unordered_multimap bucket_count() function in C++ STL, unordered_multiset bucket() function in C++ STL, Impact of Three-way Handshake and Slow Start Algorithm, array::rbegin() and array::rend() in C++ STL, multimap value_comp() function in C++ STL, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, multiset::emplace() in C++ STL, unordered_set equal_range in C++ STL, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, unordered_multimap equal_range() function in C++ STL, unordered_set count() function in C++ STL, vector rbegin() and rend() Functions in C++ STL, array::cbegin() and array::cend() in C++ STL, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, unordered_multiset end() function in C++ STL, How to Sort an Array Having Optional Properties in TypeScript ?, unordered_multimap find() function in C++ STL
GeeksforGeeks
[-0.0506432876, 0.0240502078, -0.0178536326, 0.0201823674, 0.0240368247, -0.00272354903, -0.0323346145, 0.0140125584, -0.0319063403, 0.0364299752, -0.0150698582, 0.0239699073, -0.0158059523, -0.0318528078, -0.00983689632, -0.0209719967, 0.00114345562, 0.046708528, -0.0650439709, 0.00395817962, 0.0225646365, -0.00956922583, -0.0013232968, -0.0168766342, -0.0192589033, 0.00022793829, 0.00136762974, -0.00197908981, 0.0181480702, -0.00680218032, -0.0267670657, 0.0194864236, 0.0135307517, -0.0147486534, -0.010680059, 0.0214939527, 0.0148155708, 0.034422446, -0.0283998568, -0.0130757112, 0.0111953253, -0.00511920126, 0.0316654369, 0.012239241, -0.0132898483, 0.0294973068, -0.00265161251, -0.0138653396, 0.00524969073, 0.00344625977, 0.040578872, 0.00893350784, 0.00629026024, -0.0171844568, -0.00889335759, 0.0359214023, 0.016475128, 0.0201288331, -0.0267135315, -0.0250272062, -0.0321204774, -0.0487963594, 0.0385445729, -0.0160602387, -0.0296579078, -0.0054638274, -0.0268741343, 0.0199949984, -0.00261313468, 0.00305646425, -0.0272622555, 0.0635985509, 0.00192722876, 0.0111953253, -0.0333249979, 0.0220560618, -0.0110347224, -0.0373400562, -0.00538352598, 0.0508038886, -0.0385445729, -0.0296311416, 0.00128063676, -0.0362961404, 0.030969495, -0.0186031107, 0.0130757112, -0.0350916237, 0.0428808406, -0.00785613339, -0.0516336709, -0.0305412225, 0.0118176593, 0.0125336787, -0.0160200894, 0.0325487517, 0.0663823187, 0.0199682303, -0.008424934, 0.0462802574, 0.00229025702, -0.0159933213, -0.0283463225, 0.0139188739, 0.00650774268, 0.0250673573, 0.0203563534, 0.00178670161, -0.000199916525, 0.0120719466, 0.0455843136, 0.0137984222, -0.0275433101, 0.0468959, -0.020824777, -0.00193224754, -0.0212530494, -0.0148155708, 0.019914696, -0.0104391556, 0.00776244886, 0.0184960421, 0.00471769506, -0.0234345663, -0.028266022, -0.00865914579, -0.0254287124, -0.0123195415, 0.00511920126, -0.0239966735, 0.00566458, 0.00492179394, -0.0217750072, -0.0177733321, -0.0433894135, 0.0113960784, 0.0157658011, 0.0260443538, -0.00185361924, -0.0202359017, -0.0484216213, 0.0246926174, 0.000307612121, 0.0271284208, -0.0100242663, -0.0273960922, -0.00138017687, 0.0411677472, 0.0149494065, 0.00277541019, -0.043844454, -0.00815726351, 0.0117708175, 0.0182417557, 0.0140928598, -0.00989043061, 0.0138653396, -0.00109912257, -0.00857884437, -0.010144718, 0.0297649764, -0.0294170044, 0.0288816635, 0.0254956298, -0.040578872, 0.0342618451, 0.0204634219, 0.00385445752, -0.00179004751, 0.0415424854, 0.0268607493, 0.028801363, 0.0242241938, -0.0222434308, 0.0124199186, -0.0473241732, 0.0356001966, 0.004212467, 0.00478795869, 0.0114696873, 0.0228724573, 0.0098770475, 0.0350380875, 0.0159933213, 0.0258703679, -0.00997073203, 0.014668352, -0.0320937112, 0.0305144545, -0.00074278604, -0.00138937798, 0.0436838493, 0.0157658011, 0.0444333293, 0.041462183, 0.0218419246, -0.000545378949, -0.0133166155, 0.00475115422, 0.0398561619, 0.0167428, -0.0126742059, -0.021386886, 0.00387787865, 0.0286675263, -0.0229661427, -0.0165286623, -0.0282124877, 0.0312103983, 0.00119448034, -0.0187770966, 0.0243847966, 0.0359214023, 0.0130154854, -0.00330740563, -0.0108005106, -0.0292564034, 0.0126139792, 0.0331108607, -0.0316386707, -0.0011484744, -0.0437909178, 0.00695274537, -0.0246257, -0.013945641, -0.0505897552, 0.0145746674, 0.00722041586, -0.00373735162, 0.0158594865, 0.0363764428, 0.0422919616, -0.0369385518, -0.0102450941, 0.00673191715, -0.00430280576, -0.0512053967, -0.0274094753, 0.014133011, 0.0083714, 0.00662484858, 0.0293902382, -0.00898035057, 0.0024558783, 0.00959599297, 0.0391066819, 0.0103789298, -0.00876621436, -0.00942869857, -0.0234345663, 0.0267536826, -0.0229126085, -0.00918779522, -0.00655793119, -0.0317457393, 0.0341547765, 0.00191719108, -0.0226181708, -0.0419172235, -0.0412480496, 0.00542033091, 0.00656796852, -0.0160468556, -0.00933501404, 0.0159799382, -0.0240234416, 0.0160067044, -0.021373501, -0.00920117833, -0.0291761011, 0.00774237374, 0.00524634495, 0.00779590802, 0.0234613325, 0.0417030863, 0.00773568172, -0.00821079779, 0.0156988837, -0.0191384517, -0.0349310189, 0.044567164, -0.019580109, -0.0230865944, -0.0176528804, 0.017211223, 0.00775575731, -0.0130221769, -0.00821079779, -0.0348507203, -0.029524073, -0.00935509, -0.0118243508, -0.00555751193, 0.019754095, 0.00736094313, 0.0352254584, 0.00821748935, -0.0407127067, -0.0244115628, 0.00264659361, 0.0150698582, -0.0153509118, 0.00966960285, -0.0300058797, -0.00790966768, 0.00895358343, 0.0292831697, -0.00103638729, -0.0182685219, -0.0439247526, 0.0168632511, -0.0200619157, -0.0245052483, 0.00615977077, -0.0140125584, -0.00185194635, 0.0440585911, -0.00219824514, -0.0327628888, 0.00938185677, -0.0266867634, 0.0039280667, 0.0112220924, 0.0198611617, -0.00250104768, -0.0167829506, -0.0195667241, 0.0501614809, -0.0386248752, -0.0720569417, -0.0228992254, 0.0112689342, -0.0273693241, -0.00555416616, 0.0274630096, -0.0093082469, 0.00621665083, 0.0266867634, -0.019928081, -0.0300861821, 0.00094270258, -0.0117842006, 0.00157340162, 0.0305412225, 0.008237564, 0.0209184624, -0.00317524304, -0.023193663, 0.0241037421, 0.0458787493, 0.000729402527, -0.0221765134, 0.0205571055, 0.0230999775, 0.0437641516, -0.031156864, -0.0311033297, -0.00386784086, 0.00503220828, 0.0376612619, 0.000630699, 0.0340744741, -0.0121990899, -0.0288816635, -0.0296846759, -0.0196202584, -0.0367511809, -0.00818403065, 0.0307018235, -0.0199949984, 0.00492179394, -0.0374471247, 0.018121304, 0.017023854, -0.0374471247, 0.00871937163, 0.0221229792, 0.034609817, 0.0119581865, 0.0100978753, -0.00702635478, 0.0303270854, -0.0195667241, -0.00803681184, -0.0192722864, 0.00567461783, 0.00213132752, 0.0168900192, -0.00709327217, 0.00056880014, 0.0256294645, 0.0136512034, -0.0122593157, -0.0107135177, 0.000894187309, 0.0189109314, -0.0348507203, -0.0177599471, -0.0195265748, -0.00760184648, 0.00519281067, -0.0449151359, -0.0287210606, 0.0120719466, 0.0105729904, -0.0323881507, -0.000857382547, -0.0147620365, 0.00801004469, 0.0305144545, -0.00572815211, 0.0199682303, -0.0240100585, 0.0267001484, 0.00973652, -0.0069393618, -0.0409536101, 0.0643480271, 0.0178134814, 0.00268339831, -0.0106867505, -0.0414354168, 0.0222568158, -0.000444584235, 0.0101714851, 0.0357340313, -0.0087059876, 0.0211192146, 0.013309923, -0.0111150239, 0.0272087213, 0.0252547264, 0.0234345663, 0.0504023843, -0.0183622073, -0.0335123651, 0.0196068753, -0.0182551388, -0.016475128, -0.00982351322, 0.0304876883, 0.0133768413, -0.00174153224, -0.0138385724, 0.0140527096, 0.00250606658, -0.031317465, -0.00969636906, 0.0148021867, 0.0115700644, -0.0255090129, -0.00827102363, 0.0203831196, -0.0186031107, 0.0151233915, -0.0367779471, 0.0199548472, -0.0048615681, 0.0475650765, 0.010593066, 0.00734755956, 0.040578872, 0.0305144545, -0.0110012637, -0.000740694872, 0.00457716826, 0.000836889, 0.0195934922, -0.00045587658, -0.0339941718, 0.00318528083, -0.0330305584, -0.00490506459, -6.54015603e-05, 0.0104458472, 0.028988732, -0.0143069969, 0.00843162555, -0.0220694449, -0.0192722864, 0.0324416831, -0.0242509618, -0.0298185106, 0.007789216, 0.00553409057, -0.0546851158, 0.0414086506, 0.0262049567, -0.0175056607, 0.0267536826, 0.00646090042, -0.014119627, 0.0212932, 0.0073743267, 0.00272354903, -4.354876e-05, -0.00806357805, -0.00192220986, -0.0105462242, -0.00601255195, 0.0191250686, 0.0196737926, -0.000241949179, 0.0159531701, 0.0126608219, -0.055782564, -0.004530326, 0.0319598764, -0.0269812029, 0.00583522, 0.0125069115, 0.0243178792, 0.0452095717, 0.0029979113, 0.0070665055, 0.00112003437, 0.0438176878, -0.0212129, 0.00563781336, 0.00623338, -0.00792305171, -0.00543371448, 0.0146014346, 0.0378486291, 0.000726474915, 0.0113224685, -0.0135642104, -0.0153509118, 0.0247729197, -0.0129351839, -0.0256160814, 0.00898035057, -0.0107135177, 0.00845170114, -0.00712003931, -0.0132965399, -0.00753492909, 0.00448348327, -0.031317465, 0.0108941961, -0.00370054669, -0.00796320196, 0.00595901813, -0.000373275107, -0.010680059, -0.00274697016, -0.00814387947, -0.0204232708, 0.00452363398, 0.00915433653, -0.00677541364, 0.0103789298, 0.000101526646, 0.00240736292, 0.0136846621, 0.0181614533, -0.0102986284, -0.0101581011, -0.00908741914, -0.0303806197, 0.0288548972, -0.00382769038, 0.0356269628, 0.0161806904, 0.0113760028, -0.0139322579, 0.017023854, -0.0139054907, -0.00130071212, 0.00615307922, -0.00831117388, -0.0103053199, 0.034770418, 0.0200217646, -0.0331376269, 0.0275968444, 0.00841155, 0.0677742064, -0.021922227, 0.000446257181, -0.00675199227, -0.0136177447, 0.0110949483, 0.0142266955, 0.0230062921, -0.000878294348, -0.0279983506, -0.00807027053, -0.00195064989, 0.0141463941, 0.00598578481, 0.0201556012, -0.0103253955, -0.0226984713, 0.00978336204, 0.00178502873, -0.0013057309, -0.016113773, -0.00883313175, -0.00845170114, 0.0274897758, 0.00786282588, 0.0169034023, -0.0062066135, -0.0227118544, 0.0287210606, 0.0115299132, 0.00741447695, -0.0056980392, -0.0276771449, -0.0184291247, 0.0110815652, 0.0293367039, -0.0180811528, 0.00299289241, 0.00306984782, -0.0234613325, 0.0493584685, -0.00421581278, -0.048020117, 0.00142785569, -0.030434154, -0.0142936129, 0.0167428, 0.0106733674, 0.00122041092, -0.0380092338, 0.0224308018, -0.00297114416, -0.0227921568, -0.0116503648, 0.0084717758, 0.0216010213, -0.0303806197, 0.0403379686, -0.000904224929, 0.0124868359, 0.00483145518, -0.0114629958, 0.0158862527, -0.0285872258, 0.00718695717, 0.013945641, 0.0323613808, -0.00409201533, 0.00486826, -0.0267269146, 0.0108741205, -0.0099105062, -0.0311836321, -0.0520351753, 0.000538687163, 0.00978336204, 0.0125403702, 0.00616980856, -0.0413551144, -0.0220694449, 0.01231285, -0.000312003598, 0.00775575731, -0.028988732, -0.0322007798, -0.00815726351, -0.00186700281, -0.000486407778, -0.0191116855, -0.0279715825, -0.0222300477, -0.0128414994, 0.0231401287, -0.0351451561, -0.0166089647, 0.0312103983, 0.0013216238, -0.00352656096, -0.0334320664, -0.0169435516, 0.0242777281, -0.00396152586, -0.0180677697, -0.0086256871, -0.00714680646, 0.0165821966, -0.00740778539, 0.0350380875, 0.0006712678, 0.0230999775, 0.00687913597, 0.0285336915, -0.0403915, -0.0099105062, -0.0408197753, -0.00579841575, 0.0308624264, -0.00801673625, 0.00938854832, 0.0126541303, 0.0196737926, 0.0118711935, -0.00398829253, 0.00157089217, -0.0248532202, -0.0193659719, -0.0351719223, 0.0260309707, 0.0603329651, 0.000912589661, -0.0192722864, -0.044567164, 0.00394145027, 0.00120702735, -0.00956253428, -0.0176796466, 0.0173182916, 0.00206106412, -0.0256829988, 0.00455709267, -0.0086725289, 0.0130690197, -0.0582451336, -0.0146282017, -0.0135441348, 0.0218419246, -0.0145077491, 0.0348239504, -0.0416495539, -0.0181614533, -0.0438176878, 0.00663488638, -0.00487495167, -0.0111819413, 0.00136762974, 0.0324684493, -0.00272354903, -0.000874948455, 0.00182350632, 0.0219356101, -0.0156185823, -0.0035031396, -0.0391334482, 0.0058887545, 0.0165018961, -0.00251945015, 0.019914696, 0.00399498455, 0.0143605303, 0.0281321853, 0.00149560976, -0.0167294163, 0.0390263833, 0.00734086754, 0.0128080407, 0.0142534627, -0.0137984222, 0.0165554304, -0.0163948275, 0.0119983368, -0.0040117139, 0.00488164369, -0.0106466, 0.0180008523, -0.00484149298, 0.00657466054, -0.0078226747, -0.028266022, 0.00712003931, -0.0159531701, 0.0243580304, 0.00837809127, -0.000680887257, -0.029898813, -0.00184692757, 0.0271551888, 0.0242911112, 0.00345295155, -0.0154579803, -0.0247461516, -0.00851192698, -0.00684233103, 0.0236353185, -0.0100911837, 0.0394546539, 0.028266022, 0.00557758706, 0.00727395, 0.00462401053, 0.00130489445, 0.0207712427, -0.000272480363, -0.0208381601, -0.00628691446, 0.0116503648, 0.0358143337, 0.0159933213, 0.0120652551, -0.0355734304, 0.0290154982, -0.0352254584, -0.0144006815, -0.044754535, 0.0136445118, 0.00948223285, 0.0234613325, 0.0253484119, -0.0409268439, -0.0290422663, 0.0390263833, 0.0450222045, 0.00244416762, 0.0115968315, -0.0280786511, 0.028453391, 0.0089067407, -0.00412882, 0.00803681184, 0.00534337526, -0.0247996859, -0.0274897758, 0.00515935197, -0.00523965294, 0.0467352979, -0.0334320664, 0.0311033297, 0.00664827, -0.00848516, 0.0279180501, 0.0191919859, 0.0029661255, -0.00253952527, -0.0418636911, 0.0279180501, 0.00128314621, 0.010680059, 0.0013266427, 0.0052864952, 0.0158193354, 0.0324416831, -0.0325219855, -0.0158327185, 0.00710665574, 0.00285905716, -0.0232605804, -0.0337265022, -0.000338770682, 0.00854538567, 0.00397156319, 0.00993727334, 0.0268206, 0.0126340548, 0.0220426787, 0.0230598263, 0.0318528078, -0.00833794102, 0.0112890098, 0.0198879298, 0.00466416124, -0.0252814926, -0.016649114, 0.0171710718, 0.0210255291, 0.0114362286, 0.00457047625, 0.0092747882, 0.0161405411, 0.0248666033, 0.0205437224, 0.00337934191, -0.0160334725, 0.0179071669, -0.00364032085, 0.00575491926, -0.00607947, -0.0303270854, 0.0309962612, -0.00590548385, -0.0111217154, 0.0171710718, 0.0149360225, 0.01250022, 0.0162074585, 0.0101647926, 0.00808365364, -0.0115566803, -0.0743589103, 0.00925471261, 0.0168097168, 0.0339941718, -0.0206106398, -0.0237825383, -0.0280251168, 0.0118444264, -0.015029707, -0.031156864, -0.0229393747, 0.0196470264, -0.010680059, 0.00913426094, -0.00314847613, 0.0145077491, -0.00557758706, 0.00492179394, -0.018121304, -0.0126407463, -0.00227352767, 0.0184023567, 0.0351451561, 0.0509109572, 0.0209719967, 0.0139724081, 0.03875871, -0.000463404809, 0.00928148, -0.0341547765, -0.0500811785, 0.00724718301, 0.00736094313, -0.00344960555, -0.00759515492, -0.00302635133, -0.00190882641, 0.00239732536, 0.042372264, -0.0105127646, 0.00868591294, -0.0130824037, -0.0159799382, -0.0170104709, 0.0216010213, -0.0181480702, 0.0108875036, -0.0283195544, 0.0128816506, 0.0129820267, -0.00451025041, -0.00626349309, -0.0172513742, -0.00539690955, -0.0110949483, -0.0725387484, -0.00203429698, -0.0128348079, 0.00667838287, 0.0216144063, 0.0070798886, -0.0410606787, 0.018844014, -0.0684701502, -0.00713342289, -0.0278377477, 0.00218318868, -0.0282392539, 0.00364701264, 0.0127411233, -0.0183488242, -0.00516604353, 0.0040117139, -0.0249335207, -0.00793643482, -0.0194061231, 0.0187503286, 0.0147352694, -0.016849868, 0.0142534627, 0.0107469764, -0.00863237865, 0.0112622427, 0.00432288088, 0.00685236882, -0.0391066819, 0.0226047859, 0.011603523, -0.0228055399, 0.0279180501, 0.0250539724, -0.0260175876, 0.0522493124, -0.0119381109, -0.0240368247, 0.00199080049, 0.0426667035, 0.0200485326, -9.80239201e-05, 0.0231535118, -0.00835132413, 0.00233709952, 0.0243714135, -0.00779590802, -0.0194730405, -0.00552405324, 0.0122459326, -0.0205838736, -0.00179172039, -0.00244082185, -0.0220828298, 0.0440585911, 0.0449419022, 0.00630698958, -0.0495190695, 0.004118782, -0.0175859611, -0.00141112623, -0.0253751781, -0.0285872258, 0.00384107395, 0.00256963819, -0.028801363, 0.00379757746, 0.0271016546, 0.00279046665, 0.0153241446, 0.0174253602, -0.0246658511, 0.00573818944, -0.0113826944, 0.0151367756, 0.0297114421, -0.00416562473, 0.00266499585, 0.0372865237, 0.0295776073, -0.0309962612, -0.00922794547, -0.026459245, -0.0206641741, 0.00349644781, 0.0147218863, 0.0162208416, -0.00942869857, -0.00798327755, 0.0308088921, -0.0296846759, -0.00701966276, -0.00443329522, 0.0212262832, -0.00278042885, -0.00972982869, -0.0165152792, -0.0332179293, 0.0074813948, 0.00310330675, 0.0111484826, -0.00440987386, -0.00889335759, 0.0091074938, 0.0176662635, -0.0287745949, 0.00508908834, -0.0125604458, 0.0114496127, 0.00542033091, 0.00247260765, 0.0176796466, 0.0175056607, 0.0125269862, 0.0220159106, 0.0134571418, 0.0205437224, -0.00954245869, 0.0181882214, 0.0148423379, 0.002489337, -0.0165420473, 0.00960268453, 0.00177331804, -0.00521623204, 0.0215876382, 0.0166223478, 0.0257097669, 0.0365370438, 0.0189109314, 0.00948892441, -0.0130422525, -0.00648097554, -0.0024525323, -0.00333417254, 0.00348975626, 0.020824777, 0.00975659583, 0.00498871179, -0.00993727334, -0.00293768547, -0.00688582752, 0.000361564511, 0.00495190732, 0.0240368247, -0.0290154982, 0.00620326726, -0.00778252445, -0.0198210124, 0.00391133735, -0.00990381464, 0.023019677, 0.0384107381, 0.00438645296, 0.0195934922, -0.00511250971, 0.0235684011, 0.0410874449, -0.0040117139, 0.00129234733, 0.0179339331, 0.0325487517, 0.00497532822, 0.0156319663, -0.00863237865, 0.0182417557, 0.01792055, 0.00129569322, -0.00640067458, 0.0226984713, 0.0267536826, 0.00799666066, 0.000715182512, 0.03875871, -0.0126474388, -0.00341781974, -0.0198076293, -0.0358946361, 0.0227653887, 0.000539941888, 0.00538687175, 0.00392137514, -0.00868591294, 0.0140259424, 0.00311669, -0.0170907713, -0.00294270436, -0.00219657226, -0.00524969073, 0.014119627, -0.0212932, 0.00993727334, 0.0265127774, 0.00140778034, 0.00951569155, -0.0173584428, 0.0114295371, -0.00801673625, 0.0377415605, -0.0156587325, -0.00806357805, -0.00338770682, 0.00156587327, 0.0159130208, -0.00658135209, 0.0506700538, 0.00329736783, 0.0028858243, -0.0442191921, 0.0246123169, -0.00583522, -0.0111284079, -0.00167712395, -0.00818403065, -0.021012146, -0.0264057107, -0.0104793059, 0.00733417599, -0.0148021867, -0.000999582582, -0.0131560126, 0.000409661559, 0.0131024783, 0.00582852867, -0.0164082106, 0.0207310915, 0.00245755119, 0.000687160762, 0.00728733372, 0.0379556976, 0.010506073, -0.0258168355, -0.00539356377, 0.0118243508, -0.0427202359, -0.0200351477, 0.000206817407, 0.00681556389, 0.0315583684, -0.0128013492, 0.0242241938, -0.00844501, -0.0109209623, 0.00815057103, 0.000815977284, -0.0168900192, 0.0119314194, -0.0393475853, 0.00899373367, 0.00471434928, 0.00684902305, -0.0147486534, -0.00119698967, 0.0201823674, 0.0195131917, -0.0294437725, -0.0149092553, -0.0078226747, -0.00468423637, 0.0218820758, 0.0468423627, 0.00302635133, -0.0254822467, -0.00574153569, -0.00477792136, 0.0165688135, 0.0212396663, 0.00744124409, 0.0204366539, 0.0026850712, 0.0129084177, -0.00849854294, -0.0176261123, -0.00355332787, -0.0354395956, -0.0191919859, -0.0213467348, 6.05395726e-05, -0.0103187039, -0.0112689342, 0.00334588322, 0.013497293, -0.0229795258, -0.003894608, -0.0118979607, 0.00264492072, 0.0104324641, -0.00871268, -0.0140527096, -0.00743455254, -0.0051459684, 0.0178134814, 0.00656462274, -0.0110146478, 0.0396955572, -0.0174253602, 0.00094270258, 0.00411209045, 0.0182016045, -0.0133166155, -0.0221497472, -0.0188707802, -0.0191116855, 0.004118782, 0.0202091336, 0.0310497954, 0.0122660082, -0.00773568172, -0.0132095469, -0.0251744259, -0.0277574472, -0.017023854, -0.0108540449, 0.00096361438, -0.0119180363, 0.0103253955, -0.0689519569, -0.00448013749, 0.0281321853, 0.0321204774, 0.0230598263, -0.0114362286, -0.00621665083, 0.0087059876, -0.0281321853, -0.0467352979, -0.0162476096, 0.00938854832, -0.0179740842, 0.0141731612, 0.014133011, 0.0243714135, -0.0152706113, 0.00169636274, 0.00735425111, -0.0126541303, 0.0361623056, -0.0291225668, 0.00341447373, 0.00399498455, 0.0169569366, -0.00410874467, 0.00450690463, -0.019379355, -0.0140660927, -0.0296311416, 0.0151903098, -0.00816395506, -0.00349644781, 0.00875283, 0.0173450578, -0.0124935275, 0.0286942944, -0.00541363889, -0.0183755904, -0.00469092838, 0.0216277894, 0.00704643, 0.0191786028, 0.0200485326, -0.0289351977, 0.0133166155, -0.00789628457, 0.0146148177, 0.00684902305, 0.0401505977, 0.0235282499, 0.00914764497, -0.0125604458, 0.00673191715, 0.00380426925, -0.00319531839, 0.00192722876, -0.0111685582, 0.0144542158, -0.00251610414, 0.0356269628, 0.017947318, 0.0186298769, 0.00886659, 0.0120652551, -0.0132630812, 0.0141463941, 0.0238360725, -0.0129151093, -0.0238628387, -0.0160602387, -0.0219489932, 0.00101714849, -0.00343622197, 0.0176930297, -0.0202492848, -0.000957759039, 0.0252011921, -0.0216411725, 0.0122727, -0.00418235408, 0.000888331968, -0.0162609927, -0.00830448233, 0.000982853235, 0.0121321725, -0.000249895646, -0.00865245424, -0.015591816, -0.00948223285, -0.0122057814, -0.0428273045, -0.00865914579, -0.0198745467, -0.00245922408, -0.00411209045, 0.00473107863, 0.0029979113, -0.00123881327, -0.0298185106, -0.0369117819, -0.00640067458, -0.0112220924, -0.00527980365, 0.0196737926, -0.0293634702, -0.0143739143, -0.0273960922, -0.00511920126, -0.0315048359, -0.010593066, 0.00321372086, -0.00339607149, 0.0117172832, -0.00254621706, 0.0172379892, -0.00113090849, 0.00368047156, 0.00819741376, 0.00388122443, -0.00590882963, 0.00367043377, 0.0353860594, -0.0196336433, -0.0137984222, -0.00602258975, -0.0337800384, 0.00195566867, 0.00613635, 0.0187369455, -0.0148289539, -0.00825094804, -0.0149494065, 0.0122660082, -0.00543706026, 0.0123730758, 0.0072806417, -0.0114763789, -0.00645420887, 0.00305981026, -0.0132363141, -0.00405855617, -0.00170389097, 0.0193124376, 0.00816395506, 0.0102785528, -0.0146282017, 0.0160736237, 0.00690590311, 0.0184960421, -0.0121120969, -0.0331911594, -0.0035499821, -0.0339674056, 0.0190983, 0.0294973068, -0.00699289562, -0.00500878692, -0.0271418039, -0.00809703767, 0.0135642104, -0.00426265504, -0.00887997355, 0.024652468, 0.0156721175, 0.00582518242, 0.00384776574, -0.0317189731, 0.0250272062, -0.019553341, 0.0363496765, 0.0229795258, 0.0186164938, 0.0175190438, 0.00295441481, 0.0198745467, 0.0132563887, -0.022457568, 0.0263387933, 0.0180008523, -0.011764125, 0.00442660367, -0.00428942218, -0.016675882, 0.00812380482, 0.0148289539, 0.00371393026, -0.0143605303, 0.0278109815, -0.0099238893, 0.0251476578, -0.0210522972, -0.00277708308, 0.00282392534, -0.0335659, -0.00678879721, -0.0189778488, 0.00936178118, 0.0265127774, 0.00352656096, -0.0122526241, 0.000198139023, -0.0206106398, 0.022818923, -0.0151233915, -0.0150029399, -0.0202225186, -0.00946215726, -0.0109343464, -0.0178937837, 0.00054830662, 0.000253450649, 0.0228323061, -0.0136512034, 0.0216679387, 0.0441924259, -0.00128230976, 0.00586198736, -0.0184960421, -0.0354128294, -0.0269142836, -0.00372062204, 0.00821079779, -0.0122325486, 0.00351652317, -0.0189243145, 0.0142266955, 0.00321873953, 0.00900711771, 0.0109544219, 0.0290690325, 0.0422384292, 0.0185897276, 0.0345027484, 0.0212530494, 0.0165152792, -0.00511250971, -0.00342953019, -0.00536679663, 0.00514931418, -0.0151100084, -0.00526642, 0.0232204292, 0.0114563042, 0.0040117139, -0.000546633673, 9.22209074e-05, 0.0395617224, -0.0163412932, 0.0124266101, -0.0113492357, 0.00121873792, 0.0308356602, -0.0147352694, -0.0124199186, 0.0050623212, 0.018281905, -0.00916102808, 0.00331409718, -0.00496863667, 0.00522292359, 0.00359347858, -0.0339138731, -0.0364835113, -0.0003356339, 0.0345562808, -0.0231535118, -0.00825094804, 0.0056880014, 0.0036235915, -0.0111953253, -0.00727395, -0.01792055, 0.000390213623, 0.00358344079, 0.0248933714, 0.00648766756, 0.0042358879, -0.0108072031, 0.0303003173, 0.0070665055, -0.000409452448, -0.0209987629, 0.0060895076, -0.0030079491, -0.00908072665, -0.0160602387, 0.00784275, 0.0136512034, 0.0265796967, 0.0102450941, 0.00469092838, -0.0196202584, 0.00450355886, 0.0131091699, -0.0209318455, -0.0122191655, -0.0102517856, 0.0228055399, -0.000403178914, 0.00375742675, 0.0360284708, -0.00755500421, 0.0244650971, -0.00171309221, 0.0102651697, 0.00666165352, 0.0034228384, 0.00138017687, -0.0125470618, -0.0113826944, -0.0115700644, 0.00761523, -0.022818923, -0.0182149876, 0.0246123169, 0.0202225186, 0.0199548472, 0.000870766118, 0.00200418406, -0.0227520056, 0.000937683741, 0.020824777, -0.00841824245, 0.0399899967, -0.0146282017, 0.0060058604, -0.0302200168, 0.000397323631, 0.000250732119, -0.000189146958, -0.00880636461, -0.00899373367, -0.00645086262, 0.0158996377, -0.00410205266, 0.016849868, -0.0171309225, 0.0229259916, 0.0186967961, 0.00164617458, -0.0107938191, 0.00711334776, -0.00372062204, 0.0231401287, 0.0209452286, 0.00322877732, -0.000113760027, 0.000543287781, -0.000708490785, 0.00208615814, -0.00976328738, 0.00316855148, 0.0177867152, -0.00875283, 0.0192589033, 0.00327561959, -0.00728733372, -0.0100242663, -0.047110036, -0.018844014, 0.00837809127, -0.000166248574, 0.00612631207, 0.0214270353, -0.0013425356, 0.0206641741, 0.000442911289, -0.00504224608, 0.00570138497, -0.0191384517, -0.00923463795, 0.00312338187, -0.00867922138, -0.00575826503, -0.0272354893, 0.011228784, -0.00120117201, -0.000129652966, -0.00223003118, 0.00168130628, 0.0159531701, 0.00742116896, -0.00185194635, 0.0418904573, -0.00350983138, -0.00290422654, 0.00725387456, 0.0153910629, -0.00173651334, -0.00237725, -0.00727395, -0.0199816152, -0.00861899462, -0.0153910629, -0.0267135315, 0.00855207723, 0.000516939, 0.0237156209, 0.0127210477, 0.00138352264, 0.0212262832, 0.0132697728, -0.0225646365, 0.00815726351, -0.00386114931, 0.0263789427, -0.00345295155, 0.0138653396, 0.012774582, 0.00515935197, 0.00210790639, -0.00815057103, 0.0186298769, -0.00341280084, 0.00649435911, 0.00116604031, 0.0268072169, -0.0221765134, 0.0103120124, 0.0158193354, 0.0118176593, 0.00995065644, 0.0165821966, 0.000341907435, -0.0185763426, -0.0153107615, 0.0138787236, -0.0204098877, -0.0137582719, 0.0165688135, 0.017572578, 0.0184023567, 0.0116503648, 0.00513258483, -0.0243847966, -0.0169703197, -0.00576495659, -0.0221229792, -0.000993727357, -0.00269678188, -0.00166039448, 0.00788959209, 0.00849185139, 0.00908072665, 0.000930155511, -0.0123061584, -0.00832455698, -0.000917608442, -0.021386886, -0.00855207723, 0.00389126223, -0.00788290054, 0.00910080224, 0.00183688989, 0.000834379636, 0.0114763789, -0.0106599834, 0.00314680324, -0.00325219845, -0.0313977674, -0.0149761727, -0.00719364872, 0.00653451, -0.0121455556, -0.010867429, 0.00624007219, 0.0115232216, 0.00578168593, -0.014855721, 0.0106599834, -0.0215073377, -0.00754162064, -0.0214939527, -0.00475115422, -0.000797993154, 0.025897136, 0.004978674, -0.0119113438, -0.01060645, -0.0114362286, -0.00591886742, -0.0137984222, -0.030434154, -0.00337097724, -0.0203295853, -0.00769553147, 0.025361795, -0.0115299132, -0.0106867505, 0.0219356101, -0.00944877416, 0.00205771811, 0.0216813236, -0.00919448677, 0.000245295058, -0.00568131, 0.0159264039, -0.00204600766, -0.0188038629, 0.00759515492, -0.00484149298, -0.00626349309, -0.00487829791, -0.0143739143, 0.010680059, -0.0120050292, 0.0164349787, 0.0160200894, -0.00513258483, 0.0131627042, 0.00725387456, 0.0103053199, -0.0221765134, 0.0067720674, -0.00139606977, 0.00875283, 0.00625680154, 0.0091074938, 0.0181346871, -0.0250272062, -0.00439649029, 0.000186742109, 0.0116169062, 0.0171175376, 0.000156629161, 0.00602258975, -0.0259908214, -0.0207177084, -0.0162208416, -0.000446257181, -0.0214671865, -0.000546215451, 0.0015382698, -0.00119448034, -0.0144542158, -0.0203162022, -0.00129151088, 0.0119381109, 0.0103053199, -0.00892012473, 0.00122459326, -0.00362024549, 0.00921456236, -0.00274864305, -0.0216813236, 0.00639063679, 0.0280251168, 0.00240569, -0.0208783112, -0.0119715696, 0.000895023753, -0.00310832541, 0.0132363141, -0.0138921067, -0.00274864305, -0.0143872974, -0.0142802298, -0.0153241446, 0.0209184624, 0.0176528804, 0.0276236124, -0.0198879298, -0.00609954493, -0.00760853849, -0.00669845799, 0.0167963337, -0.0180811528, -0.0145612834, 0.0132697728, -0.00658804411, 0.00206775591, -0.00938854832, 0.0272756405, -0.0041053989, -1.75920268e-05, -0.0165554304, 0.0171309225, 0.00650439691, -0.00539356377, -0.00428607641, 0.013309923, -0.0125069115, -0.00618653791, -0.0114362286, -0.000747386657, -0.000570473087, -0.00652447203, -0.0207310915, 0.0129619511, 0.0183220562, 0.0154044461, -0.00216478645, -0.0109945722, -0.00772229861, 0.00960937608, 0.0101781767, -0.00929486379, 0.0194328893, 0.0156051992, 0.0139322579, -0.0194195062, -0.0126005961, -0.0236085523, -0.020824777, 0.00731410086, 0.00657800632, -0.0216277894, 0.00325387134, -0.0190983, -0.032789655, 0.0140125584, 0.0192722864, 0.0246390831, -0.00404182682, -0.0143203801, 0.00286574895, -0.0206775572, -0.032066945, 0.0113626197, 0.0267536826, -0.0067386087, 0.00367043377, -0.0156051992, -0.00189544284, -0.00795651, -0.0122325486, 0.0208113939, 0.0199414641, 0.00877290592, 0.00675868383, 0.0147218863, 0.0182685219, 0.0113224685, 0.0113291601, 0.00491175661, -0.00807027053, 0.0116570573, 0.00136010151, -0.0134638343, -0.00642409548, -0.000770807848, -0.0149092553, -0.00499874959, -0.0194195062, 0.028988732, 0.0156051992, 0.00344960555, 0.011951495, 0.0130623281, 0.0183889735, 0.00625680154, -0.00544040604, 0.00876621436, 0.013671279, 0.00713342289, 0.00362693728, -0.0121054053, -0.00620326726, 0.0146549679, -0.0117842006, -0.0327361226, 0.00458051404, 0.00617315434, 0.00786282588, 0.00664827, -0.00291259121, -0.00968298595, -0.000576746592, -0.00427269284, 0.0140393255, -0.0113960784, -0.0134303747, -0.00756169576, -0.0114161531, -2.25324329e-05, -0.00511585549, 0.0141731612, -0.0151903098, -0.0227653887, -0.0241974276, -0.0127545064, -0.0117172832, 0.00312672788, -0.0226850882, 0.0129084177, 0.00213801931, 0.00547051895, 0.0113492357, -0.00726725813, -0.0206909422, 0.00836470816, -0.0112756267, -0.00574488146, 0.00961606856, 0.0365370438, 0.0122526241, -0.00144793093, 0.00959599297, -0.00220493693, -0.00403848104, 0.00444333302, -0.0100510335, -0.00402509747, 0.0314245336, -0.0154044461, -0.014133011, 0.016113773, 0.00993727334, -0.0157390349, -0.0194061231, -0.00390129979, -0.00274362415, 0.00633375673, 0.0145880505, -0.0028490196, 0.0244383309, 0.00484818453, 0.0108808121, -0.00144291215, -0.0247996859, 0.00778252445, 0.00500544114, 0.008873282, -0.00894689187, 0.00512254704, 0.0190313831, 0.00585529534, 0.0115834475, -0.00325219845, 0.00339607149, -0.000888331968, 0.0202760529, 0.0134370672, -0.00433961069, 0.0171175376, 0.0154713634, -0.0125671374, 0.0153375287, -0.00982351322, 0.0127478149, 0.00741447695, -0.023729004, 0.00132496969, 0.0148021867, -0.0117172832, 0.0084717758, 0.0120719466, -0.000135926501, 0.0250138231, 0.0121054053, -0.0071735736, 0.028266022, -0.00813718792, 0.0122593157, -0.0109477295, -0.00518946489, 0.00691259466, 0.00383438217, 0.00231367815, 0.0130489441, -0.000681723701, 0.0270213522, 0.028801363, -0.0136445118, 0.0368850157, -0.0137582719, -0.0290958, 0.0356805, 0.00855876878, -0.00404517259, -0.0134169916, 0.0203563534, -0.0248933714, -0.0120451795, 0.00147804385, -0.00381430681, 0.0195399579, 0.00487495167, 0.0184692759, -0.0108941961, -0.000115955765, 0.0170104709, 0.0095223831, 0.0116302902, -0.0148423379, -0.0109276548, 0.0027653724, -0.00222668517, -0.00344625977, 0.000456294831, 0.0162743758, -0.00505562965, 0.0194328893, 0.00630364381, -0.00105311675, -0.0243178792, 0.021012146, -0.00220326404, 0.00561104622, -0.0218285415, 0.00791635923, -0.00181346864, 0.00615977077, 0.0192856714, 0.02500044, 0.00287411362, 0.0102183269, 0.0157925691, 0.0193258207, -0.0163546763, -0.0332446955, -0.00799666066, -0.0147352694, -0.000607277791, -0.00497198245, 0.014668352, 0.0109008877, 1.87421738e-05, -0.016475128, -0.0112220924, -0.0122593157, 0.00337265036, -0.00514262263, -0.0128682666, 0.0111150239, -0.0124600688, -0.00224341475, -0.0169703197, 0.000823087292, -0.0016394828, -0.0108741205, -0.0105796829, 0.0102852453, 0.0106265247, -0.00235884753, 0.00449686684, 0.00487495167, -0.0121656312, 0.0169034023, -0.00335592078, 0.0121321725, 0.0165955797, 0.00383103616, 0.000422208628, 0.00371727627, 0.024090359, 0.00999749918, -0.0324684493, -0.0137582719, -0.0150564741, -0.00472773286, 0.00687244395, -0.0054872483, 0.0332446955, -0.0168364849, -0.0100644166, 0.0122994669, 0.0107938191, 0.00514931418, 0.00589544605, 0.00403513527, 0.0180410016, 0.0105596073, 0.0101581011, 0.0088598989, 0.0205571055, -0.00859892, -0.0143605303, -0.00198578159, 0.0092614051, 0.0290422663, 0.0122057814, -0.0252413433, 0.0132162385, -0.000437055976, 0.00309494184, 0.00614973344, -0.0180142354, 0.0140125584, 0.0111618666, 0.0182417557, 0.00411209045, -0.0236487016, 0.0156185823, -0.0126072876, 0.029898813, 0.0165420473, -0.0192722864, -0.00583856599, -0.0124466857, -0.0239565242, -0.00993058085, 0.00119782623, 0.0114763789, -0.00191217219, 0.0220694449, 0.0166223478, 0.0210790634, 0.00369720091, -0.00591886742, 0.0106599834, -0.024987055, -0.00750816194, 0.0366976485, 0.0241572764, -0.00911418535, 0.0104993815, 0.0237825383, -0.0215073377, -0.026258491, 0.00385445752, 0.0156721175, 0.00258134888, 0.0217750072, -0.00153325102, 0.0126206717, -0.0222568158, 0.00530657079, -0.0190313831, 0.00379423145, -0.000826433126, -0.00409201533, 0.0145479, -0.0160870068, 0.000776663132, -0.00964283571, 0.00800335221, -0.0010924309, 0.0160736237, -0.0173049085, 0.00469427416, -0.00138603209, -0.0179071669, -0.0287210606, 0.0201556012, 0.00696612895, 0.0145479, 0.0131560126, 0.00416562473, -0.0211459808, 0.0031200361, -0.00159264042, 0.0243580304, 0.0466282293, -0.00302133244, -0.0220025275, -0.0147352694, 0.0216545556, -0.0143471472, -0.00505228341, -0.0111819413, 0.0127277393, 0.0113023929, 0.0112220924, -0.008424934, 0.0192589033, 0.00974321179, -0.016113773, -0.0195667241, 0.00117440498, 0.015939787, -0.00225847121, 0.00496863667, -0.0193124376, 0.0206106398, -0.0250539724, 0.0189109314, 0.00772899, 0.00982351322, -0.000666667242, -0.0169837028, 0.00682560168, 0.0333517641, 0.0112220924, -0.00462066475, -0.0159665551, -0.0102116354, -0.0275700781, -0.012687589, -0.0048716059, -0.011864502, -0.00254287128, -0.00958261, 0.00766876433, 0.00274027837, -0.000466750702, -0.0133902244, 0.00260978891, 0.0210924484, -0.00180510397, -0.0118979607, 0.0173316747, -0.0361355394, -0.0123195415, 0.00209786883, 0.0218553096, -0.0242643449, -0.00796989352, 0.0143069969, -0.0110280309, -0.0112622427, 0.0553542897, -0.0109209623, -0.000352572446, 0.00906734355, 0.0183086731, -0.0125470618, 0.0118109677, -0.0186967961, -1.24294329e-05, -0.000708909, 0.0196737926, 0.000626098365, -0.0249201376, 0.00531995436, 0.00189711573, 0.00734086754, 0.0154445972, -0.0142668458, 0.0104324641, 0.00908741914, 0.0141999284, -0.0126139792, -0.00074320432, 0.00948223285, 0.0198210124, -0.00629026024, -0.0058051073, 0.00476788357, 0.0011116697, 0.00308992318, -0.0119983368, 0.0204366539, 0.015203693, 0.00114931085, -0.00525638228, 0.00362024549, -0.00278377486, 0.0137984222, -0.0216144063, -0.0168766342, -0.0151367756, -0.00990381464, 0.00989043061, -0.0204634219, 0.0265796967, 0.00658469833, -0.00205437234, 0.0229393747, 0.0140928598, 0.00912087783, 0.0272890236, -0.00583187444, 0.0264324769, -0.0131024783, -0.014668352, 0.0183086731, 0.0234747157, 0.0266466141, 0.00764199719, -0.0103187039, -0.0194462724, -0.00549059408, 0.00254956307, -0.012326234, 0.00422585057, -0.00745462766, -0.00595567189, 0.0151903098, 0.0121254809, -0.0213199668, -0.00352990674, 0.0115633719, 0.00391133735, -0.00441322, 0.00464074, 0.00551736122, 0.00667838287, 0.0186700281, 0.0130556365, 0.0123663843, -0.00263321, -0.000128711938, 0.0187101793, 0.000123170321, -0.00357340323, 0.0119113438, 0.0217348579, 0.012326234, -0.0168097168, -0.0265127774, 0.0215073377, 0.00680218032, -0.00493517751, 0.0145479, 0.00790966768, 0.0101246424, 0.00585529534, 0.0014437486, 0.000283354486, -0.019754095, -0.00867922138, 0.00209117704, 0.00312338187, 0.00978336204, -0.00555416616, -0.019379355, -0.00356001966, 0.0255223978, -0.016488513, 0.00620326726, 0.00237055821, -0.00788959209, 0.0127210477, -0.00639732881, 0.0010957768, -0.00292262901, 0.00411543623, -0.0120184124, 0.00655123917, -0.0220426787, -0.00117440498, -0.00306482892, -0.0186432619, 0.000183605342, 0.00657800632, -0.0158059523, 0.0220694449, 0.00039711452, -0.0257365331, -0.0173049085, 0.00610289071, 0.00256294641, -0.0100644166, 0.0323881507, -0.0243044961, 0.00163780979, 0.00712673133, -0.033699736, -0.0026432476, -0.0186432619, 0.0118845766, -0.0144675989, -0.0221363623, -0.0147486534, -0.00402844325, 0.020824777, 0.022283582, 0.00824425649, -0.00593559677, 0.010057725, 0.012399843, 0.00674195448, -0.00859892, -0.0061965757, 0.00170640042, 0.00241572759, 0.00637725322, 0.00234211818, -0.00395148806, -0.00908072665, 0.0158862527, 0.00746801123, 0.0356537327, -0.0113693113, 0.0151100084, -0.0135307517, 0.0115499888, -0.0131693967, -0.00993727334, -0.0239699073, 0.00364032085, -0.0208916944, 0.00859892, 0.0174119752, 0.0141463941, -0.0140660927, -0.000647428387, 0.0262451079, 0.00993058085, -0.0103521626, -0.00234044529, 0.0144542158, -0.00640067458, -0.0297114421, -0.0159799382, 0.00312840077, -0.0258436017, 0.00583522, 0.018844014, -0.016113773, -0.0205035713, 0.00815726351, -0.00578837795, -0.00129736622, 0.0105863744, 0.0101714851, -0.0128816506, -0.00602593552, -7.74781074e-05, 0.0180811528, 0.000842326088, 0.0113559272, 0.00426934706, -0.0274362415, -0.00462066475, -0.00402844325, -0.0167695656, 0.0253350269, -0.00532664591, 0.0107737435, -0.00682894746, 0.0108406618, -0.0158996377, -0.00469092838, -0.010693443, -0.0142668458, 0.00195399579, -0.00369050913, 0.0112957014, 0.0112823183, -0.0111217154, -0.015043091, -0.00047135129, 0.00567127205, 0.0111551741, 0.00819741376, 0.0150832413, -0.0117975837, 0.00373065984, 0.00459055183, -0.0576562583, -0.0218419246, 0.017211223, 0.00701966276, -0.0307821259, -0.016649114, 0.00264993939, -0.0147620365, 0.00547051895, 0.0177867152, -0.00527980365, 0.00956253428, 0.0102250194, -8.21309732e-05, 0.0142400786, -0.0277574472, 0.0236085523, -0.0207444765, -0.018482659, 0.00476788357, 0.000105343039, 0.0102384025, 0.0199816152, -0.00522626936, 0.00938854832, -0.0148691051, 0.00846508425, 0.00508574257, 0.00308155851, -0.00278377486, -0.0102718612, 0.0203028191, 0.00402509747, 0.0051693893, -0.000695525494, -0.023354264, 0.00207277457, -0.0344492123, 0.00465746922, -0.0193927381, 0.0012446685, -0.0203697365, -0.0190715343, 0.0109276548, 0.0205838736, 0.00853869412, -0.000961941434, -0.00436972361, -0.0138118062, -0.0157658011, -0.0107469764, 0.00104140618, -0.0204500388, -0.00840485841, -0.00835132413, 0.00569469295, 0.0039280667, 0.000669594854, 0.00575826503, 0.0426399335, -0.00352656096, -0.0195667241, 0.00920117833, 0.00723379944, -0.000410288922, 0.0338871032, -0.010044341, 0.0245052483, 0.0116102146, -0.00198076293, -0.0104926899, -0.00277373707, -0.0169301685, -0.00258804066, 0.000762024894, 0.00760184648, -0.0114027699, 0.00413885759, 0.00991719775, 0.00582183665, 0.0215073377, 0.00873944722, 0.00172480277, -0.00262484537, 0.00511585549, -0.00199916516, 0.00123881327, -0.00423254212, 0.0014613145, -0.0180677697, -0.000879130792, 0.00573818944, -0.00587537093, -0.000862401386, 0.00919448677, 0.0137181208, -0.0119849537, -0.00551401544, 0.000146696068, 0.0200485326, 0.000895023753, -0.00494186953, 0.008237564, 0.0167963337, 0.0219891444, -0.0126474388, -0.0177867152, -0.00605604844, 0.000829360797, -0.00585864158, 0.0217883922, 0.00879967306, -0.00308657717, -0.00324717956, 0.00215976755, 0.00700627919, 0.0140393255, -0.0050389003, -0.0155248977, 0.0309427269, 0.0170506202, -0.00899373367, 0.00474780845, 0.00912087783, -0.00829109829, 0.0023822689, -0.00324550667, -0.0109343464, -0.0177733321, -0.00314178434, 0.0168766342, 0.00149226387, 0.00637390744, -0.0220828298, -0.00597574748, -0.0273960922, -0.0179740842, -0.0125136031, -0.00693267, 0.022992909, 0.00212463574, -0.0185361933, 0.00956922583, -0.00886659, -0.0192321371, -0.00124215917, -0.0161806904, 0.0130690197, 0.0389728472, 0.00156587327, -0.0360820033, -0.00518611912, 0.00877959747, -0.0122660082, 0.00518611912, -0.0383839719, 0.019914696, -0.0224843342, -0.0176528804, -0.0217883922, -0.00106231787, -0.0119381109, 0.000943539082, -0.00374404318, -0.0207712427, 0.0185495764, 0.0242643449, -0.0229795258, -0.000178481961, -0.0112154009, 0.00601924397, 0.0160736237, 0.0294973068, -0.0145746674, -0.00172647578, -0.00339607149, -0.0137315048, -0.0193927381, 0.0110748736, 0.00758177135, 0.0214136522, -0.0180142354, -0.0129351839, -0.00177833694, 0.0433091111, -0.0030731936, 0.00699958764, 0.00525303651, -0.0165286623, -0.0119581865, 0.0292028692, -0.000881640241, 0.0090740351, 0.0122057814, -0.00832455698, -0.00316520547, 0.00801004469, 0.0114362286, -0.0158327185, 0.00143538392, -0.0196470264, -0.0342886113, 0.0118377348, 0.00811711233, 0.0121923983, -0.0353860594, -0.00630029803, 0.0167829506, 0.00707319705, -0.0207980108, 0.0060058604, 0.00119197089, -0.00582183665, 0.0266733803, -0.00408866908, 0.00636052387, 0.00904726796, 0.00863907, 0.0126808975, -0.00918779522, 0.0208113939, -0.00238896068, 0.0181346871, 0.00548055675, 0.00848516, 0.0166223478, 0.00792305171, -0.0184425078, -0.0282392539, 0.00153576036, -0.0170104709, -0.030594755, 0.0221095961, -0.0139322579, -0.0233274978, -0.0142133115, -0.0113492357, 0.0102986284, -0.000247804477, 0.0145479, 0.0244784821, 0.0350916237, -0.00268674409, 0.00201589451, 0.0122593157, -0.00940193143, 0.0146014346, 0.00103136851, 0.0141597772, -0.00129485677, -0.0142936129, 0.00584860379, -0.00681556389, 0.0120585626, 0.00681221811, -0.011677132, -0.0174253602, 0.00764868874, 0.0192589033, 0.00631702738, 0.00839816686, 0.00849185139, -0.0137984222, -0.0424525663, -0.00246591587, -0.0186432619, -0.00946215726, -0.0196737926, -0.0105596073, -0.00399498455, -0.00427269284, -0.0205838736, -0.0135642104, -0.0113358526, 0.0177867152, -0.02500044, -0.0171309225, 0.0036235915, 0.00178502873, 0.000982016674, -0.00683563948, 0.00283563603, -0.0165420473, 0.0292831697, -0.0258436017, 0.00147135218, 0.0258302186, -0.0158996377, 0.0119715696, 0.000759933726, -0.00242074649, 0.00253450661, -0.000675450196, 0.00442994945, 0.00780929113, -0.00227018166, -0.001833544, 0.0201823674, 2.38263474e-05, -0.0317457393, 0.0204366539, 0.0210790634, 0.0177064147, -0.00813049637, -0.0169569366, -0.0016762875, -0.00968298595, 0.00595232612, -0.00944877416, 0.0164617449, -0.0213199668, 0.00931493845, -0.0156453494, 0.0156051992, 0.0114964545, 0.00600920618, -0.0220025275, -0.00742786052, -0.00315349479, 0.00275366195, -0.00780929113, 0.0146415848, 0.0146148177, 0.0154178301, 0.0153910629, 0.0117105907, -0.0202359017, -0.00169803575, 0.00826433115, 0.00340443617, 0.00956922583, 0.00191384519, 0.0229393747, 0.00271853013, -0.0234881, 0.00785613339, -0.00796320196, -0.0143605303, 0.00739440182, 0.0073743267, -0.0356001966, -0.0119381109, -0.0256294645, -0.0224977192, -0.00537348818, 0.00871937163, -0.000645337219, 0.0222166646, 0.0316119045, -0.00366039621, -0.0149895567, 7.84714139e-05, 0.0102384025, 0.0183354393, 0.00921456236, -0.0150832413, 0.00299958419, 0.00191384519, -0.0131827798, 0.0137850391, 0.0261514224, -0.0205571055, -0.00716688158, 0.00576830283, 0.00511250971, -0.0185629595, 0.0221363623, 0.00519615645, -0.0130021023, 0.0178402495, -0.00424927147, -0.000602258951, -0.00983689632, 0.000469678344, -0.00330238673, 0.0256696157, -0.0127277393, 0.0169435516, 0.00298787374, 0.00997073203, 0.0372597538, -0.013959025, -0.0167026483, -0.0396420248, 0.000144291218, 0.013945641, -0.00369050913, 0.010057725, -0.00747470325, -0.0068657524, -0.0377147943, 0.00817733817, -0.0157256518, 0.00793643482, -0.0147754205, -0.00825764, -0.00989043061, 0.0116369817, -0.015029707, 0.0132965399, 0.00764868874, -0.00434295647, 0.008237564, -0.00455040112, 0.00711334776, 0.0136913536, -0.017211223, -0.0200619157, -0.0188172478, -0.0343421437, 0.0148021867, 0.0024943559, 0.0293099359, 0.0069728205, 0.0171041545, 0.000688833708, 0.0228992254, 0.0225244854, -0.0154445972, -0.00750816194, -0.00951569155, 0.0288816635, -0.0112154009, 0.00581849087, -0.0331376269, -0.00826433115, -0.0230062921, 0.008424934, -0.00140610745, 0.0239966735, 0.00379757746, -0.000259096822, 0.0184960421, -0.0297917444, 0.00787620898, 0.000125156948, -0.0121723227, -0.0187503286, -0.00539021799, -0.0141731612, 0.0212530494, -0.0165554304, -0.00510581769, 0.0188841652, -0.0127812736, -0.0202492848, -0.00491844816, 0.0110280309, -0.0116838245, -0.0245320164, -0.00735425111, 0.0053467215, 0.00192053698, 0.00977667049, 0.00430949731, -0.00504893763, -0.00164868392, 0.0133433817, 0.0184558909, -0.0243446454, -0.0127277393, -0.0128749581, 0.0192321371, 0.0156319663, -0.0182283707, 0.00916772, 0.00316018658, -0.0219891444, -0.0165420473, -0.00993058085, -0.0013877051, 0.00878628902, -0.0103053199, 0.0119648781, -0.0198210124, -0.0128080407, -0.024987055, -0.0163412932, 0.00474780845, 0.00513593061, 0.00630698958, -0.00760184648, -0.000723129, 0.00481138, -0.0124399941, 0.01250022, 0.016113773, -0.0206775572, -0.0101112593, 0.00535341306, -0.0129552595, -0.0118176593, 0.00529318722, -0.0116235986, -0.00903388485, -0.00475115422, 0.0065378556, -0.014133011, -0.00296445261, 0.0196336433, -0.0218686927, 0.0182149876, -0.00793643482, 0.0298185106, 0.00254454417, 0.00461731898, -0.00240234402, -0.00127143564, 0.00392137514, -0.0188573971, 0.0274094753, -0.00788959209, 0.0343153775, -0.0115165301, -0.00731410086, -0.0223638825, 0.0166624989, 0.0158594865, 0.000182246076, -0.000330196839, 0.00894689187, -0.0147486534, 0.000894187309, 0.0219088439, -0.00412212824, 0.0198076293, -0.0042358879, 0.0174387433, -0.00845170114, 0.00675868383, -0.00480134226, 0.0127277393, 0.0119113438, 0.0149761727, -0.00665161572, 0.00475115422, 0.0170640051, 0.00823087245, 0.00952907559, -0.00919448677, 0.00499874959, 0.0200351477, 0.00430280576, 0.00452697976, 0.0130087938, -0.00660142768, 0.00748808635, -0.000377248332, 0.0233676489, -0.00129987567, -0.0222300477, 0.00676872162, -0.0405253358, -0.0109276548, 0.00890004914, 0.0167160332, 0.00514262263, 0.0140928598, -0.00303471601, -0.0178268664, 0.00104056962, 0.00641071238, 0.0233274978, 0.00112923561, 0.0182952899, -0.00209285, -0.00402844325, -0.0202225186, -0.0368047133, 0.0420242921, 0.00972982869, 0.00267168763, -0.0147352694, 0.0105796829, -0.00457716826, -0.000955249649, -0.00232204283, -0.00918779522, 0.0247060023, 0.00805019494, -0.0136378203, -9.42336646e-06, 0.0136043606, 0.00287745963]
08 Aug, 2018
unordered_multimap load_factor() function in C++ STL 08 Aug, 2018 The unordered_multimap::load_factor() is a built-in function in C++ STL which returns returns the current load factor in the unordered_multimap container. The load factor is the ratio between the number of elements in the container (its size) and the number of buckets (bucket_count): load_factor = size / bucket_count The load factor influences the probability of collision in the hash table (i.e., the probability of two elements being located in the same bucket). The container automatically increases the number of buckets to keep the load factor below a specific threshold (its max_load_factor), by causing a rehash each time when an expansion is needed. Syntax: unordered_multimap_name.load_factor() Parameter: The function does not accept any parameter. Return Value: The function returns the current load factor. It can be of integer or double type. Below programs illustrate the unordered_multimap::load_factor() function: Program 1: // C++ program to illustrate the // unordered_multimap::load_factor() function #include <iostream> #include <unordered_map> using namespace std; int main() { // declaration unordered_multimap<int, int> sample; // inserts element sample.insert({ 1, 2 }); sample.insert({ 1, 3 }); sample.insert({ 2, 4 }); sample.insert({ 5, 8 }); sample.insert({ 7, 10 }); cout << "The size is: " << sample.size(); cout << "\nThe bucket_count is: " << sample.bucket_count(); cout << "\nThe load_factor is: " << sample.load_factor(); sample.insert({ 1, 1 }); sample.insert({ 9, 0 }); cout << "\n\nThe size is: " << sample.size(); cout << "\nThe bucket_count is: " << sample.bucket_count(); cout << "\nThe load_factor is: " << sample.load_factor(); sample.insert({ 1, 1 }); cout << "\n\nThe size is: " << sample.size(); cout << "\nThe bucket_count is: " << sample.bucket_count(); cout << "\nThe load_factor is: " << sample.load_factor(); return 0; } Output: The size is: 5 The bucket_count is: 7 The load_factor is: 0.714286 The size is: 7 The bucket_count is: 17 The load_factor is: 0.411765 The size is: 8 The bucket_count is: 17 The load_factor is: 0.470588 Program 2: // C++ program to illustrate the // unordered_multimap::load_factor() #include <iostream> #include <unordered_map> using namespace std; int main() { // declaration unordered_multimap<char, char> sample; // inserts element sample.insert({ 'a', 'b' }); sample.insert({ 'a', 'b' }); sample.insert({ 'a', 'd' }); sample.insert({ 'b', 'e' }); sample.insert({ 'b', 'd' }); cout << "The size is: " << sample.size(); cout << "\nThe bucket_count is: " << sample.bucket_count(); cout << "\nThe load_factor is: " << sample.load_factor(); sample.insert({ 'b', 'k' }); sample.insert({ 'b', 'h' }); cout << "\n\nThe size is: " << sample.size(); cout << "\nThe bucket_count is: " << sample.bucket_count(); cout << "\nThe load_factor is: " << sample.load_factor(); sample.insert({ 'z', 'j' }); cout << "\n\nThe size is: " << sample.size(); cout << "\nThe bucket_count is: " << sample.bucket_count(); cout << "\nThe load_factor is: " << sample.load_factor(); return 0; } Output: The size is: 5 The bucket_count is: 7 The load_factor is: 0.714286 The size is: 7 The bucket_count is: 17 The load_factor is: 0.411765 The size is: 8 The bucket_count is: 17 The load_factor is: 0.470588 Learn C++ Online – Master everything from basics to advanced concepts. Apply your knowledge with practical exercises and boost your skills. Take the Three 90 Challenge: finish 90% in 90 days for a 90% refund. Start now and level up your C++ programming!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum/Algorithm for Dynamic Time out timer Calculation/Difference between Round trip time (RTT) and Time to live (TTL)/Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms/Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm/Round Robin Scheduling Algorithm with Different Arrival Time/Selfish Round Robin CPU Scheduling/Find the order of execution of given N processes in Round Robin Scheduling/Calculate server loads using Round Robin Scheduling/set::lower_bound() Function in C++ STL/Implementation of lower_bound() and upper_bound() in List of Pairs in C++/Difference between std::set::lower_bound and std::lower_bound in C++/Difference between std::set vs std::vector in C++ STL/std::minmax() and std::minmax_element() in C++ STL/std::rotate vs std::rotate_copy in C++ STL/std::bitset::to_ullong and std::bitset::to_ulong in C++ STL/std::upper_bound and std::lower_bound for Vector in C++ STL/std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++/std::string::append vs std::string::push_back() vs Operator += in C++/Vector push_back() in C++ STL/vector :: cbegin() and vector :: cend() in C++ STL/unordered_multiset cend() function in C++ STL/unordered_multiset bucket() function in C++ STL/unordered_multiset emplace_hint() function in C++ STL/unordered_multiset end() function in C++ STL/unordered_multiset size() in C++ STL/unordered_multiset emplace() function in C++ STL/unordered_multiset find() function in C++STL/unordered_multiset erase() function in C++ STL/unordered_multiset clear() function in C++ STL/unordered_multiset swap() function in C++ STL/unordered_multiset bucket_size() function in C++ STL/unordered_multiset bucket_count() function in C++ STL/unordered_set bucket_count() function in C++ STL/unordered_set cbegin() function in C++ STL/array::cbegin() and array::cend() in C++ STL/array::rbegin() and array::rend() in C++ STL/multimap rbegin in C++ STL/vector rbegin() and rend() Functions in C++ STL/multiset rbegin() and rend() function in C++ STL/map rbegin() function in C++ STL/map upper_bound() function in C++ STL/Set upper_bound() in C++ STL/multimap upper_bound() function in C++ STL/multimap empty() function in C++ STL/multimap value_comp() function in C++ STL/multimap swap() function in C++ STL/multimap::swap() in C++ STL/multimap equal_range() in C++ STL/unordered_set equal_range in C++ STL/set vs unordered_set in C++ STL/unordered_set count() function in C++ STL/unordered_set bucket() function in C++ STL/unordered_set emplace() function in C++ STL/set::emplace() in C++ STL/multiset::emplace() in C++ STL/multiset find() function in C++ STL/multiset cbegin() and cend() function in C++ STL/multimap::cbegin() and multimap::cend() in C++ STL/multimap::begin() and multimap::end() in C++ STL/set::begin() and set::end() in C++ STL/unordered_multimap begin() and end() function in C++ STL/unordered_multimap empty() function in C++ STL/unordered_multimap find() function in C++ STL/unordered_multimap equal_range() function in C++ STL/unordered_multimap bucket_count() function in C++ STL/unordered_multimap bucket_size() function in C++ STL/unordered_multimap operator= in C++/unordered_multimap load_factor() function in C++ STL
https://www.geeksforgeeks.org/unordered_multimap-load_factor-function-in-c-stl/?ref=next_article
PHP
unordered_multimap load_factor() function in C++ STL
unordered_multiset clear() function in C++ STL, What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, jQWidgets jqxTreeMap width Property, Round Robin Scheduling Algorithm with Different Arrival Time, Difference between Flow and TypeScript, set::begin() and set::end() in C++ STL, unordered_multiset emplace() function in C++ STL, jQWidgets jqxTree destroy() Method, unordered_set bucket_count() function in C++ STL, jQWidgets jqxTree collapseAll() Method, Find the order of execution of given N processes in Round Robin Scheduling, jQWidgets jqxScrollView buttonsOffset Property, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Vector push_back() in C++ STL, jQWidgets jqxListBox enableHover Property, Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm, std::rotate vs std::rotate_copy in C++ STL, Selfish Round Robin CPU Scheduling, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxSlider buttonsPosition Property, std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++, std::upper_bound and std::lower_bound for Vector in C++ STL, Difference between Round trip time (RTT) and Time to live (TTL), jQWidgets jqxSlider rtl Property, Difference between std::set::lower_bound and std::lower_bound in C++, jQWidgets jqxTooltip opacity Property, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, unordered_multiset erase() function in C++ STL, multiset find() function in C++ STL, set vs unordered_set in C++ STL, jQWidgets jqxToolBar height Property, PHP, std::minmax() and std::minmax_element() in C++ STL, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, unordered_set emplace() function in C++ STL, unordered_multimap empty() function in C++ STL, unordered_set bucket() function in C++ STL, map rbegin() function in C++ STL, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, map upper_bound() function in C++ STL, Node.js date-and-time Date.transform() Method, unordered_multiset size() in C++ STL, TypeScript Optional Parameters, jQWidgets jqxToolBar theme Property, Difference between std::set vs std::vector in C++ STL, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, Steps to Diagnose and Resolve a Slow Network, How to use Optional Chaining with Arrays and Functions in TypeScript ?, Calculate server loads using Round Robin Scheduling, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, jQWidgets jqxScrollView showButtons Property, set::emplace() in C++ STL, Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms, jQWidgets jqxScrollView disabled Property, multimap::cbegin() and multimap::cend() in C++ STL, jQWidgets jqxSplitter destroy() Method, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, set::lower_bound() Function in C++ STL, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, jQWidgets jqxTree collapseItem() Method, multimap upper_bound() function in C++ STL, std::string::append vs std::string::push_back() vs Operator += in C++, unordered_multiset swap() function in C++ STL, unordered_multiset cend() function in C++ STL, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), Set upper_bound() in C++ STL, jQWidgets jqxSortable opacity Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, multiset cbegin() and cend() function in C++ STL, multimap rbegin in C++ STL, vector :: cbegin() and vector :: cend() in C++ STL, multimap swap() function in C++ STL, jQWidgets jqxSlider height Property, jQWidgets jqxSwitchButton onLabel Property, unordered_multiset bucket_size() function in C++ STL, unordered_set cbegin() function in C++ STL, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, jQWidgets jqxToolBar tools Property, multimap empty() function in C++ STL, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTree width Property, multimap::swap() in C++ STL, unordered_multimap bucket_size() function in C++ STL, multimap equal_range() in C++ STL, Implementation of lower_bound() and upper_bound() in List of Pairs in C++, jQWidgets jqxTree clear() Method, TLS Handshake?, multiset rbegin() and rend() function in C++ STL, unordered_multimap operator= in C++, Algorithm for Dynamic Time out timer Calculation, Adhoc TCP, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, jQWidgets jqxTabs position Property, Differences between Wireless Adhoc Network and Wireless Sensor Network, jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, unordered_multimap begin() and end() function in C++ STL, std::bitset::to_ullong and std::bitset::to_ulong in C++ STL, unordered_multiset emplace_hint() function in C++ STL, multimap::begin() and multimap::end() in C++ STL, unordered_multiset bucket_count() function in C++ STL, unordered_multiset find() function in C++STL, unordered_multimap bucket_count() function in C++ STL, unordered_multiset bucket() function in C++ STL, Impact of Three-way Handshake and Slow Start Algorithm, array::rbegin() and array::rend() in C++ STL, multimap value_comp() function in C++ STL, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, unordered_multimap load_factor() function in C++ STL, multiset::emplace() in C++ STL, unordered_set equal_range in C++ STL, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, unordered_multimap equal_range() function in C++ STL, unordered_set count() function in C++ STL, vector rbegin() and rend() Functions in C++ STL, array::cbegin() and array::cend() in C++ STL, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, unordered_multiset end() function in C++ STL, How to Sort an Array Having Optional Properties in TypeScript ?, unordered_multimap find() function in C++ STL
GeeksforGeeks
[-0.0338997394, 0.00196649879, -0.00858793408, 0.022172939, 0.0223110504, -0.0135724507, -0.0108102495, 0.0258391332, -0.0130702322, 0.0269942358, -0.0154683245, 0.0228634905, -0.0132460091, 0.0161212087, -0.00275749271, -0.0336235166, -0.0108290827, -0.0135724507, -0.021808831, -0.0043065222, -0.00746422028, 0.00657906, -0.0444965437, 0.00217366382, -0.0218590535, 0.0118146865, -0.00962375943, -0.0196241811, 0.0220348295, 0.00366619392, -0.000305450754, 0.0117770201, -0.00386708113, -0.0227756016, -0.00978698, 0.0233154874, 0.0507491641, 0.00504729431, 0.00129399693, 0.0098372018, 0.0129321227, 0.021356836, -0.0133464523, 0.0139114484, 0.017615309, -0.0177408624, -0.0140370028, -0.000707421626, -0.0171005353, 0.00954842661, 0.0304344315, -0.0148907742, 0.0185318571, -0.00652256096, 0.0227002688, 0.000294268568, 0.0174018648, 0.0361597203, -0.00747677544, -0.00680505857, -0.0445216559, -0.0286766682, 0.0186699666, -0.00607056404, 0.000901638879, 0.00964259263, -0.0337741822, 0.0614213049, 0.02244916, -0.0198376253, -0.0485394038, 0.0504980534, 0.00426885579, 0.0144136669, -0.004152718, 0.0224868264, -0.023277821, -0.0167113151, -0.00230392674, 0.0248598084, -0.0205156188, -0.006936891, 0.00584142702, -0.00370072131, 0.011406634, 0.0193856284, 0.0146396644, -0.0268937927, 0.00900226366, 0.027747564, -0.0158952102, 0.0021485528, -0.018883409, 0.0088264877, -0.0144638885, 0.0288022216, -0.00941659417, 0.0178413074, 0.0164225399, 0.0395496935, -0.0131078986, 0.00818615872, 0.000692119647, 0.0208420604, 0.0229388233, -0.0100067006, 0.0243827011, 0.0250732508, -0.00323303067, 0.00400833, 0.0364861637, -0.00316711445, -0.0287017785, 0.0222859383, -0.0111869136, 0.0429396667, -0.00329894666, 0.0115321884, 0.0142504452, -0.0144764436, -0.0173893105, 0.0200134013, 0.0068552806, 0.00690550217, -0.00853771158, 0.0149535509, -0.000369405141, -0.0120218517, 0.0212438367, -0.0384197049, 0.0160709862, -0.0152674373, -0.031313315, -0.0683016926, -0.0297564361, 0.00365049951, 0.0145266652, 0.0236795954, 0.0168494247, -0.0229011569, -0.0405039079, -0.00576295564, -0.00118178257, 0.0345024019, -0.0131957866, -0.0145266652, -0.0247970298, 0.0208169501, -0.00619611889, -0.012957233, 0.00031408263, 0.0203398429, 0.0373399332, -0.00275749271, 0.0103645306, 0.00651628291, 0.0273960102, 0.00208263658, -0.0162844304, -0.0352808386, 0.0311375372, 0.0116891321, 0.023089489, -0.000373132527, -0.0201012883, 0.0411567949, 0.0405792408, 0.00126574712, -0.0170503128, 0.0209299494, 0.0445969887, 0.0119716302, 0.017150756, -0.00709383423, 0.00930359494, 0.0207918398, 0.0450740978, 0.0377165973, 0.0143760005, -0.000337427948, -0.00866954401, -0.0138110043, 0.0356323905, 0.0268686805, -0.00972420257, -0.00699339062, 0.0296308827, 0.0123734046, 0.0520800427, 0.0397003591, 0.00582887186, 0.0169498697, -0.00221603853, 0.0458023138, 0.0348037295, 0.0286264457, -0.00258799386, 0.019988291, -0.00255189696, 0.0446221, -0.0169624239, 0.0044069658, -0.0430652238, 0.013597562, -0.00836821273, 0.000258564, 0.00179386116, -0.039323695, 0.0360843875, -0.00713150064, 0.000111527785, 0.0349795073, -0.0238804817, 0.00762744108, -0.0266175717, 0.0262409076, -0.0255880244, 0.0368879363, 0.0390725881, -0.0438938849, 0.018167749, -0.0254122484, 0.00688666897, -0.0232150424, -0.0120971845, -0.0297313258, 0.0458525345, 0.020540731, 0.0081108259, -0.0427387804, 0.0509751625, 0.021444723, -0.0299824346, -0.00230706553, 0.0229513776, -0.0416087881, -0.0363857187, -0.0170879792, 0.00909015164, 0.0323679708, -0.0141625572, 0.0355821699, -0.0108353607, -0.0330459662, 0.0162342079, -0.0162593182, -0.0054396526, -0.019071741, -0.0142127788, -0.00169184804, -0.00422177278, -0.0253620259, 0.0641835, -0.0223989375, 0.00951076, 0.0338997394, 0.0108730271, -0.0389470309, -0.00238239835, -0.0079476051, 0.000219524343, 0.00983092375, -0.015882656, 0.0232150424, 0.00982464664, -0.0331213, 0.0317402, -0.00553381816, -0.0103268651, -0.0428392254, 0.00974303577, 0.0118460748, -0.0050096279, 0.0235038176, -0.00514773792, 0.0136728948, -0.0262157973, 0.00268843747, 0.00941031612, -0.0191972964, 0.0265924614, 0.0232527088, -0.000624634093, -0.0040899408, 0.017615309, -0.0137482276, -0.0248974748, -0.0581568852, -0.0319913067, 0.000410014181, -0.0423118956, -0.00767766312, 0.000179013368, -0.00452310406, 0.00704361219, 0.0336988494, -0.0204653982, -0.0151544381, -0.0386457033, -0.00863815565, -0.0122227389, -0.00742027583, 0.0178161953, -0.051929377, 0.0331966318, -0.0323679708, -0.0110990256, 0.0082866028, 0.00298819924, -0.0218213871, 0.0223738272, -0.0224240497, -0.0439441055, -0.0254122484, 0.00203241478, -0.0221603848, 0.00117236597, 0.00813593715, -0.0231648218, -0.0167238712, -0.024545921, 0.00155766157, -0.0360341668, 0.0442705452, -0.00944798253, -0.0404034667, -0.00993136782, 0.0283502247, -0.0212940574, -0.0453503169, -0.0179543067, 0.0253243595, -0.0426132269, -0.0294551067, 0.00841215719, -0.0137482276, -0.031564422, 0.0120846285, -0.00288618612, 0.0230016, 0.000672501745, 0.000909486, -0.0342764035, -0.00104053365, 0.0231899321, 0.00430966122, -0.0119088525, -0.0138486708, 0.0286264457, 0.0659914911, 0.000679956574, 0.0235917065, 0.0134468963, 0.0275215656, 0.0310119819, -0.023817705, 0.00437243842, -0.00819871482, -0.0176780857, 0.012411071, -0.0249351412, 0.0292793289, -0.0241441466, -0.0373901539, -0.0187829658, -0.0100129787, -0.01697498, -0.0335984081, 0.0282748919, -0.038595479, 0.0101134218, 0.0195990708, 0.0376412645, 0.0224366039, -0.0515778251, 0.0106030852, 0.00831799116, 0.0195614044, -0.0140621141, 0.0090085417, 0.0205281749, 0.0588097684, -0.0247593652, -0.00419352297, 0.0341257378, -0.000684664876, -0.0173516441, 0.00109232485, 0.00452310406, 0.0231522657, -0.00344333448, -0.0343768448, -0.00226312131, -0.0433916636, -0.019887846, -0.011770742, -0.0276973415, -0.0382439271, -0.0313635357, -0.0664937124, 0.031664867, -0.0145266652, -0.0222482719, -0.0120532401, -0.0156315453, -0.0172386449, 0.0148531077, 0.00188488828, -0.0216832776, 0.0278982297, 0.00798527151, 0.00466121407, -0.00427513383, 0.00956098177, -0.0152925486, 0.0147526637, -0.0518791564, 0.0294551067, -0.00296622701, 0.0124487374, -0.038695924, -0.00375408214, 0.0103394203, -0.0193981826, -0.0109671932, 0.00427827239, -0.0217334982, 0.00448229862, 0.00796643831, -0.055294238, 0.0248472523, 0.0314639807, 0.00458274223, 0.0250732508, -0.00871976558, -0.0318657532, 0.0592617653, 0.0273709, -0.0237423722, -0.0262409076, 0.0299824346, 0.0180421937, 0.0243952554, -0.0174395312, -0.0140370028, 0.0081422152, 0.00694316858, -0.0114505785, 0.0102138659, 0.020904839, -0.0283753369, 0.0111115808, -0.0281242281, -0.0155813238, 0.0206411742, 6.60632941e-05, 0.0178915281, -0.00101071445, 0.0360341668, 0.0176404193, -0.0050724051, 0.0370637141, 0.0142881116, 0.0110550812, -0.0292291082, 0.0255126916, 0.0103833638, 0.00612706365, -0.00135520485, -0.00420293957, -0.0217837207, -0.0478865206, 0.000583044137, 0.0210931711, 0.0222984944, 0.00120453932, 0.0233029313, -0.0338244066, -0.0250355843, -0.0115761328, 0.0183184147, -0.000876528, -0.0171256457, -0.0321921967, -0.00399891334, -0.0319662, 0.0127437906, 0.00305568473, 0.0127500677, -0.00777810672, -0.0362601653, -0.0288524441, 0.00437243842, -0.01423789, 0.0107349167, -0.00251423055, -0.0181928594, -0.00870093238, 0.000823951967, -0.0475098565, 0.0283502247, 0.00187233277, -0.0144764436, 0.0344019569, -0.0262157973, -0.0199506246, 0.0169122033, 0.0246087, -0.0351552851, -0.0483385138, 0.00315455906, 0.0250732508, -0.000444149337, -0.0063153957, 0.000940874685, 0.00687411381, 0.0573533364, -0.030484654, -0.00906504132, 0.00514773792, -0.0115070781, 0.0271449015, 0.037766818, 0.027195124, -0.00324872485, 0.032292638, -0.015242327, 0.0112936348, 0.0452247635, -0.0329706334, -0.0158952102, 0.0182933025, -0.0273206774, 0.00785971712, -0.00237925933, 0.0136603387, 0.0114191892, 0.0129070114, -0.0231146, -0.0138863372, 0.0230643768, -0.0463045314, 0.0115510216, 0.0101761995, -0.031564422, 0.000290933531, 0.0431907773, -0.0231899321, -0.0295806602, 0.0010742764, -0.00924081728, -0.0224993825, 0.00414644042, -0.00193197117, 0.012775179, 0.0324684158, -0.0184941906, -0.0431154445, 0.0115133552, -0.0137858931, 0.014150002, 0.022989044, 0.0217962768, 0.0300577674, 0.00997531228, -0.032493528, -0.00811710395, -0.00791621674, -0.0215702783, -0.00372269354, 0.0131330099, -0.027747564, 0.0288022216, -0.00805432629, -0.025550358, 0.0087762652, 0.00931615, 0.00801038276, 0.00155216851, 0.00730099902, 0.00224428833, -0.0112120248, 0.0201264, 0.0271700118, -0.00278574228, -0.0115133552, -0.0322424173, -0.0309366491, -0.0385201462, 0.0028657834, -0.00168400083, 0.0233280417, 0.00952331536, -0.0049907947, 0.0292793289, -0.00916548446, 0.0156315453, -0.00880765449, 0.0201389547, -0.0166485384, 0.0160584319, -0.0118209645, -0.0142127788, 0.00182995806, 0.00733238785, 0.0135347843, 0.00819243677, 0.017150756, 0.00960492622, 0.00871348847, -0.0279735625, 0.0149535509, 0.0508244969, -0.00432221685, -0.00901481882, 0.0266175717, -0.0225370489, 0.027195124, -0.0268937927, 0.00718800025, 0.0014642803, -0.0160835423, -0.0142881116, 0.0138612259, 0.00812338199, 0.00518540433, -0.0319913067, -0.00244046724, 0.00711266743, -0.0126370694, 0.00725705503, -0.0197748467, 0.00645350572, -0.0373148248, 0.0361346081, 0.0295053273, -0.0414581224, 0.0300326571, -0.0164225399, -0.00926592853, -0.0164727625, 0.0111555252, 0.00425943919, 0.02847578, -0.00271197897, 0.00292071351, -0.0350046195, 0.00937892776, 0.0268184599, -0.0123859597, -0.0413074605, 0.0412321277, 0.0213191696, 0.00562484562, 0.0149158845, -0.0250230283, -0.00863815565, 0.00924709532, -0.00017087195, 0.0194860715, -0.0387963653, -0.0184816346, 0.00738888746, -0.0283502247, 0.0121599613, -0.0137984492, 0.00331150228, -0.00319850305, -0.0102891987, -0.00235100952, -0.00312160095, 0.0316397548, -0.00537373638, 0.00145721796, 0.00775299547, -0.0103582535, 0.00395183079, 0.0304093212, -0.00555892941, -0.0130827874, -0.0176655296, -0.0272955671, 0.0300577674, -0.0188708548, -0.0147526637, -0.00759605225, 0.00791621674, 0.0442454368, 0.0109106936, -0.0268937927, -0.00980581343, -0.0380179286, -0.0120406849, 0.0369381607, 0.00496254489, -0.0167740919, 0.0130702322, 0.0247342531, -0.0291788857, -0.0179417506, 0.0161212087, -0.00597012043, -0.00220191362, -0.0242948122, 0.0190842971, 0.0418096781, -0.011770742, -0.00728216581, -0.0302586555, -0.0206411742, 0.00501276692, 0.0141625572, -0.00960492622, 0.0116451876, -0.00409935741, -0.0115384664, -0.0147024421, -0.0034182237, -0.0185569674, -0.0324684158, -0.00132617028, 0.00327383587, 0.0189712979, -0.0127061242, 0.0153176598, -0.0125742918, 0.015330215, -0.0123608494, -0.0167740919, 0.00189744367, -0.0248346962, -0.00991881266, 0.000861618319, -0.0183937475, -0.0372394919, 0.0480371863, 0.0133841187, -0.00292385253, -0.0350046195, -0.00169812574, 0.00114411616, 0.0392232537, 0.00634992309, 0.0380932614, -0.0142253349, -0.0100694774, -0.00532979239, -0.000856910076, -0.0191972964, 0.039524585, 0.0377919301, 0.0356826149, 0.0325688608, -0.0192475189, 0.00450427085, -0.00171382015, 0.0345275104, -0.0508244969, -0.0119653521, -0.00502532208, 0.00666694855, -0.00366619392, 0.00700594578, 0.0114694117, -0.00881393161, 0.000407267682, -0.0167238712, 0.0155813238, 0.0293546617, -0.00810454879, -0.0263915733, 0.0145768877, -0.00457018707, 0.00417155121, -0.0109232487, -0.0341257378, -0.000885944522, 0.0139867812, 0.00606742548, 0.012869345, -0.0126559027, 0.0322424173, 0.0409810171, 0.0153553262, -0.00983092375, 0.0106030852, 0.00229451014, 0.02847578, 0.0283251144, 0.00333661307, -0.00816732552, 0.0135724507, 0.0100192558, 0.0138361156, 0.016698759, -0.0255126916, 0.00202299817, -0.0379425958, -0.0142253349, -0.0380430408, 0.00844354555, -0.00039255427, -0.00995647907, 0.00991253462, -0.0184816346, -0.0311375372, 0.049192287, 0.0189210754, 0.00920315087, 0.0497196168, -0.0232401546, 0.0369883813, -0.0034276403, 0.0144638885, 0.0120281298, -0.0076023303, -0.00402716314, -0.00718172221, 0.0137482276, 0.00759605225, 0.0170628689, -0.0347032882, 0.0372143798, -0.00831799116, -0.0109609151, 0.00381058175, 0.0199255124, 0.0126433466, 0.0167740919, -0.049192287, 0.0269440133, 0.014966107, 0.0107349167, -0.00236827345, -0.0190089643, 0.0131957866, 0.0409056842, -0.0335230753, -0.0154432142, 0.0429145582, 0.000802764611, -0.0214823894, -0.00695572421, -2.21682312e-05, 0.00254091085, 0.00447602104, 0.0106533067, 0.00395810837, 0.00325500267, 0.0184565242, 0.00613961928, 0.0309617613, 0.0209801719, -0.00483071292, 0.00141013495, -0.0115133552, -0.0499707237, -0.0374654867, 0.0237800386, 0.0488156229, 0.0054396526, 0.000139875658, 0.00819871482, 0.0077655511, 0.0174520873, -4.91183273e-05, 0.0051822653, -0.0517284907, 0.0129195666, 0.0255378019, 0.00607370306, -0.0394492522, -0.00147212751, -0.0149786621, -0.019347962, -0.0299573243, 0.0187327433, 0.032393083, 0.00807315949, 0.000893007, -0.00268686819, -0.0225119367, -0.0218967199, -0.0739265382, -0.00567506719, -0.0170000903, -0.00693061296, -0.0148028852, -0.0113501344, -0.0268184599, 0.0206537303, -0.00628400687, -0.00711266743, -0.00328011345, 0.00510693295, 0.0308613181, 0.0104649747, -0.00680505857, 0.0170252025, -0.0312882029, 0.014049558, -0.0222482719, -0.0259646885, -0.00374152674, 0.0378923751, 0.00932870619, 0.0370134935, 0.0292793289, -0.00780949509, 0.0177659746, 0.00451682601, -0.00369758252, -0.030484654, -0.0584582165, 0.0103331422, 0.0291788857, -0.0201515108, -0.00664811535, -0.00392044196, 0.0268435702, 0.00269000698, 0.0147526637, 0.0285260025, 0.00170283404, -0.0230267104, -0.00851887837, -0.0125177922, 0.0013277398, -0.0210178383, -0.0170628689, 0.0119276857, 0.0114317453, 0.0307859853, -0.0148907742, -0.0468569696, 0.00404913537, -0.0145015549, -0.00501590548, -0.0433665551, 0.0149786621, -0.00111979, -0.00755210826, 0.0209173933, 0.00501590548, -0.0365614966, 0.00883904286, -0.0141248908, -0.00383883156, 0.00818615872, -0.00264135469, -0.0198125131, -0.000619141036, -0.00780949509, -0.0368879363, -0.0189461876, -0.00996903423, -0.0121285729, -0.0109609151, -0.0231271554, 0.00407424616, 0.00337427948, -0.00105622795, 0.00555579038, -0.00739516504, 0.00534548657, -0.00114490092, -0.0403030217, -0.0327446349, -0.0155687686, 0.0202268437, 0.0170000903, -0.0448481, 0.0307608731, 0.0357328355, -0.0146396644, 0.0311375372, -0.0381434821, -0.0385201462, -0.0208922829, 0.00852515642, 0.0260651316, 0.0141123356, -0.00023188362, 0.0068364474, 0.00342136249, 0.0435674414, -0.00137482269, -0.00189430476, -0.0299071018, 0.0239809267, -0.00680505857, -0.00308550405, 0.0081422152, -0.0165229831, 0.0141625572, 0.0319662, 0.0317904204, -0.055394683, -0.00351238949, -0.0265924614, -0.0159328766, 0.023277821, -0.0301582124, 0.0154306591, 0.0186071899, -0.0180296376, -0.0223110504, 0.0241692569, -0.019347962, 0.0184941906, 0.014966107, -0.0274211224, 0.011318746, 0.00258014677, 0.00590734323, -0.00224899664, -0.0212438367, -0.0249602515, 0.0350548401, 0.0129446778, -0.0109358048, 0.0121160178, -0.0308613181, 0.0145517765, 0.00232746825, 0.00850632321, -0.00518540433, -0.0177157521, 0.031664867, 0.00269628479, 0.0106972503, -0.0228258241, 0.0101887546, 0.0159077663, -0.0214070566, -0.0182556361, 0.00627145171, -0.0553444624, -0.00702477898, 0.00468318583, -0.0311877597, 0.0118209645, -0.0109923044, 0.0222231615, 0.00895832, -0.00887670927, -0.00264606299, -0.0151544381, 0.00532979239, 0.0322173052, -0.0109169716, 0.00328953, -0.00463610329, 0.00991881266, 0.0375910439, 0.0152799934, 0.0150414398, 0.0186574124, 0.0354063921, -0.00787227228, -0.007162889, -0.0137105612, 0.0196869597, -0.00387649774, 0.0132083427, 0.0133213419, 0.00757721905, 0.00696827937, 0.0424625613, 0.00752699748, -0.00247970317, -0.0303088762, 0.000426885585, 0.0144136669, 0.00634678453, -0.00382627593, -0.00586026, -0.00213756692, 0.00370386033, 0.0014077808, -0.0199631788, -0.0163723174, -0.000772160711, 0.0134971179, 0.0137733379, -0.000906347181, 0.0234159306, -0.00574412243, -0.015606435, -0.0274211224, -0.0139240036, 0.0124487374, 0.0247342531, -0.00094009, 0.0145141101, 0.00511634955, 0.0105089191, 0.0475851893, -0.0110236928, -0.00929104, 0.00369444373, 0.0135096731, -0.0184816346, -0.0158701, -0.00422805082, 0.0273457896, 0.0101761995, 0.00454821484, 0.0281242281, 6.87607535e-05, 0.0240311474, 0.00862560049, 0.0183560811, 0.0385703705, -0.0107600279, -0.0279735625, -0.000298192143, -0.00972420257, 0.023817705, -0.00679250294, -0.010954638, 0.0160458758, -0.0196869597, 0.02518625, -0.0182430819, -0.010220143, 0.00800410472, 0.0153678814, -0.0158701, 0.0131078986, -0.0155059909, 0.017339088, 0.0373399332, 0.0275968984, -0.00430338364, -0.00902737491, 0.0321921967, -0.0107474728, -0.00598895364, -0.0113689676, 0.00617414666, -0.00998158939, -0.0143760005, 0.0163723174, 0.00644722814, 0.0171382017, -0.0093349833, 0.000555186707, 0.00309021235, 0.0321921967, -0.00972420257, 0.0124801258, -0.0143885557, 0.00431280024, -0.0387461446, -0.0150916614, -0.00870093238, 0.0216079447, -0.00401774654, -0.00306510134, 0.0093349833, -0.0080919927, 0.00497510051, -0.0127186794, -0.0233405977, 0.0144136669, 0.0118586309, -0.0147401085, 0.0172260888, 0.0251988061, -0.00988114625, -0.0106470287, -0.0126559027, -0.0121411281, -0.0128944563, -0.00303214323, 0.00494998973, 0.0118837412, 0.0157319903, -0.0460283123, 0.0223738272, -0.0265673511, 0.00720055541, 0.00466121407, -0.00557776261, -0.0173014216, -0.00267902086, -0.03066043, 0.00295994943, 0.0106093623, 0.0163848735, -0.00728844386, -0.00983092375, 0.00363480533, -0.0175901968, -0.0276220087, 0.00715661142, -0.035958834, 0.0110174147, 0.0267180167, 0.0140872244, 0.00704361219, -0.033849515, -0.0258893557, -0.00131126074, -0.00930359494, 0.00228195451, -0.0125554586, -0.00617100811, -0.00657278253, -0.00548673561, 0.0162342079, 0.00283125602, -0.0128505118, -0.0114443, -0.00014801709, -0.000467298465, 0.00721311104, 0.0116891321, -0.000384314742, 0.0187955219, 0.0148907742, -0.00920942891, 0.00876998808, -0.0102326991, 0.0142630013, 0.0263915733, -0.0062337853, -0.0137858931, -0.015518547, -0.0325939693, 0.0094793709, 0.00711894501, -0.0035814445, 0.0241064802, 0.00100129785, 0.0418096781, 0.00224428833, 0.0309366491, 0.00398635818, -0.0186323, -0.0123357382, -0.0090085417, 0.0198376253, 0.0234284848, 0.0316397548, 0.0121976277, -0.0198752917, -0.0179543067, -0.0161588751, -0.0248346962, 0.00548987417, -0.0292542186, 0.0234912634, -0.0236293729, 0.00520423753, -0.0306855403, 0.00966142584, -0.018619746, 0.0107223615, 0.0221227184, 0.0137356715, -0.0123106269, -0.00313258683, -0.0323177502, -0.0580564402, -0.0194735155, 0.0123796826, 0.0103394203, -0.0153678814, 0.00928476173, 0.00942287128, -0.00234787073, 0.00364108291, 0.0163472071, 0.00844354555, 0.0252364725, -0.0215577222, -0.000736063754, 0.00972420257, 0.00649117213, 0.00425630063, 0.0228634905, -0.00623064628, 0.0211936142, -0.0220976062, 0.0197497364, -0.00314200344, -0.00226469082, 0.00744538708, -0.00442266045, -0.00680505857, 0.0194107387, 0.0103959199, -0.0197497364, -0.00252678595, 0.00991253462, 0.00342136249, -0.00861932244, -0.00927220657, -0.00229137111, 0.00573470583, -0.0152674373, 0.0156315453, 0.0404285751, 0.0255252477, 0.0288524441, 0.0295806602, -0.0277977847, -0.0322173052, 0.00801666, 0.0228258241, 0.0137984492, -0.0129321227, 0.0188708548, 0.00514459936, 0.0230016, 0.00515715452, 0.0449234322, 0.0150414398, -0.0242069233, 0.00120610872, -0.0155687686, 0.00607684208, -0.0086318776, -0.00309649, -0.00989997946, -0.0174395312, -0.00743283145, 0.00108055421, 0.00872604363, -0.00703733461, 0.0184314139, 0.0256508011, -0.0311375372, 0.0126559027, -0.0273457896, 0.017514864, -0.0246212538, -5.73333236e-05, -0.00123985158, 0.0307357628, -0.000170185318, -0.0121474061, 0.00216110842, 0.00280300621, -0.00605487, -0.0104398634, 0.0133464523, 0.0056311232, -0.0197497364, 0.00311061484, 0.000355672586, 0.00978070218, -0.00486837886, -0.00759605225, -0.0319913067, 0.00823638123, 0.0120909065, -0.00173893105, 0.0218464974, 0.00161337643, -0.0272955671, 0.00365363853, -0.0176906418, -0.020352399, 0.00487779547, 0.00279515889, -0.00715033384, 0.0109734712, 0.0229513776, -0.0228509344, 0.00570645602, -0.00903365202, -0.00564367883, 0.00221917732, -0.0101761995, -0.0153176598, 0.0418599, 0.0109734712, -0.00555265136, -0.00457018707, -0.0134594515, 0.0371139348, 0.00928476173, 0.00812965911, 0.00568762282, -0.00257700798, 0.0165606495, -0.0149786621, -0.00557776261, 0.01396167, 0.0206788406, -0.00149253011, -0.00995647907, 0.029480217, -0.000189705126, -0.0270444583, -0.0239809267, 0.00656650495, 0.0107035283, -0.00970536936, -0.0191596299, 0.0175650865, 0.0411316827, 0.00582573283, 8.96538186e-05, -0.0209801719, -0.016786648, -0.00690550217, 0.0174520873, -0.00595442625, 0.00219092751, -0.0204151757, -0.0247719195, 0.000150076972, 0.00306667085, 0.0144513324, -0.0257638, -0.00942287128, -0.0156315453, 0.000788247387, -0.0136101171, -0.00725705503, 0.0139867812, -0.0071001118, 0.0331715234, 0.0055495128, -0.00526073715, 0.0143885557, -0.00651000533, 0.0185946338, 0.0233782642, 0.000504964846, 0.00487151789, 0.00433477201, -0.0104712527, 0.00222702441, 0.0353310592, -0.0115824109, 0.000897715276, 0.0285511129, 0.00378547073, -0.00536118075, 0.0145894429, -0.0163723174, -0.00635620113, -0.00496568391, -0.00699339062, -0.0130200107, -0.0371892676, -0.0221854951, -0.0208922829, 0.00593559304, 0.0207290612, 0.0239558145, 0.00239809253, 0.00416527316, -0.0136728948, 0.0269691255, -0.00957353693, -0.0057660942, -0.00407738518, -0.00286421389, -0.0212187245, 0.0102389762, -0.00755838584, 0.0322173052, 0.0119967405, -0.0341508463, 0.00899598654, 0.0488658436, -0.00231491262, -0.009673981, -0.0188582987, 0.00323616946, -0.00893320888, -0.00496254489, -0.000810611818, -0.0050096279, 0.0335732959, 0.00243418943, 0.0173767544, -0.0292291082, 0.0274462327, 0.00539256958, 0.0145015549, 0.0224742703, 0.0081422152, 0.0272955671, 0.0359337218, 0.00566565059, 0.00500648934, -0.00581945525, 0.00293169962, -0.00827404764, -0.0184439681, 0.00782205071, 0.0196995139, -0.00664183777, 0.00528584793, -0.00959237, 0.00737633184, 0.0410563499, -0.00156864757, 0.0105151962, -0.026014911, 0.00960492622, 0.0384197049, -0.0120971845, -0.0096928142, 0.00880137645, 0.0117456317, -0.012046963, -0.00677994778, -0.0333975181, -0.0139993364, 0.00498137809, -0.0185695235, -0.0380179286, -0.0103017539, 0.000440225762, -0.0218213871, -0.0112748016, 0.0141248908, -0.0129697891, -0.0169122033, -0.0077843843, -0.0262409076, 0.0197371803, 0.00647233892, 0.018155193, 0.0105591407, -0.0138110043, -0.0137858931, 0.00903365202, 0.0156817678, -0.000939305231, -0.0345777348, 0.000765490637, -0.0119465189, -0.0100945886, 0.0154557694, 0.0267933495, 0.00205595628, 0.000420607859, 0.00944798253, 0.00267431256, -0.0282497816, -0.00972420257, 0.0376412645, -0.0288273338, -0.00301958784, -0.0257889125, 0.0130702322, 0.0068364474, 0.0165857617, 0.0430652238, 0.00269471528, 0.00241221744, -0.000893007, 0.00457960367, -0.00516657112, 0.00195237377, 0.0128819, -0.0237047058, 0.00561856758, -0.00974303577, 0.00386080355, 0.000389023044, -0.0180924162, 0.0246589202, 0.00931615, 0.00679250294, 0.00934753846, 0.00113156065, 0.0102264211, 0.0109797483, 0.0258893557, 0.0195488483, 0.0342261791, -0.0202394, 0.00513204373, -0.0180547498, -0.0135347843, -0.0137607828, -0.0194860715, -0.0056217066, -0.00165575114, 0.00474282447, 0.00152784237, 0.000438264, 0.0115133552, 0.0125554586, 0.0131832315, -0.00452938164, -0.000143504963, -0.00386394234, 0.0150916614, -0.00930359494, 0.038595479, 0.00839332398, 0.0072256662, 0.0179543067, -0.0248974748, -0.0120155737, -0.000490839942, -7.6853139e-05, -0.0187704097, 0.0253996924, -0.00755838584, 0.0282748919, 0.00103504059, 0.0138110043, -0.0171005353, -0.0028375336, 0.0114568556, 0.0225496031, -0.00371327694, 0.0186699666, 0.0254624709, -0.00472085224, 0.0327948593, -0.00854399, -0.00380430394, -0.00130262878, -0.000764313561, -0.0107537499, -0.0094982041, 0.00100757554, 0.00816732552, -0.0227630455, -0.00679250294, 0.00377605413, 0.00521365413, -0.00838076882, -0.0133087859, -0.000203633841, 0.00465179747, 0.0116954101, 0.00978070218, 0.000208734506, -0.00378547073, 0.000203633841, 0.000275827741, -0.00183152757, -0.00940403808, 0.0063781729, 0.000109566, -0.0237423722, 0.00581317721, 0.00625261851, 0.000671717047, 0.0119088525, 0.0283251144, -0.0069996682, 0.00719427783, 0.00364422193, 0.00646606134, -0.0234159306, 0.00392671954, 0.0210303925, 0.00616473, 0.00215012231, 0.0217334982, -0.00981209055, 0.00151528686, 0.00254561915, -0.0126935691, 0.00629342347, -0.00308236503, -0.0068364474, 0.00564995641, 0.0237549283, -0.0137733379, -0.00304155983, 0.00410563499, 0.00475851865, 0.00101856154, -0.00316554494, 0.0199129581, -0.00363794412, -0.0173516441, 0.0109358048, -0.0145392213, -0.0176529754, -0.00965514779, -0.00955470372, -0.00175462535, 0.0117581869, -0.00785971712, -0.0178413074, 0.00455135386, -0.00747677544, -0.0122666834, -0.0369381607, 0.00309178163, -0.00221446902, 0.0236921497, 0.00647233892, -0.0103645306, 0.0176906418, 0.00868837722, 0.00920315087, 0.0142881116, -0.0166610926, -0.0075395531, -0.0113061909, -0.0245333668, -0.00322361407, -0.0105277523, -0.002098331, -0.00101620739, -0.017803641, -0.022989044, -0.00334289088, -0.0122352941, -0.0088264877, 0.00915920734, 0.0133841187, -0.0103959199, -0.00951703731, -0.0170126464, -0.00175933365, -0.0185820796, -0.00764627429, -0.0191219635, -0.00935381651, 0.0317150876, -0.0153553262, 0.0350799523, -0.0107914163, 0.000906347181, -0.00177188904, -0.0137356715, 0.000863187772, 0.00254718866, 0.0162718743, -0.00459215883, -0.036787495, 0.00613648025, -0.0108981384, -0.0115259113, 0.0177283082, -0.00919059571, -0.00743283145, 0.0238930378, -0.000707814, 0.0239307042, -0.0184439681, -0.000527329277, -0.00597953703, -0.0223612711, 0.0231522657, 0.0110299708, -0.0242571458, 0.030384209, 0.000391181, -0.021268947, -0.00211402541, -0.0084686568, 0.00200259569, -0.0149158845, 0.0134092299, 0.0176655296, 0.00925337337, 0.0109106936, -0.012229017, -0.00403657975, -0.0178664178, 0.00079805631, 0.00221446902, -0.0172009785, 0.0064597833, 0.00396752497, 0.00547104096, -0.0195488483, 0.000694473798, 0.00671717, 0.00812965911, 0.00553381816, -0.00693061296, 0.000505749544, -0.00522620976, 0.0133087859, -0.0133841187, -0.0201264, -0.0162718743, 0.00517598772, -0.012869345, 0.0167740919, 0.0193981826, -0.0270695686, 0.00882021, 0.00338997389, 0.0198501796, -0.0234159306, 0.0226626024, 0.00233688462, -0.00203398429, -0.00674228137, -0.0111806355, -0.0070185014, 0.0176404193, 0.0184565242, -0.0216456112, -0.0307859853, 0.00546162436, 0.0164727625, -0.00159689737, -0.0132836755, -0.014966107, -0.00704989, 0.0144764436, -0.00462354766, 0.0231020432, 0.0179543067, 0.00969909132, 0.00151842576, -0.0182430819, -0.00716916705, -0.00804177113, -0.0115824109, -0.0139114484, -0.0288524441, 0.00423118938, 0.00521679316, 0.00439441064, 0.0143006677, 0.0145768877, -0.0135724507, -1.64790399e-05, 0.00468946388, 0.00766510749, -0.0131078986, 0.00297407433, 0.00713150064, -0.00189587427, -0.0203021765, 0.0040711076, -0.00558717921, -0.0176529754, -0.0113438573, 0.0106030852, -0.0203398429, 0.0127375126, 0.0189085212, 0.0213819463, 0.00114411616, -0.0239809267, -0.0307608731, 0.0013528507, 0.0152925486, -0.0177910849, 0.0266677942, 0.0201138444, 0.00467063067, 0.00145486381, -0.032292638, -0.0155562134, -0.00883904286, 0.0140746692, 0.00318908645, -0.00594814867, -0.011400356, -0.021620499, -0.0118335197, 0.00833054632, 0.00565937301, 0.0411316827, 0.00266175717, -0.0276722312, 0.0151042165, -0.00584142702, 0.00801038276, 0.0118711861, 0.018343525, 0.0177157521, 0.0128944563, -0.00895204209, 0.00339939049, -0.00240437035, -0.0287268888, -0.00659161573, -0.00343391788, 0.0162844304, 0.010125977, 0.0102891987, 0.0355821699, 0.0150414398, 0.0145894429, 0.0352808386, -0.00604545325, 0.0130325658, 0.0130827874, 0.0100883106, 0.00674228137, 0.0179040842, -0.0176027529, 0.016146319, -0.0244203676, 0.0247342531, 0.0271700118, -0.00745794224, -0.00681133615, -0.000317810045, -0.00474910205, 0.0165983159, 0.0109106936, 0.0179040842, 0.00644722814, 0.0126621798, 0.00143681525, -0.00799782667, -0.00733238785, 0.00183466636, -0.0151544381, -0.0258893557, 0.0179543067, -0.0112936348, 0.00927220657, -0.00937265, 0.00307137915, -0.0151795493, -0.00480246311, -0.0194735155, 0.0185820796, 0.0177534185, -0.00767766312, 0.00196806807, -0.00723194424, 0.0105089191, 0.0239809267, 0.0225496031, 0.00415899558, -0.0233908202, -0.0217962768, 0.00535804173, 0.00246087, 0.00560601242, -0.00347472308, 0.00986231305, 0.0244329218, -0.00478676846, 0.00533607, -0.00610195287, -0.0211308375, -0.000685841951, 0.0116702989, -0.0168870911, -0.00611136947, 0.0267682374, 0.00887043122, -0.00375722093, 0.000540277106, -0.0247970298, 0.0110111376, -0.0181803033, 0.017251201, -0.0229513776, 0.0222859383, -0.00375094335, -0.0127186794, -0.00945426058, 0.0105905291, -0.0108667491, 0.00185820786, 0.00723194424, -0.0290533304, -0.0010601515, 0.0152674373, -0.00633109, 0.0215702783, -0.0124047929, 0.00394869177, -0.00195237377, -0.0152297709, 0.0260902438, 0.012781457, 0.00496882293, -0.0164476503, 2.25360673e-05, 0.0261153542, 0.00349355629, 0.0141374459, -0.0118335197, -0.0187578555, 0.00175148644, 0.00720683346, 0.030484654, -0.0158952102, 0.00122415717, 0.0179417506, 0.00302115711, 0.0115573, -0.0183937475, 0.00150430086, -0.0272955671, -0.00145564845, -0.00868837722, -0.00129478169, 0.0106721399, 0.0198376253, 0.0332970768, 0.000772945408, 0.012046963, 0.0140746692, 0.00455763144, 0.0366117172, -0.011312468, 0.0103017539, -0.00455135386, -0.00131047599, 0.00955470372, 0.0199380685, 0.00238710665, 0.00201672059, -0.0143760005, 0.0183560811, 0.0175274201, -0.0103331422, 0.0181049705, -0.0262409076, -0.0191219635, 0.00998786744, 0.00110095681, 0.000375682866, -0.012781457, 0.00812965911, -0.0058665378, -0.00381685933, -0.00280928379, -0.0217083879, 0.00934126135, 0.00655394932, 0.0276973415, -0.0193605162, -0.0180296376, 0.0128819, 0.00870721, 0.0106156403, -0.00698083499, -0.00142504449, 0.00268843747, -0.017339088, -0.0139491148, 0.00704361219, -0.000156845141, 0.0162844304, 0.0185444131, 0.0169373136, -0.0102829207, -0.00986231305, 0.012687291, 0.0168117583, 0.00946681574, 0.00620239647, 0.00123200438, 0.00416527316, 0.00348727871, 0.00191470748, 0.0264920183, -0.00137717684, 0.0237172619, 0.0268435702, 0.0110927476, -0.01396167, -0.0236921497, -0.018983854, -0.0224366039, -0.0114631336, -0.00654767174, 0.0115510216, -0.00661672652, 0.00168870913, -0.00289874151, -0.0128567899, -0.0124801258, -0.0144262221, 0.0174646433, -0.0285260025, 0.00379488734, -0.00804177113, -0.0307859853, -0.0124926809, 0.000195394328, 0.000521443901, 0.00213442789, 0.00204183138, 0.00419038441, 0.00575667759, 0.0084686568, 0.00596698187, 0.00484326808, -0.00226626033, 0.0278228968, -0.000760389958, 0.0128819, 0.0306855403, 0.0069180578, -0.000274454476, 0.0129070114, -0.00242006453, 0.0189712979, -0.0271197911, -0.00696827937, -0.025374582, -0.00759605225, 0.0110613592, -0.0144387772, 0.0104586966, -0.00221917732, -0.0141625572, 0.00176404195, 0.00314514246, 0.0267180167, -0.00324244727, -0.00391102536, -0.00136462145, 0.00258328556, 0.00657278253, -0.00558090117, 0.0120971845, -0.00425943919, -0.0180798601, -0.00713150064, -0.0154055478, 0.039323695, 0.00306980964, -0.0027386595, -0.0165104289, 0.00460157543, -0.00392044196, 0.0147777749, -0.000619141036, 0.0133464523, 0.0134845627, 0.0233908202, -0.0209550597, -0.0200887341, -0.0135598956, -0.00298506021, 0.0202394, 0.0020355538, -0.00749560865, -0.00495626731, -0.0348790623, -0.0265673511, -0.0144889988, -0.00402088556, -0.00386708113, -0.0291286632, 0.0216330551, 0.00181426376, 0.0176529754, -0.00237298175, -0.011770742, 0.00737633184, -0.000452781213, -0.0142127788, 0.0203272868, 0.0131957866, -0.0130200107, 0.022637492, -0.00604231423, -0.0107411947, 0.0184063017, 0.00744538708, 0.0215451661, -0.00308864284, -0.0077655511, 0.00637503387, -0.0116640208, -0.0143006677, -0.0198125131, -0.00908387452, 0.0198125131, 0.00486524031, 0.00129478169, 0.00883276481, -0.0285762232, -0.0114756888, -0.0232024882, 0.0063970061, -0.0194860715, 0.0189085212, 0.0128065674, -0.0149033293, 0.0020261372, -0.0103959199, -0.0158575438, 0.0219469424, 0.00174834765, 0.0128944563, 0.010132255, 0.00871348847, -0.0122666834, -0.0021485528, 0.0185695235, 0.00332091888, 0.0222984944, -0.0114819668, -0.000428455038, -0.0162090976, 0.0244203676, -0.014325778, 0.00304940692, -0.0258140229, 0.0103833638, 0.0216958318, -0.00287676952, -0.00960492622, 0.00682389177, 0.0109420819, -0.00687411381, -0.0227504913, 0.00125868467, 0.000329776958, -0.0212940574, 0.0122729605, -0.00447916, -0.00488407351, -0.0110676363, 0.00726961065, 0.0127877342, 0.0268435702, -0.0220599417, -0.000349002512, -0.00922826212, 0.0207792837, 0.0101761995, 0.0132585643, -0.0216958318, 0.0145392213, -0.0174897537, -0.00643467251, -0.00545220776, 0.0113438573, -0.0170503128, 0.00163534842, 0.0100632, -0.000235414846, 0.00576295564, 0.00984975696, -0.0136728948, 0.0112873577, -0.00761488546, -0.0321921967, 0.0145768877, -0.0435172208, -0.00126339297, 0.015418103, 0.00803549308, -0.00798527151, -0.0138988923, 0.0022034829, -0.000390984816, -0.0247342531, 0.0347535089, 0.00182524975, 0.000642290164, -0.00377919292, 0.0291537754, -0.00443521561, -0.00874487683, -0.023541484, -1.06549742e-05, 0.0110048596, 0.0171758682, 0.00231962092, -0.0227756016, -0.0114254672, 0.00256445236, -0.0150037734, 0.0159831, 0.00260682707, -0.0125240702, 0.000373328716, -0.0204528421, -0.00229137111, 0.00638131192, -0.0107349167, 0.00464238087, 0.00104367244, -0.00821754802, -0.00769649632, 0.0146522205, 0.00535804173, -0.00367247174, -0.00790993869, 0.00638445048, -0.00880137645, -0.00356261129, 0.0077655511, -0.0107223615, 0.0115384664, -0.022624936, -0.0240185931, 0.00706872297, -0.00075215043, 0.0264669061, -0.0106219184, 0.0135347843, 0.00395496935, -0.00246871705, 0.0190089643, 0.0146522205, -0.00473654689, 0.0156441014, -0.000170577681, 0.0242069233, -0.0152297709, -0.0014831135, 0.0173139777, 0.00591048226, -0.000842785172, 0.00339625147, -0.0211308375, 0.0127186794, 0.00994392298, -0.0027339512, -0.019435849, 0.00310747605, 0.0124550145, 0.0120657953, 0.0205030646, 0.0120030185, -0.019988291, -0.00669833738, 0.0239055939, -0.000947152381, -0.0181175265, 0.0048558237, 0.000306235481, 0.00328639126, 0.0299322139, -0.00364422193, 0.0118774641, 0.00535176415, -0.0184314139, 0.019071741, 0.0089897085, -0.0151418829, 0.0101824766, 0.0211433917, -0.0100757554, -0.00825521443, -0.00603917567, 0.0136226723, 0.00921570696, 0.00797899347, 0.0190340746, -0.00136540609, -0.0315142, 0.0198376253, 0.0034182237, -0.0143132228, -0.0105277523, -0.00914665125, 0.0151921045, 0.0139742251, -0.00136305194, 0.00391730294, -0.00801038276, 0.00504729431, 0.0103394203, 0.00402088556, -0.00976186898, 0.00679878099, 0.0110236928, 0.0256633572, 0.0124926809, 0.00527015375, 0.0109609151, 0.00447602104, -0.0117895752, -0.00523876492, 0.00474282447, -0.00308079575, 0.00704989, -0.00459215883, 0.00694944616, 0.0127563458, -0.0101448102, 0.0110550812, 0.00184408296, -0.0119465189, -0.00374152674, -0.00885159802, 0.0224240497, -0.0234661512, 0.0070812786, -0.00964259263, 0.019988291, -0.00280771451, -0.0388214774, -0.0102326991, 0.00369758252, 0.00400519138, -0.00752699748, -0.0137356715, 0.0110864695, 0.00109154021, 0.0090085417, 0.0225872695, -0.00440382725, -0.0100192558, 0.0185067467, -0.0010601515, -0.0146522205, 0.00564681739, -0.0198752917, -0.00331150228, -0.0104273083, 0.00218151091, 0.00393613614, -0.00226469082, -0.0173139777, 0.0179166403, 0.00311061484, 0.0289779976, -0.0202645101, 0.0228007119, -0.00488093449, 0.010314309, -0.0432912223, 0.00512890471, -0.0129195666, -0.000810611818, -0.00934126135, -0.0375408195, 0.00920942891, 0.0231899321, -0.0125177922, -0.0129823443, 0.00625889609, 0.00947309379, -0.016334651, -0.00851887837, 0.0198627356, -0.0134468963, -0.035130173, -0.0200887341, 0.00257857726, -0.0219343863, 0.00607998064, 0.0132711194, -0.0268686805, 0.00755838584, -0.00695572421, 0.00866954401, -0.00540826377, -0.00738261, 0.0148907742, -0.0217460543, -0.0116263544, -0.0131204538, 0.019988291, 0.00841843523, 0.0111555252, -0.00388277555, -0.0156189902, -0.012134851, -0.043617662, -0.0164727625, 0.0208797269, 0.0108981384, -0.000415507209, -0.00951703731, -0.0140118916, -0.00452938164, 0.0034904175, -0.0119214077, -0.000536353502, -0.00250481395, 0.00262409076, 0.0165229831, 0.00992509, -0.00893948693, 0.0147275534, 0.0167489816, 0.00780949509, 0.00696827937, 0.0095295934, -0.0077655511, 0.00374152674, -0.00162750133, 0.00956726, -0.0665439293, -0.0203021765, 0.0142755564, 0.0133715635, 0.00286892219, -0.00681133615, 0.00545534678, -0.0157947671, 0.0064597833, -0.0086318776, -0.0163848735, 0.00131832319, -6.20109677e-06, 0.00390788633, -0.0137733379, -0.0174395312, 0.0156817678, -0.00283439481, -0.00199317909, 0.00974303577, -0.0229764897, -0.012687291, -0.00135206594, 0.00588223245, 0.00802293792, -0.0142755564, 0.00278260349, 0.00429396704, -0.0302837659, -0.00586967682, -0.00456390902, -0.00632795133, 0.0108541939, 0.0170000903, -0.0141625572, -0.0227379352, -0.0144136669, -0.0118460748, 0.00310904533, -0.00664811535, -0.0061333417, -0.0260902438, -0.00931615, -0.00092439563, 0.0182681922, 0.0206035078, 0.00264920178, 0.00159140443, -0.021720944, 0.00125946943, 0.0042971056, 0.00411819061, 0.000462590164, 0.00392358098, -0.0148531077, 0.0170628689, -0.00636561774, 0.00203398429, -0.00324558606, 0.0100883106, -0.00303371274, -0.0309366491, 0.0214823894, 0.01697498, -0.00142112095, 0.0358081684, -0.0110111376, 0.0197874028, 0.0294299945, 0.0134845627, -0.0202645101, 0.00244831434, -0.00958609302, 0.00108918606, 0.00153804373, 0.0247970298, -0.0070812786, 0.00989370141, -0.00400205236, -0.00380744273, 0.0148028852, -0.00171225064, -0.0105591407, 0.02792334, 0.00426885579, -0.010314309, 0.0302837659, -0.0105654188, 0.00934126135, -0.0104210302, 0.0308864284, 0.0127249574, -0.00260211877, 0.0190968532, -0.00121160178, 0.000730570755, -0.010678418, -0.0128819, 0.0119841853, 0.00384197035, 0.000121140554, 0.0113501344, 0.00555892941, 0.00515087694, 0.0168494247, -0.0152925486, -0.00842471235, -0.0175399762, 0.00762744108, 0.033849515, 0.0228634905, 0.00514773792, -0.0132208979, 0.00365363853, -0.00642839493, 0.0137733379, 0.0111869136, -0.00735749863, -0.0133966748, 0.00913409609, -0.00288461661, -0.0171005353, -0.021720944, -0.0116137993, -0.000984034, -0.00533293094, 0.0235791504, -0.0168494247, -0.00924081728, -0.00526701473, 0.0147903301, 0.00739516504, -0.000386276544, 0.00428768899, -0.0161839854, -0.0362350531, -0.00272767339, -0.00473340787, -0.00184722187, 0.0208797269, 0.00160395983, 0.00299133803, 0.0125115141, -0.000640328391, 0.0010334712, 0.00681761419, -0.00394241419, 0.0342764035, 0.026014911, 0.00389847, -0.0333472975, 0.00255189696, 0.0107286396, -0.00476793526, 0.0293797739, -0.0223487169, 0.00503473869, 0.0102766426, -0.00522307074, -0.0231899321, -0.00164162624, 0.00836193562, 0.00570959458, 0.00308393454, -0.00995647907, 0.0229639336, -0.00966770295, -0.00969909132, -0.00266646547, -0.0049186009, 0.0267682374, 0.0184314139, 0.0326441936, -0.00964259263, 0.00497510051, -0.00431907782, 0.0048464071, -0.010584252, -0.0159579869, -0.000987172942, -0.0121474061, -0.0140370028, -0.00649117213, 0.016698759, 0.0268686805, -0.000790993916, 0.0202017333, -0.014966107, -0.008305436, -0.00540512474, 0.0142504452, 0.00154275203, 0.00521993171, 0.0176529754, 0.00526387617, -0.00282654772, 0.00866954401, 0.0132083427, 0.000618356338, 0.0103582535, -0.0108290827, -0.0106219184, 0.0148656629, -0.00223330222, -0.00134657288, -0.0194609612, 0.0131078986, 0.0194107387, -0.0146271093, -0.0162593182, -0.00279045058, -0.0236168168, -0.00420607859, 0.0376161523, -0.00351552851, -0.0164476503, 0.0010083603, 0.00609253626, 0.00357516692, 0.00814849231, 0.0255126916, 0.000266999676, 0.0279986728, -0.007162889, 0.0284506697, 0.0239055939, -0.000860048924, 0.00213285862, -0.0297815483, 0.00874487683, 0.0034684455, -0.0163597632, 0.0229137111, -0.0218213871, -0.0174771976, -0.00767766312, 8.7115759e-06, 0.0168619808, -0.0294048842, 0.0109420819, 0.0171633121, 0.0377165973, -0.000714876398, 0.004378716, -0.0124926809, -0.00958609302, 0.00978698, 0.00597012043, 0.00481187971, 0.00763371866, 0.00521365413, -0.00135520485, -0.00546162436, 0.0166862048, 0.0127061242, -0.00802293792, -0.0229262672, -0.0125115141, -0.000665047, 0.00597012043, -0.000437871611, -2.31368649e-05, 0.00434104959, -0.0214321669, 0.00408366276, -0.0381434821, 0.0120657953, -0.0136603387, -0.0211936142, 0.0179040842, -0.00332405767, 0.00574726099, -0.00871976558, -0.00311846193, 0.0118272416, -0.0140621141, -0.0202017333, 0.016435096, 0.00308236503, 0.00199945667, -0.024181813, -0.00832426921, -0.00494998973, 0.00424688403, 0.00948564894, -0.00228980184, 0.0343768448, -0.0102891987, -0.00605487, -0.00229137111, -0.0119653521, -0.00540198619, 0.0175650865, 0.0116765769, -0.0153176598, -0.0114819668, -0.00243418943, -0.00405541295, 0.0157696567, -0.0209550597, 0.00527329277, 0.0184816346, 0.00478990749, 0.00701222382, -0.0162090976, 0.00420607859, -0.0174897537, 0.00461099204, -0.0134720067, 0.00981836859, -0.0376161523, 0.00661044894, -0.00823010318, -0.00864443369, -0.00581631623, -0.00111743587, -0.00867582206, -0.0159077663, 0.000611686264, 0.0186323, 0.00581945525, 0.0120532401, 0.0219469424, 0.00786599517, 0.0169624239, -0.0061333417, -0.0123859597, -0.00964887, 0.00238553714, 0.00550870737, -0.0102703655, 0.00176718074, -0.019887846, 0.0155311022, -0.0182933025, 0.00505985, 0.00669205934, -0.0140997795, 0.00623064628, 0.0276220087, -0.00689294655, -0.0148028852, -0.0343768448, -0.0337239616, 0.00742655387, 0.00303057372, 0.00859421119, 0.00801666, 0.037415266, 0.00279515889, -0.0200008452, -0.00365991611, 0.00834937952, 0.00934753846, 0.0150414398, 0.00798527151, -0.0173139777, 0.00230078772, -0.00170283404, 0.00966770295, 0.02847578, -0.0341257378, -0.000936951081, -0.01971207, 0.0209801719, 0.00666067097, 0.00865698885, 0.00468632486, -0.0193605162, -0.0021171642, 0.0125742918, 0.00111037341, -0.00412132917, 0.00786599517, 0.0147275534, 0.0152172158, -0.00958609302, 0.0104712527, -0.00844354555, 0.0129070114, 0.0279484503, -0.031313315, -0.0170754232, -0.0191847403, 0.00316083664, 0.00195551268, -0.00317182275, -0.004243745, -0.000988742337, -0.0130451219, -0.0161965415, 0.00277789519, -0.0115321884, 0.00836821273, -0.00384510914, 0.00122808083, -0.00622122968, 0.00850632321, -0.0196618475, 0.0129070114, -0.00575667759, -0.00504415529, -0.00265077129, 0.00734494347, 0.0109044155, -0.00248441147, -0.0166485384, -0.00248441147, 0.00400519138, -0.00818615872, 0.0147652198, -0.00382313714, 0.0064064227, 0.000821597816, 0.0237047058, 0.0115384664, 0.00979953539, 0.0162342079, -0.0145894429, -0.00346530648, -0.00180641655, 0.0325939693, -0.0216330551, 0.0231522657, -0.00686783576, -0.00378547073, -0.012599403, 0.00361911091, 0.0142881116, 0.00498451712, 0.0139742251, 0.000475145644, 0.0135347843, -0.0219594967, 0.0261655748, -0.00900226366, -0.0141876685, -0.00810454879, 0.00326755806, -0.00153176591, 0.0229639336, -0.0167364255, -0.00567506719, -0.00676739216, -0.00725077745, -0.0133966748, -0.00966770295, 0.002189358, 0.0048464071, -0.0256382469, 0.00494371168, 0.0021218725, 0.0146898869, 0.00566565059, 0.00657906, -0.00114960922, -0.018707633, 0.0259646885, 0.0108102495, -0.0118900193, -0.00779066188, 0.00405541295, 0.00605800888, 0.0151042165, -0.00397066399, 0.0127626238, 0.0231271554, -0.0013716839, -0.00223644101, -0.00305882352, -0.00259113265, -0.0123608494, 0.00937265, 0.0266677942, -0.0201766212, -0.00250952225, -0.0277224518, -0.0463798642, -0.000555971405, -0.00156786293, -0.00261624367, -0.0229513776, -0.0113940788, 0.00850632321, 0.0129948994, 0.0241441466, -0.010678418, 0.0020214289, -0.0175776426, -0.0191972964, -0.0237925947, -0.0081108259, 0.0013889476, -0.00689922459, 0.0112371352, -0.0181928594, -0.00307137915, -0.0043253554, -0.000967555039, 0.0233154874, -0.00609567529, -0.0108667491, -0.00521365413, 0.00237141224, -0.00710638938, -0.00688039139, -0.036586605, 0.015418103, 0.000472399115, -0.0183560811, 0.0208169501, 0.000659553916, 0.0402276888, 0.00074979628, 0.000776084256, -0.0422867835, 0.0159579869, -0.0104398634, 0.00274650659, -0.0106909731, -0.00798527151, -0.0272955671, -0.0236544833, 0.000230314196, -0.0140997795, 0.00841843523, -0.00169969525, 0.0545409136, -0.0155436574, 0.00748305349, -0.000316829159, 0.0109985815, -0.00755210826, 0.0107474728, -0.00272139558, 0.0123671265, 0.00159297383, -0.0136101171, -0.0213191696, 0.000627772941, -0.00545534678, 0.011770742, 0.00755838584, 0.00502532208, 0.012134851, -0.00186448556, 0.0131204538, -0.00785971712, 0.000879666826, 0.0177283082, -0.00742655387, -0.00681133615, -0.0376161523, 0.00063562009, 0.0109671932, 0.0122604053, 0.0104712527, 0.0172763113, -0.00911526289, -0.0115949661, -0.0142504452, 0.008305436, 0.0304344315, 0.011770742, -0.00957353693, 0.0176529754, -0.00615531346, -0.0196869597, -0.0171382017, 0.0206537303, 0.00593873207, 0.00473026885, -0.0210555047, 0.00644095, -0.0137356715, -0.00528898695, 0.0221980512, 0.00431280024, 0.00237925933, -0.0117519088, 0.0215702783, -0.000526936899, -0.00994392298, -0.0133966748]
14 Dec, 2018
unordered_map load_factor in C++ STL 14 Dec, 2018 The unordered_map::load_factor() is a built-in function in C++ STL which returns the current load factor in the unordered_map container. The load factor is the ratio between the number of elements in the container (its size) and the number of buckets (bucket_count): load_factor = size / bucket_count The load factor influences the probability of collision in the hash table (i.e., the probability of two elements being located in the same bucket). The container automatically increases the number of buckets to keep the load factor below a specific threshold (its max_load_factor), by causing a rehash each time when an expansion is needed. Syntax: unordered_map_name.load_factor() Parameter: The function does not accept any parameter. Return Value: The function returns the current load factor. Example-1: // C++ program to illustrate the // unordered_map::load_factor() function #include <bits/stdc++.h> using namespace std; int main() { // declaration of unordered_map unordered_map<int, int> sample; // inserts element sample.insert({ 1, 2 }); sample.insert({ 2, 4 }); sample.insert({ 5, 8 }); sample.insert({ 7, 10 }); cout << "The size is: " << sample.size(); cout << "\nThe bucket_count is: " << sample.bucket_count(); cout << "\nThe load_factor is: " << sample.load_factor(); sample.insert({ 9, 0 }); cout << "\n\nThe size is: " << sample.size(); cout << "\nThe bucket_count is: " << sample.bucket_count(); cout << "\nThe load_factor is: " << sample.load_factor(); sample.insert({ 11, 1 }); cout << "\n\nThe size is: " << sample.size(); cout << "\nThe bucket_count is: " << sample.bucket_count(); cout << "\nThe load_factor is: " << sample.load_factor(); return 0; } Output: The size is: 4 The bucket_count is: 7 The load_factor is: 0.571429 The size is: 5 The bucket_count is: 7 The load_factor is: 0.714286 The size is: 6 The bucket_count is: 7 The load_factor is: 0.857143 Example-2: // C++ program to illustrate the // unordered_map::load_factor() function #include <bits/stdc++.h> using namespace std; int main() { // declaration of unordered_map unordered_map<char, int> sample; // inserts element sample.insert({ 'a', 2 }); sample.insert({ 'b', 4 }); sample.insert({ 'c', 8 }); sample.insert({ 'd', 10 }); cout << "The size is: " << sample.size(); cout << "\nThe bucket_count is: " << sample.bucket_count(); cout << "\nThe load_factor is: " << sample.load_factor(); sample.insert({ 'e', 0 }); sample.insert({ 'h', 5 }); cout << "\n\nThe size is: " << sample.size(); cout << "\nThe bucket_count is: " << sample.bucket_count(); cout << "\nThe load_factor is: " << sample.load_factor(); sample.insert({ 'f', 1 }); cout << "\n\nThe size is: " << sample.size(); cout << "\nThe bucket_count is: " << sample.bucket_count(); cout << "\nThe load_factor is: " << sample.load_factor(); return 0; } Output: The size is: 4 The bucket_count is: 7 The load_factor is: 0.571429 The size is: 6 The bucket_count is: 7 The load_factor is: 0.857143 The size is: 7 The bucket_count is: 17 The load_factor is: 0.411765 Learn C++ Online – Master everything from basics to advanced concepts. Apply your knowledge with practical exercises and boost your skills. Take the Three 90 Challenge: finish 90% in 90 days for a 90% refund. Start now and level up your C++ programming!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum/Algorithm for Dynamic Time out timer Calculation/Difference between Round trip time (RTT) and Time to live (TTL)/Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms/Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm/Round Robin Scheduling Algorithm with Different Arrival Time/Selfish Round Robin CPU Scheduling/Find the order of execution of given N processes in Round Robin Scheduling/Calculate server loads using Round Robin Scheduling/set::lower_bound() Function in C++ STL/Implementation of lower_bound() and upper_bound() in List of Pairs in C++/Difference between std::set::lower_bound and std::lower_bound in C++/Difference between std::set vs std::vector in C++ STL/std::minmax() and std::minmax_element() in C++ STL/std::rotate vs std::rotate_copy in C++ STL/std::bitset::to_ullong and std::bitset::to_ulong in C++ STL/std::upper_bound and std::lower_bound for Vector in C++ STL/std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++/std::string::append vs std::string::push_back() vs Operator += in C++/Vector push_back() in C++ STL/vector :: cbegin() and vector :: cend() in C++ STL/unordered_multiset cend() function in C++ STL/unordered_multiset bucket() function in C++ STL/unordered_multiset emplace_hint() function in C++ STL/unordered_multiset end() function in C++ STL/unordered_multiset size() in C++ STL/unordered_multiset emplace() function in C++ STL/unordered_multiset find() function in C++STL/unordered_multiset erase() function in C++ STL/unordered_multiset clear() function in C++ STL/unordered_multiset swap() function in C++ STL/unordered_multiset bucket_size() function in C++ STL/unordered_multiset bucket_count() function in C++ STL/unordered_set bucket_count() function in C++ STL/unordered_set cbegin() function in C++ STL/array::cbegin() and array::cend() in C++ STL/array::rbegin() and array::rend() in C++ STL/multimap rbegin in C++ STL/vector rbegin() and rend() Functions in C++ STL/multiset rbegin() and rend() function in C++ STL/map rbegin() function in C++ STL/map upper_bound() function in C++ STL/Set upper_bound() in C++ STL/multimap upper_bound() function in C++ STL/multimap empty() function in C++ STL/multimap value_comp() function in C++ STL/multimap swap() function in C++ STL/multimap::swap() in C++ STL/multimap equal_range() in C++ STL/unordered_set equal_range in C++ STL/set vs unordered_set in C++ STL/unordered_set count() function in C++ STL/unordered_set bucket() function in C++ STL/unordered_set emplace() function in C++ STL/set::emplace() in C++ STL/multiset::emplace() in C++ STL/multiset find() function in C++ STL/multiset cbegin() and cend() function in C++ STL/multimap::cbegin() and multimap::cend() in C++ STL/multimap::begin() and multimap::end() in C++ STL/set::begin() and set::end() in C++ STL/unordered_multimap begin() and end() function in C++ STL/unordered_multimap empty() function in C++ STL/unordered_multimap find() function in C++ STL/unordered_multimap equal_range() function in C++ STL/unordered_multimap bucket_count() function in C++ STL/unordered_multimap bucket_size() function in C++ STL/unordered_multimap operator= in C++/unordered_multimap load_factor() function in C++ STL/unordered_map load_factor in C++ STL
https://www.geeksforgeeks.org/unordered_map-load_factor-in-c-stl?ref=asr4
PHP
unordered_map load_factor in C++ STL
unordered_multiset clear() function in C++ STL, What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, jQWidgets jqxTreeMap width Property, Round Robin Scheduling Algorithm with Different Arrival Time, Difference between Flow and TypeScript, set::begin() and set::end() in C++ STL, unordered_multiset emplace() function in C++ STL, jQWidgets jqxTree destroy() Method, unordered_set bucket_count() function in C++ STL, unordered_map load_factor in C++ STL, jQWidgets jqxTree collapseAll() Method, Find the order of execution of given N processes in Round Robin Scheduling, jQWidgets jqxScrollView buttonsOffset Property, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Vector push_back() in C++ STL, jQWidgets jqxListBox enableHover Property, Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm, std::rotate vs std::rotate_copy in C++ STL, Selfish Round Robin CPU Scheduling, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxSlider buttonsPosition Property, std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++, std::upper_bound and std::lower_bound for Vector in C++ STL, Difference between Round trip time (RTT) and Time to live (TTL), jQWidgets jqxSlider rtl Property, Difference between std::set::lower_bound and std::lower_bound in C++, jQWidgets jqxTooltip opacity Property, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, unordered_multiset erase() function in C++ STL, multiset find() function in C++ STL, set vs unordered_set in C++ STL, jQWidgets jqxToolBar height Property, PHP, std::minmax() and std::minmax_element() in C++ STL, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, unordered_set emplace() function in C++ STL, unordered_multimap empty() function in C++ STL, unordered_set bucket() function in C++ STL, map rbegin() function in C++ STL, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, map upper_bound() function in C++ STL, Node.js date-and-time Date.transform() Method, unordered_multiset size() in C++ STL, TypeScript Optional Parameters, jQWidgets jqxToolBar theme Property, Difference between std::set vs std::vector in C++ STL, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, Steps to Diagnose and Resolve a Slow Network, How to use Optional Chaining with Arrays and Functions in TypeScript ?, Calculate server loads using Round Robin Scheduling, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, jQWidgets jqxScrollView showButtons Property, set::emplace() in C++ STL, Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms, jQWidgets jqxScrollView disabled Property, multimap::cbegin() and multimap::cend() in C++ STL, jQWidgets jqxSplitter destroy() Method, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, set::lower_bound() Function in C++ STL, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, jQWidgets jqxTree collapseItem() Method, multimap upper_bound() function in C++ STL, std::string::append vs std::string::push_back() vs Operator += in C++, unordered_multiset swap() function in C++ STL, unordered_multiset cend() function in C++ STL, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), Set upper_bound() in C++ STL, jQWidgets jqxSortable opacity Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, multiset cbegin() and cend() function in C++ STL, multimap rbegin in C++ STL, vector :: cbegin() and vector :: cend() in C++ STL, multimap swap() function in C++ STL, jQWidgets jqxSlider height Property, jQWidgets jqxSwitchButton onLabel Property, unordered_multiset bucket_size() function in C++ STL, unordered_set cbegin() function in C++ STL, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, jQWidgets jqxToolBar tools Property, multimap empty() function in C++ STL, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTree width Property, multimap::swap() in C++ STL, unordered_multimap bucket_size() function in C++ STL, multimap equal_range() in C++ STL, Implementation of lower_bound() and upper_bound() in List of Pairs in C++, jQWidgets jqxTree clear() Method, TLS Handshake?, multiset rbegin() and rend() function in C++ STL, unordered_multimap operator= in C++, Algorithm for Dynamic Time out timer Calculation, Adhoc TCP, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, jQWidgets jqxTabs position Property, Differences between Wireless Adhoc Network and Wireless Sensor Network, jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, unordered_multimap begin() and end() function in C++ STL, std::bitset::to_ullong and std::bitset::to_ulong in C++ STL, unordered_multiset emplace_hint() function in C++ STL, multimap::begin() and multimap::end() in C++ STL, unordered_multiset bucket_count() function in C++ STL, unordered_multiset find() function in C++STL, unordered_multimap bucket_count() function in C++ STL, unordered_multiset bucket() function in C++ STL, Impact of Three-way Handshake and Slow Start Algorithm, array::rbegin() and array::rend() in C++ STL, multimap value_comp() function in C++ STL, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, unordered_multimap load_factor() function in C++ STL, multiset::emplace() in C++ STL, unordered_set equal_range in C++ STL, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, unordered_multimap equal_range() function in C++ STL, unordered_set count() function in C++ STL, vector rbegin() and rend() Functions in C++ STL, array::cbegin() and array::cend() in C++ STL, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, unordered_multiset end() function in C++ STL, How to Sort an Array Having Optional Properties in TypeScript ?, unordered_multimap find() function in C++ STL
GeeksforGeeks
[-0.0321003236, 0.000291291857, -0.0039702, 0.0263290387, 0.0255864598, -0.0205317, -0.00108862959, 0.0262769293, -0.0192940664, 0.0150600541, -0.0307975505, 0.0303024966, -0.0158286896, 0.0169099923, 0.0206880327, -0.0342889801, -0.0169621035, -0.0124479951, -0.01095632, -0.00688515464, -0.0088914251, 0.00317062344, -0.0433041714, 0.00125229044, -0.0217823628, 0.0116337612, -0.0175222941, -0.0222122781, 0.0165191591, 0.00989456, 0.00617840048, 0.0132166306, -0.0119659686, -0.0310581047, -0.00639335765, 0.0212742817, 0.0489060916, 0.00132231449, 0.00829214882, 0.000855758903, 0.0105068628, 0.0116598168, -0.0198542587, 0.0127606606, 0.0249220449, -0.015763551, -0.00493425224, -0.00297032204, -0.0210137255, -0.000805276446, 0.024127353, -0.0366600268, 0.0183951519, 0.00119610829, 0.0264202338, -0.00744534703, 0.00787526183, 0.0305630509, -0.0101486007, 0.0099141011, -0.028687058, -0.0360346958, 0.01496886, -0.0050580157, 0.00166754925, 0.0123633146, -0.0301461648, 0.0576346703, 0.0164019112, -0.0144347232, -0.0398648493, 0.0702455118, 0.0196979251, 0.0192680098, 0.00812930241, 0.0219777785, -0.0251174606, -0.014551973, -0.00101372018, 0.0402035713, -0.0115165124, -0.00295566581, 0.00149493187, -0.00658225967, -0.00037495431, 0.0132231442, 0.006575746, -0.0285307262, 0.0128844231, 0.0202320628, -0.0146301389, 0.00792085938, -0.0321524329, 0.000383300212, 0.00284655881, 0.0406986251, -0.0325432643, 0.0104286969, 0.0189292897, 0.0470561571, -0.0136530595, 0.0145780286, -0.00936693698, 0.0141611407, 0.0244791023, -0.0185905695, 0.0228897184, 0.0251565445, -0.00131010101, 0.00971217174, 0.0313447155, -0.00922363158, -0.0244139638, 0.0235150494, -0.0230069682, 0.0414802879, 0.00791434478, 0.0142393075, 0.015763551, -0.00521434844, -0.0386402421, 0.0238146875, 0.00666042604, 0.00876766164, -0.002994749, 0.0168709084, 0.0108325565, -0.018903235, 0.0238016602, -0.0344192572, 0.00546513218, -0.0157114398, -0.0175744053, -0.0554460138, -0.0173008237, 0.0153206084, 0.0182127655, 0.0193722323, 0.0178219322, -0.0193852596, -0.0449717194, -0.0141090304, 0.000920083316, 0.0294947773, -0.00563774956, -0.0133925052, -0.0271758419, 0.0110279722, -0.0158026349, -0.0098359352, 0.00862435624, 0.0111973323, 0.0320742689, -0.00410699146, 0.013379477, -0.00795994233, 0.0163758546, 0.00518503599, -0.00318690808, -0.03103205, 0.0286349468, -0.002284738, 0.0225900821, -0.0112885265, -0.032491155, 0.0526841357, 0.0414542332, -0.00234661973, -0.0201278403, 0.0152554698, 0.0434083901, 0.0181215703, 0.0238277148, -0.00319179357, 0.00604160922, 0.00837031566, 0.0398648493, 0.0372071937, 0.00757562416, 0.00113178394, -0.0118943164, -0.015516025, 0.0448414423, 0.0137181981, 0.0043447474, -0.00913243741, 0.0242706593, 0.0171575192, 0.0557065681, 0.0316573791, 0.015346664, 0.027644841, -0.00412001926, 0.0356959775, 0.034836147, 0.0201799516, -0.00570288813, 0.00723690307, -0.00170663244, 0.0420535095, -0.0115165124, 0.0113666933, -0.0445027202, 0.0124284532, -0.0110084303, -0.0138224205, 0.0137181981, -0.0467434898, 0.0309538823, 0.00258600409, 0.00301266229, 0.0409070663, -0.0257427916, 0.0094125336, -0.0350185335, 0.0295729432, -0.0233066063, 0.0269934535, 0.0331685953, -0.0313186608, 0.0242055189, -0.0222774167, 0.0150861097, -0.017769821, -0.0152163869, -0.0274885073, 0.0554460138, 0.0242446028, 0.00662785675, -0.0519024692, 0.0494793132, 0.022498887, -0.0111973323, 0.0100899758, 0.0141611407, -0.0448674969, -0.029599, -0.0200105906, 0.011978996, 0.0212221704, -0.0104417242, 0.0307454392, -0.0139005864, -0.0316834375, 1.20417435e-05, -0.0257818755, -0.00861784257, -0.0204535332, -0.0254952647, 0.00253552175, -0.0079404, -0.0247396566, 0.0665456355, -0.0186166242, 0.0191377327, 0.0368945263, 0.0273582302, -0.0319961, 0.0138224205, -0.00841591228, 0.000224728312, -0.0093343677, -0.0238537714, 0.014929777, -0.00643895473, -0.0284525584, 0.0279053953, -0.0121027594, -0.014382612, -0.038848687, 0.0137833366, 0.0104873218, 0.0044847955, 0.0189162623, -0.00033118928, 0.00408419315, -0.0340284258, 0.0112233879, 0.00984244887, -0.00739975, 0.0150470268, 0.0274103414, 0.0106306262, 0.00537719484, 0.00788829, -0.0218214449, -0.0343671478, -0.0559671223, -0.026472345, -0.000616374426, -0.0472646, -0.00851362105, 0.00958189461, -0.003836666, -0.0139396694, 0.0210397821, -0.0278793387, -0.022668248, -0.0470561571, -0.00674836338, -0.018108543, -5.44009454e-05, 0.000100506892, -0.0499483123, 0.0324129872, -0.02701951, -0.00177991344, 0.00673533557, 0.00839637127, -0.0282441154, 0.0264072064, -0.0232284404, -0.0302243307, -0.0298074428, 0.00829214882, -0.018733874, -0.00580385327, 0.0130342422, -0.0191898439, -0.01451289, -0.0282180607, 0.000595204358, -0.0347840339, 0.0435386673, -0.00461181579, -0.049635645, -0.00715222303, 0.0254170988, -0.0147995, -0.0244921297, -0.01714449, 0.0307975505, -0.0571656749, -0.0256385691, -0.013548838, -0.0002438628, -0.0400993489, 0.007966456, 0.00404836657, 0.00581362378, 0.0154769411, 0.00923014525, -0.0398648493, -0.00906729884, 0.0233456902, -0.0131710339, -0.00553027075, -0.0211440027, 0.0156463012, 0.0622725412, 0.000801612448, 0.0205968395, 0.0189162623, 0.0235801879, 0.0252216831, -0.0232805517, 0.000436021801, -0.00718479231, -0.0205186717, 0.00496356469, -0.0282441154, 0.0314228795, -0.0146561945, -0.0418711193, -0.0134706711, -0.0183039587, -0.010767418, -0.0363213085, 0.0196327865, -0.0493490361, 0.0128127709, 0.0272018965, 0.0343150385, 0.0103570446, -0.0468998216, 0.0122004682, -0.00663111405, 0.0194764547, -0.0158286896, 0.0171184354, 0.0211961139, 0.0588853322, -0.0251044333, 0.00896307733, 0.0364255309, 0.000722224708, -0.0182648748, 0.00594715821, 0.0104156686, 0.0325693227, -0.0105980569, -0.0424182825, 0.000583805086, -0.0443724431, -0.0251044333, -0.00909335446, -0.034497425, -0.02701951, -0.0303285513, -0.0534136891, 0.0361649729, -0.00815535802, -0.0273582302, -0.0136791151, -0.00947767217, -0.008383343, 0.00451410795, 0.00354028516, -0.0268110652, 0.00638358714, 0.00588527648, 0.0163237434, 0.00844196789, 0.0143044461, -0.00956886634, 0.000848430849, -0.0545080155, 0.0269413423, 0.00595041504, 0.00995969865, -0.0418711193, -0.00531205628, 0.00616537267, -0.0211700592, -0.00581362378, -0.00131580059, -0.0172226578, -0.0139917806, 0.00422098394, -0.0700370669, 0.0204274785, 0.0395782404, -0.00986199081, 0.0318137147, -0.0057810545, -0.0340023711, 0.0557586774, 0.0257297643, -0.0298335, -0.0316573791, 0.0380930789, 0.0206619781, 0.0270455647, -0.0251956265, -0.0178089049, 0.0216260292, 0.00356308371, 0.000694947899, 0.0136270039, 0.0175353233, -0.0309799388, 0.00628262199, -0.0272279531, -0.00980336592, 0.013965725, -0.00116516743, -0.000750722887, -0.00135895493, 0.0274885073, 0.0158156622, 0.00744534703, 0.0288173351, 0.0381973, 0.0130863534, -0.0176004618, 0.0321003236, 0.0107022794, -0.00550421514, -0.00366730569, 0.00110002887, -0.0304588303, -0.0357220322, 0.00206489488, 0.0261857342, 0.00622399757, -0.00301429071, 0.0295468885, -0.0344713703, -0.0339763165, -0.0247526839, 0.00761470757, 0.00183528126, -0.0167015474, -0.0193722323, 0.00518829282, -0.0326214321, 0.00737369433, 0.0128844231, 0.0135879209, -0.010767418, -0.0376761928, -0.0336115398, -0.00814884435, -0.0191768166, 0.0142002245, -0.016102273, -0.0185514856, -0.0206228942, 0.00194764545, -0.0297032204, 0.0221992489, -0.0058624777, -0.0157114398, 0.0289215576, -0.0263811499, -0.00656271819, 0.0151773039, 0.0301461648, -0.0257949028, -0.0556023456, 0.00971868541, 0.00563123589, -0.00938647892, -0.00344583415, -0.0102007119, 0.0169490743, 0.0467434898, -0.0296771657, -0.0232544951, 0.00686561316, -0.019111678, 0.0193982888, 0.0254822373, 0.0186817627, -0.00262020202, 0.030693328, -0.0171835739, 0.0136660878, 0.0242836867, -0.0273842849, -0.00670928042, 0.0228115525, -0.0148255555, 0.0249090176, 0.00394414505, 0.0212091412, 0.00399951264, 0.0288694464, -0.0191898439, -0.00583967939, 0.0294426661, -0.0389789641, 0.00400928361, -0.00289052725, -0.0360346958, -0.00667671114, 0.0514334738, -0.0304588303, -0.0185124017, 0.00129951595, -0.00374872889, -0.014343529, 0.000751537096, -0.000894027879, 0.021743279, 0.0319700465, -0.0266417041, -0.0465350449, 0.010519891, -0.0120962458, 0.0140960021, 0.0313447155, 0.0298074428, 0.0240231324, 0.00668322481, -0.0314228795, -0.00758213783, -0.0187599286, -0.0197630636, 0.00098766468, 0.0186687354, -0.0315531604, 0.0353312, 0.00165452156, -0.0247396566, 0.00568986032, 0.00416887319, 0.00241175829, 0.00590481795, 0.0140308635, 0.00875463337, -0.0169490743, 0.0161283277, 0.0254952647, -0.00557586784, -0.0132947974, -0.0386923552, -0.0464829355, -0.0319439918, 0.0139136137, -0.00711313961, 0.0294426661, 0.00245247, -0.00595692871, 0.026680788, -0.0106827375, 0.002284738, -0.00293775275, 0.0226552207, -0.0148125272, 0.0125587303, -0.0067288219, -0.0133143384, 0.012356801, 0.00325204665, 0.0139917806, 0.00921060424, 0.00333184167, 0.00213003368, 0.0178219322, -0.0277230069, 0.0069502932, 0.0442682207, -0.017274769, -0.0153987752, 0.0150600541, -0.0162325501, 0.0401514582, -0.0213654749, 0.00763424905, 0.00921711791, 0.00135976914, -0.0182909314, 0.0112754991, 0.0094711585, 0.00559540931, -0.042235896, -0.0173659623, 0.0146561945, -0.0182388201, 0.000758458104, -0.0126434108, -0.00615885854, -0.0215478633, 0.0247787405, 0.0316052698, -0.0413500108, 0.0277751181, -0.0103961276, -0.0170663241, -0.0186687354, 0.0196848977, 0.00397671433, 0.0309278276, -0.000875300495, -0.00621748343, -0.0383275785, 0.0133208521, 0.0273582302, -0.00976428296, -0.0321524329, 0.036920581, 0.0216260292, 0.00556284, 0.0146431671, -0.0186557081, -0.00467044069, 0.00994667, -0.00291332579, 0.0114774285, -0.0335073173, -0.00654643355, 0.00610674778, -0.0223816372, 0.0120636765, -0.01095632, 0.00302406144, 0.0159980506, -0.00886536948, -0.0125717577, -0.0347319245, 0.0344192572, -0.00944510289, 0.00658551697, 0.00878720265, -0.0131254364, -0.00396368653, 0.0241924915, 0.00107804453, -0.00620445563, -0.0212221704, -0.0185254309, 0.0286610033, -0.0127411187, -0.00704148738, -0.00741277775, -0.00962097757, 0.0498180352, 0.00389203383, -0.0165061317, -0.0161543842, -0.0336115398, -0.0173399076, 0.0318137147, 0.00447176769, -0.0194373708, 0.017730739, 0.0164279658, -0.0317616, -0.0144477515, 0.0106306262, -0.0058624777, 0.000231038619, -0.0184342358, 0.0169230197, 0.0436428897, -0.00784920622, -0.00721736159, -0.0450498872, -0.022668248, 0.00349468831, 0.016388882, -0.008383343, 0.0156723578, -0.00971868541, -0.0144086676, -0.0138745308, 0.00219680066, -0.0217563063, -0.0241534095, -0.0114383455, 0.00566054787, 0.0198412314, -0.0180694591, 0.017313851, -0.0117835803, 0.0015836833, -0.00462810043, -0.0167536587, 8.7530052e-06, -0.0218996126, -0.020114813, -0.00399625581, -0.0123958839, -0.0282962266, 0.044164, 0.0130733261, 0.00240198756, -0.0408810116, 0.00181248272, 0.00476163486, 0.0353312, -0.0048495722, 0.0445287749, -0.0212091412, -0.00791434478, 0.00260717422, -0.0109823756, -0.0293384455, 0.0422619507, 0.0469779894, 0.0565403439, 0.0403077938, -0.0190074556, 0.00765379053, 0.0109432917, 0.0362952501, -0.0461442135, -0.0187078174, 0.00710011227, 0.00170011853, 7.25176287e-05, 0.0167406313, 0.017274769, -0.0127606606, 0.00130928669, -0.0191898439, 0.0119659686, 0.0257427916, 0.00573220057, -0.0041916715, 0.0223686099, -0.0105264047, 0.00801205356, -0.00527623, -0.0293384455, 0.00783617888, 0.0112624718, 0.014343529, 0.0105654877, -0.00842242688, 0.0259382073, 0.045623105, 0.019281039, -0.0161283277, 0.0153206084, -0.00602206774, 0.0251435153, 0.0252477378, -0.00131742901, -0.0134185608, 0.0191637892, 0.0110084303, 0.0215348359, 0.00577779766, -0.0243618526, -0.0113015547, -0.0312144384, -0.0036086808, -0.0358002, 0.00349468831, 0.00208606501, -0.0206098668, 0.00462810043, -0.000845988106, -0.0342368707, 0.0499222577, 0.0251956265, 0.0239840485, 0.0450759418, -0.0304067191, 0.0294687226, -0.00981639326, 0.0138093922, 0.00775149837, -0.00769287394, -3.25947658e-05, -0.0214306135, 0.0196458139, 0.0146561945, 0.0116467895, -0.0322566554, 0.0266677607, -0.00509384181, -0.0240361597, 0.009555839, 0.0144347232, 0.0122004682, 0.0203753673, -0.0478638746, 0.0157114398, 0.00816187169, 0.00686561316, 0.00215446064, -0.0162064936, 0.0215869471, 0.0393958502, -0.0309017729, 0.00212189136, 0.0370248035, 0.0004126126, -0.00787526183, -0.000801612448, 0.00925620086, -0.00176851416, 0.00872857776, 0.00494076591, -0.00660180161, 0.0041916715, 0.0136009483, 0.00311199878, 0.0261466522, 0.0292602777, -0.0107609043, -0.00411676243, -0.00250458089, -0.0522933044, -0.0397345722, 0.0260294024, 0.0463526584, 0.00899564661, -0.00216748845, 0.0119855106, 0.0124805644, 0.0251826, -0.00126206118, -0.00182876736, -0.0426788405, 0.00887839682, 0.024843879, 0.0135227824, -0.0347058699, -0.00564752053, -0.016936047, -0.0212221704, -0.0236844104, 0.0135227824, 0.0290518347, 0.00246386928, -0.012356801, 0.00950372778, -0.0299637765, -0.00767984614, -0.0610739924, -0.00608069217, -0.0223686099, -0.00372267351, -0.0115946783, -0.0081683863, -0.0422880054, 0.025299849, -0.00479746098, -0.000444978359, -0.00690469611, 0.0148125272, 0.0489582047, 0.0124089113, 0.000818711298, 0.00605789386, -0.0359825864, 0.0140829748, -0.0166494381, -0.0158417188, -0.0134967268, 0.0425225049, 0.0126173552, 0.0160762165, 0.0330643766, -0.000861458539, 0.0163498, 0.00835077371, -0.00383992307, -0.0404120125, -0.0595106632, 0.00949721411, 0.0397606269, -0.018942317, -0.0147083057, -0.0157505237, 0.0255604032, 0.00379106891, 0.0131384647, 0.0210267548, 0.00443919841, -0.0190986507, -0.0016504504, -0.00293449592, 0.00482677342, -0.0139787532, -0.0343150385, 0.0162064936, 0.00830517709, 0.0340284258, -0.0136400321, -0.0502088666, 0.0151773039, -0.0200366471, -0.018316986, -0.0459878817, 0.00377152744, 0.00977731, -0.0119073438, 0.0144477515, -0.00869600847, -0.0393437408, 0.0102007119, -0.00330415764, -0.0149818882, 0.00471603777, -0.00374547206, -0.0146822501, 0.00360216689, -0.00515246671, -0.047551211, -0.0131645193, -0.0165061317, -0.0141481133, -0.00409070682, -0.0292863343, 0.013151492, 0.00867646746, -0.00110002887, 0.00515572354, 0.000327118119, 0.00915197935, -0.00775801251, -0.0353051461, -0.0360607542, -0.0122330375, 0.0141481133, 0.0184993744, -0.0333770402, 0.0184472632, 0.0443203337, -0.0195806753, 0.0353572555, -0.034497425, -0.0354354233, -0.0132426862, 0.00459553115, 0.0204535332, 0.007966456, -0.0162716322, 0.00411024829, 0.0133664496, 0.0289736688, 0.00127997436, -0.00202744035, -0.0291039459, 0.0303024966, -0.00205838121, 0.0054911878, 0.0142914187, -0.0246875454, 0.0159980506, 0.0283483379, 0.0248569064, -0.0644612, -0.00096323766, -0.0262769293, -0.0157114398, 0.0288433917, -0.021951722, 0.0176656, 0.0288955029, -0.00822701, -0.00900867395, 0.0198412314, -0.0240101032, 0.0102919051, 0.00771892909, -0.0145389447, 0.0168578811, 0.0164019112, -0.00428286567, 0.00898913294, -0.0326214321, -0.0118291778, 0.0268631764, 0.0180564318, -0.00899564661, 0.00316573796, -0.018564513, 0.00403208192, -0.00280747563, 0.0173789896, 0.00454667723, -0.0114318319, 0.0213003363, 0.00466718385, 0.00303871767, -0.0180694591, 0.00412979, 0.0124935918, -0.0302243307, -0.0170793515, 0.0113276104, -0.0449456647, -0.00426658103, 0.00546838902, -0.0291821118, 0.0102919051, -0.0256646257, 0.0166233815, 0.00373570109, -0.01095632, 0.0102788778, -0.0139396694, -0.00106013147, 0.0329601541, -0.0162195228, 0.00741277775, -0.00497333519, 0.0134706711, 0.0342629254, 0.0233196337, 0.0094125336, 0.0188120399, 0.0331685953, -0.00532508409, -0.00559215248, -0.0240752418, 0.0178740434, -0.0122786341, 0.00544884754, 0.0223555826, 0.0151903313, 0.000823189621, 0.033872094, 0.00167243462, -0.00762122124, -0.0303806625, 0.00633799, -0.00186133676, 0.00360542396, 0.00963400491, -0.0134706711, -0.00384318, -0.0047779195, -0.00476814853, -0.0190856233, -0.0194243435, -0.00449456647, 0.0180955157, 0.00919757597, 0.00414933171, 0.0248959903, -0.0242315754, -0.011373207, -0.0339763165, -0.0130798398, 0.00424703956, 0.0233847722, -0.0037552428, 0.014565, 0.00479420414, 0.00857876, 0.0542995743, -0.00711313961, -0.00102349091, 0.00515898038, 0.0175222941, -0.0138615035, -0.0086113289, -0.00519154966, 0.0263550952, 0.0112885265, 0.00351422979, 0.0195415933, -0.00506127253, 0.0288173351, 0.0072434172, 0.0183690973, 0.034497425, -0.00480723195, -0.0222122781, 0.00804462284, -0.00820095558, 0.0337939262, -0.00710011227, -0.0132882828, 0.0165191591, -0.0198412314, 0.0218735561, -0.0205447283, -0.00107153063, 0.00832471903, 0.0205707829, -0.0141611407, 0.01496886, -0.00876114704, 0.0153727196, 0.038223356, 0.0302243307, -0.00343606342, -0.0109888893, 0.0267589539, -0.0156984124, -0.0158026349, -0.0130407559, 0.00395391556, 8.09653e-05, -0.0101746563, 0.00627285149, 0.00643895473, 0.0074518607, -0.00472255144, -0.000960795, 0.0174441282, 0.02902578, -0.0162716322, 0.010330989, -0.0137442537, 0.00653340574, -0.036920581, -0.0123177171, -0.00709359813, 0.0142002245, -0.0102853915, -0.0124675361, 0.00952978339, -0.00664414139, -0.00882628653, -0.0184472632, -0.0245181844, 0.00546187535, 0.0130537841, -0.00498310616, 0.0218214449, 0.0278272275, -0.00446199719, -0.0116011919, -0.00145584869, -0.0049309954, -0.01496886, -0.00762773491, 0.00704148738, 0.0143305017, 0.0180434044, -0.0480202064, 0.0250523221, -0.0173920169, 0.0132166306, 0.00187436445, -0.00876114704, -0.0173008237, -0.00563774956, -0.0353833102, 0.013379477, 0.017313851, 0.011790094, -0.00611326145, -0.00108618685, 0.00165370735, -0.0236323, -0.0323348232, 0.00818141364, -0.0348622, 0.00401254045, 0.037181139, 0.0108130146, 0.00142490782, -0.0301982742, -0.0252607651, -0.00655620452, -0.00763424905, -0.000823189621, -0.016558243, -0.013548838, -0.00951675605, -0.00889793877, 0.0151121654, -0.00106664526, -0.00844848156, -0.019111678, 0.00220005773, -0.000525587413, 0.00857224502, 0.0201408677, -0.00710662594, 0.0200627018, 0.00710662594, -0.019320121, 0.000344217027, -0.00839637127, 0.0169751309, 0.016766686, -0.0129104787, -0.0161934663, -0.0114578875, -0.0264202338, 0.0110540278, 0.00155355665, 0.00821398292, 0.0307975505, 0.00994015671, 0.0346016474, 0.004569476, 0.0429915041, 0.00641615642, -0.0132426862, -0.00668322481, -0.0147083057, 0.0145389447, 0.0194373708, 0.0317876562, 0.0156202465, -0.0134576438, -0.0215348359, -0.00988153182, -0.0188380964, 0.0106631955, -0.0144868344, 0.0264202338, -0.02391891, 0.00417538686, -0.0278272275, 0.0168318246, -0.0146040842, 0.00872206409, 0.0266286768, 0.015932912, -0.016766686, 0.0036086808, -0.0437210575, -0.0467695445, -0.0184342358, 0.0123437727, 0.0217823628, -0.0208443664, -0.000250783778, 0.00763424905, -0.00148271839, 0.0143956402, 0.00222285627, 0.0145780286, 0.0262117907, -0.00696332101, 0.00248992466, 0.0116728451, 0.00714570936, 0.00299637765, 0.018564513, -0.0036282225, 0.0169751309, -0.00872857776, 0.0125131337, -0.00674184971, 0.00482025975, 0.00902170222, 0.00785572, 0.00333347, 0.0142002245, 0.00827260781, -0.0335594304, -0.00584293623, 0.00801856723, 0.00514269574, -0.00489191199, -0.00964051951, 0.000800798181, 0.00884582754, -0.0123112034, 0.0162586048, 0.0459357724, 0.0159980506, 0.0333770402, 0.0246875454, -0.0337418169, -0.0346798152, 0.0047779195, 0.0174180735, 0.00890445244, -0.0195546206, 0.01990637, 0.0127997436, 0.0186947901, 0.00939950626, 0.0371290259, 0.0192028712, -0.0176656, 0.00982942153, -0.0137181981, 0.0208052825, 0.00153075811, -0.0118031222, -0.00951675605, -0.0179522093, -0.00596018601, -0.00901518855, -0.00221145689, -0.0140569191, 0.0134706711, 0.0359304771, -0.0256385691, 0.0136270039, -0.0164670497, 0.019281039, -0.0290778894, 0.00175222952, -0.00332532777, 0.0219386946, -0.000215771754, -0.00988804642, 0.00949721411, 0.0102593359, 0.00240035891, 0.00162520912, 0.0143305017, 0.00506127253, -0.0206880327, 0.00428612251, 0.00429263664, 0.0118878027, -0.00210723514, -0.00743883289, -0.027306119, 0.0118552335, 0.0113471514, -0.00827260781, 0.0174441282, 0.0117249554, -0.0239710212, 0.0033350985, -0.0228506364, -0.0139136137, 0.00526320236, 0.00137686811, -0.00183853821, 0.0109302644, 0.0154769411, -0.0228376091, 0.00760168, -0.011334124, 0.00984896254, -0.00331392838, -0.0115751373, -0.0174962394, 0.0388226323, 0.00503196, -0.00388226309, -0.0118161496, -0.0149558326, 0.0253780149, 0.00738672214, -0.000672963622, 0.011523026, -0.00359891, 0.0160892457, -0.00540976413, 0.000167732011, 0.0129169933, 0.0183821246, -0.0074518607, -0.0139526976, 0.0154508865, -0.000321622036, -0.0311102159, -0.0148385828, 0.0155290524, 0.00693075173, -0.00900216, -0.0175353233, 0.0186557081, 0.0484110378, 0.0131840613, 0.0012433338, -0.0233196337, -0.00325041823, -0.0075365412, 0.0130277285, -0.00632170541, 0.0176916551, -0.0272540078, -0.0159980506, 0.00516875135, 7.25176287e-05, 0.00510361278, -0.023293579, -0.00183853821, -0.0187859852, 0.00519154966, -0.0167145766, 0.0034751466, 0.00859830063, -0.0047062668, 0.0325432643, 0.0014900465, -0.00426983787, 0.016102273, -0.00911941, 0.0242576301, 0.0164019112, 0.005572611, -0.00172780256, 0.0110670552, -0.00286935712, -0.00956886634, 0.0274363961, -0.0120376209, -0.0043349769, 0.0292342231, -0.00163172302, -0.00431869226, 0.016766686, -0.0104026413, -0.00116516743, -0.00553678488, -0.00507755717, -0.0218475014, -0.0309799388, -0.015763551, -0.0179522093, -0.00451736478, 0.0164409932, 0.02701951, -0.00655946136, 0.0031071133, -0.00744534703, 0.0297553316, 0.00338720949, -0.0106110852, -0.00998575427, 0.00490819663, -0.0129756173, 0.0186035968, 0.0135748936, 0.0299898311, 0.00706754299, -0.0243097413, -0.00923666, 0.0481504835, 0.0070219459, -0.0168448538, -0.0251565445, 0.00129544479, -0.0015104023, -0.00762122124, 0.00473557925, 0.000534544, 0.0168709084, 0.00368359033, 0.0191898439, -0.0249220449, 0.0277751181, 0.014721333, 0.00483980123, 0.0312404931, 0.00871555, 0.025508292, 0.0361128636, 0.00570288813, 0.0033937234, -0.00749745779, -0.00722387573, 0.00923014525, -0.00995318498, 0.013548838, 0.0214566682, -0.000816268614, 0.00997924, -0.0011765667, 0.00354679907, 0.0339242071, -0.00574848522, 0.0121353297, -0.0176656, 0.000927411427, 0.0338199846, -0.00786874816, -0.00460530212, 0.0128257992, 0.00349468831, -0.012734605, -0.00293938117, -0.0283743925, -0.0318397693, 0.0147995, -0.0171705466, -0.0493750907, -0.00852013472, 0.00114806858, -0.0122981761, -0.0160631891, 0.0198021475, -0.0205968395, -0.0115686227, -0.00863738451, -0.0198803134, 0.0184472632, -0.00415258855, 0.0178349596, 0.00919757597, -0.00874160603, -0.0126108415, 0.0139917806, 0.0150209712, -0.000894027879, -0.0400993489, -0.00656597503, -0.0184993744, -0.0131580057, 0.0143565573, 0.029859554, 0.00565729104, -0.00458901748, 0.00777755398, 0.00528274383, -0.030484885, -0.012923507, 0.0393437408, -0.0243097413, -0.00241175829, -0.0289997235, 0.0116598168, 0.0105264047, 0.0170272421, 0.0416366197, -0.00638033031, -0.00238895975, 0.0021723737, 0.00704148738, -0.0127802016, 0.00632170541, 0.00455319136, -0.0190856233, 0.00616862951, -0.00587876234, -0.00118470902, 0.00467695436, -0.0248959903, 0.0286349468, 0.00837031566, 0.013965725, 0.0101095177, -0.00560843712, 0.00709359813, 0.0138484752, 0.0278272275, 0.0219647512, 0.0295729432, -0.0164540205, 0.0120245935, -0.0167797152, -0.0176525731, -0.0123112034, -0.0192028712, 0.000569963129, 0.00604160922, 0.000818304194, 0.00105931715, -0.00341000804, 0.00518177915, 0.0144086676, 0.00376501353, -0.0126564382, 0.0140569191, 0.00145503448, 0.0190725941, -0.00921060424, 0.0369726941, 0.0107348487, 0.00567357568, 0.0205838103, -0.0259121526, -0.022290444, -0.00138826738, 0.00657248916, -0.0169881582, 0.0270716194, -0.0146171115, 0.0200236198, 0.0061556017, 0.0179782659, -0.022121083, -0.0020974644, 0.0101746563, 0.0227203593, -0.00436754618, 0.0247657113, 0.0179261547, -0.000619631319, 0.0298074428, -0.0029263536, -0.00517200818, -0.00455319136, 0.00923014525, -0.00791434478, -0.00193461764, 0.00143549289, 0.00482351659, -0.0130016729, -0.0126173552, 0.00423726859, 0.00554655539, -0.0128453402, -0.0205447283, 0.00442942791, 0.00578431133, 0.00909986813, 0.0107153067, 0.00718479231, -0.00784920622, -0.00313968258, 0.000538615161, -0.00154460012, -0.012337259, 0.0151512483, 0.00514595257, -0.0302243307, 0.00688515464, 0.0007153037, -0.00653992, 0.00446525402, 0.0234499108, -0.00767984614, 0.00518503599, -0.00201604096, 0.0118487189, -0.0260294024, -0.00074990862, 0.0214436408, 0.0121613843, 0.00421772711, 0.0157505237, -0.00668322481, -0.00269511133, 0.00674836338, -0.011959455, -0.00502870325, -0.00704800105, -0.000574441394, 0.00474535, 0.0296771657, -0.0111256801, -0.00605137972, -0.00159019709, 0.00730855577, -0.000449456624, -0.00881977193, 0.00769287394, -0.0060872063, -0.0162716322, 0.00336115388, -0.00345560513, -0.0204274785, -0.0195546206, -0.0217563063, -0.00444896938, 0.0133208521, -0.0116728451, -0.0230330247, 0.0039702, -0.0116598168, -0.00519806379, -0.0376761928, 0.00161380984, -0.00164719345, 0.0208964758, 0.0191507619, -0.00948418677, 0.0129495626, 0.0138615035, 0.00733461138, 0.0164409932, -0.0260033458, -0.00873509236, -0.012148357, -0.0246875454, 0.00064527971, -0.00994667, -0.00128567393, 0.000803648, -0.00918454863, -0.02701951, -0.00284167333, -0.00358588225, -0.014929777, 0.00252575078, 0.012943048, -0.0134055326, 0.00110654265, -0.012337259, -0.000238977402, -0.0301201083, -0.00492448127, -0.0178610161, -0.00313479709, 0.025847014, -0.0168448538, 0.0402817354, -0.0182388201, -0.00622399757, 0.00412653293, -0.00468346849, -0.000288238487, -0.00122134958, 0.0108130146, -0.0106436545, -0.0397866815, 0.00341326487, -0.00432520593, -0.00388877699, 0.0182648748, -0.0101355724, -0.000334649783, 0.0392134637, 0.00474860705, 0.0247396566, -0.0119920243, 0.0149428044, 0.000247119722, -0.0144347232, 0.0234759673, 0.0129756173, -0.0197760928, 0.0251044333, 0.00156332739, -0.015346664, -0.0100052953, -0.0017636288, -0.00269511133, -0.020284174, 0.00680698827, 0.0207922552, 0.017313851, 0.0064487257, -0.011373207, -0.0100443792, -0.0164019112, 0.00492448127, 0.00583967939, -0.0203493126, 0.0137703093, 0.00115783943, 0.0108065009, -0.0142523348, 0.0034751466, 0.00541627826, 0.00479094731, -0.00227333861, -0.00254692091, 0.00154704275, -0.00180759735, 0.0169881582, -0.0207661986, -0.0159198847, -0.014382612, 0.0108976951, -0.019281039, 0.0137051707, 0.0185514856, -0.026302984, 0.0106175989, 0.0125131337, 0.0108520975, -0.0389789641, 0.0190465394, 0.00403533876, 0.000600904, -0.000124475875, -0.00536742434, -0.0136270039, 0.0186296515, 0.0180043206, -0.0232805517, -0.0229027476, 0.00648129499, 0.00979685225, -0.00431217812, -0.0130147012, -0.0232023839, -0.00999226794, 0.0124935918, -0.0011154993, 0.0265765656, 0.0126043279, 0.0119008301, 0.000508488505, -0.0143695846, -0.00973822735, -0.0130016729, -0.0142914187, -0.0172877964, -0.0239058826, 0.00295892288, 0.00398974167, 0.00480397511, 0.0134185608, 0.014929777, -0.0153075811, -1.37401821e-05, 0.012754146, 0.00790131744, -0.0036151947, 0.000578512554, 0.00680047413, 0.00503521692, -0.0231633019, 0.00519480696, -0.00400928361, -0.011542568, -0.0172356851, 0.00665065553, -0.0186035968, 0.0130928671, 0.0157505237, 0.00928877, 0.00686561316, -0.0257949028, -0.0292081684, 0.00734763872, 0.0154248308, -0.0199584793, 0.0206359215, 0.0149428044, -0.00337743876, -0.000459634553, -0.0308757164, -0.0174701847, 0.000387982029, 0.00936042331, 0.00160159636, 0.000718153547, -0.0108130146, -0.00844196789, -0.00964051951, 0.00805765, 0.000996621209, 0.0396824628, 0.00493750907, -0.0354354233, 0.0173920169, -0.00408419315, 0.00113341236, 0.0200757291, 0.0036966179, 0.0130668115, 0.0120767048, -0.00674836338, 0.0144607788, 0.0112494435, -0.0308236051, -0.00275536464, -0.00936693698, 0.0194764547, 0.0159719959, 0.00434149057, 0.0273842849, 0.0287391692, 0.0185775403, 0.0215348359, -0.00701543177, 0.0102528222, 0.0146561945, 0.00683955755, 0.00320319273, 0.0194503982, -0.0128583685, 0.0105915433, -0.0245702956, 0.0325172096, 0.0217823628, -0.0054325629, -0.015555108, 0.0109888893, -0.00149167492, 0.0135879209, 0.0100052953, 0.0136791151, 0.0081032468, 0.0147083057, -0.011334124, -0.0069502932, -0.00519480696, -0.0062272544, -0.0245442409, -0.0286610033, 0.0132687418, -0.021743279, 0.0106175989, -0.0177177116, 0.00416235952, -0.0231111906, -0.00203069719, -0.0178610161, 0.0173789896, 0.0220038332, -0.00280747563, 0.0069502932, -0.00609046314, 0.0133664496, 0.0270455647, 0.0137312263, 0.00619794196, -0.0188250672, -0.0101225451, 0.00934088137, 0.00516223768, -0.000806497817, -0.00206163805, 0.0077319569, 0.0249350723, -0.00762122124, -0.000293734571, -0.0148385828, -0.0216520857, 0.00664414139, 0.0134446155, -0.0176265165, -0.00844196789, 0.0260815118, 0.0100769484, -0.00766681833, -0.00288889883, -0.0222774167, 0.000201115559, -0.0104742935, 0.0152554698, -0.0245312136, 0.0229027476, 0.00301917619, -0.0231763292, -0.0045662187, 0.0103440164, -0.0107087931, -0.0088914251, 0.00262183044, -0.0228115525, -0.0102202529, 0.016388882, 0.00323250517, 0.0143174734, -0.0102984197, 0.00170500402, 0.00496682152, -0.0144998617, 0.0107348487, 0.0128583685, 0.00939299259, -0.0260033458, -0.00190367689, 0.0218214449, 0.00534462556, 0.017561378, -0.00131987175, -0.0182127655, -0.000281113957, -0.000350934453, 0.0308496617, -0.0173268784, 0.00590156112, 0.012923507, 0.00893702172, 0.0137181981, -0.00872206409, -0.00112689857, -0.0298335, 0.00696983468, -0.00420144247, 0.00025607628, 0.00630542077, 0.0222643875, 0.0281920042, 6.04313584e-07, 0.0136921424, 0.0153336367, -0.00532508409, 0.0370248035, -0.0081749, 0.00799902529, 0.00591784576, -0.000486911362, 0.0151251927, 0.0165061317, -0.00174571562, 0.00837682933, -0.00926922914, 0.0204405058, 0.0165973268, -0.0151773039, 0.00747140218, -0.0156723578, -0.0205577556, 0.0198672861, 0.00377804134, -0.00302731851, -0.011373207, 0.000517445093, -0.00191019068, 0.00151528767, 0.00389203383, -0.0190986507, 0.0186557081, 0.00982290693, 0.0296250544, -0.0174571555, -0.0226161368, 0.0023531334, -0.00113259815, 0.00631519128, -0.00361845153, 0.00139152422, 0.00718479231, -0.0159719959, -0.0090542715, 0.00324227591, 0.000438464485, 0.0171575192, 0.0140699465, 0.0194764547, -0.0104286969, -0.00749094412, -0.0017636288, 0.00764727686, 0.0132426862, 0.00356959761, 0.00415258855, 0.00659854431, 0.00870903675, -0.00116353901, 0.0269413423, 0.00202906877, 0.0182648748, 0.0224076938, 0.00760168, -0.0072825, -0.0107739316, -0.021495752, -0.0221601669, -0.0211570319, -0.00708057033, 0.00878720265, -0.00280747563, 0.00642592693, -0.00216097455, -0.0156593304, -0.0166233815, -0.0146431671, 0.0129104787, -0.0251695719, -0.00395717239, -0.00257623335, -0.0262639, -0.0151121654, -0.00659854431, 0.00194601691, 0.00448805233, -0.00105524599, 0.00488865515, 0.000764971948, 0.00310222781, -0.00537068117, -0.00353051443, 0.00799251162, 0.0257297643, -0.00224565482, 0.00915849302, 0.0158286896, 0.00815535802, -0.00335789705, 0.0155811636, -0.00403859606, 0.016102273, -0.0179782659, -0.000831739046, -0.0297292769, -0.00877417531, 0.00948418677, -0.00823352486, 0.00480723195, -0.00233033486, -0.0190204829, 0.00759516563, 0.00232056412, 0.0280617271, -0.0131384647, -0.00618817098, -0.0157114398, 0.00941904821, 0.0101486007, 0.000377600576, 0.0108976951, 0.000347270397, -0.0237756055, -0.00776452618, -0.0144998617, 0.0256255418, -0.0128974514, -0.0122069819, -0.0186426789, 0.0120897321, -0.00175711489, 0.0160892457, -0.0125522166, 0.0136791151, 0.00498962, 0.0196848977, -0.0279575065, -0.0226161368, -0.0117184417, 0.00154785695, 0.0206098668, 0.00486259954, -0.00639010081, -0.0100378646, -0.0360346958, -0.0221862216, -0.00627285149, -0.00647478132, -0.0176525731, -0.0313447155, 0.0210658368, -0.00178479881, 0.01095632, -4.36378032e-05, -0.0202320628, 0.0036086808, -0.0149037214, -0.0220298897, 0.00807067752, 0.00960795, -0.0144998617, 0.025130488, -0.0103375027, 0.00105361757, 0.023085136, 0.0116272476, 0.0321784914, -0.0108586121, -0.0116663305, 0.000272971636, -0.0170402694, -0.017939182, -0.0114057763, -0.00188576372, 0.0127671743, -0.00208443659, -0.0013638403, 0.00483003026, -0.018316986, -0.0116858725, -0.024674518, 0.00418841466, -0.0204535332, 0.0191898439, 0.0106371408, -0.0167536587, 0.00248178234, -0.00686561316, -0.0216911677, 0.0183430426, 0.00436754618, 0.00345560513, 0.00641289959, 0.00501241861, -0.0138354478, -0.00243944209, 0.0264332611, 0.0179912932, 0.0300158858, -0.00964703318, -0.00846151, -0.0175222941, 0.0250653494, -0.0134576438, 0.00601881044, -0.026133623, 0.0113015547, 0.0332728177, -0.000145137034, -0.0113797206, 0.0140308635, 0.00892399438, -0.00475512072, -0.0201278403, -0.00320970663, -0.00303871767, -0.0245833248, 0.0213524476, -0.00349468831, -0.00512966793, -0.000504417345, 0.00595692871, 0.0120571628, 0.0196848977, -0.0144347232, -0.00153075811, -0.00609046314, 0.0142783904, 0.0134315882, 0.0144607788, -0.0190725941, 0.016766686, -0.0146822501, -0.00602206774, -0.00623702491, 0.00341977878, -0.0161543842, -0.00134836987, 0.0197760928, -0.00206326647, 0.015932912, 0.00988804642, -0.0180303771, 0.0115946783, -0.00965354685, -0.0304588303, 0.0102593359, -0.0427830592, -0.00582665158, 0.00878720265, 0.00455970503, -0.00504173106, -0.0125717577, 0.00504498789, -0.00831820443, -0.0277751181, 0.0256125145, 0.0161674116, -0.00498310616, -0.00144119246, 0.0239710212, -0.00103407598, -0.0165842976, -0.02546921, -1.4719807e-05, 0.0104221832, 0.0164279658, 0.0031820226, -0.0240491871, -0.00435126154, -0.000516630884, -0.0143695846, 0.0105654877, 0.0142783904, -0.0131970886, 0.00139152422, -0.0156593304, -0.00568009, -0.00432194909, -0.00177177112, 0.0153206084, 0.00350445905, -0.00696983468, -0.0133534223, 0.011920372, 0.00747791631, 0.00281887478, -0.00569637446, 0.00489516882, -0.0091128964, -0.00273093767, 0.00252737943, -0.00325856055, 0.0196588431, -0.0225770529, -0.0232284404, 0.00889793877, 0.0078231506, 0.0279053953, -0.00128567393, 0.017561378, 0.000482840202, 0.0110084303, 0.0168839358, 0.0210788641, 0.00459878799, 0.0187078174, 0.0091128964, 0.0256125145, -0.0197109543, -0.00702845957, 0.0143565573, -0.00415584538, -0.00526645919, -0.000549200166, -0.0172487125, 0.0147343613, 0.00825306587, -0.00361193786, -0.0141611407, 0.00664088456, 0.0148646384, 0.00210397807, 0.0156984124, 0.0171314627, -0.0183821246, -0.0130472705, 0.0251565445, -0.000760900788, -0.0168709084, 0.0118161496, 0.00487237051, 0.000923340267, 0.0153596923, -0.00943858922, 0.0151773039, 0.00400928361, -0.013340394, 0.0180694591, 0.0100248372, -0.0161543842, 0.0154118026, 0.026133623, -0.0155029967, -0.00906078517, -0.00601229677, 0.0161804389, 0.00966006052, 0.00307617243, 0.0194243435, -0.00747140218, -0.0355657, 0.0220559444, 0.00639010081, -0.00653666304, -0.0100769484, -0.0116207339, 0.0186035968, 0.00423401175, -0.000960795, 0.00301429071, -0.016558243, 0.00556935417, 0.00237430353, 0.00637055933, -0.00835728832, 0.00289541273, 0.0152033595, 0.0244400185, 0.0212351978, 0.00283841626, 0.0160371345, -0.00211049197, -0.00334161241, -0.00676139118, 0.00930179842, -0.000634287542, 0.00770590128, -0.0021658598, 0.00219842931, 0.0208313372, -0.00977731, 0.00932785403, 0.00777755398, -0.0158417188, 0.00128567393, -0.0146692228, 0.0181215703, -0.0317094922, 0.00664088456, -0.00587550551, 0.0231372453, -0.00339698023, -0.0397085175, -0.00369987497, 0.00131824333, 0.00540325046, -0.0129821319, -0.0196588431, 0.00738020847, 0.0102853915, 0.00479094731, 0.0158417188, 0.00283190259, 0.00144689216, 0.0148125272, -0.00235150498, -0.0177177116, 0.0110475142, -0.0249871835, -0.0112038469, -0.0200366471, 0.00939950626, 0.000839474262, -0.00142246508, -0.0212091412, 0.0195025094, 0.00215771748, 0.0194634274, -0.0155290524, 0.0259512346, 0.000599275518, 0.00123274885, -0.0400211811, 0.00591133162, -0.00831169076, 0.00248829625, -0.0188902058, -0.0349924788, 0.000563856389, 0.0159068573, -0.00836380199, -0.0167145766, 0.0136009483, 0.014565, -0.0124479951, -0.00654317671, 0.0262248181, -0.0139396694, -0.034497425, -0.0216781404, 0.0126173552, -0.0235150494, 0.00238407427, 0.0121939536, -0.0292081684, 0.00112852699, -0.0124414805, -0.00126776088, -0.00760168, 0.00233196351, 0.0132622281, -0.0150339985, -0.00949721411, -0.0128844231, 0.0202450901, 0.00853967573, 0.00489842612, 0.00172617403, -0.0122069819, -0.019320121, -0.0313968249, -0.0106892511, 0.0392916277, 0.0151512483, -0.00303546083, -0.0139005864, -0.0173399076, -0.00898913294, 0.00351097295, -0.0213133637, 0.00237267511, 0.000945324544, -0.00347188977, 0.00287587103, 0.00446851086, -0.0116923861, 0.015516025, 0.0165842976, 0.00674184971, 0.00351097295, 0.0113406377, -0.0120245935, 0.00790783111, 0.0102137392, 0.0124284532, -0.0611782148, -0.0135879209, 0.0212351978, 0.00747140218, 0.00324227591, -0.00577779766, 0.00257297629, -0.0174832121, 0.0115555953, -0.00951675605, -0.0131189227, 0.00453039259, -0.00343932025, 0.00437731668, -0.0173529349, -0.027514562, 0.01714449, 0.00494076591, -0.00264137192, 0.0124740498, -0.0241012983, -0.00932785403, -0.00616211584, 0.0101551143, 0.00256809103, -0.0156202465, -2.91851647e-05, 0.00045719184, -0.0282180607, -0.0162455775, -0.000981150777, -0.000744209, 0.0154639138, 0.0193722323, -0.0143174734, -0.0236062445, -0.0207922552, -0.00619468512, 0.00755608268, -0.00702845957, -0.0049309954, -0.0249871835, -0.00698937662, -0.00428286567, 0.0195285659, 0.0238016602, 0.00451736478, -0.00128730247, -0.0155029967, 0.0069502932, 0.00697634881, 0.00218540151, 0.000427065243, 0.00274722232, -0.0161283277, 0.0264593177, -0.00965354685, 0.000388592714, -0.00465415604, 0.0032536753, -0.00610674778, -0.0278793387, 0.0245963521, 0.00924968719, -0.00357285468, 0.038562078, -0.0152163869, 0.022290444, 0.0238537714, 0.0128127709, -0.0116272476, 0.00364776398, -0.00666042604, -0.000318161561, -0.00248503918, 0.0272800643, -0.0108390702, 0.00652037794, -0.00611000462, -0.00476814853, 0.00908684079, -0.00997924, -0.0175092667, 0.0394479632, 0.00907381251, -0.0135879209, 0.0241143256, -0.01496886, 0.00479746098, -0.0111126527, 0.0279575065, 0.0164931044, -0.00547816, 0.0196067318, -0.000240198744, -0.00879371725, -0.0153987752, -0.0103049334, 0.00995969865, -0.00371941645, -0.00329927215, 0.00501241861, 0.0050710435, 0.00621748343, 0.0173659623, -0.0175744053, -0.0148125272, -0.0196979251, 0.0146692228, 0.026680788, 0.0190725941, 0.0131710339, -0.00971868541, 0.00355982687, -0.00734112505, 0.021665113, 0.00126531813, -0.00110002887, -0.0015095881, -0.00603509508, -0.000342995656, -0.0155681353, -0.0226552207, -0.0106892511, -0.00668973848, -0.00221797079, 0.0206228942, -0.0108846668, -0.00873509236, -0.00629239297, 0.00526971603, 0.00716525083, 0.0023254496, 0.00807719212, -0.0140178362, -0.0334552079, 0.000278467691, 0.00245247, 0.000241012982, 0.0235932171, -0.000281521061, -0.000791841652, -0.000128343483, -0.00251760846, 0.001069088, 0.000598054146, -0.00208280818, 0.0291821118, 0.0204535332, -0.00065138645, -0.0249481, 0.00073973072, 0.0118812881, -0.00511989743, 0.0224076938, -0.0160110779, 0.00960143562, 0.00769938761, -0.00239873049, -0.0304327738, 0.00463461457, 0.0122134956, -0.00437080301, -0.003983228, -0.0184212085, 0.0229809135, -0.016388882, -0.00852013472, 0.000296380837, 4.03554259e-05, 0.0222122781, 0.021495752, 0.032829877, 0.0052078343, 0.0145780286, -0.0113145821, 0.00613931706, -0.0138484752, -0.0172877964, 0.00349468831, -0.0065887738, -0.0120506492, -0.00997924, 0.00975776836, 0.026302984, -0.000921711791, 0.0124805644, -0.0190335121, -0.00254203565, -0.00814884435, 0.0109628337, 0.00192159, 0.00262345886, 0.00781012326, 0.00762773491, -0.0104352105, 0.0118226632, 0.0247136019, 0.002686969, 0.00948418677, -0.0116663305, -0.00505475886, 0.00747791631, -0.00203721109, 0.00291006896, -0.015555108, 0.0141481133, 0.0202450901, -0.0115816509, -0.00995318498, 0.00588201964, -0.0273842849, 0.000326711015, 0.02346294, -0.018903235, -0.0110605415, 0.000686398474, 0.00975125469, -0.000315311743, 0.0153596923, 0.0191637892, -0.00367707643, 0.036920581, -0.0120050516, 0.0253910422, 0.0220950283, -0.0020323256, 0.00486911368, -0.0279835612, 0.00351097295, 0.000427879451, -0.0102007119, 0.0168187972, -0.0175744053, -0.0114969704, -0.00183365284, -0.00154378579, 0.015932912, -0.0311102159, 0.00936042331, 0.0104286969, 0.0297032204, -0.00244595599, 0.00109270075, -0.00687212683, -0.0114839431, 0.00216423138, 0.00890445244, 0.0088328, 0.0104938354, 0.014929777, -0.00257786177, -0.0187469013, 0.0159850232, 0.0172096286, -0.0115555953, -0.0282962266, -0.0105915433, 0.0018776214, 0.00617514318, -0.00155925623, -0.00154134317, 0.00637055933, -0.016727604, 0.0104808081, -0.0300940536, 0.004986363, -0.0160371345, -0.0209225323, 0.0149818882, -0.00592435943, 0.0098359352, -0.0122395512, -0.00786223449, 0.0130081866, -0.0036217086, -0.018486347, 0.00853316206, 0.00636078836, -0.000745430356, -0.0184733197, -0.010786959, -0.00775801251, 0.00917152129, 0.00581036694, 0.00100883469, 0.0234108288, -0.00833774637, -0.00488214148, 0.000924968743, -0.0096991444, -0.00625982368, 0.0127606606, 0.00582990842, -0.0192159, -0.0063673025, -0.0086113289, -0.000465334189, 0.0142523348, -0.0297292769, 0.00546187535, 0.00975125469, 0.0031071133, 0.0101551143, -0.0193070937, 0.000607824943, -0.0119529413, 0.00418515783, -0.01451289, 0.00442942791, -0.0299377199, 0.007966456, -0.00391808944, -0.023332661, 0.00164312229, -0.0015975252, -0.0084680235, -0.00194601691, -0.00458250334, 0.0107283341, 0.0110475142, 0.0126759801, 0.0174962394, 0.00205349573, 0.0146301389, -0.000517038, -0.010558974, -0.00588527648, -0.00298497826, -5.47062809e-05, -0.0171966013, 0.00605463702, -0.0114188045, 0.0151512483, -0.0164149385, 0.00427309517, 0.0180564318, -0.0171575192, 0.00417864416, 0.030693328, -0.00871555, -0.0127411187, -0.0190074556, -0.0284525584, 0.0123046897, -0.00351748662, 0.010975861, 0.00552701391, 0.0297032204, 0.00605463702, -0.0203102287, -0.00749745779, 0.0107218204, 0.00364776398, 0.0141741689, 0.00648455182, -0.0144477515, 0.00508081401, 0.000194499924, 0.0133925052, 0.022459805, -0.0421316735, -0.00697634881, -0.0121874399, 0.0313968249, 0.0132492, 0.00814884435, 0.0077449847, -0.0174180735, -0.00672230776, 0.0101746563, 0.00316410954, -0.0039702, 0.00934088137, 0.0252477378, 0.0173659623, -0.0102788778, 0.00670276629, -0.012356801, 0.0145780286, 0.0302243307, -0.0249741562, -0.0101355724, -0.0218735561, 0.00264788582, -0.00104058988, -0.00172291708, -0.00341652194, 0.00982942153, -0.00959492195, -0.0114578875, 0.000695355, -0.00278467708, 0.00427309517, -0.00404510973, -2.3600036e-05, -0.00434149057, 0.00415584538, -0.0161153, 0.0127932299, -0.00345234806, -0.00625005271, -0.00419818563, 0.00440988597, 0.00545536121, 0.00215120357, -0.00835728832, -0.00322273443, 0.00524366088, 0.00152505853, 0.00971217174, 0.00091438368, 0.00356308371, -0.00550421514, 0.0181867089, 0.00179131271, 0.0094711585, 0.0181345977, -0.00520132063, -0.00213003368, -0.0058624777, 0.0235150494, -0.0168448538, 0.0154899694, -0.00468346849, -0.00691121025, -0.0153075811, 0.00795342866, 0.00800553896, 0.0013296426, 0.022329526, 0.000319179351, 0.011770553, -0.0199715085, 0.0307714958, -0.0179001, -0.0126759801, -0.0106957648, 0.00498962, -0.00358262542, 0.0174050462, -0.0213394202, -0.00504173106, -0.0138354478, -0.0109237507, -0.00976428296, -0.0102984197, -0.000243659233, 0.0130147012, -0.0227203593, -0.00255669164, -0.00239221659, 0.0108325565, 0.00641941326, 0.0107218204, 0.00045922742, -0.0110865971, 0.0223555826, 0.0116467895, -0.0153075811, -0.0064356979, 0.000766193261, 0.00579082547, 0.0116272476, -0.00807719212, 0.0195155367, 0.0187208466, -0.00663762772, 0.00595041504, -0.013151492, -0.00563774956, -0.00209257891, 0.00351422979, 0.0261857342, -0.00779058179, 0.00806416385, -0.0162195228, -0.0535700209, -0.00201115571, -0.00355005614, -0.00685909903, -0.019111678, -0.00525343139, 0.00986850448, 0.0140048079, 0.0239449646, -0.0168709084, -0.000466962636, -0.0216520857, -0.0190335121, -0.0270976759, -0.000775556953, -0.00525994552, -0.00445222622, 0.0127997436, -0.0230069682, -0.0137312263, -0.00641615642, 0.00292309653, 0.0180564318, -0.00232219254, -0.0111582493, -0.00958189461, -0.00564752053, -0.00613931706, -0.00522737624, -0.0257297643, 0.0143956402, 0.000730774133, -0.021665113, 0.0187208466, 0.00320644979, 0.0418711193, 0.00875463337, -0.00719130598, -0.0409591794, 0.0122134956, -0.0103114471, 0.00211863429, -0.0128909377, 0.00164800766, 0.00359239615, -0.0241534095, 0.00420795614, -0.00551724294, 0.0101486007, -0.00100069237, 0.0428872816, -0.00866343919, 0.0105720013, -0.0086894948, 0.0116142202, -0.0102397949, 0.00850059278, -0.00074787304, 0.0104091549, 0.00211374904, -0.00818792731, -0.0201669242, 0.00828563515, -0.00374547206, 0.0122590922, 0.000921711791, 0.00234987657, 0.00222774153, 0.00902821589, 0.00827912148, -0.00779709546, -0.00482351659, 0.0123633146, -0.00440988597, -0.0052925148, -0.0286349468, 0.00239058817, 0.00454016356, 0.0152163869, 0.00946464483, 0.0113601796, -0.00742580509, -0.0141871963, -0.0125066191, 0.0081097614, 0.0355657, 0.00863738451, -0.016141355, 0.0170272421, -0.000656271819, -0.0157896075, -0.0143174734, 0.0237495489, -0.00480071781, 0.00158856867, -0.0263811499, 0.00525994552, -0.0159589667, -0.00751048559, 0.0162325501, 0.00831169076, -0.00238244585, -0.00886536948, 0.0327256545, 0.00406139437, -0.00173268793, -0.0120441355]
14 Dec, 2018
unordered_map operator= in C++ STL 14 Dec, 2018 The ‘=’ is an operator in C++ STL which copies (or moves) an unordered_map to another unordered_map and unordered_map::operator= is the corresponding operator function. There are three versions of this function. The first version takes reference of an unordered_map as an argument and copies it to an unordered_map. The second version performs a move assignment i.e it moves the content of an unordered_map to another unordered_map. The third version assigns contents of an initializer list to an unordered_map. Syntax ump.operator= ( unordered_map& ump ) ump.operator= ( unordered_map&& ump ) ump.operator= ( initializer list ) Parameters: The first version takes the reference of an unordered_map as argument. The second version takes the r-value reference of an unordered_map as argument. The third version takes an initializer list as argument. Return value: All of them returns the value of this pointer(*this). Below program illustrates the unordered_map::operator= in C++. Example // C++ code to illustrate the method // unordered_map::operator=() #include <bits/stdc++.h> using namespace std; // merge function template <class T> T merge(T a, T b) { T t(a); t.insert(b.begin(), b.end()); return t; } int main() { unordered_map<int, int> sample1, sample2, sample3; // List initialization sample1 = { { 1, 2 }, { 3, 4 }, { 5, 6 } }; sample2 = { { 7, 8 }, { 9, 10 }, { 11, 12 } }; // Merge both lists sample3 = merge(sample1, sample2); // copy assignment sample1 = sample3; // Print the unordered_map list for (auto& it : sample1) cout << it.first << " : " << it.second << endl; for (auto& it : sample2) cout << it.first << " : " << it.second << endl; for (auto& it : sample3) cout << it.first << " : " << it.second << endl; return 0; } Output: 7 : 8 9 : 10 11 : 12 1 : 2 3 : 4 5 : 6 11 : 12 9 : 10 7 : 8 7 : 8 9 : 10 11 : 12 1 : 2 3 : 4 5 : 6 Learn C++ Online – Master everything from basics to advanced concepts. Apply your knowledge with practical exercises and boost your skills. Take the Three 90 Challenge: finish 90% in 90 days for a 90% refund. Start now and level up your C++ programming!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum/Algorithm for Dynamic Time out timer Calculation/Difference between Round trip time (RTT) and Time to live (TTL)/Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms/Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm/Round Robin Scheduling Algorithm with Different Arrival Time/Selfish Round Robin CPU Scheduling/Find the order of execution of given N processes in Round Robin Scheduling/Calculate server loads using Round Robin Scheduling/set::lower_bound() Function in C++ STL/Implementation of lower_bound() and upper_bound() in List of Pairs in C++/Difference between std::set::lower_bound and std::lower_bound in C++/Difference between std::set vs std::vector in C++ STL/std::minmax() and std::minmax_element() in C++ STL/std::rotate vs std::rotate_copy in C++ STL/std::bitset::to_ullong and std::bitset::to_ulong in C++ STL/std::upper_bound and std::lower_bound for Vector in C++ STL/std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++/std::string::append vs std::string::push_back() vs Operator += in C++/Vector push_back() in C++ STL/vector :: cbegin() and vector :: cend() in C++ STL/unordered_multiset cend() function in C++ STL/unordered_multiset bucket() function in C++ STL/unordered_multiset emplace_hint() function in C++ STL/unordered_multiset end() function in C++ STL/unordered_multiset size() in C++ STL/unordered_multiset emplace() function in C++ STL/unordered_multiset find() function in C++STL/unordered_multiset erase() function in C++ STL/unordered_multiset clear() function in C++ STL/unordered_multiset swap() function in C++ STL/unordered_multiset bucket_size() function in C++ STL/unordered_multiset bucket_count() function in C++ STL/unordered_set bucket_count() function in C++ STL/unordered_set cbegin() function in C++ STL/array::cbegin() and array::cend() in C++ STL/array::rbegin() and array::rend() in C++ STL/multimap rbegin in C++ STL/vector rbegin() and rend() Functions in C++ STL/multiset rbegin() and rend() function in C++ STL/map rbegin() function in C++ STL/map upper_bound() function in C++ STL/Set upper_bound() in C++ STL/multimap upper_bound() function in C++ STL/multimap empty() function in C++ STL/multimap value_comp() function in C++ STL/multimap swap() function in C++ STL/multimap::swap() in C++ STL/multimap equal_range() in C++ STL/unordered_set equal_range in C++ STL/set vs unordered_set in C++ STL/unordered_set count() function in C++ STL/unordered_set bucket() function in C++ STL/unordered_set emplace() function in C++ STL/set::emplace() in C++ STL/multiset::emplace() in C++ STL/multiset find() function in C++ STL/multiset cbegin() and cend() function in C++ STL/multimap::cbegin() and multimap::cend() in C++ STL/multimap::begin() and multimap::end() in C++ STL/set::begin() and set::end() in C++ STL/unordered_multimap begin() and end() function in C++ STL/unordered_multimap empty() function in C++ STL/unordered_multimap find() function in C++ STL/unordered_multimap equal_range() function in C++ STL/unordered_multimap bucket_count() function in C++ STL/unordered_multimap bucket_size() function in C++ STL/unordered_multimap operator= in C++/unordered_multimap load_factor() function in C++ STL/unordered_map load_factor in C++ STL/unordered_map operator= in C++ STL
https://www.geeksforgeeks.org/unordered_map-operator-in-c-stl-2?ref=asr10
PHP
unordered_map operator= in C++ STL
unordered_multiset clear() function in C++ STL, What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, jQWidgets jqxTreeMap width Property, Round Robin Scheduling Algorithm with Different Arrival Time, Difference between Flow and TypeScript, set::begin() and set::end() in C++ STL, unordered_multiset emplace() function in C++ STL, jQWidgets jqxTree destroy() Method, unordered_set bucket_count() function in C++ STL, unordered_map load_factor in C++ STL, jQWidgets jqxTree collapseAll() Method, Find the order of execution of given N processes in Round Robin Scheduling, jQWidgets jqxScrollView buttonsOffset Property, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Vector push_back() in C++ STL, jQWidgets jqxListBox enableHover Property, Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm, std::rotate vs std::rotate_copy in C++ STL, Selfish Round Robin CPU Scheduling, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxSlider buttonsPosition Property, std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++, std::upper_bound and std::lower_bound for Vector in C++ STL, Difference between Round trip time (RTT) and Time to live (TTL), jQWidgets jqxSlider rtl Property, Difference between std::set::lower_bound and std::lower_bound in C++, jQWidgets jqxTooltip opacity Property, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, unordered_multiset erase() function in C++ STL, multiset find() function in C++ STL, set vs unordered_set in C++ STL, jQWidgets jqxToolBar height Property, PHP, std::minmax() and std::minmax_element() in C++ STL, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, unordered_set emplace() function in C++ STL, unordered_multimap empty() function in C++ STL, unordered_set bucket() function in C++ STL, map rbegin() function in C++ STL, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, map upper_bound() function in C++ STL, Node.js date-and-time Date.transform() Method, unordered_multiset size() in C++ STL, TypeScript Optional Parameters, jQWidgets jqxToolBar theme Property, Difference between std::set vs std::vector in C++ STL, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, Steps to Diagnose and Resolve a Slow Network, How to use Optional Chaining with Arrays and Functions in TypeScript ?, Calculate server loads using Round Robin Scheduling, unordered_map operator= in C++ STL, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, jQWidgets jqxScrollView showButtons Property, set::emplace() in C++ STL, Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms, jQWidgets jqxScrollView disabled Property, multimap::cbegin() and multimap::cend() in C++ STL, jQWidgets jqxSplitter destroy() Method, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, set::lower_bound() Function in C++ STL, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, jQWidgets jqxTree collapseItem() Method, multimap upper_bound() function in C++ STL, std::string::append vs std::string::push_back() vs Operator += in C++, unordered_multiset swap() function in C++ STL, unordered_multiset cend() function in C++ STL, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), Set upper_bound() in C++ STL, jQWidgets jqxSortable opacity Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, multiset cbegin() and cend() function in C++ STL, multimap rbegin in C++ STL, vector :: cbegin() and vector :: cend() in C++ STL, multimap swap() function in C++ STL, jQWidgets jqxSlider height Property, jQWidgets jqxSwitchButton onLabel Property, unordered_multiset bucket_size() function in C++ STL, unordered_set cbegin() function in C++ STL, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, jQWidgets jqxToolBar tools Property, multimap empty() function in C++ STL, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTree width Property, multimap::swap() in C++ STL, unordered_multimap bucket_size() function in C++ STL, multimap equal_range() in C++ STL, Implementation of lower_bound() and upper_bound() in List of Pairs in C++, jQWidgets jqxTree clear() Method, TLS Handshake?, multiset rbegin() and rend() function in C++ STL, unordered_multimap operator= in C++, Algorithm for Dynamic Time out timer Calculation, Adhoc TCP, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, jQWidgets jqxTabs position Property, Differences between Wireless Adhoc Network and Wireless Sensor Network, jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, unordered_multimap begin() and end() function in C++ STL, std::bitset::to_ullong and std::bitset::to_ulong in C++ STL, unordered_multiset emplace_hint() function in C++ STL, multimap::begin() and multimap::end() in C++ STL, unordered_multiset bucket_count() function in C++ STL, unordered_multiset find() function in C++STL, unordered_multimap bucket_count() function in C++ STL, unordered_multiset bucket() function in C++ STL, Impact of Three-way Handshake and Slow Start Algorithm, array::rbegin() and array::rend() in C++ STL, multimap value_comp() function in C++ STL, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, unordered_multimap load_factor() function in C++ STL, multiset::emplace() in C++ STL, unordered_set equal_range in C++ STL, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, unordered_multimap equal_range() function in C++ STL, unordered_set count() function in C++ STL, vector rbegin() and rend() Functions in C++ STL, array::cbegin() and array::cend() in C++ STL, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, unordered_multiset end() function in C++ STL, How to Sort an Array Having Optional Properties in TypeScript ?, unordered_multimap find() function in C++ STL
GeeksforGeeks
[-0.0516207702, 0.021528298, -0.0148629062, 0.0201795045, 0.0251032524, 0.000746828271, -0.0199961737, 0.0132391173, -0.0288353469, 0.0163950287, -0.0286520161, 0.0189747587, -0.00826299, -0.030013904, 0.0196557026, -0.0108689088, -0.00578147406, 0.0433446839, -0.058246877, 0.01466648, 0.0247104, -0.0172593035, -0.00957249664, -0.0235842224, -0.0179664381, 0.00169581175, -0.0113272369, -0.00760823628, 0.0132456645, -0.00607611286, -0.0137105398, 0.0191057082, 0.016748596, -0.00881953072, -0.00650497666, 0.0194068961, 0.00944154616, 0.0302234236, -0.0282067843, -0.019249754, 0.0158581305, -0.00645259628, 0.0271853674, 0.0148236202, -0.00824334752, 0.0210175887, 0.00809275359, -0.00967725739, -0.00571927242, 0.00849870127, 0.0401494876, -0.0117593743, 0.0102207027, -0.00804692134, 0.00264684134, 0.0181104839, -0.00788978, 0.0197211765, -0.0208997335, -0.0161462221, -0.0117724687, -0.0697705373, 0.0442351513, -0.0193938, -0.0272901282, -0.017468825, -0.0252865832, 0.0141295819, -0.00377465435, 0.00206574751, -0.0232044663, 0.0710276663, 0.00847251154, 0.0258234814, -0.0350947902, 0.00596480491, -0.00798799377, -0.0176128708, 5.06155193e-05, 0.0656848773, -0.0263210926, -0.0237806495, 0.000610148476, -0.0393899754, 0.00865584239, -0.0283377338, 0.00627908669, -0.0315329321, 0.0472993962, -0.0170235932, -0.0513326786, -0.0329471976, -0.00821061, -0.00248806365, -0.00250115851, 0.045282755, 0.0381066576, 0.019249754, -0.00741181, 0.0529564694, -0.00305769918, -0.00543445442, -0.0282067843, 0.0151640922, 0.00564070186, 0.0158712268, 0.0359852575, 0.000797162473, -0.00197244505, 0.0110195028, 0.0455184691, 0.00693384, -0.018595, 0.047063686, -0.0278139319, -0.0143391034, -0.00364697725, -0.0176259652, 0.0133831631, 0.00734633487, -0.0139331557, 0.0220390055, 0.00154358149, -0.0192235652, -0.0180450082, -0.011445092, -0.027132988, -0.0142605323, 0.00475351093, -0.0174033493, 0.00848560594, 0.0041118525, -0.02008784, -0.0123944851, -0.0408042409, 0.0256008636, 0.0230735149, 0.0165521707, -0.0111504532, -0.0218032934, -0.0489493757, 0.0113468794, -0.00279743457, 0.0126891239, 0.00090683368, -0.0221044794, -0.00236366037, 0.0284424946, 0.00133078662, -0.00892429147, -0.0412232839, -0.0103974864, 0.00818442, 0.0212925859, 0.0158057511, -0.0152819483, -0.00592552, 0.00383030833, 0.00414786395, -0.0147450501, 0.0309829377, -0.0397828259, 0.0398090184, 0.0328162499, -0.04934223, 0.0425066, 0.0294901, 0.00323775643, 0.00219997205, 0.0373733342, 0.0323710144, 0.0383947492, 0.0335495733, -0.0246056393, -0.00300040818, -0.0517779104, 0.0278401207, 0.00192661234, -0.00407584105, 0.0127938846, 0.0283639245, 0.00130541495, 0.0370066725, 0.0129117407, 0.0349114612, -0.00230473257, -0.00858381949, -0.0310615096, 0.0392328352, -0.0121915117, 0.000667439424, 0.0375566632, 0.0167355016, 0.0351995528, 0.0517779104, 0.0243044514, -0.00457018, -0.0201009344, -0.00510380417, 0.0487660468, 0.0292805787, -0.0116873514, -0.030773418, 0.00699931569, 0.0319257826, -0.0210961606, -0.00439667, -0.0300662834, 0.0299877133, -0.00249297428, -0.0147319548, 0.0247627795, 0.03493765, 0.00898976624, -0.00972963776, -0.00284654112, -0.0298567619, -0.00116300606, 0.0262556169, -0.0181759596, 0.00490083033, -0.0401233, 0.00349638402, -0.0155176595, -0.0213973466, -0.0519350544, 0.024671115, 0.0104826046, -0.00883262511, 0.00511035137, 0.0389709324, 0.0437899195, -0.029594861, 0.000241849601, -0.00452107331, -0.00566361845, -0.0448899046, -0.0204414055, 0.021371156, 0.00955285411, 0.00804037414, 0.0381328464, -0.00995225459, -0.000611376134, -0.00988677889, 0.04934223, 0.00371900015, -0.0113599747, -0.0140772015, -0.0290972479, 0.0237151738, -0.00999154, -0.00658354722, 0.00421333918, -0.0151248071, 0.0381328464, 0.0224973317, -0.0275782198, -0.0142736277, -0.0448637158, -0.0162116978, -0.00474368967, -0.0273425095, -0.0108034341, 0.00916655, -0.0231782757, 0.0133438772, -0.0229294691, -0.0361685865, -0.0288353469, 0.019668797, 0.00854453444, 0.0209652092, 0.0192759447, 0.0500755534, 0.0100504672, -0.0217116289, 0.0288877264, -0.0219604336, -0.0333924331, 0.035775736, -0.00706479093, -0.0168271661, -0.0172462091, 0.0188830923, -0.00254699145, -0.0335757621, -0.00312972208, -0.0231520869, -0.0302496143, -0.00529695628, -0.00420679152, 0.00916000269, 0.0240163598, -0.0025273487, 0.0269758459, 0.00318701286, -0.0506517366, -0.0250639655, 0.0100701097, 0.00398417562, -0.0107706962, -0.00319192372, -0.0357495435, -0.012315915, 0.00743145309, 0.0419828, -0.005627607, -0.00811894424, -0.0478493907, 0.0213973466, -0.0134028057, -0.0223663822, 0.0122569865, -0.00832846574, -0.00262883562, 0.0447589532, 0.0154521838, -0.0421137474, 0.00765406899, -0.0272901282, -0.00149120123, 0.00347674149, 0.0315591209, -0.000851179648, -0.0283639245, 0.000701813959, 0.0390756913, -0.0300662834, -0.0626992, -0.0155831352, 0.00843977369, -0.0306686573, 0.00518237427, 0.0161069371, -0.011445092, 0.00921893, 0.0288091563, -0.0123028196, -0.0389447436, 0.00551957265, -0.0174033493, -0.0016303364, 0.0301448535, 0.0173902549, 0.00495975837, 0.0120605603, -0.0212794915, 0.014587909, 0.0426899306, 0.000710816821, -0.0270544179, 0.0219473392, 0.0191711839, 0.0440780111, -0.022314, -0.0366662, 0.00286782067, 0.000178113434, 0.0333924331, -0.00981475599, 0.034099564, -0.000194073044, -0.0398090184, -0.0278139319, -0.0155569445, -0.0245270692, -0.00876060221, 0.0265699, -0.0392328352, 0.00400709175, -0.0338638537, 0.00858381949, 0.00328358915, -0.0218163878, 0.0096969, -0.00161151215, 0.0453875177, 0.00517582707, 0.0146141, -0.00123011821, 0.0248282552, -0.0223794766, 0.0038270345, -0.0236758888, 0.00202809926, 0.0126040056, 0.0313757919, 0.00438357517, 0.00804692134, 0.0163819343, 0.00926476251, -0.00515618408, -0.00325248833, -0.00212303852, 0.0142212473, -0.0370590501, -0.0132129267, -0.0178747717, -0.00438357517, 0.0169450231, -0.0551040582, -0.0451256149, 0.0216592476, 0.0169843081, -0.0159367025, -0.019930698, -0.0116284229, -9.70365218e-05, 0.00827608537, 0.00215905, 0.0363519192, -0.0146402894, 0.0205985475, 0.0213056803, -0.0209783036, -0.0538469329, 0.0487136655, 0.0156224202, -0.00919274, -0.0128528122, -0.0239377897, 0.017049782, 0.00122929981, 0.00995225459, 0.031873405, 0.00135452137, 0.0168795474, 0.00919928774, -0.020690212, 0.0316638835, 0.0188438073, 0.00764097413, 0.0466708355, -0.0184771456, -0.0354876444, 0.00719574187, -0.0125516262, -0.0217640083, -0.0175604913, 0.0298567619, 0.0321353041, 0.00119001465, -0.0189354736, 0.00659336848, 0.0225759037, -0.029175818, -0.00819096714, 0.00431155227, 0.0125254355, -0.0175212044, -0.0177045371, 0.0253782477, -0.00714990869, -0.000980493496, -0.0395994969, 0.00900940876, -0.00351275294, 0.0344138481, 0.00765406899, 0.0152557576, 0.0452041849, 0.0479541495, 0.000960850855, 0.00680288952, 0.013376615, 0.00508743525, 0.0075558559, -0.00671122409, -0.0530612282, -0.00426571956, -0.0250246804, -0.00635110959, 0.00560796447, -0.000166859856, 0.0254437234, -0.00361751346, 0.010685578, -0.0164605044, -0.0194068961, 0.0229163747, -0.01466648, -0.0199045092, 0.0118706822, 0.00210666959, -0.0570945106, 0.050625544, 0.0251687262, -0.0275520291, 0.0174557306, -0.00377792795, -0.0104629621, 0.00751657085, 0.00468476163, 0.00512999436, -0.00357495435, 0.00439012283, -0.0142343426, -0.0163819343, -0.00999808684, 0.014326008, 0.0172985885, -0.00569963, 0.00846596342, 0.0185164306, -0.0442089587, -0.00664902246, 0.0416947082, -0.0177831072, -0.00845941622, 0.0195509419, 0.0205985475, 0.0328686275, -0.00222779904, 0.00706479093, 0.00505797146, 0.0414066166, -0.0130557865, 0.00707788579, 0.0100308247, -0.0092975, -0.0177438222, -0.00882607792, 0.0431351662, -0.00901595689, 0.0125778159, -0.0186997615, -0.00723502692, -0.0010819803, -0.0102272509, -0.0194723718, 0.0145093389, -0.00753621338, 0.00786359049, -0.00170726993, -0.0187259521, -0.0131409038, 0.0154652791, -0.0260591917, 0.018189054, -0.00428208848, -0.00620706379, -0.0014003542, -0.0153212333, -0.00811894424, -0.0119296098, -0.00644277502, -0.0244484972, 0.00393834244, 0.0190402344, -0.0146141, 0.0112355715, 0.00201336714, 0.00312972208, 0.0214497261, 0.0152295679, -0.0205461662, -0.0220259093, -0.00430500461, -0.0276044104, 0.0265306141, -0.00522820698, 0.0401233, 0.0217640083, 0.00354876439, -0.00950702187, 0.0209521148, -0.0152557576, 0.00514308922, 0.00267794216, -0.0111177154, -0.0120932981, 0.0329995789, 0.0157795604, -0.0249461103, 0.0148760006, 0.0110718831, 0.0695086345, -0.013605779, 0.00545082334, -0.0193938, -0.0227199495, 0.0170759726, 0.0187259521, 0.0197735578, 9.48369634e-05, -0.0379757062, -0.022549713, 0.00927785784, 0.0193021353, -0.00255844952, 0.0195509419, -0.00610885071, -0.0219342448, 0.0141033921, 0.00630855048, -0.011294499, -0.00980166066, -0.00635438319, -0.00175146572, 0.0142998174, 0.00586004416, 0.0127938846, 0.00400054408, -0.0311138891, 0.0239639804, 0.0170104969, -0.0103254635, -0.0114647346, -0.0199176036, -0.0210306849, 0.00871477, 0.0281805936, -0.0190271381, 0.00393834244, -0.00909452699, -0.0163426492, 0.0668896213, -0.000153560177, -0.0391280726, 0.00750347599, -0.0218687691, -0.00644932268, 0.0174819194, 0.00199536141, 0.00499904342, -0.0436851569, 0.00999154, -0.00207720557, -0.0192235652, -0.0111831911, 0.00973618589, 0.0155438492, -0.0168271661, 0.0354876444, 0.0140902968, 0.00696003, 0.018647382, -0.0113075944, 0.00520529086, -0.0416161381, 0.0189616624, 0.0174295399, 0.034099564, -0.00306097302, -0.0114778299, -0.0209390186, 0.0168271661, -0.00136270584, -0.0294115301, -0.0457279906, 0.0126760285, 0.0120867509, 0.0107117686, 0.00325412513, -0.0373209529, -0.0255746748, 0.0203628354, -0.00491392566, 0.0118772294, -0.0193938, -0.022392571, -0.00242749881, -0.00116546138, -0.00153539714, -0.00913381204, -0.0347281285, -0.0192628503, -0.0159497969, 0.00995225459, -0.0544754975, -0.0171152577, 0.022811614, 0.0107379584, -0.00263374625, -0.0344138481, -0.0190271381, 0.0157140847, 0.00128822762, -0.0141950576, -0.00487464, 0.00782430544, 0.0116677089, -0.00250115851, 0.0298305731, 0.0014306365, 0.0166569315, 0.00898321904, 0.0144438632, -0.030616276, -0.0231258962, -0.041720897, 0.000666620967, 0.0279448815, 0.00226217345, 0.00927785784, 0.00286618364, 0.0120802028, 0.00592224579, -0.00245041517, 0.00704514841, -0.0330519602, -0.00864929426, -0.0323186368, 0.0251163468, 0.0490279458, 0.00232273829, -0.0257580057, -0.0542135946, 0.0125188883, 0.00584694929, -0.00515291048, -0.0244223084, 0.0321091153, -0.00919928774, -0.0208604485, 0.00610557711, -0.0191973746, 0.00549993, -0.0442613401, -0.0215675831, -0.00973618589, 0.0282853544, -0.0139724407, 0.0333400518, -0.0317162611, -0.0210437793, -0.0371638127, 0.00414786395, -0.00180057227, -0.0123028196, -0.00604664907, 0.0260068122, -0.0063773, 0.00184967881, -0.0118903248, 0.0183592904, -0.0230997056, -0.00654098811, -0.0397828259, 0.00540171703, 0.0205461662, -0.00611212431, 0.0191580895, 0.00463565532, 0.0141557716, 0.0298043825, -0.0028154403, -0.0336543322, 0.0320829228, 0.00902905129, 0.0301186647, 0.0139593463, -0.013605779, 0.0294377208, -0.00320174498, 0.00894393399, 0.00295457547, -0.00824334752, 0.00222943584, 0.0214235373, -0.00919928774, 0.00827608537, -0.00782430544, -0.0274996497, 0.0030167771, -0.0170628782, 0.0322138742, 0.00804037414, 0.0104433196, -0.0132129267, 0.00542463316, 0.0244223084, 0.0196033213, 0.0114254495, -0.0119427051, -0.016028367, -0.00619724253, 0.00576183153, 0.0204806905, -0.00521183852, 0.0316115022, 0.0254175328, 0.0130230486, 0.00414131628, 0.00156240573, 9.9543e-05, 0.0167355016, -0.0107837915, -0.0279186927, -0.000924020947, 0.0185426213, 0.0274472702, 0.00974928, 0.00261574052, -0.0395471156, 0.0151117118, -0.0395209268, -0.0127546, -0.0361423977, 0.00017279356, 0.0128528122, 0.0165783595, 0.0165914558, -0.0282853544, -0.0318210237, 0.039442353, 0.0497088917, 0.0248282552, 0.0266222805, -0.0325543471, 0.0321353041, -0.00587968715, -0.0113403313, 0.00851834379, 0.00754276104, -0.0210568737, -0.0266353749, -3.7392565e-05, -0.00203137286, 0.0385780782, -0.028154403, 0.0178223923, -0.00201664097, -0.0115367575, 0.0443399101, 0.0170235932, 0.00401363941, 0.00446541933, -0.0388137922, 0.0213973466, -0.0104498668, 0.000604010187, -0.00647223881, 0.00543118082, 0.0289924871, 0.0342043266, -0.0336281434, -0.010345106, 0.00130868866, 0.00779811479, -0.00728085963, -0.0234532729, -0.000208191166, 0.00295293867, 0.00472732075, 0.00843322556, 0.0193414204, 0.0224449523, 0.018909283, 0.0270020366, 0.0269234665, 0.00300695584, 0.00345382513, 0.00702550588, 0.00811894424, -0.0206378326, -0.0174557306, 0.0188961886, 0.0226937588, 0.022510428, 0.00960523449, 0.0102534406, 0.023950886, 0.0265175197, 0.0163164586, 0.0038957838, -0.0134355435, 0.01386768, -0.0102141555, 0.00414459, -0.00118264859, -0.0347543173, 0.028573446, -0.0113468794, -0.00946118869, 0.0292282, 0.00370263145, 0.00938916579, 0.00422316045, 0.015766466, 0.00776537741, 0.00145764509, -0.0658943951, 0.0184771456, 0.0194854662, 0.0305115152, -0.00852489099, -0.0192366596, -0.041118525, 0.0170759726, -0.0130099533, -0.0301448535, -0.0156355146, 0.02213067, -0.00125467149, 0.0168402623, -0.0129182879, 0.012656386, -0.0199961737, 0.00756895123, -0.0171152577, -0.0143914837, -0.0219604336, 0.0215937719, 0.0324233957, 0.0241604056, 0.0157533698, 0.0166962165, 0.0330257714, -0.0103385588, 0.00690110261, -0.0382114165, -0.041301854, 0.00902905129, 0.0125778159, -0.00134388171, -0.0101355854, -0.0101748705, -0.0107445056, -0.00231782766, 0.0236366037, -0.0218163878, 0.00680288952, -0.0126694813, -0.0139200604, -0.00664902246, 0.0245270692, -0.0169450231, -0.0064918818, -0.0173116848, 0.0124141276, 0.0151640922, 0.00245696283, -0.00846596342, -0.00511035137, -0.00256499718, -0.0185688119, -0.0607611313, -0.00320992945, -0.00637402572, -0.00605647033, 0.0171545427, 0.00157795614, -0.0496827, 0.0196557026, -0.0648991764, -0.00746419048, -0.0204545017, -0.00611539837, -0.0250508711, 0.0192235652, 0.021790199, -0.0345971771, -0.00823025219, -0.00358804944, -0.0201140288, 0.000397967407, -0.0256663393, 0.0185819063, 0.0251425374, -0.0202187896, 0.0247627795, 0.0177962016, -0.004471967, 0.00119247, 9.05913e-05, 0.00878024567, -0.0330519602, 0.0151640922, 0.0162378885, -0.0156617053, 0.0159105118, 0.0282329731, -0.0275782198, 0.0381066576, -0.0102861784, -0.0128200743, 0.012695672, 0.0299877133, 0.00955940224, -0.00542463316, 0.0218818635, -0.0202318858, 0.00733324, 0.0151771875, -0.0101355854, -0.0154783744, -0.00282035093, 0.0131081659, -0.0212663952, 0.00275651249, -0.00826299, -0.0232175607, 0.048923187, 0.0456494167, 0.0102141555, -0.0499969833, 0.0103385588, -0.030616276, 0.00328358915, -0.0136974445, -0.0295162909, 0.0161200333, 0.00630527688, -0.0132194748, 0.0117069939, 0.0258758608, -0.00535915792, -0.00297585502, 0.0150200464, -0.0225366168, 0.0130492384, -0.00657699956, 0.00938916579, 0.0427685045, -0.0117724687, -0.000667439424, 0.0323710144, 0.0279186927, -0.0312186498, -0.0255615786, -0.0146795744, -0.031035319, -0.00205592625, 0.0158319417, 0.0232568458, -0.00233092275, -0.00604010141, 0.0233092271, -0.0355138332, -0.00726121711, -0.012276629, 0.0199961737, -0.0017187281, -0.00921893, -0.00914036, -0.0218556747, 0.0132718543, 0.0014150861, 0.0123028196, -0.00684872223, -0.0268448964, -0.00143227342, 0.0162378885, -0.0281805936, 0.00682907971, -0.0169581175, -0.00183331, 0.0179140568, 0.00783085264, 0.0172200184, 0.0174950156, 0.00166962156, 0.0105611747, 0.0210568737, 0.0138153005, -0.00263374625, 0.0125647206, 0.0215544868, -0.00180220918, -0.0168140717, 0.0107117686, -0.0107903387, 0.00558832148, 0.0259151459, 0.0177831072, 0.0171545427, 0.0343090855, 0.010764149, 0.00572909368, -0.019249754, -0.0141164865, -0.0130688809, -0.0107903387, 0.000105579013, 0.0183985755, 0.0122897243, 0.00405947212, -0.0162640791, 0.001501841, -0.0141950576, -0.00458982261, 0.00259609777, 0.0130885234, -0.0302758049, 0.00509070884, -0.0196557026, -0.0101224901, -0.0123290094, -0.00515291048, 0.0168664511, 0.0385518894, -0.00195607636, 0.0178747717, -0.0077719246, 0.0194723718, 0.0473255888, -0.00661301101, 0.00549338246, 0.025312772, 0.0352257416, 0.00182512554, 0.0207164027, 0.0034636464, 0.0157009903, 0.0208342578, 0.000981311896, -0.0100766569, 0.0218949597, 0.0347543173, 0.00606956566, -0.00876715, 0.0408304334, -0.0156355146, 0.000100105681, -0.0125647206, -0.0203104559, 0.0335757621, 0.0020952113, 0.000507024815, 0.000274587277, -0.00754930871, 0.0210568737, 0.000149672574, -0.0059877215, 0.00718264654, 0.000800436246, -0.00433446839, 0.0125647206, -0.0110325972, 0.00701895822, 0.0365352482, 0.00113517896, 0.0183069091, -0.012617101, 0.0118575869, -0.00826299, 0.0283639245, -0.017927153, -0.0147843352, 0.0032459409, 0.00314118015, 0.0027303223, -0.0208342578, 0.0435280167, 0.0138938706, -0.00663265353, -0.0288091563, 0.0218818635, -0.0131605463, -0.00584694929, -0.00843322556, 0.00410530483, -0.0178354867, -0.0249984916, -0.0102337981, -0.000382621627, -0.0159890819, -0.00857072417, -0.00244877837, -0.000543854665, -0.00104924256, -0.00356840692, -0.0132980449, 0.00978201814, 0.00769335451, 0.00796835124, 0.00935642794, 0.0418518484, 0.0121980589, -0.0326329172, 0.00263210922, 0.0181235783, -0.035775736, -0.0237151738, -0.00283508282, 0.00639039464, 0.0328686275, -0.00751002319, 0.0259282403, -0.00370263145, 0.00384012959, 0.00984749384, 0.00722847925, -0.0238461252, 0.0144176735, -0.0420613699, 0.00794870779, 0.0176783465, 0.00927131064, -0.0204545017, 0.00449815718, 0.0192235652, 0.0158319417, -0.0276829805, -0.0145355295, -0.00157795614, -0.00208866387, 0.0263996627, 0.0436065868, -0.00105169788, -0.0244092122, -0.00943499897, -0.00818442, 0.0137367295, 0.023950886, 0.0112159289, 0.0210175887, 0.00338180223, 0.00435411138, -0.0107510537, -0.0189616624, 0.00512999436, -0.0369281024, -0.0216330569, -0.0261901431, 0.00857727136, -0.00644932268, -0.00773918722, -0.00386631978, 0.00621688506, -0.0389447436, 0.000950211135, -0.00398417562, -0.00792251807, 0.0102730831, -0.00369281019, -0.0117069939, 0.00281052967, -0.00423625577, 0.0113141416, -0.00191024353, -0.0108885514, 0.0347543173, -0.00618414721, -0.00351275294, 0.0104891518, 0.0235056523, -0.00732669234, -0.0156224202, -0.00864929426, -0.0268187057, 0.005627607, 0.0231128, 0.0412232839, 0.00652134558, 0.00225235219, -0.00732014468, -0.0255484842, -0.0237937439, -0.0130623337, 0.00943499897, -0.000951029535, -0.0194330849, 0.00136434275, -0.0677800924, 0.00214759167, 0.0337067135, 0.0385257, 0.0259282403, -0.0100373719, -0.000709589163, 0.00915345456, -0.0264913291, -0.0373209529, -0.0157795604, 0.00757549889, -0.019210469, 0.000559405074, 0.0110195028, 0.0164343137, -0.0208604485, 0.0114647346, -0.0108820042, -0.00680288952, 0.0247496851, -0.0251032524, 0.00868203212, 0.00623652758, 0.0197866522, -0.00762133161, -0.00208866387, -0.0202842653, -0.00921238307, -0.021410441, 0.0173902549, -0.00608266052, 7.50920517e-05, 0.0130623337, 0.0208342578, -0.00986058824, 0.016329553, -0.00114090811, -0.0181235783, -0.0101093948, 0.0229818504, 0.00925166812, 0.0225235224, 0.0123093668, -0.0322924443, 0.0179533418, -0.00680288952, 0.0224842373, 0.00729395449, 0.0243699271, 0.0294901, 0.0112814037, -0.0128331697, -0.00360114453, 0.0027417806, -0.0128200743, -0.00679634186, -0.0209783036, 0.00830882229, -0.00256827078, 0.0331305303, 0.0284424946, 0.00963797234, 0.0178485829, 0.0181104839, -0.00785049517, 0.0116218757, 0.0350424089, -0.011785564, -0.0294115301, -0.00819751434, -0.0260068122, -0.00508088758, -0.0132456645, 0.00278925, -0.0251032524, 0.0017612871, 0.0348852687, -0.0212402064, 0.0263865683, 0.00179566164, -0.00364370365, -0.0216199625, -0.0117135411, -0.00975582842, 0.00296439673, -0.000268448959, -0.00731359748, 0.000696494128, -0.00010414674, -0.0152557576, -0.0398090184, -0.00494338945, -0.0235449374, -0.00590260327, -0.00730705, 0.00313954335, 0.00701241056, -0.00484190276, -0.0292282, -0.0257711, -0.00897012372, -0.0134748286, -0.0215021074, 0.0236235093, -0.0225889981, -0.00680943718, -0.0253258683, -0.010534985, -0.0193414204, -0.0109867649, 0.00524785, -0.00497285323, 0.0124992458, -0.00900286157, 0.0175735857, 0.000739053066, 0.00392197398, 0.0179926287, -0.00716955168, -0.00861000922, -0.0043279212, 0.0323972069, -0.0171414483, -0.0108034341, -0.0116808033, -0.0309305582, -2.70085839e-05, 0.00144782383, 0.0169712119, -0.0164212193, -0.00200190907, -0.0179402474, 0.0239116009, 0.00462256, 0.00785704236, 0.0161331277, -0.018909283, -0.0142474379, -0.00511035137, -0.0180450082, -0.00931059569, 0.00187423208, 0.0263079982, 0.000236529726, 0.0179795325, -0.00329013658, 0.0113010462, 0.00629218156, 0.0215806775, -0.0148367155, -0.0420613699, 0.00268121576, -0.031637691, 0.0192366596, 0.0246318299, -0.0016598003, -0.00134879234, -0.0204021204, -0.00469458289, 0.017809296, -0.00772609189, -0.00508743525, 0.0308781788, 0.0110915257, 0.0125778159, -0.00176456082, -0.0204806905, 0.0239377897, -0.00439012283, 0.0413804241, 0.0188438073, 0.00745764328, 0.0132784024, -0.00310844253, 0.023269942, 0.00914690737, -0.0185426213, 0.0212925859, 0.0210961606, -0.00569308223, -0.00176292402, -0.00113354216, -0.0162378885, -0.00406274572, 0.0156486109, 0.00504814973, -0.01004392, 0.0259151459, -0.00785704236, 0.0241080262, -0.0250246804, 0.00356513308, 0.00257154461, -0.0370328613, 0.00289892149, -0.0151379025, 0.000910925912, 0.0213842522, -0.000112331159, -0.0193152297, 0.00891119614, -0.0188438073, 0.0233877972, -0.00189060089, -0.0121391313, -0.0174164455, -0.00394489, -0.00731359748, -0.0139724407, 0.0128135271, -0.00154112617, 0.0143129127, -0.00410530483, 0.00149038283, 0.0349638388, 0.000493520522, 7.79054462e-05, -0.0246449243, -0.0332614817, -0.0246318299, -0.00773918722, 0.0110587878, -0.00966416299, -0.00758859375, -0.0142343426, 0.0238199346, 0.0107706962, 0.00881298259, 0.0106135551, 0.0151509978, 0.0389709324, 0.0167747866, 0.0310091283, 0.0231258962, 0.0166045502, -0.00915345456, -0.00845941622, -0.00941535644, 0.0165259801, -0.0141950576, 0.0026550258, 0.0251556318, 0.0116415182, 0.00754276104, 0.0119819902, -0.00517255301, 0.0270282272, -0.0281282123, 0.00446869293, 0.00327376788, -0.0102076083, 0.0310615096, -0.0215021074, -0.0115825906, 0.0112093808, 0.0144569585, -0.0076999017, 0.00487464, 0.00331632677, -0.00632819301, 0.0150724268, -0.0297258124, -0.0519612432, 0.00246514706, 0.0309305582, -0.0154390894, -0.0172985885, 0.0117397318, 0.00305115152, -0.00522820698, -0.00604337547, -0.0127742421, 8.3481078e-05, -0.00819751434, 0.0113796173, 0.016486695, 0.00730050215, -0.00739216758, 0.0346495584, 0.00523802871, -0.00174819201, -0.0229294691, 0.0011842855, -0.00826299, -0.0127218617, -0.0129117407, 0.0078374, 0.0133635206, 0.0250901561, 0.00887845829, 0.00273359613, -0.0205199774, 0.00416423287, 0.013566494, -0.0194592755, -0.00923857279, -0.0150724268, 0.017206924, 0.00583712803, 0.00335233822, 0.0305115152, -0.0076278788, 0.0266484693, -0.00916000269, 0.0141033921, -0.00155422126, -0.000528304256, 0.00139380665, -0.0153736137, -0.00866239, 0.000581093773, -0.00022936835, -0.0165783595, -0.023872314, 0.0284163039, 0.0232830364, 0.0243306421, 0.00369608379, -0.00579129532, -0.0174426343, 0.00401363941, 0.0215152018, -0.0104105817, 0.0382899866, -0.00678979466, 0.0049041044, -0.0305377059, -0.00553921517, 0.0102730831, 0.00289237383, -0.00116627978, -0.00534278899, -0.00904869381, 0.018189054, -0.00489428267, 0.00861655641, -0.0147450501, 0.0121522257, 0.00700586289, 0.0170104969, -0.00625289651, 0.0126301963, 0.00119492528, 0.0219604336, 0.017927153, 0.000173918917, -0.00844632089, -0.00371900015, -0.00910762232, 0.00740526291, -0.00452434691, 0.00979511347, 0.0186866671, -0.0107445056, 0.0113992598, 0.0043999441, -0.00456363242, -0.0165128857, -0.0411709026, -0.0138414903, 0.0123813897, 0.00306424662, 0.0196033213, 0.00774573442, 0.000670713198, 0.022549713, 0.00437702751, -0.0125778159, 0.011936157, -0.0168140717, -0.00740526291, 0.00864274707, -0.00679634186, -0.00343745621, -0.0170235932, 0.0104498668, -0.0049041044, -0.00463238126, -0.00580439, 0.00261574052, 0.011896872, 0.0113730691, -0.00720228907, 0.0408042409, 0.00226217345, -0.0127611468, -0.00565707078, 0.0158843212, 0.000538534776, -0.00671777176, -0.00694693532, -0.0114319976, -0.0148236202, -0.00760823628, -0.0172985885, 0.00538862171, -0.00228672684, 0.0226282831, 0.00589932967, 0.0119296098, 0.0125385309, 0.0167355016, -0.0235973187, 0.00155094755, 0.000105067484, 0.0255484842, -0.00189714844, 0.0195247512, 0.00897667091, -0.00328358915, -0.000863456284, -0.00183167309, 0.00500231702, -0.00636420446, 0.0140248211, 0.000157652379, 0.0275520291, -0.0269496571, 0.0119099673, 0.0140902968, 0.0179140568, -0.000247987919, 0.00887191109, -0.0104957, -0.0198128428, -0.0127480514, 0.0130950715, -0.0106070079, -0.0181497689, -0.00116791669, 0.00959868729, 0.0111504532, 0.014627195, 0.0014003542, -0.0309305582, -0.00962487701, -0.00466839271, -0.0228247084, 0.000317350874, -0.00247333152, -0.000420269935, 0.00918619242, 0.0243568327, 0.0118117547, -0.00555231, -0.0168533567, -0.0177438222, 0.000827035576, -0.0259413365, -0.00930404849, 0.0116873514, -0.0133176874, 0.0145748146, 0.00569963, -0.000974764349, 0.0171021633, -0.00868857931, 0.00269758468, -0.0120409178, -0.0220128149, -0.0191973746, -0.0111242626, 0.00482553383, -0.012505793, -0.00556540536, 0.0142343426, 0.0124926977, -0.00313299568, -0.0134093529, 3.04869627e-05, -0.0174426343, -0.013946251, -0.0201925989, 0.00821715686, -0.0113010462, 0.0193021353, 0.0111504532, -0.00567671331, -0.0100897523, -0.0166045502, -0.00671777176, -0.0158319417, -0.0326853, -0.00384012959, -0.0186342858, -0.000104862876, 0.0202973597, -0.0196557026, -0.00166389253, 0.035959065, -0.00446869293, 0.00347346766, 0.0222485252, 0.00236202357, -0.00223270967, -0.00666211732, 0.0171545427, -0.000642886152, -0.0169319268, 0.010423677, -0.0049041044, 0.000120106357, -0.0115825906, -0.0120278234, 0.000871640688, -0.0188569017, 0.0133700678, 0.0077719246, 0.00376483309, 0.0142998174, 0.00779156759, 0.00103451067, -0.0231128, 0.00788323302, -0.00942845084, 0.00320010795, 0.00712371897, 0.00811239704, 0.0194199905, -0.0230080411, -0.00460291747, 0.00955940224, 0.00646569161, 0.0139724407, 0.00482880743, 0.00176619773, -0.0155176595, -0.011595686, -0.0256532449, -0.00348656275, -0.0192759447, 0.00906833727, -0.0050514238, -0.00361423963, -0.0187259521, -0.0249330159, 0.00299713435, 0.0184247661, 0.00292838528, -0.0200092681, 0.00462910766, -0.0023833029, 0.00289892149, 0.00963797234, -0.0183331, 0.00520856446, 0.0334186219, 0.00257972907, -0.0218032934, -0.00310680573, 0.000974764349, -0.0106593883, 0.0105677228, -0.00726121711, -0.00686836476, -0.0227068532, -0.0156617053, -0.014967666, 0.020690212, 0.0131736416, 0.0312186498, -0.0151771875, -0.00303969346, -0.0100897523, -0.0109081939, 0.0149807613, -0.0227461383, -0.0106201032, 0.0141426772, -0.00465529785, -0.0037550116, -0.00811239704, 0.0205461662, 0.00552612, -1.52179055e-05, -0.00392524758, 0.0172985885, 0.0171152577, -0.00615468342, -0.01057427, 0.0169319268, -0.0164735988, -0.00602373295, -0.0021672342, -0.00052584894, -0.00570290349, -0.00169417483, -0.0202187896, 0.0194068961, 0.0194461811, 0.0049794009, 0.00421006558, -0.0164212193, -0.0177831072, 0.00773918722, 0.0119099673, -0.00871477, 0.0118575869, 0.0131343566, 0.00535588432, -0.0214366317, -0.0125319827, -0.0154128987, -0.0183723848, 0.012165321, 0.00892429147, -0.00927785784, 0.0123224622, -0.00453416863, -0.0358019248, 0.0155045642, 0.0170104969, 0.0288615376, -0.00176619773, -0.0180842932, 0.00351930037, -0.0184116699, -0.0342305154, 0.0210044943, 0.0116218757, -0.00601063762, -0.00356840692, -0.0165128857, 0.0103909392, -0.0013275129, -0.0139986314, 0.025391344, 0.00997844432, 0.00958559196, 0.0183461942, 0.0234270822, 0.00984749384, 0.0263603777, 0.0127938846, -0.00306260982, -0.00770644937, 0.00785049517, 0.00861000922, -0.0119688949, -0.00623652758, -0.000482880743, -0.0130295958, -0.00490083033, -0.0152557576, 0.0307996068, 0.0164343137, 0.00510053, 0.00873441249, 0.0193414204, 0.0170890689, 0.00211976469, -0.00194625498, 0.00732014468, 0.0126629341, 0.00898976624, -0.00142490747, -0.0129837636, -0.00883262511, 0.0127480514, -0.018228339, -0.0442875326, -0.00210012216, 0.00244877837, 0.014967666, 0.00963797234, -0.00136352424, -0.0116808033, 0.00367644127, -0.00500559108, 0.00839394052, -0.0116677089, -0.0208735429, 0.00148792751, -0.0150724268, -0.00625944417, -0.00749038067, 0.0123224622, -0.0174164455, -0.0163426492, -0.0156224202, -0.00158368517, -0.00762133161, -0.00226381049, -0.0154128987, 0.00920583494, -0.000377506338, -0.000446460093, -0.000219956273, -0.00918619242, -0.0236627944, 0.0136843491, -0.00357822818, -0.00906833727, 0.00468476163, 0.0373471417, 0.00519874319, -0.00215741294, 0.0103516541, -0.00211321702, -0.0151771875, -0.000311417156, -0.00870822277, -0.00458982261, 0.0283115432, -0.00659664208, -0.0155307548, 0.0172724, 0.0135795893, -0.0140772015, -0.0256532449, -0.0110129546, -0.00660318974, -0.00303969346, 0.0151640922, 0.00376483309, 0.00995880179, 0.00628236029, 0.0114319976, -0.00120638346, -0.0238854103, 0.000635110948, -0.00111471792, 0.0157533698, -0.013566494, 0.00733324, 0.0195378456, 0.00919928774, 0.0147188604, 0.00812549144, 0.00373209524, -0.00384667725, 0.0255092, 0.0242389776, -0.00393506885, 0.0170235932, 0.00980820879, -0.0112879518, 0.0202711709, -0.00331141613, 0.00677669933, 0.00598117383, -0.016748596, -0.00178747717, 0.0173116848, -0.0107314112, 0.00928440597, 0.00735943, -0.000543036207, 0.0218949597, 0.00696657784, -0.0181235783, 0.0395471156, -0.0112748565, 0.00626599137, 0.00312972208, -0.00936952326, 0.010194513, 0.00877369754, 0.00207229494, 0.00974273309, 0.00386304595, 0.0321353041, 0.0252865832, -0.0144045781, 0.0255484842, -0.00909452699, -0.0229687542, 0.0420875587, 0.0107903387, -0.00735288253, -0.0107706962, 0.0171152577, -0.0185033362, -0.00939571392, -0.000600327156, -0.00140526483, 0.022811614, 0.00870822277, 0.0265306141, -0.00956594944, -0.00514636282, 0.00957904477, 0.00345382513, 0.00963797234, -0.00574873621, -0.00206083688, 0.00347674149, -0.000946937362, -0.00425262423, -0.0051954696, 0.0113861645, 0.00106397457, 0.0151117118, 0.0111308107, 0.00219506142, -0.0224056672, 0.0161593184, -0.00879988819, -0.00194134435, -0.0121849636, 0.010875457, 0.00498594856, 0.00718919421, 0.0131670944, 0.0241211206, 0.00684217457, 0.0154259941, 0.0125974584, 0.022811614, -0.00549993, -0.0281282123, -0.00912726484, -0.0156486109, -0.00494993711, -0.0110915257, 0.0117135411, 0.00996534899, 0.00661301101, -0.011634971, -0.0114516402, -0.0164212193, -0.000276224164, -0.0096969, -0.00739216758, 0.00959214, -0.0118510397, 0.00678324699, -0.0184640512, -0.0145093389, -0.00656717829, -0.0140641062, -0.00839394052, 0.0136712547, 0.00947428402, -0.00531332521, -0.00243568327, -0.00412822142, 0.000855271821, 0.00844632089, -0.000468558021, 0.000268653559, 0.00934333354, -0.000455053727, 0.00130377803, 0.00754930871, 0.0221044794, 0.00732014468, -0.0295424815, -0.0120212752, -0.0177176315, -0.00215741294, 0.00633474067, -0.00333433249, 0.0224187616, -0.0210175887, -0.00770644937, 0.00728740729, 0.00878024567, 0.00131932844, -0.00063429249, 0.0103320116, 0.00546719227, 0.0108950995, 0.0116284229, 0.013226022, 0.0192628503, -2.413125e-05, -0.0105022471, 0.00203792052, 0.00908798, 0.0262294281, 0.00226708432, -0.0393899754, 0.0111962855, -0.00241604075, 0.00794870779, 0.0110522397, -0.0310615096, 0.0114778299, 0.0154914688, 0.0165914558, -0.00697967317, -0.0300662834, 0.00588950841, -0.000874096, 0.0265829954, 0.0131016187, -0.0248937309, -0.00805346854, -0.0139331557, -0.0238985047, 0.00776537741, 8.08211407e-05, 0.0047633322, 0.00181039365, 0.0173902549, 0.0244746879, 0.0179533418, 0.00598444743, -0.0127873374, 0.00878024567, -0.0391018838, -0.00607938692, 0.0376876146, 0.0205854513, -0.0111046201, 0.0147581454, 0.0193414204, -0.0123813897, -0.0234270822, 0.00926476251, 0.0197997484, -0.00231128, 0.0212402064, -0.0188438073, 0.0102796312, -0.0248282552, 0.00435083732, -0.0162116978, 0.0105284369, -0.00339817093, -0.00727431197, 0.0107576009, -0.00568326097, -0.00295130163, -0.014967666, 0.00934333354, -0.00636747852, 0.013036143, -0.0168533567, 0.00242422498, -0.0019364336, -0.0193807054, -0.0375304744, 0.0199568886, 0.00444905041, 0.00965106767, 0.0222092401, -0.00767371152, -0.0234008916, 0.00716955168, -0.00172200182, 0.0342828967, 0.0456494167, -0.00476660579, -0.0221961457, -0.0148890959, 0.0316115022, -0.0108492663, 0.00341453985, -0.0134486379, 0.0107183158, 0.0204414055, 0.0133242346, -0.00584694929, 0.023872314, 0.00343418238, -0.0205068812, -0.0148890959, 0.00396125903, 0.0147581454, -0.00739871524, 0.00558832148, -0.0253389627, 0.02008784, -0.0152557576, 0.0222354308, 0.00991296861, 0.00298895012, 0.00024757869, -0.015006952, 0.00587968715, 0.0254699141, 0.0127807893, 0.00300040818, -0.0180973876, -0.00415768521, -0.0264782347, -0.020349741, 0.00176619773, -0.0240556467, 0.00577492639, -0.00712371897, 0.0165128857, 0.00393506885, 0.00590915093, -0.0144307688, 0.00730050215, 0.0213842522, -0.00271395361, -0.00637075212, 0.0226413775, -0.0378447548, -0.023990171, -0.00359132327, 0.0158319417, -0.0346757472, -0.00106888521, 0.0146926697, -0.0146926697, -0.0159759875, 0.0565707088, 0.0102861784, -0.000610966934, 0.00898321904, 0.026150858, -0.0117069939, 0.00830227509, -0.0181235783, -1.50005062e-05, -0.00488446141, 0.018608097, 0.00310680573, -0.0285472553, 0.0113534266, 0.00333596929, 0.00582730677, 0.00920583494, 0.00121620472, 0.0145617193, 0.00898321904, 0.0176390614, -0.0131147141, -0.0120081799, 0.0106070079, 0.0184509549, -0.00605319673, -0.00547701353, 0.00453089457, 0.00232110149, 0.0125843631, -0.00826953724, 0.0155307548, 0.0122307967, -0.00484517636, 0.00293493294, -0.000467330363, -0.00203955732, 0.0280234516, -0.0229818504, -0.0200616494, -0.0135795893, -0.000941208273, 0.00619069487, -0.0140772015, 0.0271853674, 0.00340799219, 0.0118313972, 0.0215544868, 0.0146402894, 0.0167747866, 0.029594861, -0.000584776746, 0.0208997335, -0.0141295819, -0.0195247512, 0.0181104839, 0.0170628782, 0.0186211914, 0.0115891378, -0.00826299, -0.0183723848, -0.000878188235, 0.0118903248, -0.00102305249, 0.0151509978, -0.00639039464, -0.0154259941, 0.00593534112, 0.0184378605, -0.0164997894, -0.00569963, 0.0226020925, 0.00206083688, -0.00199863524, 0.00961178262, 0.00678324699, 0.0121784164, 0.018595, 0.00902905129, 0.0168795474, -0.00262883562, 0.00472732075, 0.022850899, -0.00521838572, 0.00627908669, 0.0249853954, 0.0191318989, 0.0104891518, -0.0219604336, -0.0309043676, 0.0267401356, 0.00321647688, -0.00440976536, 0.0137629202, 0.000480834657, -0.00763442647, 0.00485172402, 0.00578474766, 0.00472077308, -0.0147319548, -0.0160545576, 0.00657699956, -0.00097885658, 0.0051234467, -0.00305606215, -0.0259151459, 0.000535261061, 0.0233223215, -0.00766716432, 0.00377465435, 0.00319519732, -0.00644277502, 0.00870167464, -0.000992770074, 0.00163852074, 0.00384012959, -0.0049041044, 8.08211407e-05, -0.00616777875, -0.0150593324, -0.00260755606, -0.0123879369, -0.0201009344, -0.00301186647, 0.00921238307, -0.0243568327, 0.0223794766, 0.00621033739, -0.0209783036, -0.0103254635, -0.00201664097, 0.0021639606, -0.014326008, 0.034335278, -0.0321614966, 0.00501541235, 0.0127873374, -0.0307472274, -0.00957904477, -0.0166307408, 0.00768680684, -0.0176521558, -0.0247627795, -0.018948568, 0.00224907859, 0.0210044943, 0.0215021074, 0.0108099813, 0.00674396148, 0.0107968859, 0.00716955168, 0.00227199495, -0.00107297744, -0.0131409038, 0.00278270268, -0.0110064074, 0.0154652791, -0.00124157639, -0.00247987919, -3.53464602e-05, 0.00624307524, 0.00759514142, 0.0327114873, -0.00340471859, 0.0163557436, -0.00694693532, 0.00980166066, -0.0148629062, -0.0121587738, -0.0297781918, 0.0168533567, -0.0256139599, 0.00696657784, 0.0118379444, 0.018595, -0.0139724407, -0.00749692833, 0.0288615376, 0.0102141555, -0.00163361011, -7.70358456e-05, 0.0184247661, -0.00434756372, -0.0304853264, -0.0197997484, 0.00953976, -0.0257187206, -0.00159923558, 0.0224187616, -0.0125319827, -0.0132587599, 0.00380411814, -0.0115564, -0.0126367435, 0.0191580895, 0.00273687, -0.00948083121, -0.000614649907, -0.00286454684, 0.0162378885, -0.00282526156, 0.0123421047, 0.0031051687, -0.0234663673, -0.00446214573, 0.0036829887, -0.0120605603, 0.0399923474, 0.00637075212, 0.0126040056, -0.0143521978, 0.0142474379, -0.0161724128, -0.00485827122, -0.0127022192, -0.0124992458, 0.00703860074, -0.0149152866, 0.0036797151, 0.00796180312, -0.0122177014, -0.0121129407, -0.000734960893, 0.00547046587, 0.0114319976, 0.00881298259, 0.0144700538, -0.0105480803, 0.0165521707, 0.00871477, -0.0631706268, -0.0180973876, 0.0191973746, 0.00286945747, -0.03493765, -0.0147057651, 0.00204446795, -0.0222223364, 0.0124141276, 0.0178354867, -0.00601063762, 0.00670467643, 0.00440649129, 0.00208211644, 0.0134617332, -0.0325281583, 0.0267401356, -0.00925821532, -0.0208342578, 0.0152426632, 0.00241440372, 0.0124206748, 0.0187128559, -0.00595825724, 0.00745109562, -0.0201402195, 0.00940880831, 0.000923202548, 0.00937607139, -0.00351275294, -0.00523148105, 0.0198914129, -0.0010107758, 0.00740526291, 0.00436720625, -0.0280496422, -0.00242913561, -0.0357233547, 0.013036143, -0.0169188324, -0.00491065159, -0.0195116568, -0.0149021912, 0.00798799377, 0.022811614, 0.0137367295, -0.00112044706, -0.00735288253, -0.0158974156, -0.00771299703, -0.0110391453, -0.0114778299, -0.033078149, -0.012315915, -0.0173378736, 0.00857727136, 0.00380084454, 0.0020919377, 0.00508416118, 0.0408566222, -0.00791597087, -0.0170759726, 0.019629512, 0.00336870714, 0.00423952937, 0.041720897, -0.00633801427, 0.0260460973, 0.00978856534, -0.000838903, -0.00471095182, -0.00447851419, -0.0180581026, 0.00329341041, 0.000257195381, 0.00184476818, -0.0174557306, 0.000552448328, 0.00879988819, 0.00535588432, 0.0194068961, -0.00549993, -0.0164343137, 0.0127218617, 0.00910107419, -0.00642640609, -0.010194513, -0.00798799377, 0.00219178759, -0.0191449933, -0.0043999441, 0.0149414763, -0.0119950855, 0.00345382513, 0.00984094571, 0.0105677228, -0.0151902828, -0.00291201635, 0.00639694231, 0.0178485829, -0.00363715598, -0.00351930037, 0.00230473257, 0.0185033362, 0.0169319268, -0.0117331836, -0.0213318709, -0.00593861472, 0.0053395154, -0.0106659355, 0.0244223084, 0.0207294971, -0.00740526291, -0.00108525401, -0.00522493338, 0.0146010043, 0.00852489099, 0.00344073, -0.00916000269, 0.0128135271, 0.0302496143, -0.0139331557, -0.00493684178, 0.0139593463, -0.00885881577, 0.00506124506, -0.00852489099, -0.00442613428, -0.0167616904, 0.00143554714, 0.00565707078, -0.000783248921, 0.0151379025, -0.0158843212, -0.00713026617, -0.0268972758, -0.0151509978, -0.0105480803, -0.00854453444, 0.021672342, 0.00374519033, -0.0298305731, 0.00872131716, -0.000939571357, -0.0221568607, -0.00312808505, -0.0155438492, 0.0110915257, 0.0414328054, 0.00694038766, -0.0282853544, 0.00138889602, 0.013186737, -0.00802727882, 0.0123944851, -0.0370066725, 0.0202318858, -0.0281805936, -0.020048555, -0.0229949448, 0.00967725739, -0.0180581026, -0.0124272229, 0.00219342439, -0.0195116568, 0.0227068532, 0.0191842802, -0.0260591917, 0.00393506885, -0.012315915, 0.00834810827, 0.0256794356, 0.0186735708, -0.00542135956, 0.00672431896, -0.0076278788, -0.017887868, -0.0121980589, 0.0136843491, 0.0112748565, 0.0174295399, -0.00868857931, -0.0203235503, 0.00235056528, 0.0337329023, 0.00299222372, 0.00137007178, 0.00119983591, -0.00730050215, -0.0118641341, 0.0200616494, -0.0031771916, 0.00236529717, 0.00430173101, -0.00329341041, -0.00654753577, 0.0120867509, 0.0119230626, -0.00976892281, 0.00621033739, -0.0222747158, -0.0284948759, 0.0107445056, 0.00724157458, 0.0169712119, -0.0321353041, -0.0100373719, 0.0123879369, 0.00601063762, -0.0101028476, 0.0036076922, 0.000933842268, -0.00276633375, 0.0217640083, -0.0163688399, 0.0102927256, 0.0141426772, 0.0116938986, 0.00943499897, -0.00249461108, 0.00942845084, -0.00656063063, 0.0281805936, -0.000274382677, 0.00673086662, 0.0209521148, 0.005627607, -0.00568326097, -0.0281282123, -8.29184e-05, -0.019629512, -0.0270020366, 0.0268972758, -0.00803382602, -0.0179795325, -0.00824334752, -0.0169974025, 0.00961178262, 0.00103778439, 0.017167639, 0.0146010043, 0.0300400928, 0.000750920502, -0.00131769152, 0.0158188455, -0.0112814037, 0.00684872223, 0.00400709175, 0.0151902828, 0.000619560538, -0.0109867649, 0.00609902944, -0.0180581026, 0.0166438352, 0.00378447562, -0.0108165285, -0.0242127869, 0.00386304595, 0.0207294971, 0.0119099673, 0.0131147141, 0.00675050914, -0.0200616494, -0.0379757062, 0.00467166677, -0.0131278085, -0.00868857931, -0.0100111822, -0.00757549889, -0.00203792052, -0.00377465435, -0.0132653071, -0.0228770897, -0.00957904477, 0.0209783036, -0.0144962436, -0.0120736556, -0.00125549, 0.00999154, -0.00507434, -0.012014728, -8.6499087e-05, -0.0191711839, 0.0263865683, -0.0311138891, 0.00933678541, 0.0138545856, -0.00624307524, 0.0133700678, -0.000581912231, 0.00349311018, -0.0078374, -0.0129051926, 0.00838739332, -0.00034538249, -0.00438030111, -0.00126285595, 0.0309829377, 0.00378774945, -0.0412756652, 0.0239770748, 0.0131278085, 0.0208866391, -0.00588950841, -0.0232830364, -0.00651807152, -0.00708443346, 0.00560141681, -0.0137236351, 0.0117528262, -0.0234401766, 0.00664247479, -0.0103254635, -0.00498922216, 0.0172854941, 0.000234483625, -0.0208735429, 0.00283017219, -0.00764752179, -0.00569308223, -0.00375828543, 0.015046237, 0.0149021912, 0.00473059434, 0.00976237562, 0.014208152, -0.0241604056, -0.00945464149, 0.00565707078, 0.00503178127, -0.00434101606, 0.00585022289, 0.030773418, 0.00492374692, -0.0202580746, 0.00284326728, 0.00309534743, -0.016787881, 0.00815168209, 0.0173509698, -0.0309567489, -0.0103712967, -0.0146926697, -0.0159105118, -0.00760168908, 0.00539844297, 0.00321975071, 0.0244092122, 0.0319519751, -0.00471422542, -0.0193414204, -0.000971490575, 0.0136319688, 0.01004392, 0.0126629341, -0.016486695, -0.000476742425, 0.00919928774, -0.00989987422, 0.00934333354, 0.0263079982, -0.033497192, -0.00910762232, 0.0115760434, 0.0129510257, -0.0243568327, 0.0249199197, 0.00454071583, -0.00639366871, 0.0190140437, -0.0115629481, 0.00645914394, -0.0137760146, 0.00228181621, 0.0145224342, 0.0249592066, -0.00512672029, 0.0146533847, 0.00516273174, 0.0126825767, 0.0328162499, -0.00450470438, -0.0146795744, -0.0453613251, -0.00609248178, 0.011445092, -0.00838084519, 0.0195771307, -0.00887191109, -0.0104629621, -0.0376876146, 0.00296276, -0.0154259941, 0.0106593883, -0.0133045921, -0.00937607139, -0.00663920119, 0.0148498109, -0.0147974305, 0.0140902968, 0.00573564135, -0.00485827122, 0.00972963776, -0.000817623513, 0.00378774945, 0.0238461252, -0.0149938567, -0.0158057511, -0.0155831352, -0.0244092122, 0.00628563436, 0.00478624832, 0.0272377487, 0.00886536296, 0.0184640512, -0.00540171703, 0.0190664232, 0.0212271102, -0.00689455494, -0.00343090878, -0.010194513, 0.0266877543, -0.00220160885, -0.00480261724, -0.0247627795, -0.0185033362, -0.0222092401, 0.01386768, -0.0112290233, 0.017049782, 0.00811894424, -0.00854453444, 0.0167616904, -0.0258103851, 0.0168271661, -0.00411839969, -0.00885226857, -0.0180973876, -0.00365352491, -0.01644741, 0.0206247363, -0.0193545148, -0.00118837773, 0.0226151887, -0.0145355295, -0.0237282682, -0.0038106658, 0.0101617752, -0.0140510118, -0.0213187765, -0.0135795893, 0.00874750782, -0.00570945116, 0.000431728142, 0.00711062364, -0.0119427051, 0.000877369777, 0.0121980589, 0.023230657, -0.0237413645, -0.0129641201, -0.0134093529, 0.0174819194, 0.0141426772, -0.0190140437, 0.0111700958, 0.000682989834, -0.0171807334, -0.0121325832, -0.0182021484, -0.00130295963, 0.0175473951, -0.0109998602, 0.0143521978, -0.00898321904, -0.00406602, -0.00960523449, -0.020389026, 0.00438030111, 0.00397762796, 0.00951356906, -0.00106642989, 0.00321484, 0.0021508655, -0.00945464149, 0.0176259652, 0.00531659881, -0.0216330569, -0.0154914688, 0.00371245272, -0.0143914837, -0.00923202559, -3.82365834e-05, -0.0157926567, -0.0136843491, -0.00815822929, -0.00274996506, -0.017468825, 0.000217296343, 0.0212663952, -0.0206640232, 0.0193021353, -0.0182414334, 0.0207294971, 0.0113534266, 0.00163770234, 0.00382048707, 0.00535261026, -9.13074327e-05, -0.0208211634, 0.0260068122, -0.00401036534, 0.0332352892, -0.0111046201, -0.014587909, -0.0196033213, 0.00634128833, 0.0243830234, -0.0036797151, -0.00607283926, 0.0112028336, 0.0133635206, 0.00244550453, 0.0187128559, 0.00510053, 0.0257056244, -0.00131605461, 0.0141557716, -0.000619560538, 0.0137891099, -0.0124599598, 0.0206771176, 0.0107510537, 0.0162640791, -0.00276797079, -0.00595825724, 0.0248282552, 0.0104891518, 0.0106790308, 0.00282198796, 0.00711717131, 0.022091385, 0.00457018, 0.00692729279, 0.00946118869, 0.00316900713, 0.00296439673, 0.00557195302, 0.0123355575, -0.00135943212, -0.0219473392, 0.0120409178, -0.0428208821, -0.0105022471, 0.00314281718, 0.0184378605, 0.00382048707, 0.00998499151, -0.00111389952, -0.0154128987, 0.00802727882, -0.00617105234, 0.0255353898, 0.0032475777, 0.0106070079, -0.00261083, -0.00413149502, -0.019210469, -0.0356971659, 0.0476398692, 0.00274014357, -0.0018464051, -0.0208473541, 0.00373536907, -0.00529695628, 0.00435738498, 0.000759104907, -0.01004392, 0.0254175328, 0.00272541167, -0.00397762796, 0.00762133161, 0.0166307408, -0.000256581552]
14 Dec, 2018
unordered_map swap in C++ STL 14 Dec, 2018 The std::unordered_map::swap() is a built in function in C++ STL which swaps the elements of a container to an other container. After the call of this function elements of the caller unordered_map will be elements of called unordered_map while elements of called unordered_map will be elements of caller unordered_map. Internally swapping of elements is not done only reference type of both unordered_map is changed. Syntax unordered_map.swap ( unordered_map& ump ) Return type : Return type of this function is void. Parameters : An other unordered_map with same type of elements. Complexity : Its complexity is constant. Example 1 // C++ code to illustrate the method // unordered_map swap #include <bits/stdc++.h> using namespace std; int main() { unordered_map<int, int> sample1, sample2; // Map initialization sample1 = { { 2, 2 }, { 3, 4 }, { 4, 6 }, { 5, 8 } }; sample2 = { { 10, 11 }, { 12, 13 }, { 14, 15 }, { 26, 17 } }; // printing details before calling swap cout << " Elements of maps before swap \n"; cout << " Elements of first map are : \n"; for (auto& x : sample1) cout << x.first << " : " << x.second << endl; cout << " Elements of second map are : \n"; for (auto& x : sample2) cout << x.first << " : " << x.second << endl; // swapping sample1.swap(sample2); cout << " Elements of maps after swap \n"; cout << " Elements of first map are : \n"; for (auto& x : sample1) cout << x.first << " : " << x.second << endl; cout << " Elements of second map are : \n"; for (auto& x : sample2) cout << x.first << " : " << x.second << endl; return 0; } Output: Elements of maps before swap Elements of first map are : 5 : 8 4 : 6 3 : 4 2 : 2 Elements of second map are : 14 : 15 26 : 17 12 : 13 10 : 11 Elements of maps after swap Elements of first map are : 14 : 15 26 : 17 12 : 13 10 : 11 Elements of second map are : 5 : 8 4 : 6 3 : 4 2 : 2 Example 2 // C++ code to illustrate the method // unordered_map swap #include <bits/stdc++.h> using namespace std; int main() { unordered_map<char, int> sample1, sample2; // Map initialization sample1 = { { 'a', 2 }, { 'b', 4 }, { 'c', 6 }, { 'd', 8 } }; sample2 = { { 'e', 11 }, { 'f', 13 }, { 'h', 15 } }; // printing details before calling swap cout << " Elements of maps before swap \n"; cout << " Elements of first map are : \n"; for (auto& x : sample1) cout << x.first << " : " << x.second << endl; cout << " Elements of second map are : \n"; for (auto& x : sample2) cout << x.first << " : " << x.second << endl; // swapping sample1.swap(sample2); cout << " Elements of maps after swap \n"; cout << " Elements of first map are : \n"; for (auto& x : sample1) cout << x.first << " : " << x.second << endl; cout << " Elements of second map are : \n"; for (auto& x : sample2) cout << x.first << " : " << x.second << endl; return 0; } Output: Elements of maps before swap Elements of first map are : d : 8 c : 6 b : 4 a : 2 Elements of second map are : h : 15 f : 13 e : 11 Elements of maps after swap Elements of first map are : h : 15 f : 13 e : 11 Elements of second map are : d : 8 c : 6 b : 4 a : 2 Note : Caller and called unordered_map both should contain same type of elements otherwise we will get compile time error. Learn C++ Online – Master everything from basics to advanced concepts. Apply your knowledge with practical exercises and boost your skills. Take the Three 90 Challenge: finish 90% in 90 days for a 90% refund. Start now and level up your C++ programming!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum/Algorithm for Dynamic Time out timer Calculation/Difference between Round trip time (RTT) and Time to live (TTL)/Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms/Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm/Round Robin Scheduling Algorithm with Different Arrival Time/Selfish Round Robin CPU Scheduling/Find the order of execution of given N processes in Round Robin Scheduling/Calculate server loads using Round Robin Scheduling/set::lower_bound() Function in C++ STL/Implementation of lower_bound() and upper_bound() in List of Pairs in C++/Difference between std::set::lower_bound and std::lower_bound in C++/Difference between std::set vs std::vector in C++ STL/std::minmax() and std::minmax_element() in C++ STL/std::rotate vs std::rotate_copy in C++ STL/std::bitset::to_ullong and std::bitset::to_ulong in C++ STL/std::upper_bound and std::lower_bound for Vector in C++ STL/std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++/std::string::append vs std::string::push_back() vs Operator += in C++/Vector push_back() in C++ STL/vector :: cbegin() and vector :: cend() in C++ STL/unordered_multiset cend() function in C++ STL/unordered_multiset bucket() function in C++ STL/unordered_multiset emplace_hint() function in C++ STL/unordered_multiset end() function in C++ STL/unordered_multiset size() in C++ STL/unordered_multiset emplace() function in C++ STL/unordered_multiset find() function in C++STL/unordered_multiset erase() function in C++ STL/unordered_multiset clear() function in C++ STL/unordered_multiset swap() function in C++ STL/unordered_multiset bucket_size() function in C++ STL/unordered_multiset bucket_count() function in C++ STL/unordered_set bucket_count() function in C++ STL/unordered_set cbegin() function in C++ STL/array::cbegin() and array::cend() in C++ STL/array::rbegin() and array::rend() in C++ STL/multimap rbegin in C++ STL/vector rbegin() and rend() Functions in C++ STL/multiset rbegin() and rend() function in C++ STL/map rbegin() function in C++ STL/map upper_bound() function in C++ STL/Set upper_bound() in C++ STL/multimap upper_bound() function in C++ STL/multimap empty() function in C++ STL/multimap value_comp() function in C++ STL/multimap swap() function in C++ STL/multimap::swap() in C++ STL/multimap equal_range() in C++ STL/unordered_set equal_range in C++ STL/set vs unordered_set in C++ STL/unordered_set count() function in C++ STL/unordered_set bucket() function in C++ STL/unordered_set emplace() function in C++ STL/set::emplace() in C++ STL/multiset::emplace() in C++ STL/multiset find() function in C++ STL/multiset cbegin() and cend() function in C++ STL/multimap::cbegin() and multimap::cend() in C++ STL/multimap::begin() and multimap::end() in C++ STL/set::begin() and set::end() in C++ STL/unordered_multimap begin() and end() function in C++ STL/unordered_multimap empty() function in C++ STL/unordered_multimap find() function in C++ STL/unordered_multimap equal_range() function in C++ STL/unordered_multimap bucket_count() function in C++ STL/unordered_multimap bucket_size() function in C++ STL/unordered_multimap operator= in C++/unordered_multimap load_factor() function in C++ STL/unordered_map load_factor in C++ STL/unordered_map operator= in C++ STL/unordered_map swap in C++ STL
https://www.geeksforgeeks.org/unordered_map-swap-in-c-stl?ref=asr10
PHP
unordered_map swap in C++ STL
unordered_multiset clear() function in C++ STL, What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, jQWidgets jqxTreeMap width Property, Round Robin Scheduling Algorithm with Different Arrival Time, Difference between Flow and TypeScript, set::begin() and set::end() in C++ STL, unordered_multiset emplace() function in C++ STL, jQWidgets jqxTree destroy() Method, unordered_set bucket_count() function in C++ STL, unordered_map load_factor in C++ STL, jQWidgets jqxTree collapseAll() Method, Find the order of execution of given N processes in Round Robin Scheduling, jQWidgets jqxScrollView buttonsOffset Property, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Vector push_back() in C++ STL, jQWidgets jqxListBox enableHover Property, Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm, std::rotate vs std::rotate_copy in C++ STL, Selfish Round Robin CPU Scheduling, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxSlider buttonsPosition Property, std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++, std::upper_bound and std::lower_bound for Vector in C++ STL, Difference between Round trip time (RTT) and Time to live (TTL), jQWidgets jqxSlider rtl Property, Difference between std::set::lower_bound and std::lower_bound in C++, jQWidgets jqxTooltip opacity Property, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, unordered_multiset erase() function in C++ STL, multiset find() function in C++ STL, set vs unordered_set in C++ STL, jQWidgets jqxToolBar height Property, PHP, std::minmax() and std::minmax_element() in C++ STL, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, unordered_set emplace() function in C++ STL, unordered_multimap empty() function in C++ STL, unordered_set bucket() function in C++ STL, map rbegin() function in C++ STL, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, map upper_bound() function in C++ STL, Node.js date-and-time Date.transform() Method, unordered_multiset size() in C++ STL, TypeScript Optional Parameters, jQWidgets jqxToolBar theme Property, Difference between std::set vs std::vector in C++ STL, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, Steps to Diagnose and Resolve a Slow Network, How to use Optional Chaining with Arrays and Functions in TypeScript ?, Calculate server loads using Round Robin Scheduling, unordered_map operator= in C++ STL, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, jQWidgets jqxScrollView showButtons Property, set::emplace() in C++ STL, Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms, jQWidgets jqxScrollView disabled Property, multimap::cbegin() and multimap::cend() in C++ STL, jQWidgets jqxSplitter destroy() Method, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, set::lower_bound() Function in C++ STL, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, jQWidgets jqxTree collapseItem() Method, multimap upper_bound() function in C++ STL, std::string::append vs std::string::push_back() vs Operator += in C++, unordered_multiset swap() function in C++ STL, unordered_multiset cend() function in C++ STL, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), Set upper_bound() in C++ STL, jQWidgets jqxSortable opacity Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, multiset cbegin() and cend() function in C++ STL, multimap rbegin in C++ STL, vector :: cbegin() and vector :: cend() in C++ STL, multimap swap() function in C++ STL, jQWidgets jqxSlider height Property, jQWidgets jqxSwitchButton onLabel Property, unordered_multiset bucket_size() function in C++ STL, unordered_set cbegin() function in C++ STL, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, jQWidgets jqxToolBar tools Property, multimap empty() function in C++ STL, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTree width Property, multimap::swap() in C++ STL, unordered_multimap bucket_size() function in C++ STL, multimap equal_range() in C++ STL, Implementation of lower_bound() and upper_bound() in List of Pairs in C++, jQWidgets jqxTree clear() Method, TLS Handshake?, multiset rbegin() and rend() function in C++ STL, unordered_multimap operator= in C++, Algorithm for Dynamic Time out timer Calculation, Adhoc TCP, unordered_map swap in C++ STL, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, jQWidgets jqxTabs position Property, Differences between Wireless Adhoc Network and Wireless Sensor Network, jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, unordered_multimap begin() and end() function in C++ STL, std::bitset::to_ullong and std::bitset::to_ulong in C++ STL, unordered_multiset emplace_hint() function in C++ STL, multimap::begin() and multimap::end() in C++ STL, unordered_multiset bucket_count() function in C++ STL, unordered_multiset find() function in C++STL, unordered_multimap bucket_count() function in C++ STL, unordered_multiset bucket() function in C++ STL, Impact of Three-way Handshake and Slow Start Algorithm, array::rbegin() and array::rend() in C++ STL, multimap value_comp() function in C++ STL, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, unordered_multimap load_factor() function in C++ STL, multiset::emplace() in C++ STL, unordered_set equal_range in C++ STL, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, unordered_multimap equal_range() function in C++ STL, unordered_set count() function in C++ STL, vector rbegin() and rend() Functions in C++ STL, array::cbegin() and array::cend() in C++ STL, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, unordered_multiset end() function in C++ STL, How to Sort an Array Having Optional Properties in TypeScript ?, unordered_multimap find() function in C++ STL
GeeksforGeeks
[-0.0367216542, -0.0142396111, -0.00993375387, 0.0501045249, 0.0359535404, 0.0055355751, -0.0313744135, 0.015450865, -0.0378738195, 0.00120294432, -0.0359830856, 0.0451708846, 0.00902531389, -0.0265589431, -0.00142451504, -0.0342696048, -0.0257317461, 0.0381987914, -0.0430733487, -0.0078140609, 0.0057276031, -5.00265123e-05, -0.0435164906, 0.0170018598, -0.0205026772, 0.00300412974, -0.0225263555, -0.00485239876, 0.0222900137, 0.0210492183, -0.00568328891, 0.0134493429, -0.00198675087, 0.000333279284, 0.00681329938, 0.0190550815, 0.00460128533, 0.0273861401, 0.00377039495, -0.0179472286, -0.00780667504, 0.011713705, 0.0287303366, -0.00216216082, -0.0225115847, 0.0261158012, 0.00185934757, -0.0350081734, -0.0112114782, 0.0152145224, 0.0531474277, -0.0102956528, 0.0128806448, 0.0015611503, 0.0124079604, -0.00098783616, -0.0371943377, 0.00298935827, -0.0109751364, 0.00199598284, 4.27850755e-05, -0.0572538748, 0.0513453223, -0.0183312837, -0.0195573084, -0.00997068267, -0.0388487317, 0.0265441723, -0.00138020096, -0.00153899333, -0.0312562436, 0.0694254935, 0.00374823785, -0.0234569535, -0.0344764031, -0.0105393808, -0.00898838509, -0.0118761901, -0.0145128816, 0.0461162515, -0.00916564185, -0.0132425427, 0.00273085898, -0.0310494434, 0.0311676133, 0.00605626637, 0.011410892, -0.0319948122, 0.0604149476, -0.0122233182, -0.0436642021, -0.0291143917, 0.0252738334, 0.0178142861, -0.0486864708, 0.0455844812, 0.0287007932, 0.00742631173, -0.0233240109, 0.0587605536, -0.00252775266, 0.00744846882, -0.00697209174, -0.00502596237, 0.015450865, 0.0256726611, 0.0449640825, 0.0210935324, 0.0029616619, 0.0247420631, 0.035362687, -0.014217454, -0.0193061959, 0.0270464, -0.0306653865, -0.0184051413, 0.0181835704, -0.00539894, -0.0127255451, 0.00237634592, -0.0168689173, 0.049779553, 0.00559466053, 0.0119943619, -0.041625753, -0.0127255451, 0.00938721281, 0.0112262499, 0.0151406657, -0.017873371, -0.00351374224, -0.0249636341, -0.026943, -0.0333537795, -0.0266180281, 0.0108200368, 0.00279917661, 0.0407985561, -0.0245204922, -0.0285530798, -0.0246534348, 0.000554388389, 0.0128806448, -0.0121937748, 0.00409905845, -0.0118983472, 0.00311306864, 0.0258794595, -0.00575714558, 0.0250079483, -0.0254954044, -0.0233387817, 0.0373715945, 0.0211083032, 0.02116739, -0.00641816529, 0.0254510902, 0.00772543252, 0.0168689173, -0.0433096886, 0.0240921229, -0.044934541, 0.0400599875, 0.00194059021, -0.0252886042, -0.00326632173, 0.0275338553, -0.00349343172, -0.00575714558, 0.0480365306, -0.00502226967, 0.0334424078, 0.0249931775, -0.00931335613, -0.00169132312, -0.0489228144, 0.0126147596, 0.00358021352, -0.00784360338, -0.00936505571, 0.0065067932, -0.031847097, 0.0488932729, 0.0297347903, 0.0176074859, 0.00412490824, -0.0162485186, 0.00802086, 0.0339150913, 0.010886508, 0.00028804192, 0.0139441835, 0.0439891741, 0.0412121527, 0.0416552946, 0.0239887238, -0.011108079, 0.00829413068, 0.0135970563, 0.0423938632, 0.0219059587, 0.00241696718, -0.016883688, 0.00462344242, 0.0229104124, 0.00312230061, -0.0272088833, -0.0134567283, 0.0316403, -0.00839753, -0.0230581257, 0.0243875496, 0.010886508, 0.0175336301, -0.0149707953, 0.00435386458, -0.0453185961, -0.00432432164, -0.015288379, -0.0271645691, 0.00273824483, -0.0435164906, 0.0246238932, -0.010886508, -0.0408871844, -0.0337378345, 0.0343877748, 0.0161894336, -0.00628522271, 0.00474161329, 0.0519657172, 0.0322311521, -0.0180063136, -0.00723797688, -0.000622244435, -0.00852308702, -0.0519657172, 0.00771804666, 0.000973987917, 0.0023468032, 0.0349490866, 0.0433983169, -0.00789530296, -0.0132942433, 0.00644401507, 0.00205691485, 0.00334202498, -0.00920995604, 0.0075777187, 0.0122233182, 0.0478592739, 0.0162928328, -0.00402520131, 0.0141879115, -0.00122233178, 0.0545654818, -0.00955708325, -0.0396463871, 0.00694254925, -0.0462639667, 0.0107904943, 0.0261158012, -0.0348604582, 0.0173120592, 0.012097761, 0.0148156956, 0.0236785244, -0.00503704092, -0.0528224595, -0.0483615026, 0.00214369665, 0.00464559952, -0.0128954155, 0.0111228498, 0.0584946685, 0.00954231247, -0.0302813314, 0.0150298802, -0.00166455, -0.016440548, 0.0440778024, 0.00429847185, -0.00500749843, 3.71592541e-05, 0.0121863894, -0.0251556616, -0.0235012677, 0.00103768951, -0.0248306915, -0.0226002131, -0.0243580081, -0.0250374917, 0.00127587805, -0.0161451194, 0.024476178, 0.0403554142, -0.00203106483, -0.0572538748, -0.0452299677, 0.00154730212, 0.00619659433, -0.00839014445, 0.00516259763, -0.0209162757, -0.0171348024, 0.00212707883, 0.0377556495, 0.00123987277, 0.0110120643, -0.0378738195, 0.022821784, -0.0249784049, -0.0248306915, 0.0327038392, 0.00402150862, -0.00195166876, 0.0247863773, 0.0193357375, -0.00813903101, -0.0290996209, -0.0440482572, -0.009350284, -0.00358205987, 0.0376965664, 0.0475343056, -0.0238853227, -0.0103695095, 0.0368398242, -0.0247716065, -0.0537382849, -0.0393214151, 0.0154804075, -0.0253329184, -0.0112410206, 0.0106353946, -0.0110637648, 0.0113074919, 0.00403258717, -0.0327924676, -0.00442772172, -0.00934289861, -0.0106870942, 0.00470468495, 0.00420984346, 0.0399418138, -0.0071493485, 0.0038774875, -0.000524384, -0.00662127137, 0.0379329063, 0.0012214086, -0.0396168455, 0.0296757054, 0.0148821669, 0.0193505101, -0.0234421827, -0.0065067932, 0.00262561301, -0.0030669081, 0.00540263252, -0.00878897216, 0.0276815686, -0.0133681, -0.0412712395, -0.0169427749, -0.031344872, -0.0250374917, -0.028597394, 0.0149707953, -0.0292473342, -0.00637385109, -0.0333537795, 0.0136782993, 0.0126812309, -0.054831367, -0.00322200754, -0.00920257065, 0.0211230759, 0.0044794213, 0.00457543554, 0.00487455586, 0.00732660526, -0.0220979862, 0.0134271858, 0.0059233238, -0.0122602461, 0.0154951792, 0.00937982742, -0.00850831531, -0.00485609146, -0.0144759538, 0.0042873933, 0.00905485637, 0.0168984607, -0.0134493429, -0.000460682437, -0.0291587058, 0.00829413068, -0.026071487, -0.0269873142, 0.0272384267, -0.0352149718, -0.0395873, -0.00294689042, 0.00743000489, 0.00490040565, -0.0164553188, 0.0044388, -0.0215957593, 0.0075998758, 0.00480069872, 0.00587162422, -0.0185233112, 0.0158053786, 0.00320908264, 0.00369653804, -0.0358353704, 0.0592332371, -0.00791007467, -0.0153917791, -0.00955708325, -0.035362687, -0.00287303352, 0.0118466476, -0.00785098877, 0.0305472165, -0.00560573908, 0.0112927211, -0.0121051464, -0.00240034936, 0.0223195571, -0.000112112473, -0.0129988156, 0.0174450018, -0.0460276231, -0.0415075794, 0.00875942875, -0.0171200316, -0.000858586514, -0.038435135, 0.0596468374, 0.0513748638, 0.0133237857, -0.0445504859, -0.0178290568, 0.0427779183, -0.0275633968, -0.0153770074, 0.00523276161, 0.0505476668, -0.032172069, 0.0375783928, -0.0297347903, 0.00373346661, 0.0106501654, -0.0445209444, 0.00107184832, 0.00312230061, 0.0253181476, 0.0403554142, 0.0238410085, 0.021832101, 0.0347718298, -0.0056869816, 0.0202811062, 0.0279769953, 0.0116472337, 0.0332356058, -0.0286712516, -0.0201777071, -0.0143725537, -0.0162632912, 0.00286934082, 0.013995884, 0.00434647873, 0.0211526174, 0.00321092899, -0.0118614193, -0.00287303352, -0.0231467541, 0.0275338553, 0.00502596237, -0.00601933803, -0.0118688047, 0.00830890145, -0.0284496807, 0.0206356198, 0.0164257754, -0.0358353704, -0.0180653986, -0.00444618566, 0.00437971437, -0.00801347382, -0.0159974061, 0.00089874625, 0.00732660526, -0.0371647961, 0.000905208697, -0.0260567162, 0.0181540269, 0.0446391143, -0.00881851465, -0.0281542521, 0.0153917791, -0.0086708, -0.0482137874, -0.0168098323, 0.0254363175, 0.0110563785, -0.0535019413, 0.0131760724, 0.0390259884, 0.018700568, 0.00567590306, -0.013774313, -0.0133459428, 0.0116915479, 0.00164331612, -0.000160061769, 0.0188778248, 0.010118396, -0.0052770758, 0.00849354453, 0.0350672603, -0.00834583, 0.0236194376, -0.00339557114, -0.0245943498, 0.0215219017, -0.0434278622, -0.00626306562, -0.00196459377, -0.020295877, 0.00421353662, -0.00290996209, -0.0305176731, 0.0063332296, -0.00929858442, -0.0139072556, 0.0336787477, 0.00684284233, -0.00205876119, 0.0017402533, 0.003498971, -0.0065067932, -0.0057091387, 0.022216158, -0.0270759407, -0.0279474538, 0.0193209667, 0.0214923602, 0.0231319834, -0.0136782993, 0.00488194125, -0.0215662159, 0.0233978685, -0.0420393497, -0.027829282, -0.0100519247, -0.0304881316, 0.0103621241, 0.0228365548, 0.0290109925, 0.0152292941, -0.00307798665, -0.0198231936, 0.014077126, -0.00373900589, 0.0125704454, 0.000792115286, 0.0181392562, -0.00419507222, 0.026839599, -0.00625937292, -0.0257760603, 0.0197641086, -0.00183534413, 0.0272827409, -0.00526599726, -0.00257022027, -0.0238262378, -0.0230581257, -0.0113887349, 0.0098008113, -0.00403628, -0.00191843312, -0.0360421687, -0.0176370293, 0.00269393064, 0.0155542642, 0.0473275036, 0.00621505873, -0.0255397186, 0.0131834578, 0.0364557691, -0.0185823981, 0.00164423941, -0.0199265927, 0.00301336171, 0.0184051413, 0.00369099877, 0.0145424251, 0.00649940781, -0.0081242593, -0.00227294629, 0.0186267123, 0.0154951792, 0.0177995134, 0.0230285823, -0.014985566, -0.0387896486, -0.0131539153, 0.0256726611, -0.0191289391, 0.00863387249, 0.0090400856, 0.0182869695, 0.0498091, -0.00257575954, -0.0251556616, -0.00320723606, -0.0372829661, -0.00754817575, 0.0131982295, 0.00350635662, 0.0164257754, -0.0501045249, 0.00324785733, -0.0150372656, -0.0148821669, -0.00881851465, -0.0109603647, -0.00922472775, -0.0256578885, 0.0311085284, 0.0148378527, -0.00275116973, -0.00842707325, -0.00808733143, 0.0400009, -0.0211083032, 0.00521429768, 0.021994587, 0.0584946685, -0.00896622799, -0.0224820413, 0.00608950201, 0.0194834508, 0.00808733143, -0.00200706138, -0.0365443975, 0.0122897895, 0.0187744256, 0.0101331677, -0.0149486382, -0.0113739632, -0.0155394934, -0.00928381272, -0.0178586, 0.00721212663, -0.0348604582, -0.00972695462, 0.0110637648, 0.0103325807, 0.0322016105, -0.00794700347, -0.0342400633, -0.0127920164, -8.84551846e-05, -0.0157758351, -0.0176518, -0.0111228498, 0.0153917791, 0.00805778801, -0.00702379178, -0.029424591, -0.00789530296, 0.025303375, 0.00600456633, -0.0323197804, -0.018641483, 0.00344542461, 0.0259533171, -0.0165439472, 0.00351374224, -0.000702102203, -0.00769588957, -0.00407690136, 0.0185971688, -0.0476820171, -0.00581992418, -0.0290257633, 0.00888498593, 0.0478592739, 0.00238742447, -0.0285826232, 0.0119943619, 0.013390257, -0.0101036243, 0.00201075431, 0.0354808569, -0.0204879064, -0.0011032375, -0.0169723164, 0.0187448822, 0.0248454623, 0.00241512083, -0.0155394934, -0.0341218896, -0.0157167502, 0.0176222585, -0.000376439421, -0.0307835583, 0.0375193097, -0.00702748448, -0.00419876492, -0.0213889591, -0.0117580192, -0.0131613007, -0.0446391143, -0.0379033647, -0.00805778801, 0.0172086582, -0.00221016794, 0.0346832, -0.0144242533, -0.0289075933, -0.0329992659, -0.0187744256, -0.00236157468, -0.00168301421, 0.00164331612, 0.0113518061, 0.0138407843, -0.0413007811, 0.0252738334, 0.0182426553, -0.0479479022, -0.0275190827, -0.00545064, 0.00205137557, 0.0282281097, -0.0242989212, 0.0221866146, 0.0129988156, -0.00166270358, 0.0118097188, -0.00539155398, -0.0437232889, 0.0124522746, 0.0276520252, 0.0657031, 0.0187891964, -0.0289814491, 0.0216400735, 0.0022378643, 0.020236792, -0.00528076896, 0.000416599098, -0.00582361687, 0.0130579006, -0.0120312897, 0.0185233112, 0.0338855498, -0.0468548201, -0.0150224948, -0.00637385109, 0.00965309795, 0.0125409029, 0.00993375387, 0.0168246031, 0.000235880492, 0.0292473342, 0.0208128765, 0.00909178518, -0.0357172, -0.00505919801, 0.00401412277, 0.011026836, 0.0187596548, -0.0120312897, 0.0100814672, 0.0135601275, 0.0128511013, 0.00272347336, 0.00556142488, 0.00554665364, 0.0131096011, 0.00966048334, -0.00721212663, -0.00901054218, 0.00605257321, 0.0234274101, 0.0044609569, 0.00998545345, -0.0267657433, -0.0248011481, -0.0529406294, -0.0201038495, -0.0295723043, -0.0105393808, 0.00392549438, 0.00435386458, 0.00766634662, -0.000396288466, -0.0349786319, 0.0145054962, 0.0376374796, 0.0280508529, 0.0377851948, -0.0492477864, 0.00361529551, -0.00762203289, 0.0241807513, 0.0134050287, -0.00159346277, -0.00413598679, -0.00681699254, 0.0165291764, 0.010783108, 0.0200004503, 0.00474161329, 0.0274599977, -0.0203106496, -0.0270464, 0.0319061838, 0.00697947759, 0.0197345652, 0.0199709069, -0.0163666904, -0.0149190947, -0.0109160505, -0.0102513386, 0.0125335166, 0.000114535906, 0.0365443975, 0.033708293, -0.00345465681, -0.00163039123, 0.0275338553, 0.0312857851, 0.00275301607, 0.0017227123, -0.0022711, 0.00295427628, -0.00646617217, -0.0303108748, 0.0271793418, 0.00464929221, 0.00898838509, 0.0332356058, 0.00750755426, -0.0060968874, 0.0142100686, 0.00105430733, 0.0179472286, -0.0283167381, -0.0152292941, 0.030960815, 0.0327924676, 0.0267657433, 0.0189959966, 0.0197641086, 0.0264703147, 0.0268543717, 0.0205026772, -0.0171200316, -0.0292473342, 0.00672836415, -0.0156133501, 0.00873727165, 0.00841230154, -0.0259828586, 0.0270168558, -0.0214775875, -0.0142839253, 0.00627783686, -0.0153622366, -0.0220832154, 0.0088776, 0.00482285582, -0.0166768897, -0.0274599977, -0.0444027707, 0.00333648571, 0.0223195571, 0.0111450069, -0.0128584877, -0.0216696169, -0.0132573145, 0.00560943177, 0.0115290629, -0.0176961143, -0.0215071309, -0.00555034634, -0.00473053474, 0.00154176296, -0.00521060452, 0.0282576513, -0.0328515507, -0.00312783988, 3.00043685e-05, -0.00657695765, 0.0149486382, 0.0135896709, -0.00718997, 0.0251556616, 0.0284939948, 0.0223491, 0.0338855498, -0.0081242593, 0.0149929514, -0.0248750057, -0.04257112, 0.00662127137, 0.0153622366, -0.0295723043, 0.00386640895, 0.00170701777, 0.0217582453, 0.0226149838, 0.018803969, -0.00576822413, -0.000864587375, 0.00597871654, -0.00473792059, -0.027829282, 0.0102956528, -0.0128806448, -0.0159974061, -0.00705702743, 0.0224377271, 0.00565005327, -0.000565466937, -0.0349490866, 0.00635907939, -0.0379033647, -0.023589896, -0.0579038151, 0.0173859149, -0.0090400856, 0.0131022148, 0.0189073682, -0.00958662666, -0.0470320769, 0.0224672705, -0.062748827, 0.00885544345, -0.00884805713, -0.0406803824, -0.0385828465, 0.0153326932, 0.000735337846, -0.0474752188, -0.0165291764, -0.032674294, -0.0216843877, -0.006916699, -0.0337673761, 0.0124892024, 0.02116739, -0.00344727118, 0.0153770074, 0.0027659412, 0.0118909618, -0.030192703, -0.0240182653, 0.00427631475, -0.0265294, 0.026174888, 0.00918779895, -0.0106353946, 0.0303108748, 0.0205913056, -0.019852737, 0.0259533171, -0.0490114428, -0.0161598902, -0.0169870891, 0.0217877869, 0.0170166306, -0.0209753606, 0.00174394622, -0.00465298491, -0.00714196265, 0.0164257754, -0.00364668481, -0.0261305738, -0.0244023222, 0.0168098323, -0.00777713209, 0.00730444817, 0.0203549638, -0.0145054962, 0.026396459, 0.036692109, 0.0364853106, -0.0319948122, 0.0056869816, -0.0256578885, 0.00637385109, -0.024476178, -0.0370761678, 0.0323197804, 0.031728927, 0.00296350825, 0.0156576633, 0.0344764031, -0.0118835764, -0.0111006927, -0.002948737, -0.0243432354, 0.01369307, 0.0145128816, 0.00587531691, 0.0274599977, -0.0258203745, -0.00630368711, 0.0749204457, 0.01437994, -0.0397350155, -0.0208276473, -0.0254363175, -0.00788791757, 0.0130652869, 0.0116620054, 0.0239296369, -0.00114016596, 0.000776882342, 0.00798393134, -0.0225558989, -0.0124744317, -0.0126738446, 0.00160638767, -0.00719735539, -0.0042652362, 0.000747339567, -0.0243284646, 0.0327629223, 0.00770327542, -0.00192397239, 0.00386271626, -0.00721951248, -0.0050628907, -0.00424307911, 0.000387517939, 0.014217454, -0.0081611881, 0.00770327542, 0.0244318638, -0.00973434, 0.0205913056, 0.00375377713, 0.00890714303, -0.00755556161, -0.0121642323, -0.0101774819, -0.0181244854, 0.0292325635, 0.0333242342, -0.0160121769, -0.015288379, 0.000354513148, -0.0195573084, 0.0124522746, 0.0433983169, 0.0115438346, 0.010805265, 0.0364262275, 0.00145221141, 0.00806517433, -0.0194243658, 0.000692870119, -0.0229547266, -0.0225854423, -0.0104285954, 0.0240625795, -0.000328663242, -0.000331663672, -0.0262635164, -0.0160860345, -0.010886508, 0.0090400856, 0.0149338664, -0.0142617682, -0.0298972763, 0.0133754853, -0.0231172107, -0.00734137651, -0.0316993855, -5.4238667e-06, 0.00290073, 0.020517448, -0.00202183286, 0.0133164, 0.0100593101, 0.036898911, 0.0590559803, -0.00776974671, 0.000535462575, 0.0047157635, 0.0262044296, -0.00614858745, -0.00690931361, 0.0122676324, 0.0208571907, 0.00958662666, 0.0185676254, -0.00949061196, 0.0180801712, 0.0272679701, 0.00109492859, -0.0180210844, 0.0388487317, -0.0089219138, -0.00154730212, -0.000259884, -0.0239000954, 0.0337378345, 0.0245943498, 0.000739492243, 0.00536939688, -0.0144685674, 0.0183460545, -0.0228956416, -0.0382874198, 0.0196163934, -0.00328663224, -0.00289703719, 0.0197050218, -0.00733768381, 0.0180506278, 0.0446686558, 0.0107461801, -0.00293765846, -0.0097417254, 0.0273565985, -0.000891822157, 0.010502452, -0.0125187458, 0.0206503905, 0.00318692555, 0.00311122206, 0.0160712618, -0.00488194125, 0.027991768, 0.0194095951, -0.00415075803, -0.0253920034, 0.0235160384, -0.0137521559, 0.0147861522, 0.00279917661, 0.0242693797, -0.0200152211, -0.0113222636, 0.000423061574, 0.020458363, -0.0022711, 0.0103990519, -0.00351004954, 0.0138260126, -0.0077328179, -0.0166178029, -0.0349195451, -0.00787314586, 0.0106649371, 0.00840491615, 0.0043871, 0.0311676133, 0.00569806, -0.0352149718, 0.0249340907, -0.000895514968, -0.036071714, -0.0314925835, -0.0147787668, 0.00300043682, 0.0221423, 0.00311860791, 0.0277258828, -0.00348235318, -0.00593440235, 0.00936505571, -0.00704225618, -0.000809194695, -0.00391072314, -0.0410053544, -0.0222457, -0.000907055102, 0.0190107673, -0.0215809885, -0.0103842812, 0.0134936571, 0.0123636462, -0.0065474147, 0.00151406659, -0.0122602461, 0.011329649, 0.0090179285, 0.0216843877, 0.00890714303, -0.0364853106, -0.00782144628, -0.00969002582, -0.00426892936, 0.0268248282, 0.0304881316, 0.01256306, -0.00280840881, -0.0238853227, -0.00634061545, 0.00355990278, 0.0142469974, -0.0110046789, -0.00901054218, -0.0230581257, -0.0055540395, -0.00497426279, 0.0172234308, -0.00606365176, -0.00165531784, -0.0243432354, -0.00875204336, 0.0183312837, -0.0044609569, 0.00834583, -0.0184642263, -0.0384646766, -0.00516998349, -0.0146679813, 0.00839753, -0.00583469542, -0.0165882614, 0.0344173163, -0.000932443421, -0.00473792059, 0.00605995907, 0.0141879115, -0.0207390189, -0.0229990408, -0.0144242533, -0.0237376094, 0.00531031145, 0.0218616445, 0.0269134566, 0.00858217198, 0.00663235, 0.0088776, -0.027770197, -0.0157462917, 0.00819073059, -0.000651325565, 0.00336972135, -0.0193209667, -0.00419507222, -0.0649349913, -0.0125113595, 0.0278588254, 0.035244517, 0.0233830959, 0.000255498744, -0.0161008053, 0.0117506338, -0.0165587179, -0.0356876552, 0.0033808, 0.0172529723, -0.0349195451, 0.00867818668, 0.000796731387, 0.0109308222, -0.0227183849, 0.0250965767, 0.0048893271, 0.0166178029, 0.0200743061, -0.0127920164, 0.0155838067, 0.00501488382, 0.0136709129, 0.0104876803, 0.00212707883, -0.00342326751, -0.0202220213, -0.0190698523, 0.0160417203, 0.00662496453, -0.00915825646, 0.0115955342, 0.00866341498, 0.0128584877, 0.0248454623, 0.0178438276, -0.0200447645, -0.0140401982, 0.0405031256, -0.0133828716, 0.0115290629, -0.0059048594, -0.0168541465, 0.0203106496, -0.0150594227, -0.0033494106, 0.0115364483, 0.0199561361, 0.00341957482, 0.024254607, -0.00727490522, -0.0187301114, -0.0122085465, -0.00666189287, -0.004483114, 0.00406582281, 0.0162042044, -6.3874686e-05, 0.0176074859, 0.0374306813, 0.0249045491, 0.0191437099, 0.0167802889, -0.00244835648, 0.0103768948, 0.0454072244, -0.00362822041, -0.00318692555, 0.0145793529, -0.0228070132, 0.0115216775, -0.0051441337, 0.00031804631, -0.0150077231, 0.00583838858, 0.0135010425, -0.0310494434, -0.00703856302, -0.00378885935, -0.000437140552, -0.0183312837, -0.0143430112, 0.00209753611, 0.0229842681, -0.000234380277, -0.00794700347, -0.00891452841, 0.00164239295, 0.00789530296, -0.0150520373, 0.00534724, 0.00199967576, -0.00473792059, 0.00716042705, 0.0127329305, 0.00942414161, -0.0176961143, -0.0284053665, -0.0322016105, -0.0177404284, -0.0151997516, -0.0196016226, 0.0426597483, -0.0304290447, -0.0236785244, -0.0119131189, -0.0134493429, -0.0128584877, -0.0262930579, 0.0124522746, 0.00722689833, 0.0010727715, 0.00840491615, -0.0066065, -0.033383321, 0.0069351634, -0.00807994511, 0.000803655479, -0.0106944796, -0.035362687, 0.0381101631, -0.0174006876, 0.00480808457, -0.0202663355, -0.0396168455, 0.00394026609, 0.0101257814, 0.0326447524, -0.0123119466, -0.0089293, 0.0102291815, 0.00755186845, -0.000144713369, 0.00569436746, 0.033501491, -0.00776236085, -0.0135748992, 0.00906224269, -0.00559466053, -0.0119795902, -0.0127772447, 0.0251704343, 0.0290848501, 0.0094462987, 0.00565005327, 0.0295575336, 0.00371130952, 0.0102513386, -0.00127033878, -0.0296461619, -0.0167064313, -0.00926165562, 0.0301040746, 0.00677267835, -0.01064278, 0.00123064069, -0.00970479753, -0.0103916666, 0.0109160505, -0.00728598377, -0.00181595667, -0.0223638713, 0.00756294699, 0.0223343279, 0.00416922243, -0.0196459368, 0.0165144037, -0.00704594888, 0.0107092513, 0.0336196646, -0.00712719141, 0.0274452269, -0.015066809, -0.00628891541, -0.00489302, -0.00702009909, -0.0071530412, 0.0168246031, 0.029365506, -0.000985989696, 0.0188482832, -0.00885544345, -0.00673205685, 0.0207685623, 0.00274009118, -0.0157019775, 0.00794700347, 0.0111819357, 0.00197936501, -0.0308721866, -0.00170609448, -0.00700163469, -0.0289962217, -0.0249488633, -0.0235455818, 0.00701271323, -0.00519952597, 0.0114921341, 0.00152514514, -0.0249340907, -0.00419507222, 0.021891186, -0.0175336301, -0.0117727909, -0.0231319834, 0.0231319834, 0.00743739028, 0.0159235485, 0.00847138744, 0.00668774266, 0.0177847426, -0.0339741781, 0.00321092899, 0.0179472286, -0.0191289391, -0.00288041937, 0.00108754297, -0.00373900589, -0.0376670212, -0.0257612895, -0.0116176913, -0.013087444, -0.00470099226, 0.0170166306, 0.0134493429, -0.0103473524, 0.0299711321, 0.000498995709, -0.0155690359, 0.0149264811, 0.0128584877, 0.0320538953, 0.0265589431, 0.00157315214, -0.0158644635, -0.0152588366, -0.011794948, 0.0152145224, -0.0100002252, 0.0142543828, 0.0105689233, 0.003079833, 0.0147935385, 0.00984512549, -0.000889514107, 0.0200743061, -0.0278440528, 0.0240773521, -4.63336692e-05, -0.00315184356, 0.0154656358, -0.0138629414, -0.0253772326, 0.00824981648, 0.00694624195, 0.0116176913, 0.0209901333, 0.0100002252, -0.0088259, 0.0208571907, -0.033383321, -0.0545654818, -0.0144020962, 0.0156428926, -0.0236932952, -0.012924959, 0.0178438276, 0.0049299486, -0.00526230456, -0.0104876803, -0.00546910381, 0.0191437099, -0.0126960017, 0.00317215407, 0.0191732533, 0.0152588366, 0.00096752547, 0.0287894215, -0.000579315121, -0.00819811691, -0.0296904761, -0.00607842347, -0.0123045603, -0.00232279976, -0.00269208429, 0.0184494555, 0.00501488382, 0.0220979862, -0.00417291513, 0.00187042612, -0.0130431298, -0.0023560354, 0.0162632912, 0.00451634964, 0.0188925974, -0.00423569372, -0.013146529, 0.0103842812, 0.0235308111, 0.0283905938, -0.00518844742, 0.0108421938, -0.0124153458, 0.0158940069, -0.0114182774, -0.00412121555, 0.00475638453, -0.0150741944, -0.0115807625, 0.00132019224, -0.0140697407, -0.0223786421, -0.0177699719, 0.032172069, 0.0275486261, 0.016440548, 0.00411382969, 0.000728413754, -0.00440556463, 0.0081464164, 0.0141657544, -0.000287580333, 0.0225854423, -0.000117017036, 0.00508135511, -0.047622934, 0.00845661573, 0.0160712618, 0.00581253832, 0.00176333357, -0.000672559428, 0.0133016286, 0.0256431177, 0.000474530621, 0.00723428372, 0.0154804075, 0.00614858745, -0.00340111041, 0.00515521225, -0.0172972865, -0.00550233945, 0.00906962808, 0.0166916605, 0.0154213216, -0.00881851465, 0.0053176973, -0.0125409029, 0.00322200754, 0.00116970879, 0.0108495792, -0.0113444207, 0.0207094755, 0.000327509217, 0.00106076978, 0.00816857349, 0.0128584877, -0.00388856605, -0.0192471091, 0.00652156491, 0.0108274221, -0.00711242, 0.0141509827, 0.0118835764, 0.00385902333, 0.038228333, 0.0200152211, -0.01946868, 0.0138481697, -0.00625937292, -0.000741338707, 0.0232353825, -0.00899577141, 0.00201998628, -0.018700568, 0.00402520131, 0.000426292827, 0.00041452187, -0.00177718175, 0.00121956214, 0.00224340358, 0.0142026832, -0.0138850985, 0.0188482832, -0.0044794213, -0.00315738283, -0.00582361687, 0.0119057335, -0.0110489931, -0.00913609937, 0.00772543252, 0.000211646198, 0.00104507525, 0.00318877189, 0.00381101645, -0.0106206229, -0.0131539153, 0.0133164, 0.00889237132, 0.00795438886, 0.00506658386, 0.0131243719, -0.0235603526, -0.00310752937, 0.00062039803, 0.00822765939, 0.00688715652, 0.0208719615, -0.00889237132, -0.00740784779, 0.0151702082, 0.0129545014, 0.00617443724, -0.00197013305, 0.00999284, 0.0108495792, 0.00395503733, -0.0190993957, -0.00728967646, -0.016337147, 0.0171200316, -0.00398827298, -0.00743000489, -0.00920995604, -0.0124153458, -0.0137299988, 0.0355399437, 0.00953492615, -0.00024695904, 0.00238003884, -0.013833398, -0.00985251088, 0.00933551323, 0.0179472286, -0.0296018478, -0.00974911172, -0.0225115847, -0.0208867323, 0.00485239876, 0.0159530919, -0.0159087777, 0.00627783686, 0.0174597725, -0.00109308225, 0.00196828647, -0.0106353946, -0.00656957179, 0.0162485186, -0.0193209667, -0.00226556067, -0.00881112926, -0.0148452381, 0.0124153458, -0.00312968646, -0.00915825646, 0.0192618817, -0.00863387249, -0.00418768637, -0.0109972935, -0.0149412518, -0.00896622799, -0.0183017422, 0.00492256274, -0.0145645821, 0.00140605087, 0.00321646826, 0.0100888535, -0.00321462192, -0.0286712516, -0.0209015049, -0.00705333427, 0.002564681, -0.0209015049, 0.00957185496, -0.0252147485, 0.00930597, 0.00744477613, -0.00306321518, 0.00227663922, 0.00318692555, -0.00591224525, -0.00752232596, 0.00282687298, 0.000740415475, -0.0127550876, 0.0279179104, 0.00253144535, -0.0114625916, 0.00915825646, 0.0205322206, -0.00378885935, 0.000344357832, 0.00662496453, 0.00665450701, 0.0108126514, -0.0107683372, 0.013774313, 0.0235603526, -0.0276372544, 0.0101405531, 0.00425046496, -0.0124153458, 0.00524014747, -0.002564681, 0.00642555067, 0.000305121328, 0.00846400112, 0.0107018659, -0.00524384, -0.00484501291, 0.00546541112, 0.0106649371, -0.0353036, 0.00263115228, 0.00941675529, -0.00461236387, 0.022880869, 0.0191732533, 0.00875942875, -0.0085526295, -0.00703117764, 0.00164146977, -0.000909363152, 0.0107092513, 0.0101700956, -0.0251999758, -0.000549772347, -0.00853047241, -0.00785837509, -0.00315184356, -0.00912871398, 0.00521060452, 0.00803563092, 0.0154360933, -0.000934289885, -0.0133754853, 0.00899577141, 0.00895145722, 0.00321646826, -0.0222457, 0.0200447645, 0.00457543554, -0.00556511804, -0.008981, -0.0205765348, -0.0121125327, 0.018035857, 0.0177995134, 0.00545433257, -0.00216216082, 0.00442033587, 0.00786576048, -0.00280840881, -0.01732683, -0.00131465297, -0.0380806215, 0.00824981648, -0.00396611588, 0.0154360933, 0.00774020376, 0.023811467, -0.0177847426, -0.00156299677, 0.00361898844, -0.0114330491, 0.0037814735, -0.0171495732, -0.0253920034, -0.00364853116, -0.0127994018, -0.0106870942, 0.0107092513, 0.00411752239, 0.00817596, -1.03356397e-05, 0.0172972865, -0.00918041356, 0.0198231936, -0.0113887349, 0.000469452963, 0.0223491, -0.0176074859, -0.00755186845, 0.012097761, -0.0111819357, -0.0140254265, -0.00505550532, -0.0059639453, 0.00404735841, 0.0490409844, -0.022821784, -0.0108569656, -0.0094462987, -0.0179176852, 0.022880869, 0.0226445273, -0.0122159319, 0.0100740818, 0.0120312897, -0.000400442921, -0.0230138116, -0.000385671534, -0.00772543252, -0.0162337478, 0.00113739632, -0.0098598972, -0.0135158142, 0.0129471151, 0.00204768265, -0.0151111232, 0.0090031568, 0.00176241039, 0.0258646887, 0.0142026832, -0.0218025595, 0.00485978462, -0.0287155658, -0.023708066, 0.0150741944, 0.0149486382, 0.00666927872, -0.000324970373, -0.0175631717, 0.0249488633, 0.00477854162, 0.00373162027, 0.00914348476, 0.00653264346, 0.00133127067, -0.0037777808, -0.00116509269, 0.0067209783, 0.00833844487, 0.0152440658, -0.00670620706, -0.0129471151, -0.00813903101, 0.0114847487, -0.00313337916, 0.0109160505, -0.000753802073, -0.0219650436, 0.00439817877, -0.00907701347, 0.0178586, 0.00221570721, 0.00484501291, -0.0111376215, 0.00856001582, -0.00659542158, -0.0125926025, 0.000638400612, -0.000360975624, 0.0154804075, 0.0075777187, -0.00788791757, 0.00443510711, 0.00470837764, 0.0101774819, -0.0243875496, -0.0274304543, -0.0126590738, -0.0193505101, 0.0172972865, 0.0141066685, -0.00461605657, -0.0107683372, -0.000430447282, -0.0127772447, 0.0147787668, 0.000692408474, -0.00828674436, -0.0118171051, -0.0152145224, -0.0056869816, -0.00235788175, 0.0175927151, 0.00987466797, -0.00598979509, -0.00509981951, 0.00496318424, -0.00461236387, 0.00434278604, -0.0222604722, -0.00711611286, 0.00123525679, 0.0102291815, -0.00167378213, -0.00969002582, -0.0138481697, 0.0190846249, 0.000580238295, -0.0232353825, -0.00259422371, 0.0343877748, 0.00525122602, 0.00491517689, -0.00690931361, -0.017932456, -0.00231172121, -0.0086117154, 0.00515521225, -0.0259237736, 0.00850093, -0.00377224153, -0.00827197358, 0.0165144037, 0.0136782993, -0.0229251832, -0.0141952969, -0.00259422371, -0.016218977, 0.00470837764, 0.00473053474, 0.017267745, 0.0244466364, -0.00388118043, 0.00776236085, -0.00257945247, -0.00345096388, -0.00409905845, -0.00272347336, 0.00563897472, -0.0134345712, 0.00157776813, 0.0149929514, 0.0150594227, 0.00351374224, 0.00459020678, -0.00217508595, -0.00301705464, 0.0254954044, 0.0181392562, 0.00396980857, 0.0183755979, 0.0135232, 0.00226740702, 0.0246091206, -0.0118688047, 0.00649571465, -0.00072056643, 0.00318507897, -0.0166621171, 0.0151406657, 0.00669143582, 0.0197936501, 0.00996329635, -0.00286380155, 0.00359867769, 0.0100076105, 0.000836891064, 0.0380510762, 0.00456435699, 0.00255729537, -0.00497426279, 0.00327924662, 0.014439025, 0.00245389575, 0.00684653502, -0.00586423837, -0.00309091154, 0.0224377271, 0.00103676633, -0.017267745, 0.0195868518, -0.0167507455, -0.0140918978, 0.0272088833, -0.0103104245, -0.00420245808, -0.00802824553, 0.0137373842, -0.00327924662, -0.00278440537, -0.000716873619, -0.00780667504, 0.0215071309, 0.00942414161, 0.0102070244, -0.0218616445, -0.0198379643, 0.00570175331, -0.0124892024, 0.00211230759, 0.0271054842, -0.0112410206, -9.73987917e-05, -0.00974911172, -0.0132647, -0.0031666148, 0.013914641, -0.00744846882, 0.0158201493, 0.000109919849, -0.0122676324, -0.00762203289, 0.013530585, 0.00791746, 0.0020329114, 0.00516998349, 0.0115955342, -0.00175779441, 0.00383317331, 0.0146162817, 0.0234717242, 0.00715673435, 0.0190846249, 0.00290996209, 0.0220684428, -0.00593440235, -0.0407690108, -0.0249488633, -0.0250374917, -0.0201333929, 0.00148913986, -0.012238089, 0.00466037076, -0.00720843393, 0.00768850371, -0.017962, -0.00934289861, -0.000918595237, -0.0102734957, -0.0132647, -0.000755648478, -0.00756294699, 0.00223417138, -0.0131022148, -0.0036817668, -0.00391072314, -0.0115290629, -0.0122454753, 0.0120829893, 0.0133164, 0.00123710313, -0.0145276533, -0.000978604, -0.0120312897, -0.0028434908, -0.00357467425, 0.0154360933, 0.00579776708, -0.00819073059, -0.0106797088, 0.0140106548, 0.0229399558, -0.0100666964, 0.00131557614, -0.00439448608, -0.029587077, 0.0165882614, 0.00645878632, -0.00769588957, 0.00629630126, -0.0134936571, 0.0035635957, 0.00103584304, 0.00974911172, 0.0154804075, 0.00719366269, 0.00331802154, 0.0065474147, 0.0193800516, 0.0121863894, -0.0119722048, 0.00633692229, 0.00334017863, -0.00886282884, 0.0155394934, -0.0146236671, 0.0249488633, -9.91875131e-05, -0.0208424181, 0.00887021422, 0.014217454, -0.00239296374, 0.0227774698, -0.027991768, 0.0179915428, 0.0152736083, 0.0093724411, -0.00101276278, -0.0367511958, -0.0109012797, 0.00199229014, 0.0167212039, 0.00758510409, -0.0018842743, -0.0111523932, -0.00281210174, -0.0126738446, -0.00851570163, -0.0131317582, -0.00399196567, -0.010583695, 0.0277849678, 0.0189516824, 0.0303995032, -0.00799131766, -0.0157758351, -0.00122510141, -0.0352740586, -0.0166030321, 0.0249193199, 0.0133237857, -0.0112410206, 0.0121346898, 0.00831628777, -0.0200004503, 0.016115576, 0.00964571163, 0.0216400735, -0.0044978857, -0.00558358198, -0.00694993464, -0.00345465681, -0.00985251088, -0.00611165911, -0.00679852813, 0.0286417082, -0.00534354709, 0.00315922918, -0.00394026609, -0.0169870891, 0.00813164562, -0.0103621241, -0.0011207785, -0.0130283581, 0.018863054, -0.0161451194, -0.000687330845, 0.00779928919, 0.00770327542, -0.0229399558, 0.00878897216, -0.00135989033, 0.00717889145, 0.0121273035, 0.00776974671, -0.00115770695, -0.00487455586, 0.00870034378, 0.0104285954, 0.0234274101, 0.00682068523, -0.0327629223, -0.0175188575, 0.0188482832, -0.00665081432, 0.0124965888, -0.0415075794, 0.0118244905, 0.00767373247, 0.00672836415, -0.00565743912, 0.0321129821, -0.00844184402, -0.00876681507, -0.0284792222, 0.0166916605, -0.00398827298, 0.00204399, 0.0177108869, -0.0160121769, 0.022275243, -0.0103030382, 0.00450896425, 0.00515151909, 0.0151997516, -0.00279917661, 0.00848615821, 0.00294689042, 0.00576822413, 0.031847097, 0.00436863583, -0.0256874319, -0.0125556737, -0.0255840328, -0.00717889145, 0.00853785872, -0.0341809765, 0.000488840393, 0.010502452, -0.00261638081, -0.0172086582, 0.00254437048, -0.0134567283, 0.0100076105, 0.0235455818, -0.00267362, -0.0159087777, 0.0312562436, -0.0133311711, -0.0246977489, 0.00237080664, 0.00302444026, -0.0273713693, -0.0152292941, -0.00031204542, -0.0103178099, -0.0247863773, 0.0353331454, 0.0124744317, -0.000500380527, 0.0101036243, 0.0169427749, 0.00184365304, -0.00370577024, -0.0187448822, -2.21137961e-05, 0.0133533282, 0.0229547266, 0.0061375089, 0.00227848557, -0.0121199181, -0.00111339288, -0.00847877283, -0.00306321518, 0.0189664531, 0.0120756039, 0.00653633615, 0.020517448, -0.0061153518, -0.00841968693, -0.000859971333, 0.0196754802, 0.00200890773, -0.00667666411, -0.00398088712, 0.00854524411, 0.0066065, 0.00694624195, 0.00957185496, 0.0125704454, -0.00659911474, 0.0027345519, -0.0153179225, -0.00454958528, 0.0174745433, -0.00926904194, -0.0159826353, -0.00172363559, 0.0137152271, 0.00852308702, -0.0159087777, 0.0164848622, 0.00898838509, 0.00505181216, 0.0297495611, 0.0128658731, 0.0176813435, 0.0283462796, -0.000678560347, 0.0319652706, 0.0154804075, -0.0158496927, 0.0293211918, -0.00809471682, 0.0161303487, 0.000623167667, -0.0175484, -0.0133237857, 0.00912871398, 0.00542478962, -0.00395134464, 0.0167950597, -0.011632463, -0.00440556463, 0.0232649259, 0.0180506278, -0.00966048334, 0.00629630126, 0.0212117042, -0.00179472286, -0.0031444577, 0.0181392562, 0.00201075431, 0.00754817575, 0.021832101, -0.00268654502, 0.00802824553, -0.00186950294, 0.00344173191, 0.0222309288, -0.00728967646, -0.0187448822, 0.00155745749, 0.00323862536, 0.0106501654, -0.00755556161, -0.0241216663, 0.0255544893, 0.00688715652, -0.000652248797, 0.0146605959, -0.0178142861, -0.0203254204, 0.00711242, -0.0205913056, 0.00282318029, -0.019527765, -0.0199856795, 0.0231319834, 0.00125649059, 0.00795438886, -0.0136265988, -0.00870772917, 0.00954231247, 0.0203697346, -0.0194982234, -0.0275486261, 0.0014872934, 0.0100002252, -0.00229325681, 0.0159087777, 0.00313707208, 0.0100223823, 0.000862279383, -0.00161377341, 0.0120091327, 0.00117432477, -0.00552818924, -0.0151185086, -0.0123858033, 0.0206947047, 0.00737830484, -0.0199118219, 0.0127920164, 0.00930597, -0.0149781806, -0.00529184751, 0.0107904943, -0.00410644384, -0.0276224818, 0.0199118219, -0.0236194376, 0.0174450018, 0.000878897205, -0.0232796967, -0.00731183356, -0.0143503966, 0.00112354814, -0.00879635755, -0.00342696044, 0.00129711186, -0.0137595413, -0.000821658061, 0.00582731, 0.00220278231, -0.00235049613, 0.00758510409, 0.0065474147, 0.00160638767, -0.00926165562, -0.0397054739, -0.00145867385, -0.0228660982, -0.00131003687, -0.00843445864, 0.00509612635, -0.0115364483, 0.0161598902, -0.0189073682, 0.026233973, 0.0177108869, 0.0234569535, -0.00730814086, -0.00341588189, -0.0171200316, -0.0146088963, -0.0140180411, 0.0182426553, 0.00194428302, -0.00589008816, 0.0065289503, 0.00440925732, -0.00711242, -0.00846400112, 0.00312599353, 0.0232649259, -0.00260530226, -0.00580515293, 0.00218062522, -0.0130948294, -0.0362489708, -0.0121494606, 0.00626306562, -0.0047157635, -0.0137299988, 0.02128556, -0.0124448882, 0.0149560235, 0.00768111832, -0.00176518, -0.0137447705, 0.00706810597, 0.00801347382, -0.00968264, -0.00678744959, -0.0217877869, 0.00399196567, -0.0107387938, -0.000441295, 0.0119648185, -0.00993375387, -0.0217287019, -0.00232095318, -0.0110342214, 0.027991768, 0.0249488633, 0.0189959966, -0.0122676324, 0.0118835764, -0.00723797688, 0.000692408474, -0.0172382016, -0.0222309288, 0.0111597786, -0.0038774875, -0.00583469542, 0.0165587179, -0.00544694671, -0.00844923, 0.00134234922, 0.0063295369, 0.0187891964, 0.0101110106, -0.00623721583, -0.000830890203, 0.00416552927, 0.0113887349, -0.0793518573, -0.00935767, 0.0201777071, 0.0141214402, -0.0175484, 0.000637015793, 0.00301336171, -0.0329106376, 0.00493733399, 0.0115659917, -0.0126664592, 0.00361160259, 0.0100666964, -0.0021547752, 0.0122676324, -0.0112410206, 0.0144316396, 0.00819073059, -0.00540632568, -0.00385163771, -0.0128806448, -0.0104359807, 0.00776236085, -0.014682753, 0.0122454753, 0.0158496927, 0.00490040565, -0.0252886042, -0.00486717, -0.0153179225, 0.00109492859, -0.00888498593, -0.00360975624, 0.00335494988, 0.00653633615, -0.018863054, -0.000898284605, -0.000625475659, 0.0111450069, -0.0129840439, -0.00444987835, -0.00639600819, 0.00492625544, -0.000836891064, 0.0103325807, 0.0249636341, 0.00133957958, 0.0043871, -0.0323493257, 0.0115955342, -0.0153474649, -0.00477115624, -0.0212117042, -0.0110416077, -0.0355399437, 0.00589008816, -0.00477854162, 0.00259607029, -0.000583469577, 0.0167950597, -0.00796177424, -0.0246829782, 0.0205913056, 0.0166621171, 0.0234864969, 0.0257317461, -0.0186119396, 0.0184937697, -0.00100630033, 0.00543956133, 0.00711242, -0.00861910079, -0.0222457, 0.0108643509, 0.00366330263, 0.0104802949, -0.011329649, -0.00910655688, 0.00278994464, 0.0114847487, 0.016337147, -0.0103473524, -0.00789530296, 0.00985251088, 0.0185823981, -0.00692777755, 0.00959401205, 0.0044609569, -0.00420984346, 0.00161654304, 0.00349158514, 0.0126886163, -0.0239887238, 0.0115881488, -0.000974911149, -0.00264407718, -0.0211230759, 0.0085526295, 0.0102956528, 0.0114995204, -0.00498903403, -0.00961616915, -0.0103768948, 0.01550995, 0.0177404284, -0.0218764152, -0.00275116973, -0.0159087777, 0.021994587, -0.000776420697, 0.0341514349, 0.0106353946, -0.00397350173, -0.00235234248, 0.0102808811, 0.0204140488, 0.00696101319, 0.00709026307, -0.00150668086, 0.0170609448, 0.00778451795, -0.0190698523, -0.00752601866, 0.0191880241, -0.00122325495, -0.00971218292, -0.0026699272, -0.00707918452, -0.00516259763, 0.00645140093, 0.00830151606, -0.00303367246, 0.00906224269, -0.0111819357, -0.0128141735, -0.0419211797, -0.00302259391, -0.00653264346, 0.0157610644, 0.011167164, -0.0173416, -0.0289223641, 0.0242250655, -0.0120756039, -0.0124227311, -0.00282871956, -0.0112336352, 0.0229251832, 0.0220832154, -0.00547648966, -0.0241955221, -0.00451634964, 0.0059196311, 0.00604149466, 0.00148175412, -0.0371057093, 0.0276372544, -0.00456066383, -0.0125482883, -0.0215366744, 0.000718258379, -0.00293211918, -0.0192766525, 0.00645878632, -0.0141657544, 0.00143374724, 0.0077328179, -0.0146901384, 0.00383317331, -0.0229842681, 0.0279769953, 0.0164848622, 0.0221275296, -0.00186950294, -0.0124375029, -0.0059196311, -0.000528538483, -0.00859694369, 0.00525861187, 0.024254607, 0.0143503966, -0.0154360933, -0.00963832624, 0.00884805713, 0.0196459368, 0.00816857349, -0.000753340428, -0.00148544705, -0.00483393436, -0.0144316396, 0.0125926025, 0.0108938934, -0.0151997516, 0.0120091327, 0.00324785733, -0.0111376215, 0.0120903756, 0.0137299988, -0.00548387505, 0.00929119904, -0.0208571907, -0.0222900137, 0.000754725246, 0.0164848622, -0.00136635278, -0.0252295192, -0.00844923, 0.00333833206, -0.00479331333, -0.013833398, -0.00218431791, -0.00596025214, -0.00407690136, 0.0260419454, -0.0127920164, -0.00706810597, -0.00698317029, 0.00540632568, -0.0107387938, 0.0138703268, 0.0235455818, -0.00231726049, 0.0414780378, -0.00735984044, 0.00912871398, 0.0182869695, 0.000609319482, 0.00907701347, -0.0148452381, -0.00786576048, -0.00744477613, -0.00618182309, 0.018641483, 0.00512936199, -0.00905485637, -0.00604518782, -0.0110489931, 0.0207242481, 0.0013829706, 0.0223934129, 0.00592701649, 0.0204435922, -9.15133205e-05, 0.0020679934, -0.00742631173, -0.0207833331, -0.00383317331, -0.0111597786, 0.0202811062, 0.00659542158, -0.0150594227, 0.00833844487, -0.0149781806, 0.012179004, 0.00999284, -0.00725644082, -0.0372238792, 0.0210935324, 0.00486347731, 0.0160712618, 0.00662127137, -0.00370761659, -0.0192618817, -0.0176961143, 0.0202663355, -0.0105615379, 0.00920995604, -0.000104495979, -0.00718997, 0.0059048594, 0.00231541391, 0.000608857838, -0.0175336301, -0.0038553304, 0.0088259, -0.00834583, -0.0133607145, 0.00370023097, -0.00493364129, -0.00104969123, -0.00330509664, -0.026943, -0.00226371409, 0.0100297676, -0.00918041356, 0.00719366269, 0.00777713209, 0.00151498977, -0.0138186272, -0.0127920164, 0.0107683372, -0.0147566097, 0.000283887493, 0.0251704343, -0.012179004, -0.0167212039, -0.0130357435, 0.0200152211, 0.0122971749, -0.0258942302, 0.0257760603, -0.00864125788, 0.0051219766, -0.0219355, -0.0280656237, -0.0237376094, -0.0015177594, 0.0104876803, -0.0121125327, 0.0141362119, -0.0338560045, 0.0138407843, 0.000583931163, 0.00967525505, -0.00683914963, 0.00651787175, -0.0148009239, 0.00474161329, -0.00442772172, -0.00616705185, 0.00169963203, 0.00395873, -0.0015353004, 0.00538047543, 0.00338264625, 0.00535462564, -0.0117358621, -0.00432801479, 0.00611165911, -0.00374269881, -0.00572391041, -0.011794948, -0.0104950666, -0.00432432164, -0.0140918978, -0.00285826228, 0.00413967948, -0.0253772326, 0.0109751364, 0.016440548, -0.0190698523, -0.0150151085, -0.00839753, -0.0225854423, 0.0144759538, -0.00144482567, -3.28894021e-05, -0.00184365304, 0.0360126272, -0.00247236, -0.0135675138, -0.00922472775, 0.00436494313, 0.00920995604, 0.0153179225, -0.00788053218, -0.0205469914, -0.0181983411, -0.00874465797, 0.0109603647, 0.0140032694, -0.0254363175, -0.000393518829, -0.0125482883, 0.0285235364, -0.0187891964, 0.0300154462, 0.00824981648, -0.00443510711, -0.00417291513, 0.00837537274, 0.00721212663, -0.0134567283, 0.063694194, 0.0248159207, 0.0159087777, -0.0193209667, 0.00305029028, -0.0197788794, 0.0158644635, 0.0372829661, -0.0144981109, 0.0173120592, -0.0361898839, 0.0117432484, 0.00336602842, 0.0137964701, 0.000817042, 0.00399935152, -0.00760726118, -0.0149707953, 0.0180063136, -0.0165587179, -0.00889975671, -0.0101700956, 0.00166547322, -0.0266328, 0.00531400414, 0.000724720885, 0.0146088963, -0.00140697404, -0.0283610523, 0.00347312097, 0.0170904882, 0.0251556616, 0.0217877869, -0.00769588957, -0.0148747806, -0.00479700603, -0.0148673952, 0.00952754077, 0.0112336352, 0.0227479264, 0.0059196311, 0.0193800516, 0.0110489931, -0.00765157538, 0.00619290164, -0.00124541204, -0.00416552927, -0.00123525679, 0.00597871654, -0.0200004503, -0.00342880678, -0.0308131017, -0.0125482883, -0.0177995134, 0.00998545345, -0.0081464164, -0.00542478962, 0.00643662922, 0.00702009909, 0.0159087777, -0.0253772326, -0.005705446, 0.00315184356, -0.0158792343, 0.00259607029, -0.00442772172, -0.0109382076, 0.0205322206, -0.0140918978, 0.00219355, -0.00154914858, -0.012481817, -0.00420984346, -0.0229104124, 0.0132056149, -0.0133237857, 0.0124153458, -0.00104876806, 0.00699055614, -0.00184365304, -0.0086117154, 0.00981558301, -0.0105763087, -0.00779190334, 0.0153179225, 0.00431324309, -0.0212707892, -0.0103916666, -0.0020329114, 0.0101627102, 0.00769588957, -0.00133773324, 0.0161451194, 0.00235788175, -0.000107207918, -0.00896622799, -0.0156428926, 0.00898838509, 0.0272088833, -0.00968264, 0.00884805713, 0.00979342591, -0.0155394934, -0.0055318824, -0.0327333808, 0.0203845054, -0.00186950294, 0.00434278604, -0.00617813, 0.00718258414, 0.0119500477, -0.00312599353, 0.00274932338, 0.0145867392, 0.00343988533, -0.0128215589, 0.0133976424, -0.0102291815, -0.00889237132, -0.00221016794, -0.00586793106, 0.00329217152, -0.0140180411, 0.016337147, 0.00601195218, 0.00301705464, 0.0339150913, -0.0188482832, 0.012481817, -0.0139220264, 0.0177552, 0.018641483, -0.00376116298, 0.00532877585, 0.00197751867, 0.00990421139, -0.0104581378, 0.0276372544, 0.00560204638, 0.0241955221, 0.0012167925, -0.021832101, -0.0205913056, 0.0165734887, 0.0159087777, 0.00478223478, -0.00839753, -0.00359129207, 0.0249045491, -0.00322754681, 0.0114330491, 0.00840491615, 0.0155394934, -0.00219908939, 0.0258794595, -0.00195166876, 0.0159678627, -0.0200004503, 0.0356581137, 0.0105467662, -0.00594917359, -0.00893668551, -3.17065387e-05, 0.0101405531, 0.0146679813, 0.0098008113, 0.000481454714, 0.0146679813, 0.0177404284, -0.000857201696, 0.0141435973, 0.00843445864, 0.00212153955, 0.0133016286, 0.00283610518, -0.0089440709, -0.00862648617, -0.0234274101, -0.012016519, -0.0384055898, -0.00702009909, 0.0221570712, 0.0116398484, 0.0430142619, 0.0124301175, 0.00228033192, -0.0173859149, -0.00214000395, 0.0133016286, 0.0196754802, -0.0105172237, 0.00723428372, 0.0129692722, -0.0100076105, -0.0192471091, -0.0232796967, 0.02128556, 0.00375193078, 0.00820550229, -0.011713705, 0.0129101872, -0.00576822413, 0.0073450692, 0.00481547043, 0.00929119904, 0.0103104245, -0.00956447, -0.00823504478, -0.00154637895, 0.00604518782, -0.0122676324]
18 May, 2022
unordered_map rehash in C++ STL 18 May, 2022 The std::unordered_map::rehash() is a built in function C++ STL which sets the number of buckets in container to n or more. Syntax void rehash( size_type s ); If s is greater than the current buckets into the container then rehashed is done. The new bucket count can be greater than or equal to n. If s is less than current bucket count then there may or may not be any effect of function. It totally depends upon compiler Parameters : It takes New number of buckets into the container. Return type : Its return type is none. Example-1: CPP // C++ code to illustrate the method // unordered_map rehash #include <bits/stdc++.h> using namespace std; int main() { unordered_map<char, int> sample; // Map initialization sample = { { 'a', 2 }, { 'b', 4 }, { 'c', 6 } }; cout << " Size of container : " << sample.size() << endl; cout << " Initial bucket count : " << sample.bucket_count() << endl; // changing rehash sample.rehash(30); cout << " Size of container : " << sample.size() << endl; cout << " Now bucket count is :  " << sample.bucket_count() << endl; return 0; } Output: Size of container : 3 Initial bucket count : 5 Size of container : 3 Now bucket count is : 31 Example-2: CPP // C++ code to illustrate the method // unordered_map rehash #include <bits/stdc++.h> using namespace std; int main() { unordered_map<int, int> sample; // Map initialization sample = { { 2, 2 }, { 3, 4 }, { 4, 6 }, { 5, 8 } }; cout << " Size of container : " << sample.size() << endl; cout << " Initial bucket count : " << sample.bucket_count() << endl; // changing rehash sample.rehash(20); cout << " Size of container : " << sample.size() << endl; cout << " Now bucket count is :  " << sample.bucket_count() << endl; return 0; } Output: Size of container : 4 Initial bucket count : 7 Size of container : 4 Now bucket count is : 23 Learn C++ Online – Master everything from basics to advanced concepts. Apply your knowledge with practical exercises and boost your skills. Take the Three 90 Challenge: finish 90% in 90 days for a 90% refund. Start now and level up your C++ programming!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum/Algorithm for Dynamic Time out timer Calculation/Difference between Round trip time (RTT) and Time to live (TTL)/Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms/Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm/Round Robin Scheduling Algorithm with Different Arrival Time/Selfish Round Robin CPU Scheduling/Find the order of execution of given N processes in Round Robin Scheduling/Calculate server loads using Round Robin Scheduling/set::lower_bound() Function in C++ STL/Implementation of lower_bound() and upper_bound() in List of Pairs in C++/Difference between std::set::lower_bound and std::lower_bound in C++/Difference between std::set vs std::vector in C++ STL/std::minmax() and std::minmax_element() in C++ STL/std::rotate vs std::rotate_copy in C++ STL/std::bitset::to_ullong and std::bitset::to_ulong in C++ STL/std::upper_bound and std::lower_bound for Vector in C++ STL/std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++/std::string::append vs std::string::push_back() vs Operator += in C++/Vector push_back() in C++ STL/vector :: cbegin() and vector :: cend() in C++ STL/unordered_multiset cend() function in C++ STL/unordered_multiset bucket() function in C++ STL/unordered_multiset emplace_hint() function in C++ STL/unordered_multiset end() function in C++ STL/unordered_multiset size() in C++ STL/unordered_multiset emplace() function in C++ STL/unordered_multiset find() function in C++STL/unordered_multiset erase() function in C++ STL/unordered_multiset clear() function in C++ STL/unordered_multiset swap() function in C++ STL/unordered_multiset bucket_size() function in C++ STL/unordered_multiset bucket_count() function in C++ STL/unordered_set bucket_count() function in C++ STL/unordered_set cbegin() function in C++ STL/array::cbegin() and array::cend() in C++ STL/array::rbegin() and array::rend() in C++ STL/multimap rbegin in C++ STL/vector rbegin() and rend() Functions in C++ STL/multiset rbegin() and rend() function in C++ STL/map rbegin() function in C++ STL/map upper_bound() function in C++ STL/Set upper_bound() in C++ STL/multimap upper_bound() function in C++ STL/multimap empty() function in C++ STL/multimap value_comp() function in C++ STL/multimap swap() function in C++ STL/multimap::swap() in C++ STL/multimap equal_range() in C++ STL/unordered_set equal_range in C++ STL/set vs unordered_set in C++ STL/unordered_set count() function in C++ STL/unordered_set bucket() function in C++ STL/unordered_set emplace() function in C++ STL/set::emplace() in C++ STL/multiset::emplace() in C++ STL/multiset find() function in C++ STL/multiset cbegin() and cend() function in C++ STL/multimap::cbegin() and multimap::cend() in C++ STL/multimap::begin() and multimap::end() in C++ STL/set::begin() and set::end() in C++ STL/unordered_multimap begin() and end() function in C++ STL/unordered_multimap empty() function in C++ STL/unordered_multimap find() function in C++ STL/unordered_multimap equal_range() function in C++ STL/unordered_multimap bucket_count() function in C++ STL/unordered_multimap bucket_size() function in C++ STL/unordered_multimap operator= in C++/unordered_multimap load_factor() function in C++ STL/unordered_map load_factor in C++ STL/unordered_map operator= in C++ STL/unordered_map swap in C++ STL/unordered_map rehash in C++ STL
https://www.geeksforgeeks.org/unordered_map-rehash-in-c-stl?ref=asr10
PHP
unordered_map rehash in C++ STL
unordered_multiset clear() function in C++ STL, What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, jQWidgets jqxTreeMap width Property, Round Robin Scheduling Algorithm with Different Arrival Time, Difference between Flow and TypeScript, set::begin() and set::end() in C++ STL, unordered_multiset emplace() function in C++ STL, jQWidgets jqxTree destroy() Method, unordered_set bucket_count() function in C++ STL, unordered_map load_factor in C++ STL, jQWidgets jqxTree collapseAll() Method, Find the order of execution of given N processes in Round Robin Scheduling, jQWidgets jqxScrollView buttonsOffset Property, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Vector push_back() in C++ STL, jQWidgets jqxListBox enableHover Property, Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm, std::rotate vs std::rotate_copy in C++ STL, Selfish Round Robin CPU Scheduling, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxSlider buttonsPosition Property, std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++, std::upper_bound and std::lower_bound for Vector in C++ STL, Difference between Round trip time (RTT) and Time to live (TTL), jQWidgets jqxSlider rtl Property, Difference between std::set::lower_bound and std::lower_bound in C++, jQWidgets jqxTooltip opacity Property, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, unordered_multiset erase() function in C++ STL, multiset find() function in C++ STL, set vs unordered_set in C++ STL, jQWidgets jqxToolBar height Property, PHP, std::minmax() and std::minmax_element() in C++ STL, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, unordered_set emplace() function in C++ STL, unordered_multimap empty() function in C++ STL, unordered_set bucket() function in C++ STL, map rbegin() function in C++ STL, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, map upper_bound() function in C++ STL, Node.js date-and-time Date.transform() Method, unordered_multiset size() in C++ STL, TypeScript Optional Parameters, jQWidgets jqxToolBar theme Property, Difference between std::set vs std::vector in C++ STL, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, Steps to Diagnose and Resolve a Slow Network, How to use Optional Chaining with Arrays and Functions in TypeScript ?, Calculate server loads using Round Robin Scheduling, unordered_map operator= in C++ STL, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, jQWidgets jqxScrollView showButtons Property, unordered_map rehash in C++ STL, set::emplace() in C++ STL, Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms, jQWidgets jqxScrollView disabled Property, multimap::cbegin() and multimap::cend() in C++ STL, jQWidgets jqxSplitter destroy() Method, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, set::lower_bound() Function in C++ STL, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, jQWidgets jqxTree collapseItem() Method, multimap upper_bound() function in C++ STL, std::string::append vs std::string::push_back() vs Operator += in C++, unordered_multiset swap() function in C++ STL, unordered_multiset cend() function in C++ STL, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), Set upper_bound() in C++ STL, jQWidgets jqxSortable opacity Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, multiset cbegin() and cend() function in C++ STL, multimap rbegin in C++ STL, vector :: cbegin() and vector :: cend() in C++ STL, multimap swap() function in C++ STL, jQWidgets jqxSlider height Property, jQWidgets jqxSwitchButton onLabel Property, unordered_multiset bucket_size() function in C++ STL, unordered_set cbegin() function in C++ STL, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, jQWidgets jqxToolBar tools Property, multimap empty() function in C++ STL, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTree width Property, multimap::swap() in C++ STL, unordered_multimap bucket_size() function in C++ STL, multimap equal_range() in C++ STL, Implementation of lower_bound() and upper_bound() in List of Pairs in C++, jQWidgets jqxTree clear() Method, TLS Handshake?, multiset rbegin() and rend() function in C++ STL, unordered_multimap operator= in C++, Algorithm for Dynamic Time out timer Calculation, Adhoc TCP, unordered_map swap in C++ STL, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, jQWidgets jqxTabs position Property, Differences between Wireless Adhoc Network and Wireless Sensor Network, jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, unordered_multimap begin() and end() function in C++ STL, std::bitset::to_ullong and std::bitset::to_ulong in C++ STL, unordered_multiset emplace_hint() function in C++ STL, multimap::begin() and multimap::end() in C++ STL, unordered_multiset bucket_count() function in C++ STL, unordered_multiset find() function in C++STL, unordered_multimap bucket_count() function in C++ STL, unordered_multiset bucket() function in C++ STL, Impact of Three-way Handshake and Slow Start Algorithm, array::rbegin() and array::rend() in C++ STL, multimap value_comp() function in C++ STL, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, unordered_multimap load_factor() function in C++ STL, multiset::emplace() in C++ STL, unordered_set equal_range in C++ STL, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, unordered_multimap equal_range() function in C++ STL, unordered_set count() function in C++ STL, vector rbegin() and rend() Functions in C++ STL, array::cbegin() and array::cend() in C++ STL, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, unordered_multiset end() function in C++ STL, How to Sort an Array Having Optional Properties in TypeScript ?, unordered_multimap find() function in C++ STL
GeeksforGeeks
[-0.0322986059, 0.0150972307, -0.0144133838, 0.0400576331, 0.075854376, -0.00669380696, -0.011092782, 0.027353866, -0.0309572127, -0.00432006968, -0.0193186682, 0.0399524271, 0.00908069499, -0.0276694875, 0.0382954143, -0.0293528028, -0.0202655327, 0.00875192229, -0.0242765564, -0.0429508314, -0.00146796892, 0.0100144083, -0.0206863619, -0.00241812132, 0.00275511295, 0.00388937793, -0.0241713505, -0.0275116768, 0.0280377138, 0.0342712402, 0.0017211237, 0.0339556187, 0.00378745841, -0.0263017956, -0.0065688733, 0.0223696772, 0.0289845783, 0.0154391536, -0.0249867048, -0.0428456254, -0.0147158541, 0.00677928748, 0.00896233693, -0.0025973022, -0.00977769215, 0.00716723921, 0.0113689508, -0.0319566801, -0.00595735665, 0.0244606696, -0.00125591073, -0.0251576677, 0.0231455788, -0.00288990978, 0.0103826337, -0.031378042, 0.00998153165, 0.0153207956, -0.0357441381, -0.000978098, -0.0090412423, -0.0190030467, 0.0363490805, 0.00737765338, -0.0205548536, -0.0163991693, -0.0281166192, 0.0245001223, 0.036033459, -0.00795629341, -0.0518671386, 0.0308520049, 0.0035080018, 0.00994207896, -0.0272486601, 0.0118686846, -0.00624010107, -0.0157810766, -0.0196211394, 0.0709096417, -0.0477377586, 0.000273292098, -0.01252623, -0.0355863273, 0.00748943631, -0.0122303348, 0.00308388541, -0.0243028589, 0.0340345241, 0.0244738199, -0.0480007753, 0.00148276368, 0.0204890985, -0.015176136, -0.0196605921, 0.0460281409, -0.00896891207, 0.014597496, -0.0250787623, 0.0510780849, -0.00770642608, -0.0139925545, 0.00771300122, 0.00578310713, 0.0062466762, -0.0022899, 0.0290371813, -0.0159914922, -0.0305889882, 0.0354548208, 0.0359808542, 0.0102642756, -0.0124736261, 0.0140188569, -0.0362438746, -0.00229647546, 0.00213044533, -0.00540501904, -0.0050696712, 0.0526824966, -0.004224726, 0.0412938185, 0.0222776197, 0.02609138, -0.0436872803, -0.0204233434, -0.0295106135, 0.0147421565, 0.0203575902, -0.033166565, -0.00800232124, -0.0179509744, -0.00296717114, -0.0624404624, -0.0262886435, 0.0364279859, 0.0155969644, 0.0206469093, -0.00341594568, -0.0107179815, -0.0316936634, -0.0234743524, 0.00694367383, -0.0238820296, -0.0159388874, -0.00998153165, -0.0178194661, 0.0199104585, -0.00661818916, 0.0224222802, -0.0215148684, 0.00672010845, 0.0371381342, 0.00669051893, 0.00341265788, -0.00917275064, 0.00978426728, -0.00820616, 0.019134555, -0.00563844712, 0.0201340243, -0.021606924, 0.0157547761, 0.000548228039, -0.0578639507, 0.0208967756, 0.0134796696, 0.000317059923, -0.0127169183, 0.0279588085, 0.0277483929, 0.034876179, 0.0351655, 0.00130111689, 0.0141635165, -0.0398472212, 0.0340345241, 0.00743025728, 0.000136646049, 0.0166227352, -0.00824561249, -0.0324038118, 0.0621248409, 0.0121251279, 0.0168726016, 0.00376115669, -0.0132889822, -0.00280114124, 0.0361649692, 0.0152944941, 0.0261176825, 0.0559176169, -4.38962561e-05, 0.0577587411, 0.0565488599, -0.00395513233, -0.0371381342, 0.00160029985, 0.0175169948, 0.0380587, -0.022698449, -0.0211071912, -0.0521038547, -0.0159388874, -0.00442856457, 0.00571077736, 0.0112768942, -0.0282481275, 0.0619670302, -0.00529323611, -0.00626640255, 0.0192266125, -0.0249604043, 0.000599598745, -0.029194992, 0.0363753811, -0.0497366935, 0.0104746902, 0.00856123399, -0.00814698078, 0.037637867, -0.0447393544, 0.0273012631, -0.0236584637, -0.0270645469, -0.0236716159, 0.0316673629, 0.0126182865, -0.0212123971, 0.0145448931, 0.0309835151, 0.0264990591, 0.0157284737, 0.00230305083, 0.026380701, -0.0221461114, -0.0341660306, 0.000750012114, 0.00962645654, -0.00206633471, 0.00762094511, 0.0656492785, -0.00740395533, -0.0353496112, 0.00784451049, 0.0324038118, -0.00846917834, 0.00516830292, -0.00676613674, 0.0148736648, -0.0115399128, 0.0155312102, 0.0105930483, 0.0129536344, 0.00108823681, 0.0315095522, -0.0149788726, -0.00648996793, 0.00206962251, -0.0467382893, 0.0164780747, 0.00867301691, -0.0129996622, -0.0099486541, 0.00524720829, 0.00788396318, 0.0172671285, -0.00336662983, -0.0302470643, -0.0480007753, 0.0236716159, -0.0134073403, 0.00489213364, 0.0167805459, 0.0176879577, 0.0166621879, 0.0168463, 0.00890973303, 0.0166884884, -0.0187400281, 0.0065064067, 0.0133941891, 0.0186479725, -0.0165043771, 0.00408664159, -0.0105470195, -0.0721721277, -0.0296158213, -0.0123355417, -0.0360071585, -0.0155312102, -0.0160177927, 0.00716723921, -0.00320881908, -0.0056548859, 0.000101354381, -0.00512885, -0.0310098156, -0.0381639041, -0.00808780175, -0.0358230434, -0.0153207956, -0.026433304, -0.0190688018, -0.0353496112, -0.0135848774, 0.0264596064, -0.0104155112, -0.0191214047, -0.0458703302, 0.0264727566, -0.0303522721, -0.00505980803, 0.0378219821, -0.0335610919, -0.0157153234, 0.0297473297, -0.0105996234, -0.0389529578, -0.0249209516, -0.0258809663, 0.00614146935, -0.0285374485, 0.034876179, 0.0300103482, -0.048447907, 0.00497432705, 0.0600733, 0.0243160091, -0.038900353, -0.0154786063, 0.0122171836, -0.0501838252, -0.0198184028, -0.0152681917, 0.00778533146, -0.0087848, 0.0033386841, -0.0101590687, 0.0112768942, 0.00958042871, 0.00102741388, -0.0376115665, -0.00226688595, 0.0183586534, 0.00479350192, 0.00313977688, -0.00617434643, 0.00832451787, 0.0392422788, 0.000693298876, -0.0441870168, 0.0139136491, 0.0437924899, 0.0111914137, -0.0310624205, -0.0137163857, 0.00962645654, -0.0127695212, -0.0171093177, 0.0175038446, -0.00819958467, -0.0187531803, -0.017240826, 0.00837712176, -0.0600206964, -0.015807379, -0.00825218856, 0.0260650795, -0.027353866, 0.011954166, 0.00718696555, 0.0283796377, 0.0135980276, -0.0223039221, -0.0177668631, -0.0288267676, -0.00817985833, -0.0179378241, 0.018792633, 0.00845602714, 0.0446867496, -0.0278799031, 0.00835082, 0.0186874252, 0.00386965158, -0.0071606636, -0.0329298489, -0.0184375588, 0.00522419391, -0.0284585431, -0.0496577881, -0.00712778652, -0.00639791181, -0.0314306468, 0.0276694875, -0.0507361628, -0.0143081769, -0.0387425423, -0.0530770235, 0.018332351, 0.00136687141, -0.00339950691, -0.00275675696, 0.0119344397, -0.00644722767, -0.0173065811, -0.0286426544, -0.0294317082, 0.00058726978, -0.00114084035, 0.0176090524, -0.00956070237, 0.0361912698, 0.00908069499, -0.0148342121, -0.0314832479, 0.0264727566, 0.00720011629, -0.0173197314, -0.0173328836, -0.0218041874, -0.0428456254, -0.0161361508, -0.00205647154, 0.00237044925, 0.0176090524, 0.0255653448, 0.0215543211, -0.0352444053, 0.0140977623, 0.0318777747, -0.0136506315, 0.0336399972, -0.00622695, -0.0601785071, 0.00814698078, 0.0220277533, 0.00352444057, -0.0163991693, 0.0237242188, 0.0374800563, 0.00200058031, -0.0402417481, -0.0135717262, 0.0419776663, -0.0069634, 0.0037644445, -0.0122566363, 0.0251971204, -0.0393474847, 0.0194896292, -0.0231192783, 0.000704805891, 0.0147421565, -0.0282218251, -0.020002516, 0.00514200097, 0.0341660306, 0.0226589963, 0.00829164125, -0.0061842096, 0.0105272932, -0.00445157895, -0.00543132052, 0.0278009977, 0.00316772237, 0.00483624265, -0.00294415723, -0.0129470583, -0.0531559289, -0.0137295369, -0.00540501904, -0.00850863103, -0.00304443273, -0.0125722578, -0.0138215935, -0.0307731, -0.0133678876, -0.0391633734, 0.000703984, 0.0102708507, -0.0205680039, 0.0224485826, -0.0186348222, -0.0332454704, -0.00448116846, 0.00635845913, 0.0363490805, -0.00505652, -0.0381639041, -0.0294054076, 0.0134796696, -0.0082587637, 0.0221461114, 0.0164649244, -0.0356652327, -0.00552666467, 0.017122468, -0.00829821639, 0.0218173396, 0.0132561047, -0.0407940857, 0.0169120543, -0.0106653776, -0.034876179, 0.0155312102, 0.0446867496, -0.00990262628, -0.0311676264, 0.0202655327, 0.0333243757, -0.00261209696, -0.010060437, 0.00127399317, -0.017530147, 0.0185427647, -0.00889000669, -0.0280114114, 0.0176616553, 0.00988947507, -0.00637489744, 0.00100439985, 0.0200682692, 0.010803462, -0.00274031819, 0.0115070352, 0.00800889637, 0.0225537885, -0.0252102707, 0.00338306837, 0.00465541752, -0.0224485826, -0.000274730468, 0.00264168647, -0.00394855719, 0.0284848437, -0.00689764554, -0.0175696, -0.015518059, 0.0143213272, -0.0124802021, -0.00198742934, -0.00132824061, -0.0323249064, 0.0147816092, 0.0203181375, -0.012414447, 0.00111453852, 0.0127629461, 0.00854808372, -0.0152418902, 0.00873877108, 0.0158205293, 0.00355403, 0.0367699079, -0.0150051741, -0.0268409811, 0.0100341346, -0.0258283634, -0.00130687049, 0.0187268779, 0.0407151803, 0.0182928983, -0.00412938185, -0.0165306777, 0.00711463578, 0.00741710607, 0.00257100048, 0.00736450264, -0.0104812654, -0.0236584637, 0.0245001223, -8.63027672e-05, -0.0306941941, 0.0139794042, -0.0114215547, 0.0209625307, -0.0155838132, 0.0148473633, -0.00143426971, -0.0199893638, -0.0153339468, 0.00827191491, -0.0203970429, 0.0139794042, -0.0399787277, -0.0317462683, -0.0127760973, 0.0111848386, -0.0123749943, 0.00341594568, -0.0230798256, 4.46154481e-05, 0.0160177927, -0.0248025935, -0.0179904271, -0.00798917, 0.00177865895, -0.00727244653, -0.010803462, 0.0332980715, 0.00960015506, -0.0120199202, 0.00495460071, 0.0266700201, 0.0279588085, -0.0103300298, 0.0115333367, -0.0092911087, -0.0530507192, -0.018332351, 0.0423721932, -0.00470473338, -0.0179246739, 0.0265122093, 0.00465541752, 0.034876179, -0.0180824846, -0.0302207619, 0.00150495581, 0.00749601144, -0.0143476296, 0.00435952237, 0.0131443217, 0.0204890985, -0.0573379137, -0.0150446268, 0.0184901617, 0.0168068465, -0.00969878677, -0.0303259697, 0.000794807391, -0.0195159316, 0.029484313, 0.0162150562, -0.0250261575, 0.0304048751, -0.00840342324, 0.00941604283, -0.0403995588, 0.00408664159, 0.0250524599, 0.0424774, -0.0105667459, -0.0313254371, 0.0207915697, -0.00627955375, 0.000933713745, -0.0240135398, -0.0329298489, 0.0119410148, 0.0168857519, 0.00469487, 0.00854150765, -0.0254206844, -0.0266963225, 0.0425037, -0.0157284737, -0.0031299137, -0.048369, -0.0324038118, -0.00314635225, 0.00971851312, 0.0311413258, -0.0253023263, -0.0386110358, -0.00710148457, 0.0130785676, -0.00668065576, -0.0485531129, -0.00966590922, -0.0102708507, -0.00932398625, -0.0182928983, -0.0182402954, -0.0353233106, 0.032351207, 0.00746971, -0.0074762851, 0.00200551189, 0.0159783401, 0.0182402954, -0.0161361508, -0.0111716874, 0.00569433859, 0.00739737973, 0.0279325061, 0.0135322735, -0.0179115217, -0.0249078, -0.0187663306, -0.00866644178, 0.0212913025, 0.0229614675, 0.00353430375, 0.0367962122, -0.0186085198, -0.00486911973, -0.000288908777, 0.0085743852, -0.0176616553, -0.0249867048, -0.0257757585, -0.00198085397, 0.0465278737, -0.0129930871, -0.0130982939, -0.0386899412, -0.00148029788, 0.00539844343, 0.00679901382, -0.00907411892, 0.0148605146, -0.00930426, 0.00370855303, -0.0289582759, -0.012296089, -0.00158632698, -0.027011944, -0.0208967756, 0.00280936039, 0.00229811925, -0.00548392441, 0.0402943492, -0.0184375588, 0.0119870426, -0.0149657214, -0.0128550027, -0.00795629341, -0.0115859406, 0.00495131314, -0.00365594961, 0.000312539312, -0.0308783073, 0.0419776663, -0.0116845723, -0.00463240361, -0.0359808542, -0.0113097718, -0.00289812894, -0.00210743141, -0.00784451049, 0.0209493805, -0.00794971734, -0.00393211842, 0.0220277533, -0.008850554, -0.0085743852, 0.0341923349, 0.0209493805, 0.0642815903, 0.0472380221, -0.0016150946, 0.0238688793, -0.00283237454, 0.0407677814, -0.0132035008, 0.000420623226, 0.00651298184, 0.0330350548, 0.0134796696, 0.0244606696, 0.0132232271, -0.0219619982, -0.00243291608, 0.00330087519, 0.0254075341, 0.0280114114, 0.012184307, -0.00324662775, -0.00370526547, 0.025118215, 0.0117371762, 0.020002516, -0.0308257043, -0.0150446268, 0.0126314368, 0.00950809848, 0.0316147581, -0.00167920522, 0.0210019834, 0.0149394199, 0.0485268123, -0.0266963225, 0.00639133621, 0.0113360733, 0.0306152888, 0.0109086698, 0.00198742934, -0.00283073075, -0.00729217287, 0.0245001223, 0.0235795584, -0.0137558384, -0.0276168846, 0.0157021713, -0.040005032, 0.00873877108, -0.0323775113, -0.00220606313, 0.00910699647, -0.0184375588, 0.0134665193, -0.0157416239, -0.0274590738, 0.0166358855, 0.0240398403, 0.0370855294, 0.0338241085, -0.0341660306, -0.00781163294, -0.00491186045, 0.0206995122, -0.0026663444, -0.0386636369, 0.0135322735, -0.0143607799, 0.0204759482, 0.00197756616, 0.0186348222, -0.0111848386, 0.0212387, -0.015636418, -0.0326142274, 0.000782478426, 0.0186874252, 0.00515843974, 0.0081338305, -0.0118358079, 0.00285703246, -0.00547077321, 0.0038992411, 0.0016192043, 0.00869274326, 0.018792633, 0.0319566801, -0.00877164863, -0.0216726791, 0.00381047255, -0.000100172852, 0.0129799359, 0.00495788828, 0.00407020282, -0.0194501765, -0.0332454704, -0.0203575902, -0.0060395496, 0.0145843457, 0.00648010476, 0.0294054076, 0.00918590184, 0.00801547244, -0.0161098503, 0.0179509744, 0.015399701, -0.0486057177, -0.00101179723, 0.0373748504, 0.0255127419, 0.0248551965, 0.0123684192, 0.0193186682, 0.00808780175, 0.0412149131, 0.0154391536, -0.0145054404, -0.0321407951, 0.0262228902, -0.00783793535, 0.0249209516, 0.00934371259, -0.0252760258, -0.0142950257, -0.0070160036, 0.00773930317, 0.0148999672, 0.0194896292, -0.0112900455, -0.00361978449, 0.0241976511, -0.0147553068, -0.0285374485, -0.032351207, 0.0119738923, -0.011894987, 0.0273801684, -0.0196605921, -0.0112242913, -0.0346394628, 0.0217778869, -0.0177142583, -0.00312826969, -0.0160440952, -0.0125328051, 0.00138495385, 0.0124078719, 0.0406099707, 0.0201471746, -0.049710393, 0.0140977623, -0.0367699079, -0.0121580046, 0.0122303348, 0.0489476398, -0.0111914137, 0.0165175274, 0.0362964757, 0.0135191223, 0.0111190835, -0.00535899075, -0.000383225386, -0.0562858395, -0.0398472212, 0.00268607074, 0.0271171499, -0.0112900455, 0.00468500704, -0.0264201537, 0.0168331489, -0.00654257135, 0.0493158661, -0.00831794273, 0.00518474123, 0.0155838132, -0.0195553843, -0.0334295817, 0.0166227352, 0.00160112174, -0.0283796377, -0.017240826, -0.00480007753, 0.0146632511, -0.0139268, -0.0273801684, -0.00899521355, -0.0281429198, -0.0332980715, -0.0467119887, 0.000959193567, 0.0194501765, -0.0025003145, -0.00344882277, -0.0350865945, -0.0740132481, 0.00910699647, -0.0345605575, 0.00118029304, -0.0122237597, 0.00534912758, -0.0301418565, 0.0379008874, -0.00324498396, -0.0275642816, -0.0231061261, -0.0349024832, -0.0224748831, 0.00194140128, -0.0228431094, 0.0266831703, 0.0258678161, -0.00332388934, 0.0187794808, 0.00478363875, -0.00299018528, 0.00862041302, -0.0285374485, 0.00408992916, -0.0329561494, 0.00997495558, 0.0143870823, -0.00163646485, 0.0208178703, 0.0192134604, -0.0315621532, 0.0427930206, -0.0198447052, -0.0281955246, 0.00684504211, 0.0174906943, 0.0249341018, 0.0177800134, -0.00922535453, 0.00306744687, 0.0112374416, 0.00887028, 0.00843630079, -0.016267661, -0.00858096, 0.0121711558, -0.00379074621, -0.011263744, 0.0274590738, -0.0201077219, 0.0385847315, 0.0502890311, 0.0141635165, -0.044660449, 0.0237110686, -0.0290634837, -0.00839027297, -0.0111256596, -0.006177634, -0.00165701308, 0.0267620757, -0.0249735545, 0.0226721466, 0.0481848903, 0.0139531018, 0.00282086758, 0.00460281409, -0.0273275655, 0.0258283634, 0.0253154784, -0.00520118, 0.021488566, 0.00189866079, 0.010803462, 0.0320618898, 0.0235269554, -0.0331402607, -0.0082587637, -0.0114149787, 0.0140714599, 0.00817985833, 0.0252760258, 0.0203049853, -0.0302733667, 0.00888343155, 0.0190688018, 0.000323429878, -0.0321144909, -0.0282218251, -0.0016520815, -0.0118884109, 0.00472445972, -0.0163334142, -0.0232507866, 0.00140303641, 4.63363649e-05, 0.00247730035, -0.0015822174, -0.0428193212, 0.0113294981, 0.0191740077, -0.00539515587, 0.0254338365, -0.0190556496, -0.00959358, 0.0115136104, 0.00725929532, -0.00373814255, 0.00405376405, 0.0154260024, 0.0190293491, -0.0022504474, -0.00788396318, 0.000308018673, 0.0277746953, 0.0135717262, -0.00606585154, -0.0148605146, 0.0191871598, -0.0268541332, -0.0102577, 0.0155706629, 0.0211334918, 0.00125508884, 0.0364279859, 0.00072576513, 0.0080680754, -0.0256837029, -0.00322032603, -0.0266174171, -0.00981714483, -0.019016197, 0.00599023374, -0.0112571679, -0.0128352763, -0.0290108807, -0.00668723136, -0.0121908821, 3.96581745e-05, 0.0374800563, 0.000361444196, 0.00263017952, 0.0195685346, -0.0174775422, -0.0116385445, -0.0263675489, -0.00570748933, 0.00150331203, 0.031272836, 0.00482637947, 0.029194992, -0.00968563557, 0.00501706731, 0.0528666079, 0.00880452618, 0.0117174499, -0.0035836196, 0.031904079, -0.0322986059, 0.0183455013, -9.26727298e-05, 0.0130128134, 0.0303785726, 0.00766039779, 0.00156495685, 0.0127234934, 0.0387688465, -0.0109809991, 0.00566474907, 0.0251576677, -0.0127169183, -0.00668723136, -0.00706203189, -0.0307204966, 0.0339819193, 0.00138906355, -0.00422801357, -0.00538200466, -0.0158205293, 0.0177800134, -0.0167147908, 0.0122369099, 0.00973166432, -0.00870589446, 0.00115563511, 0.0112505928, -0.00321046286, -0.000242880633, 0.0291686915, 0.0242502559, 0.0167542435, -0.0305100828, 0.0192792155, -0.00612503057, 0.0169646572, 0.0109086698, 0.00784451049, -0.00983029604, -0.0110467542, 0.0142424218, -0.00692394748, 0.0117108738, 0.0200682692, -0.0133284349, -0.00472117215, 0.0233691446, -0.0192003101, 0.0188189335, -0.00907411892, 0.0065622977, -0.0289845783, 0.0155969644, -0.00441541383, 0.00580612104, -0.00748943631, 0.0173460338, 0.0107771605, 0.0147158541, -0.00503021851, -0.0120462226, -0.0102577, -0.00294086942, 0.0135322735, 0.00597379496, -0.00855465885, 0.0211992469, 0.0052767978, -0.00260716537, -0.00608557789, -0.00038795147, -0.0251839682, -0.0141240638, 0.0112177152, -0.00572721567, 0.031904079, -0.0250261575, 0.0389266573, -0.017240826, 0.0210940391, 0.0021814052, -0.0249341018, -0.0215806235, 0.0204890985, -0.0267752279, -0.0157416239, 0.000283771718, 0.0316673629, -0.0192003101, 0.00117207377, -0.00368553912, -0.0161756035, -0.0058554369, -0.00395842036, -0.00435952237, -0.018910991, 0.0115004601, 0.0204496458, -0.0114741577, -0.023908332, -0.00789053831, -0.00879795, 0.0115136104, 0.00894261058, -0.00376773207, 0.0203707404, -0.0180693325, -0.0213176049, -0.00925823208, -0.00850863103, -0.0102511244, -0.00763409585, -0.00725272, -0.0100078331, -0.00849548, 0.0310624205, 0.00446472969, 0.00286032027, -0.0012657739, -0.0216463767, -0.00296881516, 0.00295730797, -0.0153602483, -0.00271894806, -0.0140977623, -0.0193449706, 0.0124078719, -0.00676613674, 0.0146895526, -0.00178852212, 0.0282218251, 0.0253549311, 0.00923850574, 0.0156101156, 0.0315621532, 0.00054000871, 0.0085217813, -0.0251313653, -0.000321169588, -0.017530147, 0.0190688018, 0.0108429147, 0.0333243757, 0.0234349, -0.00333704031, -0.00802204758, -0.00693052309, -0.0262360405, -0.00302470638, 0.00213702093, 0.0202655327, -0.0199762136, 0.00881110132, -0.0448708609, -0.00118193694, 0.0178457685, 0.00392883085, 0.0211466439, 0.0164780747, -0.0163465664, 0.0197394975, -0.0359019488, -0.0269198865, -0.00710806, 0.0247894414, -0.000632065, -0.017122468, -0.00218304899, -0.00507953437, 0.00458308775, 0.0115530631, 0.0194764789, 0.00376773207, 0.0316936634, -0.0110073015, 0.00487569533, 0.0151366834, 0.0107574342, -0.0452127866, 0.00731189921, -0.0177800134, -0.023908332, -0.00131262396, 0.0116451196, 0.017530147, 0.012986511, 0.0135848774, 0.0175959, 0.0229614675, 0.0145448931, 0.0136374803, -0.00879137497, -0.00529981172, 0.000186270132, -0.0192003101, 0.0239477847, 0.0121514294, -0.0123092402, 0.0120593728, 0.0135980276, 0.00627297815, -0.00251675304, -0.00283730612, -9.59989848e-06, 0.0166227352, -0.00368553912, -0.0260256268, 0.0274853762, 0.0216726791, 0.0081338305, -0.0138873477, 0.00174249394, -0.00371184084, 0.0102116717, 0.0254732892, 0.0163991693, -0.00717381481, -0.00134467927, -0.00771957682, 0.00667736819, 0.0249341018, 0.00275346916, -0.0212255493, 0.0181350876, -0.0276694875, 0.0226063933, -0.00954097603, 0.00447788043, -0.00548063638, 0.00100111205, 0.0391107686, -0.0155049078, 0.00583242299, 0.00398472184, -0.0228957124, -0.008449452, -0.0286426544, 0.0048789829, 0.0278272983, -0.000265278271, -0.00872562081, -0.00948179699, 0.00677928748, -0.00153043575, -0.00208112947, -0.0065064067, 0.00179509749, 0.00228003692, 0.007929991, -0.0076669734, 0.0251971204, -0.00445486652, -0.0176222026, -0.0053326888, 0.00990262628, 0.00225702277, -0.00938316528, 0.0297736321, -0.023277089, -0.0157547761, -0.01069168, -0.0138741964, -0.018963594, -0.00988947507, 0.0205548536, 0.00894261058, 0.01069168, -0.00370526547, -0.000330005336, -0.0129536344, -0.016898904, 0.033166565, 0.0117963552, -0.0064998311, -0.015228739, 0.0274853762, -0.00939631648, 0.00823246222, -0.0283533353, -0.0290108807, 0.0136243301, 0.00379732158, 0.0127563709, 0.0127629461, -0.0195816867, 0.0176879577, 0.00880452618, 0.0152681917, 0.0259072687, 0.00784451049, -0.00847575348, -0.0121317031, 0.0134796696, -0.00815355685, 0.00229483168, -0.0118226567, 0.00791684072, 0.0162939616, 0.000552337675, -0.0016496157, 0.0243028589, 0.0167410932, 0.0015444085, -0.00408335356, -0.013558575, 0.00437267357, -0.00361649692, 0.0353759155, 0.0109546976, -0.00852835737, -0.00606256397, -0.0200814214, -0.00535570318, 0.00785766169, 0.00687791919, -0.0275379792, -0.00263017952, -0.0048789829, 0.0278536, -0.0153602483, -0.0205285512, 0.00201537507, -0.00133152842, 0.0321407951, -0.00260552159, 0.00729874801, 0.00616119569, 0.00525707146, 0.00522090634, 0.00270908489, -0.00712778652, -0.00411623111, 0.0231455788, 0.00174085, -0.00791026466, -0.00997495558, -0.0134139154, -0.0210019834, 0.0190556496, -0.0263280962, 0.0106522273, 0.0261571351, 0.00537871709, -0.00427732943, -0.0240924452, 0.00139646092, -0.0103826337, -0.0226195436, -0.00979741849, -0.00902151596, 0.00904781744, -0.0029507326, 0.00341265788, 0.00657873647, 0.00264333049, -0.00204660837, 0.0194501765, 0.00087864435, -0.0130259637, -0.0206863619, -0.00778533146, -0.0153602483, 0.0290371813, 0.00744998362, 0.0266305674, 0.00651298184, 0.00831136759, -0.0224222802, 0.0280903168, -0.00518802926, -0.00636174669, -0.018963594, -0.0285111461, -0.0238425769, -0.0127103422, 0.0145317419, -0.0113426493, 0.00347512471, 0.0072132675, 0.00713436212, -0.00366581278, 0.0305363834, -0.00896891207, -0.010060437, 0.0462122522, 0.0143213272, 0.030746799, 0.0270382445, 0.0215017181, -0.0124275982, 0.0203181375, -0.00958042871, 0.0131377466, -0.00868616812, 0.026604265, 0.0215411708, -0.00587187568, 0.00598037057, 0.00440226309, -0.00216661044, 0.0301681589, -0.017240826, 0.0190030467, -0.0349550843, -0.0178194661, 0.0289319754, 0.00324169616, -0.0030542959, 0.00442856457, 0.00488227047, -0.0159125868, 0.0105404444, 0.00662805233, -0.0361123644, 0.00836397056, -0.0664383322, -0.0479744747, -0.00776560511, 0.0107903117, -0.0171487704, -0.00230798242, 0.00985002238, 0.0101261912, -0.000751656, -0.00875849742, 0.0129667846, 0.0146369487, -0.00273374282, 0.0270645469, 0.00967248529, 0.0189372916, -0.0124539, 0.0432927534, 0.0256179478, -0.00801547244, -0.0224880353, -0.00491186045, -0.0142029691, -0.0151103809, -0.0107903117, 0.0098829, -0.00591790397, 0.0206863619, -0.0136111788, 0.0345605575, -0.0128550027, -0.00608229032, 0.00210743141, -0.00998810679, 0.0240003876, -0.0270908494, 0.000513706938, 0.00324827177, 0.0048165163, 0.0316410586, -0.031272836, 0.0120199202, -0.00965275895, -0.00275675696, -0.0123355417, 0.00377101987, -0.00628284132, 0.00122796511, -0.00109892187, -0.0149131175, -0.0065064067, -0.00709490944, -0.0251576677, 0.00925823208, 0.00435952237, 0.0295106135, 0.016491225, 0.00341265788, -0.0148473633, 0.0178589188, 0.0296158213, 0.00869274326, 0.0386373363, -0.0179904271, 0.0175169948, -0.0246447828, -0.0101327663, 0.0070291548, 0.0077919066, -0.00121399225, -0.00262196013, 0.0133021325, 0.0204101931, 0.00986317359, 0.00085234252, 0.0240924452, 0.0110730557, -0.021435963, 0.0105535956, 0.0119212884, 0.0177800134, -0.00217976118, 0.00371841621, 0.0152681917, 0.0214096606, 0.0104089351, -0.00578310713, -0.0167673938, 0.00266305683, 0.00816013198, -0.0226326939, 0.00938316528, -0.00647352915, 0.0219883, -0.000989605091, -0.00577324396, 0.00553652784, -0.00604283763, 0.00973823946, 0.00655901, -0.00889000669, 0.000841657456, 0.0169383567, 0.0108297644, 0.016320264, 0.0124539, -0.00396828353, 0.00753546413, -0.0116253933, 0.00451404555, 0.016320264, -0.000580283348, -0.0076143695, -0.00644722767, 7.9881429e-05, -0.00480007753, 0.00636503426, 0.000795218337, -0.0223039221, -0.00444829091, -0.0048099407, -0.00132988452, 0.0229351651, 0.00423130114, -0.0211071912, 0.000926316367, 0.0201340243, -0.00393869402, -0.0204759482, 0.00355074229, -0.00720011629, -0.0120790992, 0.0155312102, -0.00958700385, -0.00306251529, 0.00196112762, 0.0126708895, -0.00201373128, -0.00562200882, 0.00971851312, 0.0154128522, 0.00955412723, -0.000763985, 0.000654257135, 0.00519131683, 0.00234085973, 0.0020745541, -0.00565817347, 0.0121382782, 0.00330580678, -0.00786423683, -0.00320881908, -0.00553652784, 0.00571406493, 0.0130982939, 0.0175827499, -0.0106127746, -0.00496775145, -0.0105601707, -0.00392554281, -0.00837054662, -0.00207948568, -0.0094949482, -0.00581598422, -0.0307731, 0.0150709283, 0.0068844948, -0.0122369099, -0.00365266181, -0.0238688793, -0.000918919, 0.00615133252, -0.0141898189, -0.0252102707, -0.00691737188, -0.018963594, -0.000763985, -0.00101015333, 0.0110467542, -0.0191082545, 0.00750916265, 0.0350339897, 0.0209099278, 0.00385321304, -0.00997495558, 0.00508610951, -0.00637818547, -0.0217778869, -0.00101344101, -0.00681216503, -0.0194107238, 0.0142950257, -0.00107590784, 0.00915302429, 0.0207915697, -0.00152139447, -0.0248025935, -0.00751573779, 0.000458637543, -0.00504665682, -0.00194633286, -0.00334854727, -0.00903466623, -0.0073382007, 0.0027353866, 0.0289845783, -0.0190819521, -0.0137295369, -0.003088817, -0.0126511632, -0.000280483975, -0.0311939288, -0.00193153811, -0.0271697547, -0.00392883085, 0.0219883, 0.00110878504, -0.00150249, 0.0166358855, 0.00563187199, -0.0163597167, -0.0143870823, -0.00326964189, -0.0128484266, 0.000291991018, -0.00324334018, -0.0039715711, 0.000399869488, 0.0182271432, 0.0224748831, 0.0109481225, -0.0160440952, 0.00418527331, -0.00913329795, -0.0151235322, 0.0165832825, -0.000470555562, -0.0188846886, 0.0181876905, 0.0126971919, -0.000870425, 0.018384954, -0.00609215349, 0.00160276564, -0.0199762136, 0.00730532361, 0.0207126644, 0.0135848774, 0.0142029691, 0.0110533293, 0.00853493251, -0.0257231556, 0.0070160036, 0.0114675825, -0.0145054404, 0.0163860191, 0.0145448931, 0.0139925545, -0.0200156663, -0.0191214047, -0.00429705577, -0.00304772053, -0.00519131683, -0.00842972565, -0.00526035903, -0.000641928171, 0.00190688018, -0.0347972736, -0.00148851715, -0.0281692222, 0.0133087086, -0.00996838, 0.00410636794, -0.0137558384, -0.0125788338, 0.00256113731, 0.0137952911, 0.00455021067, -0.0277483929, 0.0220935084, 0.0345079564, 0.0139794042, -0.000997002469, -0.0127629461, -0.00572721567, 0.0115004601, 0.0219751503, -0.0030263504, 0.000419184857, 0.0038992411, -0.000763163, -0.00102248229, -0.00850205496, -0.0101261912, -0.0251313653, 0.0115859406, -0.000465623976, 0.0282481275, 0.0074828607, 0.00854808372, -0.00737107825, -0.00475076167, 0.00185427652, -0.00659846282, -0.02609138, -0.0214754157, -0.0254469868, -0.00478692679, 0.00215510326, -0.000399458513, 0.0115070352, 0.0108297644, -0.00556283, -1.60790278e-05, -0.00150824361, 0.0132692559, 0.0237505212, -0.000827684591, -0.00490528485, 0.0243160091, -0.0124802021, 0.0126840407, -0.00580612104, -0.00400773622, -0.00997495558, 0.00427404186, -0.00110960694, 0.00606256397, 0.0236979164, 0.00170632894, -0.00638804864, -0.0102905771, -0.0192134604, 0.0205548536, 0.00119015621, -0.0065688733, 0.014479138, 0.0108297644, -0.0015460524, -0.000319114741, -0.0304837804, -0.0149262687, -0.015636418, 0.00541488221, 0.00222907704, -0.00488884607, -0.0244343672, -0.0126182865, -0.0150314756, 0.0117174499, -0.00285538868, 0.0192003101, 0.0213439073, -0.0132429535, 0.0149920229, -0.00889000669, 0.00514528854, 0.00589817762, -0.0039025289, 0.0127234934, 0.0129207568, -0.00599352131, 0.0280114114, 0.0153339468, -0.0167016406, 0.00681216503, 0.00504994486, 0.0142687242, 0.0202918351, -0.00602311129, 0.00433650846, 0.0280114114, 0.0144528365, 0.00218469277, -0.00515186414, -0.0213439073, 0.0174249392, 0.00366910035, 0.00533597684, 0.0129010305, -0.00257921987, 0.0115859406, -0.0136900842, 0.0155838132, 0.0263412483, -0.00246086181, 0.00304114516, -0.00637489744, -0.00865986571, -0.00622037472, 0.000722888391, 0.0191608574, 0.00184770115, 0.0144922892, -0.00552995224, 0.00766039779, -0.0140451584, 0.00231784559, 0.00257264427, -0.0120790992, 0.0016504376, -0.00738422899, 0.00136522751, 0.0196868945, 0.00515843974, -0.018279748, -0.000190893494, -0.0316410586, 0.00463569118, 0.0172671285, 0.00798917, 0.00026219603, -0.0144528365, 0.00669709453, 0.0186742749, 0.0164649244, 0.00199071714, -0.00402417453, -0.0045798, 0.00695682457, -0.00267292, -0.00162413588, -0.00626311498, 0.00865986571, 0.0162545089, -0.013676933, 0.00700285286, -0.014886816, -0.0359282531, -0.00840999931, 0.011382102, -0.00314635225, -0.00903466623, 0.043397963, 0.023908332, -0.0186216701, -0.000876178558, -0.00758806802, -0.0110204518, -0.00794971734, 0.00366252498, -0.0220277533, 0.00183455017, -0.00764067145, -0.00772615243, -0.0038992411, 0.00556611735, -0.0127629461, -0.0276168846, -0.00336991739, -0.00415239576, -0.000207126635, 0.022067206, 0.0228825621, 0.016320264, 0.00335512264, 0.0171356201, 0.0061842096, 0.00106933236, 0.0185690671, 0.00199729251, -0.00555625418, -0.0262886435, 0.00574365444, 0.0168857519, 0.0246973857, 0.0175827499, 0.0124736261, 0.0005453513, -0.000559735054, 0.0137821408, 0.0425037, -0.00872562081, 0.00461267726, -0.00502035534, 0.0231192783, 0.022238167, -0.0106851039, 0.00574365444, -0.0121251279, -0.00374471815, -0.0104878405, 0.00300498, 0.00311676273, 0.0236058608, -0.00600996, -0.00891630817, 0.0167016406, 0.00347183691, -0.00359348278, 0.0356389321, -0.014426535, 0.000120618388, 0.00208606105, -0.0241450481, 0.0288267676, 0.00810752809, -0.0132100768, 0.00534912758, -0.00619736034, 0.00724614458, 0.00348498789, -0.0198052526, 0.0246447828, -0.0268935859, -0.00396828353, 0.0334821865, -0.0140320072, -0.0100867385, -0.020120874, 0.00633215718, -0.00176715187, 0.00665764185, 0.0133284349, -0.020344438, 0.0150314756, 0.0190819521, 0.0241055954, -0.0150446268, -0.0151498336, 0.00981714483, 0.00387293939, 0.0056548859, 0.016267661, -0.0126774656, -0.0104681142, -0.0108297644, -0.0199236106, 0.00600338494, 0.0178852212, 0.0077984822, 0.0159651898, 0.000924672466, 0.0016504376, -0.0257363059, 0.00934371259, -0.00762094511, 0.00802204758, 0.0142424218, 0.00986317359, 0.00170139736, 0.0044943192, 0.00832451787, 0.0155706629, 0.0157416239, 0.0264990591, 0.0199630633, 0.0198841579, -0.00139070745, -0.0326405279, -0.0218567923, -0.00935028773, -0.0149525702, 0.00528666098, 0.00168331491, 0.0233822949, 0.000166543789, 0.0105601707, -0.0266305674, -0.0059244791, -0.00833766907, 0.00891630817, -0.00993550289, -0.00514857657, -0.0117897792, 0.00204825238, -0.0134533681, -0.0119607411, 0.00190359238, -0.0117371762, -0.00254141097, 0.0154391536, 0.0123749943, -0.000918097037, 0.00843630079, 0.015176136, -0.0134007642, 0.006177634, -0.00249538291, 0.00940289162, 0.0109875752, -0.0103300298, 0.00548063638, 0.00850205496, 0.0120527977, 0.000452473061, 0.00718039, -0.00451733312, -0.0209493805, 0.0218699425, 0.00654257135, -0.0264070015, 0.0168199986, -0.0105601707, -0.0114807338, 0.000798917, 0.00723956898, 0.0207126644, -0.0157679264, 0.0108297644, -0.0148079107, 0.0134270666, 0.00479350192, -0.0210545864, 0.0170041099, -0.0129667846, -0.0180956349, -0.00536227832, -0.00529323611, 0.00478363875, -0.000263839873, -0.0124670509, 0.000288703304, 0.0185427647, 0.0205154, 0.0110993572, -0.0147421565, 0.00424116431, 0.0163597167, 0.00618749717, -0.00723299384, -0.00594420545, 0.00653270818, 0.0082587637, 0.0203707404, 0.00890973303, -0.00832451787, -0.00289319735, 0.00516501488, -0.0121974573, -0.00622695, -0.0071606636, 0.000469322666, -0.00817985833, 0.0138741964, 0.013216652, 0.0172276758, -0.00404718891, -0.0132035008, 0.00135207665, -0.0364805907, -0.0336399972, 0.00250195828, 0.0100867385, -0.0147947595, 0.0215280186, -0.0130062373, -0.0148999672, 0.0159388874, -0.00850863103, 0.0286952592, -0.0160703976, 0.00121234835, -0.00657216087, -0.0179904271, 0.000621379935, 0.000520693371, 0.0134139154, 0.00749601144, -0.0126117105, 0.00501049217, -0.0203575902, -0.00455021067, -0.00511898706, -0.0156627186, 0.015518059, -0.00979084335, 0.0131048691, -0.00496446388, -0.00687134406, 0.0132955573, 0.0046784319, -0.03413973, 0.00545104686, 0.00239675096, -0.0109546976, 0.0268804338, 0.0243817642, 0.0102116717, -0.00176386407, 0.0115662143, 0.0162150562, 0.0389529578, 0.00212222617, -0.00193153811, -0.0216463767, 0.0228562597, -0.0263938513, 0.02080472, -0.0133876139, 0.0130785676, 0.0142029691, -0.00337978057, -0.0105930483, 0.0227116, 0.00626969058, -0.00869274326, -0.0112768942, 0.00687134406, -0.0108100381, -0.00369868986, 0.00038199249, -0.0139004989, 0.0140977623, -0.0124802021, -0.0077984822, -0.000618914142, 0.0343238413, 0.00229154387, 0.00389266573, -0.00512227463, 0.0115267616, 0.0156232659, -0.00410308, -0.0321670957, 0.0101327663, -0.0250261575, -0.0140583096, 0.000863849593, -0.00656558573, -0.0052767978, -0.0150446268, 0.0159651898, -0.00768669974, 0.0129996622, -0.00990920141, -0.00886370521, 0.0168331489, 0.00520118, -0.00764067145, 0.0191477071, -0.017701108, -0.0238688793, 0.00758149242, 0.0181087852, -0.0140846111, -0.0256442502, 0.0051321378, -0.0250393096, -0.0184901617, 0.0438713953, 0.025749458, 0.00356060546, 0.0011622106, 0.0137952911, -0.00314470846, -0.00608229032, -0.0175432973, -1.34077509e-05, 0.0170041099, 0.00111207273, -0.00120330707, -0.0240398403, 0.00314306444, -0.00911357161, 0.00158879277, 0.00969221164, 0.0260782298, 0.016438622, 0.00318087335, 0.0094949482, -0.0354548208, 0.0110599045, 0.0168463, 0.00661161356, 0.000865493435, -0.0020087997, -0.0155049078, -0.00148605136, -0.0138215935, 0.00315128383, 0.00345211057, 0.00672668405, -0.00912672281, -0.0192529131, -0.00577653153, -0.00622695, 0.0286952592, -0.0279325061, -0.0068910704, -0.00581927225, 0.00848232862, 0.0210940391, -0.00773272756, 0.0235927105, 0.00155755947, 0.00602968642, 0.0369277187, 0.00411951868, 0.00157482, 0.0330350548, -0.00885712914, 0.0244343672, -0.0113558, -0.0237899739, 0.0139531018, 0.0026318233, 0.00845602714, 0.0188978389, -0.00864013936, -0.0104418127, 0.012874729, -0.00299182907, -0.00274524977, -0.00460281409, 0.00394526916, -0.00750916265, 0.0238162745, 0.00706860749, 0.00693709822, 0.0106127746, 0.0241845, 0.00477377558, -0.0124670509, 0.00109399029, -0.00357375643, 0.00979741849, 0.0187268779, 0.0116319684, 0.00698312651, -0.00114001846, -0.000410143606, 0.00240661413, -0.0195290819, -0.0206995122, 0.0439766, 0.00967906, 0.00475404924, 0.00252990401, -0.0130325397, 0.0308783073, 0.0138215935, 0.00511241145, 0.0194896292, -0.0110993572, -0.00255949353, -0.0006337089, -0.00370526547, 0.00584228616, -0.0139531018, -0.00532940123, 0.00642750133, -0.00882425252, 0.00492829876, -0.00794971734, -0.0299840458, 0.0208967756, 0.000571653072, -0.0122369099, -0.0008613838, 3.46752167e-05, -0.00698970212, -0.0106588025, 0.0124078719, -0.00028459364, 0.00143591361, -0.00274853758, 0.00523076952, 0.0182008427, 0.00461596483, -0.000254182203, -0.0148605146, 0.0135191223, 0.00103727705, 0.000367403205, -0.0229483154, -0.00934371259, 0.00616448326, -0.0256705526, 0.00240661413, 0.0123881456, 0.00537871709, -0.0209362283, 0.0128878793, -0.00492172362, 0.021435963, -0.0135848774, -0.0181087852, 0.00145481806, -0.00302799419, 0.0108560659, 0.0033732052, -0.0234085973, -0.00347841228, 0.0141898189, 0.0081206793, -0.000129659631, -0.00627626572, -0.015689021, 0.0166490357, 0.00763409585, -0.00455021067, -0.0136243301, -0.0201866273, -0.018384954, -0.0201603267, -0.00741710607, -0.012414447, 0.00328443665, -0.00650969427, 0.015636418, -0.000955083931, 0.0148342121, -0.00495788828, 0.0130522661, 0.0151366834, -0.000964947103, -0.0361123644, -0.00746313436, -0.0094949482, 0.00911357161, -0.0108429147, -0.0228036568, 0.00625982741, 0.0193449706, -0.0139136491, -0.0097448146, 0.0139004989, 0.0178852212, -0.00532940123, 0.015518059, 0.00373814255, -0.0065622977, -0.0338241085, -0.02080472, 0.00315621542, -0.0160703976, 0.00871904474, 0.0140846111, -0.0109086698, -0.00824561249, 0.0144133838, 0.00727244653, 0.00484939339, 0.000513706938, 0.0147290053, -0.000456582726, -0.00472117215, -0.0186479725, 0.00762752071, 0.00283730612, -0.00352115277, 0.00332388934, -0.0122369099, -0.0241318978, -0.0109875752, -0.0331402607, 0.0366384, 0.0224880353, 0.0123618441, -0.0281692222, 0.00568776298, -0.0261965878, 0.0013348161, -0.0046718563, -0.00142687233, 0.00217647362, -0.000627955364, -0.0055924193, 0.0296947267, 0.00791684072, -0.00115727901, 0.0151629848, 0.0235138051, -0.000817821419, -0.010803462, -0.00573379127, 0.015399701, 0.0136637827, 0.0219883, -0.0557598062, -0.0239346325, 0.00679901382, 0.00879795, -0.0090412423, 0.00622366229, -0.000121645804, -0.0145843457, 0.0118686846, -0.00409650477, 0.00960015506, 0.00844287593, 0.0115859406, -0.00591461593, 0.00562200882, -0.00665764185, 0.0216332264, -0.000884397828, -0.00424445234, 0.0167016406, -0.00595406862, 0.00202523824, 0.0302996673, -0.00516501488, 0.0114675825, -0.00165536918, 0.0079957461, 0.00825218856, -0.0108100381, -0.027011944, 0.00665764185, 0.0132955573, 0.00979741849, 0.0102050966, -0.00356389326, -0.0198315531, -0.00693052309, 0.00159536826, -0.00265154964, -0.0177142583, -0.0083836969, -0.00869931839, 0.000674394483, -0.00596064422, 0.00258086366, 0.00854808372, 0.0246973857, 0.0181350876, -0.00741053093, 0.0180298798, 0.0100078331, 0.00399787305, -0.0201471746, -0.00835082, -0.0160177927, 0.0107640093, -0.00286196405, -0.014886816, 0.00953440089, 0.021606924, -0.0121514294, -0.0224617328, 0.00881110132, 0.0104089351, 0.00343238423, 0.0450812764, -0.00639462378, 0.0125459563, 0.0233954471, 0.010001258, 0.000863027642, -0.0133547364, -0.0178063158, 0.00264497427, -0.00547406124, 0.0205154, -0.00881110132, -0.0101064648, 0.00898206327, 0.00215181569, 0.00584557373, 0.00252004084, -0.0120462226, 0.0211334918, 0.0205680039, -0.0103497561, 0.0103563322, -0.0115859406, 0.0060461252, -0.00550365075, 0.000466034922, 0.0203575902, -0.0137295369, 0.000890973315, 0.00628941692, -0.01252623, -0.0150183253, -0.0341923349, 0.00798917, 0.000440555072, -0.0072132675, -0.0101524927, -0.00867959205, 0.00971851312, 0.0261045322, -0.0144396853, 0.00715408847, -0.00679243868, 0.0247499887, -0.00053631, 0.0187663306, 0.0172802787, -0.000985495397, -0.00836397056, 0.0118226567, 0.0276694875, -0.00602968642, -0.00627626572, 0.00409650477, 1.07685819e-05, 0.00370855303, 0.00827849, -0.0288004652, 0.0087848, 0.00475076167, -0.00647024158, 0.00659188721, -0.00724614458, -0.00205154, -0.00959358, 0.00964618288, -0.00186907127, -0.00342252105, -0.0171093177, -0.013676933, -0.043397963, 0.00045987044, -0.00573707884, 0.0116977235, 0.0263149459, -0.0173460338, -0.00410965551, 0.00636503426, -0.0258415136, 0.00186578359, -0.018332351, -0.00788396318, 0.0152024375, 0.00861383788, -0.00712778652, -0.0236716159, 0.00134796696, 0.0064307889, -0.0146895526, 0.000259524735, -0.0386373363, 0.00941604283, -0.00192989421, 0.0034389596, -0.0356652327, 0.00194468896, 0.0131377466, -0.0149920229, -0.0112045649, -0.0167410932, 0.0283796377, 0.000936179538, -0.0113097718, 0.0125788338, 0.00557269296, 0.0153733995, 0.00419842405, 0.0192792155, 0.00845602714, 0.00208112947, -0.0416357405, 0.00536885392, -0.00923850574, -0.00837054662, 0.0160440952, 0.0209230781, -0.0173854865, -0.0302470643, -0.00773930317, 0.0125065036, 0.00196770299, 0.00927138235, -0.0146237984, 0.000296922604, -0.0168857519, 0.00948837213, 0.0290897861, -0.00958042871, 0.0038269111, -0.00526693463, 0.000724943238, 0.0128813041, 0.0266963225, -0.0109152449, -0.00275511295, -0.0126380129, -0.00821931101, 0.00979741849, -0.0039025289, 0.00174578163, -0.0136374803, 0.00138659775, -0.00881110132, 0.00586201251, -0.00985002238, -0.00637161, -0.00615133252, -0.0152813429, 0.0251971204, -0.0203707404, 0.00381704792, -8.57890554e-05, 0.0216595288, -0.000921384781, 0.0114873089, 0.0149657214, 0.0151629848, 0.0186216701, 0.00500720413, 0.00316607859, 0.0384795256, 0.00149344874, 0.0227510519, -0.0161493029, -0.0061151674, -0.0143213272, -0.00817328319, 0.0142687242, -0.00874534715, -0.0131640481, -0.00114577194, -0.00539515587, 0.0113623757, -0.00572721567, 0.015518059, 0.00218633679, 0.0538660772, -0.0105864722, -0.0166227352, 0.0017934537, -0.00787738804, 0.0243160091, 0.00266305683, 0.00756834168, -0.00239510718, 0.00381704792, -0.00235894229, -0.0423721932, 0.0190688018, 0.00470144581, 0.004224726, -0.0295369159, 0.00507624634, -0.00609872863, 0.00665435428, 0.00599352131, -0.00500720413, -0.014255573, -0.0114215547, 0.0247499887, -0.00595078105, -0.00115234742, -0.00574694201, -0.00236058608, 0.00376115669, -0.00422801357, 0.0110138766, -0.0215017181, 0.00058192719, 0.0202523824, 0.000490692852, -0.0178326163, -0.0104220863, 0.0135980276, -0.0148605146, -0.0115859406, -0.0249998569, -0.00584228616, 0.0245658774, -0.00233428436, 0.00971851312, 0.00573707884, -0.0160309449, -0.00577981956, -0.0131903505, 0.00377101987, -0.0115464879, -0.00179509749, 0.0129207568, -0.00741710607, -0.0352181047, -0.000523159164, 0.00598037057, -0.00241976511, -0.033797808, 0.00521433074, 0.012585409, 0.000275346916, 0.00710806, -0.0210414361, -0.00362964766, -0.00198742934, -0.00658531208, -0.0138873477, 0.0100472858, -0.0253154784, 0.0244475193, -0.0159783401, -0.0100867385, -0.00405705208, 0.00192989421, -0.014137215, 0.0107705854, -0.000450418243, -3.75776617e-05, -0.0145448931, 0.0108494908, 0.00297539053, 0.00869931839, 0.014479138, -0.00990262628, -0.0223302245, 0.00739080459, 0.00615462, -0.00595406862, -0.0108429147, -0.00545104686, -0.0171487704, 0.00270579709, -0.0189898964, 0.00348498789, 0.0217910372, -0.0242108032, 0.00386965158, 0.021896245, -0.0106390761, -0.00695024943, -0.018279748, 0.00560885761, 0.0217778869, -0.00648668036, 0.0243554618, 0.00938974, 0.0116319684, 0.00411951868, -0.0119212884, -0.00196112762, 0.00946864579, 0.0097579658, 0.0253549311, 0.00414253259, -7.12768383e-07, 0.000172502783, -0.0135322735, 0.00551351393, 0.0157810766, -0.0239740852, -0.0104286615, -0.0132363783, 0.0174117889, -0.00829164125, 0.0055168015, -0.00429705577, -0.00444171578, -0.0151235322, 0.00748943631, -0.00998810679, -0.0170435626, 0.00935028773, 0.00239181938, 0.0219356976, 0.0011950878, 0.010803462, -0.0236979164, 0.00601653568, 0.0336926, -0.022185564, 0.00138413196, -0.037006624, 0.0144133838, 0.0038301989, -0.00530309929, 0.000112810041, 0.00985002238, -0.0220803563, -0.00633544475, 0.0074762851, -0.00153125764, 0.000513706938, -0.0114412811, -0.00647681719, -0.0142029691, 0.00658531208, -0.0285900515, 0.00904781744, -0.00595078105, -0.0152155887, 0.027985109, 0.0198710058, 0.012184307, -0.00183619407, -0.0060527008, -0.0135322735, 0.00676613674, 0.00619407278, 0.0148736648, 0.000270620803, 0.00906754378, 0.00184934493, 0.00965275895, -0.0209625307, 0.00754203973, 0.0172671285, -0.000941933, -0.0146632511, -0.00504008168, -0.00489542168, -0.0225932412, -0.000690833083, -0.00706860749, -0.016320264, -0.0265779644, 0.0140057057, 0.017069865, 0.012296089, 0.0131837744, 0.00529981172, -0.00379732158, -0.013216652, 0.0185822174, -0.0160177927, -0.0285374485, -0.0109809991, -0.00296552735, -0.016267661, 0.0143344784, -0.021606924, 0.00108248321, -0.0220540557, -0.0206995122, 0.00351786497, -0.0284848437, 0.00829164125, -0.0101656439, 0.00386307621, -0.0153865498, -0.00754861534, 0.0144396853, -1.84292367e-05, -0.00259237061, -0.0167936962, 0.00741710607, 0.00812725443, 0.00774587877, -0.0296684243, -0.00590475276, -0.0124341734, -0.00209921203, 0.0118489582, -0.0103957849, 0.0192397628, -0.000129865119, -0.0111388098, 0.0138215935, -0.0204496458, 0.0106522273, 0.0152681917, -0.00555296661, 0.0279062036, -0.013216652, -0.00372499181, 0.001300295, -0.0252760258, -0.00384334987, 0.00278634648, -0.00227510533, -0.0182534456, -0.00400116062, 0.00173263077, 0.0110467542, 0.0365331918, 0.00243949145, 0.000254182203, 0.00401102379, 0.0142292716, -0.00773272756, -0.0158862844, 0.00386636378, -0.00842315, 0.00816013198, -0.000659599726, 0.00443185261, 0.00365266181, 0.00879137497, 0.0256047975, -0.0189372916, 0.00128878793, -0.00518145366, 0.0211992469, 0.0109612728, 0.00436609797, -0.0105798971, 0.00160276564, 0.0245790277, -0.0060461252, 0.00588173885, -0.00215510326, 0.0212781522, 0.010231398, -0.0102116717, -0.0119607411, 0.0051387134, 0.0070225792, 0.00125426683, 0.0148210619, 0.0137821408, 0.0173854865, -0.0163991693, -0.00237044925, 0.0177931637, 0.0205680039, 0.011382102, 0.00853493251, -0.0130522661, 0.0349550843, -0.00972508825, 0.0213307552, 0.0029885415, 0.00729217287, 0.00032281343, -0.00185592042, -0.00563515956, 0.0188320857, 0.00439897506, 0.00601653568, 0.00672339648, 0.0360071585, 0.0148605146, 0.0260256268, 0.0154654551, -0.00783793535, 0.0112834703, -0.0112045649, 0.00754203973, -0.00424445234, -0.00222250167, 0.00496446388, -0.0429245308, 0.0114741577, 0.0131180203, 0.0143344784, -0.000528501696, 0.0195159316, 0.00723956898, -0.0184901617, 0.0130785676, 0.000794396386, 0.00106275687, -0.0140320072, 0.00756834168, 0.0045567858, -0.00366910035, -0.0371644348, -0.0143476296, 0.0139399515, 0.00231784559, 0.0116845723, -0.0275905821, -0.00305594, -0.0225669406, -0.00691079674, -0.00459623849, -0.00484281778, -0.00336991739, -0.00305922749, 0.00609872863, -0.0169909596, 0.00871904474, -0.00979084335]
18 Sep, 2024
unordered_map max_size in C++ STL 18 Sep, 2024 The unordered_map::max_size is a built in function in C++ STL. It returns maximum number of elements which unordered_map can hold. Maximum number of elements in any container depends upon system and library implementation. Syntax size unordered_map.max_size() Parameters: It does not accept any parameters. Return type: Unsigned integer a container can hold maximum elements. Example 1 CPP // C++ program to illustrate the // unordered_map::max_size function #include <bits/stdc++.h> using namespace std; int main() { // declaration of unordered_map unordered_map<int, int> sample; cout << " Current size is : " << sample.size() << endl; cout << " max size is : " << sample.max_size() << endl; // insert elements sample.insert({ 1, 10 }); sample.insert({ 2, 10 }); sample.insert({ 3, 10 }); sample.insert({ 4, 10 }); cout << " Current size is : " << sample.size() << endl; cout << " max size is : " << sample.max_size() << endl; return 0; } OutputCurrent size is : 0 max size is : 1152921504606846975 Current size is : 4 max size is : 1152921504606846975 Example 2 CPP // C++ program to illustrate the // unordered_map::max_size function #include <bits/stdc++.h> using namespace std; int main() { // declaration of unordered_map unordered_map<char, int> sample; cout << " Current size is : " << sample.size() << endl; cout << " max size is : " << sample.max_size() << endl; // insert elements sample.insert({ 'a', 10 }); sample.insert({ 'b', 10 }); sample.insert({ 'c', 10 }); cout << " Current size is : " << sample.size() << endl; cout << " max size is : " << sample.max_size() << endl; return 0; } OutputCurrent size is : 0 max size is : 1152921504606846975 Current size is : 3 max size is : 1152921504606846975 Complexity : Its complexity is constant. Learn C++ Online – Master everything from basics to advanced concepts. Apply your knowledge with practical exercises and boost your skills. Take the Three 90 Challenge: finish 90% in 90 days for a 90% refund. Start now and level up your C++ programming!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum/Algorithm for Dynamic Time out timer Calculation/Difference between Round trip time (RTT) and Time to live (TTL)/Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms/Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm/Round Robin Scheduling Algorithm with Different Arrival Time/Selfish Round Robin CPU Scheduling/Find the order of execution of given N processes in Round Robin Scheduling/Calculate server loads using Round Robin Scheduling/set::lower_bound() Function in C++ STL/Implementation of lower_bound() and upper_bound() in List of Pairs in C++/Difference between std::set::lower_bound and std::lower_bound in C++/Difference between std::set vs std::vector in C++ STL/std::minmax() and std::minmax_element() in C++ STL/std::rotate vs std::rotate_copy in C++ STL/std::bitset::to_ullong and std::bitset::to_ulong in C++ STL/std::upper_bound and std::lower_bound for Vector in C++ STL/std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++/std::string::append vs std::string::push_back() vs Operator += in C++/Vector push_back() in C++ STL/vector :: cbegin() and vector :: cend() in C++ STL/unordered_multiset cend() function in C++ STL/unordered_multiset bucket() function in C++ STL/unordered_multiset emplace_hint() function in C++ STL/unordered_multiset end() function in C++ STL/unordered_multiset size() in C++ STL/unordered_multiset emplace() function in C++ STL/unordered_multiset find() function in C++STL/unordered_multiset erase() function in C++ STL/unordered_multiset clear() function in C++ STL/unordered_multiset swap() function in C++ STL/unordered_multiset bucket_size() function in C++ STL/unordered_multiset bucket_count() function in C++ STL/unordered_set bucket_count() function in C++ STL/unordered_set cbegin() function in C++ STL/array::cbegin() and array::cend() in C++ STL/array::rbegin() and array::rend() in C++ STL/multimap rbegin in C++ STL/vector rbegin() and rend() Functions in C++ STL/multiset rbegin() and rend() function in C++ STL/map rbegin() function in C++ STL/map upper_bound() function in C++ STL/Set upper_bound() in C++ STL/multimap upper_bound() function in C++ STL/multimap empty() function in C++ STL/multimap value_comp() function in C++ STL/multimap swap() function in C++ STL/multimap::swap() in C++ STL/multimap equal_range() in C++ STL/unordered_set equal_range in C++ STL/set vs unordered_set in C++ STL/unordered_set count() function in C++ STL/unordered_set bucket() function in C++ STL/unordered_set emplace() function in C++ STL/set::emplace() in C++ STL/multiset::emplace() in C++ STL/multiset find() function in C++ STL/multiset cbegin() and cend() function in C++ STL/multimap::cbegin() and multimap::cend() in C++ STL/multimap::begin() and multimap::end() in C++ STL/set::begin() and set::end() in C++ STL/unordered_multimap begin() and end() function in C++ STL/unordered_multimap empty() function in C++ STL/unordered_multimap find() function in C++ STL/unordered_multimap equal_range() function in C++ STL/unordered_multimap bucket_count() function in C++ STL/unordered_multimap bucket_size() function in C++ STL/unordered_multimap operator= in C++/unordered_multimap load_factor() function in C++ STL/unordered_map load_factor in C++ STL/unordered_map operator= in C++ STL/unordered_map swap in C++ STL/unordered_map rehash in C++ STL/unordered_map max_size in C++ STL
https://www.geeksforgeeks.org/unordered_map-max_size-in-c-stl?ref=asr10
PHP
unordered_map max_size in C++ STL
unordered_multiset clear() function in C++ STL, What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, unordered_map max_size in C++ STL, jQWidgets jqxTreeMap width Property, Round Robin Scheduling Algorithm with Different Arrival Time, Difference between Flow and TypeScript, set::begin() and set::end() in C++ STL, unordered_multiset emplace() function in C++ STL, jQWidgets jqxTree destroy() Method, unordered_set bucket_count() function in C++ STL, unordered_map load_factor in C++ STL, jQWidgets jqxTree collapseAll() Method, Find the order of execution of given N processes in Round Robin Scheduling, jQWidgets jqxScrollView buttonsOffset Property, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Vector push_back() in C++ STL, jQWidgets jqxListBox enableHover Property, Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm, std::rotate vs std::rotate_copy in C++ STL, Selfish Round Robin CPU Scheduling, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxSlider buttonsPosition Property, std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++, std::upper_bound and std::lower_bound for Vector in C++ STL, Difference between Round trip time (RTT) and Time to live (TTL), jQWidgets jqxSlider rtl Property, Difference between std::set::lower_bound and std::lower_bound in C++, jQWidgets jqxTooltip opacity Property, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, unordered_multiset erase() function in C++ STL, multiset find() function in C++ STL, set vs unordered_set in C++ STL, jQWidgets jqxToolBar height Property, PHP, std::minmax() and std::minmax_element() in C++ STL, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, unordered_set emplace() function in C++ STL, unordered_multimap empty() function in C++ STL, unordered_set bucket() function in C++ STL, map rbegin() function in C++ STL, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, map upper_bound() function in C++ STL, Node.js date-and-time Date.transform() Method, unordered_multiset size() in C++ STL, TypeScript Optional Parameters, jQWidgets jqxToolBar theme Property, Difference between std::set vs std::vector in C++ STL, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, Steps to Diagnose and Resolve a Slow Network, How to use Optional Chaining with Arrays and Functions in TypeScript ?, Calculate server loads using Round Robin Scheduling, unordered_map operator= in C++ STL, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, jQWidgets jqxScrollView showButtons Property, unordered_map rehash in C++ STL, set::emplace() in C++ STL, Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms, jQWidgets jqxScrollView disabled Property, multimap::cbegin() and multimap::cend() in C++ STL, jQWidgets jqxSplitter destroy() Method, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, set::lower_bound() Function in C++ STL, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, jQWidgets jqxTree collapseItem() Method, multimap upper_bound() function in C++ STL, std::string::append vs std::string::push_back() vs Operator += in C++, unordered_multiset swap() function in C++ STL, unordered_multiset cend() function in C++ STL, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), Set upper_bound() in C++ STL, jQWidgets jqxSortable opacity Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, multiset cbegin() and cend() function in C++ STL, multimap rbegin in C++ STL, vector :: cbegin() and vector :: cend() in C++ STL, multimap swap() function in C++ STL, jQWidgets jqxSlider height Property, jQWidgets jqxSwitchButton onLabel Property, unordered_multiset bucket_size() function in C++ STL, unordered_set cbegin() function in C++ STL, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, jQWidgets jqxToolBar tools Property, multimap empty() function in C++ STL, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTree width Property, multimap::swap() in C++ STL, unordered_multimap bucket_size() function in C++ STL, multimap equal_range() in C++ STL, Implementation of lower_bound() and upper_bound() in List of Pairs in C++, jQWidgets jqxTree clear() Method, TLS Handshake?, multiset rbegin() and rend() function in C++ STL, unordered_multimap operator= in C++, Algorithm for Dynamic Time out timer Calculation, Adhoc TCP, unordered_map swap in C++ STL, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, jQWidgets jqxTabs position Property, Differences between Wireless Adhoc Network and Wireless Sensor Network, jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, unordered_multimap begin() and end() function in C++ STL, std::bitset::to_ullong and std::bitset::to_ulong in C++ STL, unordered_multiset emplace_hint() function in C++ STL, multimap::begin() and multimap::end() in C++ STL, unordered_multiset bucket_count() function in C++ STL, unordered_multiset find() function in C++STL, unordered_multimap bucket_count() function in C++ STL, unordered_multiset bucket() function in C++ STL, Impact of Three-way Handshake and Slow Start Algorithm, array::rbegin() and array::rend() in C++ STL, multimap value_comp() function in C++ STL, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, unordered_multimap load_factor() function in C++ STL, multiset::emplace() in C++ STL, unordered_set equal_range in C++ STL, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, unordered_multimap equal_range() function in C++ STL, unordered_set count() function in C++ STL, vector rbegin() and rend() Functions in C++ STL, array::cbegin() and array::cend() in C++ STL, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, unordered_multiset end() function in C++ STL, How to Sort an Array Having Optional Properties in TypeScript ?, unordered_multimap find() function in C++ STL
GeeksforGeeks
[-0.0239207298, 0.0361578725, -0.00436662277, 0.0379716568, 0.0788642094, -0.025557844, -0.0363463163, 0.0243093967, -0.0140862595, -0.0167009328, -0.0196689405, 0.0305751916, -0.00323300855, -0.0117483642, 0.0385369882, -0.0357809812, -0.0434365571, 0.00337139773, -0.0171013791, -0.0205640532, -0.00394851, 0.00933391321, -0.0188209377, 0.0286671855, -0.0225662813, 0.00321828621, -0.0200340524, -0.0190918278, 0.00863902271, 0.0113538075, 0.0110652512, 0.0181496032, -0.0200340524, -0.00466990098, 0.00883924589, 0.0170896, 0.0274658501, 0.0435307808, -0.0126258107, -0.00647190586, 0.0273009613, 0.0271125156, 0.0157704856, 0.00496140169, 0.0139802592, 0.0214356109, -0.0155349299, -0.041929, -0.0445672274, 0.00696657365, 0.0133207012, -0.0461219, -0.00101362763, -0.00372767635, -0.0183733813, -0.0315174162, 0.00146560103, 0.0182438251, 0.0103055825, 9.90992194e-05, 0.00184175489, -0.0574757047, 0.011730697, -0.00289881323, -0.0134502575, -0.0241445079, -0.0156644862, 0.0199162737, 0.0462632328, 0.00253811781, -0.00343912025, 0.084800221, -0.000931183, -0.0168775991, -0.00420173304, -0.0147693725, -0.0424236655, -0.0164182652, 0.000413327478, 0.0409867726, -0.0120192533, -9.89151886e-05, 0.00279281288, -0.0216122791, -0.000836960506, -0.00888046809, -0.0118013639, -0.0217182785, 0.0229078382, 0.00631290535, -0.0252280664, 0.0340614244, -0.00442256732, -0.00777924247, -0.0042930115, 0.038678322, -0.0148753719, 0.0258876234, -0.00670157326, 0.030268969, 0.0106118061, -0.026193846, 0.0132735902, -0.00371884299, 0.0106648058, 0.000696731, 0.0380187668, -0.00872735586, 0.0027206738, -0.0095871361, 0.035922315, -0.000185500481, -0.0201518312, 0.0463338979, -0.0422116667, 0.0207878333, -0.0123195881, 0.0198809411, -0.0205287207, 0.00987569243, -0.0319649726, 0.0342498682, -0.0126729226, -0.0187267158, -0.0398325473, 0.00109901675, 0.0149460388, 0.00634823879, 0.0260054022, -0.0329778641, -0.015169818, 0.0285965204, -0.00826802198, -0.0571930408, -0.0203049425, 0.0305751916, 0.0125315888, 0.0280547403, 0.0108002508, -0.00469934568, -0.0449912287, 0.00464340113, -0.0182791594, 0.0130262561, -0.024804065, -0.0206465, -0.0200576074, 0.0314938612, -0.00469934568, 0.0248982869, -0.0193744954, -0.0394085497, 0.0293031875, 0.0126611441, 0.0124491435, -0.0179729369, -0.000335299497, -0.0137447026, 0.0212589446, -0.00241297856, 0.0518694706, -0.0220362805, 0.0284316298, -0.00773802027, -0.0283138528, 0.0119662536, 0.0131440349, -0.000463751203, -0.00438134465, 0.0184322707, 0.0173369348, 0.0411045514, 0.00208467222, -0.0217771679, 0.0354747586, -0.030292524, 0.031682305, 0.044143226, 0.014486705, 0.0507859103, 0.0100818044, 0.000179243521, 0.0402565487, 0.0382307656, 0.00531179179, -0.00769679807, 0.0179611575, 0.00769090885, 0.0497494638, 0.00672512874, -0.000340636325, 0.0555441454, 0.0027412849, 0.00395734375, 0.0453210063, 0.0059360154, -0.0159824863, 0.0190918278, -0.0185147151, 0.0279369615, -0.00811491, -0.00273539615, -0.0292325206, 0.01585293, 0.0259582903, 0.0197631624, -0.00218331139, 0.00075598812, 0.0357809812, 0.0266649593, -0.0107531389, 0.00802068785, -0.0185382701, 0.000161944874, -0.0195747185, 0.0354512036, -0.0656730607, 0.021659391, -0.0021523945, -0.0317765288, 0.0385134332, -0.0190211609, 0.0192802735, -0.0370529853, -0.0318707488, -0.0520579144, 0.00617157156, 0.017560713, 0.0106471395, -0.00440195622, 0.041410774, 0.0103468047, -0.00934569165, 0.0202813875, 0.0537539199, -0.00916313473, -0.0415049978, 0.0088333562, 0.00281931297, 0.0168893784, 0.0133207012, 0.066756621, -0.0197631624, -0.0058447374, 0.0146280387, 0.0147104831, -0.0116482526, -0.0211765, 0.0122135878, 0.0012447671, -0.000655876705, 8.74594334e-05, 0.0347680897, 0.00644835038, -0.0200929418, 0.0291382987, -0.00905124564, -0.0390552133, 4.59150506e-05, -0.0242387298, -0.00365700969, 0.0205522757, -0.0259111784, 0.0312347487, -0.0270654038, 0.0328129753, 0.0450147837, -0.00953413639, -0.0191624947, -0.055873923, 0.00414578849, 0.0124255884, 0.0072610192, 0.00500262436, 0.0202696081, 0.0133913681, -0.0271596275, 0.00906302407, 0.0106530283, -0.0301511902, 0.0204109419, -0.0157351531, 0.000498716603, -0.0101289153, 0.0285965204, 0.00861546677, -0.0319885276, -0.0198809411, -0.0287378523, -0.0388196558, -0.0325774178, -0.00597723806, 8.5849184e-05, -0.00644246116, -0.0144042596, -4.83074182e-05, -0.0239678398, -0.0268062931, -0.0297036339, 0.0221658368, -0.00945169106, -0.00396323251, -0.0360636488, -0.0525290258, 0.0104410276, -0.0246156193, 0.000426945568, -0.0203520525, 0.0167009328, -0.0490427949, 0.0220009461, -0.0291147437, -0.00625401642, 0.022024503, -0.0294209663, -0.0140627036, 0.0374769866, 0.0204698313, -0.0519165806, -0.0196336079, -0.0121311434, -0.0194333848, 0.00184469926, 0.0594543777, 0.0271831825, -0.0362049825, -0.0353098698, 0.0243329536, -0.00371295423, -0.039856106, -0.00793235376, 0.0183027145, -0.0479121245, -0.0317765288, 0.00644835038, -0.0171484891, -0.0132029234, 0.0148518169, -0.015487818, 0.0270889606, 0.0168775991, 0.00386017677, -0.039856106, 0.0145455934, 0.0246627312, 0.0124020325, -0.00162975432, -0.0347916484, -0.0148635944, 0.0445436724, 0.000600668252, -0.0245449524, 0.0466165654, 0.0358280949, -0.00358339818, -0.00111447519, -0.00441373372, -0.00730813, 0.00823268853, -0.0181613807, -0.016170932, 0.0353098698, -0.0104174716, -0.0126258107, 0.00879802275, -0.0333547555, -0.0234849509, -0.0138389254, 0.00425178884, -0.0298214108, 0.0384663232, -0.00713146338, 0.0175489355, 0.0174547117, -0.0271125156, 0.00135297573, 0.0361343175, 0.0373592079, -0.0266178474, 0.00757313101, -0.0160531532, 0.0489485711, -0.0021111723, 0.0397854373, 0.00614801608, 0.012390255, -0.0119073642, -0.00246597873, 0.0110888071, 0.0366525389, -0.0181260481, -0.0265000705, -0.00485834619, -0.0178316031, -0.0251574, 0.00181083812, -0.0347445346, -0.0221540574, -0.06322328, -0.0456272326, -0.00729635265, 0.00857424457, -0.00903946813, -0.00535301398, 0.0108473618, -0.00200222759, 0.0213885, -0.00580057083, -0.02478051, -0.0103055825, 0.0196453854, -0.00492312387, -0.0213885, -0.00296064676, -0.00262645143, -0.0119132539, -0.0251338445, -0.00630701659, 0.0295387451, -0.0135444803, -0.0293974113, -0.0241916198, -0.0201400537, -0.0248747319, -0.017925825, 0.0203873869, -0.0134973684, 0.0192567166, -0.0249453988, -0.0249689538, 0.00231875619, 0.0365347639, -0.0288556311, 0.0182909369, -0.013120479, -0.0516810231, -0.000128543747, 0.0233671721, -0.0240149517, -0.0421409979, 0.0163711533, 0.0510685779, 0.0368880965, -0.00565334829, -0.0144513715, 0.0393378809, -0.0012219476, -0.00799124315, 0.0203756094, 0.0266885143, -0.0430125557, -0.0101701375, 0.0156762637, -0.0134855909, 0.070195742, -0.0427063331, 0.0265942924, -0.00118514197, 0.0481005721, 0.0168775991, 0.012778922, 0.0163593758, 0.014121593, 0.00701957382, 0.0209173877, 0.0410103314, 0.00992280338, 0.00567395939, -0.0164300427, -0.00167244882, -0.0101053603, 0.0150284842, 0.00139787863, -0.0101171378, 0.00732579688, 0.000662869774, -0.013803592, 0.00171956012, -0.00683112908, -0.0290440768, 0.0103821382, 0.0188327152, -0.0482183471, 0.0165124871, 0.00719624106, -0.00683701783, 0.000520431902, 0.0252987333, -0.00410751067, -0.0159471538, -0.0189976059, -0.00726690795, 0.00913369097, -0.0248747319, 0.0160178207, 0.0143689262, -0.00152964285, 0.00406923285, -0.0103350272, 0.0155349299, 0.0120428093, -0.00844468921, -0.0159942638, 0.034344092, 0.0436250046, -0.0207171664, 0.0198691636, 0.0700072944, -0.0292325206, -0.016218042, -0.00954002514, 0.0262174029, -0.00141039258, -0.00768502, -0.00996402651, -0.00944580231, 0.0489956848, -0.0027913407, -0.0246156193, 0.00903946813, -0.00270742388, 0.00471112365, 0.00965780299, 0.0215533897, -0.02268406, -0.00353923161, -0.0170896, -0.0128378114, -0.0195511617, -0.0168187115, -0.0267356262, 0.0146044828, -0.0281254072, -0.0148635944, -0.0225662813, 0.0043754559, -0.0120840315, 0.00680757361, -0.00134193408, 0.0461925641, 0.0031947305, -0.0308107473, 0.0159589313, -0.0069194627, -0.0238736179, -0.0095871361, 0.0142747043, -0.0142511483, -0.0265000705, -0.0058653485, 0.0263587367, -0.0321063064, -0.00175047677, -0.0206465, -0.00464634551, 0.016536044, -0.0187267158, -0.0519636907, 0.00560623687, -0.0119839199, -0.00786168687, 0.0416698866, 0.0103350272, 0.0509272441, -0.00416051084, 0.000221386, -0.00182850484, -0.00705490727, -0.0139449257, -0.000722863, -0.0027412849, 0.00569162611, 0.0379716568, -0.0100759156, -0.00324478629, 0.0251102876, 0.0109945843, 0.0198338293, 0.00299009122, 0.00177256018, -0.00520873582, -0.0134973684, 0.0173133779, -0.0150049282, -0.00631879456, -0.00987569243, -0.0301276352, -0.0344854221, -0.0342027582, 0.0150520392, 0.008792134, 0.0203520525, -0.0253694, -0.00217006123, 0.00617746077, 0.00863313396, -0.00783224311, -0.0197867192, 0.00543251447, 0.00704901852, 0.00784990937, -0.000811196573, -0.0252280664, 0.0169836, -0.00934569165, 0.00690768473, 0.0111712515, 0.0233082827, 0.0158175975, -0.00371589861, -0.0644481704, -0.0178198237, 0.0390552133, 6.19255079e-05, -0.00663090637, 0.0194922742, 0.0182320476, 0.0160060413, -0.0139331473, -0.00937513541, -0.0189387165, -0.0198102742, -0.0218596123, 0.0027000627, 0.0118131423, 0.0151227061, -0.042989, -0.0118955867, 0.010976918, -0.0312347487, -0.00749657536, -0.0202224981, 0.00340673118, -0.0353098698, 0.0169011559, 0.0151580395, -0.0345560908, -0.0122018103, -0.035922315, 0.037948098, -0.0358045399, -0.00912780128, 0.00683112908, 0.0207524989, 0.00205817213, -0.0128378114, -0.022024503, 0.000779543712, 0.0164653771, 0.00524112489, -0.0317294151, 0.00812668819, 0.00223778374, 0.00152964285, 0.000698203221, 0.00917491317, -0.00762024242, 0.0171838235, 0.0198338293, 0.0195511617, -0.035121426, -0.00952235796, 0.00123740605, -0.0118602533, 0.0170189328, -0.000142805933, -0.0166655984, -0.0100641372, -0.00182114367, -0.00380128785, -0.0231433939, -0.00460806768, -0.0054619587, -0.00844468921, -0.00842113327, -0.0167480446, -0.000406334409, 0.021341389, -0.00297684106, -0.0128024779, 0.0125551438, -0.00660735089, 0.0263587367, 0.00245272857, 0.00617746077, -0.000346709247, -0.00613034936, 0.0375947654, 0.00523818051, -0.0183851589, 0.0199044961, -0.00457862299, 0.00444906717, 0.0444023386, 0.0038984546, -0.0339436457, 0.0113714747, 0.0095164692, 0.00545607, -0.00571223721, 0.0138978139, 0.00153847621, -0.010888584, -0.0232729502, 0.011206585, 0.0346267559, -0.00762613118, 0.00391612155, -0.0123195881, 0.0076437979, 0.0119485874, -0.0257934015, -0.00975791458, 0.00404862175, 0.000666550361, -0.0205051657, -0.00344206463, -0.000173722685, 0.00165919878, -0.0282196291, 0.016218042, -0.00698424038, 0.00331839756, 0.0176902693, 0.0407512188, -0.0219538361, -0.0157704856, -0.0251809545, -0.00553851435, -0.00687235128, -0.00663090637, 0.00322711957, -0.00560623687, 0.00859191176, -0.0245685093, 0.0325774178, 0.0209762771, -0.00750246411, -0.0356396474, -0.00193008839, -0.0041929, 0.002493951, 0.0028767297, 0.0196924955, -0.0163593758, -0.0357103162, 0.0380894318, -0.0084918, -0.0191860497, 0.0222482812, -0.000847266114, 0.0494667962, 0.0110946959, -0.00772035355, 0.0117189195, -0.0287142973, 0.043389447, -0.0240267292, -0.01241381, 0.00370117649, 0.000623855798, -0.00756135304, -0.00643657241, 0.0135444803, -0.0305987466, -0.0152522624, -0.0143924821, 0.0111300293, 0.0178669356, 0.00826213323, -0.013803592, -0.00482301274, -0.0021730056, 0.0132264793, 0.0258405115, -0.0372178741, -0.00945758075, 0.0169600453, 0.0162651539, 0.00039382049, -0.011548141, 0.0376889892, 0.0170424897, 0.037877433, -0.0151815955, 0.01478115, -0.0161002651, 0.018561827, 0.017195601, -0.00107398897, 0.00377773214, -0.0293503, 0.0177020468, 0.0140391476, -0.0163947102, -0.0259818453, -0.0106471395, -0.0283138528, 0.00171808782, -0.0231905058, 0.00817968789, 0.0288320761, -0.0113008078, 0.018974049, -0.000959891418, -0.0453916751, 0.0250160657, 0.0581823736, 0.0154995965, 0.0395734385, -0.0169953778, -0.00226281141, -0.0216005016, 0.0171838235, 0.00903357938, -0.0147222606, 0.0051910691, -0.000871557859, 0.0258876234, 0.0188091602, 0.0168422665, 0.00415167771, 0.0102231381, 0.015193373, -0.0289734099, 0.0140038142, 0.0267591812, 0.0206465, 0.0167244878, -0.0178080462, 0.00220392249, -0.00899235718, -0.0245449524, 0.0164182652, 0.0135209244, 0.0105764726, 0.0421409979, 0.0036717318, -0.0125669222, 0.0329778641, -0.00134561467, 0.028290296, -0.0109828068, 0.00367762079, -0.00663679512, -0.00219950569, -0.0103644719, 0.0123431431, -0.00784402061, -0.011548141, 0.000488042948, 0.0253694, 0.0100523597, 0.006536684, 0.00331545318, 0.00890991185, -0.0399974398, -0.0116011417, 0.0212118328, 0.0242622867, 0.00225692266, -0.00565040391, 0.0288320761, 0.0233200621, 0.0161355976, 0.0190918278, -0.0190329384, -0.0456743427, 0.0151580395, 0.00460512331, 0.00540601416, 0.0188562721, -0.00270300708, -0.0265000705, -0.0193627179, 0.0139095923, -0.0199987199, 0.0159707088, -0.0131558124, -0.000817821594, 0.0348858684, -0.0244507305, 0.00796768721, -0.0461925641, -0.0143218152, -0.0116659198, -0.0051086247, -0.00599784916, -0.0136504807, -0.0314467475, 0.0348858684, -0.019975163, -0.0129438117, -0.00450206734, -0.0133324796, 0.0193038285, 0.0158175975, 0.0031535083, 0.00696657365, -0.0292796325, 0.00988747086, -0.0247569531, 0.00125507277, -0.0109062511, 0.0210587215, 0.00078543264, 0.029656522, 0.028243186, -0.00705490727, -0.00768502, 0.0202224981, 0.0112006962, -0.0143689262, -0.0437663384, -0.00998758152, 0.0118013639, -0.0260760691, -0.0125080328, 0.00270742388, 0.0304338578, 0.00823268853, 0.00637179473, 0.0231198389, 0.0117248083, -0.0224720594, -0.00349212019, -0.00914546847, 0.00372178759, -0.0114362519, -0.00504384656, -0.0234731734, 0.0197631624, 0.0100641372, -0.00180936581, -0.0210587215, 0.00697246287, -0.0124609219, -0.034367647, -0.0569103733, 0.0205993876, 0.00305634132, -0.0228371713, 0.0315409712, 0.00706079649, -0.0619041622, 0.0135915913, -0.0489485711, -0.0235556178, -0.00970491394, -0.0330014192, -0.0178433806, 0.0396205485, 0.0138624804, -0.0242387298, -0.0328600854, -0.0358516499, 0.00111815566, 0.0147458166, -0.0315645263, 0.000528897217, 0.0147458166, 0.0040221219, 0.0308107473, -0.00516456924, 0.0305987466, 0.0105411392, -0.0181142706, 0.00279281288, -0.00863313396, 0.00825624354, 0.0110829184, 0.00888635684, 0.0154289296, 0.0301983021, -0.0154760405, 0.0263822917, -0.0396205485, -0.0280076284, 0.0248982869, -0.0155702634, 0.0380658768, -0.0124020325, 0.00279870187, -0.0211293884, -0.000221201975, 0.0210940558, 0.0227547269, -0.0177020468, -0.0135327019, 0.0148400385, -0.00150903175, -0.000639682228, 0.0339436457, -0.0247569531, 0.0319178626, 0.0592659339, 0.0252987333, -0.0408218838, 0.0233436171, -0.0411516652, 0.00444906717, 0.0125551438, -0.0148989279, 0.00623046095, 0.0392672159, -0.0158647075, 0.0144042596, 0.064777948, -0.0342027582, -0.00908069, 0.013780036, -0.0518694706, 0.0204227194, 0.00901002344, -0.0070019071, 0.0264529586, -0.0153700402, -0.00442256732, 0.0385841019, 0.0173133779, -0.0128495889, -0.0145220384, -0.0330249742, 0.0103880269, 0.00162386533, 0.0028605354, 0.0312347487, -0.00367762079, 0.00931624696, 0.0166420434, 0.00817968789, -0.0416463315, -0.00658968417, 0.0388667695, 0.00396323251, -0.0149578173, -0.0161120426, -0.00609501591, 0.0163593758, -0.00406923285, -0.00622457173, 0.00547373667, -0.0353569835, 0.0176313799, 0.00718446309, -0.0120133646, 0.0255107339, -0.0222600587, -0.0162298195, 0.0196571629, -0.00929269101, 0.0139684808, 0.0129202558, 0.0176313799, 0.01343848, 0.000419952499, -0.00134414237, 0.0140038142, 0.0169247109, 0.00840346608, -0.0236616172, -0.0156291518, 0.0025646179, -0.0109474733, -0.0201989412, 0.0179964919, 0.0368645415, 0.0171838235, 0.0128495889, -0.00356278708, -0.0252987333, -0.0245920643, 0.00540895853, -0.0359929837, 0.00666624, -0.0112360297, 0.017537158, -0.0157115962, -0.0207171664, -0.0214238334, -0.00872735586, -0.0164182652, 0.00547373667, 0.034367647, -0.00283845188, -0.00839168858, -0.00252634, -0.000913516269, -0.0225309487, -0.0252516214, -0.0103939166, -0.00693124, 0.0447792299, 0.00671335077, 0.04487345, 0.00141775375, 0.0447556749, 0.0349094234, -0.0021730056, 0.0191389397, -0.00874502305, 0.0154995965, -0.00847413298, -0.00807368755, 0.00724335248, 0.0376418754, 0.017219156, -0.0223542806, 0.0128378114, 0.00340967556, 0.00943991356, -0.00116453087, 0.00775568699, 0.0209409446, -0.0177138243, -0.00277661835, -0.0132382568, -0.0280547403, 0.0251574, -0.00732579688, -0.0010666278, 0.0101642488, -0.0164418202, 0.00978147052, -1.2168869e-05, -0.0281254072, 0.00234672846, -0.012072254, -0.00823268853, 0.0163122658, -0.0178551581, 0.00519695831, 0.0132500352, 0.0224720594, 0.0279369615, -0.0167009328, 0.0262645129, -0.01580582, -0.00364523171, 0.0161355976, 0.0128024779, 0.0146633722, -0.0118602533, -0.0107472502, -0.0229785051, 0.0203520525, -0.0252987333, -0.0133560346, -0.00340084219, 0.0174547117, -0.00153700402, 0.0190093834, -0.0154524846, 0.0103998054, -0.0212000553, -0.0119544761, -0.0339436457, 0.013827147, 0.0022230614, 0.00178728253, -0.000457494258, 0.0183969364, -0.00406923285, -0.0110946959, -0.0404921062, 0.0218949467, 0.0129320342, 0.0243800636, 0.00355689833, 0.04063344, -0.00750246411, -0.020705387, 0.0157233737, -0.0117189195, -0.0208349433, -0.0304574128, -0.00306517468, 0.00339789782, 0.0157940406, -0.0368645415, 0.0444023386, -0.00509390235, -0.00246303435, 0.0103291385, -0.0213767234, -0.0191860497, 0.0171249341, -0.0426827781, -0.0104115829, 0.00400445517, 0.031682305, -0.0113243628, 0.0188680496, -0.00307400804, -0.0147693725, -0.0174076017, 0.017537158, -0.0304574128, 0.0105882501, 0.0280782953, 0.00494373543, 0.00819735508, -0.0424472243, -0.0267591812, -0.019292051, -0.0176549349, -0.00108723901, -0.0101112491, 0.012025143, -0.00257492345, -0.0276307389, -0.00205522752, -0.0291854106, -0.0109298062, 0.0082268, -0.01241381, -0.032436084, 0.0132853677, -0.00785579812, 0.023049172, 0.00420762226, -0.00126096164, -0.0135915913, -0.00774979824, 0.0191742722, -0.00431656698, -0.014145148, -0.0297507439, -0.02478051, 0.0048082904, -0.00808546599, 0.015829375, -0.0234260615, 0.00941046886, 0.0265707355, 0.0231316164, 0.0171249341, 0.00882746745, 0.0334018655, -0.0144042596, -0.0262880698, -0.00336256437, -0.0160295982, 0.030292524, 0.0101465825, 0.0236733947, 0.0209880546, -0.0128142554, -0.00286789634, -0.0176902693, -0.030292524, -0.00364228734, -0.00965780299, 0.0242622867, -0.0186560489, -0.00436367793, -0.0370058753, -0.00953413639, -0.00168128219, 0.00969902519, 0.0150402617, 0.00522051379, -0.0382307656, 0.00166656, -0.055120144, -0.0342263132, 0.0068782405, 0.0346503146, -0.000377625984, -0.0230373945, 0.00214208895, -0.015829375, 0.00553557, 0.0248982869, 0.0116129192, 0.0190329384, 0.0440018922, -0.0234849509, 0.0140155926, 0.0100346934, -0.00213031122, -0.0276307389, -0.0109828068, -0.0138624804, -1.82993099e-05, -0.0218242798, -0.00247039529, -0.0108768065, 0.00763790915, 0.0135915913, 0.00112110015, 0.0222600587, 0.0305045247, 0.0160413757, -0.0186207164, -0.0275836289, 0.021682946, -0.0266178474, 0.0131087014, -0.0112536959, 0.0017902269, 0.0197984967, 0.00424001133, 0.00332723092, 0.00207289425, -0.00727868592, 0.00635412801, 0.0139920367, 0.00324184191, -0.0141922599, -0.00490545714, 0.00707846321, 0.0193980504, -0.0256049559, 0.0176667124, 0.0217771679, 0.00908657908, 0.014463149, 0.0256520677, -0.00708435196, -0.0146398162, -0.00716679636, 0.0109651396, 0.0278427396, 0.0128142554, -0.0153464852, 0.000780279806, -0.0323183052, 0.00170631008, -0.0159942638, 0.00939869136, -0.000253959, 0.0173016, 0.0320827514, -0.0156291518, 0.00538245868, -0.0168775991, 0.00687235128, -0.00712557416, 0.00461690081, -0.00381306559, 0.00714913, -0.000216601256, -0.00666624, 0.0100582484, 0.00991102587, -0.017242711, -0.00107546116, -0.00495256856, -0.0225309487, -0.00307989703, 0.00788524281, 0.0177609362, 0.0115304748, -0.00575640379, -0.0110829184, -0.00784402061, 0.0127200335, 0.0114362519, -0.0163240433, 0.0286200754, 0.000838432752, -0.0129438117, -0.0143924821, -0.0119485874, -0.0247333981, -0.0126964776, -0.00959891453, 0.00463456754, 0.00812079944, 0.00903946813, -0.000301990367, -0.00858013332, -0.0297978558, 0.0314467475, 0.0170071553, -0.0104645826, -0.0290205199, 0.0177609362, -0.0145338159, -0.00138242031, -0.00979913678, -0.0122371428, 0.0192684941, 0.00109533616, 0.00293709105, 0.0122842547, -0.00263528479, 0.0051292358, -0.00514395814, 0.011389141, 0.00773802027, 0.0148871504, -0.00629523862, -0.0217536129, 0.002585229, -0.00823857728, 0.00600668229, -0.0120192533, 0.019680718, 0.00763790915, -0.00730813, -0.0131087014, 0.0109592509, 0.017925825, 0.0194922742, -0.00829746667, -0.0312818587, -0.0214591678, -0.0160413757, 0.0354276486, 0.00534123601, -0.000809724326, -0.0202813875, -0.0206111651, 0.00219214475, 0.0207171664, 0.0108591393, -0.0212471671, 0.0044667339, 0.00567101501, -0.00572695956, -0.00909246877, -0.00177108799, 0.00438723387, -0.0112183625, 0.0256520677, -0.00836813264, -0.00149062893, 0.0218831692, -0.00017915151, -0.00154730957, 0.00528823631, -0.00498790201, -0.0146162603, 0.0149578173, 0.0137093691, 0.00695479615, -0.0111241406, -0.00322417519, -0.00589773757, 0.00355100934, 0.0138507029, 0.00746124191, 0.0293267444, 0.00208614441, -0.000346157147, -0.0150049282, -0.00473467913, -0.0109121399, -0.0333547555, -0.00552379247, -0.0257462896, 0.00716679636, -0.00191094948, 0.0199398305, 0.00559740374, -0.0270418487, -0.0268298481, 0.0212353896, 0.00149504561, -0.0100700269, -0.0229313932, 0.0245449524, -0.00188886607, 0.0196336079, 0.0400681049, 0.0201989412, 0.00166656, 0.0024291731, -0.0163829327, 0.0111241406, 0.0151815955, -0.0175724905, -0.0299156345, 0.00380128785, -0.00773802027, -0.0084918, -0.00508212438, -0.00646012789, 0.0260996241, 0.0220833905, 0.0324831977, -0.00337434211, 0.00502912421, -0.019680718, -0.00981091429, 0.0188916046, 0.00878624525, 0.0279840734, 0.0122135878, 0.0269947369, -0.0127200335, 0.0149695948, -0.00487601291, 0.0134267015, -0.0166067109, 0.0276778508, 0.00820324384, 0.00860368926, 0.00285464642, -0.0061244606, -0.0114892526, 0.0187620483, -0.0159235969, 0.0144278156, -0.0252045114, 0.0061656828, 0.0411045514, -0.0116776973, -0.00855657831, 0.0242622867, -0.00585651537, -0.00938102417, -0.0073022414, -0.00446378952, -0.0299627446, -0.00196542172, -0.0195982736, -0.0355454274, 0.00429006666, 0.0341085345, -0.0293503, -0.00381306559, 0.00935746916, 0.0168775991, -0.00999936, -0.00208761659, -0.00800891, 0.0121782543, -0.00987569243, 0.0281489622, 0.0171013791, 0.000555029255, -0.00556501467, -0.004487345, 0.01794938, -0.026146736, -0.0222247243, 0.00750835286, -0.00463751238, -0.00324773067, 0.00490251277, 0.0207642764, -0.00447262265, 0.00140744809, -0.00693712942, 0.0108355843, -0.00586240413, -0.00348917581, -0.00503501343, -0.012778922, 0.0094222473, -0.00617746077, 0.00711379666, 0.0244271755, 0.0162887089, 0.0263116248, -0.0128613673, 0.0039720661, 0.00169600442, 0.00195364398, -0.0128849223, -0.000850946701, -0.0126729226, -0.0110593624, 0.0096695805, -0.0131322565, 0.0101760263, -0.00541484775, -0.0161473751, 0.0188562721, 0.0301511902, 0.0093928026, -0.00305928569, -0.00878624525, -2.93065e-05, 0.0139331473, 0.010976918, 0.00710201869, 0.0298920777, -0.00350684253, 0.0102820266, -0.0366289839, 0.0153582627, -0.00435778918, -0.0190564953, -0.00195658836, -0.00147222611, 0.000942960789, 0.0196453854, 0.00804424379, 0.0101524713, -0.00113287801, -0.00846235547, 0.00782635342, 0.0137682585, 0.00893935654, 0.00181967148, -0.0173251573, 0.0110299177, 0.0112183625, -0.0069194627, 0.010293805, -0.00339200883, -0.00783224311, 0.0043548448, 0.0080677988, -0.0238500629, 0.0117660305, -0.00145382329, 0.0130144786, -0.013120479, -0.00515573565, 0.000679064309, -0.0165007096, 0.0141922599, 0.0173604898, -0.00390139921, 0.00979913678, 0.021682946, 0.00756724225, 0.0269711819, 0.00582118193, -0.00345089799, -0.00605968246, -0.00969902519, -0.00997580402, 0.028290296, -0.00584179303, -0.00607734919, 0.00790291, 0.00290470198, -0.00735524157, -0.000310823729, 0.00693712942, -0.0197278298, 0.00283403532, -0.00333312, -0.000791321509, 0.0245449524, 0.00663090637, -0.00274275709, 0.00762613118, -0.0044049006, -0.0094222473, -0.0178433806, 0.000370816939, 0.00245567318, -0.0250867326, 4.49489e-05, -0.00739646377, 0.0017225045, 0.0140744811, 0.023414284, 0.00305928569, 0.0113066966, -0.00935746916, 0.0139449257, 0.00308578578, -0.00592423789, -0.00409278832, 0.0149931507, 0.00749068614, -0.0011792531, -0.00173281, 0.00370706525, 0.0176784918, -0.0253458451, -0.00570634846, 0.00884513464, 0.0153935961, 0.00113876688, 0.0169011559, -0.018585382, -0.0108768065, -0.00460512331, -0.000146210456, 0.00371295423, 0.000376153766, -0.00636590552, -0.0167362653, -0.0141569264, 0.0328365304, 0.00926913507, -0.0141569264, -0.000969460874, 0.00268092379, -0.00686646253, 0.00752601959, 0.000750835286, -0.0256049559, -0.0149695948, -0.0322005302, 0.000474792905, -0.0277720727, 0.0120192533, -0.0131793683, -0.0011770447, 0.0308578592, -0.00386312115, 0.0144042596, 0.00456979, -0.0061656828, 0.0121193649, -0.00744946394, -0.0123078097, -0.025416512, -0.00572401518, 0.0132500352, 0.00242770091, -0.00899235718, 0.00530590303, 0.0103114713, -0.0157704856, -0.0142864818, -0.0208349433, 0.000603612687, 0.0118602533, 0.00825035479, -0.0136151472, 0.00398384361, 0.0041134, 0.000736113056, 0.000336035591, -0.00847413298, -0.0139802592, -0.0121075874, 0.0184793826, -0.0325774178, -0.00210969988, -0.0375240967, 0.0154171512, 0.0153229292, -0.000702619902, -0.0119368089, 0.0137329251, -0.0047464571, 0.000976085896, 0.00589773757, -0.0107119167, -0.0105116945, -0.00404567737, 0.00494079059, -0.0251574, -0.0181260481, 0.0347916484, 0.0201518312, 0.0243800636, -0.00886869, -0.00598018244, 0.0193862729, -0.0203520525, 0.0246862862, -0.00856835581, -0.00296359113, 0.0269476268, 0.00526468037, -0.00374239869, -0.00776157575, -0.00351273152, 0.00205522752, -0.0107708061, 0.0050585689, 0.0290676318, -0.00473467913, 0.00516456924, -0.00312995259, 0.00436662277, -0.00843879953, 0.0238382854, 0.0149460388, -0.0107236952, 0.0202224981, 0.0125315888, 0.0201164968, 0.00230697822, -0.0121900318, 0.00368350977, 0.0115304748, 0.0134855909, 0.0169364884, -0.0134738134, -0.0126022557, -0.00783224311, -0.0151109286, -0.0215062778, -0.00408395519, 0.0104586938, -0.000133512498, 0.00441962294, -0.00473467913, -0.0193038285, 0.0151344845, 0.00998758152, -0.000772918691, -0.00333900866, 0.0298920777, 0.00366584305, 0.0135680353, -0.00521462457, -0.0239796191, -0.00903946813, 0.0167362653, 0.00324184191, 0.00300628575, -0.00633057207, 0.00391612155, 0.00964013673, -0.00783224311, -0.0209409446, -0.0126493666, -0.0364640951, -0.00536773633, 0.0140273701, 0.0184911601, 0.00493195746, -0.0132382568, 0.0054001254, -0.0019035883, -0.0031034525, 0.00615979405, -0.00413989974, -0.0279605184, -0.00909835752, -0.00410751067, -0.00542956963, 0.0166067109, 0.00230697822, 0.00422823336, -0.00673101749, -9.94902803e-06, 0.0152522624, -0.00560034811, 0.00398089923, -0.00826802198, -0.00967547, 0.0123549215, -0.00733168609, -0.0182320476, 0.00303278584, -0.0139331473, -0.0243800636, 0.0182909369, -0.0079441322, 0.0135209244, 0.0150873726, -0.00843879953, -0.0239560623, -0.00488190167, -0.0228607263, 0.0195511617, 0.0104881385, -0.0174900461, 0.0137447026, 0.0187384933, 0.00292972988, -0.00873324554, -0.0171602666, -0.0138978139, -0.00953413639, 0.00596251572, 0.00187119935, 0.00430773338, -0.00926324632, -0.0131675899, 0.00130071177, 0.00848591141, -0.0181024913, 0.0183851589, 0.0290911868, -0.0263587367, 0.0109710284, -0.0147458166, -0.00644246116, 0.00792646501, -0.000331250863, -0.00431951135, 0.0150873726, -0.0224485025, 0.042989, 0.00652490603, -0.0185029376, -0.00192714389, -0.0169247109, 0.0152169289, 0.00775568699, -0.00315056392, 0.00782046467, 0.0245920643, 0.0156644862, 0.00132058677, -0.00923380163, 0.00378362113, 0.0200222749, 0.00279870187, 0.00223336695, 0.0178551581, -0.0104704723, 0.00486423494, -0.014121593, 0.021294279, 0.0222247243, 0.00895113498, -0.0123195881, 0.000420688593, 0.00153258734, -0.00929269101, -0.0209880546, -0.00980502553, 0.0146987056, 0.000807516, -0.0292560775, -0.00184322707, -0.000768502, 0.00769090885, -0.00690768473, -0.0187031608, 0.0215062778, -0.00104601658, 0.00153111515, 0.0272774044, 0.000865668932, 0.0216240566, -0.0146633722, -0.0175018236, -0.0161473751, 0.0107001392, -0.00998169277, 0.0036305096, -0.0259582903, 0.00454623438, 0.0265707355, -0.00250425655, 0.00653079478, -0.0195393842, -0.0119956983, 0.0180082694, -0.0120192533, 0.0036511207, -0.0131440349, 0.023096282, 0.0168893784, -0.0150284842, -0.00359517615, -0.0233200621, -0.0292089656, 0.00492017949, 0.0178904906, -0.0206936095, 0.0114598079, 0.0328600854, 0.00693712942, -0.0122371428, 0.0137918144, -0.0180200469, 0.00129997567, -0.018561827, -0.00161503197, -0.017219156, -0.0126611441, -0.0110122515, -0.00795591, -0.00138904527, 0.00275159045, -0.010205471, 0.0123549215, -0.0149342613, 0.000229851299, -0.01343848, 0.0190211609, 0.0279134065, 0.0095576914, -0.0170660447, -0.00788524281, 0.00928091351, -0.0109298062, 0.0157469306, 0.0170778222, -0.00237470074, -0.0141569264, -0.0153229292, 0.00302984123, 0.019975163, 0.0213531666, -8.87016213e-05, -0.000195622037, 0.0108826952, 0.00683112908, 0.0381836556, -0.00430773338, 0.0188209377, 0.00881569, 0.0208349433, 0.0283374079, -0.014098037, -0.000680904544, -0.0264058467, 0.0126611441, -0.00307400804, 0.0156527068, 0.00601846026, 0.0239796191, 0.00748479739, -0.0142982602, 0.00952824764, 0.0187502708, 0.012755367, 0.0188798271, -0.00259406236, 0.00355984271, 0.00491134636, -0.00938102417, 0.0109121399, -0.0155467074, -0.00346562, 0.00752601959, -0.00651901728, 0.0176667124, 0.000101491583, -0.0162769314, 0.0272774044, -0.0208584983, 0.00568279251, 0.0288085192, -0.00204933877, -0.00310639711, -0.0123666991, 0.000101583602, -0.0107236952, 0.00275159045, 0.0204698313, -0.0139802592, 0.00508212438, 0.00779690919, 0.0229785051, -0.0201047193, -0.0321298614, 6.10513744e-05, -0.00250278437, 0.000123943028, 0.0154760405, -0.0118484758, -0.000238316599, -0.00747890864, -0.00744357519, 0.00562684797, 0.00883924589, 0.00927502476, 0.0169011559, -0.000676119816, 0.00418995554, -0.0166891553, 0.0217889454, 0.0212471671, -0.0114833638, 0.00888635684, 0.00100332208, -0.00393673265, -0.00430773338, -0.00411045505, 0.0114656966, 0.00587123772, 0.0229431707, 0.0192684941, 0.014828261, -0.0160178207, -0.0124726994, -0.00553851435, -0.0308343023, 0.00286642415, -0.00799713191, -0.00232611713, 0.0240149517, 0.000106828404, 0.00630112784, -0.0236262847, 0.00602729339, -0.00846824422, 0.00860368926, -0.0128142554, -0.0143924821, -0.00912191253, -0.00260584, -0.0194098279, -0.0154171512, -0.0136387022, -0.0101348041, 0.0102996938, 0.00219508912, 0.00885691214, -0.00403978815, -0.0189387165, 0.0281489622, 0.00635412801, 0.0139095923, -0.00105632225, 0.0160295982, 0.0286436304, -0.00456684548, 0.0108179171, 0.00866257865, 0.00686057378, 0.00592129352, -0.0109239174, 0.00376889878, -0.0301040784, -0.000611341908, 0.0154995965, -0.0172544904, -0.000581897388, 0.00214650575, 0.000623119704, -0.00990513712, -0.00898646843, 0.0284080748, -0.00315645267, -0.00224661711, -0.0294916332, 0.00960480329, 0.0189033821, -0.010499916, 0.0107531389, 0.00369823189, -0.0245920643, -0.00314467493, 0.00455801189, 0.0169247109, 0.0176196024, -0.0197042748, -0.0137918144, 0.0211058334, 0.000622383552, 0.0118779205, -0.0359458737, 0.0140391476, 0.00396912172, 0.0167362653, -0.0101171378, -0.0202342756, 0.0121546984, 0.0109121399, 0.0218478348, 0.00776746497, -0.0159942638, -0.00114760024, -0.0044372892, -0.0144160381, -0.0160649307, -0.00895113498, -0.0150049282, -0.00474940147, 0.023049172, 0.0034037868, 0.00899235718, 0.00282372953, -0.012755367, -0.0131911458, -0.0291382987, -0.0131322565, 0.0144513715, 0.00106073893, -0.0133560346, 0.0104233604, 0.00709024072, -0.00436956715, 0.0179140475, 0.000288556301, 0.0240385067, -0.00113508629, 0.00371884299, 0.000342292566, 0.00390728796, -0.0104115829, -0.00318295276, -0.0120074758, 0.0061244606, -0.0142275933, 0.00936924666, 0.00316823064, 0.00491429074, 0.0109828068, -0.0116305863, 0.00211706106, 0.00561212562, 0.0139331473, -0.0185382701, -0.0112124737, -0.0095576914, 0.00171956012, -0.0295858551, 0.0168775991, 0.0170307122, -0.00127494778, 0.0135915913, 0.0221187249, -0.00568868173, -0.0022024503, 0.00813257694, 0.0167009328, 0.0224720594, 0.0277485177, -0.00301511912, -0.00307989703, 0.0352156498, -0.0232258383, 0.00740824174, -0.0104469163, 0.014828261, 0.0191624947, -0.0141804814, 0.00832102168, 0.0258169565, 0.00553557, -0.00971080363, -0.00784990937, -0.00757901976, 0.00999936, -0.00756724225, 0.0190564953, -0.0126258107, 0.0207171664, -0.0102820266, -0.00636001676, 0.00222011702, 0.0220009461, -0.0058447374, 0.00324184191, -0.00705490727, 0.0177373793, 0.0101465825, -0.00442845607, -0.0417405553, 0.00349212019, -0.0159942638, -0.0158411525, -0.0147693725, 0.00842113327, -0.015487818, 0.00816791, 0.0148753719, -0.0214002784, 0.0263587367, 0.016194487, -0.00135886471, 0.00548551418, 0.0183851589, -0.0277249608, 0.014145148, -0.0203991644, -0.0283374079, -0.00497317966, 0.00706668524, -0.00529118069, -0.00711968541, 0.00643657241, 0.0134973684, -0.0279605184, 0.0385605469, 0.0198691636, -0.00155467074, -0.00207436667, 0.0185382701, 0.000626064138, -0.000323337648, -0.0457685664, -1.61139742e-05, 0.00898057874, 0.000893641263, -0.00240561739, -0.0183262695, 0.00850357767, -0.0015193373, -0.008586023, 0.00343912025, 0.0076437979, -0.00306517468, -0.00111668347, 0.015511374, -0.00879802275, -0.00939869136, 0.00216564466, 0.0110475849, -0.00840935577, -0.00618334953, 0.00828568824, -0.00489367964, 0.00401623268, -0.00677812891, 0.0152404848, 0.0164182652, 0.00945169106, -0.0122135878, 0.00991691463, 0.00464045675, 0.0168893784, -0.0317529738, -0.0159000419, -0.00529412506, -0.0088215787, 0.00933980197, -0.0312583037, 0.00371589861, 0.00337139773, 0.00614801608, 0.0128731448, 0.0220009461, -0.00453151204, 0.0236733947, -0.00117851701, 0.0298449676, -0.0135444803, -0.00952824764, 0.0166655984, 0.00595662696, 0.0284551866, 0.0317529738, -0.00760846445, -0.00429890025, 0.0216005016, 0.00288556307, -0.0113832522, 0.000845057773, -0.00383367669, 0.00448145624, 0.0160178207, 0.0115186973, -0.0111064734, -0.0132735902, 0.0285494085, 0.0109651396, -0.0117601417, 0.0117778089, 0.00408984395, 0.00208025542, 0.0106353611, -0.00156203192, 0.0124373659, -0.00508212438, -0.000754515873, 0.00797946565, 0.00771446479, -0.0128260339, 0.0178433806, 0.0258876234, 0.0186442714, -0.00566218141, -0.0178669356, 0.0210587215, 0.0112124737, -0.00658968417, -0.00458156737, -0.0163004864, -0.0195276067, 0.0022436725, -0.0124726994, -0.00936924666, -0.00120869756, -0.00787935406, 0.0113302516, 0.00153847621, -0.0239913967, -0.0142864818, -0.0320827514, -0.00226722821, 0.0151580395, -0.0186324939, -0.00557679264, -0.000867141178, 0.0293031875, 0.00759668648, 0.00307695242, 0.00936335791, -0.00330367545, -0.0125904772, -0.00103791943, 0.00343912025, -0.00555029232, 0.00868024491, 0.0082268, 0.00122636429, -0.00493195746, -0.010841473, -0.0232493952, -0.00278839632, 0.000672439288, -0.0313054137, -0.0103468047, -0.0142511483, -0.00190211611, -0.0191742722, 0.00141848985, -0.0174547117, 0.0287849642, -0.0117601417, -0.0338494219, -0.00237175613, -0.00163122651, 0.00404567737, 0.00143468427, -0.0131675899, 0.00427828915, 0.0270418487, -0.00792646501, 0.0168422665, 0.0088215787, 0.0123313656, 0.0124020325, 0.000976085896, -0.00463456754, 0.000141425713, -0.0195864961, -0.00263822917, -0.0150049282, 1.14672612e-05, 0.0076732426, -0.00179464358, -0.014145148, 0.0164418202, -0.00413989974, 0.0174076017, -0.00107693335, 0.00343028689, -0.00398973282, 0.0025189789, -0.0206465, -0.0246391762, 0.0026956459, -0.0103585832, -0.00459923409, -0.0309285261, 0.0117130307, 0.0161120426, -0.0124609219, -0.00467873458, -0.00340967556, 0.0142040374, -0.0205404982, 0.0136740357, 0.0125433663, -0.0163122658, -0.0240149517, -0.0151580395, 0.0217771679, -0.00291795214, -0.0155584849, 0.0065484615, 0.00410162192, 0.00773213152, 0.0209173877, -0.00539129181, -0.0268298481, -0.000864932837, 0.0248747319, -0.0080147991, -0.0124020325, -0.0235791728, 0.024804065, 0.0162887089, 0.00108208612, 0.0154524846, -0.0226958375, -0.0362285413, -0.010499916, -0.00774979824, 0.034414757, 0.00537656946, 0.00445495592, -0.00442256732, -0.000222858231, -0.00336550875, -0.0188680496, -0.000898794038, -0.00212442223, 0.00610679388, 0.00837402232, 0.0121782543, 0.0196100511, -0.00160767091, 0.00246597873, 0.00262056245, 0.0138389254, -0.016194487, 0.00626579439, -0.00456979, 0.00588596, 0.00425767805, 0.0265471805, -0.0546490327, -0.00663090637, 0.0314938612, 0.0260996241, -0.00403684378, 0.0192684941, 0.0104469163, -0.013414924, 0.00994047057, -0.00604201574, -0.0107354727, -0.00133898959, 0.0207289439, 0.00519401347, -0.000712557405, -0.0247333981, 0.00402506627, -0.00609501591, 0.0128849223, 0.0119721424, -0.00637179473, 0.00270447927, 0.00340673118, 0.00192272721, -0.0020567, -0.00310934149, -0.00244095083, 0.00345678674, -0.015829375, -0.00883924589, 0.0155349299, 0.0212707222, -0.00706079649, 0.0231787283, 0.0137329251, -0.0135562578, 0.00529412506, -0.00104748888, 0.0127200335, -0.00176372682, 0.00669568405, -0.0123195881, -0.0096283583, -0.00446084514, 0.0114774741, 0.00800891, -0.00240561739, 0.0143807046, -0.00989924837, 0.0217653904, 0.00360400951, 0.00306811905, -0.00415462209, 0.00150461507, -0.0256049559, 0.0281018522, 0.0123313656, 0.00795002095, 0.00892169, 0.0117424754, 0.00815613288, -0.0273009613, 0.0117365867, -0.00502323546, 0.00994635932, 0.0156762637, -0.0120074758, 0.0148518169, 0.00161797646, -0.00157822634, -0.000727279694, -0.0115658082, -0.00376300979, -0.00760846445, -0.00712557416, 0.0131558124, -0.0165949333, -0.0095459139, -0.00462867878, -0.00573579269, 0.0027000627, -0.0108944727, -0.00982858147, 0.0156055968, 0.00234231167, 0.0149224838, 0.0109239174, 0.00723157451, 0.0137211476, -0.0166067109, 0.010340916, 0.0289969649, -0.0301983021, 0.014121593, -0.0112536959, 0.0032889531, -0.00369528751, 0.00901002344, 0.0113596963, -0.0118366973, -0.00561212562, -0.00853891112, 0.00937513541, -0.0055326256, 0.0186560489, -0.0164771546, -0.0260289572, -0.0196689405, 0.0204109419, 0.0011336141, 0.0202107206, 0.0143571487, 0.00604790496, -0.0107708061, 0.000571223733, 0.0456272326, -0.0106648058, 0.00517634675, 0.0100523597, 0.00130292, 0.00422823336, 0.000156332011, 0.0106000276, -0.000599196, -0.00306517468, -0.00604790496, 0.00463162316, -0.028266741, 0.0011115307, -0.00790291, 0.00881569, 0.0124020325, -0.012390255, 0.00605968246, -0.0209056102, -0.0349800922, -0.00565040391, -0.0119485874, -0.00958124734, 0.0243800636, -0.0216005016, -0.0169718228, 0.0123431431, -0.00506445765, 0.00432834448, -0.00915724598, -0.00776746497, 0.0194687173, 0.02031672, -0.00710790744, -0.0370765403, 0.00225103367, 0.0094222473, 0.00428417791, 0.0205287207, -0.0447321162, 0.00202578306, 0.0164536, -0.00922791287, -0.028290296, 0.00274864607, -0.0018137825, -0.0161473751, -0.000502397132, -0.0076025757, 0.0147222606, -0.00543840323, -0.0102643603, 0.00073684915, -0.00131028122, 0.0123078097, 0.0126964776, 0.0359929837, -0.0079441322, -0.00287378533, -0.0281725191, 0.00532651413, 0.000520063855, -0.01585293, 0.0340614244, 0.0113538075, -0.00408689957, -0.0166067109, 0.0100818044, 0.0325538628, 0.00840935577, 0.00879802275, -0.00783224311, 0.00347445346, -0.000215129039, 0.0199044961, 0.0123431431, -0.00276189623, 0.0201871637, -0.0115540307, -0.0120545868, 0.00425473321, 0.0201753862, 0.00205964432, -0.00360989827, -0.00840346608, -0.0222011693, -0.00364817632, -0.000994488713, 1.72526488e-05, -0.0101819159, 0.0120545868, 0.0115834745, -0.0085448, -0.00496729091, 0.000588890456, -0.000586682116, 0.00244242302, 0.0142393708, -0.0161827095, -0.015829375, -0.00255578454, 0.0093103582, -0.0087803565, 0.00381012121, 0.00587712647, 0.0182909369, 0.0245685093, -0.0105529167, 0.00847413298, 0.0454859, -0.0041929, 0.00844468921, -0.0367938727, -0.0105764726, -0.00414578849, -0.0181731582, 0.0213767234, -0.0123666991, 0.0212589446, 0.00160472642, -0.00107325288, 0.000674647628, -0.006890018, 0.012072254, 0.00109312788, 0.0279605184, -0.00871557835, 0.00201400532, -0.000197830377, -0.0121193649, 0.013462035, 0.00978147052, 0.00784402061, 0.0140038142, -0.00968724769, 0.0125198103, -0.0230845045, 0.00940458, 0.00828568824, 0.0124373659, -0.0203756094, 0.00397795485, 0.0038366213, 0.0115069188, 0.00717268558, -0.00184028258, -0.0187149383, -0.0044049006, 0.00658968417, -0.00441962294, 0.00621279422, -0.00840346608, -0.00632468332, 0.00949291419, -0.00677224, 0.00919846818, -0.0104704723, -0.0136740357, -0.00131985068, -0.0196336079, 0.0145220384, -0.00221422804, 0.00305928569, -0.0196218286, 0.000782488147, -0.0206700545, -0.00407806644, 0.01343848, -0.00889813434, 0.0116070304, 0.0150991511, 0.000955474738, 0.0150284842, 0.0164064877, 0.00913369097, -0.00529412506, -0.00660146168, -0.000172342465, -0.0162062645, -0.0169247109, -0.00848591141, 0.014145148, 0.00556501467, -0.0489485711, 0.0164064877, 0.00558562577, 0.0280547403, 0.0105588054, -0.0295387451, -0.0064660171, -0.0170778222, -0.00444023404, -0.00705490727, -0.00999347, -0.0444023386, 0.00883924589, -0.0158411525, -0.0236380622, -0.000884071749, -0.000592571, -0.014145148, 0.00418701116, -0.0128142554, 0.00398678845, -0.00196542172, 0.00023205964, 0.0061951275, 0.013096923, -0.00247628428, -0.0126493666, -0.0306929704, 0.00223189476, -0.0068782405, 0.0088628009, -0.0177020468, -0.0126022557, -0.00382484333, 0.0161355976, 0.000797210436, -0.0128495889, 0.0123431431, -0.0288791861, -0.000808988232, 0.00878624525, -0.00284286868, -0.00431656698, -0.0149342613, 0.00217447802, -0.00352450926, -0.00346562, 0.0155820409, 0.00518518034, 0.0246627312, -0.00239383965, -0.00979913678, -0.000784696487, 0.00467579, 0.0040338994, 0.0157469306, 0.00700779632, -0.0143924821, 0.00160472642, 0.00967547, 0.012755367, 0.0354747586, -0.0326009728, 0.00669568405, -0.00707846321, 0.012731811, -0.0050585689, 0.0126258107, 0.0114656966, -0.00186825485, 0.00782046467, 0.00770268682, -0.00117998919, -0.00439901138, 0.00597429369, 0.0192567166, 0.0225898363, 0.00912780128, 0.0171838235, -0.00678990688, 0.00490251277, 0.0187620483, -0.0199633855, -0.0118543645, -0.0241916198, 0.0167598221, 0.023049172, -0.00166508765, -0.00515573565, 0.00457862299, -0.00560329249, -0.0128495889, 0.00503206858, 0.00716679636, -0.00807368755, 0.0137211476, -0.01343848, -0.0139095923, 0.015146262, -0.00608912716, 0.013803592, 0.00366289844, -0.0180436037, 0.0108355843, 0.0119603649, 0.0287142973, 0.00901002344, -0.0135327019, -0.0136033688, -0.0110946959, 0.00345678674, 0.0120310318, -0.0101701375, 0.0193273835, 0.00543545885, 0.0166891553, 0.00357750943, -0.00079794653, 0.0159235969, 0.00377773214, -0.0164182652, 0.00253222883, 0.00993458182, -0.0111476956, 0.0288556311, -0.0142275933, -0.0123666991, -0.0213649441, 0.0176784918, 0.00358928717, -0.00131322572, 0.0101995822, 0.00159442087, 0.00351273152, -0.0235909503, 0.0251809545, -0.011183029, -0.0149342613, -0.00919846818, 0.0246862862, -0.00181083812, 0.0209056102, -0.0220127236, 0.00227017258, -0.014486705, -0.0126258107, -0.011548141, -0.0229196157, -0.0045079561, 0.0044372892, 0.0102643603, -0.0102643603, -0.00273686834, 0.0132500352, 0.00804424379, -0.00711968541, -0.01451026, -0.0170424897, 0.0198691636, 0.00511156907, -0.0100759156, 0.0108061396, -0.0235556178, 0.0199044961, 0.0161238201, -0.0153347068, 0.0262880698, 0.0235909503, -0.0112713631, 0.00342145353, -0.0167244878, 0.00208467222, 0.0287849642, -0.00709613, 0.0159000419, -0.00530590303, -0.00641301693, -0.00633646129, -0.0359694287, -0.00396912172, 0.00173428236, -0.00592718227, -0.0152287064, 0.0206465, -0.010205471, 0.0196453854, 0.0259347353, -0.00888635684, 0.00808546599, -0.00740824174, -0.0118308086, -0.0087391343, -0.013780036, -0.00190653279, -2.39466772e-05, 0.00610090513, -0.0135091469, 0.0128378114, 0.00576818176, 0.00583296, 0.0196924955, -0.00525290286, 0.00277514616, -0.00496434653, 0.018926939, 0.0197749417, 0.0194098279, -0.0208113883, 0.00623046095, 0.0281018522, -0.0320591964, 0.0257698447, -0.00611268263, 0.0329307541, 0.00467284583, -0.0100288037, -0.014098037, 0.0191978291, 0.0062363497, 0.00245714537, -0.0197749417, -0.00223925593, -0.0587477088, 0.00967547, 0.0164182652, 0.000612814096, 0.0192802735, 0.0094340248, 0.0258640684, 0.00430478901, 0.0124962553, -0.00542368088, 0.0139095923, -0.0151815955, 0.0155349299, -0.00610090513, 0.00417523319, 0.00345089799, 0.00699012959, -0.000718078285, -0.00810313225, 5.96941663e-06, 0.0190093834, 0.00764968665, -0.00823268853, 0.0246391762, 0.00628346112, -0.00926913507, 0.00381895457, 0.00917491317, -0.0134267015, -0.0062363497, -0.00892757904, -0.0374769866, 0.00548257, 0.0108179171, 0.00447556749, 0.0039720661, 0.0191389397, 0.000507918, -0.0111300293, -0.00300923013, -0.00532651413, 0.0210351665, -0.00385428779, 0.0055326256, 0.00441962294, -0.00641890569, -0.0293503, -0.0152404848, 0.0166655984, -0.00938691385, -0.00191536616, -0.0188798271, -0.000401549652, -0.00831513293, 0.0119898096, -0.00304750795, -0.0314703062, 0.00247039529, -0.00626579439, 0.00145897607, 0.00847413298, 0.00102982216, -0.000539570872]
23 Jul, 2018
forward_list max_size() in C++ STL with Examples 23 Jul, 2018 The forward_list::max_size() is a built-in function in C++ STL which returns the maximum number of elements a forward_list container can hold Syntax: forward_list_name.max_size() Parameters: The function does not accept any parameters. Return Value: The function returns the maximum number of elements the container can hold. Below programs illustrate the above function: Program 1: // CPP program to demonstrate the // forward_list::max_size() function // when the list is not-empty #include <bits/stdc++.h> using namespace std; int main() { // declaration of forward list forward_list<int> fl; // assign value fl.assign(5, 8); // prints the elements cout << "The forward_list elements: "; for (auto it = fl.begin(); it != fl.end(); it++) cout << *it << " "; cout << "\nThe max size: " << fl.max_size(); return 0; } Output: The forward_list elements: 8 8 8 8 8 The max size: 1152921504606846975 Program 1: // CPP program to demonstrate the // forward_list::max_size() function // when the list is empty #include <bits/stdc++.h> using namespace std; int main() { // declaration of forward list forward_list<int> fl; cout << "\nThe max size: " << fl.max_size(); return 0; } Output: The max size: 1152921504606846975 Learn C++ Online – Master everything from basics to advanced concepts. Apply your knowledge with practical exercises and boost your skills. Take the Three 90 Challenge: finish 90% in 90 days for a 90% refund. Start now and level up your C++ programming!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum/Algorithm for Dynamic Time out timer Calculation/Difference between Round trip time (RTT) and Time to live (TTL)/Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms/Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm/Round Robin Scheduling Algorithm with Different Arrival Time/Selfish Round Robin CPU Scheduling/Find the order of execution of given N processes in Round Robin Scheduling/Calculate server loads using Round Robin Scheduling/set::lower_bound() Function in C++ STL/Implementation of lower_bound() and upper_bound() in List of Pairs in C++/Difference between std::set::lower_bound and std::lower_bound in C++/Difference between std::set vs std::vector in C++ STL/std::minmax() and std::minmax_element() in C++ STL/std::rotate vs std::rotate_copy in C++ STL/std::bitset::to_ullong and std::bitset::to_ulong in C++ STL/std::upper_bound and std::lower_bound for Vector in C++ STL/std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++/std::string::append vs std::string::push_back() vs Operator += in C++/Vector push_back() in C++ STL/vector :: cbegin() and vector :: cend() in C++ STL/unordered_multiset cend() function in C++ STL/unordered_multiset bucket() function in C++ STL/unordered_multiset emplace_hint() function in C++ STL/unordered_multiset end() function in C++ STL/unordered_multiset size() in C++ STL/unordered_multiset emplace() function in C++ STL/unordered_multiset find() function in C++STL/unordered_multiset erase() function in C++ STL/unordered_multiset clear() function in C++ STL/unordered_multiset swap() function in C++ STL/unordered_multiset bucket_size() function in C++ STL/unordered_multiset bucket_count() function in C++ STL/unordered_set bucket_count() function in C++ STL/unordered_set cbegin() function in C++ STL/array::cbegin() and array::cend() in C++ STL/array::rbegin() and array::rend() in C++ STL/multimap rbegin in C++ STL/vector rbegin() and rend() Functions in C++ STL/multiset rbegin() and rend() function in C++ STL/map rbegin() function in C++ STL/map upper_bound() function in C++ STL/Set upper_bound() in C++ STL/multimap upper_bound() function in C++ STL/multimap empty() function in C++ STL/multimap value_comp() function in C++ STL/multimap swap() function in C++ STL/multimap::swap() in C++ STL/multimap equal_range() in C++ STL/unordered_set equal_range in C++ STL/set vs unordered_set in C++ STL/unordered_set count() function in C++ STL/unordered_set bucket() function in C++ STL/unordered_set emplace() function in C++ STL/set::emplace() in C++ STL/multiset::emplace() in C++ STL/multiset find() function in C++ STL/multiset cbegin() and cend() function in C++ STL/multimap::cbegin() and multimap::cend() in C++ STL/multimap::begin() and multimap::end() in C++ STL/set::begin() and set::end() in C++ STL/unordered_multimap begin() and end() function in C++ STL/unordered_multimap empty() function in C++ STL/unordered_multimap find() function in C++ STL/unordered_multimap equal_range() function in C++ STL/unordered_multimap bucket_count() function in C++ STL/unordered_multimap bucket_size() function in C++ STL/unordered_multimap operator= in C++/unordered_multimap load_factor() function in C++ STL/unordered_map load_factor in C++ STL/unordered_map operator= in C++ STL/unordered_map swap in C++ STL/unordered_map rehash in C++ STL/unordered_map max_size in C++ STL/forward_list max_size() in C++ STL with Examples
https://www.geeksforgeeks.org/forward_list-max_size-in-cpp-stl-with-examples?ref=asr10
PHP
forward_list max_size() in C++ STL with Examples
unordered_multiset clear() function in C++ STL, What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, unordered_map max_size in C++ STL, jQWidgets jqxTreeMap width Property, Round Robin Scheduling Algorithm with Different Arrival Time, Difference between Flow and TypeScript, set::begin() and set::end() in C++ STL, unordered_multiset emplace() function in C++ STL, jQWidgets jqxTree destroy() Method, unordered_set bucket_count() function in C++ STL, unordered_map load_factor in C++ STL, jQWidgets jqxTree collapseAll() Method, Find the order of execution of given N processes in Round Robin Scheduling, jQWidgets jqxScrollView buttonsOffset Property, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Vector push_back() in C++ STL, jQWidgets jqxListBox enableHover Property, Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm, std::rotate vs std::rotate_copy in C++ STL, Selfish Round Robin CPU Scheduling, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxSlider buttonsPosition Property, std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++, std::upper_bound and std::lower_bound for Vector in C++ STL, Difference between Round trip time (RTT) and Time to live (TTL), jQWidgets jqxSlider rtl Property, Difference between std::set::lower_bound and std::lower_bound in C++, jQWidgets jqxTooltip opacity Property, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, unordered_multiset erase() function in C++ STL, multiset find() function in C++ STL, set vs unordered_set in C++ STL, jQWidgets jqxToolBar height Property, PHP, std::minmax() and std::minmax_element() in C++ STL, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, unordered_set emplace() function in C++ STL, unordered_multimap empty() function in C++ STL, unordered_set bucket() function in C++ STL, map rbegin() function in C++ STL, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, map upper_bound() function in C++ STL, Node.js date-and-time Date.transform() Method, unordered_multiset size() in C++ STL, TypeScript Optional Parameters, jQWidgets jqxToolBar theme Property, Difference between std::set vs std::vector in C++ STL, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, Steps to Diagnose and Resolve a Slow Network, How to use Optional Chaining with Arrays and Functions in TypeScript ?, Calculate server loads using Round Robin Scheduling, unordered_map operator= in C++ STL, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, jQWidgets jqxScrollView showButtons Property, unordered_map rehash in C++ STL, set::emplace() in C++ STL, Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms, jQWidgets jqxScrollView disabled Property, multimap::cbegin() and multimap::cend() in C++ STL, jQWidgets jqxSplitter destroy() Method, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, set::lower_bound() Function in C++ STL, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, jQWidgets jqxTree collapseItem() Method, multimap upper_bound() function in C++ STL, std::string::append vs std::string::push_back() vs Operator += in C++, unordered_multiset swap() function in C++ STL, unordered_multiset cend() function in C++ STL, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), Set upper_bound() in C++ STL, jQWidgets jqxSortable opacity Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, multiset cbegin() and cend() function in C++ STL, multimap rbegin in C++ STL, vector :: cbegin() and vector :: cend() in C++ STL, multimap swap() function in C++ STL, jQWidgets jqxSlider height Property, jQWidgets jqxSwitchButton onLabel Property, unordered_multiset bucket_size() function in C++ STL, unordered_set cbegin() function in C++ STL, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, jQWidgets jqxToolBar tools Property, multimap empty() function in C++ STL, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTree width Property, multimap::swap() in C++ STL, unordered_multimap bucket_size() function in C++ STL, multimap equal_range() in C++ STL, Implementation of lower_bound() and upper_bound() in List of Pairs in C++, jQWidgets jqxTree clear() Method, TLS Handshake?, multiset rbegin() and rend() function in C++ STL, unordered_multimap operator= in C++, Algorithm for Dynamic Time out timer Calculation, Adhoc TCP, unordered_map swap in C++ STL, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, jQWidgets jqxTabs position Property, Differences between Wireless Adhoc Network and Wireless Sensor Network, jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, unordered_multimap begin() and end() function in C++ STL, std::bitset::to_ullong and std::bitset::to_ulong in C++ STL, unordered_multiset emplace_hint() function in C++ STL, multimap::begin() and multimap::end() in C++ STL, forward_list max_size() in C++ STL with Examples, unordered_multiset bucket_count() function in C++ STL, unordered_multiset find() function in C++STL, unordered_multimap bucket_count() function in C++ STL, unordered_multiset bucket() function in C++ STL, Impact of Three-way Handshake and Slow Start Algorithm, array::rbegin() and array::rend() in C++ STL, multimap value_comp() function in C++ STL, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, unordered_multimap load_factor() function in C++ STL, multiset::emplace() in C++ STL, unordered_set equal_range in C++ STL, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, unordered_multimap equal_range() function in C++ STL, unordered_set count() function in C++ STL, vector rbegin() and rend() Functions in C++ STL, array::cbegin() and array::cend() in C++ STL, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, unordered_multiset end() function in C++ STL, How to Sort an Array Having Optional Properties in TypeScript ?, unordered_multimap find() function in C++ STL
GeeksforGeeks
[-0.0248905923, 0.0408623889, -0.00784695428, 0.0388510264, 0.0712974593, -0.0382687896, -0.0287412908, 0.036839664, -0.0357545875, 0.0201797727, -0.0177449677, 0.0323935, 0.00781387277, -0.0249964539, 0.0447527841, -0.00793296658, -0.0350400284, 0.0148867182, 0.0207620095, -0.0153233949, -0.0110161714, 0.0071588573, -0.0402536876, 0.02342177, -0.021185454, 0.0300116241, -1.72386135e-05, -0.0186580196, -0.0136031527, -0.00492254132, 0.0306997206, 0.00207587, -0.0233423747, 0.0158659332, 0.000577687344, 0.0200606808, 0.0553653575, 0.014674996, -0.0267960932, 0.0114991628, 0.0396979153, 0.0170039404, -0.00343717774, -0.0286089648, 0.0254463647, 0.0121607948, -0.0207090788, -0.046975866, -0.0265579056, -0.0106456578, -0.00544192269, -0.00286486628, 0.0105000986, -0.00223300769, -0.0039731, -0.0130076837, 0.0261212289, 0.0272327699, -0.00709269429, -0.0238716807, -8.50817305e-05, -0.0459701866, 0.00416497281, -0.0211325232, 0.00424436899, -0.0122137256, -0.0313878171, 0.0271798391, 0.0538039096, 0.000592987635, -0.0233423747, 0.0652633756, -0.012829043, 0.00785357133, -0.000834483246, -0.0112742083, -0.0415769517, -0.0262932535, -0.0291382708, 0.010526564, -0.00372829591, 0.00728456769, -0.020073913, 0.000682307931, -0.016712822, 0.00639798073, -0.00797928125, -0.0288471524, -0.00807852577, -0.0145029714, -0.00251585548, 0.0334785767, 0.00560071412, 0.0011007901, 0.0159320962, 0.0319435894, 0.00911728758, 0.0321288444, 0.0015316779, 0.0128753576, -0.00737057952, -0.00261179195, 0.0202459376, 0.0185521599, 0.0279737972, 0.00274081016, 0.0201533083, -0.0371837132, 0.0260153674, 0.00339417183, 0.0182345752, 0.0109566245, -0.0440117568, 0.0612406507, -0.00471081911, 0.0220323429, 0.0058786, 0.01085738, 0.0100568049, 0.0120681664, 0.013947201, 0.0379512087, 0.011975538, -0.00936870836, -0.0484843887, 0.0139207356, 0.0130209159, -0.00365551631, 0.0286618955, -0.00456856843, -0.0289000832, -0.000839859, 0.0187506489, -0.0517925471, -0.0233423747, 0.0122137256, 0.023686422, 0.0270739775, -0.00623918884, 0.0272327699, -0.0317054, -0.0032238015, 0.0130539974, 0.0287148263, -0.0192667209, -0.0103413071, -0.000954404066, 0.0411535054, -0.0218338538, 0.010989706, -0.0309379082, -0.0235673282, 0.037580695, -0.00256713177, 0.0438264981, -0.0266373, 0.0122997379, -0.0193990488, 0.034669511, -0.0509985872, 0.033425644, -0.00324199651, 0.00991786271, -0.0065534641, -0.0256713182, 0.053830374, 0.0540685616, 0.0145823676, -0.0391950756, 0.0198092591, 0.0339814164, 0.0572179295, -0.0185786244, 0.00949441828, 0.0145029714, -0.0217279922, 0.0439323597, 0.0460760482, 0.0313613527, 0.0415504836, 0.0308849774, -0.0101428172, -0.00212383852, 0.00997741, -0.0173744541, 0.00302034966, 0.0453085527, 0.0100568049, 0.0217544585, -0.014674996, 0.0158130024, 0.0316789374, -0.00482991291, -0.0250890832, 0.0325522907, -0.00234217709, -0.00455864379, 0.00622926466, -0.000265273062, 0.0493048094, -0.0381629281, 0.0127231823, 0.00446601538, 0.0218735505, 0.024678871, -0.0140530616, -0.0122534232, 0.035278216, 0.0208943356, -0.00777417514, 0.00252908794, 0.0155748157, -0.0196901653, -0.0287148263, -0.0120549332, 0.00905774068, -0.0522159897, 0.0244406834, -0.00889233314, -0.045864325, 0.0275768191, -0.004869611, 0.0183272045, -0.0491460189, -0.060605485, -0.0466318168, 0.00986493193, -4.82784526e-05, 0.0213971771, -0.00220654253, 0.00412527518, -0.00270442059, 0.0160776563, 0.0367867351, 0.0353046805, 0.0107978331, -0.0484843887, -0.0183933675, 0.0135237565, 0.0252346415, 0.0396449864, 0.0533010662, -0.0254331306, 0.0224822536, 0.0154557219, 0.0254860613, -0.0360721722, -0.0333197825, 0.0164217036, -0.0172024295, -0.0231174193, -0.00758230174, 0.0200871453, 0.00286486628, -0.0320759155, 0.0260286, -0.00569995912, -0.0112609752, -0.018419832, -0.0159717947, 0.00451894617, 0.0168583822, -0.00303854467, 0.00870046, -0.0156939086, 0.0291647352, 0.0507868677, 0.000621106941, 0.00760876713, -0.0370249227, -0.00772124436, 0.0201003775, 0.00965321, -0.0188565105, -0.00453217886, 0.0199812837, -0.0283178464, -0.00700668199, 0.0137090134, -0.00814468879, 0.0316260047, -0.0124916108, -0.00141837343, -7.82069619e-05, 0.0321817771, 0.00419474626, -0.0321288444, -0.0112808244, 0.00153912127, -0.0218735505, -0.02908534, 0.0119689219, 0.00995756, -0.00807852577, 0.00977230351, -0.00904450845, -0.0188962072, -0.002797049, -0.0233688392, 0.0186315551, -0.00895849615, -0.0443822704, -0.0147808576, -0.0636225268, 0.0275768191, -0.014608833, -0.0222837627, -0.0296940412, 0.0205635205, -0.00617633387, 0.0101692826, -0.0540950261, 0.00155318098, 0.00163919304, -0.0449645072, -0.019941587, 0.0488813668, 0.00395986717, -0.0489872284, -0.034669511, 0.00674864557, -0.018816812, -0.0198886562, 0.0419474654, 0.0105331801, -0.0415769517, 0.00778740784, -0.0151646035, -0.0338755548, -0.0479286164, -0.0153763257, 0.00923638139, -0.0135766873, -0.0476375, 0.00684789056, -0.0417886712, -0.0163687747, -0.0115256282, -0.0273915622, 0.00741027761, -0.00464134803, 0.000173575, -0.00697360048, 0.00154077529, 0.0059480709, -0.0337961577, -0.0203253329, -0.0264123455, 0.0269681178, 0.0101560503, 0.000834483246, 0.00389039563, 0.020589985, 0.000185050172, 0.000140803546, -0.0254331306, -0.00239676167, -0.0106456578, 0.0239775404, 0.000882451597, 0.00498208823, 0.0419739299, -0.017175965, 0.0179434586, -0.00329988915, -0.0423444435, -0.0349077, -0.016646659, -0.00809837505, 0.000459007133, 0.0225616489, 0.00198324164, 0.0218206216, 0.0148073221, 0.0130539974, -0.0332403891, 0.0353576094, 0.0389304236, -0.0173612218, 0.00399625674, 0.00409881, 0.0555770807, 0.0201136097, 0.0110624861, -0.00141754642, -0.0134642096, -0.0411799699, 0.0195313748, 0.00414843205, 0.0316524729, 0.00523020048, 0.01454267, 0.00729118381, 0.00379445916, -0.0132127898, 0.0172553603, -0.0449115746, -0.0429266803, -0.0639930367, -0.054941915, -0.0163555406, 0.0302762762, 0.0251420122, -0.0134575935, -0.0071853227, 0.0242554266, 0.0122137256, 0.00776755856, -0.0101031195, 0.0196637, 0.0122534232, -0.0512103103, -0.0242289603, 0.011188196, 0.00309312926, 0.00137702143, -0.02171476, 0.000808845041, 0.0195578393, 0.0207090788, -0.0185389258, -0.00973260589, -0.0107316701, 0.027497422, 0.00559409801, 0.0229850933, -0.0472669862, 0.0526129715, -0.0231438838, -0.0278414711, -0.00617964193, 0.0628815, 0.00642444612, 0.0212383848, -0.00186580198, -0.0329228044, 0.0414181575, 0.0190682318, -0.0335844383, -0.0256580859, -0.0183139723, 0.0539097674, 0.0416034162, 0.000743508863, -0.00156393251, 0.0166069604, -0.00330815953, -0.0260021351, 0.0373160392, 0.0165672638, -0.0439852886, -0.0200342145, 0.0123526677, -0.00586205907, 0.0489342958, -0.00249269838, 0.0399096385, -0.00112973654, 0.0611877218, -0.0187771134, 0.00571980793, 0.01256439, 0.0234614685, -0.00265810615, 0.0160776563, 0.0270872116, 0.00837626, -0.00849535409, -0.0147014614, -0.000693886483, -0.0175067801, 0.00538899191, 0.0069802166, -0.0150984405, 0.0360457078, -0.000430887798, -0.0158527, -0.00962674432, -0.0069802166, -0.0278414711, -6.79206496e-05, 0.00571319181, -0.019412281, -0.0130870799, -0.00145972543, -0.00879308861, -0.0109632406, 0.0243612882, 0.0233026762, -0.0160776563, 0.000288843672, -0.00981861819, 0.00882617, -0.0175597109, 0.0142383194, 0.0310702343, -0.0224028565, 0.0271533746, 0.0021188762, -0.00576281408, 0.0319700539, 0.00844242331, -0.00443624193, 0.0430060737, 0.0205635205, -0.0127165653, -0.0113668367, 0.0163952392, -0.0257110167, -0.0406506658, -0.023951076, 0.0258962736, -0.0121674109, -0.0237525869, -0.00678834366, 0.000624828623, 0.0362574309, -0.00338424719, -0.0289265476, 0.0026547981, -0.00616971776, 0.0320759155, 0.004409777, 0.0233026762, 0.000260310801, 0.00210398948, 0.0106522739, -0.0177317355, -0.011115416, -0.00268953387, -0.0041186586, 0.0145823676, -0.0273386315, 0.0249832217, -0.0154424887, 0.00345041044, -0.00548162032, 0.0092694629, 0.00327507802, 0.0215427354, -0.0188565105, -0.021383943, 0.0324728936, -0.0193064194, 0.00516734552, 0.00786680356, 0.0231438838, 0.0127893453, -0.00111981202, -0.000867564871, 0.0214501061, -0.00234383112, -0.00619287463, -0.0103479233, -0.0110161714, -0.00832994562, -0.0168319158, -0.0461819097, 0.00531290425, -0.0157865379, -0.016712822, 0.0467641428, -0.0191608611, 0.0423444435, -0.00325688324, 0.00806529354, -0.00630535232, 0.00479021529, -0.0250890832, 0.011644722, -0.00428406661, 0.0156806763, 0.0467112139, 0.00792635, 0.00535921846, 0.0373425074, 0.0130870799, 0.0133781973, -0.0122931208, -0.00868061092, 0.0143838776, -0.0395126566, 0.00821085181, -0.0215295032, -0.0270342808, 0.0166598912, -0.022892464, -0.0102552949, -0.0375277624, 0.0265446734, 0.00309312926, 0.0360721722, -0.0032469586, 0.00133649644, 0.00337597681, 0.0570591353, -0.0406771302, -0.016977476, 0.0156277455, -0.00735734683, 0.0197960269, -0.0113668367, -0.0115587097, -0.0343254656, -0.021383943, 0.0157733057, 0.0167260543, 0.0230247919, 0.00143574132, -0.0168716144, -0.027444493, -0.0046512722, 0.0203650314, 0.0253272709, 0.00269780424, 0.0253272709, 0.0048828437, 0.0194519777, -0.0178772938, 0.00885925163, 0.00447263196, -0.00380769162, -0.0133252665, -0.0171891972, 0.0151116727, 0.0420533232, -0.0165275652, -0.0244009849, -0.00322545553, -0.0106985886, -0.00305839349, -0.0207620095, 0.0130672306, -0.0305409301, 0.00694713509, 0.0154821873, -0.0142250862, -0.014278017, -0.036839664, 0.0278414711, -0.00784033816, 0.000435023, 0.00991786271, 0.0529570207, -0.00748305721, -0.0155218849, -0.0273650959, 0.013682548, 0.0392215401, 0.0148470206, -0.0310967, 0.0351723544, 0.0225351825, 0.00523681659, 0.019279955, 0.0191343948, 0.00191542436, 0.00581243634, 0.000148350286, 0.0150322774, -0.0100435726, -0.0109963221, -0.0122071085, -0.00791311823, -0.00997741, -0.0149131836, -0.0225748811, -0.0194916762, 0.0157997701, 0.00189722958, -0.0170965698, 0.00667586597, 0.019478444, 0.0168186836, -0.00967305899, -0.0242289603, 0.00312290271, 0.0395126566, -0.00411204249, -0.01605119, 0.00350995734, -0.021648597, -0.00321718515, -0.0112477429, -0.0162629131, -0.00619618315, -0.0016648313, 0.0202194713, 0.0126901, 0.00793296658, 0.0211722218, -0.0176126417, -0.0222308319, 0.0240966342, -0.00919006765, -0.0281855203, 0.0149264159, -0.00735734683, 0.0120350849, -0.0102883764, 0.0139207356, 0.00876662321, -0.0273386315, -0.0156674441, 0.00469097029, 0.0297205057, -0.0142647838, 0.00924961455, -0.00804544427, -0.000300629, -0.00248442777, -0.0282384511, 0.0163290761, -0.00558417337, 0.0195313748, -0.0164878666, -0.0097061405, -0.000708773208, 0.0258962736, -0.0232629776, -0.00216519041, -0.0119821541, -0.0233291425, 0.00692728627, 0.0193064194, -0.0105794948, -0.011122033, -0.0283443108, 0.0023620259, -0.00954073202, -0.0206429157, 0.0193990488, 0.00654684799, 0.00363897556, -0.00272923172, 0.0129547529, 0.020589985, 0.0104934825, -0.00616971776, -0.00323703419, 0.0134972911, 0.0216221306, 0.00341732893, 0.0257374812, -0.0185786244, -0.0274180267, 0.0430325419, -0.00583228562, -0.00463142339, 0.0278150067, 0.00517396163, 0.0510779843, 0.0349077, -0.00753598753, -0.0136560826, -0.0257110167, 0.0334785767, -0.0183933675, 0.0132392552, 0.0246524047, 0.00436015427, -0.00390032027, 0.00623918884, 0.0137751764, -0.0163952392, -0.0254331306, -0.025194943, -0.0121475626, 0.0187506489, -0.026187392, -0.00378453452, 0.0134972911, -0.000839859, -0.0276826788, -6.61115046e-05, -0.0197563283, 0.00196008454, 0.0376865529, 0.0573237911, -0.0122931208, -0.0407300629, 0.0426884927, -0.000434195943, 0.0167922191, 0.0175597109, -0.00373160397, 0.00245630858, 0.0198886562, 0.0395391248, 0.0117439665, 0.00668909866, -0.00514749624, -0.00122567313, -0.00291779684, -5.9805323e-05, -0.0422385819, -0.0179699231, 0.000717457093, -0.0196504686, -0.0349606313, 0.0213045478, 0.0151910689, -0.0143574132, 0.0121541787, 0.00696698437, -0.0185389258, 0.0181022491, 0.0336638317, -0.0184066, 0.0281325895, -0.0212913156, 0.0148999505, 0.000301869557, 0.0297734365, 0.00969952438, -0.00917683449, 0.00925623067, -0.0375012979, 0.0204311945, -0.00845565554, -3.01352666e-05, -0.0136693157, 0.03776595, 0.011188196, -0.0232232809, 0.0103016086, -6.36303812e-05, 0.0171627328, 0.0435353816, -0.0122137256, 0.0112742083, -0.00699344929, -0.0394068, 0.00019735239, 0.00495231478, 0.0177317355, 0.0194387455, 0.00605724, -0.0137354787, 0.0404654071, -0.0206164513, 0.0081182234, -0.0295087844, 0.00845565554, -0.00973260589, -0.0098252343, -0.00552131841, 0.00768154673, -0.0112411268, -0.0422650464, -0.0158924, 0.0242818911, 0.0166598912, -0.00618625851, 0.00413519936, 0.0130010676, -0.044673387, -0.0197695624, -0.00676518632, 0.00103793503, 0.00746320793, 0.00909743924, 0.00863429625, 0.0304086041, 0.00540884119, 0.0181287155, -0.0116778035, -0.0601820387, 0.0215162709, -0.0160114933, 0.0300910193, -0.0079462, 0.0156542119, -0.0356487297, 0.00073854666, -0.00245630858, -0.022244066, -0.000653361552, 0.0173215233, -0.0199151207, 0.0243745204, -0.000527237949, -0.00908420607, -0.0410211794, -0.0202327035, -0.0238452144, -0.030461533, -0.0263991132, -0.022177903, -0.0451497622, 0.033108063, 0.018816812, -0.00265810615, -0.033160992, -0.00312455674, 0.0168319158, 0.00379445916, -0.0301704165, -0.00557424873, -0.00998402573, 0.00316425459, -0.0340872779, 0.0106522739, 0.00657000486, 0.00772786094, -0.00479021529, 0.026452044, 0.0442234762, -0.0186447874, 0.0124188308, 0.0236334931, 0.0192931872, 0.0026779552, -0.0488813668, 0.00401279749, 0.0171494987, 0.00309643731, -0.00551801035, 0.00155483501, 0.0220720414, 0.00418482209, -0.0167392883, 0.0138545725, 0.0102685271, -0.0226675104, 0.00559079, -0.0115123959, -0.00614325237, -0.0172288958, -0.0179037601, -0.0335844383, 0.00837626, 0.0118233627, 0.00163257681, 0.00460165, 0.0187638812, -0.0330022, -0.0289265476, -0.0715621114, 0.0246656388, 0.0264255796, -0.0453350209, 0.028026728, 0.0215956662, -0.0250229202, -0.0100965034, -0.0319435894, -0.0109963221, -0.00239510764, 0.00643767882, 0.0175597109, 0.0294029228, 0.0202062391, -0.0260286, -0.0253934339, -0.0324728936, 0.00478029065, 0.00725148572, -0.0318641923, 0.00846227258, 0.0275503527, 0.011380069, 0.0544655398, -0.0127099492, 0.0364162214, 0.0247714985, 0.00592160551, -0.0339020193, -0.00646083569, -0.00479352335, -0.00145972543, -0.00330154318, 0.0341931395, 0.0204311945, -0.0017566327, 0.0375277624, -0.0209737327, -0.0339814164, 0.014013364, 0.00567680178, 0.022310229, 0.0306997206, -0.00942163821, -0.00707946159, 0.0122732725, -0.0177978985, 0.0220588092, -0.00990463, 0.00666925, 0.0147543922, 0.00286321226, -0.0195313748, 0.0371837132, -0.0227204394, 0.00374152861, 0.0478756875, -0.00057686033, -0.014013364, 0.00246292492, -0.0177846663, 0.00705961278, 0.0260947626, -0.0129084392, 0.000444120436, 0.0199812837, -0.0179963876, 0.0235805623, 0.0580648184, -0.0483520627, 0.0186447874, 0.0170171726, -0.0454408787, 0.00433038082, 0.00325853727, -0.00844242331, 0.00232398207, 0.00485968636, -0.00372167956, 0.0285031032, 0.0140398294, 0.0184992291, -0.0439323597, -0.0151249059, 0.0131201614, 0.0092429975, -0.00586205907, 0.00985831581, 0.00684789056, 0.021648597, 0.00788003579, 0.0182742737, -0.0308055822, -0.00539560849, 0.0438529626, -0.00228593824, -0.0209604986, 0.0150719751, -0.0106919715, 0.000491675222, 0.0150984405, 0.00738381222, 0.0123526677, -0.0149661144, 0.00906435773, 0.00609693816, -0.016778985, 0.00623588078, -0.0317318663, -0.011115416, 0.0214236416, 0.01454267, 0.0175861772, 0.00414181594, -0.005329445, 0.0180757847, 0.00456195232, -0.00231405767, 0.0133781973, 0.0145691354, 0.00391686102, -0.024546545, -0.0372631103, -0.00301869563, 0.015244, 0.00158708962, 0.0213045478, 0.021847086, 0.0345636532, 0.0106258085, -0.00217511505, -0.0214898046, -0.0108309146, -0.00127281446, -0.0216882937, -0.00443293387, 0.0135899195, 0.00338259316, -0.0203914959, -0.00889894925, -0.0282649156, 0.0140398294, -0.0284501724, 0.00700668199, 0.0199548192, 0.00418482209, 0.00282682246, 0.00543530611, -0.00132574502, -0.0333197825, -0.0333462507, -0.0212251525, -0.000412279391, 0.0236996561, 0.0233820714, 0.0218073875, -0.0135303726, 0.0131730912, 0.063781321, 0.0188962072, 0.0169510096, -0.0247582663, 0.0317318663, -0.0208017081, -0.0110889515, 0.0143309478, 0.0256845504, 0.00260352157, -0.0156939086, 0.00546507956, 0.0176126417, 0.0112742083, 0.00647076033, 0.0211986862, 0.0158262365, -0.0308849774, -0.00272096135, -0.0146352984, -0.0221514367, 0.0206296835, -0.0225748811, 0.0111551145, 0.0253272709, -0.0172950588, 0.0159320962, 0.00568341836, -0.0203914959, 0.00778740784, 0.00632189307, -0.0137354787, 0.0204973575, -0.014741159, -0.014674996, 0.0201533083, 0.0132127898, 0.0140001317, -0.0138810379, 0.0180625524, -0.00891218241, -0.00259359716, 0.0186183229, -0.00616971776, -0.00321553112, -0.00588521594, -0.00223466172, -0.0106390417, 0.00841595791, -0.0226675104, -0.00374814495, -0.0065534641, 0.0287148263, -0.00147792033, 0.0113469874, -0.0126107046, -0.0145823676, -0.038824562, 0.0053426777, -0.0303027425, -0.0123989824, 0.00272096135, -0.0164349377, -0.0188300442, 0.0207090788, -0.0059745363, -0.0149264159, -0.00665932521, 0.00191707851, 0.0123791331, 0.0092429975, 0.0250493847, 0.028556034, -0.00685450668, -0.0120020034, 0.00250096875, -0.014476506, -0.0202062391, -0.0163555406, 0.00283509283, 0.021251617, 0.0268357899, -0.0289000832, 0.0376600884, -0.0097061405, -0.00868061092, 0.0052103512, -0.0167260543, -0.00139687036, 0.00173843792, -0.0168583822, -0.0151778366, 0.00100237236, 0.0296940412, 0.00748967333, 0.0118696764, -0.00459503382, -0.00100650755, 0.00117853191, 0.00335778203, -0.0404654071, -0.00766169745, 0.0253802, -0.014741159, -0.00256382371, -0.0247318018, -0.00408226904, -0.0134774419, 0.0139736664, 0.00259855948, -0.00819762, -0.00146303361, -0.000356247445, -0.00140679488, -0.0064343703, -0.0131333936, -0.0200474467, 0.00203948049, 0.00418813, -0.0233820714, -0.0255919229, 0.00493246596, 0.00332635455, 0.00885263551, -0.015985027, -0.0135237565, -0.0148602528, 0.0184330661, 0.0107581355, 0.00697360048, -0.0185256936, 0.00423113629, 0.00760876713, -0.0224690195, -0.00223631598, -0.00457849307, 0.00836302713, 0.0147014614, 0.0275238883, 0.00506148441, 0.0107713677, 0.0367338061, -0.00928269606, -0.015244, -9.79008473e-05, -0.00398964062, 0.018287506, 0.00952088367, 0.0187374167, 0.0211457554, -0.0257110167, -0.0403066166, -0.0101428172, -0.0155483503, -0.00690743746, -0.021119291, 0.0382423252, -0.00087831635, -0.0113006737, -0.0181022491, -0.0112146614, -0.0145029714, 0.00459834188, -0.00707284547, -0.00183106633, -0.0147808576, -0.00917683449, -0.0244142171, -0.0094150221, 0.00311959442, 0.0157733057, 0.00836964417, -0.0036356675, -0.0374748334, 0.000843167189, 0.00412196666, 0.0160379577, 0.023620259, 0.027497422, 0.0328963399, -0.0210398957, 0.010136201, 0.00886586774, -0.0199283529, -0.0153498603, 0.00593814673, 7.00399396e-05, 0.00889894925, -0.00322214747, -0.00221977499, -0.0117505826, -0.0256448537, 0.0204708911, -0.0401478261, 0.0187109504, 0.0310702343, 0.00462149875, -0.0172950588, -0.0191079304, 0.00421128701, -0.0235011652, 0.00795281585, -0.0303027425, 0.00754922, 0.00396979135, -0.01256439, -0.0181551799, 0.0247979648, -0.0301174857, -0.0187374167, 0.0245730095, 0.0112411268, 0.00692728627, -0.000472653308, -0.00600100169, 0.0198621899, 0.00247615739, 0.0071853227, 0.0288471524, -0.00972598884, 0.0125048431, 0.000950268877, 0.011644722, -0.0216353647, -0.00856151711, 0.0134377442, 0.00969290733, 0.0176258739, -0.0123989824, -0.00879970472, -0.027497422, 0.0016648313, 0.00519711897, 0.0173347555, 0.0177978985, 0.0102089802, 0.0304086041, -0.0117704319, -0.000171300635, -0.0029938845, 0.0141059924, -0.018949138, 0.0121210972, -0.00224954844, -0.000435436523, -0.000217718261, -0.00228097616, 0.015985027, -0.0131201614, 0.00508133322, 0.0271269083, -0.00958704669, -0.0266108364, 0.0138148749, -0.00416166475, 0.0103479233, 0.000768733618, -0.00469758688, 0.0112411268, -0.00266637676, 0.0284766387, 0.0276826788, 0.0123460516, 0.027497422, -0.00695375167, 0.00296907336, -0.0287412908, -0.0147543922, -0.0120483171, -0.0191079304, -0.0129415207, 0.00186414795, 0.00796604808, 0.0264255796, -0.009474569, -0.00791973434, 0.00555109186, 0.0101626664, 0.00836964417, -0.0104471678, -0.0141324578, -0.00297072739, -0.029746972, -0.000218752059, -0.0071985554, -0.00581905292, 0.0318112634, 0.0114263836, 0.0141324578, 0.0256580859, -0.00617302582, 0.0123857493, 0.00157220289, 0.00628881156, 0.00885925163, 0.0107581355, -0.00934885908, -0.0274709575, 0.00678834366, 0.00560402218, -0.0130539974, -0.0154160243, 0.00403926289, 0.0192137919, -0.0143044824, -0.0201136097, 0.00125875475, 0.0411005765, 0.0129878344, -0.0322082415, -0.0158527, -0.0416298807, -0.0176655725, 0.0246656388, 0.0109103108, -0.00509456592, 0.00197166321, -0.0296411105, 0.0049556233, -0.0124254478, 0.0179037601, -0.0178640615, -0.015985027, 0.00870046, -0.0276826788, -0.0162099823, -0.0200606808, -0.0108044492, -0.0215030368, 0.0112477429, -0.0214104094, 0.0132657196, -0.0118564442, -0.0035992777, -0.00625242153, 0.0125710061, -0.000711667817, -0.0135105243, -0.01454267, 0.00215361197, 0.0132458713, -0.0157468393, -0.00114379614, -0.00608701352, 0.00889233314, -0.00206098333, 0.0211589895, 0.0219000168, -0.0144897392, -0.00569995912, -0.0121277133, -0.0220058784, -0.00295914873, -0.0257374812, -0.00921653304, -0.00108921155, 0.0095275, 0.0195710715, 0.0102751441, 0.0148337875, -0.00958043057, -0.0163290761, 0.017175965, 0.01454267, 0.00209406507, -0.0140001317, 0.0228263009, -0.00615648506, 0.0100965034, 0.0428472832, 0.0209869649, -0.0175597109, 0.0111948121, -0.00981200114, 0.0151646035, -0.0178111307, 0.00332470052, -0.00290952646, 0.00838949252, 0.00555770798, -0.0197166316, -0.0146485306, -0.0132789528, 0.0473993123, 0.014278017, 0.0442499444, -0.0127165653, 0.00183602853, -0.00870707631, -0.00396979135, 0.00766169745, 0.0244142171, 0.0443028733, 0.00690082088, 0.029217666, 0.0226807427, 0.013417895, -0.0053426777, 0.00204775087, 0.00354303885, 0.0120747825, -0.0082373172, -0.00203451817, 0.00193031109, 0.00325853727, -0.00203121, 0.0123129701, -0.0130010676, 0.0228395332, -0.0353840739, 0.000729862717, 0.000334537646, -0.0171627328, 0.00627557887, 0.0408888534, 0.00666925, 0.00363897556, 0.0120218517, -0.0122071085, -0.0232365131, -0.00838949252, -0.0170965698, -0.0180096216, 0.00151265599, 0.00886586774, -0.0269681178, -0.000767079531, -0.0125511577, 0.000813393737, -0.0155483503, -0.0097061405, -0.0065534641, -0.0108309146, -0.000961020356, 0.038824562, 0.00142333563, -0.0156806763, 0.0115719419, 0.00472074375, 0.00967305899, -0.0238981452, -0.0115917912, -0.00629211962, -0.00525004929, 0.0036819817, 0.00286321226, 0.0192402564, -0.012107864, 0.00453879498, -0.0046777376, -0.0102155972, 0.00694051897, 0.00295087835, -0.00734411413, -0.0138810379, 0.00385400606, -0.00222308328, 0.0301704165, 0.0310702343, 0.00756906904, 0.0217676908, -0.0202856343, -0.0138016418, 0.00217180676, 0.0122931208, -0.00142498978, 0.0115785589, -0.019544607, -0.02000775, 0.0325787552, -0.0102685271, 0.0177582, 0.0194916762, -0.0150190443, 0.0198357254, 0.0166598912, -0.00481337216, -0.01085738, -0.0101229688, 0.0105662616, 0.0116248727, 0.0131995566, 0.0152572319, 0.0228395332, -0.00278050825, 0.0134575935, -0.00985831581, 0.0105993431, 0.00879970472, -0.0211457554, -0.00565033685, 0.00423444435, -0.0145029714, 0.0135766873, 0.00195181416, 0.0175464787, -0.00272426941, -0.000333297095, 0.0134509774, 0.00128191186, 0.0114726974, -0.00316094654, -0.0174406171, -0.01605119, 0.00700006587, -0.00434692157, 0.00174505415, -0.00438661966, 0.0104008541, 0.00761538325, -0.00219992618, -0.0287148263, -0.00229420862, 0.00160941971, 0.0118498281, -0.0150322774, -0.0154292565, 0.0111948121, -0.019478444, 0.00210564351, 0.0224160887, 0.00397971598, 0.00944810361, 0.00683465786, 0.0010131239, 0.0399890319, 0.00780725665, 0.00462480728, -0.0073308819, -0.0178111307, -0.0019997824, 0.000413519942, -0.00140431372, -0.016712822, 0.017175965, 0.0117439665, 0.00860783178, -0.00911067147, 0.00347356754, -0.0114263836, -0.00700006587, 0.0149131836, 0.00141920045, 0.0300116241, -0.00443955, 9.36105789e-05, 0.009209916, -0.0103413071, -0.00624249736, -0.00692066969, 0.000404008984, -0.00437007891, -0.019412281, -0.0139207356, -0.024149565, 0.00983185, -0.00332470052, 0.0146485306, -0.0306997206, 0.0147014614, -0.00875339, -0.00154160243, 0.00580912828, 0.000994929, 0.010334691, 0.0017748276, 0.0183272045, -0.00455202768, -0.00461819069, 0.0106787393, 0.00907759, 0.00230578729, -0.0101229688, 0.0303556733, 0.00999064185, -0.00606385665, 0.0253140368, -0.00546838762, -0.00143656833, 0.000172024302, 0.0110426368, 0.0131730912, -0.0071853227, -0.0185389258, -0.0124585293, -0.00877985545, 0.0303821377, -0.0125048431, -0.00365220825, -0.0107647516, 0.0167392883, 0.0184462983, -0.00119589968, -0.0114594651, -0.0109036937, -0.00137619441, -0.0229718611, -0.00607047277, -0.0266240686, 0.0107316701, -0.0121012479, -0.000597122824, 0.0115719419, -0.00879970472, 0.021648597, -0.00523020048, 0.000875008234, -0.00223631598, -0.0178905278, -0.00736396341, -0.0316524729, -0.0204973575, 0.006712256, 0.00230413326, -0.0104736332, 0.00577935483, -0.00263825734, -0.0269416515, 0.00144070352, -0.00281855208, -0.00321883941, 0.00311628636, -0.0095605813, -0.0169510096, 0.0148337875, 0.00387716317, -0.0198621899, -0.0271004438, -0.00454871962, -0.00283178454, -0.00916360226, 0.0163555406, -0.0133848134, 0.000333503849, -0.0340872779, 0.0113205221, 0.0209604986, -0.02171476, -0.0219661798, -0.00711915968, 0.00774109364, -0.00318575767, 0.00117026141, -0.0248905923, -0.0103082256, 0.0143706454, 0.0152572319, -0.0275768191, -0.0358339846, 0.00389370392, 0.0152969304, 0.0285824984, 0.00768154673, -0.0123394355, 0.0157865379, -0.0305409301, 0.0251287799, -0.0172288958, -0.00458180113, 0.026452044, 0.0104273194, 0.00569995912, -0.0162232146, 0.00483322097, -0.00745659182, -0.00899819378, 0.017771434, 0.0315995403, -0.00467112148, 0.00186745613, -0.01605119, 0.00318575767, -0.00553455111, 0.0159453303, -0.00511772279, 0.00561725488, 0.0249567553, -0.00257540215, 0.0023752586, 0.00223466172, -0.00155483501, 0.0110558691, 0.0106853554, 0.0107382862, 0.0092033, -0.0262403227, -0.00922976527, -0.0219926443, 0.00616310118, -0.0368661322, 0.0108838454, 0.00345041044, -0.00569003448, -0.000994929, 0.00239179935, -0.0115917912, 0.00647406839, 0.00354634714, -0.00469758688, -0.0105199479, 0.033425644, 0.00807852577, 0.00584882637, -0.00862768, -0.026782861, -0.021251617, 0.0191873256, -0.000122505284, 0.0027606592, -0.017771434, 0.00894526392, 0.000245424104, 0.00487291906, -0.0207752418, -0.0190417673, -0.014079527, 0.00318410364, 0.0121938763, 0.0130870799, 0.0084093418, 0.0161702838, 0.0174670834, 0.000827039883, 0.00678834366, 0.00348349218, -0.0103942379, -0.0340078808, -0.0104273194, -0.00337763107, -0.0161967501, 0.0220852736, 0.0140265971, 0.00591168134, -0.01434418, -1.41113687e-05, 0.0278150067, -0.00341402064, -0.00965321, 0.00221812096, -0.00422451971, 0.000454871944, -0.00651045796, -0.0100898864, 0.00396979135, -0.0136163849, -0.016778985, 0.0141589232, -0.00876662321, -0.0183272045, 0.00496885553, 0.00106440031, -0.017043639, -0.00551470229, -0.000502426759, 0.00742351031, 0.00583228562, -0.00747644063, 0.000877489336, 0.00853505172, 0.00442962581, -0.00879970472, -0.0315466113, 0.00732426532, 0.000451150263, 0.00633512577, 0.00388708757, 0.0132458713, -0.0035496552, -0.0129349045, -0.00212383852, 0.00512764743, -0.0134774419, 0.00512103131, 0.028026728, -0.0166069604, 0.0191740934, 0.00854166783, -0.00776755856, 0.00734411413, -0.00442962581, 0.00673210481, 0.0249170586, -0.00372167956, 0.0298792981, -0.000845234783, -0.0023256361, -0.00783372205, -0.0310702343, 0.0229453947, 0.0136163849, -0.0138148749, 0.0295352489, 0.00566687761, -0.00223135366, 0.0192534886, -0.000644264102, -0.00708607771, 0.0238584466, -0.00148453668, -0.0124783777, 0.0364956185, -0.0173876863, 0.00682142517, -0.0337961577, 0.0123195862, 0.0220720414, -0.00950765051, 0.00175332464, 7.9602587e-06, 0.00222639134, -0.00670233136, -0.0236599576, 0.00236864225, 0.00792635, -0.00179963885, -0.0144500416, 0.0131003121, -0.0105530294, 0.010070038, -0.0195843056, -0.017043639, 0.0224160887, 0.00347687583, -0.00778079126, 0.0087600071, 0.0201533083, 0.0203121, -0.0127893453, 0.00325688324, -0.0234614685, 0.00957381353, -0.0105728777, 0.00100402639, -0.0154689541, -0.00205105892, 0.0249832217, 0.00260186754, 0.0161438193, -0.00980538502, -0.0210795924, 0.00784033816, -0.0157203749, 0.00849535409, -0.0015316779, 0.0208414048, 0.026452044, -0.0163820069, -0.007622, -0.0330551304, -0.0179434586, -0.00222308328, 0.00294095394, 0.00485968636, 0.0157203749, 0.0332403891, 0.0157997701, -0.0308849774, 0.00668909866, -0.0166731253, 0.00451563811, -0.0106787393, -0.0155483503, 0.00245300028, -0.0210531279, -0.0225484166, 0.00263991137, 0.00076087669, -0.00371506321, -0.00634505, 3.85348903e-05, -0.00740366103, -0.00143822236, -0.017242128, 0.0203517973, 0.00872030854, 0.0230380241, -0.0261344612, -0.0272327699, -0.00148867187, -0.00574627332, 0.0174803156, 0.0208281726, -0.00691405358, -0.0256580859, -0.00723825302, -0.0287677553, 0.0125577739, 0.0184595305, -0.0127099492, 0.000696781091, 0.0100171072, 0.0135039072, 0.0285295676, -0.00250262278, 0.0120946318, -0.0071985554, -0.000363070518, 0.0106721232, -0.0118035134, 0.00566687761, -0.0224557873, -0.00423444435, -0.00650384184, 0.00789326895, 0.0015498728, 0.0164481699, 0.0145162046, -0.0185389258, 0.0112080444, 0.0272592343, 0.00517396163, -0.000652948, -0.00137371325, 0.0113205221, 0.00336109, 0.00543530611, -0.000449496176, -0.0181287155, -0.00429399125, -0.00099823717, 0.00498208823, 0.0328963399, -0.00328831072, -0.00532282889, 0.0234085377, 0.000487126497, -0.00816453807, 0.0245597772, -0.00512764743, 0.00815130491, 0.00611347891, -0.00363897556, 0.0116976527, 0.00132491789, 0.0111352652, 0.000541297602, 0.00372829591, -0.00374152861, 0.00707946159, 0.000480510178, -0.018882975, 0.00706622889, -0.00269284192, 0.00307328021, -0.00918345153, -0.0151778366, 0.00345041044, -0.0102685271, -0.00836302713, -0.00397640793, 0.0144368084, 0.00944810361, 0.0225484166, -0.000712081383, -0.00439323578, -0.0166863576, 0.0212780833, 0.0204708911, 0.0124188308, 0.00761538325, -0.00296245702, 0.00535921846, -0.00694713509, 0.00944148749, 0.00423775241, 0.00791311823, 0.00123394351, 0.00877985545, -0.00567018567, 0.00291118049, -0.0182345752, 0.00969290733, -0.00393340178, 0.013226022, 0.00358273694, -0.012630553, 0.0192667209, 0.0145559022, 0.0154557219, -0.0183933675, -0.00505156, 0.011519012, -0.0189226735, -0.0140662948, -0.00981200114, -0.00703314738, -0.00934224296, 0.0103545394, -0.00726471841, -0.0208678711, -0.0219000168, 0.0225087181, 0.0123129701, 0.0122468071, -0.0138942702, -0.00163009565, 0.02868836, -0.0129084392, 0.0231968146, 0.0137354787, 0.00442962581, 0.0238319822, 0.0128753576, 0.00465788879, 0.0120813986, 0.008819554, 0.01605119, -0.00784695428, 0.00675857, -0.033425644, 0.0170171726, -0.0115984073, -0.0143309478, 0.00117770478, -0.00227601384, 0.00098252343, 0.00370513881, -0.0117241181, 0.0407565273, -0.00332966261, -0.00180129288, -0.0131929405, 0.00229255459, 0.00825716648, -0.00435684621, 0.0258168783, 0.00985831581, -0.0162761454, -0.00428737467, 0.00766169745, 0.0230247919, 0.0207620095, -0.00880632084, -0.014476506, 0.0128753576, 0.0061664097, 0.00423444435, -0.0156806763, -0.0163820069, -0.00500855362, -0.00388377928, -0.0093885567, -0.00508464128, 0.00788003579, 0.0048960764, -0.000388915505, 0.0154424887, -0.0177317355, 0.00430391589, 0.00413850788, 0.00948780216, -0.00353311445, -0.00283674686, -0.018485995, -0.00271765306, 0.0208811034, 0.00831009727, 0.0229718611, 0.00502840243, -0.000379818084, -0.0224425551, -0.0137090134, 0.00166400429, 0.00862768, -0.0160776563, -0.018287506, -0.00928931218, -0.00857474934, -0.00115951, 0.0184462983, 0.000218958812, 0.0103743887, -0.000805950374, 0.00278381631, -0.00733749801, -0.00151596416, -0.00885925163, -0.00451563811, -0.00624580542, -0.0012107864, 0.00540884119, 0.000559906, 0.0121277133, 0.00969290733, -0.00447594, -0.0293235276, -0.00199647434, 0.0120218517, 0.008554901, -0.00810499117, -0.0103810048, -0.0272063054, 0.004145124, -0.00849535409, -0.00424767705, 0.0197298639, -0.00203782623, 0.0195843056, 0.0205767527, 0.0014952881, -0.00557755725, 0.00428075856, -0.00222639134, 0.0156277455, 0.0100965034, -0.00596461166, -0.00481998874, 0.0337432288, -0.00572973257, 0.00273253978, -0.0184066, 0.0346430466, 0.0102155972, -0.0193328839, 0.00811160728, 0.00502178632, 0.0282649156, -0.019346118, -0.0134840589, -0.00417820551, 0.00542538194, -0.014278017, 0.0411799699, -0.00201797741, 0.0145823676, -0.00788665283, -0.00860783178, -0.00868061092, 0.0357016586, 0.014873486, 0.00154408347, -0.00539891655, 0.0203650314, 0.0124849947, 0.00452887034, -0.0409153178, 0.00284667127, 0.00663286, -0.00748967333, -0.0137090134, 0.00999725796, -0.000894857163, 0.0210928265, 0.00710592698, -0.0194916762, 0.0387716293, 0.00241330243, 0.00908420607, 0.0109301591, -0.00111733086, -0.0227601379, 0.019941587, -0.0208149403, -0.00429399125, -0.0254595969, -0.00657000486, -0.0109566245, 0.00153498608, 0.0233026762, 0.0159982592, -0.026452044, 0.0178640615, 0.0154160243, 0.0196240023, -0.000879970437, 0.00786018744, 0.00722502079, 0.0135502219, -0.0282913819, -1.52743924e-05, 0.000552876154, 0.00161934411, -0.0232497454, -0.00822408497, 0.0178905278, -0.00114048808, -0.00241330243, -0.00181948778, 0.000134910879, 0.00789326895, 0.0145691354, 0.0156409778, -0.00488946, -0.0217676908, -0.0106324246, 0.00322545553, -0.00490930909, -0.00983846653, 0.00355957984, 0.0120020034, 0.00752937142, -0.0237658191, 0.0191343948, 0.0190417673, -0.000651707465, 0.00692728627, 0.0173347555, 0.00717209, -0.00361581845, -0.0172156636, -0.0133848134, 0.00665932521, -0.00766831404, 0.01961077, -0.0185521599, 0.00431714812, -0.00732426532, 0.00694713509, 0.00263991137, 0.0060208505, -0.00821746886, 0.000937036239, 0.0108838454, 0.00933562685, -0.00646414375, 0.0013067231, 0.0112146614, 0.0195313748, 0.0238716807, 0.0392215401, 0.00222969963, -0.000736479, 0.0103743887, -0.00201632339, -0.0202327035, -0.0113403713, -0.0166995898, 0.000511110644, 0.000519794587, 0.0131929405, -0.0303027425, -0.000912225, 0.013947201, -6.28550333e-05, -0.0142515516, -0.00308982097, -0.0151249059, 0.0129944505, 0.00504494319, -0.0102883764, 0.0138678048, -0.00795281585, -0.0146220652, -0.00293433759, 0.00315598422, -0.0032701157, 0.0231174193, 0.0168319158, 0.021185454, -0.0167922191, -0.0143309478, 0.0128025776, 0.00233721477, -0.00264652772, 0.00265976042, 0.0114131505, -0.00646745227, 0.00856813323, -0.0128091937, -0.0103876209, -0.00735073071, -0.00857474934, 0.021582434, -0.000645504624, -0.0154292565, -0.0160114933, -0.0223234612, -0.0126570184, 0.0113866851, -0.0205105897, -0.00631858502, -0.0059745363, 0.0262270886, 0.0213045478, 0.00625903811, 0.00761538325, 0.0113403713, 0.000437917624, -0.00975245424, 0.0168451481, -0.0209208019, 0.0017748276, 0.0105861109, -0.000697194657, 0.000789409562, -0.0131267775, -0.0164349377, -0.021780923, 0.00303358235, -0.044488132, -0.0121343294, -0.00761538325, 0.0058157444, -0.0148205552, -0.00200309069, -0.0273915622, 0.0242554266, -0.0224690195, -0.0367602706, 0.0157336071, 2.75572279e-06, -0.0119887702, 0.00894526392, -0.00442631776, -0.0114065344, 0.0270342808, -0.0187109504, 0.0266637672, 0.00822408497, 0.00458841724, 0.00504163513, -0.0108242985, -0.00306500983, 0.0101560503, -0.0153498603, 0.00435353816, -0.0103214579, 0.0131797083, 0.0147808576, -0.0138413394, -0.0226278119, 0.00435023, 0.00142912497, 0.00691405358, -0.0155880479, -0.0188962072, -0.00446270732, 0.0146220652, -0.0203650314, 0.0026283327, 0.0124188308, -0.014674996, -0.00147709332, -0.026187392, 0.0138810379, 0.00585544249, -0.00840272568, -0.0083233295, 0.00120251602, 0.00427414244, -0.0184330661, 0.00960027892, 0.00778079126, -0.02131778, -0.0232894439, -0.00727795111, 0.0220058784, 0.0178772938, -0.0179037601, -0.00746320793, 0.0277620759, -0.0086739948, 0.0188432764, -0.00411204249, -0.00935547519, -0.0106191924, 0.0238981452, -0.0147808576, -0.00165159872, -0.0174141526, 0.0283443108, 0.0211986862, 0.000975080067, 0.00676187826, -0.00784033816, -0.0117042689, -0.0222705305, 0.00268291752, 0.0289794784, 0.000820423593, 0.00175497867, -0.0133980466, -0.0135634542, 0.0106191924, -0.00997741, 0.00552793453, 0.00841595791, -0.00480344798, 0.00588521594, -0.0082373172, 0.00703314738, -0.00918345153, 0.0160114933, 0.00828363188, 0.013358349, -0.0263991132, 0.00229751691, 0.0024579626, -0.0228792317, 0.0101229688, 0.013748711, -0.0541744232, -0.00131085829, 0.0241231, 0.0169907082, 0.00473397644, 0.0145691354, 0.00430060737, 0.000895684236, 0.00782048889, -0.00306335581, -0.00973922201, -0.00360258576, 0.0125445416, -0.00132574502, -0.0113271382, -0.0255786907, 0.00744997524, -0.00326515362, 0.0165011, 0.0145162046, -0.00860121474, 0.00103379984, 0.000151865199, -0.00148701773, 0.0167260543, -0.00106026512, -0.000913879077, 0.0105133308, -0.000241495654, 0.0123129701, 0.0016185171, 0.0413916931, 0.0332668535, -0.00109996309, -0.00424436899, -0.00907759, -0.0166995898, -0.0101626664, 0.00257044, -0.00246788701, -0.0164481699, -0.0176788047, -0.000187427911, -0.0172685925, -0.0102817602, 0.0105662616, -0.00750952214, 0.00483322097, -0.00963997748, 0.0112477429, 0.00605724, 0.0139207356, -0.00924961455, 0.00553785916, -0.0125445416, 0.0158394687, 0.00224789442, -0.00899819378, 0.0179699231, 0.0263726488, -0.00197497127, -0.0331345275, 0.00753598753, -0.000954404066, -0.0113072898, -0.000478442584, -0.00878647156, 0.0115719419, 0.0123195862, -0.000922976527, -0.0110691022, -0.00850858632, -0.00540884119, 0.00166565832, 0.00652369065, -0.00120499718, -0.012895206, -0.000854332233, 0.00266968482, 0.00685450668, -0.00503501901, -0.0112940567, -0.0106919715, 0.00489938445, -0.009474569, 0.0168451481, 0.0100435726, -0.0042179036, 0.00281358976, -0.0172024295, 0.02698135, 0.0330286659, -0.0136957811, 0.0198092591, 0.0165275652, 0.0163687747, -0.00282351417, -0.00700006587, 0.0157071427, -0.00220158021, -0.00464796415, 0.0012976256, 0.0317054, -0.00148949889, 0.02000775, -0.0285031032, -0.0394861922, -0.0123659009, -0.0073308819, 0.0107052047, 0.0234614685, 0.00568011, 0.00758891832, -0.0108772293, 0.00865414552, 0.0419474654, 0.00596461166, -0.00643767882, -0.0159982592, 0.013748711, -0.00134559395, 0.000497464498, 0.00898496155, -0.00255886139, 0.0099112466, 0.0116910357, 0.00312290271, -0.0252346415, 0.00355296349, -0.0013025878, 0.0025307422, 0.0160379577, -0.000758395588, 0.00813145656, 0.00146055245, -0.0224690195, -0.00501517, -0.014211854, -0.0200871453, 0.0192667209, -0.0155086527, 9.17497382e-05, -0.000186187361, -0.00430060737, -0.00222142925, -0.00922976527, -0.00774770975, 0.00511441473, -0.00483983755, 0.00519050239, -0.0456261374, -0.00423113629, 0.0026051756, -0.00394663448, 0.0196372364, -0.0320229866, -0.00372498762, 0.0171891972, -0.000302283093, -0.0176788047, -0.016183516, 0.0111088, -0.00288802339, 0.00804544427, -0.0108044492, 0.0249964539, 0.0023521015, -0.00387385488, -0.0141853886, -0.00854166783, 0.011644722, 0.00563048758, 0.0118498281, -0.00118432113, -0.000290497759, -0.0254463647, 0.00366213266, 0.00286321226, -0.00365220825, 0.0220323429, 0.0239113774, -0.0136560826, -0.000844407768, -0.00148370955, 0.0224293228, -0.0177317355, 0.00141175708, -0.00879308861, -0.00154077529, 0.0204576589, 0.0177582, 0.0411535054, -0.00580912828, 0.0224160887, -0.0173479896, -0.0190285333, 0.00789326895, 0.0144897392, 0.000303730398, 0.00588521594, -0.00593153, -0.00677511096, 0.00665601715, -0.0271269083, 0.0121806441, -0.00253570429, 0.0154160243, 0.0334785767, 0.000383126229, -0.00279208669, -0.00623588078, -0.00681480858, 0.0140927602, 0.016580496, -0.0080586765, -0.00950103439, -0.0017516705, 0.0107713677, 0.00576943, 0.00535921846, 0.00653361529, 0.024083402, 0.0168848466, 0.00469097029, 0.0122137256, 0.0392480046, -0.00234713918, -0.00751613872, -0.0454144143, 0.00434692157, 0.0124849947, -0.0292441305, 0.0162232146, -0.019478444, 0.0107382862, 0.0104008541, 0.022244066, -0.00308155059, 0.00266141444, 0.000522689195, 0.00530959619, 0.0167392883, -0.0131797083, 0.000537575921, -0.0106919715, -0.0151513712, 0.0210266616, -0.00320395268, -0.00821085181, 0.00573965674, -0.0120218517, 0.00654354, -0.0176126417, 0.0284237079, 0.0118630603, 0.00714562461, 0.00274742651, -0.00611347891, 0.000799747591, 0.0214501061, 0.0167260543, -0.00455864379, -0.00961351208, -0.000722005847, 0.00856151711, -0.00395986717, 0.0225881133, -0.0217015278, -0.00159949518, -0.00443293387, 0.0022793219, 0.0123989824, 0.00652038259, -0.00501186168, -0.00217676908, -0.0120880157, 0.00222308328, -0.00458510919, -0.00746320793, -0.0212913156, 0.0109367752, -0.0204973575, 0.00167310168, 0.0362045, 0.014410343, 0.00625242153, 0.00236698822, -0.00216519041, 0.016117353, 0.0191740934, 0.00984508265, -0.0179699231, 0.00147130399, -0.00585544249, -0.00673872093, -0.0151381381, -0.0176788047, 0.0113668367, 0.0106853554, -0.0286618955, 0.00971275661, 0.0174009204, 0.033293318, 0.0151646035, 7.02467e-05, -0.00823070109, -0.0137354787, -0.0094150221, -0.00778740784, -0.00715224119, -0.0267034639, 0.0122269578, -0.012240191, -0.0157733057, -0.0189623702, 0.0187109504, -0.00145476323, 0.00466119684, -0.0183007382, -0.0029806518, 0.00384077337, -0.00470089493, 0.0156542119, 0.00508464128, 0.00595468748, -0.0303821377, -0.00545515539, 0.0238319822, -0.0197695624, 0.0169377774, -0.000202831536, 0.0105861109, -0.0258962736, 0.0119226072, -0.0104471678, -0.014741159, 0.00105364888, -0.0191211626, 0.000511110644, 0.00903789233, 0.00253405026, 0.00806529354, -0.0185521599, -0.00195181416, -0.00342725334, -0.0144897392, 0.016117353, 0.00384077337, 0.0165275652, -0.00245134626, -0.021648597, -0.00278712437, -0.0114925466, -0.0020824864, -0.0025307422, 0.00825055, -0.0206958465, 0.0152969304, 0.0127033331, 0.0139868986, 0.0260947626, -0.0161438193, -0.0042509851, -0.0332139209, 0.00456526037, -0.0252743401, -0.00376468571, 0.0202194713, 0.000244183524, -0.00628550304, -0.00692728627, -0.017109802, 0.00402933825, 0.00633181771, 0.0219397154, 0.00963336, -0.00159701402, 0.00731103262, -0.0121541787, -0.00719193881, 0.0303027425, 0.00188895909, -0.0175729431, 0.00422782777, 0.00915036909, 0.0196504686, -0.0108375307, -0.0141589232, -0.0151910689, -0.0134972911, -0.0140927602, 0.0117241181, 0.0254992936, 0.00767493, 0.0151778366, -0.00782710593, -0.00931577757, 0.0153101627, 0.00135303731, 0.0145956, 0.00296411105, -0.02698135, 0.0283178464, -0.0209869649, 0.013947201, -0.0053923, -0.0134443603, -0.0296411105, -0.00325192092, -0.0120880157, 0.0161041208, -0.0124651454, 0.00614986895, 0.0121938763, 0.0353840739, -0.00682804128, 0.0144632738, 0.0141589232, 0.00771462824, -0.00946795288, 0.000389122288, 0.0131400097, -0.0080322111, 0.00795281585, -0.0230777208, -0.00117605075, -0.0214501061, 0.00319402805, 0.0145823676, 0.000439985219, 0.00567349372, 0.00473397644, 0.0143706454, -0.0189756043, 0.0257374812, 0.00551139377, -0.0264917426, -0.0164349377, 0.0254595969, -0.00329988915, 0.00928931218, -0.0372631103, -0.00245630858, -0.0104868663, -0.0196769331, -0.00250593084, -0.0125511577, 0.0209208019, 0.00701991469, -0.00345702679, -0.000542124675, -0.011188196, 0.00511110667, 0.0138413394, 0.000407937419, -0.00546838762, -0.00626565423, 0.016712822, 0.00125379255, -0.00768816285, 0.0101957479, -0.0133517319, 0.00697360048, 0.00841595791, -0.019412281, 0.0119226072, 0.0220455751, -0.0199018884, 0.00760876713, -0.031917125, 0.001118985, 0.0229321625, 0.00106357329, 0.0195710715, -0.00801236276, -0.00708607771, 0.011433, -0.0145691354, -0.00491261715, 0.000341981, 0.00323041785, 0.000418688956, -0.0010180861, 0.00480344798, 0.0137354787, 0.0195975378, -0.00602746662, 0.00440646848, -0.00520042703, -0.00157964625, 0.0143309478, -0.00177813577, -0.0026051756, 0.0217412245, 0.0095341159, -0.0173347555, 0.0235673282, 0.0203517973, 0.0129216714, 0.0114859305, -0.0217676908, -0.000191563115, 0.0161570515, 0.00670233136, -0.00536583504, 0.00720517151, -0.0128555084, 0.0148867182, 0.00457187649, -0.021251617, 0.00347025949, -0.0224425551, 0.0246391725, 0.00555770798, 0.0125842392, 0.00787342, 0.00750290602, 0.00648730109, 0.00779402396, 0.000879143423, -0.00259525119, -0.0195843056, 0.00208579469, 0.00290621817, -0.0046645049, 0.00950103439, 0.00788665283, 0.0080322111, 0.0113337552, -0.00555109186, 0.00833656266, 0.0145823676, -0.0260153674, 0.00669571524, -0.0120086195, -0.00545515539, -0.0140927602, -0.007622, -0.0279473327, -0.0321023799, -0.00720517151, 0.0187374167, 0.0219661798, -0.0032833484, 0.0233820714, 0.00836964417, 0.007622, 0.000307865615, 0.00211722218, -0.0333462507, -0.0121409455, -0.00895188, -0.0182610415, 0.00170370215, 0.00291118049, -0.000169956707, 0.0124849947, 0.00625573, -0.00885925163, -0.013748711, 0.00823070109, 0.00270276633, 0.00765508134, 0.011254359, 0.00358935329, 0.0119556887, 0.00272426941, -0.0210001972, -0.00289298547, 0.0161041208, -0.0113271382, -0.0099707935, -0.00441639312, -0.00084937, -0.014211854, 0.018949138, 0.0180228539, -0.016514333, -0.000602085, 0.0126967169, -0.00593814673, -0.00222473731, 0.00199316628, -0.00140927604]
27 Jun, 2023
list max_size() function in C++ STL 27 Jun, 2023 The list::max_size() is a built-in function in C++ STL which returns the maximum number of elements a list container can hold. Syntax: list_name.max_size() Parameters: This function does not accept any parameters. Return Value: This function returns the maximum number of elements a list container can hold. Below program illustrate the list::max_size() function in C++ STL: CPP // CPP program to illustrate the // list::max_size() function #include <bits/stdc++.h> using namespace std; int main() { // Creating a list list<int> demoList; // checking the max size of the list cout << demoList.max_size(); return 0; } Output 768614336404564650 Time Complexity: O(1)Auxiliary Space: O(1) Learn C++ Online – Master everything from basics to advanced concepts. Apply your knowledge with practical exercises and boost your skills. Take the Three 90 Challenge: finish 90% in 90 days for a 90% refund. Start now and level up your C++ programming!
PHP/PHP Tutorial/PHP Date and Time/Node.js date-and-time Date.isLeapYear() Method/How to convert UTC date time into local date time using JavaScript ?/Convert string into date using JavaScript/Node.js date-and-time Date.transform() Method/Node.js Stream transform.destroy() Method/jQWidgets jqxComboBox destroy() Method/jQWidgets jqxComboBox enableItem() Method/jQWidgets jqxComboBox checkAll() Method/jQWidgets jqxTree checkAll() Method/jQWidgets jqxTree collapseItem() Method/jQWidgets jqxTree ensureVisible() Method/jQWidgets jqxTree clear() Method/jQWidgets jqxTree collapseAll() Method/jQWidgets jqxTree destroy() Method/jQWidgets jqxTreeMap destroy Method/jQWidgets jqxTreeMap showLegend Property/jQWidgets jqxTreeMap selectionEnabled Property/jQWidgets jqxTreeMap theme Property/jQWidgets jqxTreeMap width Property/jQWidgets jqxTree width Property/jQWidgets jqxTree enableHover Property/jQWidgets jqxButtonGroup enableHover Property/jQWidgets jqxListBox enableHover Property/jQWidgets jqxTabs enabledHover Property/jQWidgets jqxTabs position Property/jQWidgets jqxTabs keyboardNavigation Property/jQWidgets jqxTabs contentTransitionDuration Property/jQWidgets jqxTabs disabled Property/jQWidgets jqxSortable disabled Property/jQWidgets jqxSortable opacity Property/jQWidgets jqxTooltip opacity Property/jQWidgets jqxTooltip height Property/jQWidgets jqxToolBar height Property/jQWidgets jqxToolBar close Event/jQWidgets jqxToolBar tools Property/jQWidgets jqxToolBar theme Property/jQWidgets jqxToolBar rtl Property/jQWidgets jqxScrollBar rtl Property/jQWidgets jqxScrollBar step Property/jQWidgets jqxScrollBar theme Property/jQWidgets jqxScrollBar showButtons Property/jQWidgets jqxScrollBar disabled Property/jQWidgets jqxScrollView disabled Property/jQWidgets jqxScrollView slideDuration Property/jQWidgets jqxScrollView showButtons Property/jQWidgets jqxScrollView moveThreshold Property/jQWidgets jqxScrollView refresh() Method/jQWidgets jqxScrollView animationDuration Property/jQWidgets jqxScrollView buttonsOffset Property/jQWidgets jqxSlider buttonsPosition Property/jQWidgets jqxSlider rtl Property/jQWidgets jqxSlider height Property/jQWidgets jqxSplitter height Property/jQWidgets jqxSplitter destroy() Method/jQWidgets jqxSplitter width Property/jQWidgets jqxSplitter orientation Property/jQWidgets jqxSwitchButton orientation Property/jQWidgets jqxSwitchButton enable() Method/jQWidgets jqxSwitchButton onLabel Property/How to declare a module in TypeScript ?/How to Declare Optional Properties in TypeScript ?/TypeScript Optional Parameters/How to Make a Single Property Optional in TypeScript ?/How to Sort an Array Having Optional Properties in TypeScript ?/How to use Optional Chaining with Arrays and Functions in TypeScript ?/Optional Property Class in TypeScript/Introduction to TypeScript/Difference between Flow and TypeScript/Difference Between Flow Control and Error Control/What are Issues in Flow Control Related to LANs?/Design Issues in Network Layer/Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS)/SSL vs HTTPS – Which One is More Secure?/What is SSL/TLS Handshake?/Impact of Three-way Handshake and Slow Start Algorithm/Steps to Diagnose and Resolve a Slow Network/Differences between Wireless Adhoc Network and Wireless Sensor Network/Adhoc TCP/Calculation of TCP Checksum/Algorithm for Dynamic Time out timer Calculation/Difference between Round trip time (RTT) and Time to live (TTL)/Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms/Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm/Round Robin Scheduling Algorithm with Different Arrival Time/Selfish Round Robin CPU Scheduling/Find the order of execution of given N processes in Round Robin Scheduling/Calculate server loads using Round Robin Scheduling/set::lower_bound() Function in C++ STL/Implementation of lower_bound() and upper_bound() in List of Pairs in C++/Difference between std::set::lower_bound and std::lower_bound in C++/Difference between std::set vs std::vector in C++ STL/std::minmax() and std::minmax_element() in C++ STL/std::rotate vs std::rotate_copy in C++ STL/std::bitset::to_ullong and std::bitset::to_ulong in C++ STL/std::upper_bound and std::lower_bound for Vector in C++ STL/std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++/std::string::append vs std::string::push_back() vs Operator += in C++/Vector push_back() in C++ STL/vector :: cbegin() and vector :: cend() in C++ STL/unordered_multiset cend() function in C++ STL/unordered_multiset bucket() function in C++ STL/unordered_multiset emplace_hint() function in C++ STL/unordered_multiset end() function in C++ STL/unordered_multiset size() in C++ STL/unordered_multiset emplace() function in C++ STL/unordered_multiset find() function in C++STL/unordered_multiset erase() function in C++ STL/unordered_multiset clear() function in C++ STL/unordered_multiset swap() function in C++ STL/unordered_multiset bucket_size() function in C++ STL/unordered_multiset bucket_count() function in C++ STL/unordered_set bucket_count() function in C++ STL/unordered_set cbegin() function in C++ STL/array::cbegin() and array::cend() in C++ STL/array::rbegin() and array::rend() in C++ STL/multimap rbegin in C++ STL/vector rbegin() and rend() Functions in C++ STL/multiset rbegin() and rend() function in C++ STL/map rbegin() function in C++ STL/map upper_bound() function in C++ STL/Set upper_bound() in C++ STL/multimap upper_bound() function in C++ STL/multimap empty() function in C++ STL/multimap value_comp() function in C++ STL/multimap swap() function in C++ STL/multimap::swap() in C++ STL/multimap equal_range() in C++ STL/unordered_set equal_range in C++ STL/set vs unordered_set in C++ STL/unordered_set count() function in C++ STL/unordered_set bucket() function in C++ STL/unordered_set emplace() function in C++ STL/set::emplace() in C++ STL/multiset::emplace() in C++ STL/multiset find() function in C++ STL/multiset cbegin() and cend() function in C++ STL/multimap::cbegin() and multimap::cend() in C++ STL/multimap::begin() and multimap::end() in C++ STL/set::begin() and set::end() in C++ STL/unordered_multimap begin() and end() function in C++ STL/unordered_multimap empty() function in C++ STL/unordered_multimap find() function in C++ STL/unordered_multimap equal_range() function in C++ STL/unordered_multimap bucket_count() function in C++ STL/unordered_multimap bucket_size() function in C++ STL/unordered_multimap operator= in C++/unordered_multimap load_factor() function in C++ STL/unordered_map load_factor in C++ STL/unordered_map operator= in C++ STL/unordered_map swap in C++ STL/unordered_map rehash in C++ STL/unordered_map max_size in C++ STL/forward_list max_size() in C++ STL with Examples/list max_size() function in C++ STL
https://www.geeksforgeeks.org/list-max_size-function-in-c-stl?ref=asr10
PHP
list max_size() function in C++ STL
unordered_multiset clear() function in C++ STL, What is SSL, Optional Property Class in TypeScript, jQWidgets jqxScrollBar step Property, unordered_map max_size in C++ STL, jQWidgets jqxTreeMap width Property, Round Robin Scheduling Algorithm with Different Arrival Time, Difference between Flow and TypeScript, set::begin() and set::end() in C++ STL, unordered_multiset emplace() function in C++ STL, jQWidgets jqxTree destroy() Method, unordered_set bucket_count() function in C++ STL, unordered_map load_factor in C++ STL, jQWidgets jqxTree collapseAll() Method, Find the order of execution of given N processes in Round Robin Scheduling, jQWidgets jqxScrollView buttonsOffset Property, jQWidgets jqxScrollView moveThreshold Property, jQWidgets jqxScrollView refresh() Method, Vector push_back() in C++ STL, jQWidgets jqxListBox enableHover Property, Difference between First Come First Served (FCFS) and Round Robin (RR) Scheduling Algorithm, std::rotate vs std::rotate_copy in C++ STL, Selfish Round Robin CPU Scheduling, jQWidgets jqxToolBar close Event, jQWidgets jqxTreeMap theme Property, How to convert UTC date time into local date time using JavaScript ?, jQWidgets jqxTree ensureVisible() Method, jQWidgets jqxSlider buttonsPosition Property, std::fixed, std::scientific, std::hexfloat, std::defaultfloat in C++, std::upper_bound and std::lower_bound for Vector in C++ STL, Difference between Round trip time (RTT) and Time to live (TTL), jQWidgets jqxSlider rtl Property, Difference between std::set::lower_bound and std::lower_bound in C++, jQWidgets jqxTooltip opacity Property, list max_size() function in C++ STL, jQWidgets jqxScrollBar disabled Property, jQWidgets jqxComboBox checkAll() Method, unordered_multiset erase() function in C++ STL, multiset find() function in C++ STL, set vs unordered_set in C++ STL, jQWidgets jqxToolBar height Property, PHP, std::minmax() and std::minmax_element() in C++ STL, Node.js Stream transform.destroy() Method, What are Issues in Flow Control Related to LANs?, jQWidgets jqxTree checkAll() Method, jQWidgets jqxTooltip height Property, unordered_set emplace() function in C++ STL, unordered_multimap empty() function in C++ STL, unordered_set bucket() function in C++ STL, map rbegin() function in C++ STL, jQWidgets jqxTree enableHover Property, jQWidgets jqxButtonGroup enableHover Property, map upper_bound() function in C++ STL, Node.js date-and-time Date.transform() Method, unordered_multiset size() in C++ STL, TypeScript Optional Parameters, jQWidgets jqxToolBar theme Property, Difference between std::set vs std::vector in C++ STL, jQWidgets jqxTabs enabledHover Property, jQWidgets jqxScrollBar theme Property, Steps to Diagnose and Resolve a Slow Network, How to use Optional Chaining with Arrays and Functions in TypeScript ?, Calculate server loads using Round Robin Scheduling, unordered_map operator= in C++ STL, Difference Between Flow Control and Error Control, Design Issues in Network Layer, jQWidgets jqxScrollBar showButtons Property, jQWidgets jqxScrollView showButtons Property, unordered_map rehash in C++ STL, set::emplace() in C++ STL, Difference between Multi Level Queue (MLQ) Scheduling and Round Robin (RR) algorithms, jQWidgets jqxScrollView disabled Property, multimap::cbegin() and multimap::cend() in C++ STL, jQWidgets jqxSplitter destroy() Method, jQWidgets jqxTabs contentTransitionDuration Property, jQWidgets jqxTreeMap destroy Method, set::lower_bound() Function in C++ STL, jQWidgets jqxSwitchButton enable() Method, jQWidgets jqxSplitter height Property, How to Make a Single Property Optional in TypeScript ?, Introduction to TypeScript, jQWidgets jqxTree collapseItem() Method, multimap upper_bound() function in C++ STL, std::string::append vs std::string::push_back() vs Operator += in C++, unordered_multiset swap() function in C++ STL, unordered_multiset cend() function in C++ STL, Difference Between Secure Socket Layer (SSL) and Transport Layer Security (TLS), Set upper_bound() in C++ STL, jQWidgets jqxSortable opacity Property, jQWidgets jqxComboBox enableItem() Method, jQWidgets jqxTabs disabled Property, multiset cbegin() and cend() function in C++ STL, multimap rbegin in C++ STL, vector :: cbegin() and vector :: cend() in C++ STL, multimap swap() function in C++ STL, jQWidgets jqxSlider height Property, jQWidgets jqxSwitchButton onLabel Property, unordered_multiset bucket_size() function in C++ STL, unordered_set cbegin() function in C++ STL, jQWidgets jqxToolBar rtl Property, jQWidgets jqxSplitter width Property, jQWidgets jqxToolBar tools Property, multimap empty() function in C++ STL, PHP Date and Time, jQWidgets jqxComboBox destroy() Method, jQWidgets jqxTree width Property, multimap::swap() in C++ STL, unordered_multimap bucket_size() function in C++ STL, multimap equal_range() in C++ STL, Implementation of lower_bound() and upper_bound() in List of Pairs in C++, jQWidgets jqxTree clear() Method, TLS Handshake?, multiset rbegin() and rend() function in C++ STL, unordered_multimap operator= in C++, Algorithm for Dynamic Time out timer Calculation, Adhoc TCP, unordered_map swap in C++ STL, jQWidgets jqxSortable disabled Property, How to Declare Optional Properties in TypeScript ?, Convert string into date using JavaScript, jQWidgets jqxScrollView slideDuration Property, jQWidgets jqxScrollBar rtl Property, jQWidgets jqxTabs position Property, Differences between Wireless Adhoc Network and Wireless Sensor Network, jQWidgets jqxTabs keyboardNavigation Property, Calculation of TCP Checksum, unordered_multimap begin() and end() function in C++ STL, std::bitset::to_ullong and std::bitset::to_ulong in C++ STL, unordered_multiset emplace_hint() function in C++ STL, multimap::begin() and multimap::end() in C++ STL, forward_list max_size() in C++ STL with Examples, unordered_multiset bucket_count() function in C++ STL, unordered_multiset find() function in C++STL, unordered_multimap bucket_count() function in C++ STL, unordered_multiset bucket() function in C++ STL, Impact of Three-way Handshake and Slow Start Algorithm, array::rbegin() and array::rend() in C++ STL, multimap value_comp() function in C++ STL, How to declare a module in TypeScript ?, Node.js date-and-time Date.isLeapYear() Method, jQWidgets jqxTreeMap selectionEnabled Property, jQWidgets jqxSplitter orientation Property, unordered_multimap load_factor() function in C++ STL, multiset::emplace() in C++ STL, unordered_set equal_range in C++ STL, jQWidgets jqxSwitchButton orientation Property, SSL vs HTTPS – Which One is More Secure?, unordered_multimap equal_range() function in C++ STL, unordered_set count() function in C++ STL, vector rbegin() and rend() Functions in C++ STL, array::cbegin() and array::cend() in C++ STL, PHP Tutorial, jQWidgets jqxTreeMap showLegend Property, jQWidgets jqxScrollView animationDuration Property, unordered_multiset end() function in C++ STL, How to Sort an Array Having Optional Properties in TypeScript ?, unordered_multimap find() function in C++ STL
GeeksforGeeks
[-0.010430078, 0.0483444296, -0.00648466125, 0.0435099863, 0.0800007358, -0.0367231742, -0.0242419429, 0.0270078015, 0.00434344495, 0.0218828265, -0.031935215, 0.0235795304, -0.00251454953, -0.0219176915, 0.0546663925, -0.0289136879, -0.0402560346, 0.0062987213, 0.0109065501, -0.00540969521, 0.00762935542, 0.00153836387, -0.0091982251, 0.043788895, -0.00435216073, 0.0154911354, 0.00625804672, -0.0215109475, -0.00318712974, -0.0110169519, 0.0227660425, 0.00969793927, -0.0228473917, -0.00797218271, 0.014875209, -0.00533706229, 0.0584781654, 0.0479725488, -0.0339805558, 0.0054765176, 0.0353751071, 0.0112203239, 0.0159211215, -0.0295644775, 0.0202093665, 0.0185823906, -0.00214121654, -0.0491811596, -0.0376993567, 0.00585420802, 0.00760611286, -0.00909944437, 0.00991293229, -0.00407615583, -0.0229287408, -0.0194772277, 0.0147938598, 0.0202093665, -0.0155143784, -0.0342827067, -0.00205405708, -0.022568481, -0.0136549771, -0.00288642966, 0.0114120748, -0.0429289229, -0.0198723488, 0.029401781, 0.0621504821, 0.011720038, -0.0279142596, 0.0629407316, -0.00439864583, -0.014026857, -0.00157032232, -0.0299828425, -0.0244743675, -0.0224290267, -0.0343524367, 0.0250554308, -0.0114643704, 0.00395122729, -0.0105462903, -0.0125625785, -0.0202209875, 0.00759449136, -0.0115340976, -0.0288904458, -0.00444222568, -0.0142127974, -0.0102208955, 0.0314936079, 0.00373332878, 0.0214877035, 0.0126206856, 0.0296806898, -0.0117258485, 0.038815, -0.0189426485, 0.0184429344, 0.0019436552, -0.0110285729, 0.0292623248, -0.000652606192, 0.029355295, -0.000199195609, 0.0110983, -0.0385360867, 0.02893693, -0.0190472398, 0.0179083571, 0.0242419429, -0.0245208517, 0.0477401242, -0.0199536979, 0.0181059185, 0.0128414892, -0.0169321708, -0.0203604419, 0.016188411, 0.0151424976, 0.0333762504, 0.00832082052, -0.00967469625, -0.0555960946, 0.0117432801, 0.0166881252, 0.00816393271, 0.0334692188, -0.00389893167, -0.0179548413, 0.0217666142, 0.0155492416, -0.0579203442, -0.011720038, 0.0155608635, -0.00193058129, 0.00739693, 0.00368393841, 0.0243349131, -0.0334692188, 0.00164876587, 0.0110343834, 0.0218828265, -0.0232425146, -0.011051815, 0.0139338868, 0.0206161104, -0.0341432542, 0.0236376375, 0.000415823102, -0.0332135521, 0.0262175556, -0.00120933703, 0.0213482492, -0.00640331255, -0.00484025339, -0.00953524187, 0.0313773938, -0.00389312115, 0.0128763532, -0.00332367956, 0.0151192555, -0.0127136549, -0.03828042, 0.0390009396, 0.0326789767, 0.0108949281, -0.040441975, 0.00938416552, 0.0266824067, 0.0444629304, -0.0151889827, 0.0182221308, 0.0265894365, -0.0438353829, 0.0533183292, 0.0498784371, 0.0319119729, 0.0341200121, 0.0284023527, -0.00429696, -0.00783853792, 0.0191053469, -0.0275888648, -0.00848932844, 0.0344686471, -0.00944227166, 0.0230100881, -0.015711939, -0.00887282938, 0.034445405, 0.0181291606, -0.0164324567, 0.0129344594, -0.00610116, 0.00798961427, 0.011911788, -0.00679262495, 0.0343756787, -0.0241489727, 0.000861425651, -0.0146544054, 0.0109123606, 0.0132598542, -0.0142476615, -0.00200321409, 0.0218247212, 0.0184313133, -0.00721680047, 0.0184196923, 0.0222547073, -0.0127252769, -0.0142941466, -0.00393379573, 0.0173854, -0.0347708, 0.023428455, -0.0135155218, -0.0353286229, 0.0236027725, -0.000911542331, 0.0478330925, -0.0546663925, -0.0672638342, -0.0372112654, -0.00305058, -0.00726328557, 0.0162232742, -0.0179548413, 0.0212320369, -0.00988969, 0.0128066251, 0.0111157326, 0.0572230704, 0.00218334375, -0.0319817, -0.0157003179, -0.0135852499, 0.00548523339, 0.0218828265, 0.0386755429, 0.00337307, 0.0320746712, -0.00828014594, 0.00879148114, -0.0120512433, -0.0583851971, 0.00224145, -0.0191983171, -0.0363745354, -0.00538935792, 0.0158281513, 0.0114759915, -0.018721845, -0.017025141, 0.0214063562, -0.017838629, -0.0282396544, -0.0137944324, -0.0169786569, 0.0282396544, 0.0016923456, 0.0271240138, -0.0190356188, 0.05020383, 0.0608489029, 0.000739765645, -0.015770046, -0.0230798163, -0.0187915731, -0.00832082052, 0.00809420552, -0.000418002077, 0.0117781442, 0.0181291606, -0.017478371, 0.0114992335, 0.0278212894, -0.02339359, 0.0204766542, -0.0351891667, -0.0190472398, 0.0133179603, 0.0336319171, 0.00751895318, -0.0308660585, -0.0271937419, 0.00180565286, 0.00914011896, -0.0233587269, 0.0227195583, 0.0380944796, 0.0227079354, -0.0114062643, -0.0199420769, -0.0265197083, 0.0102441385, -0.0235446673, 0.00782110635, -0.00750733213, -0.0200699102, -0.0294482652, -0.0472520329, -0.0023692837, -0.0204998981, -0.0105695333, -0.0176062044, 0.0272867121, -0.0029009562, 0.00728652813, -0.0297039337, 0.00541841099, 0.0114992335, -0.045532085, -0.0258224327, 0.0491811596, 0.00043143917, -0.0277980473, -0.0122836689, 0.0169321708, -0.00732139172, -0.024218699, 0.0553171821, 0.0198026225, -0.0342362225, -0.0257294625, -0.0243116692, -0.0111273536, -0.0453461446, -0.000498261419, 0.0260548592, -0.0349102579, -0.0407906137, 0.0318887308, -0.0271472558, -0.0128298681, -0.01276014, -0.0159095, 0.0331438258, 8.96107886e-05, 0.0135620069, -0.0317725167, 0.0040441975, 0.0189891346, -0.0107206097, -0.0112145133, -0.00894836802, 0.018721845, 0.0190937258, 0.000609389681, -0.00635101693, 0.0328649133, 0.0338875838, 0.00877986, -0.0159095, 0.00523247104, -0.0261478275, 0.0082510924, -0.00619413, -0.00305348518, 0.0422548912, -0.0141895553, 0.0173272938, 0.00470079854, -0.0468801521, -0.0120628644, -0.016606776, -0.00492160255, 0.00666479114, 0.0196631663, -0.00801285636, 0.0177572817, 0.0345848612, 0.00330915302, -0.0235911515, 0.0621504821, 0.04337053, -0.0281466842, 0.00888445135, 0.01276014, 0.0435332283, 0.0189775135, 0.0279839877, -0.0177456588, -0.0114759915, -0.031935215, -0.00525861885, 0.00133136031, 0.0340037979, -0.0124928514, 0.0171064902, -0.00012138766, -0.0138757806, 0.011720038, 0.0153981652, -0.0368626267, -0.0214412194, -0.0630337, -0.0648001283, -0.031935215, -0.00332658482, 0.0145730563, -0.0309357867, -0.00724004302, 0.0243349131, 0.0175713412, -0.00544746406, -0.00341955479, 0.00571765844, 0.00330624753, -0.0313541517, -0.0268683471, -0.0159327425, 0.019186696, 0.00208020513, 0.000947858789, 0.000769908307, 0.0479260646, 0.0198258646, -0.0161186829, -0.0170832481, -0.0264732242, 0.0116503099, -0.00754219573, 0.0324465483, -0.0381409675, 0.0264732242, -0.0258224327, -0.0215109475, -0.0160954408, 0.0671708658, -0.0270542856, 0.0236260165, -0.00701342849, -0.0461828746, 0.0309590288, 0.0133295823, -0.0225801021, -0.026821861, -0.00548813865, 0.0433008038, 0.0406279154, 0.0319584571, -0.00573509047, 0.0178037658, -0.00879148114, -0.0153865442, 0.0207904298, 0.0173156727, -0.0380944796, -0.0169089288, 0.0241954569, -0.0113946423, 0.0523421429, -0.00660087401, 0.0265197083, -0.0108252009, 0.0645212159, -0.00977347698, -0.00378853, 0.00837892666, 0.0109472238, -0.00607210677, 0.012783383, 0.0180245694, -0.00809420552, 0.00289224042, -0.0142360395, 0.0184196923, -0.0328184292, -0.000667132786, 0.0239165463, -0.0183964502, 0.0176178254, -0.000627911068, -0.014875209, 0.00897742063, -0.0179548413, -0.0110111414, 0.0198491067, 0.0130041866, -0.050622195, 0.0117026055, 0.00297068385, -0.0152819529, -0.00382339349, 0.0213831123, -0.005961705, -0.04169707, -0.00192186539, 0.018733466, 0.0285882931, -0.0163394883, 0.0143522527, 0.0281466842, -0.0223709196, 0.0109472238, -0.0252413712, 0.00471823057, 0.0165021848, -0.00459911255, -0.0320049413, 0.0718658566, 0.0380015112, -0.03144712, 0.020836914, 0.0168392, -0.0236725, -0.0252878554, -0.0102848122, 0.00772232516, -0.00868689, -0.017478371, -0.00461363886, -0.00482863234, 0.0357934721, 0.00937254354, -0.0165370479, 0.0146079203, -0.0133876884, 0.0517378375, 0.00234458852, 0.00626966823, -0.0206742156, -0.00265981513, 0.0219990388, -0.00586582953, -0.00165457651, -0.00431439187, -0.0204766542, 0.00558401411, -0.0147822388, -0.00970375, -0.0225917231, 0.0158862583, -0.000503708841, -0.0100581981, -0.00888445135, 0.0294715073, -0.00179548422, -0.0228241496, 0.0169786569, 0.00253343396, 0.0261245854, 0.00947132427, 0.0129577015, 0.0133760665, -0.0107845264, 0.00386697333, 0.00886701886, -0.0120977284, 0.00266417325, -0.00911106542, -0.0167578533, -0.00255522388, -0.0148287239, -0.0550382733, -0.00590359839, -0.0122139407, -0.0308428165, 0.0313541517, -0.00110692473, 0.0453693867, -0.0062522362, 0.00229519838, 0.00423304271, 0.0105172377, -0.0287974756, 0.0129925655, -0.00586292427, 0.0116386889, 0.0462526046, 0.00224871328, 0.0131087778, 0.0474612154, 0.0109239817, 0.0120744864, -0.0245440956, -0.00215574307, 0.0072690961, -0.013201748, 0.0213831123, -0.00721099, -0.0203488208, 0.0120977284, -0.0290531423, -0.01746675, -0.0334924646, 0.02255686, 0.00113670423, 0.032771945, -0.000641348131, 0.00136041339, 0.0162697602, 0.0219060704, -0.0133528244, -0.0201512594, 0.00801866781, 0.000676575059, 0.0135039007, -0.00668803323, -0.0190239977, -0.0122720478, -0.0206044894, 0.0249857027, 0.0266126785, 0.0272634681, 0.00850094948, -0.00941321813, -0.0487163104, -0.00557820359, 0.0165602919, 0.0139106447, 0.0135852499, 0.00877404865, 0.00478795776, 0.00581353391, -0.0209066421, 0.0118536819, -0.00972118136, 0.00246370654, -0.017048385, -0.0231844075, 0.0196515452, 0.0287974756, -0.0271007717, -0.025101915, 0.000573073223, -0.0134457946, -0.01617679, -0.0354913175, 0.0132947182, -0.0176759325, -0.00516855391, 0.01572356, -0.00224290253, -0.00894836802, -0.0335621908, 0.041278705, -0.0167694744, -0.00687978417, 0.0198026225, 0.0518308058, 0.00593555719, -0.000903552747, -0.0373507217, 0.019965319, 0.023381969, 0.0184778, -0.0102790017, 0.0413716733, -0.00779205281, -0.000128832529, 0.00893674698, 0.0123650171, 0.0189077854, 0.0219990388, 0.0333530083, 0.0164208356, -0.0249857027, -0.00793731865, -0.0151192555, -0.00679843547, 0.00904133823, -0.0272634681, -0.0182337519, -0.0270310435, 0.0244278815, 0.000605031673, -0.027681835, -0.00506396266, 0.0130158076, 0.0172343235, -0.00289659831, -0.0113423467, -0.017431885, 0.0261478275, -0.017431885, -0.0149798, 0.000783708529, -0.0176294465, 0.0117897652, -0.0106508825, -0.0121209715, -0.00453810068, 0.0180245694, 0.0227079354, -0.0014584678, 0.0179316, 0.0186753608, -0.00547361188, -0.0183383431, 0.0195237119, -0.000426354876, -0.0346778296, 0.00836149417, -0.000229338242, -0.00757706, -0.0289601721, 0.00656019943, 0.0238933042, -0.0158862583, 0.000880310195, -0.0175829623, 0.0355610475, -0.00843703281, -0.0111505957, -0.00779786333, 0.0117374696, 0.0139919939, -0.0360723808, 0.0305871479, 0.00159356487, 0.0329578854, -0.0082510924, -0.00506977318, -0.00377981388, 0.0210577175, -0.0222547073, 0.012748519, -0.00710058818, -0.0103196763, 0.0154097872, 0.0220571458, -0.0122952899, -0.0213714913, -0.0419992246, 0.00815231167, -0.00236056792, -0.0164208356, 0.0249159746, 0.00951199885, 0.00192186539, 0.018315101, 0.00979672, 0.0312611833, 0.00483734813, -0.0101627894, -0.00295470469, -0.0040906826, 0.00300409505, -0.00318712974, 0.029796904, -0.0151424976, -0.0246370658, 0.048948735, 0.00275278534, -0.00182453741, 0.00824528188, -0.0104416991, 0.0563863404, 0.0266824067, -0.0122371837, -0.000329208415, -0.0132830972, 0.0440213233, -0.00994198583, 0.0179548413, 0.0144452229, 0.005961705, -0.00909944437, 0.0166881252, 0.0259154029, -0.0426267721, -0.0137247043, -0.0150611494, -0.0168275796, 0.00172720931, -0.00800123531, -0.00693208, 0.00868689, -0.000328663678, -0.00913430844, 0.00291838823, -0.0250089448, -0.0124579873, 0.0487627946, 0.040441975, -0.0119582731, -0.0320979133, 0.0346545875, -0.00653114635, 0.0216387808, 0.00849513896, 0.0092389, 0.0108774966, 0.0234749392, 0.0312844254, 0.0111099221, 0.00245644315, -0.0262407977, 0.01830348, 0.010645071, -0.00891931448, -0.0176526885, -0.000769908307, -0.0133760665, -0.0167346094, -0.0379085392, 0.0277980473, 0.0210344754, -0.00905295927, -0.0014119827, 0.0179316, -0.0222430862, 0.0018753804, 0.0327951871, -0.0196515452, 0.0349335, -0.0130041866, -0.00620575109, -0.0216155387, 0.0225917231, 0.00686235214, -0.0196980312, -0.00119481049, -0.0247532781, 0.0313541517, 0.00326557318, 0.0129228374, -0.0137595683, 0.0305174217, 0.018315101, -0.0166183971, 0.0178618729, 0.00761192339, 0.0178037658, 0.0275191367, -0.0291228704, 0.00703086052, -0.00465431344, -0.0266824067, 0.0058019124, -0.00766421901, 0.0124115022, 0.0523421429, 0.00490998104, -0.00172575668, 0.0258224327, -0.0105753439, 0.0156886969, -0.0404652171, 0.00304186414, -0.00594717823, -0.0261710715, -0.0176759325, 0.00735625578, -0.0115457186, -0.0320049413, -0.0294482652, 0.0162581392, 0.0103545403, -0.0117490906, 0.0124696093, 0.0147241326, -0.0546663925, -0.0212320369, 0.00609534932, 0.0142476615, -0.00393379573, -0.00622899365, 0.00142796198, 0.0300525706, 0.0283791106, 0.0370485671, -0.0210460965, -0.0513194725, 0.0162000321, -0.00889026187, 0.0115980143, -0.000353358861, 0.00456134323, -0.0527140237, -0.0156538337, -0.00256829779, -0.0179432202, -0.00819298625, -0.00274842721, 0.00446546823, 0.0142709035, -0.0142127974, -0.00783272739, -0.02893693, -0.0263337679, -0.00569732115, -0.0264267381, -0.025961889, -0.0033178688, -0.0243813973, 0.0363512933, -0.0026583625, 0.00281089148, -0.0257759485, -0.0105695333, 0.00750152161, 0.0058803563, -0.015293574, 0.0012463798, -0.0047850525, 0.00510173198, -0.0290763844, 0.0154097872, -0.00229665102, 0.0275191367, -0.00473275688, 0.0296806898, 0.0220222827, -0.010000092, -0.00381467771, 0.0350032263, 0.0105114272, 0.0119815161, -0.0348870121, 0.00349509297, 0.00764678698, -0.00253198133, -0.00268015242, 0.000166964775, 0.0451369621, -0.0148054818, -0.0129112164, 0.0183615871, 0.0114120748, -0.0149333151, 0.00245063263, -0.0122836689, -0.0151424976, -0.0206161104, -0.0116793634, -0.0383733921, -0.00741436193, 0.00426790677, -0.0173621587, 0.0120512433, -0.00173592533, -0.0142941466, -0.0232657567, -0.0757705942, 0.0243349131, 0.00985482614, -0.0247532781, 0.0434635021, 0.0161419269, -0.0411624908, 0.0126787918, -0.0378852971, 0.00666479114, 0.0101744104, -0.0104358885, 0.00438411906, 0.0510870442, 0.0187450871, -0.0253808256, -0.0326789767, -0.0187799521, 0.00803028885, 0.00732720271, -0.0291925985, 0.00124855875, 0.0228009056, 0.00958172604, 0.0472985171, -0.000793150801, 0.0316795483, 0.0210344754, 0.00124565349, -0.0224871319, -0.00242884271, -0.000906458066, 0.0025479605, 0.0112609984, 0.0337946154, 0.0234168321, -0.0183732081, 0.0314006358, -0.0262640417, -0.027658591, 0.0172575675, 0.00282687088, 0.0282396544, 0.0133412033, -0.0029343674, -0.00548523339, 0.00531963026, -0.00268741581, 0.0276121069, 0.0108949281, 0.00775718922, 0.0202790927, 0.00810582656, -0.0212204158, 0.0378852971, -0.0324465483, 0.00955267344, 0.0477401242, -0.0100581981, -0.0324465483, 0.0185126625, -0.0188845433, 0.000884668203, 0.0209182631, 0.00343117607, 0.00993036386, 0.0225917231, -0.0267521329, 0.0163511094, 0.045532085, -0.0425338, 0.016165169, 0.0237306077, -0.0336551592, 0.0111041116, 0.02468355, -0.0101860315, 0.012353396, 0.00706572412, 0.0103080552, 0.0233471058, 0.01997694, 0.00945970323, -0.0366766863, -0.0300293285, 0.0146544054, -0.000736860326, -0.00478795776, 6.92735848e-05, 0.00751895318, 0.0235330462, 0.0119698951, 0.0289136879, -0.0235330462, 0.00849513896, 0.0547593646, -0.00779786333, -0.0369323567, 0.0068972162, -0.0109530352, 0.00443350943, 0.00419527385, -0.00747246807, 0.00627547875, -0.0232308935, 0.0116154468, 0.0172691885, -0.0289601721, -0.00989550073, -0.0206625946, -0.000138819552, 0.00873918552, -0.00530800922, 0.00450904761, 0.00520922849, 0.00546489609, 0.0156305917, 0.00256684516, 0.00523828156, 0.00549104391, 0.00321327755, -0.00322199357, -0.0159327425, -0.0284255948, -0.00450904761, 0.0117839547, -0.011720038, 0.0209066421, 0.0310055129, 0.0297504179, -0.00517727, -0.0148054818, -0.0161186829, -0.0220687669, -0.00236637844, -0.0228938758, 0.00661249505, 0.00884377677, 0.0115399081, -0.0222314652, -0.011911788, -0.0367464162, 0.0216039177, -0.0192912873, 0.00229665102, 0.00581934443, -0.00220803893, 0.0061708875, 0.00834987313, 0.00443641469, -0.0419759788, -0.0219176915, -0.0133644454, 0.0055113812, 0.0340037979, 0.0146311624, 0.0240560025, -0.0103487298, 0.0132598542, 0.0215458106, -0.00135823444, 0.0147241326, -0.019581819, 0.0224406477, -0.0294947512, -0.000511335325, 0.00957591552, 0.00598494755, 0.00348928245, -0.0164208356, 0.00518598594, 0.0187450871, 0.00928538479, 0.0212204158, 0.0290066581, 0.0145381922, -0.0147938598, -0.00104373414, -0.00914592948, -0.0198955927, 0.0117258485, -0.0230100881, 0.00411683042, 0.0218595844, -0.0156654548, 0.00865202583, 0.0158165302, -0.0374669321, -0.00133499189, 0.00441607786, -0.00919241458, 0.0148054818, -0.0274029244, -0.00513078505, -0.000438702467, 0.0134690367, 0.0133760665, -0.013643356, 0.0172691885, -0.00875080656, 0.0141314482, 0.0156886969, 0.0304709356, -3.30933435e-05, -0.0146544054, -0.00842541177, -0.0246138219, -0.00528767193, -0.0256132502, -0.00693208, -0.0157003179, 0.00212959526, 0.00320456154, 0.00474147266, -0.0127368979, -0.019965319, -0.0192912873, 0.0232076496, -0.0252413712, -0.00508139469, 0.0103952149, -0.0176410675, -0.0124928514, 0.0132249901, -0.00355319935, -0.0144452229, -0.0107322307, -0.00900066365, 0.0162116531, 0.0135852499, 0.0264964662, 0.0281002, -0.0129228374, -0.01617679, 0.0167346094, -0.00839054771, -0.00937254354, -0.030238511, -0.0023053668, 0.00529929344, 0.00837311614, -0.0354680754, 0.03144712, -0.0101744104, -0.00215283781, 0.00529057719, -0.0158978794, -0.011935031, -0.00393960625, -0.0204069279, -0.00533125177, 0.00477343146, 0.0384198762, 0.0144103589, 0.0387452692, -0.0156422127, 0.0122139407, -0.0121442135, 0.00768746156, -0.0377226, -0.000646795612, 0.0156189697, -0.0168740656, 0.0184196923, -0.0175016131, -0.00669965474, -0.0103487298, -0.0172459446, 0.00492160255, -0.00321037229, 0.00867526885, 0.00107060827, 0.00797218271, -0.0129809445, -0.00930281635, -0.0281699263, 0.0198258646, 0.00135750812, -0.0260548592, -0.0181175396, -0.0115631511, 0.0141198272, 0.0115863932, -0.0127136549, -0.0224406477, -0.0136317341, 0.0184080712, 0.0139919939, -0.00561887771, -0.0266824067, -0.0114469379, 0.00737368781, -0.0177224167, 6.3099792e-06, -0.0091982251, 0.00319584575, 0.0118304398, 0.0165602919, -0.00341083901, 0.00728652813, 0.029401781, -0.0167810954, -0.00927957334, -5.58819047e-05, 0.000801866758, 0.0324930362, 0.00932024792, 0.016188411, 0.0292390827, -0.0211042035, -0.0205231402, -0.00461945, -0.00811163709, -0.0123650171, -0.0348172858, 0.0188613, -0.0169786569, 0.00200176146, -0.0208252929, 0.00223563937, -0.00504362537, 0.0156189697, -0.0039977124, 0.0019988562, -0.0291693546, -0.0126090636, -0.0428127125, -0.0279142596, 0.00798380375, 0.0283558667, 0.0168973077, -0.000727781211, -0.0269380733, 0.00511625828, 0.012783383, -0.00864040479, 0.0152238468, 0.0146776475, 0.0307730883, -0.0222779494, -0.0073155812, -0.00938416552, -0.0201512594, -0.0245440956, -0.0046572187, -0.016165169, 0.00640912307, 0.000216990666, -0.017048385, -0.0218712054, -0.00226178719, 0.00667641219, -0.031075241, 0.0206393525, 0.0232192725, 0.0185823906, -0.0125509575, -0.0222779494, 0.00254941336, -0.02977366, 0.00457296474, -0.0202907156, 0.0124231242, 0.00742017245, -0.0106276395, -0.0139455087, 0.0210112333, -0.0282164123, -0.0232657567, 0.0182453729, 0.0043347287, 0.000948585104, 0.00274406932, 0.00339340698, 0.0248927325, 0.000527314551, -0.000576704857, 0.0368393846, -0.00981996208, 0.00478795776, 0.0109878983, -0.00708315615, -0.025148401, -0.0186172538, 0.00658344198, 0.0061244024, 0.0178037658, -0.0177921448, 0.00321037229, -0.0443699583, -0.00167781895, 0.00460492307, 0.018768331, 0.028053714, 0.0153981652, 0.0183499642, -0.00631034281, -0.0186172538, 0.000581062865, 0.00880891271, 0.00326266792, -0.00954105239, -5.7606936e-05, 0.00261042477, -0.000197742949, 0.00159065961, 0.0141082061, -0.0100465771, -0.0116909845, 0.0216039177, -0.0155492416, -0.0231146794, 0.0091052549, 0.0069785649, 0.0133412033, -0.000740128802, -0.0148635879, 0.00701923948, -0.0108310115, 0.0176643115, 0.0405117, 0.00435216073, 0.0232192725, 0.00288933492, -0.00330915302, -0.010215085, -0.00303314812, -0.00165602914, -0.0136549771, -0.0105114272, 0.00816974416, 0.0124463663, 0.0181059185, -0.0054445588, -0.00991874281, 0.00134588685, 0.0221617371, 0.00418074708, -0.0121790776, -0.0128414892, 0.00123693759, -0.0175132342, -0.00166329241, -0.0177572817, 0.0042388537, 0.0287277475, 0.01572356, 0.00772232516, 0.0197910015, -9.55008545e-06, 0.0154330293, -0.0112435659, 0.0101163043, 0.0270078015, 0.00733882375, -0.0118420608, -0.0147938598, -0.0029982843, 0.0133528244, -0.0186404958, 0.00432601292, 0.00618831953, 0.0192796662, 0.00505524687, -0.0194423627, 0.00215719594, 0.0358399563, 0.0190007556, -0.0276121069, -0.011051815, -0.0316098183, -0.00465140818, 0.0357934721, 0.000272191624, -0.0114992335, -0.00172575668, -0.0414414033, 0.0198607277, -0.0087159425, 0.016595155, -0.0256597362, -0.0155492416, 0.0160373356, -0.0318422429, -0.00997684896, -0.00422142167, -0.0136317341, -0.0198839717, 0.0100059025, -0.016583534, 0.0161186829, -0.0142244184, 0.00577867, -0.00199595094, 0.00543874828, 0.00872756448, -0.00255812914, -0.0237422287, 0.00661830604, 0.00712383073, -0.0205347613, -0.00515693286, 0.00442188838, 0.00737949833, 0.00995360687, 0.0115689617, 0.0282396544, -0.00947132427, -0.00125654845, -0.0074899, -0.0220687669, 0.00930281635, -0.0286580194, 0.00130085449, 0.00238090497, 0.0107322307, -0.000170324056, 0.0091052549, 0.00643236563, -0.0217433721, -0.0297504179, 0.0160373356, -0.00261768815, -0.00290531432, -0.0233238637, 0.00814069062, -0.0155841056, 0.0178618729, 0.0425802842, 0.0119582731, -0.0235214252, 0.0214179773, -0.01959344, 0.00557529787, 0.0047037038, 0.00789083354, -0.0121209715, 0.00595008349, 0.00741436193, -0.0113714, -0.00936673302, -0.0132133691, 0.0390474238, 0.00909944437, 0.0373507217, 0.00644979766, 0.000315226585, -0.0210460965, -0.00457587, 0.0111273536, 0.00224290253, 0.0393728204, 0.00190298085, 0.021696886, 0.00983739365, 0.0238933042, -0.000143903846, 0.0035764419, 0.00323942536, 0.0231727865, -0.00457587, -0.00751895318, -0.00418655807, -0.00497680344, -0.00361711625, -0.00214557466, -0.0208252929, 0.00779205281, -0.0340037979, 0.0019349393, 0.016641641, -0.0138874026, 0.00680424599, 0.0304476935, -0.0115224766, -0.0104416991, -0.00574961677, -0.00730396, -0.0145381922, -0.00820460729, -0.017896736, -0.0320049413, 0.00373332878, 0.0093144374, -0.015711939, -0.0137247043, -0.00456134323, 0.00902971718, -0.00959334802, 0.00326557318, -0.0128182461, -0.0281931702, 0.00272663753, 0.0563398525, 0.018256994, -0.00915174, 0.0050843, 0.000368067, 0.0142592825, -0.0277283192, -0.0108193904, 0.0058803563, -0.0165138058, 0.00209763693, 0.0034486081, 0.0167578533, -0.0159676075, 0.00384663604, 0.00719355792, 0.00323070935, 0.00567698386, -0.00664735911, -0.0122836689, -0.00273971143, 0.00443932042, 0.0039163637, 0.0358399563, 0.0375831462, 0.0206858367, 0.0116386889, -0.0193261504, -0.000132736546, -0.00705991359, 0.0229519829, 0.00112217758, 0.00461945, -0.0264732242, -0.00552881323, 0.0275656208, -0.0160721987, 0.0325860046, 0.0126439277, -0.010215085, 0.0255435221, 0.00389602641, -0.00137711898, -0.00219932292, -0.0130158076, -0.00767584052, 0.008088395, 0.00611859187, 0.025148401, 0.0266126785, 0.00430858089, 0.00773975719, -0.0195004698, 0.0240095165, 4.69389852e-05, -0.022568481, -0.0105927754, -0.00390183716, -0.00480829505, 0.0147008905, 0.00800123531, 0.0124231242, 0.00357934716, 0.00780367432, 0.00855905563, 0.00461363886, 0.00926795229, -0.00548813865, -0.02468355, -0.000942048151, 0.000399480719, -0.0121674566, 0.00859973, -0.000932605879, 0.0074899, 0.010215085, -0.0165602919, -0.0284023527, -0.0124115022, 0.00812907, 0.0101686, -0.0233703479, -0.0167578533, 0.0100523876, -0.0183964502, 0.0130041866, 0.0289834142, -0.00124492717, 0.00435216073, 0.00421851641, -0.0114004528, 0.0280304719, 0.00202209875, -0.00575252203, -0.0204766542, -0.0103835929, -0.00389021588, 0.00527605088, -5.78793079e-05, -0.00149478414, 0.0277283192, 0.012783383, -0.00231263018, -0.00162261806, 0.00992455333, -0.0160721987, -0.0125974426, -0.00823947135, 0.00300700031, 0.0339573137, 0.000496082415, 0.00179838948, 0.0183615871, -0.0107729053, -0.0162465181, 0.000498624577, -0.0113074835, -0.0207671858, -0.0173970219, -0.0111331642, -0.0117781442, 0.0237422287, 0.0115631511, 0.0150611494, -0.0132598542, 0.00157903833, -0.0175248552, -0.0112203239, -0.00103138655, -0.00778624229, 0.0160838198, 0.00335563789, 0.00858810917, -0.0175945833, -0.000723423262, 0.0012166003, 0.00419236859, -0.0135155218, -0.0075712488, 0.0305871479, 0.0107147992, -0.00449161604, 0.0116212573, -0.00139309815, -0.0116793634, -0.0111331642, 0.00382339349, 0.0108891176, 0.000693643757, -0.0103603508, -0.00927957334, 0.00190879148, 0.0286115352, 0.000934058509, -0.00638588052, -0.0123998811, 0.0126323067, 0.0040093339, 0.001008144, -0.0130739138, -0.000716523151, -0.0062173726, -0.0278212894, -0.00126744329, -0.0254040677, 0.02043017, -0.0216271598, -0.00395413255, -0.000308508053, -0.0111041116, 0.0036577906, 0.000816393294, 0.00378271914, 0.00318422448, -0.0135620069, -0.0165370479, -0.0357934721, 0.000528404, 0.00132845493, 0.000166147656, -0.0218828265, 0.0106276395, 0.00276585924, -0.0072690961, -0.00112580927, -0.0106915561, 0.00865783636, 0.0191053469, -0.000541114772, -0.0114643704, 0.0138292955, 0.00634520641, 0.000169416133, -0.01830348, -0.0138409175, 0.00332367956, 0.00052041444, 0.0244743675, -0.0262175556, 0.00239252625, -0.0264267381, 0.00830919854, 0.0205812454, -0.0192099381, -0.00488383323, -0.0129577015, 0.00659506349, -0.00102557591, -0.00365488534, -0.0150495283, -0.012330154, 0.00802447833, 0.0239630323, -0.0164905638, -0.0394890308, 0.0172459446, 0.0109530352, 0.0158862583, -0.00100378611, -0.000538572611, 0.0119466521, -0.0424640737, 0.0218712054, -0.0275423788, -0.00187828566, 0.0254040677, 0.00647885073, 0.00388440513, -0.00548523339, -0.00761773391, -0.017885115, -0.00427662255, 0.00843122229, 0.0385360867, -0.00635101693, 0.0071528838, -0.00327428919, 0.00877404865, -0.0100349551, 0.00586292427, 0.0129112164, 0.00963402167, 0.0214644615, 0.000758287031, 0.0142709035, 0.00618250854, -0.00915174, 0.00511335302, 0.0208252929, 0.0062173726, 0.0149333151, -0.0181988887, -0.0126904128, -0.00751314266, 0.00615345547, -0.0324233063, -0.000725965423, 0.013190127, -0.00972699188, -0.010011713, -0.00279200706, -0.00247096969, 0.000862152, -0.00454681693, -0.0144452229, 0.00230391417, 0.0363512933, 0.00652533583, 0.0250786729, -0.0101686, -0.0222314652, -0.00643236563, 0.00502909906, -0.000849078118, 0.0037856244, -0.0117549011, 0.014026857, 0.00510173198, -0.00938416552, -0.0160140917, -0.0242419429, -0.0172343235, -0.00206132047, 0.0144452229, 0.00534287281, -0.00835568365, 0.00928538479, 0.0194539838, -0.00687978417, 0.00929700583, 0.0189775135, -0.015770046, -0.0281931702, -0.0233471058, -0.0065079038, -0.00706572412, 0.0110053308, 0.0100814402, 0.00125654845, -0.0131552629, -9.8962264e-06, 0.0264964662, -0.0128995953, 0.0143522527, -0.00326266792, 0.0050843, 0.0030447694, -0.00660087401, -0.0205231402, -0.00951780938, -0.00830919854, -0.0122720478, 0.0155143784, 0.00773394667, -0.000496445573, -0.00551719172, 0.00130158081, -0.0238933042, -0.00357353664, -0.00573799573, 0.0103080552, -0.0139571298, -0.0237189848, 0.00538645266, 0.0100465771, 0.0135852499, -0.00722261146, -0.0160954408, 0.0126787918, -0.00624642568, 0.00690883724, -0.00414588349, 0.0141082061, -0.00480829505, -0.0152354678, -0.00767584052, -0.00337597518, -0.0262872837, -0.000674759212, 0.0337481312, -0.0243581552, 0.00518017542, -0.0147473756, -0.00274261669, -0.00534577807, -0.000379869831, 0.015316817, 0.0158165302, -0.014456844, 0.0263570119, -0.00345732388, -0.00622899365, -0.0025770138, -0.0272867121, 0.0185010415, 0.0146544054, -0.00398318563, 0.0180710554, 0.00584258698, 0.00519179646, 0.0154562723, -0.00204679393, -0.00508720521, 0.0306103919, -0.0117955757, -0.00521794427, 0.0261013433, -0.00876823813, 0.00581353391, -0.0148635879, 0.00981996208, 0.0292855669, 0.00613021292, -0.0028370393, 0.000636990124, 0.00644979766, -0.00381758297, -0.0291228704, -0.00656019943, 0.0104591316, 0.00929119531, -0.0309125446, 0.0183383431, -0.0162581392, 0.0167810954, -0.00413426198, -0.00226033456, 0.0297504179, 0.00312030758, -0.0249857027, 0.01914021, 0.0146195414, 0.0113888318, -0.0148054818, 0.00676357141, -0.0332367942, 0.00262495154, -0.0115863932, 0.00247242255, -0.0176178254, -0.0110866791, 0.0323070958, -0.010453321, 0.0168043375, -0.0235795304, -0.0157816671, 0.0153865442, -0.00848351792, -0.0128066251, -0.000750297389, 0.0246138219, 0.0264499802, 0.000247314863, -0.00173737796, -0.0242419429, -0.0201977454, 0.0010292076, -0.000131556255, -0.00280943885, 0.0142592825, 0.0280769579, 0.00791407563, -0.0335157067, 0.0247067921, -0.0251716431, -0.00307672773, -0.0123185329, -0.00522956578, -0.0113307256, -0.0162348952, -0.0108193904, -0.00256829779, 0.00411683042, 0.00321618281, -0.000659506361, 0.00822204, -0.0141314482, -0.00239107362, -0.0159443654, 0.0189426485, 0.0215922948, 0.0340735242, -0.0155027565, -0.0232425146, 0.00211506872, -0.00345151336, 0.00865202583, 0.0189194065, -0.00798380375, -0.0294250231, -0.014038479, -0.0110343834, 0.0224987529, 0.0183383431, 0.00669384422, -0.00189717021, 0.00848932844, 0.0145381922, 0.0327487029, -0.00188264367, 0.0143987378, -0.00136549771, 0.00824528188, 0.00794312917, -0.00895998906, 0.000271465309, -0.0242884271, 0.00993617438, -0.00662411656, 0.00927957334, -0.0147241326, 0.0162697602, 0.0106683141, -0.0223011915, 0.0125625785, 0.0194075, 0.0203255787, -0.0100523876, 0.00513659557, 0.00514531136, 0.0167694744, 0.000367703848, 0.00390183716, -0.018256994, -0.00215138518, -0.00240705279, 0.00261478289, 0.0224638898, -0.00685654161, -0.00551719172, 0.0385825746, 0.000960932695, 0.00361711625, 0.0182802379, -0.00069582276, 0.00581643917, 0.00486349594, 0.000137185314, 0.00981415156, 0.00156741706, 0.0181640256, -0.00822785, -0.00540969521, -0.0109530352, 0.00955267344, 0.005961705, -0.0272867121, 0.00467174547, -0.00822204, 0.00876823813, -0.00202064612, -0.014456844, 0.00400352292, -0.0128414892, 0.00386697333, -0.0083440626, 0.0130622927, 0.0199188348, 0.0257759485, -0.00326266792, -0.00860554073, -0.02552028, 0.022963604, 0.0198607277, -0.000947132474, -0.00364616932, -0.0132947182, -0.00705410307, -0.01192341, -0.00420108438, 0.00957591552, 0.021731751, 0.00284575531, 0.0192564223, -0.0084196, 0.00843703281, -0.0284953229, 0.0251251571, -0.00578738609, 0.02339359, 0.00917498209, -0.00427081203, 0.0210577175, 0.0157932881, 0.00880310219, -0.0270542856, -0.0017780523, 0.0201745015, -0.0115399081, -0.00847770739, -0.0095875375, -0.00511044776, -0.00461654458, 0.00941902865, -0.00893093646, -0.0214295983, -0.0109704668, 0.0125625785, 0.00154272188, 0.00764097646, -0.0108193904, -0.0178618729, 0.0282861404, -0.00664735911, 0.0273099542, 0.00840216875, 0.0143057676, 0.0156654548, -0.00309706503, 0.00783272739, 0.00641493406, 0.0154330293, 0.0156886969, -0.0014504781, 0.00178676832, -0.0246370658, 0.0164440796, -0.00415169401, -0.0175016131, -0.00384663604, -0.0102790017, 0.0033178688, -0.000560362474, -0.00958172604, 0.0305174217, 0.00906458, -0.0133063393, -0.0185475256, 0.00897742063, 0.0184313133, -0.0169437919, 0.0207904298, 0.00696694339, -0.0310055129, 0.00382048823, -0.00276731187, 0.015758425, 0.0231146794, -0.0143987378, -0.0160489567, 0.0226033442, 0.0149565581, 0.0033817857, -0.017896736, -0.0169670358, 0.00527895615, 0.0167927165, -0.00137857161, -0.0194191206, 0.00790245458, -0.000738313, 0.0139919939, 0.0120861074, -0.0247300342, 0.0193610135, -0.00889026187, -0.00396575406, -0.0146195414, -0.0103254868, -0.0104823736, 0.00229665102, 0.0158397742, 0.000872320612, 0.0201396383, 0.00252326555, 0.00472404109, -0.0241489727, -0.0163859725, -0.00305639068, 0.00590069313, -0.00325104664, -0.0122371837, -0.00620575109, -0.00578738609, 0.00741436193, 0.0154678933, 0.000205369404, 0.0114411274, 0.00679262495, 0.000158521216, 0.00552009698, -0.000467029255, 0.00650209328, -0.00875661708, -0.0120977284, -0.00459911255, -0.00615926646, 0.00245644315, 0.0219409335, 0.00183034793, -0.00544746406, -0.0208252929, 0.00197561365, 0.0110576265, 0.0217549931, -0.0163859725, -0.0164208356, -0.00769908261, 0.00310287555, -0.0163162444, 0.00893093646, 0.0131785059, -0.0167810954, 0.0197445154, 0.0154446503, -0.0088960724, 0.00303895865, -0.00798380375, -0.00589778787, 0.0206742156, 0.023800334, 0.00865202583, 0.00593265193, 0.0377458446, -0.0172575675, -0.00221675471, -0.00800704584, 0.0231379233, 0.0203372, -0.0198374856, -0.00427371729, 0.0107496632, 0.0229984671, -0.022138495, -0.014468465, -0.00514821708, -0.000885394518, -0.00545037, 0.0404884592, -0.00311449682, 0.012341775, -0.00834987313, -0.0271472558, -0.00289514568, 0.0184545554, 0.0164208356, -0.000396938558, 0.00083237252, 0.015316817, 0.0245440956, 0.0114411274, -0.0415576138, 0.0149216941, 0.00361421099, -0.00788502302, 1.55593189e-05, 0.0106508825, -0.0113074835, 0.0189891346, 0.0251948852, -0.00903552771, 0.0188729223, 0.0180478115, 0.00463688141, 0.00616507698, 0.0044480362, -0.0347708, 0.0229171198, -0.0242884271, -0.00427952781, -0.0238933042, -0.0104649421, -0.017420264, -0.0100872507, 0.025985131, 0.0164557, -0.0213831123, 0.0215574317, 0.00363164279, 0.0159095, 0.00237218919, 0.0197445154, 0.00445094146, 0.0133063393, -0.0395820029, -1.5877089e-05, -0.00287045049, 0.00149914215, -0.0141779333, -0.0125625785, 0.0184429344, 0.000997249153, -0.00527895615, 0.0098432051, -0.00519760745, -0.00840797927, 0.0150843915, 0.0132830972, -0.00402676547, -0.0180245694, -0.00956429448, 0.0136665981, 0.000979090924, -0.00142868829, -0.00268596294, 0.0147008905, 0.0010887665, -0.028472079, 0.0154911354, 0.0381642096, 0.0118420608, 0.00992455333, 0.0217666142, 0.0127020339, 0.00845446438, -0.0267521329, -0.0135620069, 0.00316679245, -0.0146079203, 0.017885115, -0.0267288908, 0.00323942536, -0.00876242761, 0.00127470668, 0.00948875677, 0.0185475256, -0.00790826511, 0.00967469625, 0.0168043375, 0.0114759915, -0.00668803323, -0.0127020339, 0.00414878875, 0.0103545403, 0.0132598542, 0.0308893, -0.00375657133, -0.0113714, 0.0201047752, 0.00544165354, -0.020418549, -0.00681586703, -0.00371299172, -0.00120497914, 0.00251600216, 0.00789664406, -0.00522375526, 0.00575252203, 0.0229171198, 0.0161070619, -0.0144219799, 0.00712964125, -0.000926795241, 0.00496227667, 0.0124347452, -0.0177921448, 0.00985482614, 0.00569732115, -0.00865202583, -0.0152587108, 0.0001982877, -0.00872756448, 0.0117490906, 0.0226265881, 0.0179432202, -0.015758425, -0.0259154029, 0.00220222818, 0.0103022447, 0.00248549646, 0.0032568574, 0.00176062039, 0.000331932155, 0.0173040517, -0.00779205281, -0.00793731865, -0.00833825208, -0.0118711144, 0.0248927325, 0.00662992708, -0.02384682, -0.0143754948, -0.0240792446, -0.0154214082, 0.00440445635, -0.020860156, -0.0260781012, -0.00674614, 0.0198955927, 0.0150727704, -0.0171297323, 0.0188031942, 0.00295906258, -0.00571475318, -0.00643817661, 0.0167462323, -0.0145265711, 0.0139803719, 0.00827433541, -0.00269613159, -0.0130158076, -0.0141663123, -0.0121093495, -0.0171762183, 0.000334655895, -0.0559679754, 0.00421561114, -0.0176759325, -0.0115922038, -0.0288439598, 9.9507015e-05, -0.0175829623, 0.0260316152, -0.0141198272, -0.0422781333, 0.0142825246, 0.00545908557, -0.00668222271, -0.00107787154, -0.0199188348, -0.00177659967, 0.0324930362, -0.0103196763, 0.0280769579, -0.00272809016, 0.00969212875, 0.000546562253, 0.0022240181, 0.00193784456, 0.00329462648, -0.0118071968, -0.000440155098, -0.0110285729, 0.0228241496, 0.00193784456, -0.0113888318, -0.0135271428, 0.0228357706, 0.00306510646, 0.00285447133, -0.00107206102, -0.00941321813, -0.0138525385, -0.000753202708, -0.0307498462, -0.0126904128, 0.00832663104, -0.0122371837, 0.00952362, -0.0326092467, 0.0216039177, -0.00523247104, -0.00201193, 0.0104068359, -0.00166619779, 0.00591231463, -0.0197793804, 0.0126671698, 0.00212378474, -0.0247997623, -0.00184632721, -0.019175075, 0.0292855669, 0.0165254269, -0.00513950083, -0.00136549771, 0.02552028, -0.000262023037, 0.0257062204, -0.00449742656, -0.0184313133, -0.00498842448, 0.0303082392, -0.019186696, -0.0048664012, -0.0202326085, 0.0206974596, 0.03151685, -0.0106392605, 0.0213598702, -0.0317725167, -0.0216155387, -0.0130506717, 0.00133499189, 0.02384682, -0.0126671698, -0.00504072, -0.00415459927, -0.00206858385, 0.0101046832, -0.0254505537, -0.00438993, 0.00827433541, -0.00439574057, 0.00796637125, 0.00192912866, 0.0198955927, 0.00260751951, -0.00314355013, 0.00610697037, 0.0115922038, -0.0130506717, -0.00189426495, 0.00222111284, -0.0103487298, -0.0101104937, 0.00955267344, -0.0533183292, 0.00590359839, 0.0323303379, 0.0175945833, 0.00416331552, 0.0169437919, -0.00636263844, -0.00185213785, 0.0156189697, -0.0166300181, -0.00504362537, 0.00493322359, 0.00941902865, 0.00785596948, -0.00628128927, -0.0292390827, -0.00173447258, -0.00999428146, 0.031051999, 0.0117142275, -0.00287045049, 0.00783272739, 0.00500004599, -0.000420181081, 0.00226033456, 0.00179112621, -0.00278038578, 0.0190704837, -0.00408777734, -0.00761773391, 0.00438411906, 0.0329114, 0.0116909845, -0.00364326406, -0.00200466695, -0.00761773391, -0.0162232742, -0.00329753174, -0.00141706702, 0.00366650661, -0.00569151063, -0.0162465181, -0.0124579873, -0.0190239977, -0.00243174797, 0.0167229883, -0.0141663123, 0.0121906986, -0.00601400062, 0.015293574, 0.00150931079, 0.0212087948, 0.00108586124, 0.00714707328, -0.0277980473, 0.0117316591, 0.0135503858, -0.0138990236, 0.0120977284, 0.00633939588, 0.00948875677, -0.0368161425, 0.0121558346, -0.00203807792, -0.000361530052, 0.00167636632, -0.0155724846, 0.0102731911, 0.0100930622, 0.00604886422, -0.00110765104, -0.0240327604, -0.0062987213, -0.00991293229, -0.00978509802, 0.00103066023, -0.0189542696, -0.00837311614, -0.00576123828, 0.00297794701, -0.0137130832, 0.00262495154, -0.00223273411, -0.0196283031, -0.0103545403, 0.0261245854, -0.000444149919, -0.00139818247, -0.00101686, -0.0166183971, 0.0140152359, 0.0304244515, -0.0233703479, 0.0100175235, -0.000220259142, 0.0100872507, 0.00868107937, -0.00307091721, 0.0271472558, -0.0167578533, -0.00223418674, 0.00308834901, 0.0334459767, -0.00305058, 0.0250554308, -0.0275888648, -0.0440213233, -0.0296574477, 0.00469789328, 0.00334111135, 0.0200350471, 0.00524699735, 0.005639215, -0.0113946423, 0.010226706, 0.0438353829, -0.00022134863, -0.00290240906, 0.00279781758, 0.0132366121, 0.000822203932, 0.00235039927, 0.00699599693, -0.015293574, 0.00258427695, 0.0129809445, 0.00117447332, -0.0305639058, -0.00358225242, -0.00733882375, 0.0122023197, 0.0108193904, -0.00845446438, 0.00408777734, -0.00590650411, -0.0246370658, -0.00867526885, 0.000250946527, -0.00872756448, 0.0123882601, -0.0125160934, -0.0009464061, 0.00323942536, -0.0177689027, -0.00340793352, -0.0153749231, -0.0151192555, -0.00140036142, -0.00415750453, -0.005961705, -0.0395122729, -0.0154911354, 0.00143522525, -0.00860554073, 0.0163162444, -0.0158049092, 0.00107641891, 0.0155608635, 0.00714126229, -0.0232657567, -0.0160373356, 0.00639750203, -0.000857794, 0.0107729053, -0.00951780938, 0.0127136549, -0.0123185329, -0.00210199482, 0.00271211076, -0.0109704668, 0.00672870781, 0.00429114932, 0.0211855508, -0.00583968172, -0.0125742005, -0.0232076496, -0.00767002953, 0.000459766, -0.0106508825, 0.0194656048, 0.0189775135, -0.00445094146, -0.00584258698, 0.00836149417, 0.00950037781, -0.0243116692, 0.0143057676, -0.0129460804, -0.00430277037, 0.0103719719, 0.0153400591, 0.0243581552, 0.00570603739, 0.0141895553, -0.0164440796, -0.0164789427, 0.00824528188, 0.00318422448, 0.0031726032, -0.000359169469, -0.010191842, -0.0111738387, -0.00205841521, -0.0214295983, 0.0105927754, 0.00277748052, 0.0159908496, 0.0241954569, 0.00947713479, 0.00361711625, -0.0043202024, -0.00828014594, 0.011290051, 0.0210577175, -0.0181407817, -0.00503490958, 0.00905295927, 0.0126904128, -0.00526442938, -0.00326266792, -0.00158339622, 0.0306801181, 0.0156770758, -0.00886701886, 0.00537773687, 0.0328184292, -0.00115050445, 0.0222430862, -0.0450904779, -0.000210998449, 0.0130158076, -0.0179432202, 0.0170367621, -0.00955267344, 0.0160257127, 0.0118071968, 0.00954686292, 0.00514240609, 0.00428533833, 0.0097328024, 0.0142709035, 0.0339340717, -0.00387859461, -0.00132627599, 0.00176062039, -0.00897742063, 0.0198258646, 0.00340793352, -0.00908782333, 0.010430078, -0.0185359046, 0.0133295823, -0.0142360395, 0.0162465181, 0.0107496632, 0.00124420086, 0.00409649312, -0.00934349094, -0.000643163919, 0.0150960125, 0.0137711894, -0.00477924198, -0.00800123531, -0.0160605777, 0.0064614187, -0.0120744864, 0.0199304558, -0.0154214082, -0.000479013688, 0.000280907581, -0.00182163203, 0.000568715273, -0.00280508096, -0.00951199885, -0.000387859443, -0.0133993095, 0.0103312973, 0.00124347454, -0.002398337, -0.0274261665, 0.00166183978, -0.0271705, -0.000952943054, 0.0289136879, 0.000728144369, 0.0108542545, 0.00339921773, -0.00420398964, 0.0134457946, 0.0124928514, 0.0109414132, -0.00231263018, -0.00132990757, -0.00152964797, 0.00274406932, -0.0140152359, -0.010836822, 0.00991293229, 0.000963838, -0.020860156, 0.00557529787, 0.0208252929, 0.0143057676, 0.00969212875, -0.0140849631, -0.0068972162, -0.00509301573, -0.0135620069, -0.00125509582, -0.00807677396, -0.0409533083, 0.00600819, -0.0175364763, -0.00851838104, -0.00550557068, -0.000246043812, -0.00199159281, 0.00424466422, -0.0113249151, -0.0108658755, 0.00801285636, -0.0170367621, 0.00698437542, 0.00837892666, 0.0106276395, -0.0312146973, -0.0139338868, 0.0254970379, -0.014061721, 0.0131203989, 0.00316679245, 0.00217462773, -0.00864621531, 0.0115457186, -0.00670546526, -0.0110343834, 0.00782691687, -0.0401398204, 0.000375875039, -0.00691464776, 0.0153981652, 0.00297504175, -0.0185707696, -0.0026917737, 0.00983739365, -0.00730977068, 0.00879729167, 0.01276014, 0.0142825246, -0.00341374427, -0.011075058, -0.00377981388, 0.00298666302, 0.012330154, 0.00327428919, 0.00462816563, -0.0227776635, -0.00667641219, 0.0235911515, 0.0108077694, 0.0327022187, -0.0147473756, 0.00557239261, -0.0261478275, -0.00210344745, -0.0142476615, 0.00934349094, 0.0201512594, -0.000226796095, 0.00511916354, 0.00691464776, -0.00712383073, 0.00630453182, 0.00231117755, 0.017885115, -0.00402386, 0.00553752901, 0.0181407817, -0.00294017815, -0.00220513344, 0.0146195414, 0.0011824629, -0.0168275796, -0.00341083901, 0.00232715672, 0.0175597202, -0.0140849631, -0.0183848292, -0.0201977454, -0.0150262853, -0.0104939947, 0.0132366121, 0.00915755052, -0.00216736435, 0.0214877035, -0.00738530885, -0.0164557, 0.0102790017, -0.00331496354, 0.00686816312, 0.00853000302, -0.010226706, 0.0325162783, -0.00865783636, 0.0393495746, -0.00767584052, -0.00986063667, -0.0252181273, -0.00611859187, -0.00455262745, 0.0244743675, -0.0118071968, -0.00081276166, 0.0103487298, 0.0271937419, -0.00937254354, 0.0107787158, 0.00857648812, 0.00819879677, -0.00796637125, 0.00157613296, 0.00902971718, -0.00948294532, 0.0129228374, -0.016188411, -0.00884958729, -0.0167578533, 0.0115747722, 0.00675195036, 0.0120861074, 0.0180710554, 0.00745503651, 0.0262407977, -0.0171994604, 0.0305639058, 0.0078792125, -0.0108077694, -0.00493322359, 0.0178618729, -0.0142244184, 0.0107729053, -0.019186696, -0.0101279253, -0.00467465073, -0.0247997623, -0.0147706177, -0.0101395464, 0.00428824406, 0.00797799323, -0.00166474504, -0.00326557318, -0.021673644, 0.00699018594, 0.0147938598, -0.00619994057, -0.00184487458, -0.0151541196, 0.0198026225, -0.0125277154, -0.00346022937, 0.00484896963, -0.02468355, 0.0103777824, 0.00836730469, -0.0218712054, 0.0298433881, 0.0218595844, -0.0143638737, 0.0119931372, -0.0183732081, -0.0143406317, 0.0172691885, 0.00172430405, 0.0229171198, -0.000407470332, 0.00356191536, 0.00654857839, -0.0176759325, -0.00147517328, 0.00136840297, -0.00532253552, 0.0070715351, 0.0117258485, -0.00949456729, 0.00794894, 0.011900167, 0.00164876587, 0.0103080552, 0.00453229, 0.00218770164, 0.0173272938, -0.00622318313, -0.0120396223, 0.0144452229, 0.00772813614, -0.0194539838, 0.0282628965, 0.00575252203, 0.00814650115, 0.00325976266, -0.00667641219, 0.0138176745, 0.0126090636, -0.00288788229, 0.0100059025, 0.00906458, -0.02172013, 0.00237509445, 0.0231030583, -0.0155841056, -0.00153255323, -0.0133644454, 0.031865485, 0.00655438891, 0.0221152529, 0.00741436193, 0.0101279253, 0.000988533138, 0.015770046, -0.00308253849, -0.00267434167, -0.0288207177, 0.0026917737, 0.00724585354, -0.00585711375, 0.00352705154, 0.00838473719, 0.00165457651, 0.00322780409, -0.00728652813, 0.0165719129, 0.0168508235, -0.00730396, 0.00872175302, -0.00966888573, 0.00121078966, -0.0148054818, 0.000593410456, -0.0107670948, -0.00735625578, -0.00588907208, 0.0132482331, 0.0256364923, -0.0109646562, 0.0190472398, -0.000600673724, 0.00269032107, -0.00687978417, -0.00577576458, -0.025566766, 0.00446837349, 0.00159937551, -0.0155027565, 0.00462526036, 0.00523828156, 0.000672217109, 0.0217666142, 0.00806515198, -0.0288672019, -0.014026857, -0.0103835929, -0.00702505, 0.0204650331, 0.000212087936, -0.000458313327, 0.00617669802, -0.00832663104, -0.0166300181, 0.00468627177, 0.00527314516, -0.0157932881, 0.0137130832, -0.0120163802, -0.00556077156, 0.00111273536, 0.0169554148, 0.00767002953, -0.0296109635, 0.0199188348, 0.0035299568, -0.00893674698, 0.0125160934, 0.00443060417, 0.00339921773]