Error replacing content of timetable with cell array

3 views (last 30 days)
I am able to convert arrays within a timetable to single string arrays such that the content of a single cell can be written to a CSV file. The code places that converted cell array back into the timetable for future export to CSV.
taskNames = string(fieldnames(T));
%Convert walkway sensor data to string array to print to a single
%cell in CSV
for i = 1:length(taskNames)
ind = contains(T.(taskNames(i)).Properties.VariableNames, {'Walkway_X','Walkway_Y','WalkwayPressureLevel','WalkwayFoot'},'IgnoreCase',true);
temp = cellfun(@(x) replace(join(string(x))," ","|"), table2cell(timetable2table(T.(taskNames(i))(:,ind))), 'UniformOutput', false);
T.(taskNames(i))(:,ind) = temp(:,2:end);
end
However, when I try to replace some of the converted arrays back into the timetables, I get an error.
Unable to perform assignment because value of type 'string' is not convertible to 'cell'.
Caused by:
Error using cell
Conversion to cell from string is not possible.
Many thanks in advance for any insight into this error!

Accepted Answer

Stephen23
Stephen23 on 13 Sep 2023
Edited: Stephen23 on 13 Sep 2023
Note that storing lots of scalar string arrays inside a cell array is inefficient and misses out on the benefits of using string arrays. The documentation explains that cell arrays of (scalar) string arrays should be avoided:
This compact and efficient approach uses STRUCTFUN and CONVERTVARS (as Walter Roberson mentioned):
S = load('Example.mat');
T = S.T;
First lets take a look at the data:
T.HurriedPace
ans = 3746×74 timetable
Time GeneralEvent ClinicalEvent L Foot Contact R Foot Contact L Foot Pressure R Foot Pressure Walkway_X Walkway_Y WalkwayPressureLevel WalkwayFoot LowerBack_Acc_X LowerBack_Acc_Y LowerBack_Acc_Z LowerBack_FreeAcc_E LowerBack_FreeAcc_N LowerBack_FreeAcc_U LowerBack_Gyr_X LowerBack_Gyr_Y LowerBack_Gyr_Z LowerBack_Mag_X LowerBack_Mag_Y LowerBack_Mag_Z LowerBack_VelInc_X LowerBack_VelInc_Y LowerBack_VelInc_Z LowerBack_OriInc_q0 LowerBack_OriInc_q1 LowerBack_OriInc_q2 LowerBack_OriInc_q3 LowerBack_Roll LowerBack_Pitch LowerBack_Yaw R_Wrist_Acc_X R_Wrist_Acc_Y R_Wrist_Acc_Z R_Wrist_FreeAcc_E R_Wrist_FreeAcc_N R_Wrist_FreeAcc_U R_Wrist_Gyr_X R_Wrist_Gyr_Y R_Wrist_Gyr_Z R_Wrist_Mag_X R_Wrist_Mag_Y R_Wrist_Mag_Z R_Wrist_VelInc_X R_Wrist_VelInc_Y R_Wrist_VelInc_Z R_Wrist_OriInc_q0 R_Wrist_OriInc_q1 R_Wrist_OriInc_q2 R_Wrist_OriInc_q3 R_Wrist_Roll R_Wrist_Pitch R_Wrist_Yaw L_Wrist_Acc_X L_Wrist_Acc_Y L_Wrist_Acc_Z L_Wrist_FreeAcc_E L_Wrist_FreeAcc_N L_Wrist_FreeAcc_U L_Wrist_Gyr_X L_Wrist_Gyr_Y L_Wrist_Gyr_Z L_Wrist_Mag_X L_Wrist_Mag_Y L_Wrist_Mag_Z L_Wrist_VelInc_X L_Wrist_VelInc_Y L_Wrist_VelInc_Z L_Wrist_OriInc_q0 L_Wrist_OriInc_q1 L_Wrist_OriInc_q2 L_Wrist_OriInc_q3 L_Wrist_Roll ________ ____________ _____________ ______________ ______________ _______________ _______________ ____________ ____________ ____________________ ____________ _______________ _______________ _______________ ___________________ ___________________ ___________________ _______________ _______________ _______________ _______________ _______________ _______________ __________________ __________________ __________________ ___________________ ___________________ ___________________ ___________________ ______________ _______________ _____________ _____________ _____________ _____________ _________________ _________________ _________________ _____________ _____________ _____________ _____________ _____________ _____________ ________________ ________________ ________________ _________________ _________________ _________________ _________________ ____________ _____________ ___________ _____________ _____________ _____________ _________________ _________________ _________________ _____________ _____________ _____________ _____________ _____________ _____________ ________________ ________________ ________________ _________________ _________________ _________________ _________________ ____________ 0 sec <undefined> <undefined> 0 0 0 0 {0×1 string} {0×1 string} {0×1 string} {0×1 string} 9.8702 0.12365 -0.32195 -0.081667 0.026105 0.063206 -0.012692 -0.002854 0.002509 -0.46191 -0.082275 -0.52563 0.098702 0.001238 -0.003218 1 -6.3e-05 -1.4e-05 1.3e-05 171.02 -87.77 -140.81 10.172 0.54028 1.968 -1.5823 -1.597 0.31519 0.071557 0.062937 -0.070644 -0.35352 -0.55933 0.13037 0.10172 0.00536 0.01965 1 0.000358 0.000315 -0.000353 -60.962 -81.373 163.12 9.509 2.2391 1.6931 0.038067 -0.10986 0.10136 -0.014936 0.009074 0.007665 -0.47046 0.12378 0.49731 0.09509 0.022396 0.016925 1 -7.5e-05 4.5e-05 3.8e-05 50.978 0.01 sec Standing unlabeled 0 0 0 0 {0×1 string} {0×1 string} {0×1 string} {0×1 string} 9.8871 0.12026 -0.36081 -0.047252 0.042416 0.081553 -0.022446 -0.001962 0.005983 -0.46631 -0.077393 -0.52124 0.098871 0.001205 -0.003607 1 -0.000112 -1e-05 3e-05 171.09 -87.77 -140.89 9.9566 -0.1731 1.4313 -0.96718 -0.92851 0.158 -0.21435 -0.04178 -0.030601 -0.35938 -0.55518 0.13184 0.099563 -0.001731 0.014336 1 -0.001072 -0.000209 -0.000153 -61.16 -81.398 163.2 9.4807 2.2186 1.6936 0.034757 -0.096292 0.069775 -0.018516 0.009444 0.001655 -0.47363 0.13086 0.5022 0.094807 0.022189 0.016929 1 -9.3e-05 4.7e-05 8e-06 50.954 0.02 sec Standing unlabeled 0 0 0 0 {0×1 string} {0×1 string} {0×1 string} {0×1 string} 9.8446 0.10017 -0.34707 -0.047992 0.019515 0.038394 -0.020761 0.000748 0.005439 -0.45825 -0.083496 -0.51611 0.098446 0.001004 -0.003471 1 -0.000104 4e-06 2.7e-05 171.14 -87.77 -140.96 9.9099 -0.47266 0.84123 -0.7917 -0.29916 0.10809 -0.37333 -0.095513 0.027284 -0.34741 -0.56226 0.13648 0.099096 -0.004697 0.008468 1 -0.001867 -0.000478 0.000136 -61.734 -81.409 163.57 9.489 2.2357 1.7096 0.053936 -0.10154 0.084251 -0.013105 0.00884 0.002025 -0.46338 0.12378 0.5044 0.094891 0.022359 0.01709 1 -6.6e-05 4.4e-05 1e-05 50.933 0.03 sec Standing unlabeled 0 0 0 0 {0×1 string} {0×1 string} {0×1 string} {0×1 string} 9.8871 0.11938 -0.36086 -0.047219 0.042242 0.081554 -0.022857 -0.001645 0.004204 -0.45972 -0.080811 -0.52783 0.098871 0.001195 -0.003608 1 -0.000114 -8e-06 2.1e-05 171.18 -87.769 -141.01 9.6463 -0.63436 0.48729 -0.6727 0.056009 -0.15685 -0.4938 -0.10287 0.064255 -0.35278 -0.55884 0.12231 0.096462 -0.0063 0.004938 1 -0.002469 -0.000514 0.000321 -62.468 -81.402 164.03 9.466 2.2676 1.7264 0.089614 -0.12097 0.071932 -0.019063 0.01206 -0.004437 -0.46875 0.12524 0.49463 0.094662 0.022676 0.017256 1 -9.5e-05 6e-05 -2.2e-05 50.912 0.04 sec Standing unlabeled 0 0 0 0 {0×1 string} {0×1 string} {0×1 string} {0×1 string} 9.8768 0.12701 -0.38143 -0.033158 0.059716 0.072029 -0.016256 0.001485 0.005793 -0.45801 -0.081787 -0.52441 0.098768 0.001273 -0.003815 1 -8.1e-05 7e-06 2.9e-05 171.24 -87.771 -141.07 9.4329 -0.89863 0.49501 -0.39084 0.077258 -0.33252 -0.59228 -0.11682 0.081855 -0.35303 -0.56323 0.12476 0.09433 -0.008933 0.005032 0.99999 -0.002961 -0.000584 0.000409 -63.335 -81.389 164.56 9.4404 2.2137 1.7257 0.06625 -0.079719 0.035565 -0.026535 0.009261 -0.008005 -0.46802 0.12622 0.49951 0.094405 0.022135 0.01725 1 -0.000133 4.6e-05 -4e-05 50.895 0.05 sec Standing unlabeled 0 0 0 0 {0×1 string} {0×1 string} {0×1 string} {0×1 string} 9.8932 0.097555 -0.37161 -0.027198 0.029516 0.087849 -0.023893 0.00676 0.006671 -0.45557 -0.079346 -0.521 0.098931 0.000978 -0.00372 1 -0.000119 3.4e-05 3.3e-05 171.3 -87.775 -141.14 9.6086 -1.382 0.74252 0.092327 -0.082605 -0.077651 -0.64219 -0.11694 0.077491 -0.34668 -0.56103 0.12183 0.096087 -0.013759 0.007526 0.99999 -0.003211 -0.000585 0.000387 -64.22 -81.377 165.09 9.3804 2.2074 1.7694 0.11262 -0.055083 -0.015752 -0.03198 0.008933 -0.014908 -0.46265 0.12695 0.5 0.093807 0.02207 0.017686 1 -0.00016 4.5e-05 -7.5e-05 50.884 0.06 sec Standing unlabeled 0 0 0 0 {0×1 string} {0×1 string} {0×1 string} {0×1 string} 9.8457 0.038774 -0.34085 -0.022387 -0.034906 0.038927 -0.022257 0.007608 0.004176 -0.4668 -0.081543 -0.53076 0.098457 0.000389 -0.003412 1 -0.000111 3.8e-05 2.1e-05 171.32 -87.779 -141.17 9.9264 -2.0868 1.0312 0.77615 -0.23916 0.35061 -0.55694 -0.058517 0.059907 -0.36035 -0.56421 0.11035 0.099268 -0.02081 0.010399 1 -0.002785 -0.000293 0.0003 -64.828 -81.359 165.38 9.4026 2.1779 1.7134 0.044253 -0.060774 -0.010494 -0.035922 0.011697 -0.014864 -0.47583 0.12427 0.49097 0.094029 0.021775 0.017124 1 -0.00018 5.8e-05 -7.4e-05 50.867 0.07 sec Standing unlabeled 0 0 0 0 {0×1 string} {0×1 string} {0×1 string} {0×1 string} 9.8354 0.04648 -0.36081 -0.008308 -0.01744 0.029401 -0.018233 0.004809 0.004629 -0.4585 -0.07959 -0.52319 0.098354 0.000467 -0.003611 1 -9.1e-05 2.4e-05 2.3e-05 171.35 -87.782 -141.21 10.039 -2.1939 1.4449 0.92987 -0.63345 0.50309 -0.34843 0.030841 0.030317 -0.3479 -0.56323 0.11914 0.10039 -0.021899 0.014472 1 -0.001742 0.000154 0.000152 -64.962 -81.334 165.32 9.3739 2.1572 1.7567 0.074101 -0.021944 -0.035016 -0.037786 0.010994 -0.015758 -0.46704 0.12646 0.50171 0.093741 0.021568 0.017558 1 -0.000189 5.5e-05 -7.9e-05 50.851 0.08 sec Standing unlabeled 0 0 0 0 {0×1 string} {0×1 string} {0×1 string} {0×1 string} 9.8414 0.025279 -0.37161 0.011677 -0.030075 0.035694 -0.015825 0.003157 0.003743 -0.45801 -0.077393 -0.51904 0.098414 0.000254 -0.003718 1 -7.9e-05 1.6e-05 1.9e-05 171.38 -87.784 -141.25 9.7874 -1.7389 1.5518 0.53575 -0.83158 0.19959 -0.18369 0.085344 0.014226 -0.35327 -0.55957 0.11987 0.097881 -0.017367 0.015493 1 -0.000918 0.000427 7.1e-05 -64.792 -81.305 165.04 9.4189 2.096 1.6851 -0.029714 -0.008146 -0.017432 -0.037309 0.006519 -0.022733 -0.46899 0.12842 0.50195 0.094192 0.020952 0.016844 1 -0.000187 3.3e-05 -0.000114 50.851 0.09 sec Standing unlabeled 0 0 0 0 {0×1 string} {0×1 string} {0×1 string} {0×1 string} 9.7885 0.01365 -0.3779 0.024999 -0.035427 -0.016992 -0.014118 0.007863 -0.000637 -0.46826 -0.077637 -0.52856 0.097885 0.000136 -0.003783 1 -7.1e-05 3.9e-05 -3e-06 171.33 -87.788 -141.21 9.5095 -1.5363 1.2182 0.31723 -0.54598 -0.12375 -0.10177 0.075528 0.002536 -0.36377 -0.5581 0.11231 0.095099 -0.015356 0.012154 1 -0.000509 0.000378 1.3e-05 -64.591 -81.283 164.79 9.39 2.0775 1.6859 -0.033041 0.00542 -0.049012 -0.040351 0.011134 -0.018518 -0.47925 0.1294 0.49731 0.093903 0.02077 0.01685 1 -0.000202 5.6e-05 -9.3e-05 50.837 0.1 sec Standing unlabeled 0 0 0 0 {0×1 string} {0×1 string} {0×1 string} {0×1 string} 9.7732 -0.01694 -0.38184 0.044611 -0.059469 -0.032281 -0.005709 8.6e-05 9.3e-05 -0.45508 -0.078369 -0.51855 0.097732 -0.000169 -0.003818 1 -2.9e-05 0 0 171.32 -87.788 -141.2 9.5287 -1.5553 0.79514 0.25849 -0.12058 -0.12943 -0.027943 0.055478 -0.01002 -0.3479 -0.56128 0.11939 0.095288 -0.015557 0.007927 1 -0.00014 0.000277 -5e-05 -64.396 -81.273 164.58 9.3358 2.0045 1.6848 -0.05999 0.060147 -0.11696 -0.043587 0.013048 -0.016609 -0.46362 0.12622 0.50537 0.093361 0.020041 0.016838 1 -0.000218 6.5e-05 -8.3e-05 50.816 0.11 sec Standing unlabeled 0 0 0 0 {0×1 string} {0×1 string} {0×1 string} {0×1 string} 9.7929 0.026551 -0.34584 -0.008965 -0.040584 -0.01376 -0.002096 -0.002391 -0.001238 -0.45386 -0.077881 -0.52612 0.097929 0.000265 -0.003457 1 -1e-05 -1.2e-05 -6e-06 171.29 -87.787 -141.17 9.52 -1.2134 0.55635 -0.11404 0.057395 -0.20044 0.028553 0.040967 -0.019139 -0.34692 -0.56274 0.11255 0.0952 -0.012144 0.005542 1 0.000143 0.000205 -9.6e-05 -64.203 -81.271 164.4 9.3467 1.9902 1.6578 -0.094069 0.05733 -0.11432 -0.045801 0.007869 -0.015588 -0.46436 0.12476 0.49854 0.093469 0.019898 0.01657 1 -0.000229 3.9e-05 -7.8e-05 50.8 0.12 sec Standing unlabeled 0 0 0 0 {0×1 string} {0×1 string} {0×1 string} {0×1 string} 9.7885 0.013956 -0.37776 0.025063 -0.035661 -0.016994 0.000794 -0.000506 -0.002226 -0.45874 -0.075684 -0.52173 0.097885 0.000138 -0.003777 1 4e-06 -3e-06 -1.1e-05 171.25 -87.786 -141.13 9.5079 -0.9794 0.4154 -0.36401 0.15712 -0.25368 0.002321 0.025153 -0.007495 -0.35278 -0.55908 0.11621 0.095079 -0.009798 0.004142 1 1.2e-05 0.000126 -3.7e-05 -64.097 -81.267 164.3 9.3211 1.9364 1.6569 -0.11746 0.098567 -0.15068 -0.042277 0.003631 -0.006271 -0.4707 0.12646 0.50171 0.093212 0.019364 0.016563 1 -0.000211 1.8e-05 -3.1e-05 50.781 0.13 sec Standing unlabeled 0 0 0 0 {0×1 string} {0×1 string} {0×1 string} {0×1 string} 9.7885 0.014183 -0.3782 0.0251 -0.035739 -0.016994 0.001036 -0.008405 -0.002469 -0.46167 -0.074951 -0.52808 0.097885 0.000141 -0.003778 1 5e-06 -4.2e-05 -1.2e-05 171.22 -87.781 -141.09 9.627 -1.1441 0.29084 -0.24324 0.31605 -0.12175 -0.056737 0.019051 0.012294 -0.35205 -0.55835 0.10986 0.096271 -0.011435 0.002902 1 -0.000284 9.5e-05 6.1e-05 -64.078 -81.254 164.25 9.3012 1.9319 1.714 -0.068698 0.13209 -0.16074 -0.038382 -0.002992 -0.003014 -0.4729 0.12817 0.49439 0.093012 0.019321 0.017137 1 -0.000192 -1.5e-05 -1.5e-05 50.77 0.14 sec Standing unlabeled 0 0 0 0 {0×1 string} {0×1 string} {0×1 string} {0×1 string} 9.8457 0.038871 -0.34052 -0.022183 -0.035552 0.038925 0.004238 -0.010562 -0.005582 -0.4585 -0.072998 -0.52393 0.098458 0.000386 -0.0034 1 2.1e-05 -5.3e-05 -2.8e-05 171.16 -87.774 -141.03 9.6812 -1.4293 0.20259 0.009049 0.45747 -0.035145 -0.092291 0.029874 0.025371 -0.35083 -0.5542 0.11353 0.096814 -0.01428 0.002018 1 -0.000461 0.000149 0.000127 -64.064 -81.232 164.19 9.3297 1.9506 1.7148 -0.0649 0.11866 -0.12915 -0.028205 -0.011302 0.014627 -0.46704 0.13379 0.50098 0.093295 0.019515 0.01715 1 -0.000141 -5.7e-05 7.3e-05 50.755 0.15 sec Standing unlabeled 0 0 0 0 {0×1 string} {0×1 string} {0×1 string} {0×1 string} 9.8839 0.045951 -0.38688 0.012605 -0.007808 0.078854 0.003543 -0.006334 0.000551 -0.46338 -0.077393 -0.521 0.098839 0.00046 -0.003866 1 1.8e-05 -3.2e-05 3e-06 171.17 -87.771 -141.04 9.6207 -1.7919 0.08738 0.34792 0.63471 -0.052892 -0.096013 0.043128 0.03527 -0.35645 -0.56128 0.1145 0.096211 -0.017902 0.000862 1 -0.00048 0.000216 0.000176 -64.024 -81.202 164.09 9.3585 1.9685 1.7149 -0.061111 0.10523 -0.097573 -0.023854 -0.01553 0.01505 -0.47388 0.12329 0.50098 0.093583 0.019694 0.017154 1 -0.000119 -7.8e-05 7.5e-05 50.75
T.HurriedPace_mat
ans = 2435×74 timetable
Time GeneralEvent ClinicalEvent L Foot Contact R Foot Contact L Foot Pressure R Foot Pressure Walkway_X Walkway_Y WalkwayPressureLevel WalkwayFoot LowerBack_Acc_X LowerBack_Acc_Y LowerBack_Acc_Z LowerBack_FreeAcc_E LowerBack_FreeAcc_N LowerBack_FreeAcc_U LowerBack_Gyr_X LowerBack_Gyr_Y LowerBack_Gyr_Z LowerBack_Mag_X LowerBack_Mag_Y LowerBack_Mag_Z LowerBack_VelInc_X LowerBack_VelInc_Y LowerBack_VelInc_Z LowerBack_OriInc_q0 LowerBack_OriInc_q1 LowerBack_OriInc_q2 LowerBack_OriInc_q3 LowerBack_Roll LowerBack_Pitch LowerBack_Yaw R_Wrist_Acc_X R_Wrist_Acc_Y R_Wrist_Acc_Z R_Wrist_FreeAcc_E R_Wrist_FreeAcc_N R_Wrist_FreeAcc_U R_Wrist_Gyr_X R_Wrist_Gyr_Y R_Wrist_Gyr_Z R_Wrist_Mag_X R_Wrist_Mag_Y R_Wrist_Mag_Z R_Wrist_VelInc_X R_Wrist_VelInc_Y R_Wrist_VelInc_Z R_Wrist_OriInc_q0 R_Wrist_OriInc_q1 R_Wrist_OriInc_q2 R_Wrist_OriInc_q3 R_Wrist_Roll R_Wrist_Pitch R_Wrist_Yaw L_Wrist_Acc_X L_Wrist_Acc_Y L_Wrist_Acc_Z L_Wrist_FreeAcc_E L_Wrist_FreeAcc_N L_Wrist_FreeAcc_U L_Wrist_Gyr_X L_Wrist_Gyr_Y L_Wrist_Gyr_Z L_Wrist_Mag_X L_Wrist_Mag_Y L_Wrist_Mag_Z L_Wrist_VelInc_X L_Wrist_VelInc_Y L_Wrist_VelInc_Z L_Wrist_OriInc_q0 L_Wrist_OriInc_q1 L_Wrist_OriInc_q2 L_Wrist_OriInc_q3 L_Wrist_Roll ________ ____________ _____________ ______________ ______________ _______________ _______________ ________________________________________________________________________________________________________________________________________________________________________________________________ ________________________________________________________________________________________________________________________________________________________________________________________________ __________________________________________________________________________________________________________________________________________________________________________________________________ ____________ _______________ _______________ _______________ ___________________ ___________________ ___________________ _______________ _______________ _______________ _______________ _______________ _______________ __________________ __________________ __________________ ___________________ ___________________ ___________________ ___________________ ______________ _______________ _____________ _____________ _____________ _____________ _________________ _________________ _________________ _____________ _____________ _____________ _____________ _____________ _____________ ________________ ________________ ________________ _________________ _________________ _________________ _________________ ____________ _____________ ___________ _____________ _____________ _____________ _________________ _________________ _________________ _____________ _____________ _____________ _____________ _____________ _____________ ________________ ________________ ________________ _________________ _________________ _________________ _________________ ____________ 0 sec Standing unlabeled 1 1 216 246 {[26 27 28 29 30 31 32 20 21 22 23 24 25 26 27 28 29 30 31 32 33 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 18 19 20 21 22 23 24 25 26 27 30 31 32 33 34 18 19 20 21 22 23 24 25 26 27 31 … ]} {[12 12 12 12 12 12 12 13 13 13 13 13 13 13 13 13 13 13 13 13 13 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 16 16 16 16 16 16 16 16 16 16 16 … ]} {[5 6 5 5 5 4 2 3 5 7 4 4 6 5 6 4 4 5 4 3 3 3 6 6 7 6 4 6 5 5 2 2 2 3 3 2 3 2 4 5 4 5 3 6 4 4 2 3 2 2 2 2 3 4 3 4 4 4 5 3 4 2 2 3 2 3 3 4 3 4 4 3 2 2 2 2 3 4 3 4 4 4 2 3 3 2 3 3 3 4 3 3 2 2 … ]} {1×163 cell} 9.9 -0.083512 0.14742 0.05508 -0.062989 0.088389 -0.002838 -0.002228 -0.007354 -0.81177 -0.12183 -0.42065 0.099 -0.000839 0.001475 1 -1.4e-05 -1.1e-05 -3.7e-05 0.13354 -89.11 36.56 9.0134 -1.9792 -0.92783 0.35011 1.4364 -0.65661 0.36375 0.031008 0.017166 -0.66895 -0.33496 0.12231 0.090134 -0.019767 -0.009328 1 0.001819 0.000155 8.6e-05 -74.328 -82.067 -178.03 9.4858 1.8942 1.6817 0.012644 0.085283 0.005061 -0.003854 -0.01336 0.031753 -0.71606 0.073486 0.30273 0.094853 0.018957 0.016823 1 -1.9e-05 -6.7e-05 0.000159 50.253 0.01 sec Standing unlabeled 1 1 214 248 {[26 27 28 29 30 31 32 20 21 22 23 24 25 26 27 28 29 30 31 32 33 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 18 19 20 21 22 23 24 25 26 27 30 31 32 33 34 18 19 20 21 22 23 24 25 26 27 30 … ]} {[12 12 12 12 12 12 12 13 13 13 13 13 13 13 13 13 13 13 13 13 13 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 16 16 16 16 16 16 16 16 16 16 16 … ]} {[5 6 5 5 5 4 2 3 5 7 4 4 6 5 6 4 4 5 4 3 3 3 5 6 7 6 4 6 5 5 2 2 2 3 3 2 3 2 4 5 4 5 3 6 4 4 2 3 2 2 2 2 3 4 3 4 4 4 5 4 4 2 2 2 3 2 3 3 4 3 4 4 3 2 2 2 2 3 4 3 4 4 4 2 3 3 2 3 3 4 4 3 3 2 … ]} {1×162 cell} 9.8846 -0.051488 0.11378 0.063302 -0.017634 0.072499 -0.003067 0.008798 -0.002452 -0.81201 -0.12427 -0.42627 0.098846 -0.000516 0.001133 1 -1.5e-05 4.4e-05 -1.2e-05 0.25422 -89.105 36.439 8.9103 -1.7771 -0.96626 0.15511 1.4192 -0.78786 0.44478 -0.014207 -0.00356 -0.67188 -0.3352 0.12085 0.089104 -0.017752 -0.009696 1 0.002224 -7.1e-05 -1.8e-05 -74.114 -82.07 -177.99 9.4805 2.0016 1.6643 0.042854 -0.021647 0.018578 -0.002258 -0.012709 0.03306 -0.71826 0.071777 0.29883 0.094801 0.020032 0.016649 1 -1.1e-05 -6.4e-05 0.000165 50.229 0.02 sec Standing unlabeled 1 1 214 248 {[26 27 28 29 30 31 32 20 21 22 23 24 25 26 27 28 29 30 31 32 33 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 18 19 20 21 22 23 24 25 26 27 30 31 32 33 34 18 19 20 21 22 23 24 25 26 27 30 … ]} {[12 12 12 12 12 12 12 13 13 13 13 13 13 13 13 13 13 13 13 13 13 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 16 16 16 16 16 16 16 16 16 16 16 … ]} {[5 6 5 5 5 4 2 3 5 7 4 4 6 5 6 4 4 5 4 3 3 3 5 6 7 6 4 6 5 5 2 2 2 3 3 2 3 2 4 5 4 5 3 6 4 4 2 3 2 2 2 2 3 4 3 4 4 4 5 4 4 2 2 2 3 2 3 3 4 3 4 4 3 2 2 2 2 3 4 3 4 4 4 2 3 3 2 3 3 4 4 3 3 2 … ]} {1×162 cell} 9.8976 -0.083318 0.1142 0.082997 -0.042986 0.085472 -0.001818 0.009535 -0.000811 -0.80737 -0.12012 -0.42871 0.098976 -0.000834 0.001137 1 -9e-06 4.8e-05 -4e-06 0.32186 -89.1 36.374 9.0356 -1.6121 -0.82032 0.022784 1.2327 -0.6807 0.51646 -0.067878 -0.036032 -0.66406 -0.33227 0.12085 0.090356 -0.016116 -0.008214 1 0.002582 -0.000339 -0.00018 -74.036 -82.099 -177.77 9.5132 2.049 1.6653 0.056988 -0.062685 0.059774 -0.008078 -0.00968 0.031635 -0.7102 0.072266 0.29736 0.095128 0.020506 0.016656 1 -4e-05 -4.8e-05 0.000158 50.2 0.03 sec Standing unlabeled 1 1 214 248 {[26 27 28 29 30 31 32 20 21 22 23 24 25 26 27 28 29 30 31 32 33 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 18 19 20 21 22 23 24 25 26 27 30 31 32 33 34 18 19 20 21 22 23 24 25 26 27 30 … ]} {[12 12 12 12 12 12 12 13 13 13 13 13 13 13 13 13 13 13 13 13 13 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 16 16 16 16 16 16 16 16 16 16 16 … ]} {[5 6 5 5 5 4 2 3 5 7 4 4 6 5 6 4 4 5 4 3 3 3 5 6 7 6 4 6 5 5 2 2 2 3 3 2 3 2 4 5 4 5 3 6 4 4 2 3 2 2 2 2 3 4 3 4 4 4 5 4 4 2 2 2 3 2 3 3 4 3 4 4 3 2 2 2 2 3 4 3 4 4 4 2 3 3 2 3 3 4 4 3 3 2 … ]} {1×163 cell} 9.8448 -0.085776 0.10117 0.094844 -0.037497 0.032465 -0.00309 0.002643 -0.001977 -0.8169 -0.11255 -0.43018 0.098448 -0.000859 0.00101 1 -1.5e-05 1.3e-05 -1e-05 0.42458 -89.098 36.271 9.9418 -1.2076 -0.069944 -0.24483 0.38749 0.19194 0.56763 -0.15455 -0.10496 -0.6731 -0.3269 0.12402 0.099412 -0.012127 -0.000657 1 0.002838 -0.000773 -0.000525 -74.196 -82.18 -177.28 9.514 2.046 1.6647 0.057168 -0.062666 0.059773 -0.01252 -0.006585 0.028422 -0.71973 0.080322 0.29614 0.095136 0.020474 0.016649 1 -6.3e-05 -3.3e-05 0.000142 50.167 0.04 sec Standing unlabeled 1 1 215 248 {[26 27 28 29 30 31 32 20 21 22 23 24 25 26 27 28 29 30 31 32 33 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 18 19 20 21 22 23 24 25 26 27 30 31 32 33 34 18 19 20 21 22 23 24 25 26 27 31 … ]} {[12 12 12 12 12 12 12 13 13 13 13 13 13 13 13 13 13 13 13 13 13 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 16 16 16 16 16 16 16 16 16 16 16 … ]} {[5 6 5 5 5 4 2 3 5 7 4 4 6 5 7 4 4 5 4 3 3 3 5 6 7 6 4 6 5 5 2 2 2 3 3 2 3 2 4 5 4 4 4 6 4 4 2 3 2 2 2 2 3 4 3 4 4 4 5 4 4 2 2 3 2 3 3 4 3 4 4 3 2 2 2 2 3 4 3 4 4 4 2 3 3 2 3 3 4 4 3 3 2 2 … ]} {1×161 cell} 9.8893 -0.050271 0.18453 0.0077 -0.05832 0.078329 -0.004296 0.004719 0.001107 -0.80395 -0.11035 -0.41699 0.098893 -0.000502 0.001843 1 -2.1e-05 2.4e-05 6e-06 0.41298 -89.096 36.282 11.272 -0.27631 0.90262 -0.97482 -0.8434 1.425 0.52651 -0.12482 -0.16536 -0.66235 -0.32324 0.1377 0.11271 -0.00288 0.009089 1 0.002633 -0.000624 -0.000827 -74.199 -82.289 -176.97 9.5226 2.074 1.6511 0.055673 -0.095104 0.071409 -0.015059 -0.004596 0.025166 -0.70776 0.08374 0.31079 0.095223 0.020754 0.016512 1 -7.5e-05 -2.3e-05 0.000126 50.134 0.05 sec Standing unlabeled 1 1 216 249 {[26 27 28 29 30 31 32 20 21 22 23 24 25 26 27 28 29 30 31 32 33 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 18 19 20 21 22 23 24 25 26 27 30 31 32 33 34 18 19 20 21 22 23 24 25 26 27 31 … ]} {[12 12 12 12 12 12 12 13 13 13 13 13 13 13 13 13 13 13 13 13 13 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 16 16 16 16 16 16 16 16 16 16 16 … ]} {[5 7 5 5 5 4 2 3 5 7 4 4 6 5 6 4 4 5 4 3 3 3 5 6 7 7 4 6 5 5 2 2 2 3 3 2 3 2 4 5 4 5 3 6 4 4 2 3 2 2 2 2 3 4 3 4 4 4 5 3 4 2 2 3 2 3 3 4 3 4 4 3 2 2 2 2 3 4 3 4 4 4 2 3 3 2 3 3 4 2 4 3 3 2 … ]} {1×163 cell} 9.862 -0.060401 0.11792 0.067291 -0.026574 0.049966 -0.004909 0.007428 4.9e-05 -0.81714 -0.11572 -0.41895 0.09862 -0.000604 0.001176 1 -2.5e-05 3.7e-05 0 0.43929 -89.092 36.255 11.232 0.41802 1.3772 -1.4472 -1.5141 1.3155 0.27498 0.030212 -0.1364 -0.67236 -0.33105 0.13623 0.11232 0.004085 0.01376 1 0.001375 0.000151 -0.000682 -73.749 -82.358 -177.26 9.5278 2.0937 1.6153 0.031447 -0.12948 0.074351 -0.017924 -0.003484 0.017266 -0.71948 0.080566 0.3064 0.095276 0.020947 0.016153 1 -9e-05 -1.7e-05 8.6e-05 50.108 0.06 sec Standing unlabeled 1 1 215 248 {[26 27 28 29 30 31 32 20 21 22 23 24 25 26 27 28 29 30 31 32 33 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 18 19 20 21 22 23 24 25 26 27 30 31 32 33 34 18 19 20 21 22 23 24 25 26 27 30 … ]} {[12 12 12 12 12 12 12 13 13 13 13 13 13 13 13 13 13 13 13 13 13 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 16 16 16 16 16 16 16 16 16 16 16 … ]} {[5 7 5 5 5 4 2 3 5 7 4 4 6 5 6 4 4 5 4 3 3 3 5 6 7 6 4 6 5 5 2 2 2 3 3 2 3 2 4 5 4 5 3 6 4 4 2 3 2 2 2 2 3 4 3 4 4 4 5 3 4 2 2 2 3 2 3 3 4 3 4 4 3 2 2 2 2 3 4 3 4 4 4 2 3 3 2 3 3 4 4 3 3 2 … ]} {1×163 cell} 9.8869 -0.050898 0.15163 0.035581 -0.038302 0.075412 -0.003024 0.01161 0.002274 -0.80151 -0.12036 -0.41895 0.09887 -0.000508 0.001511 1 -1.5e-05 5.8e-05 1.1e-05 0.38112 -89.085 36.313 10.147 0.23192 1.4256 -1.1022 -1.4845 0.26806 -0.062675 0.04744 -0.080639 -0.66016 -0.3352 0.13794 0.10147 0.002283 0.014231 1 -0.000313 0.000237 -0.000403 -73.482 -82.393 -177.56 9.5754 2.0759 1.5617 -0.033348 -0.13233 0.10792 -0.019629 -0.004426 0.014409 -0.7063 0.075684 0.30957 0.095753 0.020767 0.015617 1 -9.8e-05 -2.2e-05 7.2e-05 50.087 0.07 sec Standing unlabeled 1 1 216 247 {[26 27 28 29 30 31 32 20 21 22 23 24 25 26 27 28 29 30 31 32 33 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 18 19 20 21 22 23 24 25 26 27 30 31 32 33 34 18 19 20 21 22 23 24 25 26 27 30 … ]} {[12 12 12 12 12 12 12 13 13 13 13 13 13 13 13 13 13 13 13 13 13 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 16 16 16 16 16 16 16 16 16 16 16 … ]} {[5 6 5 5 5 4 2 3 5 7 4 4 6 5 6 4 4 5 4 3 3 3 5 6 7 6 4 6 5 5 2 2 2 3 3 2 3 2 4 5 4 5 3 6 4 4 2 3 2 2 2 2 3 4 3 4 4 4 5 3 4 2 2 2 3 2 3 3 4 3 4 4 3 2 2 2 2 3 4 3 4 4 4 2 3 3 2 3 3 4 4 3 3 2 … ]} {1×163 cell} 9.8763 -0.018895 0.18777 -0.011899 -0.033353 0.065355 -0.006391 0.012967 0.006149 -0.80835 -0.11768 -0.42407 0.098763 -0.000186 0.001871 1 -3.2e-05 6.5e-05 3.1e-05 0.18782 -89.078 36.504 9.7374 -0.18326 0.77863 -0.86371 -0.73614 -0.10865 -0.32271 -0.084507 -0.023395 -0.66284 -0.33154 0.13354 0.09737 -0.001831 0.00783 1 -0.001614 -0.000423 -0.000117 -73.978 -82.418 -177.24 9.5904 2.1229 1.5937 0.010642 -0.16096 0.13695 -0.029056 -0.001226 0.010172 -0.71045 0.077148 0.30615 0.095902 0.021236 0.015934 1 -0.000145 -6e-06 5.1e-05 50.061 0.08 sec Standing unlabeled 1 1 216 249 {[26 27 28 29 30 31 32 20 21 22 23 24 25 26 27 28 29 30 31 32 33 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 18 19 20 21 22 23 24 25 26 27 30 31 32 33 34 18 19 20 21 22 23 24 25 26 27 30 … ]} {[12 12 12 12 12 12 12 13 13 13 13 13 13 13 13 13 13 13 13 13 13 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 16 16 16 16 16 16 16 16 16 16 16 … ]} {[5 7 5 5 5 4 2 3 5 7 4 4 6 5 6 4 4 5 4 3 3 3 5 6 7 6 4 6 5 5 2 2 2 3 3 2 3 2 4 5 4 4 3 6 4 4 2 3 2 2 2 2 3 4 3 4 4 4 5 4 4 2 2 2 3 2 3 3 4 3 4 4 3 2 2 2 2 3 4 3 4 4 4 2 3 3 2 4 3 4 4 3 3 2 … ]} {1×163 cell} 9.9018 -0.026804 0.13568 0.035869 -0.007197 0.089999 -0.005162 0.017045 0.002593 -0.81103 -0.10986 -0.42285 0.099018 -0.000267 0.001348 1 -2.6e-05 8.5e-05 1.3e-05 0.12689 -89.069 36.565 9.782 -0.50271 0.11317 -0.77964 -0.017102 -0.04823 -0.46096 -0.1711 0.023887 -0.66821 -0.32617 0.13208 0.097819 -0.005013 0.001227 1 -0.002305 -0.000856 0.000119 -74.969 -82.429 -176.51 9.5666 2.1021 1.5788 -0.004756 -0.15234 0.10739 -0.027699 -0.003794 0.002385 -0.71533 0.084717 0.30713 0.095665 0.021025 0.015787 1 -0.000138 -1.9e-05 1.2e-05 50.05 0.09 sec Standing unlabeled 1 1 216 248 {[26 27 28 29 30 31 32 20 21 22 23 24 25 26 27 28 29 30 31 32 33 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 18 19 20 21 22 23 24 25 26 27 30 31 32 33 34 18 19 20 21 22 23 24 25 26 27 30 … ]} {[12 12 12 12 12 12 12 13 13 13 13 13 13 13 13 13 13 13 13 13 13 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 16 16 16 16 16 16 16 16 16 16 16 … ]} {[5 7 5 5 5 4 2 3 5 7 4 4 6 5 6 4 4 5 4 3 3 3 5 6 7 6 4 6 5 5 2 3 2 3 3 2 3 2 4 5 4 4 3 6 4 4 2 3 2 2 2 2 3 4 3 4 4 4 5 3 4 2 2 2 3 2 3 3 4 3 4 4 3 2 2 2 2 3 4 3 4 4 4 2 3 3 2 3 3 4 4 3 3 2 … ]} {1×163 cell} 9.906 0.030278 0.1538 -0.011387 0.02904 0.094531 -0.000821 0.019887 0.003377 -0.8064 -0.11401 -0.41333 0.09906 0.000304 0.001528 1 -4e-06 9.9e-05 1.7e-05 0.038938 -89.057 36.654 9.6487 -0.63001 -0.18843 -0.73517 0.29103 -0.17398 -0.54191 -0.16871 0.05461 -0.6648 -0.33179 0.14233 0.09649 -0.006279 -0.001786 1 -0.00271 -0.000844 0.000273 -76.032 -82.422 -175.74 9.5335 2.1105 1.5802 0.00796 -0.16379 0.077295 -0.037795 -0.008055 0.002716 -0.71313 0.081543 0.31641 0.095334 0.02111 0.015802 1 -0.000189 -4e-05 1.4e-05 50.041 0.1 sec Standing unlabeled 1 1 216 247 {[26 27 28 29 30 31 32 20 21 22 23 24 25 26 27 28 29 30 31 32 33 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 18 19 20 21 22 23 24 25 26 27 30 31 32 33 34 18 19 20 21 22 23 24 25 26 27 30 … ]} {[12 12 12 12 12 12 12 13 13 13 13 13 13 13 13 13 13 13 13 13 13 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 16 16 16 16 16 16 16 16 16 16 16 … ]} {[5 6 5 5 5 4 2 3 5 7 4 4 6 5 6 4 5 5 4 3 3 3 5 6 7 6 4 6 5 4 2 2 2 3 3 2 3 2 4 5 4 4 3 6 4 4 2 3 2 2 2 2 3 4 3 4 4 4 5 4 4 2 2 2 3 2 3 3 4 3 4 4 3 2 2 2 2 2 3 4 2 4 4 4 2 3 3 2 3 3 4 4 3 3 … ]} {1×164 cell} 9.9179 0.071288 0.18928 -0.062768 0.042543 0.10701 -0.009419 0.024573 0.008428 -0.80493 -0.10547 -0.42041 0.099179 0.000717 0.001881 1 -4.7e-05 0.000123 4.2e-05 -0.2302 -89.044 36.919 9.4453 -0.60937 0.058464 -0.65035 0.03239 -0.37001 -0.61784 -0.15801 0.059499 -0.66113 -0.32178 0.13379 0.094454 -0.006064 0.000678 0.99999 -0.003089 -0.00079 0.000297 -77.095 -82.408 -175.03 9.5003 2.0463 1.6365 0.04147 -0.086434 0.041845 -0.044396 -0.011234 -0.005617 -0.71118 0.087646 0.30786 0.095003 0.020464 0.016366 1 -0.000222 -5.6e-05 -2.8e-05 50.044 0.11 sec Standing unlabeled 1 1 218 246 {[26 27 28 29 30 31 32 20 21 22 23 24 25 26 27 28 29 30 31 32 33 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 18 19 20 21 22 23 24 25 26 27 30 31 32 33 34 18 19 20 21 22 23 24 25 26 27 30 … ]} {[12 12 12 12 12 12 12 13 13 13 13 13 13 13 13 13 13 13 13 13 13 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 16 16 16 16 16 16 16 16 16 16 16 … ]} {[5 6 5 5 5 4 2 3 5 7 4 4 6 5 6 4 4 5 4 3 3 3 5 6 7 6 4 6 5 4 2 3 2 3 3 2 3 2 4 5 4 4 3 6 4 4 2 3 2 2 2 2 3 4 3 4 4 4 5 4 4 2 2 2 3 2 3 3 4 3 4 4 3 2 2 2 2 3 4 2 4 4 4 2 3 3 2 3 3 4 4 3 3 2 … ]} {1×164 cell} 9.8953 0.061165 0.1937 -0.058873 0.033884 0.084475 -0.014013 0.031346 0.010192 -0.80786 -0.11646 -0.42017 0.098953 0.000617 0.001921 1 -7e-05 0.000157 5.1e-05 -0.54672 -89.026 37.23 9.6377 -0.8849 0.63736 -0.24044 -0.45632 -0.12724 -0.69823 -0.12968 0.039435 -0.66553 -0.33179 0.13257 0.096374 -0.008808 0.006467 0.99999 -0.003491 -0.000648 0.000197 -78.068 -82.401 -174.44 9.5222 1.9976 1.6258 0.008272 -0.044436 0.051608 -0.040681 -0.009569 -0.011184 -0.71362 0.078125 0.30908 0.095223 0.019974 0.016258 1 -0.000203 -4.8e-05 -5.6e-05 50.054 0.12 sec Standing unlabeled 1 1 216 250 {[26 27 28 29 30 31 32 20 21 22 23 24 25 26 27 28 29 30 31 32 33 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 18 19 20 21 22 23 24 25 26 27 30 31 32 33 34 18 19 20 21 22 23 24 25 26 27 30 … ]} {[12 12 12 12 12 12 12 13 13 13 13 13 13 13 13 13 13 13 13 13 13 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 16 16 16 16 16 16 16 16 16 16 16 … ]} {[5 7 5 5 5 4 2 3 5 7 4 4 6 5 7 4 4 5 4 3 3 3 5 6 7 6 4 6 5 5 2 3 2 3 3 2 3 2 4 5 4 4 3 6 4 4 2 3 2 2 2 2 3 4 3 4 4 4 5 4 4 2 2 2 3 2 3 3 4 3 4 4 3 2 2 2 2 2 3 4 2 4 4 4 2 3 3 2 3 3 4 4 3 3 … ]} {1×164 cell} 9.8402 0.057119 0.14832 -0.019218 0.059583 0.028555 -0.018675 0.024406 0.010535 -0.80176 -0.11548 -0.42041 0.098402 0.000577 0.001471 1 -9.3e-05 0.000122 5.3e-05 -0.87479 -89.012 37.548 10.044 -1.5267 1.2303 0.48621 -0.85437 0.37394 -0.6919 -0.064826 0.016952 -0.65772 -0.33154 0.1272 0.10044 -0.015216 0.012388 0.99999 -0.00346 -0.000324 8.5e-05 -78.74 -82.397 -174.16 9.4696 1.9369 1.6309 0.001673 0.007143 -0.010452 -0.036549 -0.009368 -0.016554 -0.70508 0.079346 0.30566 0.094696 0.019364 0.01631 1 -0.000183 -4.7e-05 -8.3e-05 50.074 0.13 sec Standing unlabeled 1 1 217 247 {[26 27 28 29 30 31 32 20 21 22 23 24 25 26 27 28 29 30 31 32 33 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 18 19 20 21 22 23 24 25 26 27 30 31 32 33 34 18 19 20 21 22 23 24 25 26 27 30 … ]} {[12 12 12 12 12 12 12 13 13 13 13 13 13 13 13 13 13 13 13 13 13 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 16 16 16 16 16 16 16 16 16 16 16 … ]} {[5 7 5 5 5 4 2 3 5 7 4 4 6 5 6 4 4 5 4 3 3 3 5 6 7 6 4 6 5 5 2 3 2 3 3 2 3 2 4 5 4 4 3 6 4 4 2 3 2 2 2 2 3 4 3 4 4 4 5 4 4 2 2 2 3 2 3 3 4 3 4 4 3 2 2 2 2 3 3 2 4 4 4 2 3 3 2 3 3 4 4 3 3 2 … ]} {1×163 cell} 9.8152 0.046414 0.11778 0.012519 0.071136 0.003109 -0.018064 0.021695 0.011594 -0.81079 -0.11084 -0.427 0.098153 0.00047 0.001167 1 -9e-05 0.000108 5.8e-05 -1.2248 -89 37.89 10.263 -2.0406 1.4478 1.003 -0.92964 0.66187 -0.53977 0.015897 -0.000666 -0.66748 -0.33154 0.12134 0.10263 -0.020367 0.014525 1 -0.002699 7.9e-05 -3e-06 -78.971 -82.394 -174.24 9.4787 1.9091 1.6141 -0.026191 0.027196 -0.009914 -0.030186 -0.009403 -0.01732 -0.71655 0.082764 0.30127 0.094788 0.019085 0.016143 1 -0.000151 -4.7e-05 -8.7e-05 50.099 0.14 sec Standing unlabeled 1 1 216 246 {[26 27 28 29 30 31 32 20 21 22 23 24 25 26 27 28 29 30 31 32 33 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 18 19 20 21 22 23 24 25 26 27 30 31 32 33 34 18 19 20 21 22 23 24 25 26 27 30 … ]} {[12 12 12 12 12 12 12 13 13 13 13 13 13 13 13 13 13 13 13 13 13 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 16 16 16 16 16 16 16 16 16 16 16 … ]} {[5 7 5 5 5 4 2 3 5 7 4 4 6 5 6 4 4 5 4 3 3 3 5 6 7 6 4 6 5 5 2 3 2 3 3 2 3 2 4 5 4 4 3 6 4 4 2 3 2 2 2 2 3 4 3 4 4 4 5 3 4 2 2 2 3 2 3 3 4 3 4 4 3 2 2 2 2 3 3 2 4 4 4 2 3 3 2 3 3 4 4 3 3 2 … ]} {1×163 cell} 9.8175 0.045644 0.15373 -0.015308 0.050836 0.006024 -0.008542 0.008898 0.012144 -0.80054 -0.11572 -0.42676 0.098175 0.000462 0.001533 1 -4.3e-05 4.4e-05 6.1e-05 -1.5929 -88.995 38.254 10.023 -1.883 1.4822 0.89009 -1.0106 0.40396 -0.34762 0.069248 -0.003922 -0.65796 -0.33105 0.12256 0.10023 -0.018806 0.01482 1 -0.001738 0.000346 -2e-05 -78.864 -82.388 -174.54 9.4638 1.8621 1.5819 -0.069716 0.055849 -0.038929 -0.023084 -0.008483 -0.02317 -0.70654 0.080078 0.30151 0.09464 0.018612 0.015821 1 -0.000115 -4.2e-05 -0.000116 50.134 0.15 sec Standing unlabeled 1 1 215 245 {[26 27 28 29 30 31 32 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 18 19 20 21 22 23 24 25 26 27 30 31 32 33 34 18 19 20 21 22 23 24 25 26 27 … ]} {[12 12 12 12 12 12 12 13 13 13 13 13 13 13 13 13 13 13 13 13 13 13 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 16 16 16 16 16 16 16 16 16 16 … ]} {[5 7 5 5 5 4 2 3 5 7 4 4 6 5 6 4 4 5 4 3 3 2 3 5 6 7 6 4 6 5 4 2 2 2 3 3 2 3 2 4 5 4 4 3 6 4 4 2 3 2 2 2 2 3 4 3 4 4 4 5 3 4 2 2 2 3 2 3 3 4 3 4 4 3 2 2 2 2 3 3 2 4 4 4 2 3 3 2 3 3 4 4 3 3 … ]} {1×164 cell} 9.866 -0.00999 0.15186 0.020214 0.008852 0.054496 -0.010144 0.006007 0.004063 -0.80664 -0.11401 -0.42065 0.09866 -9.8e-05 0.001516 1 -5.1e-05 3e-05 2e-05 -1.696 -88.991 38.353 9.6419 -1.6562 1.1259 0.62073 -0.72674 -0.011468 -0.21874 0.085201 -0.031967 -0.66162 -0.33276 0.1272 0.096421 -0.016565 0.011236 1 -0.001094 0.000426 -0.00016 -78.592 -82.394 -174.94 9.5174 1.8655 1.5731 -0.089054 0.056773 0.012033 -0.017118 -0.004423 -0.018131 -0.70923 0.081055 0.30957 0.095176 0.018648 0.015731 1 -8.6e-05 -2.2e-05 -9.1e-05 50.158
Convert:
F = @(t) convertvars(t, regexpPattern("^Walkway.*","IgnoreCase",true), @mystring);
T = structfun(F,T, 'UniformOutput',false)
T = struct with fields:
HurriedPace: [3746×74 timetable] HurriedPace_mat: [2435×74 timetable]
Check:
T.HurriedPace
ans = 3746×74 timetable
Time GeneralEvent ClinicalEvent L Foot Contact R Foot Contact L Foot Pressure R Foot Pressure Walkway_X Walkway_Y WalkwayPressureLevel WalkwayFoot LowerBack_Acc_X LowerBack_Acc_Y LowerBack_Acc_Z LowerBack_FreeAcc_E LowerBack_FreeAcc_N LowerBack_FreeAcc_U LowerBack_Gyr_X LowerBack_Gyr_Y LowerBack_Gyr_Z LowerBack_Mag_X LowerBack_Mag_Y LowerBack_Mag_Z LowerBack_VelInc_X LowerBack_VelInc_Y LowerBack_VelInc_Z LowerBack_OriInc_q0 LowerBack_OriInc_q1 LowerBack_OriInc_q2 LowerBack_OriInc_q3 LowerBack_Roll LowerBack_Pitch LowerBack_Yaw R_Wrist_Acc_X R_Wrist_Acc_Y R_Wrist_Acc_Z R_Wrist_FreeAcc_E R_Wrist_FreeAcc_N R_Wrist_FreeAcc_U R_Wrist_Gyr_X R_Wrist_Gyr_Y R_Wrist_Gyr_Z R_Wrist_Mag_X R_Wrist_Mag_Y R_Wrist_Mag_Z R_Wrist_VelInc_X R_Wrist_VelInc_Y R_Wrist_VelInc_Z R_Wrist_OriInc_q0 R_Wrist_OriInc_q1 R_Wrist_OriInc_q2 R_Wrist_OriInc_q3 R_Wrist_Roll R_Wrist_Pitch R_Wrist_Yaw L_Wrist_Acc_X L_Wrist_Acc_Y L_Wrist_Acc_Z L_Wrist_FreeAcc_E L_Wrist_FreeAcc_N L_Wrist_FreeAcc_U L_Wrist_Gyr_X L_Wrist_Gyr_Y L_Wrist_Gyr_Z L_Wrist_Mag_X L_Wrist_Mag_Y L_Wrist_Mag_Z L_Wrist_VelInc_X L_Wrist_VelInc_Y L_Wrist_VelInc_Z L_Wrist_OriInc_q0 L_Wrist_OriInc_q1 L_Wrist_OriInc_q2 L_Wrist_OriInc_q3 L_Wrist_Roll ________ ____________ _____________ ______________ ______________ _______________ _______________ _________ _________ ____________________ ___________ _______________ _______________ _______________ ___________________ ___________________ ___________________ _______________ _______________ _______________ _______________ _______________ _______________ __________________ __________________ __________________ ___________________ ___________________ ___________________ ___________________ ______________ _______________ _____________ _____________ _____________ _____________ _________________ _________________ _________________ _____________ _____________ _____________ _____________ _____________ _____________ ________________ ________________ ________________ _________________ _________________ _________________ _________________ ____________ _____________ ___________ _____________ _____________ _____________ _________________ _________________ _________________ _____________ _____________ _____________ _____________ _____________ _____________ ________________ ________________ ________________ _________________ _________________ _________________ _________________ ____________ 0 sec <undefined> <undefined> 0 0 0 0 "" "" "" "" 9.8702 0.12365 -0.32195 -0.081667 0.026105 0.063206 -0.012692 -0.002854 0.002509 -0.46191 -0.082275 -0.52563 0.098702 0.001238 -0.003218 1 -6.3e-05 -1.4e-05 1.3e-05 171.02 -87.77 -140.81 10.172 0.54028 1.968 -1.5823 -1.597 0.31519 0.071557 0.062937 -0.070644 -0.35352 -0.55933 0.13037 0.10172 0.00536 0.01965 1 0.000358 0.000315 -0.000353 -60.962 -81.373 163.12 9.509 2.2391 1.6931 0.038067 -0.10986 0.10136 -0.014936 0.009074 0.007665 -0.47046 0.12378 0.49731 0.09509 0.022396 0.016925 1 -7.5e-05 4.5e-05 3.8e-05 50.978 0.01 sec Standing unlabeled 0 0 0 0 "" "" "" "" 9.8871 0.12026 -0.36081 -0.047252 0.042416 0.081553 -0.022446 -0.001962 0.005983 -0.46631 -0.077393 -0.52124 0.098871 0.001205 -0.003607 1 -0.000112 -1e-05 3e-05 171.09 -87.77 -140.89 9.9566 -0.1731 1.4313 -0.96718 -0.92851 0.158 -0.21435 -0.04178 -0.030601 -0.35938 -0.55518 0.13184 0.099563 -0.001731 0.014336 1 -0.001072 -0.000209 -0.000153 -61.16 -81.398 163.2 9.4807 2.2186 1.6936 0.034757 -0.096292 0.069775 -0.018516 0.009444 0.001655 -0.47363 0.13086 0.5022 0.094807 0.022189 0.016929 1 -9.3e-05 4.7e-05 8e-06 50.954 0.02 sec Standing unlabeled 0 0 0 0 "" "" "" "" 9.8446 0.10017 -0.34707 -0.047992 0.019515 0.038394 -0.020761 0.000748 0.005439 -0.45825 -0.083496 -0.51611 0.098446 0.001004 -0.003471 1 -0.000104 4e-06 2.7e-05 171.14 -87.77 -140.96 9.9099 -0.47266 0.84123 -0.7917 -0.29916 0.10809 -0.37333 -0.095513 0.027284 -0.34741 -0.56226 0.13648 0.099096 -0.004697 0.008468 1 -0.001867 -0.000478 0.000136 -61.734 -81.409 163.57 9.489 2.2357 1.7096 0.053936 -0.10154 0.084251 -0.013105 0.00884 0.002025 -0.46338 0.12378 0.5044 0.094891 0.022359 0.01709 1 -6.6e-05 4.4e-05 1e-05 50.933 0.03 sec Standing unlabeled 0 0 0 0 "" "" "" "" 9.8871 0.11938 -0.36086 -0.047219 0.042242 0.081554 -0.022857 -0.001645 0.004204 -0.45972 -0.080811 -0.52783 0.098871 0.001195 -0.003608 1 -0.000114 -8e-06 2.1e-05 171.18 -87.769 -141.01 9.6463 -0.63436 0.48729 -0.6727 0.056009 -0.15685 -0.4938 -0.10287 0.064255 -0.35278 -0.55884 0.12231 0.096462 -0.0063 0.004938 1 -0.002469 -0.000514 0.000321 -62.468 -81.402 164.03 9.466 2.2676 1.7264 0.089614 -0.12097 0.071932 -0.019063 0.01206 -0.004437 -0.46875 0.12524 0.49463 0.094662 0.022676 0.017256 1 -9.5e-05 6e-05 -2.2e-05 50.912 0.04 sec Standing unlabeled 0 0 0 0 "" "" "" "" 9.8768 0.12701 -0.38143 -0.033158 0.059716 0.072029 -0.016256 0.001485 0.005793 -0.45801 -0.081787 -0.52441 0.098768 0.001273 -0.003815 1 -8.1e-05 7e-06 2.9e-05 171.24 -87.771 -141.07 9.4329 -0.89863 0.49501 -0.39084 0.077258 -0.33252 -0.59228 -0.11682 0.081855 -0.35303 -0.56323 0.12476 0.09433 -0.008933 0.005032 0.99999 -0.002961 -0.000584 0.000409 -63.335 -81.389 164.56 9.4404 2.2137 1.7257 0.06625 -0.079719 0.035565 -0.026535 0.009261 -0.008005 -0.46802 0.12622 0.49951 0.094405 0.022135 0.01725 1 -0.000133 4.6e-05 -4e-05 50.895 0.05 sec Standing unlabeled 0 0 0 0 "" "" "" "" 9.8932 0.097555 -0.37161 -0.027198 0.029516 0.087849 -0.023893 0.00676 0.006671 -0.45557 -0.079346 -0.521 0.098931 0.000978 -0.00372 1 -0.000119 3.4e-05 3.3e-05 171.3 -87.775 -141.14 9.6086 -1.382 0.74252 0.092327 -0.082605 -0.077651 -0.64219 -0.11694 0.077491 -0.34668 -0.56103 0.12183 0.096087 -0.013759 0.007526 0.99999 -0.003211 -0.000585 0.000387 -64.22 -81.377 165.09 9.3804 2.2074 1.7694 0.11262 -0.055083 -0.015752 -0.03198 0.008933 -0.014908 -0.46265 0.12695 0.5 0.093807 0.02207 0.017686 1 -0.00016 4.5e-05 -7.5e-05 50.884 0.06 sec Standing unlabeled 0 0 0 0 "" "" "" "" 9.8457 0.038774 -0.34085 -0.022387 -0.034906 0.038927 -0.022257 0.007608 0.004176 -0.4668 -0.081543 -0.53076 0.098457 0.000389 -0.003412 1 -0.000111 3.8e-05 2.1e-05 171.32 -87.779 -141.17 9.9264 -2.0868 1.0312 0.77615 -0.23916 0.35061 -0.55694 -0.058517 0.059907 -0.36035 -0.56421 0.11035 0.099268 -0.02081 0.010399 1 -0.002785 -0.000293 0.0003 -64.828 -81.359 165.38 9.4026 2.1779 1.7134 0.044253 -0.060774 -0.010494 -0.035922 0.011697 -0.014864 -0.47583 0.12427 0.49097 0.094029 0.021775 0.017124 1 -0.00018 5.8e-05 -7.4e-05 50.867 0.07 sec Standing unlabeled 0 0 0 0 "" "" "" "" 9.8354 0.04648 -0.36081 -0.008308 -0.01744 0.029401 -0.018233 0.004809 0.004629 -0.4585 -0.07959 -0.52319 0.098354 0.000467 -0.003611 1 -9.1e-05 2.4e-05 2.3e-05 171.35 -87.782 -141.21 10.039 -2.1939 1.4449 0.92987 -0.63345 0.50309 -0.34843 0.030841 0.030317 -0.3479 -0.56323 0.11914 0.10039 -0.021899 0.014472 1 -0.001742 0.000154 0.000152 -64.962 -81.334 165.32 9.3739 2.1572 1.7567 0.074101 -0.021944 -0.035016 -0.037786 0.010994 -0.015758 -0.46704 0.12646 0.50171 0.093741 0.021568 0.017558 1 -0.000189 5.5e-05 -7.9e-05 50.851 0.08 sec Standing unlabeled 0 0 0 0 "" "" "" "" 9.8414 0.025279 -0.37161 0.011677 -0.030075 0.035694 -0.015825 0.003157 0.003743 -0.45801 -0.077393 -0.51904 0.098414 0.000254 -0.003718 1 -7.9e-05 1.6e-05 1.9e-05 171.38 -87.784 -141.25 9.7874 -1.7389 1.5518 0.53575 -0.83158 0.19959 -0.18369 0.085344 0.014226 -0.35327 -0.55957 0.11987 0.097881 -0.017367 0.015493 1 -0.000918 0.000427 7.1e-05 -64.792 -81.305 165.04 9.4189 2.096 1.6851 -0.029714 -0.008146 -0.017432 -0.037309 0.006519 -0.022733 -0.46899 0.12842 0.50195 0.094192 0.020952 0.016844 1 -0.000187 3.3e-05 -0.000114 50.851 0.09 sec Standing unlabeled 0 0 0 0 "" "" "" "" 9.7885 0.01365 -0.3779 0.024999 -0.035427 -0.016992 -0.014118 0.007863 -0.000637 -0.46826 -0.077637 -0.52856 0.097885 0.000136 -0.003783 1 -7.1e-05 3.9e-05 -3e-06 171.33 -87.788 -141.21 9.5095 -1.5363 1.2182 0.31723 -0.54598 -0.12375 -0.10177 0.075528 0.002536 -0.36377 -0.5581 0.11231 0.095099 -0.015356 0.012154 1 -0.000509 0.000378 1.3e-05 -64.591 -81.283 164.79 9.39 2.0775 1.6859 -0.033041 0.00542 -0.049012 -0.040351 0.011134 -0.018518 -0.47925 0.1294 0.49731 0.093903 0.02077 0.01685 1 -0.000202 5.6e-05 -9.3e-05 50.837 0.1 sec Standing unlabeled 0 0 0 0 "" "" "" "" 9.7732 -0.01694 -0.38184 0.044611 -0.059469 -0.032281 -0.005709 8.6e-05 9.3e-05 -0.45508 -0.078369 -0.51855 0.097732 -0.000169 -0.003818 1 -2.9e-05 0 0 171.32 -87.788 -141.2 9.5287 -1.5553 0.79514 0.25849 -0.12058 -0.12943 -0.027943 0.055478 -0.01002 -0.3479 -0.56128 0.11939 0.095288 -0.015557 0.007927 1 -0.00014 0.000277 -5e-05 -64.396 -81.273 164.58 9.3358 2.0045 1.6848 -0.05999 0.060147 -0.11696 -0.043587 0.013048 -0.016609 -0.46362 0.12622 0.50537 0.093361 0.020041 0.016838 1 -0.000218 6.5e-05 -8.3e-05 50.816 0.11 sec Standing unlabeled 0 0 0 0 "" "" "" "" 9.7929 0.026551 -0.34584 -0.008965 -0.040584 -0.01376 -0.002096 -0.002391 -0.001238 -0.45386 -0.077881 -0.52612 0.097929 0.000265 -0.003457 1 -1e-05 -1.2e-05 -6e-06 171.29 -87.787 -141.17 9.52 -1.2134 0.55635 -0.11404 0.057395 -0.20044 0.028553 0.040967 -0.019139 -0.34692 -0.56274 0.11255 0.0952 -0.012144 0.005542 1 0.000143 0.000205 -9.6e-05 -64.203 -81.271 164.4 9.3467 1.9902 1.6578 -0.094069 0.05733 -0.11432 -0.045801 0.007869 -0.015588 -0.46436 0.12476 0.49854 0.093469 0.019898 0.01657 1 -0.000229 3.9e-05 -7.8e-05 50.8 0.12 sec Standing unlabeled 0 0 0 0 "" "" "" "" 9.7885 0.013956 -0.37776 0.025063 -0.035661 -0.016994 0.000794 -0.000506 -0.002226 -0.45874 -0.075684 -0.52173 0.097885 0.000138 -0.003777 1 4e-06 -3e-06 -1.1e-05 171.25 -87.786 -141.13 9.5079 -0.9794 0.4154 -0.36401 0.15712 -0.25368 0.002321 0.025153 -0.007495 -0.35278 -0.55908 0.11621 0.095079 -0.009798 0.004142 1 1.2e-05 0.000126 -3.7e-05 -64.097 -81.267 164.3 9.3211 1.9364 1.6569 -0.11746 0.098567 -0.15068 -0.042277 0.003631 -0.006271 -0.4707 0.12646 0.50171 0.093212 0.019364 0.016563 1 -0.000211 1.8e-05 -3.1e-05 50.781 0.13 sec Standing unlabeled 0 0 0 0 "" "" "" "" 9.7885 0.014183 -0.3782 0.0251 -0.035739 -0.016994 0.001036 -0.008405 -0.002469 -0.46167 -0.074951 -0.52808 0.097885 0.000141 -0.003778 1 5e-06 -4.2e-05 -1.2e-05 171.22 -87.781 -141.09 9.627 -1.1441 0.29084 -0.24324 0.31605 -0.12175 -0.056737 0.019051 0.012294 -0.35205 -0.55835 0.10986 0.096271 -0.011435 0.002902 1 -0.000284 9.5e-05 6.1e-05 -64.078 -81.254 164.25 9.3012 1.9319 1.714 -0.068698 0.13209 -0.16074 -0.038382 -0.002992 -0.003014 -0.4729 0.12817 0.49439 0.093012 0.019321 0.017137 1 -0.000192 -1.5e-05 -1.5e-05 50.77 0.14 sec Standing unlabeled 0 0 0 0 "" "" "" "" 9.8457 0.038871 -0.34052 -0.022183 -0.035552 0.038925 0.004238 -0.010562 -0.005582 -0.4585 -0.072998 -0.52393 0.098458 0.000386 -0.0034 1 2.1e-05 -5.3e-05 -2.8e-05 171.16 -87.774 -141.03 9.6812 -1.4293 0.20259 0.009049 0.45747 -0.035145 -0.092291 0.029874 0.025371 -0.35083 -0.5542 0.11353 0.096814 -0.01428 0.002018 1 -0.000461 0.000149 0.000127 -64.064 -81.232 164.19 9.3297 1.9506 1.7148 -0.0649 0.11866 -0.12915 -0.028205 -0.011302 0.014627 -0.46704 0.13379 0.50098 0.093295 0.019515 0.01715 1 -0.000141 -5.7e-05 7.3e-05 50.755 0.15 sec Standing unlabeled 0 0 0 0 "" "" "" "" 9.8839 0.045951 -0.38688 0.012605 -0.007808 0.078854 0.003543 -0.006334 0.000551 -0.46338 -0.077393 -0.521 0.098839 0.00046 -0.003866 1 1.8e-05 -3.2e-05 3e-06 171.17 -87.771 -141.04 9.6207 -1.7919 0.08738 0.34792 0.63471 -0.052892 -0.096013 0.043128 0.03527 -0.35645 -0.56128 0.1145 0.096211 -0.017902 0.000862 1 -0.00048 0.000216 0.000176 -64.024 -81.202 164.09 9.3585 1.9685 1.7149 -0.061111 0.10523 -0.097573 -0.023854 -0.01553 0.01505 -0.47388 0.12329 0.50098 0.093583 0.019694 0.017154 1 -0.000119 -7.8e-05 7.5e-05 50.75
T.HurriedPace_mat
ans = 2435×74 timetable
Time GeneralEvent ClinicalEvent L Foot Contact R Foot Contact L Foot Pressure R Foot Pressure Walkway_X Walkway_Y WalkwayPressureLevel WalkwayFoot LowerBack_Acc_X LowerBack_Acc_Y LowerBack_Acc_Z LowerBack_FreeAcc_E LowerBack_FreeAcc_N LowerBack_FreeAcc_U LowerBack_Gyr_X LowerBack_Gyr_Y LowerBack_Gyr_Z LowerBack_Mag_X LowerBack_Mag_Y LowerBack_Mag_Z LowerBack_VelInc_X LowerBack_VelInc_Y LowerBack_VelInc_Z LowerBack_OriInc_q0 LowerBack_OriInc_q1 LowerBack_OriInc_q2 LowerBack_OriInc_q3 LowerBack_Roll LowerBack_Pitch LowerBack_Yaw R_Wrist_Acc_X R_Wrist_Acc_Y R_Wrist_Acc_Z R_Wrist_FreeAcc_E R_Wrist_FreeAcc_N R_Wrist_FreeAcc_U R_Wrist_Gyr_X R_Wrist_Gyr_Y R_Wrist_Gyr_Z R_Wrist_Mag_X R_Wrist_Mag_Y R_Wrist_Mag_Z R_Wrist_VelInc_X R_Wrist_VelInc_Y R_Wrist_VelInc_Z R_Wrist_OriInc_q0 R_Wrist_OriInc_q1 R_Wrist_OriInc_q2 R_Wrist_OriInc_q3 R_Wrist_Roll R_Wrist_Pitch R_Wrist_Yaw L_Wrist_Acc_X L_Wrist_Acc_Y L_Wrist_Acc_Z L_Wrist_FreeAcc_E L_Wrist_FreeAcc_N L_Wrist_FreeAcc_U L_Wrist_Gyr_X L_Wrist_Gyr_Y L_Wrist_Gyr_Z L_Wrist_Mag_X L_Wrist_Mag_Y L_Wrist_Mag_Z L_Wrist_VelInc_X L_Wrist_VelInc_Y L_Wrist_VelInc_Z L_Wrist_OriInc_q0 L_Wrist_OriInc_q1 L_Wrist_OriInc_q2 L_Wrist_OriInc_q3 L_Wrist_Roll ________ ____________ _____________ ______________ ______________ _______________ _______________ _____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ _____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ _________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ _________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ _______________ _______________ _______________ ___________________ ___________________ ___________________ _______________ _______________ _______________ _______________ _______________ _______________ __________________ __________________ __________________ ___________________ ___________________ ___________________ ___________________ ______________ _______________ _____________ _____________ _____________ _____________ _________________ _________________ _________________ _____________ _____________ _____________ _____________ _____________ _____________ ________________ ________________ ________________ _________________ _________________ _________________ _________________ ____________ _____________ ___________ _____________ _____________ _____________ _________________ _________________ _________________ _____________ _____________ _____________ _____________ _____________ _____________ ________________ ________________ ________________ _________________ _________________ _________________ _________________ ____________ 0 sec Standing unlabeled 1 1 216 246 "26|27|28|29|30|31|32|20|21|22|23|24|25|26|27|28|29|30|31|32|33|19|20|21|22|23|24|25|26|27|29|30|31|32|33|34|18|19|20|21|22|23|24|25|26|27|30|31|32|33|34|18|19|20|21|22|23|24|25|26|27|31|32|18|19|20|21|22|23|24|25|26|27|30|31|32|18|19|20|21|22|23|24|25|26|27|30|31|32|19|20|21|22|31|30|31|32|33|34|18|19|20|21|22|23|24|25|26|27|32|34|18|19|20|21|22|23|24|25|26|27|31|32|34|19|20|21|22|23|24|25|26|27|33|34|19|20|21|22|23|24|25|26|27|20|21|22|23|24|25|26|27|31|32|21|22|23|25|26|27|29|30|31" "12|12|12|12|12|12|12|13|13|13|13|13|13|13|13|13|13|13|13|13|13|14|14|14|14|14|14|14|14|14|14|14|14|14|14|14|15|15|15|15|15|15|15|15|15|15|15|15|15|15|15|16|16|16|16|16|16|16|16|16|16|16|16|17|17|17|17|17|17|17|17|17|17|17|17|17|18|18|18|18|18|18|18|18|18|18|18|18|18|19|19|19|19|19|30|30|30|30|30|31|31|31|31|31|31|31|31|31|31|31|31|32|32|32|32|32|32|32|32|32|32|32|32|32|33|33|33|33|33|33|33|33|33|33|33|34|34|34|34|34|34|34|34|34|35|35|35|35|35|35|35|35|35|35|36|36|36|36|36|36|36|36|36" "5|6|5|5|5|4|2|3|5|7|4|4|6|5|6|4|4|5|4|3|3|3|6|6|7|6|4|6|5|5|2|2|2|3|3|2|3|2|4|5|4|5|3|6|4|4|2|3|2|2|2|2|3|4|3|4|4|4|5|3|4|2|2|3|2|3|3|4|3|4|4|3|2|2|2|2|3|4|3|4|4|4|2|3|3|2|3|3|3|4|3|3|2|2|2|3|2|2|2|3|5|5|5|5|4|3|4|4|3|2|3|3|4|5|6|6|6|5|7|5|4|3|2|2|3|3|5|5|6|5|7|7|5|2|2|3|4|5|6|6|3|7|7|4|4|6|5|5|4|5|8|2|4|2|3|3|3|3|8|3|2|2|3" "R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L" 9.9 -0.083512 0.14742 0.05508 -0.062989 0.088389 -0.002838 -0.002228 -0.007354 -0.81177 -0.12183 -0.42065 0.099 -0.000839 0.001475 1 -1.4e-05 -1.1e-05 -3.7e-05 0.13354 -89.11 36.56 9.0134 -1.9792 -0.92783 0.35011 1.4364 -0.65661 0.36375 0.031008 0.017166 -0.66895 -0.33496 0.12231 0.090134 -0.019767 -0.009328 1 0.001819 0.000155 8.6e-05 -74.328 -82.067 -178.03 9.4858 1.8942 1.6817 0.012644 0.085283 0.005061 -0.003854 -0.01336 0.031753 -0.71606 0.073486 0.30273 0.094853 0.018957 0.016823 1 -1.9e-05 -6.7e-05 0.000159 50.253 0.01 sec Standing unlabeled 1 1 214 248 "26|27|28|29|30|31|32|20|21|22|23|24|25|26|27|28|29|30|31|32|33|19|20|21|22|23|24|25|26|27|29|30|31|32|33|34|18|19|20|21|22|23|24|25|26|27|30|31|32|33|34|18|19|20|21|22|23|24|25|26|27|30|31|32|18|19|20|21|22|23|24|25|26|27|30|31|32|18|19|20|21|22|23|24|25|26|27|30|31|32|19|20|21|22|31|30|31|32|33|34|18|19|20|21|22|23|24|25|26|27|34|18|19|20|21|22|23|24|25|26|27|31|32|34|19|20|21|22|23|24|25|26|27|33|34|19|20|21|22|23|24|25|26|27|20|21|22|23|24|25|26|27|31|32|21|22|23|25|26|27|30|31" "12|12|12|12|12|12|12|13|13|13|13|13|13|13|13|13|13|13|13|13|13|14|14|14|14|14|14|14|14|14|14|14|14|14|14|14|15|15|15|15|15|15|15|15|15|15|15|15|15|15|15|16|16|16|16|16|16|16|16|16|16|16|16|16|17|17|17|17|17|17|17|17|17|17|17|17|17|18|18|18|18|18|18|18|18|18|18|18|18|18|19|19|19|19|19|30|30|30|30|30|31|31|31|31|31|31|31|31|31|31|31|32|32|32|32|32|32|32|32|32|32|32|32|32|33|33|33|33|33|33|33|33|33|33|33|34|34|34|34|34|34|34|34|34|35|35|35|35|35|35|35|35|35|35|36|36|36|36|36|36|36|36" "5|6|5|5|5|4|2|3|5|7|4|4|6|5|6|4|4|5|4|3|3|3|5|6|7|6|4|6|5|5|2|2|2|3|3|2|3|2|4|5|4|5|3|6|4|4|2|3|2|2|2|2|3|4|3|4|4|4|5|4|4|2|2|2|3|2|3|3|4|3|4|4|3|2|2|2|2|3|4|3|4|4|4|2|3|3|2|3|3|4|4|3|3|2|2|2|3|2|2|2|3|5|5|5|5|4|3|4|4|3|3|3|4|5|6|6|6|5|7|5|4|3|2|2|3|3|5|5|6|5|7|7|5|2|2|3|4|5|6|6|3|7|7|4|3|6|5|5|4|5|8|2|4|2|3|4|3|3|8|3|2|3" "R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L" 9.8846 -0.051488 0.11378 0.063302 -0.017634 0.072499 -0.003067 0.008798 -0.002452 -0.81201 -0.12427 -0.42627 0.098846 -0.000516 0.001133 1 -1.5e-05 4.4e-05 -1.2e-05 0.25422 -89.105 36.439 8.9103 -1.7771 -0.96626 0.15511 1.4192 -0.78786 0.44478 -0.014207 -0.00356 -0.67188 -0.3352 0.12085 0.089104 -0.017752 -0.009696 1 0.002224 -7.1e-05 -1.8e-05 -74.114 -82.07 -177.99 9.4805 2.0016 1.6643 0.042854 -0.021647 0.018578 -0.002258 -0.012709 0.03306 -0.71826 0.071777 0.29883 0.094801 0.020032 0.016649 1 -1.1e-05 -6.4e-05 0.000165 50.229 0.02 sec Standing unlabeled 1 1 214 248 "26|27|28|29|30|31|32|20|21|22|23|24|25|26|27|28|29|30|31|32|33|19|20|21|22|23|24|25|26|27|29|30|31|32|33|34|18|19|20|21|22|23|24|25|26|27|30|31|32|33|34|18|19|20|21|22|23|24|25|26|27|30|31|32|18|19|20|21|22|23|24|25|26|27|30|31|32|18|19|20|21|22|23|24|25|26|27|30|31|32|19|20|21|22|31|30|31|32|33|34|18|19|20|21|22|23|24|25|26|27|34|18|19|20|21|22|23|24|25|26|27|31|32|34|19|20|21|22|23|24|25|26|27|33|34|19|20|21|22|23|24|25|26|27|20|21|22|23|24|25|26|27|31|32|21|22|23|25|26|27|30|31" "12|12|12|12|12|12|12|13|13|13|13|13|13|13|13|13|13|13|13|13|13|14|14|14|14|14|14|14|14|14|14|14|14|14|14|14|15|15|15|15|15|15|15|15|15|15|15|15|15|15|15|16|16|16|16|16|16|16|16|16|16|16|16|16|17|17|17|17|17|17|17|17|17|17|17|17|17|18|18|18|18|18|18|18|18|18|18|18|18|18|19|19|19|19|19|30|30|30|30|30|31|31|31|31|31|31|31|31|31|31|31|32|32|32|32|32|32|32|32|32|32|32|32|32|33|33|33|33|33|33|33|33|33|33|33|34|34|34|34|34|34|34|34|34|35|35|35|35|35|35|35|35|35|35|36|36|36|36|36|36|36|36" "5|6|5|5|5|4|2|3|5|7|4|4|6|5|6|4|4|5|4|3|3|3|5|6|7|6|4|6|5|5|2|2|2|3|3|2|3|2|4|5|4|5|3|6|4|4|2|3|2|2|2|2|3|4|3|4|4|4|5|4|4|2|2|2|3|2|3|3|4|3|4|4|3|2|2|2|2|3|4|3|4|4|4|2|3|3|2|3|3|4|4|3|3|2|2|2|3|2|2|2|3|5|5|5|5|4|3|4|4|3|3|3|4|5|6|6|6|5|7|5|4|3|2|2|3|3|5|5|6|5|7|7|5|2|2|3|4|5|6|6|3|7|7|4|3|6|5|5|4|5|8|2|4|2|3|4|3|3|8|3|2|3" "R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L" 9.8976 -0.083318 0.1142 0.082997 -0.042986 0.085472 -0.001818 0.009535 -0.000811 -0.80737 -0.12012 -0.42871 0.098976 -0.000834 0.001137 1 -9e-06 4.8e-05 -4e-06 0.32186 -89.1 36.374 9.0356 -1.6121 -0.82032 0.022784 1.2327 -0.6807 0.51646 -0.067878 -0.036032 -0.66406 -0.33227 0.12085 0.090356 -0.016116 -0.008214 1 0.002582 -0.000339 -0.00018 -74.036 -82.099 -177.77 9.5132 2.049 1.6653 0.056988 -0.062685 0.059774 -0.008078 -0.00968 0.031635 -0.7102 0.072266 0.29736 0.095128 0.020506 0.016656 1 -4e-05 -4.8e-05 0.000158 50.2 0.03 sec Standing unlabeled 1 1 214 248 "26|27|28|29|30|31|32|20|21|22|23|24|25|26|27|28|29|30|31|32|33|19|20|21|22|23|24|25|26|27|29|30|31|32|33|34|18|19|20|21|22|23|24|25|26|27|30|31|32|33|34|18|19|20|21|22|23|24|25|26|27|30|31|32|18|19|20|21|22|23|24|25|26|27|30|31|32|18|19|20|21|22|23|24|25|26|27|30|31|32|19|20|21|22|31|30|31|32|33|34|18|19|20|21|22|23|24|25|26|27|34|18|19|20|21|22|23|24|25|26|27|31|32|34|19|20|21|22|23|24|25|26|27|33|34|19|20|21|22|23|24|25|26|27|20|21|22|23|24|25|26|27|31|32|21|22|23|25|26|27|29|30|31" "12|12|12|12|12|12|12|13|13|13|13|13|13|13|13|13|13|13|13|13|13|14|14|14|14|14|14|14|14|14|14|14|14|14|14|14|15|15|15|15|15|15|15|15|15|15|15|15|15|15|15|16|16|16|16|16|16|16|16|16|16|16|16|16|17|17|17|17|17|17|17|17|17|17|17|17|17|18|18|18|18|18|18|18|18|18|18|18|18|18|19|19|19|19|19|30|30|30|30|30|31|31|31|31|31|31|31|31|31|31|31|32|32|32|32|32|32|32|32|32|32|32|32|32|33|33|33|33|33|33|33|33|33|33|33|34|34|34|34|34|34|34|34|34|35|35|35|35|35|35|35|35|35|35|36|36|36|36|36|36|36|36|36" "5|6|5|5|5|4|2|3|5|7|4|4|6|5|6|4|4|5|4|3|3|3|5|6|7|6|4|6|5|5|2|2|2|3|3|2|3|2|4|5|4|5|3|6|4|4|2|3|2|2|2|2|3|4|3|4|4|4|5|4|4|2|2|2|3|2|3|3|4|3|4|4|3|2|2|2|2|3|4|3|4|4|4|2|3|3|2|3|3|4|4|3|3|2|2|2|3|2|2|2|3|5|5|5|5|4|3|4|4|3|3|3|4|5|6|6|6|5|7|5|4|3|2|2|3|3|5|5|6|5|7|7|5|2|2|3|4|5|5|6|3|7|7|4|3|6|5|5|4|5|8|2|4|2|3|4|3|3|8|3|2|2|3" "R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L" 9.8448 -0.085776 0.10117 0.094844 -0.037497 0.032465 -0.00309 0.002643 -0.001977 -0.8169 -0.11255 -0.43018 0.098448 -0.000859 0.00101 1 -1.5e-05 1.3e-05 -1e-05 0.42458 -89.098 36.271 9.9418 -1.2076 -0.069944 -0.24483 0.38749 0.19194 0.56763 -0.15455 -0.10496 -0.6731 -0.3269 0.12402 0.099412 -0.012127 -0.000657 1 0.002838 -0.000773 -0.000525 -74.196 -82.18 -177.28 9.514 2.046 1.6647 0.057168 -0.062666 0.059773 -0.01252 -0.006585 0.028422 -0.71973 0.080322 0.29614 0.095136 0.020474 0.016649 1 -6.3e-05 -3.3e-05 0.000142 50.167 0.04 sec Standing unlabeled 1 1 215 248 "26|27|28|29|30|31|32|20|21|22|23|24|25|26|27|28|29|30|31|32|33|19|20|21|22|23|24|25|26|27|29|30|31|32|33|34|18|19|20|21|22|23|24|25|26|27|30|31|32|33|34|18|19|20|21|22|23|24|25|26|27|31|32|18|19|20|21|22|23|24|25|26|27|30|31|32|18|19|20|21|22|23|24|25|26|27|30|31|32|19|20|21|22|31|30|31|32|33|34|18|19|20|21|22|23|24|25|26|27|34|18|19|20|21|22|23|24|25|26|27|31|32|34|19|20|21|22|23|24|25|26|27|33|34|19|20|21|22|23|24|25|26|27|20|21|22|23|24|25|26|27|31|32|21|22|23|25|26|27|30|31" "12|12|12|12|12|12|12|13|13|13|13|13|13|13|13|13|13|13|13|13|13|14|14|14|14|14|14|14|14|14|14|14|14|14|14|14|15|15|15|15|15|15|15|15|15|15|15|15|15|15|15|16|16|16|16|16|16|16|16|16|16|16|16|17|17|17|17|17|17|17|17|17|17|17|17|17|18|18|18|18|18|18|18|18|18|18|18|18|18|19|19|19|19|19|30|30|30|30|30|31|31|31|31|31|31|31|31|31|31|31|32|32|32|32|32|32|32|32|32|32|32|32|32|33|33|33|33|33|33|33|33|33|33|33|34|34|34|34|34|34|34|34|34|35|35|35|35|35|35|35|35|35|35|36|36|36|36|36|36|36|36" "5|6|5|5|5|4|2|3|5|7|4|4|6|5|7|4|4|5|4|3|3|3|5|6|7|6|4|6|5|5|2|2|2|3|3|2|3|2|4|5|4|4|4|6|4|4|2|3|2|2|2|2|3|4|3|4|4|4|5|4|4|2|2|3|2|3|3|4|3|4|4|3|2|2|2|2|3|4|3|4|4|4|2|3|3|2|3|3|4|4|3|3|2|2|2|3|2|2|2|3|5|5|5|5|4|3|4|4|3|3|3|4|5|6|6|6|5|7|5|4|3|2|2|3|3|5|5|6|5|7|7|5|2|2|3|4|5|6|6|3|7|7|4|3|6|5|5|4|5|8|3|4|2|3|4|3|3|8|3|2|3" "R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L" 9.8893 -0.050271 0.18453 0.0077 -0.05832 0.078329 -0.004296 0.004719 0.001107 -0.80395 -0.11035 -0.41699 0.098893 -0.000502 0.001843 1 -2.1e-05 2.4e-05 6e-06 0.41298 -89.096 36.282 11.272 -0.27631 0.90262 -0.97482 -0.8434 1.425 0.52651 -0.12482 -0.16536 -0.66235 -0.32324 0.1377 0.11271 -0.00288 0.009089 1 0.002633 -0.000624 -0.000827 -74.199 -82.289 -176.97 9.5226 2.074 1.6511 0.055673 -0.095104 0.071409 -0.015059 -0.004596 0.025166 -0.70776 0.08374 0.31079 0.095223 0.020754 0.016512 1 -7.5e-05 -2.3e-05 0.000126 50.134 0.05 sec Standing unlabeled 1 1 216 249 "26|27|28|29|30|31|32|20|21|22|23|24|25|26|27|28|29|30|31|32|33|19|20|21|22|23|24|25|26|27|29|30|31|32|33|34|18|19|20|21|22|23|24|25|26|27|30|31|32|33|34|18|19|20|21|22|23|24|25|26|27|31|32|18|19|20|21|22|23|24|25|26|27|30|31|32|18|19|20|21|22|23|24|25|26|27|30|31|32|18|19|20|21|22|31|30|31|32|33|34|18|19|20|21|22|23|24|25|26|27|34|18|19|20|21|22|23|24|25|26|27|31|32|34|19|20|21|22|23|24|25|26|27|33|34|19|20|21|22|23|24|25|26|27|20|21|22|23|24|25|26|27|31|32|21|22|23|25|26|27|29|30|31" "12|12|12|12|12|12|12|13|13|13|13|13|13|13|13|13|13|13|13|13|13|14|14|14|14|14|14|14|14|14|14|14|14|14|14|14|15|15|15|15|15|15|15|15|15|15|15|15|15|15|15|16|16|16|16|16|16|16|16|16|16|16|16|17|17|17|17|17|17|17|17|17|17|17|17|17|18|18|18|18|18|18|18|18|18|18|18|18|18|19|19|19|19|19|19|30|30|30|30|30|31|31|31|31|31|31|31|31|31|31|31|32|32|32|32|32|32|32|32|32|32|32|32|32|33|33|33|33|33|33|33|33|33|33|33|34|34|34|34|34|34|34|34|34|35|35|35|35|35|35|35|35|35|35|36|36|36|36|36|36|36|36|36" "5|7|5|5|5|4|2|3|5|7|4|4|6|5|6|4|4|5|4|3|3|3|5|6|7|7|4|6|5|5|2|2|2|3|3|2|3|2|4|5|4|5|3|6|4|4|2|3|2|2|2|2|3|4|3|4|4|4|5|3|4|2|2|3|2|3|3|4|3|4|4|3|2|2|2|2|3|4|3|4|4|4|2|3|3|2|3|3|4|2|4|3|3|2|2|2|3|2|2|2|3|5|5|5|5|4|3|4|4|3|3|3|4|5|6|6|6|5|7|5|4|3|2|2|3|3|5|5|6|5|7|7|5|2|2|3|4|6|6|6|3|7|7|4|3|6|5|5|4|5|8|2|4|2|3|4|3|3|8|3|2|2|3" "R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L" 9.862 -0.060401 0.11792 0.067291 -0.026574 0.049966 -0.004909 0.007428 4.9e-05 -0.81714 -0.11572 -0.41895 0.09862 -0.000604 0.001176 1 -2.5e-05 3.7e-05 0 0.43929 -89.092 36.255 11.232 0.41802 1.3772 -1.4472 -1.5141 1.3155 0.27498 0.030212 -0.1364 -0.67236 -0.33105 0.13623 0.11232 0.004085 0.01376 1 0.001375 0.000151 -0.000682 -73.749 -82.358 -177.26 9.5278 2.0937 1.6153 0.031447 -0.12948 0.074351 -0.017924 -0.003484 0.017266 -0.71948 0.080566 0.3064 0.095276 0.020947 0.016153 1 -9e-05 -1.7e-05 8.6e-05 50.108 0.06 sec Standing unlabeled 1 1 215 248 "26|27|28|29|30|31|32|20|21|22|23|24|25|26|27|28|29|30|31|32|33|19|20|21|22|23|24|25|26|27|29|30|31|32|33|34|18|19|20|21|22|23|24|25|26|27|30|31|32|33|34|18|19|20|21|22|23|24|25|26|27|30|31|32|18|19|20|21|22|23|24|25|26|27|30|31|32|18|19|20|21|22|23|24|25|26|27|30|31|32|19|20|21|22|31|30|31|32|33|34|18|19|20|21|22|23|24|25|26|27|34|18|19|20|21|22|23|24|25|26|27|31|32|34|19|20|21|22|23|24|25|26|27|33|34|19|20|21|22|23|24|25|26|27|20|21|22|23|24|25|26|27|31|32|21|22|23|25|26|27|29|30|31" "12|12|12|12|12|12|12|13|13|13|13|13|13|13|13|13|13|13|13|13|13|14|14|14|14|14|14|14|14|14|14|14|14|14|14|14|15|15|15|15|15|15|15|15|15|15|15|15|15|15|15|16|16|16|16|16|16|16|16|16|16|16|16|16|17|17|17|17|17|17|17|17|17|17|17|17|17|18|18|18|18|18|18|18|18|18|18|18|18|18|19|19|19|19|19|30|30|30|30|30|31|31|31|31|31|31|31|31|31|31|31|32|32|32|32|32|32|32|32|32|32|32|32|32|33|33|33|33|33|33|33|33|33|33|33|34|34|34|34|34|34|34|34|34|35|35|35|35|35|35|35|35|35|35|36|36|36|36|36|36|36|36|36" "5|7|5|5|5|4|2|3|5|7|4|4|6|5|6|4|4|5|4|3|3|3|5|6|7|6|4|6|5|5|2|2|2|3|3|2|3|2|4|5|4|5|3|6|4|4|2|3|2|2|2|2|3|4|3|4|4|4|5|3|4|2|2|2|3|2|3|3|4|3|4|4|3|2|2|2|2|3|4|3|4|4|4|2|3|3|2|3|3|4|4|3|3|2|2|2|3|2|2|2|3|5|5|5|5|4|3|4|4|3|3|3|4|5|6|6|6|5|7|5|4|3|2|2|3|3|5|5|6|5|7|7|5|2|2|3|4|5|6|6|3|7|7|4|3|6|5|5|4|5|8|2|4|2|3|4|3|3|8|3|2|2|3" "R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L" 9.8869 -0.050898 0.15163 0.035581 -0.038302 0.075412 -0.003024 0.01161 0.002274 -0.80151 -0.12036 -0.41895 0.09887 -0.000508 0.001511 1 -1.5e-05 5.8e-05 1.1e-05 0.38112 -89.085 36.313 10.147 0.23192 1.4256 -1.1022 -1.4845 0.26806 -0.062675 0.04744 -0.080639 -0.66016 -0.3352 0.13794 0.10147 0.002283 0.014231 1 -0.000313 0.000237 -0.000403 -73.482 -82.393 -177.56 9.5754 2.0759 1.5617 -0.033348 -0.13233 0.10792 -0.019629 -0.004426 0.014409 -0.7063 0.075684 0.30957 0.095753 0.020767 0.015617 1 -9.8e-05 -2.2e-05 7.2e-05 50.087 0.07 sec Standing unlabeled 1 1 216 247 "26|27|28|29|30|31|32|20|21|22|23|24|25|26|27|28|29|30|31|32|33|19|20|21|22|23|24|25|26|27|29|30|31|32|33|34|18|19|20|21|22|23|24|25|26|27|30|31|32|33|34|18|19|20|21|22|23|24|25|26|27|30|31|32|18|19|20|21|22|23|24|25|26|27|30|31|32|18|19|20|21|22|23|24|25|26|27|30|31|32|19|20|21|22|31|30|31|32|33|34|18|19|20|21|22|23|24|25|26|27|34|18|19|20|21|22|23|24|25|26|27|31|32|34|19|20|21|22|23|24|25|26|27|33|34|19|20|21|22|23|24|25|26|27|20|21|22|23|24|25|26|27|31|32|21|22|23|25|26|27|29|30|31" "12|12|12|12|12|12|12|13|13|13|13|13|13|13|13|13|13|13|13|13|13|14|14|14|14|14|14|14|14|14|14|14|14|14|14|14|15|15|15|15|15|15|15|15|15|15|15|15|15|15|15|16|16|16|16|16|16|16|16|16|16|16|16|16|17|17|17|17|17|17|17|17|17|17|17|17|17|18|18|18|18|18|18|18|18|18|18|18|18|18|19|19|19|19|19|30|30|30|30|30|31|31|31|31|31|31|31|31|31|31|31|32|32|32|32|32|32|32|32|32|32|32|32|32|33|33|33|33|33|33|33|33|33|33|33|34|34|34|34|34|34|34|34|34|35|35|35|35|35|35|35|35|35|35|36|36|36|36|36|36|36|36|36" "5|6|5|5|5|4|2|3|5|7|4|4|6|5|6|4|4|5|4|3|3|3|5|6|7|6|4|6|5|5|2|2|2|3|3|2|3|2|4|5|4|5|3|6|4|4|2|3|2|2|2|2|3|4|3|4|4|4|5|3|4|2|2|2|3|2|3|3|4|3|4|4|3|2|2|2|2|3|4|3|4|4|4|2|3|3|2|3|3|4|4|3|3|2|2|2|3|2|2|2|3|5|5|5|5|4|3|4|4|3|3|3|4|5|6|6|6|5|7|5|4|3|2|2|3|3|5|5|6|5|7|7|5|2|2|3|4|6|6|6|3|7|7|4|3|6|5|5|4|5|8|2|4|2|3|4|3|3|8|3|2|2|3" "R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L" 9.8763 -0.018895 0.18777 -0.011899 -0.033353 0.065355 -0.006391 0.012967 0.006149 -0.80835 -0.11768 -0.42407 0.098763 -0.000186 0.001871 1 -3.2e-05 6.5e-05 3.1e-05 0.18782 -89.078 36.504 9.7374 -0.18326 0.77863 -0.86371 -0.73614 -0.10865 -0.32271 -0.084507 -0.023395 -0.66284 -0.33154 0.13354 0.09737 -0.001831 0.00783 1 -0.001614 -0.000423 -0.000117 -73.978 -82.418 -177.24 9.5904 2.1229 1.5937 0.010642 -0.16096 0.13695 -0.029056 -0.001226 0.010172 -0.71045 0.077148 0.30615 0.095902 0.021236 0.015934 1 -0.000145 -6e-06 5.1e-05 50.061 0.08 sec Standing unlabeled 1 1 216 249 "26|27|28|29|30|31|32|20|21|22|23|24|25|26|27|28|29|30|31|32|33|19|20|21|22|23|24|25|26|27|29|30|31|32|33|34|18|19|20|21|22|23|24|25|26|27|30|31|32|33|34|18|19|20|21|22|23|24|25|26|27|30|31|32|18|19|20|21|22|23|24|25|26|27|30|31|32|18|19|20|21|22|23|24|25|26|27|30|31|32|19|20|21|22|31|30|31|32|33|34|18|19|20|21|22|23|24|25|26|27|34|18|19|20|21|22|23|24|25|26|27|31|32|34|19|20|21|22|23|24|25|26|27|33|34|19|20|21|22|23|24|25|26|27|20|21|22|23|24|25|26|27|31|32|21|22|23|25|26|27|29|30|31" "12|12|12|12|12|12|12|13|13|13|13|13|13|13|13|13|13|13|13|13|13|14|14|14|14|14|14|14|14|14|14|14|14|14|14|14|15|15|15|15|15|15|15|15|15|15|15|15|15|15|15|16|16|16|16|16|16|16|16|16|16|16|16|16|17|17|17|17|17|17|17|17|17|17|17|17|17|18|18|18|18|18|18|18|18|18|18|18|18|18|19|19|19|19|19|30|30|30|30|30|31|31|31|31|31|31|31|31|31|31|31|32|32|32|32|32|32|32|32|32|32|32|32|32|33|33|33|33|33|33|33|33|33|33|33|34|34|34|34|34|34|34|34|34|35|35|35|35|35|35|35|35|35|35|36|36|36|36|36|36|36|36|36" "5|7|5|5|5|4|2|3|5|7|4|4|6|5|6|4|4|5|4|3|3|3|5|6|7|6|4|6|5|5|2|2|2|3|3|2|3|2|4|5|4|4|3|6|4|4|2|3|2|2|2|2|3|4|3|4|4|4|5|4|4|2|2|2|3|2|3|3|4|3|4|4|3|2|2|2|2|3|4|3|4|4|4|2|3|3|2|4|3|4|4|3|3|2|2|2|3|2|2|2|3|5|5|5|5|4|3|4|4|3|3|3|4|5|6|6|6|5|7|5|4|3|2|2|3|3|5|5|6|5|7|7|5|2|2|3|4|6|6|6|3|7|7|4|3|6|5|5|4|5|8|2|4|2|3|4|3|3|8|3|2|2|3" "R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L" 9.9018 -0.026804 0.13568 0.035869 -0.007197 0.089999 -0.005162 0.017045 0.002593 -0.81103 -0.10986 -0.42285 0.099018 -0.000267 0.001348 1 -2.6e-05 8.5e-05 1.3e-05 0.12689 -89.069 36.565 9.782 -0.50271 0.11317 -0.77964 -0.017102 -0.04823 -0.46096 -0.1711 0.023887 -0.66821 -0.32617 0.13208 0.097819 -0.005013 0.001227 1 -0.002305 -0.000856 0.000119 -74.969 -82.429 -176.51 9.5666 2.1021 1.5788 -0.004756 -0.15234 0.10739 -0.027699 -0.003794 0.002385 -0.71533 0.084717 0.30713 0.095665 0.021025 0.015787 1 -0.000138 -1.9e-05 1.2e-05 50.05 0.09 sec Standing unlabeled 1 1 216 248 "26|27|28|29|30|31|32|20|21|22|23|24|25|26|27|28|29|30|31|32|33|19|20|21|22|23|24|25|26|27|29|30|31|32|33|34|18|19|20|21|22|23|24|25|26|27|30|31|32|33|34|18|19|20|21|22|23|24|25|26|27|30|31|32|18|19|20|21|22|23|24|25|26|27|30|31|32|18|19|20|21|22|23|24|25|26|27|30|31|32|19|20|21|22|31|30|31|32|33|34|18|19|20|21|22|23|24|25|26|27|34|18|19|20|21|22|23|24|25|26|27|31|32|34|19|20|21|22|23|24|25|26|27|33|34|19|20|21|22|23|24|25|26|27|20|21|22|23|24|25|26|27|31|32|21|22|23|25|26|27|29|30|31" "12|12|12|12|12|12|12|13|13|13|13|13|13|13|13|13|13|13|13|13|13|14|14|14|14|14|14|14|14|14|14|14|14|14|14|14|15|15|15|15|15|15|15|15|15|15|15|15|15|15|15|16|16|16|16|16|16|16|16|16|16|16|16|16|17|17|17|17|17|17|17|17|17|17|17|17|17|18|18|18|18|18|18|18|18|18|18|18|18|18|19|19|19|19|19|30|30|30|30|30|31|31|31|31|31|31|31|31|31|31|31|32|32|32|32|32|32|32|32|32|32|32|32|32|33|33|33|33|33|33|33|33|33|33|33|34|34|34|34|34|34|34|34|34|35|35|35|35|35|35|35|35|35|35|36|36|36|36|36|36|36|36|36" "5|7|5|5|5|4|2|3|5|7|4|4|6|5|6|4|4|5|4|3|3|3|5|6|7|6|4|6|5|5|2|3|2|3|3|2|3|2|4|5|4|4|3|6|4|4|2|3|2|2|2|2|3|4|3|4|4|4|5|3|4|2|2|2|3|2|3|3|4|3|4|4|3|2|2|2|2|3|4|3|4|4|4|2|3|3|2|3|3|4|4|3|3|2|2|2|3|2|2|2|3|5|5|5|5|4|3|4|4|3|3|3|4|5|6|6|6|5|7|5|4|3|2|2|3|3|5|5|6|5|7|7|5|2|2|3|4|6|6|6|3|7|7|4|3|6|5|5|4|5|8|2|4|2|3|4|3|3|8|3|2|2|3" "R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L" 9.906 0.030278 0.1538 -0.011387 0.02904 0.094531 -0.000821 0.019887 0.003377 -0.8064 -0.11401 -0.41333 0.09906 0.000304 0.001528 1 -4e-06 9.9e-05 1.7e-05 0.038938 -89.057 36.654 9.6487 -0.63001 -0.18843 -0.73517 0.29103 -0.17398 -0.54191 -0.16871 0.05461 -0.6648 -0.33179 0.14233 0.09649 -0.006279 -0.001786 1 -0.00271 -0.000844 0.000273 -76.032 -82.422 -175.74 9.5335 2.1105 1.5802 0.00796 -0.16379 0.077295 -0.037795 -0.008055 0.002716 -0.71313 0.081543 0.31641 0.095334 0.02111 0.015802 1 -0.000189 -4e-05 1.4e-05 50.041 0.1 sec Standing unlabeled 1 1 216 247 "26|27|28|29|30|31|32|20|21|22|23|24|25|26|27|28|29|30|31|32|33|19|20|21|22|23|24|25|26|27|29|30|31|32|33|34|18|19|20|21|22|23|24|25|26|27|30|31|32|33|34|18|19|20|21|22|23|24|25|26|27|30|31|32|18|19|20|21|22|23|24|25|26|27|30|31|32|33|18|19|20|21|22|23|24|25|26|27|30|31|32|19|20|21|22|31|30|31|32|33|34|18|19|20|21|22|23|24|25|26|27|34|18|19|20|21|22|23|24|25|26|27|31|32|34|19|20|21|22|23|24|25|26|27|33|34|19|20|21|22|23|24|25|26|27|20|21|22|23|24|25|26|27|31|32|21|22|23|25|26|27|29|30|31" "12|12|12|12|12|12|12|13|13|13|13|13|13|13|13|13|13|13|13|13|13|14|14|14|14|14|14|14|14|14|14|14|14|14|14|14|15|15|15|15|15|15|15|15|15|15|15|15|15|15|15|16|16|16|16|16|16|16|16|16|16|16|16|16|17|17|17|17|17|17|17|17|17|17|17|17|17|17|18|18|18|18|18|18|18|18|18|18|18|18|18|19|19|19|19|19|30|30|30|30|30|31|31|31|31|31|31|31|31|31|31|31|32|32|32|32|32|32|32|32|32|32|32|32|32|33|33|33|33|33|33|33|33|33|33|33|34|34|34|34|34|34|34|34|34|35|35|35|35|35|35|35|35|35|35|36|36|36|36|36|36|36|36|36" "5|6|5|5|5|4|2|3|5|7|4|4|6|5|6|4|5|5|4|3|3|3|5|6|7|6|4|6|5|4|2|2|2|3|3|2|3|2|4|5|4|4|3|6|4|4|2|3|2|2|2|2|3|4|3|4|4|4|5|4|4|2|2|2|3|2|3|3|4|3|4|4|3|2|2|2|2|2|3|4|2|4|4|4|2|3|3|2|3|3|4|4|3|3|2|2|2|3|2|2|2|3|5|5|5|5|4|3|4|4|3|3|3|4|5|6|6|6|5|7|5|4|3|2|2|3|3|5|5|6|5|7|7|5|2|2|3|4|6|6|6|3|7|7|4|3|6|5|5|4|5|8|2|4|2|3|4|3|3|8|3|2|2|3" "R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L" 9.9179 0.071288 0.18928 -0.062768 0.042543 0.10701 -0.009419 0.024573 0.008428 -0.80493 -0.10547 -0.42041 0.099179 0.000717 0.001881 1 -4.7e-05 0.000123 4.2e-05 -0.2302 -89.044 36.919 9.4453 -0.60937 0.058464 -0.65035 0.03239 -0.37001 -0.61784 -0.15801 0.059499 -0.66113 -0.32178 0.13379 0.094454 -0.006064 0.000678 0.99999 -0.003089 -0.00079 0.000297 -77.095 -82.408 -175.03 9.5003 2.0463 1.6365 0.04147 -0.086434 0.041845 -0.044396 -0.011234 -0.005617 -0.71118 0.087646 0.30786 0.095003 0.020464 0.016366 1 -0.000222 -5.6e-05 -2.8e-05 50.044 0.11 sec Standing unlabeled 1 1 218 246 "26|27|28|29|30|31|32|20|21|22|23|24|25|26|27|28|29|30|31|32|33|19|20|21|22|23|24|25|26|27|29|30|31|32|33|34|18|19|20|21|22|23|24|25|26|27|30|31|32|33|34|18|19|20|21|22|23|24|25|26|27|30|31|32|18|19|20|21|22|23|24|25|26|27|30|31|32|18|19|20|21|22|23|24|25|26|27|30|31|32|19|20|21|22|31|30|31|32|33|34|18|19|20|21|22|23|24|25|26|27|32|34|18|19|20|21|22|23|24|25|26|27|31|32|34|19|20|21|22|23|24|25|26|27|33|34|19|20|21|22|23|24|25|26|27|20|21|22|23|24|25|26|27|31|32|21|22|23|25|26|27|29|30|31" "12|12|12|12|12|12|12|13|13|13|13|13|13|13|13|13|13|13|13|13|13|14|14|14|14|14|14|14|14|14|14|14|14|14|14|14|15|15|15|15|15|15|15|15|15|15|15|15|15|15|15|16|16|16|16|16|16|16|16|16|16|16|16|16|17|17|17|17|17|17|17|17|17|17|17|17|17|18|18|18|18|18|18|18|18|18|18|18|18|18|19|19|19|19|19|30|30|30|30|30|31|31|31|31|31|31|31|31|31|31|31|31|32|32|32|32|32|32|32|32|32|32|32|32|32|33|33|33|33|33|33|33|33|33|33|33|34|34|34|34|34|34|34|34|34|35|35|35|35|35|35|35|35|35|35|36|36|36|36|36|36|36|36|36" "5|6|5|5|5|4|2|3|5|7|4|4|6|5|6|4|4|5|4|3|3|3|5|6|7|6|4|6|5|4|2|3|2|3|3|2|3|2|4|5|4|4|3|6|4|4|2|3|2|2|2|2|3|4|3|4|4|4|5|4|4|2|2|2|3|2|3|3|4|3|4|4|3|2|2|2|2|3|4|2|4|4|4|2|3|3|2|3|3|4|4|3|3|2|2|2|3|2|2|2|3|5|5|5|5|4|3|5|4|3|2|3|3|4|5|6|6|6|5|7|5|4|3|2|2|3|3|5|5|6|5|7|7|5|2|2|3|4|6|6|6|3|7|7|4|3|6|5|5|4|5|8|2|4|2|3|4|3|3|8|3|2|2|3" "R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L" 9.8953 0.061165 0.1937 -0.058873 0.033884 0.084475 -0.014013 0.031346 0.010192 -0.80786 -0.11646 -0.42017 0.098953 0.000617 0.001921 1 -7e-05 0.000157 5.1e-05 -0.54672 -89.026 37.23 9.6377 -0.8849 0.63736 -0.24044 -0.45632 -0.12724 -0.69823 -0.12968 0.039435 -0.66553 -0.33179 0.13257 0.096374 -0.008808 0.006467 0.99999 -0.003491 -0.000648 0.000197 -78.068 -82.401 -174.44 9.5222 1.9976 1.6258 0.008272 -0.044436 0.051608 -0.040681 -0.009569 -0.011184 -0.71362 0.078125 0.30908 0.095223 0.019974 0.016258 1 -0.000203 -4.8e-05 -5.6e-05 50.054 0.12 sec Standing unlabeled 1 1 216 250 "26|27|28|29|30|31|32|20|21|22|23|24|25|26|27|28|29|30|31|32|33|19|20|21|22|23|24|25|26|27|29|30|31|32|33|34|18|19|20|21|22|23|24|25|26|27|30|31|32|33|34|18|19|20|21|22|23|24|25|26|27|30|31|32|18|19|20|21|22|23|24|25|26|27|30|31|32|33|18|19|20|21|22|23|24|25|26|27|30|31|32|19|20|21|22|31|30|31|32|33|34|18|19|20|21|22|23|24|25|26|27|34|18|19|20|21|22|23|24|25|26|27|31|32|34|19|20|21|22|23|24|25|26|27|33|34|19|20|21|22|23|24|25|26|27|20|21|22|23|24|25|26|27|31|32|21|22|23|25|26|27|29|30|31" "12|12|12|12|12|12|12|13|13|13|13|13|13|13|13|13|13|13|13|13|13|14|14|14|14|14|14|14|14|14|14|14|14|14|14|14|15|15|15|15|15|15|15|15|15|15|15|15|15|15|15|16|16|16|16|16|16|16|16|16|16|16|16|16|17|17|17|17|17|17|17|17|17|17|17|17|17|17|18|18|18|18|18|18|18|18|18|18|18|18|18|19|19|19|19|19|30|30|30|30|30|31|31|31|31|31|31|31|31|31|31|31|32|32|32|32|32|32|32|32|32|32|32|32|32|33|33|33|33|33|33|33|33|33|33|33|34|34|34|34|34|34|34|34|34|35|35|35|35|35|35|35|35|35|35|36|36|36|36|36|36|36|36|36" "5|7|5|5|5|4|2|3|5|7|4|4|6|5|7|4|4|5|4|3|3|3|5|6|7|6|4|6|5|5|2|3|2|3|3|2|3|2|4|5|4|4|3|6|4|4|2|3|2|2|2|2|3|4|3|4|4|4|5|4|4|2|2|2|3|2|3|3|4|3|4|4|3|2|2|2|2|2|3|4|2|4|4|4|2|3|3|2|3|3|4|4|3|3|2|2|2|3|2|2|2|3|5|5|5|5|4|3|5|4|3|3|3|4|5|6|6|6|5|7|5|4|3|2|2|3|3|5|5|6|5|7|7|5|2|2|3|4|5|6|6|3|7|7|4|3|6|5|5|4|5|8|2|4|2|3|4|3|3|8|3|2|2|3" "R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L" 9.8402 0.057119 0.14832 -0.019218 0.059583 0.028555 -0.018675 0.024406 0.010535 -0.80176 -0.11548 -0.42041 0.098402 0.000577 0.001471 1 -9.3e-05 0.000122 5.3e-05 -0.87479 -89.012 37.548 10.044 -1.5267 1.2303 0.48621 -0.85437 0.37394 -0.6919 -0.064826 0.016952 -0.65772 -0.33154 0.1272 0.10044 -0.015216 0.012388 0.99999 -0.00346 -0.000324 8.5e-05 -78.74 -82.397 -174.16 9.4696 1.9369 1.6309 0.001673 0.007143 -0.010452 -0.036549 -0.009368 -0.016554 -0.70508 0.079346 0.30566 0.094696 0.019364 0.01631 1 -0.000183 -4.7e-05 -8.3e-05 50.074 0.13 sec Standing unlabeled 1 1 217 247 "26|27|28|29|30|31|32|20|21|22|23|24|25|26|27|28|29|30|31|32|33|19|20|21|22|23|24|25|26|27|29|30|31|32|33|34|18|19|20|21|22|23|24|25|26|27|30|31|32|33|34|18|19|20|21|22|23|24|25|26|27|30|31|32|18|19|20|21|22|23|24|25|26|27|30|31|32|18|19|20|21|22|23|24|25|26|27|30|31|32|19|20|21|22|31|30|31|32|33|34|18|19|20|21|22|23|24|25|26|27|34|18|19|20|21|22|23|24|25|26|27|31|32|34|19|20|21|22|23|24|25|26|27|33|34|19|20|21|22|23|24|25|26|27|20|21|22|23|24|25|26|27|31|32|21|22|23|25|26|27|29|30|31" "12|12|12|12|12|12|12|13|13|13|13|13|13|13|13|13|13|13|13|13|13|14|14|14|14|14|14|14|14|14|14|14|14|14|14|14|15|15|15|15|15|15|15|15|15|15|15|15|15|15|15|16|16|16|16|16|16|16|16|16|16|16|16|16|17|17|17|17|17|17|17|17|17|17|17|17|17|18|18|18|18|18|18|18|18|18|18|18|18|18|19|19|19|19|19|30|30|30|30|30|31|31|31|31|31|31|31|31|31|31|31|32|32|32|32|32|32|32|32|32|32|32|32|32|33|33|33|33|33|33|33|33|33|33|33|34|34|34|34|34|34|34|34|34|35|35|35|35|35|35|35|35|35|35|36|36|36|36|36|36|36|36|36" "5|7|5|5|5|4|2|3|5|7|4|4|6|5|6|4|4|5|4|3|3|3|5|6|7|6|4|6|5|5|2|3|2|3|3|2|3|2|4|5|4|4|3|6|4|4|2|3|2|2|2|2|3|4|3|4|4|4|5|4|4|2|2|2|3|2|3|3|4|3|4|4|3|2|2|2|2|3|3|2|4|4|4|2|3|3|2|3|3|4|4|3|3|2|2|2|3|2|2|2|3|5|5|5|5|4|3|4|4|3|3|3|4|5|6|6|6|5|7|5|4|3|2|2|3|3|5|5|6|5|7|7|5|2|2|3|4|6|6|6|3|7|7|4|4|6|5|5|4|5|8|2|4|2|3|4|3|3|8|3|2|2|3" "R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L" 9.8152 0.046414 0.11778 0.012519 0.071136 0.003109 -0.018064 0.021695 0.011594 -0.81079 -0.11084 -0.427 0.098153 0.00047 0.001167 1 -9e-05 0.000108 5.8e-05 -1.2248 -89 37.89 10.263 -2.0406 1.4478 1.003 -0.92964 0.66187 -0.53977 0.015897 -0.000666 -0.66748 -0.33154 0.12134 0.10263 -0.020367 0.014525 1 -0.002699 7.9e-05 -3e-06 -78.971 -82.394 -174.24 9.4787 1.9091 1.6141 -0.026191 0.027196 -0.009914 -0.030186 -0.009403 -0.01732 -0.71655 0.082764 0.30127 0.094788 0.019085 0.016143 1 -0.000151 -4.7e-05 -8.7e-05 50.099 0.14 sec Standing unlabeled 1 1 216 246 "26|27|28|29|30|31|32|20|21|22|23|24|25|26|27|28|29|30|31|32|33|19|20|21|22|23|24|25|26|27|29|30|31|32|33|34|18|19|20|21|22|23|24|25|26|27|30|31|32|33|34|18|19|20|21|22|23|24|25|26|27|30|31|32|18|19|20|21|22|23|24|25|26|27|30|31|32|18|19|20|21|22|23|24|25|26|27|30|31|32|19|20|21|22|31|30|31|32|33|34|18|19|20|21|22|23|24|25|26|27|34|18|19|20|21|22|23|24|25|26|27|31|32|34|19|20|21|22|23|24|25|26|27|33|34|19|20|21|22|23|24|25|26|27|20|21|22|23|24|25|26|27|31|32|21|22|23|25|26|27|29|30|31" "12|12|12|12|12|12|12|13|13|13|13|13|13|13|13|13|13|13|13|13|13|14|14|14|14|14|14|14|14|14|14|14|14|14|14|14|15|15|15|15|15|15|15|15|15|15|15|15|15|15|15|16|16|16|16|16|16|16|16|16|16|16|16|16|17|17|17|17|17|17|17|17|17|17|17|17|17|18|18|18|18|18|18|18|18|18|18|18|18|18|19|19|19|19|19|30|30|30|30|30|31|31|31|31|31|31|31|31|31|31|31|32|32|32|32|32|32|32|32|32|32|32|32|32|33|33|33|33|33|33|33|33|33|33|33|34|34|34|34|34|34|34|34|34|35|35|35|35|35|35|35|35|35|35|36|36|36|36|36|36|36|36|36" "5|7|5|5|5|4|2|3|5|7|4|4|6|5|6|4|4|5|4|3|3|3|5|6|7|6|4|6|5|5|2|3|2|3|3|2|3|2|4|5|4|4|3|6|4|4|2|3|2|2|2|2|3|4|3|4|4|4|5|3|4|2|2|2|3|2|3|3|4|3|4|4|3|2|2|2|2|3|3|2|4|4|4|2|3|3|2|3|3|4|4|3|3|2|2|2|3|2|2|2|3|5|5|5|5|4|3|4|4|3|3|3|4|5|6|6|6|5|7|5|4|3|2|2|3|3|5|5|6|5|7|7|5|2|2|3|4|6|6|6|3|7|7|4|3|6|5|5|4|5|8|2|4|2|3|4|3|3|8|3|2|2|3" "R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L" 9.8175 0.045644 0.15373 -0.015308 0.050836 0.006024 -0.008542 0.008898 0.012144 -0.80054 -0.11572 -0.42676 0.098175 0.000462 0.001533 1 -4.3e-05 4.4e-05 6.1e-05 -1.5929 -88.995 38.254 10.023 -1.883 1.4822 0.89009 -1.0106 0.40396 -0.34762 0.069248 -0.003922 -0.65796 -0.33105 0.12256 0.10023 -0.018806 0.01482 1 -0.001738 0.000346 -2e-05 -78.864 -82.388 -174.54 9.4638 1.8621 1.5819 -0.069716 0.055849 -0.038929 -0.023084 -0.008483 -0.02317 -0.70654 0.080078 0.30151 0.09464 0.018612 0.015821 1 -0.000115 -4.2e-05 -0.000116 50.134 0.15 sec Standing unlabeled 1 1 215 245 "26|27|28|29|30|31|32|20|21|22|23|24|25|26|27|28|29|30|31|32|33|34|19|20|21|22|23|24|25|26|27|29|30|31|32|33|34|18|19|20|21|22|23|24|25|26|27|30|31|32|33|34|18|19|20|21|22|23|24|25|26|27|30|31|32|18|19|20|21|22|23|24|25|26|27|30|31|32|18|19|20|21|22|23|24|25|26|27|30|31|32|19|20|21|22|31|30|31|32|33|34|18|19|20|21|22|23|24|25|26|27|34|18|19|20|21|22|23|24|25|26|27|31|32|34|19|20|21|22|23|24|25|26|27|33|34|19|20|21|22|23|24|25|26|27|20|21|22|23|24|25|26|27|31|32|21|22|23|25|26|27|29|30|31" "12|12|12|12|12|12|12|13|13|13|13|13|13|13|13|13|13|13|13|13|13|13|14|14|14|14|14|14|14|14|14|14|14|14|14|14|14|15|15|15|15|15|15|15|15|15|15|15|15|15|15|15|16|16|16|16|16|16|16|16|16|16|16|16|16|17|17|17|17|17|17|17|17|17|17|17|17|17|18|18|18|18|18|18|18|18|18|18|18|18|18|19|19|19|19|19|30|30|30|30|30|31|31|31|31|31|31|31|31|31|31|31|32|32|32|32|32|32|32|32|32|32|32|32|32|33|33|33|33|33|33|33|33|33|33|33|34|34|34|34|34|34|34|34|34|35|35|35|35|35|35|35|35|35|35|36|36|36|36|36|36|36|36|36" "5|7|5|5|5|4|2|3|5|7|4|4|6|5|6|4|4|5|4|3|3|2|3|5|6|7|6|4|6|5|4|2|2|2|3|3|2|3|2|4|5|4|4|3|6|4|4|2|3|2|2|2|2|3|4|3|4|4|4|5|3|4|2|2|2|3|2|3|3|4|3|4|4|3|2|2|2|2|3|3|2|4|4|4|2|3|3|2|3|3|4|4|3|3|2|2|2|3|2|2|2|3|5|5|5|5|4|3|4|4|3|3|3|4|5|6|6|6|5|7|4|4|3|2|2|3|3|5|5|6|5|7|7|5|2|2|3|4|6|6|6|3|7|7|4|3|6|5|5|4|5|8|2|4|2|3|4|3|3|8|3|2|2|3" "R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L" 9.866 -0.00999 0.15186 0.020214 0.008852 0.054496 -0.010144 0.006007 0.004063 -0.80664 -0.11401 -0.42065 0.09866 -9.8e-05 0.001516 1 -5.1e-05 3e-05 2e-05 -1.696 -88.991 38.353 9.6419 -1.6562 1.1259 0.62073 -0.72674 -0.011468 -0.21874 0.085201 -0.031967 -0.66162 -0.33276 0.1272 0.096421 -0.016565 0.011236 1 -0.001094 0.000426 -0.00016 -78.592 -82.394 -174.94 9.5174 1.8655 1.5731 -0.089054 0.056773 0.012033 -0.017118 -0.004423 -0.018131 -0.70923 0.081055 0.30957 0.095176 0.018648 0.015731 1 -8.6e-05 -2.2e-05 -9.1e-05 50.158
writetimetable(T.HurriedPace ,"test1.csv") % no error
writetimetable(T.HurriedPace_mat,"test2.csv") % no error
type test1.csv
Time,GeneralEvent,ClinicalEvent,L Foot Contact,R Foot Contact,L Foot Pressure,R Foot Pressure,Walkway_X,Walkway_Y,WalkwayPressureLevel,WalkwayFoot,LowerBack_Acc_X,LowerBack_Acc_Y,LowerBack_Acc_Z,LowerBack_FreeAcc_E,LowerBack_FreeAcc_N,LowerBack_FreeAcc_U,LowerBack_Gyr_X,LowerBack_Gyr_Y,LowerBack_Gyr_Z,LowerBack_Mag_X,LowerBack_Mag_Y,LowerBack_Mag_Z,LowerBack_VelInc_X,LowerBack_VelInc_Y,LowerBack_VelInc_Z,LowerBack_OriInc_q0,LowerBack_OriInc_q1,LowerBack_OriInc_q2,LowerBack_OriInc_q3,LowerBack_Roll,LowerBack_Pitch,LowerBack_Yaw,R_Wrist_Acc_X,R_Wrist_Acc_Y,R_Wrist_Acc_Z,R_Wrist_FreeAcc_E,R_Wrist_FreeAcc_N,R_Wrist_FreeAcc_U,R_Wrist_Gyr_X,R_Wrist_Gyr_Y,R_Wrist_Gyr_Z,R_Wrist_Mag_X,R_Wrist_Mag_Y,R_Wrist_Mag_Z,R_Wrist_VelInc_X,R_Wrist_VelInc_Y,R_Wrist_VelInc_Z,R_Wrist_OriInc_q0,R_Wrist_OriInc_q1,R_Wrist_OriInc_q2,R_Wrist_OriInc_q3,R_Wrist_Roll,R_Wrist_Pitch,R_Wrist_Yaw,L_Wrist_Acc_X,L_Wrist_Acc_Y,L_Wrist_Acc_Z,L_Wrist_FreeAcc_E,L_Wrist_FreeAcc_N,L_Wrist_FreeAcc_U,L_Wrist_Gyr_X,L_Wrist_Gyr_Y,L_Wrist_Gyr_Z,L_Wrist_Mag_X,L_Wrist_Mag_Y,L_Wrist_Mag_Z,L_Wrist_VelInc_X,L_Wrist_VelInc_Y,L_Wrist_VelInc_Z,L_Wrist_OriInc_q0,L_Wrist_OriInc_q1,L_Wrist_OriInc_q2,L_Wrist_OriInc_q3,L_Wrist_Roll 0 sec,<undefined>,<undefined>,0,0,0,0,,,,,9.870242,0.123647,-0.321949,-0.081667,0.026105,0.063206,-0.012692,-0.002854,0.002509,-0.461914,-0.082275,-0.525635,0.098702,0.001238,-0.003218,1,-6.3e-05,-1.4e-05,1.3e-05,171.021395,-87.77034,-140.812972,10.171686,0.540284,1.967998,-1.582319,-1.597036,0.315188,0.071557,0.062937,-0.070644,-0.353516,-0.559326,0.130371,0.101725,0.00536,0.01965,1,0.000358,0.000315,-0.000353,-60.961662,-81.372661,163.117895,9.509034,2.239106,1.693058,0.038067,-0.109864,0.101356,-0.014936,0.009074,0.007665,-0.470459,0.123779,0.497314,0.09509,0.022396,0.016925,1,-7.5e-05,4.5e-05,3.8e-05,50.978083 0.01 sec,Standing,unlabeled,0,0,0,0,,,,,9.887132,0.120263,-0.360813,-0.047252,0.042416,0.081553,-0.022446,-0.001962,0.005983,-0.466309,-0.077393,-0.52124,0.098871,0.001205,-0.003607,1,-0.000112,-1e-05,3e-05,171.087791,-87.769569,-140.891189,9.956591,-0.173102,1.431288,-0.967185,-0.928509,0.158004,-0.214348,-0.04178,-0.030601,-0.359375,-0.555176,0.131836,0.099563,-0.001731,0.014336,0.999999,-0.001072,-0.000209,-0.000153,-61.159841,-81.397999,163.199086,9.480664,2.21864,1.693572,0.034757,-0.096292,0.069775,-0.018516,0.009444,0.001655,-0.473633,0.130859,0.502197,0.094807,0.022189,0.016929,1,-9.3e-05,4.7e-05,8e-06,50.953701 0.02 sec,Standing,unlabeled,0,0,0,0,,,,,9.844593,0.100172,-0.347069,-0.047992,0.019515,0.038394,-0.020761,0.000748,0.005439,-0.458252,-0.083496,-0.516113,0.098446,0.001004,-0.003471,1,-0.000104,4e-06,2.7e-05,171.142843,-87.770272,-140.956493,9.909942,-0.47266,0.841234,-0.791705,-0.299156,0.108085,-0.373325,-0.095513,0.027284,-0.347412,-0.562256,0.136475,0.099096,-0.004697,0.008468,0.999998,-0.001867,-0.000478,0.000136,-61.733668,-81.408717,163.56601,9.489032,2.235665,1.709587,0.053936,-0.101543,0.084251,-0.013105,0.00884,0.002025,-0.463379,0.123779,0.504395,0.094891,0.022359,0.01709,1,-6.6e-05,4.4e-05,1e-05,50.932667 0.03 sec,Standing,unlabeled,0,0,0,0,,,,,9.887141,0.119378,-0.360865,-0.047219,0.042242,0.081554,-0.022857,-0.001645,0.004204,-0.459717,-0.080811,-0.527832,0.098871,0.001195,-0.003608,1,-0.000114,-8e-06,2.1e-05,171.181951,-87.769456,-141.006154,9.64629,-0.634361,0.487295,-0.672696,0.056009,-0.156855,-0.493797,-0.102874,0.064255,-0.352783,-0.558838,0.122314,0.096462,-0.0063,0.004938,0.999997,-0.002469,-0.000514,0.000321,-62.468045,-81.402147,164.027523,9.466041,2.267602,1.726388,0.089614,-0.120969,0.071932,-0.019063,0.01206,-0.004437,-0.46875,0.125244,0.494629,0.094662,0.022676,0.017256,1,-9.5e-05,6e-05,-2.2e-05,50.911586 0.04 sec,Standing,unlabeled,0,0,0,0,,,,,9.876774,0.12701,-0.38143,-0.033158,0.059716,0.072029,-0.016256,0.001485,0.005793,-0.458008,-0.081787,-0.524414,0.098768,0.001273,-0.003815,1,-8.1e-05,7e-06,2.9e-05,171.243109,-87.770604,-141.074986,9.432903,-0.898635,0.495015,-0.39084,0.077258,-0.332524,-0.592276,-0.11682,0.081855,-0.353027,-0.563232,0.124756,0.09433,-0.008933,0.005032,0.999995,-0.002961,-0.000584,0.000409,-63.334626,-81.389195,164.563663,9.44035,2.213685,1.725745,0.06625,-0.079719,0.035565,-0.026535,0.009261,-0.008005,-0.468018,0.126221,0.499512,0.094405,0.022135,0.01725,1,-0.000133,4.6e-05,-4e-05,50.894948 0.05 sec,Standing,unlabeled,0,0,0,0,,,,,9.89316,0.097555,-0.371606,-0.027198,0.029516,0.087849,-0.023893,0.00676,0.006671,-0.455566,-0.079346,-0.520996,0.098931,0.000978,-0.00372,1,-0.000119,3.4e-05,3.3e-05,171.297741,-87.774884,-141.140609,9.608595,-1.381993,0.742518,0.092327,-0.082605,-0.077651,-0.642188,-0.116945,0.077491,-0.34668,-0.561035,0.121826,0.096087,-0.013759,0.007526,0.999995,-0.003211,-0.000585,0.000387,-64.220357,-81.377385,165.089861,9.380421,2.207407,1.769383,0.112615,-0.055083,-0.015752,-0.03198,0.008933,-0.014908,-0.462646,0.126953,0.5,0.093807,0.02207,0.017686,1,-0.00016,4.5e-05,-7.5e-05,50.884465 0.06 sec,Standing,unlabeled,0,0,0,0,,,,,9.845727,0.038774,-0.340852,-0.022387,-0.034906,0.038927,-0.022257,0.007608,0.004176,-0.466797,-0.081543,-0.530762,0.098457,0.000389,-0.003412,1,-0.000111,3.8e-05,2.1e-05,171.318464,-87.779354,-141.172416,9.926434,-2.086817,1.031226,0.776152,-0.239158,0.350613,-0.556936,-0.058517,0.059907,-0.360352,-0.564209,0.110352,0.099268,-0.02081,0.010399,0.999996,-0.002785,-0.000293,0.0003,-64.82806,-81.35915,165.384676,9.40265,2.177877,1.71338,0.044253,-0.060774,-0.010494,-0.035922,0.011697,-0.014864,-0.47583,0.124268,0.490967,0.094029,0.021775,0.017124,1,-0.00018,5.8e-05,-7.4e-05,50.867328 0.07 sec,Standing,unlabeled,0,0,0,0,,,,,9.835382,0.04648,-0.36081,-0.008308,-0.01744,0.029401,-0.018233,0.004809,0.004629,-0.458496,-0.07959,-0.523193,0.098354,0.000467,-0.003611,1,-9.1e-05,2.4e-05,2.3e-05,171.351651,-87.782317,-141.213598,10.038935,-2.193898,1.444907,0.929874,-0.633453,0.503088,-0.34843,0.030841,0.030317,-0.3479,-0.563232,0.119141,0.100395,-0.021899,0.014472,0.999998,-0.001742,0.000154,0.000152,-64.962222,-81.334337,165.320339,9.37387,2.157165,1.75671,0.074101,-0.021944,-0.035016,-0.037786,0.010994,-0.015758,-0.467041,0.126465,0.501709,0.093741,0.021568,0.017558,1,-0.000189,5.5e-05,-7.9e-05,50.851415 0.08 sec,Standing,unlabeled,0,0,0,0,,,,,9.841388,0.025279,-0.37161,0.011677,-0.030075,0.035694,-0.015825,0.003157,0.003743,-0.458008,-0.077393,-0.519043,0.098414,0.000254,-0.003718,1,-7.9e-05,1.6e-05,1.9e-05,171.379824,-87.784228,-141.249172,9.787357,-1.738852,1.551847,0.535746,-0.831578,0.199587,-0.183688,0.085344,0.014226,-0.353271,-0.55957,0.119873,0.097881,-0.017367,0.015493,0.999999,-0.000918,0.000427,7.1e-05,-64.79207,-81.304532,165.044657,9.418878,2.095977,1.685113,-0.029714,-0.008146,-0.017432,-0.037309,0.006519,-0.022733,-0.468994,0.128418,0.501953,0.094192,0.020952,0.016844,1,-0.000187,3.3e-05,-0.000114,50.851226 0.09 sec,Standing,unlabeled,0,0,0,0,,,,,9.788489,0.01365,-0.3779,0.024999,-0.035427,-0.016992,-0.014118,0.007863,-0.000637,-0.468262,-0.077637,-0.528564,0.097885,0.000136,-0.003783,1,-7.1e-05,3.9e-05,-3e-06,171.331989,-87.78845,-141.207574,9.509468,-1.536323,1.218201,0.317228,-0.545981,-0.123748,-0.101767,0.075528,0.002536,-0.36377,-0.558105,0.112305,0.095099,-0.015356,0.012154,1,-0.000509,0.000378,1.3e-05,-64.590979,-81.283277,164.787037,9.389997,2.077502,1.685949,-0.033041,0.00542,-0.049012,-0.040351,0.011134,-0.018518,-0.479248,0.129395,0.497314,0.093903,0.02077,0.01685,1,-0.000202,5.6e-05,-9.3e-05,50.837093 0.1 sec,Standing,unlabeled,0,0,0,0,,,,,9.773218,-0.01694,-0.381845,0.044611,-0.059469,-0.032281,-0.005709,8.6e-05,9.3e-05,-0.455078,-0.078369,-0.518555,0.097732,-0.000169,-0.003818,1,-2.9e-05,0,0,171.31935,-87.788308,-141.196505,9.528678,-1.555303,0.795138,0.258491,-0.120585,-0.129426,-0.027943,0.055478,-0.01002,-0.3479,-0.561279,0.119385,0.095288,-0.015557,0.007927,1,-0.00014,0.000277,-5e-05,-64.395886,-81.273102,164.576373,9.335821,2.004543,1.684834,-0.05999,0.060147,-0.116957,-0.043587,0.013048,-0.016609,-0.463623,0.126221,0.505371,0.093361,0.020041,0.016838,1,-0.000218,6.5e-05,-8.3e-05,50.815578 0.11 sec,Standing,unlabeled,0,0,0,0,,,,,9.792874,0.026551,-0.345842,-0.008965,-0.040584,-0.01376,-0.002096,-0.002391,-0.001238,-0.453857,-0.077881,-0.526123,0.097929,0.000265,-0.003457,1,-1e-05,-1.2e-05,-6e-06,171.292829,-87.786654,-141.169577,9.519963,-1.213427,0.556354,-0.114044,0.057395,-0.200438,0.028553,0.040967,-0.019139,-0.346924,-0.562744,0.112549,0.0952,-0.012144,0.005542,1,0.000143,0.000205,-9.6e-05,-64.203018,-81.271078,164.402021,9.34672,1.990198,1.657822,-0.094069,0.05733,-0.114322,-0.045801,0.007869,-0.015588,-0.464355,0.124756,0.498535,0.093469,0.019898,0.01657,1,-0.000229,3.9e-05,-7.8e-05,50.799685 0.12 sec,Standing,unlabeled,0,0,0,0,,,,,9.788494,0.013956,-0.377763,0.025063,-0.035661,-0.016994,0.000794,-0.000506,-0.002226,-0.45874,-0.075684,-0.521729,0.097885,0.000138,-0.003777,1,4e-06,-3e-06,-1.1e-05,171.251282,-87.785974,-141.12585,9.507896,-0.979397,0.415402,-0.364013,0.157122,-0.253677,0.002321,0.025153,-0.007495,-0.352783,-0.559082,0.116211,0.095079,-0.009798,0.004142,1,1.2e-05,0.000126,-3.7e-05,-64.097131,-81.266985,164.299146,9.321111,1.936352,1.656881,-0.117456,0.098567,-0.150684,-0.042277,0.003631,-0.006271,-0.470703,0.126465,0.501709,0.093212,0.019364,0.016563,1,-0.000211,1.8e-05,-3.1e-05,50.780632 0.13 sec,Standing,unlabeled,0,0,0,0,,,,,9.788477,0.014183,-0.378199,0.0251,-0.035739,-0.016994,0.001036,-0.008405,-0.002469,-0.46167,-0.074951,-0.528076,0.097885,0.000141,-0.003778,1,5e-06,-4.2e-05,-1.2e-05,171.221992,-87.780878,-141.094937,9.627035,-1.144125,0.290841,-0.243236,0.316046,-0.121745,-0.056737,0.019051,0.012294,-0.352051,-0.55835,0.109863,0.096271,-0.011435,0.002902,1,-0.000284,9.5e-05,6.1e-05,-64.077501,-81.254395,164.249939,9.301208,1.931891,1.71396,-0.068698,0.132095,-0.160736,-0.038382,-0.002992,-0.003014,-0.4729,0.128174,0.494385,0.093012,0.019321,0.017137,1,-0.000192,-1.5e-05,-1.5e-05,50.769919 0.14 sec,Standing,unlabeled,0,0,0,0,,,,,9.845739,0.038871,-0.340519,-0.022183,-0.035552,0.038925,0.004238,-0.010562,-0.005582,-0.458496,-0.072998,-0.523926,0.098458,0.000386,-0.0034,1,2.1e-05,-5.3e-05,-2.8e-05,171.156392,-87.774207,-141.025163,9.681206,-1.429305,0.202588,0.009049,0.457473,-0.035145,-0.092291,0.029874,0.025371,-0.35083,-0.554199,0.113525,0.096814,-0.01428,0.002018,1,-0.000461,0.000149,0.000127,-64.063827,-81.232162,164.185509,9.329733,1.950553,1.714794,-0.0649,0.118656,-0.129154,-0.028205,-0.011302,0.014627,-0.467041,0.133789,0.500977,0.093295,0.019515,0.01715,1,-0.000141,-5.7e-05,7.3e-05,50.755447 0.15 sec,Standing,unlabeled,0,0,0,0,,,,,9.883877,0.045951,-0.386878,0.012605,-0.007808,0.078854,0.003543,-0.006334,0.000551,-0.463379,-0.077393,-0.520996,0.098839,0.00046,-0.003866,1,1.8e-05,-3.2e-05,3e-06,171.16916,-87.770531,-141.036221,9.620748,-1.791948,0.08738,0.347924,0.634708,-0.052892,-0.096013,0.043128,0.03527,-0.356445,-0.561279,0.114502,0.096211,-0.017902,0.000862,1,-0.00048,0.000216,0.000176,-64.024244,-81.20151,164.092958,9.358547,1.968491,1.714906,-0.061111,0.105235,-0.097573,-0.023854,-0.01553,0.01505,-0.473877,0.123291,0.500977,0.093583,0.019694,0.017154,1,-0.000119,-7.8e-05,7.5e-05,50.749656 0.16 sec,Standing,unlabeled,0,0,0,0,,,,,9.845689,0.039279,-0.341894,-0.022134,-0.035704,0.038925,0.006815,-0.004635,-0.004445,-0.454102,-0.079834,-0.529297,0.098457,0.000391,-0.003417,1,3.4e-05,-2.3e-05,-2.2e-05,171.108555,-87.767314,-140.969968,9.523635,-2.066793,0.031512,0.616306,0.737143,-0.114799,-0.037752,0.047192,0.035648,-0.347656,-0.562988,0.107178,0.09524,-0.020651,0.000297,1,-0.000189,0.000236,0.000178,-63.939123,-81.169618,163.987838,9.37606,2.003142,1.701238,-0.056158,0.069416,-0.07568,-0.017901,-0.018757,0.021509,-0.463135,0.123291,0.495605,0.093757,0.020043,0.017019,1,-9e-05,-9.4e-05,0.000108,50.743911 0.17 sec,Standing,unlabeled,0,0,0,0,,,,,9.877851,0.067129,-0.376548,-0.007313,0.004588,0.072562,0.002819,-0.001971,0.000894,-0.459961,-0.077881,-0.519775,0.098779,0.000672,-0.003764,1,1.4e-05,-1e-05,4e-06,171.114789,-87.766136,-140.972871,9.349679,-2.327945,-0.132226,0.864357,0.940795,-0.261714,0.052009,0.033492,0.035612,-0.352539,-0.560303,0.115234,0.093501,-0.023262,-0.001344,1,0.00026,0.000167,0.000178,-63.84811,-81.141305,163.9287,9.402261,2.054692,1.701865,-0.032282,0.028319,-0.039317,-0.018303,-0.027098,0.026723,-0.468018,0.127197,0.504639,0.094018,0.020561,0.01703,1,-9.2e-05,-0.000135,0.000134,50.744431 0.18 sec,Standing,unlabeled,0,0,0,0,,,,,9.877852,0.067065,-0.376544,-0.007296,0.004512,0.072563,0.005347,0.002095,7.7e-05,-0.458008,-0.076416,-0.523926,0.098778,0.000671,-0.003766,1,2.7e-05,1e-05,0,171.103809,-87.767127,-140.957122,9.175239,-2.464614,-0.267413,0.996239,1.095951,-0.424544,0.209756,0.01915,0.019464,-0.348633,-0.558594,0.112061,0.091755,-0.024634,-0.002709,0.999999,0.001049,9.6e-05,9.7e-05,-63.688672,-81.124773,163.891878,9.462812,2.058787,1.657561,-0.078131,0.003795,0.012016,-0.013862,-0.026551,0.030373,-0.465576,0.128174,0.499023,0.094623,0.020603,0.016587,1,-6.9e-05,-0.000133,0.000152,50.741906 0.19 sec,Standing,unlabeled,0,0,0,0,,,,,9.840223,0.086033,-0.378877,-0.013576,0.023132,0.035166,0.003711,0.001246,0.002575,-0.459229,-0.070801,-0.520752,0.098402,0.000862,-0.003789,1,1.9e-05,6e-06,1.3e-05,171.128264,-87.767882,-140.978294,9.060568,-2.217113,-0.258748,0.770759,1.044896,-0.571987,0.394236,-0.018128,-0.00447,-0.354736,-0.551758,0.118164,0.090605,-0.022168,-0.002623,0.999998,0.001971,-9.1e-05,-2.2e-05,-63.507464,-81.130158,163.940859,9.457938,2.124531,1.658514,-0.037734,-0.051486,0.02158,-0.012997,-0.025621,0.028012,-0.469482,0.137207,0.502686,0.094574,0.02126,0.016596,1,-6.5e-05,-0.000128,0.00014,50.741582 0.2 sec,Standing,unlabeled,0,0,0,0,,,,,9.871877,0.087568,-0.365004,-0.027223,0.016906,0.066272,0.002096,0.002391,0.001237,-0.462891,-0.072998,-0.522705,0.098719,0.000876,-0.003651,1,1e-05,1.2e-05,6e-06,171.131596,-87.769144,-140.978733,9.132002,-1.779083,-0.113908,0.359222,0.831553,-0.552501,0.543052,-0.050467,-0.038696,-0.356445,-0.552246,0.120361,0.091317,-0.017805,-0.001164,0.999996,0.002715,-0.000252,-0.000193,-63.290859,-81.161245,164.039449,9.504231,2.176257,1.687026,0.003979,-0.07551,0.082101,-0.013699,-0.024774,0.026148,-0.47168,0.13208,0.498779,0.095037,0.021776,0.016881,1,-6.8e-05,-0.000124,0.000131,50.741696 0.21 sec,Standing,unlabeled,0,0,0,0,,,,,9.845164,0.124248,-0.394527,-0.019102,0.0645,0.040933,-0.003514,0.006201,0.005238,-0.455078,-0.071533,-0.528809,0.098451,0.001245,-0.003948,1,-1.8e-05,3.1e-05,2.6e-05,171.181023,-87.772921,-141.031333,9.63411,-1.342585,0.235836,-0.070468,0.431001,-0.092425,0.655972,-0.08877,-0.083359,-0.348145,-0.552002,0.121094,0.096334,-0.013474,0.002357,0.999994,0.00328,-0.000444,-0.000417,-63.062285,-81.224963,164.19322,9.465466,2.169099,1.713303,0.034942,-0.059044,0.047877,-0.014351,-0.020063,0.020983,-0.465576,0.131592,0.496338,0.094651,0.021702,0.017141,1,-7.2e-05,-0.0001,0.000105,50.740896 0.22 sec,Standing,unlabeled,0,0,0,0,,,,,9.840812,0.111025,-0.425756,0.014922,0.069429,0.0377,-0.012524,0.004722,0.004538,-0.461182,-0.086426,-0.525391,0.098408,0.001112,-0.00426,1,-6.3e-05,2.4e-05,2.3e-05,171.218855,-87.775792,-141.074681,10.666986,-0.661599,1.067494,-0.711636,-0.471145,0.894012,0.738888,-0.052069,-0.135023,-0.35498,-0.565674,0.126465,0.106663,-0.006727,0.010678,0.999993,0.003694,-0.00026,-0.000675,-62.573991,-81.305718,164.130423,9.531371,2.223851,1.728366,0.061294,-0.091254,0.125507,-0.01576,-0.018364,0.017258,-0.470459,0.117676,0.498535,0.09531,0.022248,0.017291,1,-7.9e-05,-9.2e-05,8.6e-05,50.741127 0.23 sec,Standing,unlabeled,0,0,0,0,,,,,9.850658,0.076731,-0.356851,-0.02752,0.005262,0.044691,-0.015874,0.001295,0.001792,-0.463135,-0.080566,-0.520996,0.098507,0.000768,-0.003569,1,-7.9e-05,6e-06,9e-06,171.219784,-87.776566,-141.082965,11.087103,0.294346,1.743981,-1.544365,-1.303632,1.231197,0.591962,0.037953,-0.14891,-0.355469,-0.560303,0.135498,0.110876,0.002809,0.017427,0.999995,0.00296,0.00019,-0.000745,-61.839923,-81.369446,163.733873,9.50658,2.168008,1.724796,0.037862,-0.050021,0.089146,-0.022978,-0.014597,0.012694,-0.4729,0.121582,0.503418,0.095063,0.021688,0.017252,1,-0.000115,-7.3e-05,6.3e-05,50.737424 0.24 sec,Standing,unlabeled,0,0,0,0,,,,,9.846837,0.089823,-0.436219,0.034948,0.056721,0.043991,-0.021463,0.007099,0.001958,-0.460938,-0.072998,-0.530762,0.098468,0.000899,-0.004366,1,-0.000107,3.5e-05,1e-05,171.209575,-87.780557,-141.083362,10.467043,0.407674,1.975691,-1.499006,-1.569128,0.623755,0.245244,0.100122,-0.109938,-0.352295,-0.55127,0.125244,0.104683,0.003995,0.019709,0.999999,0.001226,0.000501,-0.00055,-61.160952,-81.395723,163.192176,9.552287,2.223172,1.712152,0.046412,-0.099314,0.142619,-0.014184,-0.015331,0.006925,-0.469482,0.133545,0.490723,0.095521,0.022236,0.017127,1,-7.1e-05,-7.7e-05,3.5e-05,50.747078 0.25 sec,Standing,unlabeled,0,0,0,0,,,,,9.867596,0.073347,-0.394523,0.006904,0.021519,0.063039,-0.022328,0.003746,0.006068,-0.466064,-0.077393,-0.532471,0.098676,0.000736,-0.003947,1,-0.000112,1.9e-05,3e-05,171.264826,-87.783032,-141.150515,9.951164,-0.219977,1.451627,-0.913677,-0.938954,0.160518,-0.031741,0.016374,-0.078605,-0.35791,-0.555908,0.120605,0.099512,-0.002237,0.014508,1,-0.000159,8.2e-05,-0.000393,-60.973366,-81.428819,162.987569,9.547075,2.16901,1.737057,0.040768,-0.040992,0.130414,-0.014685,-0.008832,-0.002458,-0.473145,0.130615,0.490967,0.09547,0.02169,0.017373,1,-7.3e-05,-4.4e-05,-1.2e-05,50.758422 0.26 sec,Standing,unlabeled,0,0,0,0,,,,,9.840912,0.10993,-0.423721,0.015016,0.069116,0.037702,-0.023822,0.010609,0.004805,-0.457764,-0.078613,-0.530518,0.098409,0.001101,-0.004243,1,-0.000119,5.3e-05,2.4e-05,171.287193,-87.789258,-141.184865,9.875891,-0.296231,0.992662,-0.918128,-0.479323,0.063225,-0.194406,-0.059572,-0.023473,-0.349121,-0.561279,0.125488,0.098756,-0.002964,0.009959,0.999999,-0.000972,-0.000298,-0.000117,-61.23272,-81.455374,163.140109,9.524251,2.20323,1.709952,0.043322,-0.085695,0.111037,-0.014428,-0.009128,-0.0076,-0.4646,0.125244,0.498047,0.095243,0.02203,0.017102,1,-7.2e-05,-4.6e-05,-3.8e-05,50.776549 0.27 sec,Standing,unlabeled,0,0,0,0,,,,,9.89825,0.133753,-0.384172,-0.032246,0.069279,0.093624,-0.021846,0.00728,0.005972,-0.460693,-0.084961,-0.525635,0.098982,0.00134,-0.003845,1,-0.000109,3.6e-05,3e-05,171.333076,-87.793781,-141.242045,9.739971,-0.370552,0.614821,-0.90346,-0.108891,-0.088787,-0.353537,-0.091916,0.028281,-0.352539,-0.564209,0.127197,0.097397,-0.003681,0.006199,0.999998,-0.001768,-0.00046,0.000141,-61.786677,-81.464448,163.49617,9.495973,2.182186,1.750979,0.073122,-0.046839,0.086495,-0.019677,-0.006742,-0.012189,-0.467285,0.121338,0.497314,0.09496,0.021818,0.017511,1,-9.8e-05,-3.4e-05,-6.1e-05,50.794141 0.28 sec,Standing,unlabeled,0,0,0,0,,,,,9.899913,0.099641,-0.426184,0.021751,0.061663,0.09668,-0.023773,0.012467,0.006765,-0.462158,-0.079346,-0.533936,0.098999,0.000999,-0.004268,1,-0.000119,6.2e-05,3.4e-05,171.380583,-87.801226,-141.301525,9.569497,-0.544015,0.566649,-0.724835,-0.045299,-0.238511,-0.492213,-0.097018,0.05635,-0.354492,-0.563477,0.116211,0.095694,-0.005399,0.005726,0.999997,-0.002461,-0.000485,0.000282,-62.488923,-81.460183,163.924014,9.456149,2.178474,1.778908,0.104084,-0.030372,0.052264,-0.019117,-0.006423,-0.01594,-0.470703,0.124512,0.49292,0.094563,0.021779,0.01779,1,-9.6e-05,-3.2e-05,-8e-05,50.816205 0.29 sec,Standing,unlabeled,0,0,0,0,,,,,9.862361,0.118304,-0.427051,0.015473,0.08028,0.059286,-0.02322,0.019859,0.00479,-0.460693,-0.08252,-0.528564,0.098623,0.001185,-0.00428,1,-0.000116,9.9e-05,2.4e-05,171.379438,-87.812744,-141.310432,9.529959,-0.847963,0.738834,-0.397571,-0.169129,-0.226325,-0.620879,-0.100843,0.063231,-0.353516,-0.567383,0.118408,0.095299,-0.008426,0.007463,0.999995,-0.003104,-0.000504,0.000316,-63.288171,-81.452624,164.37357,9.450224,2.128171,1.762484,0.065275,0.002653,0.033018,-0.020178,-0.000241,-0.02157,-0.470459,0.119629,0.493896,0.094505,0.021273,0.017623,1,-0.000101,-1e-06,-0.000108,50.835269 0.3 sec,Standing,unlabeled,0,0,0,0,,,,,9.825868,0.077319,-0.422748,0.034723,0.044842,0.022411,-0.027748,0.01712,0.008279,-0.455078,-0.074707,-0.530762,0.098258,0.000777,-0.004236,1,-0.000139,8.6e-05,4.1e-05,171.437449,-87.822953,-141.382703,9.792621,-1.538901,1.019573,0.280606,-0.316406,0.14343,-0.658616,-0.06546,0.054908,-0.347412,-0.556885,0.110596,0.097927,-0.015328,0.010278,0.999994,-0.003293,-0.000327,0.000275,-63.973915,-81.439415,164.68833,9.40438,2.075653,1.73222,0.024032,0.026767,-0.027495,-0.016488,0.000245,-0.026317,-0.462158,0.12915,0.490234,0.094047,0.020746,0.01732,1,-8.2e-05,1e-06,-0.000132,50.861437 0.31 sec,Standing,unlabeled,0,0,0,0,,,,,9.773021,0.065448,-0.428016,0.048055,0.039513,-0.030277,-0.025365,0.015608,0.001602,-0.455322,-0.083496,-0.524902,0.09773,0.000655,-0.004288,1,-0.000127,7.8e-05,8e-06,171.3979,-87.831829,-141.3558,9.989168,-2.226633,1.361108,0.974282,-0.529628,0.452021,-0.538084,0.008295,0.038661,-0.345703,-0.567139,0.115967,0.099897,-0.02221,0.013667,0.999996,-0.00269,4.1e-05,0.000193,-64.308763,-81.415839,164.716005,9.42362,2.080258,1.718596,0.008906,0.018637,-0.010379,-0.010028,0.003274,-0.025995,-0.461914,0.12085,0.5,0.094239,0.020791,0.017183,1,-5e-05,1.6e-05,-0.00013,50.886385 0.32 sec,Standing,unlabeled,0,0,0,0,,,,,9.779063,0.044489,-0.438124,0.068047,0.026891,-0.023987,-0.019006,0.007301,0.003037,-0.451904,-0.07959,-0.525146,0.09779,0.000446,-0.004385,1,-9.5e-05,3.7e-05,1.5e-05,171.405153,-87.836027,-141.372262,9.901101,-2.142949,1.549176,0.930246,-0.739923,0.366268,-0.337997,0.073582,0.019054,-0.345215,-0.565918,0.109863,0.099019,-0.021394,0.015492,0.999998,-0.00169,0.000368,9.5e-05,-64.274518,-81.386042,164.488417,9.397656,2.028341,1.716816,-0.014544,0.059846,-0.046738,-0.010235,0.007434,-0.024151,-0.462402,0.12207,0.496826,0.09398,0.020273,0.017164,1,-5.1e-05,3.7e-05,-0.000121,50.902277 0.33 sec,Standing,unlabeled,0,0,0,0,,,,,9.783451,0.056836,-0.40553,0.034082,0.02179,-0.020753,-0.015296,0.008543,0.005616,-0.463379,-0.086914,-0.524414,0.097834,0.000571,-0.00406,1,-7.6e-05,4.3e-05,2.8e-05,171.446566,-87.84123,-141.419023,9.542336,-1.796406,1.381062,0.610131,-0.649595,-0.045582,-0.195233,0.085586,-0.006215,-0.35376,-0.570313,0.112549,0.095429,-0.017954,0.013787,0.999999,-0.000976,0.000428,-3.1e-05,-64.075831,-81.366617,164.176333,9.428356,2.015819,1.716695,-0.030828,0.074093,-0.019933,-0.004021,0.003904,-0.022845,-0.4729,0.117676,0.499512,0.094286,0.020148,0.017165,1,-2e-05,2e-05,-0.000114,50.925644 0.34 sec,Standing,unlabeled,0,0,0,0,,,,,9.772537,0.038582,-0.377376,0.019701,-0.007257,-0.032813,-0.010045,0.006921,0.001783,-0.462402,-0.076172,-0.52832,0.097725,0.000386,-0.003777,1,-5e-05,3.5e-05,9e-06,171.441088,-87.845105,-141.417606,9.410676,-1.60196,0.991137,0.371477,-0.302138,-0.227273,-0.112373,0.054421,-0.019934,-0.353027,-0.55957,0.106689,0.094108,-0.016023,0.009895,1,-0.000562,0.000272,-0.0001,-63.914786,-81.361535,163.951225,9.396459,2.034134,1.675926,-0.047222,0.034676,-0.053771,-0.012916,0.006705,-0.016153,-0.470947,0.126953,0.494629,0.093967,0.020335,0.016755,1,-6.5e-05,3.4e-05,-8.1e-05,50.930976 0.35 sec,Standing,unlabeled,0,0,0,0,,,,,9.762202,0.046758,-0.397793,0.033756,0.010218,-0.042336,-0.005397,-0.003954,-0.002037,-0.457764,-0.077881,-0.525879,0.097622,0.000466,-0.003976,1,-2.7e-05,-2e-05,-1e-05,171.402403,-87.842473,-141.378547,9.47944,-1.435008,0.658022,0.143305,0.00199,-0.20376,-0.054906,0.030886,-0.030894,-0.349365,-0.562256,0.11084,0.094793,-0.014363,0.00657,1,-0.000275,0.000154,-0.000154,-63.781597,-81.367978,163.78683,9.4305,1.984152,1.716466,-0.050468,0.101886,-0.024709,-0.019225,0.002498,-0.010866,-0.464844,0.124756,0.501221,0.094306,0.019838,0.017162,1,-9.6e-05,1.2e-05,-5.4e-05,50.932691 0.36 sec,Standing,unlabeled,0,0,0,0,,,,,9.863058,0.031253,-0.368435,0.012773,-0.020885,0.057269,-0.001422,-0.008609,-0.003549,-0.459229,-0.080566,-0.523438,0.098631,0.000311,-0.00368,1,-7e-06,-4.3e-05,-1.8e-05,171.357046,-87.837093,-141.332281,9.530916,-1.257947,0.502503,-0.060927,0.128419,-0.187039,-0.049462,0.023849,-0.031594,-0.352539,-0.56665,0.111084,0.095308,-0.012593,0.005017,1,-0.000247,0.000119,-0.000158,-63.668479,-81.376481,163.64666,9.430501,1.982337,1.759177,-0.01709,0.127247,-0.017677,-0.022661,-0.001246,-0.001431,-0.470459,0.120361,0.499023,0.094305,0.019825,0.01759,1,-0.000113,-6e-06,-7e-06,50.926165 0.37 sec,Standing,unlabeled,0,0,0,0,,,,,9.847736,0.000862,-0.373514,0.032416,-0.044921,0.041974,0.003974,-0.004655,-0.001512,-0.456543,-0.075684,-0.5271,0.098477,8e-06,-0.003733,1,2e-05,-2.3e-05,-8e-06,171.333718,-87.834146,-141.304184,9.621659,-1.300944,0.384668,-0.050157,0.25768,-0.099407,-0.085215,0.022232,-0.020284,-0.349365,-0.55835,0.10791,0.096216,-0.013018,0.003842,1,-0.000426,0.000111,-0.000101,-63.59954,-81.379675,163.530573,9.379369,1.995905,1.73204,-0.018141,0.096041,-0.068632,-0.030233,-0.004925,0.005745,-0.464111,0.12915,0.496338,0.093793,0.019964,0.01732,1,-0.000151,-2.5e-05,2.9e-05,50.912166 0.38 sec,Standing,unlabeled,0,0,0,0,,,,,9.835738,0.042674,-0.351447,-0.007524,-0.019911,0.029397,0.006022,-0.004124,-0.002228,-0.458252,-0.085205,-0.534668,0.098357,0.000426,-0.003512,1,3e-05,-2.1e-05,-1.1e-05,171.302443,-87.831418,-141.267741,9.711135,-1.600594,0.312077,0.217563,0.386722,0.024413,-0.112016,0.026279,-0.005129,-0.349121,-0.573242,0.098633,0.097111,-0.016007,0.003117,1,-0.00056,0.000131,-2.6e-05,-63.558316,-81.373925,163.426869,9.374305,1.940846,1.757486,-0.023824,0.15434,-0.08084,-0.031032,-0.011811,0.010475,-0.46582,0.116943,0.490967,0.093741,0.019416,0.017577,1,-0.000155,-5.9e-05,5.2e-05,50.902202 0.39 sec,Standing,unlabeled,0,0,0,0,,,,,9.88429,0.041863,-0.376663,0.013234,-0.009726,0.078852,0.006045,-0.002124,-0.006061,-0.458984,-0.077637,-0.5271,0.098843,0.000416,-0.003766,1,3e-05,-1.1e-05,-3e-05,171.206004,-87.829583,-141.165062,9.722818,-1.965505,0.154878,0.544493,0.607117,0.074442,-0.107693,0.044925,0.014929,-0.349854,-0.562256,0.10498,0.09723,-0.019647,0.001538,1,-0.000538,0.000225,7.5e-05,-63.484227,-81.353228,163.290119,9.391814,1.973587,1.786701,0.014298,0.143858,-0.051918,-0.02947,-0.014691,0.019807,-0.469238,0.124268,0.498291,0.093915,0.019748,0.017871,1,-0.000147,-7.3e-05,9.9e-05,50.886048 0.4 sec,Standing,unlabeled,0,0,0,0,,,,,9.858651,0.019584,-0.401572,0.046891,-0.016179,0.054034,0.008648,0.00366,0.000874,-0.461914,-0.077881,-0.52832,0.098586,0.000196,-0.004018,1,4.3e-05,1.8e-05,4e-06,171.204781,-87.831531,-141.157185,9.611228,-2.214677,0.051172,0.78345,0.750276,-0.009299,-0.050893,0.048583,0.030935,-0.355225,-0.564209,0.105957,0.096116,-0.022132,0.000494,1,-0.000254,0.000243,0.000155,-63.394152,-81.323244,163.172416,9.380753,1.992245,1.688111,-0.050582,0.07091,-0.07566,-0.021194,-0.014829,0.024322,-0.469727,0.124268,0.496094,0.093804,0.019936,0.016886,1,-0.000106,-7.4e-05,0.000122,50.868824 0.41 sec,Standing,unlabeled,0,0,0,0,,,,,9.873955,0.050129,-0.396946,0.027306,0.007684,0.069329,0.010214,0.000654,0.000254,-0.452881,-0.074219,-0.519287,0.09874,0.000502,-0.00397,1,5.1e-05,3e-06,1e-06,171.199969,-87.831753,-141.14489,9.469389,-2.423915,-0.019142,0.992235,0.853721,-0.126012,0.036008,0.050058,0.036162,-0.345215,-0.559814,0.112305,0.094698,-0.024222,-0.000219,1,0.00018,0.00025,0.000181,-63.258491,-81.290147,163.058195,9.421094,1.994473,1.659003,-0.081052,0.054564,-0.041419,-0.012767,-0.013178,0.024617,-0.460449,0.127441,0.506104,0.094207,0.019957,0.016595,1,-6.4e-05,-6.6e-05,0.000123,50.853763 0.42 sec,Standing,unlabeled,0,0,0,0,,,,,9.803072,0.101066,-0.369818,-0.019329,0.03999,-0.002222,0.00583,0.005632,-1.6e-05,-0.461182,-0.081787,-0.522217,0.098031,0.001011,-0.003701,1,2.9e-05,2.8e-05,-0,171.179206,-87.83474,-141.119077,9.262358,-2.565892,-0.197354,1.126669,1.050844,-0.323727,0.165225,0.036978,0.029115,-0.35498,-0.567627,0.113525,0.092627,-0.025644,-0.002012,1,0.000826,0.000185,0.000146,-63.081943,-81.264011,162.978263,9.427369,2.043697,1.674578,-0.041741,0.021687,-0.022183,-0.005801,-0.013692,0.024486,-0.469238,0.121338,0.503174,0.09427,0.020449,0.016752,1,-2.9e-05,-6.8e-05,0.000122,50.843411 0.43 sec,Standing,unlabeled,0,0,0,0,,,,,9.798737,0.088322,-0.401213,0.0147,0.044933,-0.005456,0.004144,0.00292,0.000525,-0.461914,-0.079834,-0.521484,0.097987,0.000884,-0.004014,1,2.1e-05,1.5e-05,3e-06,171.169672,-87.836232,-141.105289,9.097116,-2.478882,-0.253213,1.051974,1.091522,-0.5031,0.33731,0.012243,0.019066,-0.355225,-0.564453,0.114746,0.090973,-0.024776,-0.002579,0.999999,0.001687,6.1e-05,9.5e-05,-62.872873,-81.249559,162.96681,9.441941,2.112573,1.663039,-0.016626,-0.041757,0.004487,0.002569,-0.006093,0.022412,-0.470459,0.123535,0.50708,0.094417,0.021136,0.016634,1,1.3e-05,-3e-05,0.000112,50.828847 0.44 sec,Standing,unlabeled,0,0,0,0,,,,,9.803088,0.100929,-0.369427,-0.019289,0.039825,-0.002222,0.001975,-0.003327,0.001162,-0.457275,-0.07666,-0.527588,0.098031,0.00101,-0.003693,1,1e-05,-1.7e-05,6e-06,171.185133,-87.834249,-141.117935,9.049154,-2.167711,-0.205064,0.760054,0.995258,-0.589891,0.493812,-0.026841,0.005605,-0.351074,-0.557373,0.112549,0.090492,-0.021669,-0.002092,0.999997,0.002469,-0.000134,2.8e-05,-62.680702,-81.252047,163.061548,9.479326,2.147597,1.678363,0.006179,-0.060453,0.050528,0.00519,-0.002378,0.021872,-0.467529,0.126953,0.499512,0.094791,0.021486,0.016785,1,2.6e-05,-1.2e-05,0.000109,50.810442 0.45 sec,Standing,unlabeled,0,0,0,0,,,,,9.818371,0.131384,-0.365395,-0.038882,0.063681,0.013075,-0.00212,-0.004389,0.002593,-0.456787,-0.071533,-0.518311,0.098184,0.001315,-0.003652,1,-1.1e-05,-2.2e-05,1.3e-05,171.21994,-87.831794,-141.152156,9.08097,-1.837033,-0.125801,0.445454,0.866084,-0.598242,0.620363,-0.046393,-0.020017,-0.350098,-0.555664,0.125,0.090808,-0.018375,-0.001294,0.999995,0.003102,-0.000232,-0.0001,-62.437198,-81.27275,163.178481,9.474041,2.212475,1.723993,0.079782,-0.090366,0.067096,-0.002734,0.002247,0.015457,-0.4646,0.129883,0.506104,0.094739,0.022132,0.017239,1,-1.4e-05,1.1e-05,7.7e-05,50.788622 0.46 sec,Standing,unlabeled,0,0,0,0,,,,,9.841285,0.107556,-0.41559,0.015485,0.067504,0.037712,-0.005348,-0.002095,-7.9e-05,-0.461426,-0.077393,-0.52124,0.098413,0.001075,-0.004155,1,-2.7e-05,-1e-05,-0,171.209743,-87.8304,-141.143325,9.404068,-1.44318,0.188935,0.07508,0.503403,-0.310272,0.716687,-0.068164,-0.056625,-0.35498,-0.561523,0.124023,0.094036,-0.014465,0.00187,0.999993,0.003583,-0.000341,-0.000283,-62.146299,-81.317935,163.302516,9.502652,2.230747,1.725184,0.083649,-0.103785,0.098676,-0.006871,0.002318,0.0132,-0.471924,0.125,0.50415,0.095025,0.022314,0.01725,1,-3.4e-05,1.2e-05,6.6e-05,50.766973 0.47 sec,Standing,unlabeled,0,0,0,0,,,,,9.867947,0.070333,-0.386216,0.007442,0.019736,0.063042,-0.004649,-0.008456,0.003405,-0.463379,-0.077637,-0.526123,0.09868,0.000705,-0.003858,1,-2.3e-05,-4.2e-05,1.7e-05,171.265556,-87.825675,-141.20143,10.359315,-0.799139,0.863598,-0.549621,-0.239225,0.595986,0.755959,-0.083062,-0.113679,-0.353271,-0.560059,0.126709,0.103585,-0.008083,0.008649,0.999993,0.00378,-0.000415,-0.000568,-61.781562,-81.396092,163.376709,9.514131,2.21479,1.696404,0.049589,-0.106651,0.10134,-0.006814,-0.000663,0.005741,-0.474121,0.125977,0.500977,0.095141,0.022151,0.016964,1,-3.4e-05,-3e-06,2.9e-05,50.759701 0.48 sec,Standing,unlabeled,0,0,0,0,,,,,9.895196,0.05908,-0.405001,0.027807,0.018526,0.090913,-0.00542,-0.005954,0.001799,-0.460938,-0.077881,-0.52417,0.098952,0.000592,-0.004047,1,-2.7e-05,-3e-05,9e-06,171.29212,-87.822259,-141.229427,11.140279,0.044591,1.539201,-1.325344,-1.035225,1.307054,0.655123,-0.002805,-0.155624,-0.353516,-0.560791,0.129883,0.111403,0.000309,0.015395,0.999994,0.003276,-1.4e-05,-0.000778,-61.125186,-81.473477,163.095428,9.548371,2.165171,1.694219,0.013203,-0.064776,0.123376,-0.015294,0.00364,0.003077,-0.469971,0.124756,0.501709,0.095484,0.021654,0.016939,1,-7.6e-05,1.8e-05,1.5e-05,50.743996 0.49 sec,Standing,unlabeled,0,0,0,0,,,,,9.905529,0.050925,-0.384801,0.013809,0.000865,0.100435,-0.00901,-0.001479,-0.000699,-0.459961,-0.076416,-0.526367,0.099055,0.000509,-0.003847,1,-4.5e-05,-7e-06,-3e-06,171.267322,-87.821143,-141.208132,10.62973,0.711748,1.859552,-1.811982,-1.502441,0.742644,0.359457,0.079192,-0.135804,-0.349854,-0.554688,0.130615,0.106309,0.007012,0.018566,0.999998,0.001797,0.000396,-0.000679,-60.393208,-81.517442,162.566699,9.58525,2.201854,1.710392,0.036008,-0.083449,0.169415,-0.011856,-0.002429,-0.000693,-0.466309,0.128906,0.499512,0.095852,0.022019,0.017104,1,-5.9e-05,-1.2e-05,-3e-06,50.744789 0.5 sec,Standing,unlabeled,0,0,0,0,,,,,9.857559,0.0781,-0.407871,0.021517,0.03707,0.053522,-0.009755,0.000882,0.003485,-0.462402,-0.077393,-0.535889,0.098576,0.000783,-0.004079,1,-4.9e-05,4e-06,1.7e-05,171.30087,-87.821746,-141.245605,10.130741,0.625,1.942857,-1.627129,-1.580111,0.26962,-0.019246,0.014757,-0.093831,-0.350342,-0.55835,0.120117,0.101312,0.006204,0.01942,1,-9.6e-05,7.4e-05,-0.000469,-60.168429,-81.558218,162.331204,9.565239,2.201763,1.682214,0.018474,-0.100503,0.145272,-0.008472,-0.002548,-0.006831,-0.470459,0.127686,0.489014,0.095653,0.022015,0.016822,1,-4.2e-05,-1.3e-05,-3.4e-05,50.755335 0.51 sec,Standing,unlabeled,0,0,0,0,,,,,9.867911,0.069593,-0.387271,0.007531,0.019415,0.063043,-0.008141,-0.000265,0.004822,-0.456787,-0.079102,-0.52124,0.098679,0.000698,-0.003873,1,-4.1e-05,-1e-06,2.4e-05,171.355812,-87.821869,-141.304148,10.16394,-0.02247,1.299691,-1.131339,-0.813929,0.338813,-0.271723,-0.068025,-0.049446,-0.345215,-0.561279,0.134277,0.101635,-0.000232,0.013032,0.999999,-0.001359,-0.00034,-0.000247,-60.45015,-81.600303,162.459922,9.556506,2.185133,1.667542,-0.000244,-0.095166,0.130816,-0.016094,0.002693,-0.011853,-0.464355,0.125244,0.502197,0.095567,0.021847,0.016672,1,-8e-05,1.3e-05,-5.9e-05,50.759931 0.52 sec,Standing,unlabeled,0,0,0,0,,,,,9.840646,0.080165,-0.369036,-0.012801,0.020471,0.035173,-0.007659,0.003271,0.004727,-0.457031,-0.081055,-0.515869,0.098406,0.000804,-0.003692,1,-3.8e-05,1.6e-05,2.4e-05,171.403711,-87.823929,-141.354781,9.995245,-0.302707,0.758266,-0.947321,-0.242109,0.168068,-0.394608,-0.085383,0.041948,-0.343506,-0.564941,0.137939,0.09995,-0.002991,0.007631,0.999998,-0.001973,-0.000427,0.00021,-61.037427,-81.601526,162.827925,9.527848,2.166346,1.667316,-0.003613,-0.08163,0.099236,-0.023659,0.001982,-0.014507,-0.462646,0.121582,0.51123,0.09528,0.021659,0.01667,1,-0.000118,1e-05,-7.3e-05,50.764456 0.53 sec,Standing,unlabeled,0,0,0,0,,,,,9.887593,0.111976,-0.350707,-0.046056,0.038142,0.081576,-0.011393,2.9e-05,0.005984,-0.455811,-0.076172,-0.523438,0.098876,0.001123,-0.003507,1,-5.7e-05,0,3e-05,171.472938,-87.824225,-141.427704,9.609684,-0.550008,0.457123,-0.72101,0.074557,-0.20373,-0.514544,-0.091616,0.100552,-0.344482,-0.560303,0.124756,0.096097,-0.00544,0.004629,0.999996,-0.002573,-0.000458,0.000503,-61.822661,-81.574706,163.328872,9.453956,2.091198,1.678532,-0.015404,-0.018747,0.014178,-0.023959,0.001368,-0.015901,-0.464844,0.128906,0.50293,0.094541,0.020906,0.016782,1,-0.00012,7e-06,-8e-05,50.771752 0.54 sec,Standing,unlabeled,0,0,0,0,,,,,9.881625,0.132215,-0.33917,-0.066026,0.050598,0.075291,-0.019029,0.0053,0.006879,-0.457275,-0.074951,-0.524414,0.098816,0.001325,-0.003394,1,-9.5e-05,2.6e-05,3.4e-05,171.542122,-87.827612,-141.506155,9.329126,-0.783264,0.429382,-0.470261,0.121617,-0.453495,-0.602103,-0.113676,0.109231,-0.345215,-0.562012,0.124268,0.093293,-0.007769,0.00437,0.999995,-0.003011,-0.000568,0.000546,-62.744768,-81.547896,163.915221,9.456735,2.053872,1.762273,0.030965,0.059627,0.023436,-0.021695,0.010421,-0.020197,-0.466064,0.122803,0.500488,0.09457,0.020531,0.017616,1,-0.000108,5.2e-05,-0.000101,50.771713 0.55 sec,Standing,unlabeled,0,0,0,0,,,,,9.854399,0.142548,-0.319957,-0.086345,0.051645,0.047421,-0.022037,0.017026,0.008206,-0.453125,-0.077881,-0.5271,0.098544,0.001429,-0.003208,1,-0.00011,8.5e-05,4.1e-05,171.601881,-87.837789,-141.577704,9.555932,-1.109092,0.740028,-0.137577,-0.128874,-0.166031,-0.670696,-0.122487,0.108246,-0.344971,-0.563721,0.117676,0.095561,-0.011014,0.007496,0.999994,-0.003353,-0.000612,0.000541,-63.729271,-81.522701,164.525127,9.422265,1.983987,1.745999,-0.011518,0.106078,-0.027371,-0.021288,0.008953,-0.019731,-0.460205,0.122803,0.498779,0.094225,0.019832,0.017454,1,-0.000106,4.5e-05,-9.9e-05,50.773571 0.56 sec,Standing,unlabeled,0,0,0,0,,,,,9.850106,0.129179,-0.350213,-0.052327,0.05661,0.044187,-0.026181,0.014105,0.007684,-0.462646,-0.07666,-0.521484,0.098501,0.001295,-0.003509,1,-0.000131,7.1e-05,3.8e-05,171.660362,-87.846228,-141.649544,9.950598,-1.876158,1.060241,0.599349,-0.302574,0.34643,-0.632993,-0.060455,0.084851,-0.354004,-0.561523,0.121338,0.099511,-0.018686,0.010692,0.999995,-0.003165,-0.000302,0.000424,-64.434861,-81.49244,164.874746,9.401704,1.985559,1.718975,-0.029063,0.089019,-0.05151,-0.012503,0.008242,-0.025501,-0.472168,0.125977,0.506348,0.09402,0.019845,0.017185,1,-6.3e-05,4.1e-05,-0.000128,50.788791 0.57 sec,Standing,unlabeled,0,0,0,0,,,,,9.870831,0.112448,-0.30769,-0.080331,0.021368,0.063228,-0.028254,0.013717,0.002612,-0.453613,-0.075195,-0.525879,0.098708,0.001125,-0.003084,1,-0.000141,6.9e-05,1.3e-05,171.639972,-87.854042,-141.64364,10.037147,-2.141554,1.401981,0.894452,-0.599613,0.489571,-0.44172,0.041155,0.054242,-0.346191,-0.559814,0.113525,0.10038,-0.021357,0.014046,0.999998,-0.002209,0.000206,0.000271,-64.626717,-81.452717,164.816339,9.418343,1.903823,1.687476,-0.103401,0.141412,-0.058375,-0.010593,0.009835,-0.01807,-0.463379,0.122314,0.499512,0.094186,0.019031,0.016869,1,-5.3e-05,4.9e-05,-9e-05,50.793267 0.58 sec,Standing,unlabeled,0,0,0,0,,,,,9.828284,0.092722,-0.292758,-0.081037,-0.001515,0.020059,-0.018088,0.012513,0.000908,-0.460938,-0.08374,-0.522949,0.098283,0.000927,-0.002934,1,-9e-05,6.3e-05,5e-06,171.60446,-87.861013,-141.616781,9.710074,-1.832671,1.474816,0.643559,-0.740735,0.129971,-0.25866,0.101583,0.02872,-0.352539,-0.567627,0.112549,0.097111,-0.018294,0.014723,0.999999,-0.001293,0.000508,0.000144,-64.464963,-81.411176,164.505793,9.403448,1.956643,1.677063,-0.081852,0.091447,-0.063289,-0.009481,0.007514,-0.015744,-0.468506,0.118408,0.500488,0.094037,0.01956,0.016766,1,-4.7e-05,3.8e-05,-7.9e-05,50.798879 0.59 sec,Standing,unlabeled,0,0,0,0,,,,,9.829959,0.059403,-0.334771,-0.027016,-0.009092,0.023109,-0.01368,0.009538,-0.002659,-0.459717,-0.078125,-0.512207,0.098299,0.000592,-0.003352,1,-6.8e-05,4.8e-05,-1.3e-05,171.520738,-87.866015,-141.538163,9.401064,-1.589833,1.174772,0.394552,-0.495885,-0.226964,-0.144822,0.089921,0.009027,-0.353516,-0.563721,0.122314,0.094017,-0.015886,0.011717,1,-0.000724,0.00045,4.5e-05,-64.247122,-81.382688,164.204533,9.437289,1.908783,1.675406,-0.118273,0.133316,-0.041244,-0.010143,0.009264,-0.011068,-0.468994,0.121826,0.512207,0.094375,0.019083,0.016749,1,-5.1e-05,4.6e-05,-5.5e-05,50.795615 0.6 sec,Standing,unlabeled,0,0,0,0,,,,,9.829347,0.033821,-0.28598,-0.055387,-0.055729,0.020564,-0.003128,0.008158,-0.008375,-0.453125,-0.08374,-0.516602,0.098293,0.000334,-0.002864,1,-1.6e-05,4.1e-05,-4.2e-05,171.361777,-87.869725,-141.379192,9.386608,-1.511188,0.710627,0.239596,-0.048239,-0.281824,-0.048364,0.059051,-0.007688,-0.345947,-0.571045,0.115967,0.093868,-0.015114,0.007082,1,-0.000242,0.000295,-3.8e-05,-64.053419,-81.370226,163.983495,9.397256,1.906639,1.662144,-0.120481,0.124469,-0.082507,-0.012613,0.004364,-0.004924,-0.462402,0.115479,0.505859,0.093973,0.019065,0.016618,1,-6.3e-05,2.2e-05,-2.5e-05,50.790644 0.61 sec,Standing,unlabeled,0,0,0,0,,,,,9.797742,0.033094,-0.29904,-0.041712,-0.049654,-0.010542,0.008242,0.006133,-0.010528,-0.467773,-0.074951,-0.523926,0.097977,0.000326,-0.002993,1,4.1e-05,3.1e-05,-5.3e-05,171.177834,-87.872002,-141.186791,9.432295,-1.23422,0.535701,-0.066279,0.081629,-0.285494,0.003081,0.034795,-0.018098,-0.359619,-0.562012,0.110352,0.094323,-0.012351,0.00534,1,1.5e-05,0.000174,-9e-05,-63.895776,-81.369415,163.831421,9.400071,1.874254,1.618477,-0.173514,0.126831,-0.09428,-0.013671,-0.002245,0.00494,-0.476563,0.123535,0.500732,0.094,0.018746,0.016185,1,-6.8e-05,-1.1e-05,2.5e-05,50.782951 0.62 sec,Standing,unlabeled,0,0,0,0,,,,,9.81407,0.005381,-0.28946,-0.035716,-0.079841,0.005262,0.011759,-5.4e-05,-0.015784,-0.450684,-0.081543,-0.528564,0.098141,4.6e-05,-0.002895,1,5.9e-05,-0,-7.9e-05,170.933352,-87.870364,-140.933705,9.509964,-1.106466,0.449427,-0.215636,0.150145,-0.231632,-0.026895,0.01707,-0.015444,-0.342041,-0.56543,0.105713,0.095099,-0.011071,0.004488,1,-0.000134,8.5e-05,-7.7e-05,-63.819726,-81.371372,163.741822,9.400332,1.873213,1.618165,-0.173272,0.126885,-0.094277,-0.018758,-0.010863,0.011617,-0.46167,0.118652,0.49292,0.094001,0.018739,0.016185,1,-9.4e-05,-5.4e-05,5.8e-05,50.777067 0.63 sec,Standing,unlabeled,0,0,0,0,,,,,9.841363,-0.00396,-0.307428,-0.015335,-0.081056,0.033132,0.014242,0.002156,-0.018549,-0.463623,-0.082275,-0.521973,0.098414,-4.9e-05,-0.003075,1,7.1e-05,1.1e-05,-9.3e-05,170.640678,-87.869694,-140.630637,9.624767,-1.268308,0.298561,-0.099125,0.332795,-0.106333,-0.071286,0.009727,-0.00492,-0.353516,-0.566406,0.112793,0.096248,-0.012684,0.002985,1,-0.000356,4.9e-05,-2.5e-05,-63.810745,-81.369807,163.693571,9.434907,1.940305,1.677159,-0.097198,0.105927,-0.036469,-0.016644,-0.016407,0.027021,-0.470215,0.120605,0.504639,0.094345,0.019417,0.016778,1,-8.3e-05,-8.2e-05,0.000135,50.761651 0.64 sec,Standing,unlabeled,0,0,0,0,,,,,9.82936,0.039466,-0.284832,-0.055296,-0.056077,0.020562,0.021517,-0.000933,-0.019267,-0.459229,-0.087646,-0.526367,0.098294,0.000385,-0.002848,1,0.000108,-5e-06,-9.6e-05,170.351924,-87.867138,-140.327652,9.795239,-1.598553,0.207086,0.182102,0.487906,0.100624,-0.104408,0.020533,0.017227,-0.349609,-0.571533,0.11084,0.097954,-0.015976,0.002069,1,-0.000522,0.000103,8.6e-05,-63.821835,-81.354081,163.647188,9.433076,1.969141,1.719597,-0.043696,0.103687,-0.024695,-0.013865,-0.023703,0.037746,-0.468506,0.115479,0.502441,0.094325,0.01971,0.017206,1,-6.9e-05,-0.000119,0.000189,50.745271 0.65 sec,Standing,unlabeled,0,0,0,0,,,,,9.889962,-0.001914,-0.331884,0.005425,-0.070957,0.082586,0.025007,0.00806,-0.010635,-0.456543,-0.084961,-0.519531,0.098899,-2.4e-05,-0.003323,1,0.000125,4e-05,-5.3e-05,170.169304,-87.870407,-140.12595,9.719639,-2.012497,0.06594,0.570787,0.696676,0.072389,-0.083088,0.041576,0.024822,-0.348633,-0.568848,0.113037,0.097199,-0.020113,0.000648,1,-0.000415,0.000208,0.000124,-63.761975,-81.3293,163.541878,9.403056,1.979644,1.7184,-0.026961,0.089594,-0.051509,-0.018297,-0.027229,0.043917,-0.466064,0.12207,0.503906,0.094024,0.019819,0.017195,1,-9.1e-05,-0.000136,0.00022,50.724175 0.66 sec,Standing,unlabeled,0,0,0,0,,,,,9.905271,0.029686,-0.326525,-0.014189,-0.047108,0.097887,0.024645,0.010238,-0.010456,-0.463379,-0.08252,-0.526367,0.099053,0.000292,-0.00327,1,0.000123,5.1e-05,-5.2e-05,169.986418,-87.874944,-139.927113,9.522792,-2.35587,-0.07178,0.908119,0.886495,-0.08498,-0.001941,0.050124,0.027648,-0.355225,-0.570068,0.109863,0.095231,-0.023546,-0.000741,1,-1e-05,0.000251,0.000138,-63.632642,-81.300693,163.412827,9.389923,2.028605,1.662481,-0.038512,0.014287,-0.063428,-0.016171,-0.029801,0.049491,-0.471436,0.119141,0.503174,0.093892,0.020311,0.016637,1,-8.1e-05,-0.000149,0.000247,50.700893 0.67 sec,Standing,unlabeled,0,0,0,0,,,,,9.888956,0.059366,-0.334968,-0.020145,-0.017097,0.082083,0.028282,0.007622,-0.006001,-0.459961,-0.083252,-0.530029,0.098889,0.000591,-0.003353,1,0.000141,3.8e-05,-3e-05,169.87654,-87.878396,-139.797039,9.25855,-2.485013,-0.264138,1.036832,1.091809,-0.341746,0.128824,0.029408,0.026357,-0.352295,-0.569336,0.105469,0.092588,-0.024836,-0.002671,1,0.000644,0.000147,0.000132,-63.496151,-81.278164,163.352973,9.428159,2.062903,1.63344,-0.048799,-0.029717,-0.024398,-0.011823,-0.034036,0.049889,-0.466797,0.11792,0.498779,0.094274,0.020654,0.016349,1,-5.9e-05,-0.00017,0.000249,50.686373 0.68 sec,Standing,unlabeled,0,0,0,0,,,,,9.868327,0.076063,-0.375257,0.007887,0.017996,0.063045,0.024667,0.010093,-0.004662,-0.470215,-0.07373,-0.525146,0.098683,0.000759,-0.003757,1,0.000123,5e-05,-2.3e-05,169.781072,-87.883404,-139.685669,9.162008,-2.355998,-0.310229,0.913844,1.116585,-0.458144,0.28546,-0.001652,0.008314,-0.363525,-0.557129,0.10791,0.091621,-0.023552,-0.003135,0.999999,0.001427,-8e-06,4.2e-05,-63.344223,-81.272644,163.367645,9.446396,2.097188,1.576091,-0.076857,-0.090866,-0.009499,-0.006372,-0.030765,0.046964,-0.478516,0.12793,0.500244,0.094457,0.020995,0.015775,1,-3.2e-05,-0.000154,0.000235,50.673265 0.69 sec,Standing,unlabeled,0,0,0,0,,,,,9.889656,0.086012,-0.380999,0.008263,0.029308,0.084632,0.02758,0.011838,0.000146,-0.46167,-0.075684,-0.518799,0.098896,0.000861,-0.003816,1,0.000138,5.9e-05,1e-06,169.753908,-87.889847,-139.641103,9.079586,-2.103018,-0.257788,0.686044,1.022859,-0.570874,0.439338,-0.039241,-0.014266,-0.351563,-0.557861,0.115723,0.090795,-0.021031,-0.002606,0.999998,0.002197,-0.000196,-7.1e-05,-63.191736,-81.288148,163.469972,9.493247,2.147239,1.604367,-0.035054,-0.114775,0.050982,0.002654,-0.024914,0.040222,-0.46875,0.128418,0.504639,0.094926,0.021491,0.016056,1,1.3e-05,-0.000125,0.000201,50.665054 0.7 sec,Standing,unlabeled,0,0,0,0,,,,,9.87335,0.114542,-0.389556,0.002291,0.05934,0.06883,0.026639,0.004625,0.006126,-0.458252,-0.077393,-0.520996,0.098733,0.001149,-0.003898,1,0.000133,2.3e-05,3.1e-05,169.839238,-87.892865,-139.709524,9.251414,-1.718574,-0.059377,0.321865,0.770568,-0.439945,0.581469,-0.0737,-0.041852,-0.352051,-0.562988,0.117432,0.092511,-0.017203,-0.00061,0.999996,0.002907,-0.000368,-0.000209,-63.026232,-81.326946,163.642482,9.520155,2.195471,1.647124,0.022103,-0.130481,0.094328,-0.004861,-0.021742,0.034282,-0.4646,0.126465,0.502441,0.095196,0.021971,0.016481,1,-2.4e-05,-0.000109,0.000171,50.65483 0.71 sec,Standing,unlabeled,0,0,0,0,,,,,9.863062,0.122177,-0.409408,0.016312,0.076838,0.059312,0.023484,0.010772,0.001579,-0.459717,-0.081543,-0.523682,0.09863,0.001223,-0.004099,1,0.000117,5.4e-05,8e-06,169.835106,-87.898838,-139.691205,10.129658,-1.150571,0.537147,-0.243319,0.119152,0.392649,0.733224,-0.089829,-0.088788,-0.352783,-0.558838,0.12207,0.101289,-0.01157,0.005375,0.999993,0.003666,-0.000449,-0.000444,-62.747771,-81.393982,163.789355,9.5297,2.209881,1.660359,0.041308,-0.13566,0.108776,-0.001842,-0.016507,0.024392,-0.467773,0.127197,0.505127,0.095293,0.022111,0.016611,1,-9e-06,-8.3e-05,0.000122,50.651183 0.72 sec,Standing,unlabeled,0,0,0,0,,,,,9.815576,0.063116,-0.378479,0.021248,0.012454,0.010355,0.008881,0.012955,0.010666,-0.458008,-0.072021,-0.517578,0.098155,0.000637,-0.003791,1,4.4e-05,6.5e-05,5.3e-05,169.957851,-87.907006,-139.807247,11.024683,-0.07553,1.44665,-1.22875,-0.941121,1.198514,0.713055,-0.022565,-0.127937,-0.348877,-0.55249,0.130615,0.110245,-0.000877,0.014476,0.999993,0.003565,-0.000113,-0.00064,-62.182776,-81.463262,163.63405,9.550347,2.208138,1.687422,0.059356,-0.118471,0.132906,-0.010022,-0.008595,0.013312,-0.46582,0.132568,0.505127,0.095501,0.022089,0.016877,1,-5e-05,-4.3e-05,6.7e-05,50.644514 0.73 sec,Standing,unlabeled,0,0,0,0,,,,,9.841219,0.084915,-0.352324,-0.012377,0.018702,0.035177,0.012475,0.010619,0.003545,-0.452393,-0.070557,-0.525635,0.098412,0.000851,-0.003528,1,6.2e-05,5.3e-05,1.8e-05,169.978281,-87.913108,-139.819766,10.837675,0.760426,1.928832,-1.899239,-1.583559,0.940872,0.393273,0.062422,-0.112848,-0.342773,-0.551025,0.12793,0.108387,0.007505,0.019269,0.999998,0.001966,0.000312,-0.000564,-61.536424,-81.501647,163.212748,9.533763,2.1702,1.699154,0.054768,-0.082547,0.111007,-0.004882,-0.005932,0.008995,-0.458008,0.135986,0.500732,0.095336,0.021707,0.016994,1,-2.4e-05,-3e-05,4.5e-05,50.642346 0.74 sec,Standing,unlabeled,0,0,0,0,,,,,9.866854,0.107032,-0.326189,-0.046004,0.024958,0.059999,-0.001354,0.012438,0.004613,-0.454346,-0.08374,-0.530762,0.098668,0.001073,-0.003268,1,-7e-06,6.2e-05,2.3e-05,170.00382,-87.920375,-139.844404,10.161748,0.332302,1.853918,-1.390294,-1.443941,0.325886,0.011372,0.046857,-0.087426,-0.345703,-0.563965,0.121582,0.101623,0.003278,0.018516,1,5.7e-05,0.000234,-0.000437,-61.203502,-81.53104,162.885637,9.542545,2.187017,1.713645,0.074009,-0.087734,0.125452,-0.000958,-0.005709,-0.000893,-0.462402,0.125244,0.494873,0.095425,0.02187,0.017139,1,-5e-06,-2.9e-05,-4e-06,50.65473 0.75 sec,Standing,unlabeled,0,0,0,0,,,,,9.868636,0.072823,-0.367695,0.00803,0.017426,0.063046,-0.001622,0.018335,0.008702,-0.448975,-0.075928,-0.516357,0.098686,0.000732,-0.003686,1,-8e-06,9.2e-05,4.4e-05,170.074659,-87.931475,-139.915446,10.049807,-0.148805,1.333706,-1.005704,-0.840911,0.241216,-0.228428,-0.059365,-0.038683,-0.339844,-0.559326,0.133301,0.100494,-0.001492,0.013369,0.999999,-0.001142,-0.000297,-0.000193,-61.455496,-81.565243,163.01039,9.556089,2.142562,1.597904,-0.046416,-0.113737,0.10939,-0.001216,-0.00244,-0.005572,-0.458496,0.126709,0.510986,0.095561,0.021423,0.01598,1,-6e-06,-1.2e-05,-2.8e-05,50.668014 0.76 sec,Standing,unlabeled,0,0,0,0,,,,,9.899278,0.133344,-0.356857,-0.031233,0.065188,0.093655,0.004161,0.022105,0.006739,-0.455078,-0.080078,-0.523193,0.098992,0.001337,-0.003579,1,2.1e-05,0.000111,3.4e-05,170.110835,-87.944406,-139.947567,9.927981,-0.400746,0.554722,-0.896172,-0.041876,0.098329,-0.399613,-0.101538,0.018802,-0.349609,-0.5625,0.125488,0.099277,-0.003987,0.005606,0.999998,-0.001998,-0.000508,9.4e-05,-62.057204,-81.581578,163.39011,9.499191,2.103963,1.596034,-0.053451,-0.08674,0.046229,0.000798,5.5e-05,-0.008891,-0.465576,0.121094,0.504639,0.094993,0.021035,0.01596,1,4e-06,0,-4.4e-05,50.682759 0.77 sec,Standing,unlabeled,0,0,0,0,,,,,9.915686,0.103488,-0.345308,-0.025213,0.034993,0.109456,0.001723,0.021757,0.011462,-0.457031,-0.075928,-0.519043,0.099156,0.001041,-0.003464,1,9e-06,0.000109,5.7e-05,170.219444,-87.957624,-140.053931,9.55457,-0.670287,0.397713,-0.61567,0.137049,-0.247155,-0.518236,-0.095378,0.060391,-0.348877,-0.557617,0.126221,0.095546,-0.006664,0.00404,0.999996,-0.002591,-0.000477,0.000302,-62.78156,-81.574771,163.826545,9.450811,2.082957,1.609181,-0.041544,-0.064978,-0.002486,0.005182,-0.000302,-0.01178,-0.465088,0.128418,0.505371,0.094509,0.020824,0.016092,1,2.6e-05,-2e-06,-5.9e-05,50.704356 0.78 sec,Standing,unlabeled,0,0,0,0,,,,,9.873896,0.109086,-0.377068,0.002455,0.058694,0.068834,-0.001354,0.031759,0.005038,-0.458496,-0.087402,-0.52417,0.098738,0.001093,-0.003786,1,-7e-06,0.000159,2.5e-05,170.200103,-87.975838,-140.03366,9.392713,-0.898794,0.442155,-0.368161,0.115552,-0.374601,-0.591524,-0.120353,0.069021,-0.351074,-0.570313,0.118652,0.093928,-0.008942,0.004505,0.999995,-0.002958,-0.000602,0.000345,-63.648302,-81.568857,164.363037,9.442223,2.06474,1.636179,-0.027158,-0.034312,-0.009938,0.006846,-0.002296,-0.013207,-0.467529,0.119141,0.504639,0.094423,0.020641,0.016364,1,3.4e-05,-1.1e-05,-6.6e-05,50.731845 0.79 sec,Standing,unlabeled,0,0,0,0,,,,,9.830376,0.148592,-0.36554,-0.02387,0.089829,0.025165,-0.00634,0.027484,0.004776,-0.451416,-0.078857,-0.522217,0.098303,0.001488,-0.003669,1,-3.2e-05,0.000137,2.4e-05,170.182481,-87.991579,-140.016908,9.642834,-1.193889,0.769337,-0.063582,-0.159051,-0.067323,-0.632927,-0.117912,0.060748,-0.345215,-0.563721,0.117188,0.096427,-0.011885,0.007788,0.999995,-0.003165,-0.00059,0.000304,-64.51512,-81.565518,164.876232,9.354259,2.039371,1.677129,0.015382,0.003904,-0.092929,0.006644,-0.004985,-0.015528,-0.462402,0.124756,0.502686,0.093544,0.020386,0.016774,1,3.3e-05,-2.5e-05,-7.8e-05,50.766498 0.8 sec,Standing,unlabeled,0,0,0,0,,,,,9.778599,0.07692,-0.36511,0.015078,0.030521,-0.027031,-0.009669,0.023922,0.00781,-0.457031,-0.084229,-0.523926,0.097786,0.000773,-0.003663,1,-4.8e-05,0.00012,3.9e-05,170.224647,-88.005638,-140.062949,9.921071,-1.741253,1.161421,0.491638,-0.45191,0.30475,-0.58466,-0.045017,0.033669,-0.349365,-0.567383,0.114014,0.099211,-0.017362,0.011687,0.999996,-0.002923,-0.000225,0.000168,-65.054581,-81.557389,165.085851,9.351401,1.952671,1.700141,-0.010563,0.089817,-0.109909,0.010377,-0.003595,-0.01374,-0.466553,0.120361,0.504883,0.093515,0.019519,0.017004,1,5.2e-05,-1.8e-05,-6.9e-05,50.798734 0.81 sec,Standing,unlabeled,0,0,0,0,,,,,9.757384,0.066606,-0.355876,0.014755,0.019034,-0.048618,-0.00759,0.026448,0.003268,-0.457764,-0.074219,-0.526123,0.097573,0.000668,-0.003572,1,-3.8e-05,0.000132,1.6e-05,170.184151,-88.020694,-140.024129,10.037936,-2.100181,1.520053,0.878525,-0.747538,0.490267,-0.430887,0.044249,0.014825,-0.349854,-0.561523,0.10791,0.100384,-0.020962,0.015224,0.999998,-0.002154,0.000221,7.4e-05,-65.161938,-81.537568,164.947935,9.359796,1.971578,1.714273,0.008634,0.084645,-0.095466,0.015673,-0.008966,-0.016628,-0.46875,0.131836,0.500244,0.093599,0.019707,0.017148,1,7.8e-05,-4.5e-05,-8.3e-05,50.846241 0.82 sec,Standing,unlabeled,0,0,0,0,,,,,9.742168,0.035619,-0.358467,0.034417,-0.004957,-0.063923,-0.00015,0.011609,0.004178,-0.459961,-0.092773,-0.522461,0.097421,0.000358,-0.00359,1,-1e-06,5.8e-05,2.1e-05,170.207697,-88.027447,-140.046081,9.801029,-2.012039,1.496816,0.815952,-0.750068,0.243184,-0.258342,0.090937,0.005731,-0.351563,-0.576416,0.112305,0.098018,-0.020098,0.01495,0.999999,-0.001292,0.000455,2.9e-05,-64.993907,-81.510974,164.631302,9.362304,1.941055,1.668923,-0.04439,0.086952,-0.107214,0.019363,-0.011454,-0.011554,-0.471924,0.112305,0.506348,0.093623,0.019404,0.016696,1,9.7e-05,-5.7e-05,-5.8e-05,50.893111 0.83 sec,Standing,unlabeled,0,0,0,0,,,,,9.7422,0.035355,-0.357614,0.034443,-0.005049,-0.063924,0.002576,0.005922,0.001156,-0.454102,-0.080322,-0.515625,0.097422,0.000354,-0.003579,1,1.3e-05,3e-05,6e-06,170.196196,-88.03066,-140.029708,9.511266,-1.80478,1.118413,0.589382,-0.419485,-0.094204,-0.127021,0.084545,-0.003342,-0.346924,-0.567871,0.117188,0.095117,-0.018042,0.011155,1,-0.000635,0.000423,-1.7e-05,-64.758888,-81.490597,164.322928,9.419008,1.981726,1.669208,-0.036851,0.060085,-0.044052,0.016238,-0.011624,-0.010556,-0.464844,0.122559,0.51416,0.09419,0.019811,0.016699,1,8.1e-05,-5.8e-05,-5.3e-05,50.937323 0.84 sec,Standing,unlabeled,0,0,0,0,,,,,9.768784,-0.001791,-0.327049,0.026463,-0.052826,-0.038608,0.01154,0.00554,-8.3e-05,-0.450195,-0.077393,-0.517334,0.097688,-1.8e-05,-0.003273,1,5.8e-05,2.8e-05,-0,170.173728,-88.033571,-139.998917,9.485861,-1.582619,0.785377,0.32106,-0.124408,-0.169841,-0.031967,0.058171,-0.013774,-0.343018,-0.563232,0.111328,0.09486,-0.015831,0.007829,1,-0.00016,0.000291,-6.9e-05,-64.545279,-81.481793,164.091325,9.421892,1.948433,1.666055,-0.056767,0.087768,-0.048812,0.01372,-0.010572,-0.006773,-0.462158,0.12915,0.508545,0.094219,0.01948,0.016667,1,6.9e-05,-5.3e-05,-3.4e-05,50.973557 0.85 sec,Standing,unlabeled,0,0,0,0,,,,,9.764557,-0.014639,-0.358516,0.060485,-0.047836,-0.041845,0.017173,0.001598,0.001708,-0.458496,-0.077148,-0.522217,0.097646,-0.000145,-0.003586,1,8.6e-05,8e-06,9e-06,170.192889,-88.034402,-140.006644,9.526176,-1.225238,0.566002,-0.068309,0.037911,-0.191695,-0.006043,0.040084,-0.024628,-0.353516,-0.5625,0.112061,0.095261,-0.012264,0.005641,1,-3e-05,0.0002,-0.000123,-64.361481,-81.483241,163.906989,9.408179,1.996189,1.737878,0.031016,0.088579,-0.039765,0.011304,-0.011599,-0.003917,-0.468506,0.127441,0.505859,0.094081,0.019959,0.017385,1,5.7e-05,-5.8e-05,-2e-05,51.006388 0.86 sec,Standing,unlabeled,0,0,0,0,,,,,9.74748,-0.011734,-0.320009,0.026155,-0.064388,-0.060197,0.023997,-0.003031,-0.002734,-0.45874,-0.079102,-0.519531,0.097475,-0.000118,-0.003199,1,0.00012,-1.5e-05,-1.4e-05,170.158339,-88.032214,-139.956622,9.559772,-1.177687,0.413887,-0.14313,0.185011,-0.174598,-0.038584,0.03722,-0.013655,-0.350098,-0.563721,0.11377,0.095598,-0.011783,0.004123,1,-0.000193,0.000186,-6.8e-05,-64.224579,-81.479369,163.749114,9.428096,1.998919,1.722599,0.015951,0.080407,-0.022626,0.003388,-0.009944,-0.000493,-0.466064,0.122803,0.510986,0.09428,0.019989,0.017231,1,1.7e-05,-5e-05,-2e-06,51.027562 0.87 sec,Standing,unlabeled,0,0,0,0,,,,,9.81141,0.017727,-0.34064,0.027227,-0.030285,0.004566,0.028064,-0.00397,-0.000321,-0.460205,-0.077637,-0.525879,0.098114,0.000178,-0.003404,1,0.00014,-2e-05,-2e-06,170.166965,-88.029681,-139.947947,9.625505,-1.282087,0.350215,-0.061352,0.271012,-0.099834,-0.074884,0.035165,0.006991,-0.35498,-0.567383,0.104004,0.096256,-0.012816,0.00349,1,-0.000374,0.000176,3.5e-05,-64.150404,-81.465298,163.635619,9.439764,1.981725,1.734748,0.014986,0.102858,-0.012946,0.001275,-0.010359,0.003756,-0.470703,0.12793,0.503418,0.094396,0.019819,0.017352,1,6e-06,-5.2e-05,1.9e-05,51.042854 0.88 sec,Standing,unlabeled,0,0,0,0,,,,,9.820655,0.069148,-0.325422,-0.012405,0.006061,0.013592,0.028064,-0.003971,-0.000319,-0.457275,-0.077393,-0.53125,0.098207,0.000692,-0.003252,1,0.00014,-2e-05,-2e-06,170.177162,-88.027199,-139.940367,9.706932,-1.627931,0.176477,0.234736,0.505886,0.015578,-0.108265,0.042873,0.022949,-0.349365,-0.563965,0.099854,0.097072,-0.016267,0.001753,1,-0.000541,0.000214,0.000115,-64.095539,-81.441072,163.520317,9.428867,1.996079,1.762897,0.049522,0.105909,-0.015647,-0.001243,-0.009306,0.00754,-0.465332,0.126709,0.497559,0.094287,0.019964,0.017633,1,-6e-06,-4.7e-05,3.8e-05,51.050011 0.89 sec,Standing,unlabeled,0,0,0,0,,,,,9.804354,0.097998,-0.335002,-0.018382,0.036087,-0.002205,0.020427,0.0013,0.000558,-0.455322,-0.076416,-0.526367,0.098044,0.000981,-0.003351,1,0.000102,6e-06,3e-06,170.180689,-88.027801,-139.931426,9.687191,-2.007697,0.098117,0.59237,0.648506,0.041788,-0.085928,0.059288,0.035043,-0.344727,-0.560791,0.101318,0.096876,-0.02006,0.000961,1,-0.00043,0.000296,0.000175,-63.991755,-81.406403,163.367054,9.477661,2.015,1.790893,0.071196,0.109662,0.040053,-0.004817,-0.011884,0.011361,-0.463379,0.130615,0.498047,0.094774,0.020156,0.017914,1,-2.4e-05,-5.9e-05,5.7e-05,51.054486 0.9 sec,Standing,unlabeled,0,0,0,0,,,,,9.815405,0.115587,-0.36231,-0.004019,0.065002,0.009867,0.015531,0.000746,0.004207,-0.455322,-0.082275,-0.522949,0.098154,0.001158,-0.003623,1,7.8e-05,4e-06,2.1e-05,170.244517,-88.028424,-139.984695,9.575016,-2.334888,0.017111,0.910634,0.782599,-0.030499,-0.015858,0.069634,0.037533,-0.349609,-0.567139,0.107422,0.095755,-0.023331,0.00014,1,-7.9e-05,0.000348,0.000188,-63.818794,-81.367865,163.185839,9.44688,2.028588,1.790746,0.087943,0.095568,0.013228,-0.001285,-0.013184,0.010827,-0.464111,0.120361,0.50708,0.094467,0.020291,0.017914,1,-6e-06,-6.6e-05,5.4e-05,51.063429 0.91 sec,Standing,unlabeled,0,0,0,0,,,,,9.819653,0.127964,-0.330498,-0.037988,0.059832,0.013103,0.008571,-0.0002,0.002774,-0.451172,-0.079346,-0.522705,0.098197,0.001281,-0.003305,1,4.3e-05,-1e-06,1.4e-05,170.28127,-88.028389,-140.015118,9.368196,-2.5762,-0.164244,1.142556,0.999497,-0.214644,0.104886,0.064922,0.032994,-0.345947,-0.566406,0.106201,0.093686,-0.025746,-0.001686,1,0.000524,0.000325,0.000165,-63.586187,-81.332859,163.014053,9.46427,2.064209,1.777158,0.093033,0.059795,0.035126,-0.000575,-0.014041,0.012684,-0.46167,0.125488,0.503906,0.09464,0.020648,0.017778,1,-3e-06,-7e-05,6.3e-05,51.072084 0.92 sec,Standing,unlabeled,0,0,0,0,,,,,9.82043,0.153434,-0.3787,-0.009633,0.106344,0.01566,0.001987,-0.00346,0.006957,-0.457275,-0.085205,-0.525879,0.098204,0.001538,-0.003785,1,1e-05,-1.7e-05,3.5e-05,170.394224,-88.026897,-140.125306,9.157177,-2.524276,-0.234353,1.106249,1.059931,-0.435399,0.263077,0.041815,0.02422,-0.352295,-0.569092,0.10498,0.091574,-0.025229,-0.002396,0.999999,0.001315,0.000209,0.000121,-63.327864,-81.308055,162.908124,9.478454,2.136452,1.723368,0.085226,-0.028988,0.054805,0.00093,-0.008001,0.009824,-0.465088,0.123291,0.502686,0.094783,0.021369,0.017238,1,5e-06,-4e-05,4.9e-05,51.075475 0.93 sec,Standing,unlabeled,0,0,0,0,,,,,9.820421,0.152589,-0.37928,-0.009605,0.106255,0.015661,-0.002187,-0.008372,0.010256,-0.454102,-0.078857,-0.526855,0.098204,0.001531,-0.003789,1,-1.1e-05,-4.2e-05,5.1e-05,170.568988,-88.022951,-140.298921,9.082421,-2.265504,-0.251615,0.857336,1.040029,-0.546108,0.41685,0.012032,0.009522,-0.347656,-0.565186,0.108643,0.090825,-0.022645,-0.002569,0.999998,0.002084,6e-05,4.8e-05,-63.056769,-81.298507,162.878108,9.479078,2.133421,1.764866,0.118553,-0.003531,0.061779,0.00022,-0.007144,0.007967,-0.462646,0.122803,0.50293,0.094789,0.021338,0.017652,1,1e-06,-3.6e-05,4e-05,51.079678 0.94 sec,Standing,unlabeled,0,0,0,0,,,,,9.820396,0.151858,-0.380216,-0.009591,0.106177,0.015661,-0.009598,-0.010856,0.005083,-0.453125,-0.078369,-0.527588,0.098204,0.001521,-0.003797,1,-4.8e-05,-5.4e-05,2.5e-05,170.66401,-88.017084,-140.397809,9.091399,-1.965519,-0.187373,0.571324,0.934788,-0.574091,0.556664,-0....
type test2.csv
Time,GeneralEvent,ClinicalEvent,L Foot Contact,R Foot Contact,L Foot Pressure,R Foot Pressure,Walkway_X,Walkway_Y,WalkwayPressureLevel,WalkwayFoot,LowerBack_Acc_X,LowerBack_Acc_Y,LowerBack_Acc_Z,LowerBack_FreeAcc_E,LowerBack_FreeAcc_N,LowerBack_FreeAcc_U,LowerBack_Gyr_X,LowerBack_Gyr_Y,LowerBack_Gyr_Z,LowerBack_Mag_X,LowerBack_Mag_Y,LowerBack_Mag_Z,LowerBack_VelInc_X,LowerBack_VelInc_Y,LowerBack_VelInc_Z,LowerBack_OriInc_q0,LowerBack_OriInc_q1,LowerBack_OriInc_q2,LowerBack_OriInc_q3,LowerBack_Roll,LowerBack_Pitch,LowerBack_Yaw,R_Wrist_Acc_X,R_Wrist_Acc_Y,R_Wrist_Acc_Z,R_Wrist_FreeAcc_E,R_Wrist_FreeAcc_N,R_Wrist_FreeAcc_U,R_Wrist_Gyr_X,R_Wrist_Gyr_Y,R_Wrist_Gyr_Z,R_Wrist_Mag_X,R_Wrist_Mag_Y,R_Wrist_Mag_Z,R_Wrist_VelInc_X,R_Wrist_VelInc_Y,R_Wrist_VelInc_Z,R_Wrist_OriInc_q0,R_Wrist_OriInc_q1,R_Wrist_OriInc_q2,R_Wrist_OriInc_q3,R_Wrist_Roll,R_Wrist_Pitch,R_Wrist_Yaw,L_Wrist_Acc_X,L_Wrist_Acc_Y,L_Wrist_Acc_Z,L_Wrist_FreeAcc_E,L_Wrist_FreeAcc_N,L_Wrist_FreeAcc_U,L_Wrist_Gyr_X,L_Wrist_Gyr_Y,L_Wrist_Gyr_Z,L_Wrist_Mag_X,L_Wrist_Mag_Y,L_Wrist_Mag_Z,L_Wrist_VelInc_X,L_Wrist_VelInc_Y,L_Wrist_VelInc_Z,L_Wrist_OriInc_q0,L_Wrist_OriInc_q1,L_Wrist_OriInc_q2,L_Wrist_OriInc_q3,L_Wrist_Roll 0 sec,Standing,unlabeled,1,1,216,246,26|27|28|29|30|31|32|20|21|22|23|24|25|26|27|28|29|30|31|32|33|19|20|21|22|23|24|25|26|27|29|30|31|32|33|34|18|19|20|21|22|23|24|25|26|27|30|31|32|33|34|18|19|20|21|22|23|24|25|26|27|31|32|18|19|20|21|22|23|24|25|26|27|30|31|32|18|19|20|21|22|23|24|25|26|27|30|31|32|19|20|21|22|31|30|31|32|33|34|18|19|20|21|22|23|24|25|26|27|32|34|18|19|20|21|22|23|24|25|26|27|31|32|34|19|20|21|22|23|24|25|26|27|33|34|19|20|21|22|23|24|25|26|27|20|21|22|23|24|25|26|27|31|32|21|22|23|25|26|27|29|30|31,12|12|12|12|12|12|12|13|13|13|13|13|13|13|13|13|13|13|13|13|13|14|14|14|14|14|14|14|14|14|14|14|14|14|14|14|15|15|15|15|15|15|15|15|15|15|15|15|15|15|15|16|16|16|16|16|16|16|16|16|16|16|16|17|17|17|17|17|17|17|17|17|17|17|17|17|18|18|18|18|18|18|18|18|18|18|18|18|18|19|19|19|19|19|30|30|30|30|30|31|31|31|31|31|31|31|31|31|31|31|31|32|32|32|32|32|32|32|32|32|32|32|32|32|33|33|33|33|33|33|33|33|33|33|33|34|34|34|34|34|34|34|34|34|35|35|35|35|35|35|35|35|35|35|36|36|36|36|36|36|36|36|36,5|6|5|5|5|4|2|3|5|7|4|4|6|5|6|4|4|5|4|3|3|3|6|6|7|6|4|6|5|5|2|2|2|3|3|2|3|2|4|5|4|5|3|6|4|4|2|3|2|2|2|2|3|4|3|4|4|4|5|3|4|2|2|3|2|3|3|4|3|4|4|3|2|2|2|2|3|4|3|4|4|4|2|3|3|2|3|3|3|4|3|3|2|2|2|3|2|2|2|3|5|5|5|5|4|3|4|4|3|2|3|3|4|5|6|6|6|5|7|5|4|3|2|2|3|3|5|5|6|5|7|7|5|2|2|3|4|5|6|6|3|7|7|4|4|6|5|5|4|5|8|2|4|2|3|3|3|3|8|3|2|2|3,R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L,9.89998,-0.083512,0.147417,0.05508,-0.062989,0.088389,-0.002838,-0.002228,-0.007354,-0.811768,-0.121826,-0.420654,0.099,-0.000839,0.001475,1,-1.4e-05,-1.1e-05,-3.7e-05,0.133545,-89.109882,36.559941,9.013414,-1.979178,-0.927829,0.350114,1.436425,-0.656611,0.363748,0.031008,0.017166,-0.668945,-0.334961,0.122314,0.090134,-0.019767,-0.009328,0.999998,0.001819,0.000155,8.6e-05,-74.328292,-82.067477,-178.032888,9.485755,1.894193,1.681694,0.012644,0.085283,0.005061,-0.003854,-0.01336,0.031753,-0.716064,0.073486,0.302734,0.094853,0.018957,0.016823,1,-1.9e-05,-6.7e-05,0.000159,50.252512 0.01 sec,Standing,unlabeled,1,1,214,248,26|27|28|29|30|31|32|20|21|22|23|24|25|26|27|28|29|30|31|32|33|19|20|21|22|23|24|25|26|27|29|30|31|32|33|34|18|19|20|21|22|23|24|25|26|27|30|31|32|33|34|18|19|20|21|22|23|24|25|26|27|30|31|32|18|19|20|21|22|23|24|25|26|27|30|31|32|18|19|20|21|22|23|24|25|26|27|30|31|32|19|20|21|22|31|30|31|32|33|34|18|19|20|21|22|23|24|25|26|27|34|18|19|20|21|22|23|24|25|26|27|31|32|34|19|20|21|22|23|24|25|26|27|33|34|19|20|21|22|23|24|25|26|27|20|21|22|23|24|25|26|27|31|32|21|22|23|25|26|27|30|31,12|12|12|12|12|12|12|13|13|13|13|13|13|13|13|13|13|13|13|13|13|14|14|14|14|14|14|14|14|14|14|14|14|14|14|14|15|15|15|15|15|15|15|15|15|15|15|15|15|15|15|16|16|16|16|16|16|16|16|16|16|16|16|16|17|17|17|17|17|17|17|17|17|17|17|17|17|18|18|18|18|18|18|18|18|18|18|18|18|18|19|19|19|19|19|30|30|30|30|30|31|31|31|31|31|31|31|31|31|31|31|32|32|32|32|32|32|32|32|32|32|32|32|32|33|33|33|33|33|33|33|33|33|33|33|34|34|34|34|34|34|34|34|34|35|35|35|35|35|35|35|35|35|35|36|36|36|36|36|36|36|36,5|6|5|5|5|4|2|3|5|7|4|4|6|5|6|4|4|5|4|3|3|3|5|6|7|6|4|6|5|5|2|2|2|3|3|2|3|2|4|5|4|5|3|6|4|4|2|3|2|2|2|2|3|4|3|4|4|4|5|4|4|2|2|2|3|2|3|3|4|3|4|4|3|2|2|2|2|3|4|3|4|4|4|2|3|3|2|3|3|4|4|3|3|2|2|2|3|2|2|2|3|5|5|5|5|4|3|4|4|3|3|3|4|5|6|6|6|5|7|5|4|3|2|2|3|3|5|5|6|5|7|7|5|2|2|3|4|5|6|6|3|7|7|4|3|6|5|5|4|5|8|2|4|2|3|4|3|3|8|3|2|3,R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L,9.884615,-0.051488,0.113782,0.063302,-0.017634,0.072499,-0.003067,0.008798,-0.002452,-0.812012,-0.124268,-0.42627,0.098846,-0.000516,0.001133,1,-1.5e-05,4.4e-05,-1.2e-05,0.254225,-89.104971,36.439173,8.910327,-1.777149,-0.966257,0.155114,1.419223,-0.787856,0.444784,-0.014207,-0.00356,-0.671875,-0.335205,0.12085,0.089104,-0.017752,-0.009696,0.999998,0.002224,-7.1e-05,-1.8e-05,-74.114097,-82.070119,-177.989938,9.48049,2.001602,1.664329,0.042854,-0.021647,0.018578,-0.002258,-0.012709,0.03306,-0.718262,0.071777,0.298828,0.094801,0.020032,0.016649,1,-1.1e-05,-6.4e-05,0.000165,50.229077 0.02 sec,Standing,unlabeled,1,1,214,248,26|27|28|29|30|31|32|20|21|22|23|24|25|26|27|28|29|30|31|32|33|19|20|21|22|23|24|25|26|27|29|30|31|32|33|34|18|19|20|21|22|23|24|25|26|27|30|31|32|33|34|18|19|20|21|22|23|24|25|26|27|30|31|32|18|19|20|21|22|23|24|25|26|27|30|31|32|18|19|20|21|22|23|24|25|26|27|30|31|32|19|20|21|22|31|30|31|32|33|34|18|19|20|21|22|23|24|25|26|27|34|18|19|20|21|22|23|24|25|26|27|31|32|34|19|20|21|22|23|24|25|26|27|33|34|19|20|21|22|23|24|25|26|27|20|21|22|23|24|25|26|27|31|32|21|22|23|25|26|27|30|31,12|12|12|12|12|12|12|13|13|13|13|13|13|13|13|13|13|13|13|13|13|14|14|14|14|14|14|14|14|14|14|14|14|14|14|14|15|15|15|15|15|15|15|15|15|15|15|15|15|15|15|16|16|16|16|16|16|16|16|16|16|16|16|16|17|17|17|17|17|17|17|17|17|17|17|17|17|18|18|18|18|18|18|18|18|18|18|18|18|18|19|19|19|19|19|30|30|30|30|30|31|31|31|31|31|31|31|31|31|31|31|32|32|32|32|32|32|32|32|32|32|32|32|32|33|33|33|33|33|33|33|33|33|33|33|34|34|34|34|34|34|34|34|34|35|35|35|35|35|35|35|35|35|35|36|36|36|36|36|36|36|36,5|6|5|5|5|4|2|3|5|7|4|4|6|5|6|4|4|5|4|3|3|3|5|6|7|6|4|6|5|5|2|2|2|3|3|2|3|2|4|5|4|5|3|6|4|4|2|3|2|2|2|2|3|4|3|4|4|4|5|4|4|2|2|2|3|2|3|3|4|3|4|4|3|2|2|2|2|3|4|3|4|4|4|2|3|3|2|3|3|4|4|3|3|2|2|2|3|2|2|2|3|5|5|5|5|4|3|4|4|3|3|3|4|5|6|6|6|5|7|5|4|3|2|2|3|3|5|5|6|5|7|7|5|2|2|3|4|5|6|6|3|7|7|4|3|6|5|5|4|5|8|2|4|2|3|4|3|3|8|3|2|3,R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L,9.897591,-0.083318,0.114204,0.082997,-0.042986,0.085472,-0.001818,0.009535,-0.000811,-0.807373,-0.120117,-0.428711,0.098976,-0.000834,0.001137,1,-9e-06,4.8e-05,-4e-06,0.321858,-89.099777,36.374202,9.035569,-1.61212,-0.820324,0.022784,1.232745,-0.6807,0.516464,-0.067878,-0.036032,-0.664063,-0.332275,0.12085,0.090356,-0.016116,-0.008214,0.999997,0.002582,-0.000339,-0.00018,-74.035919,-82.09914,-177.767181,9.513209,2.049006,1.665262,0.056988,-0.062685,0.059774,-0.008078,-0.00968,0.031635,-0.710205,0.072266,0.297363,0.095128,0.020506,0.016656,1,-4e-05,-4.8e-05,0.000158,50.199842 0.03 sec,Standing,unlabeled,1,1,214,248,26|27|28|29|30|31|32|20|21|22|23|24|25|26|27|28|29|30|31|32|33|19|20|21|22|23|24|25|26|27|29|30|31|32|33|34|18|19|20|21|22|23|24|25|26|27|30|31|32|33|34|18|19|20|21|22|23|24|25|26|27|30|31|32|18|19|20|21|22|23|24|25|26|27|30|31|32|18|19|20|21|22|23|24|25|26|27|30|31|32|19|20|21|22|31|30|31|32|33|34|18|19|20|21|22|23|24|25|26|27|34|18|19|20|21|22|23|24|25|26|27|31|32|34|19|20|21|22|23|24|25|26|27|33|34|19|20|21|22|23|24|25|26|27|20|21|22|23|24|25|26|27|31|32|21|22|23|25|26|27|29|30|31,12|12|12|12|12|12|12|13|13|13|13|13|13|13|13|13|13|13|13|13|13|14|14|14|14|14|14|14|14|14|14|14|14|14|14|14|15|15|15|15|15|15|15|15|15|15|15|15|15|15|15|16|16|16|16|16|16|16|16|16|16|16|16|16|17|17|17|17|17|17|17|17|17|17|17|17|17|18|18|18|18|18|18|18|18|18|18|18|18|18|19|19|19|19|19|30|30|30|30|30|31|31|31|31|31|31|31|31|31|31|31|32|32|32|32|32|32|32|32|32|32|32|32|32|33|33|33|33|33|33|33|33|33|33|33|34|34|34|34|34|34|34|34|34|35|35|35|35|35|35|35|35|35|35|36|36|36|36|36|36|36|36|36,5|6|5|5|5|4|2|3|5|7|4|4|6|5|6|4|4|5|4|3|3|3|5|6|7|6|4|6|5|5|2|2|2|3|3|2|3|2|4|5|4|5|3|6|4|4|2|3|2|2|2|2|3|4|3|4|4|4|5|4|4|2|2|2|3|2|3|3|4|3|4|4|3|2|2|2|2|3|4|3|4|4|4|2|3|3|2|3|3|4|4|3|3|2|2|2|3|2|2|2|3|5|5|5|5|4|3|4|4|3|3|3|4|5|6|6|6|5|7|5|4|3|2|2|3|3|5|5|6|5|7|7|5|2|2|3|4|5|5|6|3|7|7|4|3|6|5|5|4|5|8|2|4|2|3|4|3|3|8|3|2|2|3,R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L,9.844787,-0.085776,0.101172,0.094844,-0.037497,0.032465,-0.00309,0.002643,-0.001977,-0.816895,-0.112549,-0.430176,0.098448,-0.000859,0.00101,1,-1.5e-05,1.3e-05,-1e-05,0.42458,-89.098389,36.27138,9.941802,-1.207642,-0.069944,-0.244828,0.387492,0.191942,0.567627,-0.154549,-0.104956,-0.673096,-0.326904,0.124023,0.099412,-0.012127,-0.000657,0.999996,0.002838,-0.000773,-0.000525,-74.196223,-82.179838,-177.275761,9.513959,2.045978,1.664699,0.057168,-0.062666,0.059773,-0.01252,-0.006585,0.028422,-0.719727,0.080322,0.296143,0.095136,0.020474,0.016649,1,-6.3e-05,-3.3e-05,0.000142,50.16673 0.04 sec,Standing,unlabeled,1,1,215,248,26|27|28|29|30|31|32|20|21|22|23|24|25|26|27|28|29|30|31|32|33|19|20|21|22|23|24|25|26|27|29|30|31|32|33|34|18|19|20|21|22|23|24|25|26|27|30|31|32|33|34|18|19|20|21|22|23|24|25|26|27|31|32|18|19|20|21|22|23|24|25|26|27|30|31|32|18|19|20|21|22|23|24|25|26|27|30|31|32|19|20|21|22|31|30|31|32|33|34|18|19|20|21|22|23|24|25|26|27|34|18|19|20|21|22|23|24|25|26|27|31|32|34|19|20|21|22|23|24|25|26|27|33|34|19|20|21|22|23|24|25|26|27|20|21|22|23|24|25|26|27|31|32|21|22|23|25|26|27|30|31,12|12|12|12|12|12|12|13|13|13|13|13|13|13|13|13|13|13|13|13|13|14|14|14|14|14|14|14|14|14|14|14|14|14|14|14|15|15|15|15|15|15|15|15|15|15|15|15|15|15|15|16|16|16|16|16|16|16|16|16|16|16|16|17|17|17|17|17|17|17|17|17|17|17|17|17|18|18|18|18|18|18|18|18|18|18|18|18|18|19|19|19|19|19|30|30|30|30|30|31|31|31|31|31|31|31|31|31|31|31|32|32|32|32|32|32|32|32|32|32|32|32|32|33|33|33|33|33|33|33|33|33|33|33|34|34|34|34|34|34|34|34|34|35|35|35|35|35|35|35|35|35|35|36|36|36|36|36|36|36|36,5|6|5|5|5|4|2|3|5|7|4|4|6|5|7|4|4|5|4|3|3|3|5|6|7|6|4|6|5|5|2|2|2|3|3|2|3|2|4|5|4|4|4|6|4|4|2|3|2|2|2|2|3|4|3|4|4|4|5|4|4|2|2|3|2|3|3|4|3|4|4|3|2|2|2|2|3|4|3|4|4|4|2|3|3|2|3|3|4|4|3|3|2|2|2|3|2|2|2|3|5|5|5|5|4|3|4|4|3|3|3|4|5|6|6|6|5|7|5|4|3|2|2|3|3|5|5|6|5|7|7|5|2|2|3|4|5|6|6|3|7|7|4|3|6|5|5|4|5|8|3|4|2|3|4|3|3|8|3|2|3,R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L,9.889342,-0.050271,0.184534,0.0077,-0.05832,0.078329,-0.004296,0.004719,0.001107,-0.803955,-0.110352,-0.416992,0.098893,-0.000502,0.001843,1,-2.1e-05,2.4e-05,6e-06,0.412983,-89.095861,36.282236,11.271899,-0.276315,0.902622,-0.974819,-0.843396,1.424979,0.526514,-0.124816,-0.165359,-0.662354,-0.323242,0.137695,0.112711,-0.00288,0.009089,0.999996,0.002633,-0.000624,-0.000827,-74.199264,-82.288977,-176.965303,9.522585,2.074039,1.651136,0.055673,-0.095104,0.071409,-0.015059,-0.004596,0.025166,-0.707764,0.08374,0.310791,0.095223,0.020754,0.016512,1,-7.5e-05,-2.3e-05,0.000126,50.133874 0.05 sec,Standing,unlabeled,1,1,216,249,26|27|28|29|30|31|32|20|21|22|23|24|25|26|27|28|29|30|31|32|33|19|20|21|22|23|24|25|26|27|29|30|31|32|33|34|18|19|20|21|22|23|24|25|26|27|30|31|32|33|34|18|19|20|21|22|23|24|25|26|27|31|32|18|19|20|21|22|23|24|25|26|27|30|31|32|18|19|20|21|22|23|24|25|26|27|30|31|32|18|19|20|21|22|31|30|31|32|33|34|18|19|20|21|22|23|24|25|26|27|34|18|19|20|21|22|23|24|25|26|27|31|32|34|19|20|21|22|23|24|25|26|27|33|34|19|20|21|22|23|24|25|26|27|20|21|22|23|24|25|26|27|31|32|21|22|23|25|26|27|29|30|31,12|12|12|12|12|12|12|13|13|13|13|13|13|13|13|13|13|13|13|13|13|14|14|14|14|14|14|14|14|14|14|14|14|14|14|14|15|15|15|15|15|15|15|15|15|15|15|15|15|15|15|16|16|16|16|16|16|16|16|16|16|16|16|17|17|17|17|17|17|17|17|17|17|17|17|17|18|18|18|18|18|18|18|18|18|18|18|18|18|19|19|19|19|19|19|30|30|30|30|30|31|31|31|31|31|31|31|31|31|31|31|32|32|32|32|32|32|32|32|32|32|32|32|32|33|33|33|33|33|33|33|33|33|33|33|34|34|34|34|34|34|34|34|34|35|35|35|35|35|35|35|35|35|35|36|36|36|36|36|36|36|36|36,5|7|5|5|5|4|2|3|5|7|4|4|6|5|6|4|4|5|4|3|3|3|5|6|7|7|4|6|5|5|2|2|2|3|3|2|3|2|4|5|4|5|3|6|4|4|2|3|2|2|2|2|3|4|3|4|4|4|5|3|4|2|2|3|2|3|3|4|3|4|4|3|2|2|2|2|3|4|3|4|4|4|2|3|3|2|3|3|4|2|4|3|3|2|2|2|3|2|2|2|3|5|5|5|5|4|3|4|4|3|3|3|4|5|6|6|6|5|7|5|4|3|2|2|3|3|5|5|6|5|7|7|5|2|2|3|4|6|6|6|3|7|7|4|3|6|5|5|4|5|8|2|4|2|3|4|3|3|8|3|2|2|3,R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L,9.862029,-0.060401,0.117918,0.067291,-0.026574,0.049966,-0.004909,0.007428,4.9e-05,-0.817139,-0.115723,-0.418945,0.09862,-0.000604,0.001176,1,-2.5e-05,3.7e-05,0,0.439294,-89.091738,36.254792,11.231713,0.418017,1.377177,-1.447198,-1.514053,1.315474,0.274979,0.030212,-0.136405,-0.672363,-0.331055,0.13623,0.112322,0.004085,0.01376,0.999999,0.001375,0.000151,-0.000682,-73.748561,-82.357521,-177.257732,9.527773,2.09373,1.615275,0.031447,-0.129481,0.074351,-0.017924,-0.003484,0.017266,-0.719482,0.080566,0.306396,0.095276,0.020947,0.016153,1,-9e-05,-1.7e-05,8.6e-05,50.107682 0.06 sec,Standing,unlabeled,1,1,215,248,26|27|28|29|30|31|32|20|21|22|23|24|25|26|27|28|29|30|31|32|33|19|20|21|22|23|24|25|26|27|29|30|31|32|33|34|18|19|20|21|22|23|24|25|26|27|30|31|32|33|34|18|19|20|21|22|23|24|25|26|27|30|31|32|18|19|20|21|22|23|24|25|26|27|30|31|32|18|19|20|21|22|23|24|25|26|27|30|31|32|19|20|21|22|31|30|31|32|33|34|18|19|20|21|22|23|24|25|26|27|34|18|19|20|21|22|23|24|25|26|27|31|32|34|19|20|21|22|23|24|25|26|27|33|34|19|20|21|22|23|24|25|26|27|20|21|22|23|24|25|26|27|31|32|21|22|23|25|26|27|29|30|31,12|12|12|12|12|12|12|13|13|13|13|13|13|13|13|13|13|13|13|13|13|14|14|14|14|14|14|14|14|14|14|14|14|14|14|14|15|15|15|15|15|15|15|15|15|15|15|15|15|15|15|16|16|16|16|16|16|16|16|16|16|16|16|16|17|17|17|17|17|17|17|17|17|17|17|17|17|18|18|18|18|18|18|18|18|18|18|18|18|18|19|19|19|19|19|30|30|30|30|30|31|31|31|31|31|31|31|31|31|31|31|32|32|32|32|32|32|32|32|32|32|32|32|32|33|33|33|33|33|33|33|33|33|33|33|34|34|34|34|34|34|34|34|34|35|35|35|35|35|35|35|35|35|35|36|36|36|36|36|36|36|36|36,5|7|5|5|5|4|2|3|5|7|4|4|6|5|6|4|4|5|4|3|3|3|5|6|7|6|4|6|5|5|2|2|2|3|3|2|3|2|4|5|4|5|3|6|4|4|2|3|2|2|2|2|3|4|3|4|4|4|5|3|4|2|2|2|3|2|3|3|4|3|4|4|3|2|2|2|2|3|4|3|4|4|4|2|3|3|2|3|3|4|4|3|3|2|2|2|3|2|2|2|3|5|5|5|5|4|3|4|4|3|3|3|4|5|6|6|6|5|7|5|4|3|2|2|3|3|5|5|6|5|7|7|5|2|2|3|4|5|6|6|3|7|7|4|3|6|5|5|4|5|8|2|4|2|3|4|3|3|8|3|2|2|3,R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L,9.886944,-0.050898,0.151629,0.035581,-0.038302,0.075412,-0.003024,0.01161,0.002274,-0.801514,-0.120361,-0.418945,0.09887,-0.000508,0.001511,1,-1.5e-05,5.8e-05,1.1e-05,0.381123,-89.085453,36.31287,10.146627,0.231916,1.425571,-1.10219,-1.484544,0.268056,-0.062675,0.04744,-0.080639,-0.660156,-0.335205,0.137939,0.101471,0.002283,0.014231,1,-0.000313,0.000237,-0.000403,-73.481603,-82.39267,-177.560376,9.575434,2.075872,1.561692,-0.033348,-0.132328,0.10792,-0.019629,-0.004426,0.014409,-0.706299,0.075684,0.30957,0.095753,0.020767,0.015617,1,-9.8e-05,-2.2e-05,7.2e-05,50.086597 0.07 sec,Standing,unlabeled,1,1,216,247,26|27|28|29|30|31|32|20|21|22|23|24|25|26|27|28|29|30|31|32|33|19|20|21|22|23|24|25|26|27|29|30|31|32|33|34|18|19|20|21|22|23|24|25|26|27|30|31|32|33|34|18|19|20|21|22|23|24|25|26|27|30|31|32|18|19|20|21|22|23|24|25|26|27|30|31|32|18|19|20|21|22|23|24|25|26|27|30|31|32|19|20|21|22|31|30|31|32|33|34|18|19|20|21|22|23|24|25|26|27|34|18|19|20|21|22|23|24|25|26|27|31|32|34|19|20|21|22|23|24|25|26|27|33|34|19|20|21|22|23|24|25|26|27|20|21|22|23|24|25|26|27|31|32|21|22|23|25|26|27|29|30|31,12|12|12|12|12|12|12|13|13|13|13|13|13|13|13|13|13|13|13|13|13|14|14|14|14|14|14|14|14|14|14|14|14|14|14|14|15|15|15|15|15|15|15|15|15|15|15|15|15|15|15|16|16|16|16|16|16|16|16|16|16|16|16|16|17|17|17|17|17|17|17|17|17|17|17|17|17|18|18|18|18|18|18|18|18|18|18|18|18|18|19|19|19|19|19|30|30|30|30|30|31|31|31|31|31|31|31|31|31|31|31|32|32|32|32|32|32|32|32|32|32|32|32|32|33|33|33|33|33|33|33|33|33|33|33|34|34|34|34|34|34|34|34|34|35|35|35|35|35|35|35|35|35|35|36|36|36|36|36|36|36|36|36,5|6|5|5|5|4|2|3|5|7|4|4|6|5|6|4|4|5|4|3|3|3|5|6|7|6|4|6|5|5|2|2|2|3|3|2|3|2|4|5|4|5|3|6|4|4|2|3|2|2|2|2|3|4|3|4|4|4|5|3|4|2|2|2|3|2|3|3|4|3|4|4|3|2|2|2|2|3|4|3|4|4|4|2|3|3|2|3|3|4|4|3|3|2|2|2|3|2|2|2|3|5|5|5|5|4|3|4|4|3|3|3|4|5|6|6|6|5|7|5|4|3|2|2|3|3|5|5|6|5|7|7|5|2|2|3|4|6|6|6|3|7|7|4|3|6|5|5|4|5|8|2|4|2|3|4|3|3|8|3|2|2|3,R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L,9.876303,-0.018895,0.187769,-0.011899,-0.033353,0.065355,-0.006391,0.012967,0.006149,-0.80835,-0.117676,-0.424072,0.098763,-0.000186,0.001871,1,-3.2e-05,6.5e-05,3.1e-05,0.187815,-89.078175,36.504224,9.737371,-0.183255,0.778629,-0.863709,-0.736139,-0.10865,-0.322715,-0.084507,-0.023395,-0.662842,-0.331543,0.133545,0.09737,-0.001831,0.00783,0.999999,-0.001614,-0.000423,-0.000117,-73.977939,-82.417831,-177.242419,9.590358,2.12285,1.593656,0.010642,-0.160958,0.136945,-0.029056,-0.001226,0.010172,-0.710449,0.077148,0.306152,0.095902,0.021236,0.015934,1,-0.000145,-6e-06,5.1e-05,50.060675 0.08 sec,Standing,unlabeled,1,1,216,249,26|27|28|29|30|31|32|20|21|22|23|24|25|26|27|28|29|30|31|32|33|19|20|21|22|23|24|25|26|27|29|30|31|32|33|34|18|19|20|21|22|23|24|25|26|27|30|31|32|33|34|18|19|20|21|22|23|24|25|26|27|30|31|32|18|19|20|21|22|23|24|25|26|27|30|31|32|18|19|20|21|22|23|24|25|26|27|30|31|32|19|20|21|22|31|30|31|32|33|34|18|19|20|21|22|23|24|25|26|27|34|18|19|20|21|22|23|24|25|26|27|31|32|34|19|20|21|22|23|24|25|26|27|33|34|19|20|21|22|23|24|25|26|27|20|21|22|23|24|25|26|27|31|32|21|22|23|25|26|27|29|30|31,12|12|12|12|12|12|12|13|13|13|13|13|13|13|13|13|13|13|13|13|13|14|14|14|14|14|14|14|14|14|14|14|14|14|14|14|15|15|15|15|15|15|15|15|15|15|15|15|15|15|15|16|16|16|16|16|16|16|16|16|16|16|16|16|17|17|17|17|17|17|17|17|17|17|17|17|17|18|18|18|18|18|18|18|18|18|18|18|18|18|19|19|19|19|19|30|30|30|30|30|31|31|31|31|31|31|31|31|31|31|31|32|32|32|32|32|32|32|32|32|32|32|32|32|33|33|33|33|33|33|33|33|33|33|33|34|34|34|34|34|34|34|34|34|35|35|35|35|35|35|35|35|35|35|36|36|36|36|36|36|36|36|36,5|7|5|5|5|4|2|3|5|7|4|4|6|5|6|4|4|5|4|3|3|3|5|6|7|6|4|6|5|5|2|2|2|3|3|2|3|2|4|5|4|4|3|6|4|4|2|3|2|2|2|2|3|4|3|4|4|4|5|4|4|2|2|2|3|2|3|3|4|3|4|4|3|2|2|2|2|3|4|3|4|4|4|2|3|3|2|4|3|4|4|3|3|2|2|2|3|2|2|2|3|5|5|5|5|4|3|4|4|3|3|3|4|5|6|6|6|5|7|5|4|3|2|2|3|3|5|5|6|5|7|7|5|2|2|3|4|6|6|6|3|7|7|4|3|6|5|5|4|5|8|2|4|2|3|4|3|3|8|3|2|2|3,R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L,9.901788,-0.026804,0.135681,0.035869,-0.007197,0.089999,-0.005162,0.017045,0.002593,-0.811035,-0.109863,-0.422852,0.099018,-0.000267,0.001348,1,-2.6e-05,8.5e-05,1.3e-05,0.126886,-89.068661,36.565059,9.781986,-0.50271,0.113168,-0.779636,-0.017102,-0.04823,-0.460963,-0.171103,0.023887,-0.668213,-0.326172,0.13208,0.097819,-0.005013,0.001227,0.999997,-0.002305,-0.000856,0.000119,-74.968822,-82.429393,-176.506322,9.566588,2.102124,1.578792,-0.004756,-0.152341,0.107387,-0.027699,-0.003794,0.002385,-0.715332,0.084717,0.307129,0.095665,0.021025,0.015787,1,-0.000138,-1.9e-05,1.2e-05,50.050414 0.09 sec,Standing,unlabeled,1,1,216,248,26|27|28|29|30|31|32|20|21|22|23|24|25|26|27|28|29|30|31|32|33|19|20|21|22|23|24|25|26|27|29|30|31|32|33|34|18|19|20|21|22|23|24|25|26|27|30|31|32|33|34|18|19|20|21|22|23|24|25|26|27|30|31|32|18|19|20|21|22|23|24|25|26|27|30|31|32|18|19|20|21|22|23|24|25|26|27|30|31|32|19|20|21|22|31|30|31|32|33|34|18|19|20|21|22|23|24|25|26|27|34|18|19|20|21|22|23|24|25|26|27|31|32|34|19|20|21|22|23|24|25|26|27|33|34|19|20|21|22|23|24|25|26|27|20|21|22|23|24|25|26|27|31|32|21|22|23|25|26|27|29|30|31,12|12|12|12|12|12|12|13|13|13|13|13|13|13|13|13|13|13|13|13|13|14|14|14|14|14|14|14|14|14|14|14|14|14|14|14|15|15|15|15|15|15|15|15|15|15|15|15|15|15|15|16|16|16|16|16|16|16|16|16|16|16|16|16|17|17|17|17|17|17|17|17|17|17|17|17|17|18|18|18|18|18|18|18|18|18|18|18|18|18|19|19|19|19|19|30|30|30|30|30|31|31|31|31|31|31|31|31|31|31|31|32|32|32|32|32|32|32|32|32|32|32|32|32|33|33|33|33|33|33|33|33|33|33|33|34|34|34|34|34|34|34|34|34|35|35|35|35|35|35|35|35|35|35|36|36|36|36|36|36|36|36|36,5|7|5|5|5|4|2|3|5|7|4|4|6|5|6|4|4|5|4|3|3|3|5|6|7|6|4|6|5|5|2|3|2|3|3|2|3|2|4|5|4|4|3|6|4|4|2|3|2|2|2|2|3|4|3|4|4|4|5|3|4|2|2|2|3|2|3|3|4|3|4|4|3|2|2|2|2|3|4|3|4|4|4|2|3|3|2|3|3|4|4|3|3|2|2|2|3|2|2|2|3|5|5|5|5|4|3|4|4|3|3|3|4|5|6|6|6|5|7|5|4|3|2|2|3|3|5|5|6|5|7|7|5|2|2|3|4|6|6|6|3|7|7|4|3|6|5|5|4|5|8|2|4|2|3|4|3|3|8|3|2|2|3,R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L,9.906027,0.030278,0.153799,-0.011387,0.02904,0.094531,-0.000821,0.019887,0.003377,-0.806396,-0.114014,-0.41333,0.09906,0.000304,0.001528,1,-4e-06,9.9e-05,1.7e-05,0.038938,-89.057405,36.654231,9.648701,-0.630011,-0.188433,-0.73517,0.291028,-0.173982,-0.541908,-0.168709,0.05461,-0.664795,-0.331787,0.142334,0.09649,-0.006279,-0.001786,0.999996,-0.00271,-0.000844,0.000273,-76.031795,-82.421738,-175.743761,9.533477,2.110545,1.580209,0.00796,-0.163791,0.077295,-0.037795,-0.008055,0.002716,-0.713135,0.081543,0.316406,0.095334,0.02111,0.015802,1,-0.000189,-4e-05,1.4e-05,50.040645 0.1 sec,Standing,unlabeled,1,1,216,247,26|27|28|29|30|31|32|20|21|22|23|24|25|26|27|28|29|30|31|32|33|19|20|21|22|23|24|25|26|27|29|30|31|32|33|34|18|19|20|21|22|23|24|25|26|27|30|31|32|33|34|18|19|20|21|22|23|24|25|26|27|30|31|32|18|19|20|21|22|23|24|25|26|27|30|31|32|33|18|19|20|21|22|23|24|25|26|27|30|31|32|19|20|21|22|31|30|31|32|33|34|18|19|20|21|22|23|24|25|26|27|34|18|19|20|21|22|23|24|25|26|27|31|32|34|19|20|21|22|23|24|25|26|27|33|34|19|20|21|22|23|24|25|26|27|20|21|22|23|24|25|26|27|31|32|21|22|23|25|26|27|29|30|31,12|12|12|12|12|12|12|13|13|13|13|13|13|13|13|13|13|13|13|13|13|14|14|14|14|14|14|14|14|14|14|14|14|14|14|14|15|15|15|15|15|15|15|15|15|15|15|15|15|15|15|16|16|16|16|16|16|16|16|16|16|16|16|16|17|17|17|17|17|17|17|17|17|17|17|17|17|17|18|18|18|18|18|18|18|18|18|18|18|18|18|19|19|19|19|19|30|30|30|30|30|31|31|31|31|31|31|31|31|31|31|31|32|32|32|32|32|32|32|32|32|32|32|32|32|33|33|33|33|33|33|33|33|33|33|33|34|34|34|34|34|34|34|34|34|35|35|35|35|35|35|35|35|35|35|36|36|36|36|36|36|36|36|36,5|6|5|5|5|4|2|3|5|7|4|4|6|5|6|4|5|5|4|3|3|3|5|6|7|6|4|6|5|4|2|2|2|3|3|2|3|2|4|5|4|4|3|6|4|4|2|3|2|2|2|2|3|4|3|4|4|4|5|4|4|2|2|2|3|2|3|3|4|3|4|4|3|2|2|2|2|2|3|4|2|4|4|4|2|3|3|2|3|3|4|4|3|3|2|2|2|3|2|2|2|3|5|5|5|5|4|3|4|4|3|3|3|4|5|6|6|6|5|7|5|4|3|2|2|3|3|5|5|6|5|7|7|5|2|2|3|4|6|6|6|3|7|7|4|3|6|5|5|4|5|8|2|4|2|3|4|3|3|8|3|2|2|3,R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L,9.917922,0.071288,0.189277,-0.062768,0.042543,0.107007,-0.009419,0.024573,0.008428,-0.804932,-0.105469,-0.42041,0.099179,0.000717,0.001881,1,-4.7e-05,0.000123,4.2e-05,-0.230195,-89.043664,36.919357,9.445287,-0.609371,0.058464,-0.650347,0.03239,-0.37001,-0.617841,-0.158011,0.059499,-0.661133,-0.321777,0.133789,0.094454,-0.006064,0.000678,0.999995,-0.003089,-0.00079,0.000297,-77.095213,-82.408163,-175.025152,9.500291,2.046304,1.636493,0.04147,-0.086434,0.041845,-0.044396,-0.011234,-0.005617,-0.711182,0.087646,0.307861,0.095003,0.020464,0.016366,1,-0.000222,-5.6e-05,-2.8e-05,50.044034 0.11 sec,Standing,unlabeled,1,1,218,246,26|27|28|29|30|31|32|20|21|22|23|24|25|26|27|28|29|30|31|32|33|19|20|21|22|23|24|25|26|27|29|30|31|32|33|34|18|19|20|21|22|23|24|25|26|27|30|31|32|33|34|18|19|20|21|22|23|24|25|26|27|30|31|32|18|19|20|21|22|23|24|25|26|27|30|31|32|18|19|20|21|22|23|24|25|26|27|30|31|32|19|20|21|22|31|30|31|32|33|34|18|19|20|21|22|23|24|25|26|27|32|34|18|19|20|21|22|23|24|25|26|27|31|32|34|19|20|21|22|23|24|25|26|27|33|34|19|20|21|22|23|24|25|26|27|20|21|22|23|24|25|26|27|31|32|21|22|23|25|26|27|29|30|31,12|12|12|12|12|12|12|13|13|13|13|13|13|13|13|13|13|13|13|13|13|14|14|14|14|14|14|14|14|14|14|14|14|14|14|14|15|15|15|15|15|15|15|15|15|15|15|15|15|15|15|16|16|16|16|16|16|16|16|16|16|16|16|16|17|17|17|17|17|17|17|17|17|17|17|17|17|18|18|18|18|18|18|18|18|18|18|18|18|18|19|19|19|19|19|30|30|30|30|30|31|31|31|31|31|31|31|31|31|31|31|31|32|32|32|32|32|32|32|32|32|32|32|32|32|33|33|33|33|33|33|33|33|33|33|33|34|34|34|34|34|34|34|34|34|35|35|35|35|35|35|35|35|35|35|36|36|36|36|36|36|36|36|36,5|6|5|5|5|4|2|3|5|7|4|4|6|5|6|4|4|5|4|3|3|3|5|6|7|6|4|6|5|4|2|3|2|3|3|2|3|2|4|5|4|4|3|6|4|4|2|3|2|2|2|2|3|4|3|4|4|4|5|4|4|2|2|2|3|2|3|3|4|3|4|4|3|2|2|2|2|3|4|2|4|4|4|2|3|3|2|3|3|4|4|3|3|2|2|2|3|2|2|2|3|5|5|5|5|4|3|5|4|3|2|3|3|4|5|6|6|6|5|7|5|4|3|2|2|3|3|5|5|6|5|7|7|5|2|2|3|4|6|6|6|3|7|7|4|3|6|5|5|4|5|8|2|4|2|3|4|3|3|8|3|2|2|3,R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L,9.895311,0.061165,0.193702,-0.058873,0.033884,0.084475,-0.014013,0.031346,0.010192,-0.807861,-0.116455,-0.420166,0.098953,0.000617,0.001921,1,-7e-05,0.000157,5.1e-05,-0.546716,-89.025805,37.229577,9.637675,-0.884898,0.637356,-0.240441,-0.456317,-0.127236,-0.698227,-0.129681,0.039435,-0.665527,-0.331787,0.132568,0.096374,-0.008808,0.006467,0.999994,-0.003491,-0.000648,0.000197,-78.068121,-82.40056,-174.441942,9.522234,1.997553,1.625794,0.008272,-0.044436,0.051608,-0.040681,-0.009569,-0.011184,-0.713623,0.078125,0.309082,0.095223,0.019974,0.016258,1,-0.000203,-4.8e-05,-5.6e-05,50.05449 0.12 sec,Standing,unlabeled,1,1,216,250,26|27|28|29|30|31|32|20|21|22|23|24|25|26|27|28|29|30|31|32|33|19|20|21|22|23|24|25|26|27|29|30|31|32|33|34|18|19|20|21|22|23|24|25|26|27|30|31|32|33|34|18|19|20|21|22|23|24|25|26|27|30|31|32|18|19|20|21|22|23|24|25|26|27|30|31|32|33|18|19|20|21|22|23|24|25|26|27|30|31|32|19|20|21|22|31|30|31|32|33|34|18|19|20|21|22|23|24|25|26|27|34|18|19|20|21|22|23|24|25|26|27|31|32|34|19|20|21|22|23|24|25|26|27|33|34|19|20|21|22|23|24|25|26|27|20|21|22|23|24|25|26|27|31|32|21|22|23|25|26|27|29|30|31,12|12|12|12|12|12|12|13|13|13|13|13|13|13|13|13|13|13|13|13|13|14|14|14|14|14|14|14|14|14|14|14|14|14|14|14|15|15|15|15|15|15|15|15|15|15|15|15|15|15|15|16|16|16|16|16|16|16|16|16|16|16|16|16|17|17|17|17|17|17|17|17|17|17|17|17|17|17|18|18|18|18|18|18|18|18|18|18|18|18|18|19|19|19|19|19|30|30|30|30|30|31|31|31|31|31|31|31|31|31|31|31|32|32|32|32|32|32|32|32|32|32|32|32|32|33|33|33|33|33|33|33|33|33|33|33|34|34|34|34|34|34|34|34|34|35|35|35|35|35|35|35|35|35|35|36|36|36|36|36|36|36|36|36,5|7|5|5|5|4|2|3|5|7|4|4|6|5|7|4|4|5|4|3|3|3|5|6|7|6|4|6|5|5|2|3|2|3|3|2|3|2|4|5|4|4|3|6|4|4|2|3|2|2|2|2|3|4|3|4|4|4|5|4|4|2|2|2|3|2|3|3|4|3|4|4|3|2|2|2|2|2|3|4|2|4|4|4|2|3|3|2|3|3|4|4|3|3|2|2|2|3|2|2|2|3|5|5|5|5|4|3|5|4|3|3|3|4|5|6|6|6|5|7|5|4|3|2|2|3|3|5|5|6|5|7|7|5|2|2|3|4|5|6|6|3|7|7|4|3|6|5|5|4|5|8|2|4|2|3|4|3|3|8|3|2|2|3,R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L,9.840158,0.057119,0.148315,-0.019218,0.059583,0.028555,-0.018675,0.024406,0.010535,-0.801758,-0.115479,-0.42041,0.098402,0.000577,0.001471,1,-9.3e-05,0.000122,5.3e-05,-0.874786,-89.012043,37.548073,10.044372,-1.526683,1.230269,0.486212,-0.854375,0.373939,-0.691904,-0.064826,0.016952,-0.657715,-0.331543,0.127197,0.100441,-0.015216,0.012388,0.999994,-0.00346,-0.000324,8.5e-05,-78.740174,-82.397094,-174.160951,9.469553,1.936875,1.630937,0.001673,0.007143,-0.010452,-0.036549,-0.009368,-0.016554,-0.705078,0.079346,0.305664,0.094696,0.019364,0.01631,1,-0.000183,-4.7e-05,-8.3e-05,50.074351 0.13 sec,Standing,unlabeled,1,1,217,247,26|27|28|29|30|31|32|20|21|22|23|24|25|26|27|28|29|30|31|32|33|19|20|21|22|23|24|25|26|27|29|30|31|32|33|34|18|19|20|21|22|23|24|25|26|27|30|31|32|33|34|18|19|20|21|22|23|24|25|26|27|30|31|32|18|19|20|21|22|23|24|25|26|27|30|31|32|18|19|20|21|22|23|24|25|26|27|30|31|32|19|20|21|22|31|30|31|32|33|34|18|19|20|21|22|23|24|25|26|27|34|18|19|20|21|22|23|24|25|26|27|31|32|34|19|20|21|22|23|24|25|26|27|33|34|19|20|21|22|23|24|25|26|27|20|21|22|23|24|25|26|27|31|32|21|22|23|25|26|27|29|30|31,12|12|12|12|12|12|12|13|13|13|13|13|13|13|13|13|13|13|13|13|13|14|14|14|14|14|14|14|14|14|14|14|14|14|14|14|15|15|15|15|15|15|15|15|15|15|15|15|15|15|15|16|16|16|16|16|16|16|16|16|16|16|16|16|17|17|17|17|17|17|17|17|17|17|17|17|17|18|18|18|18|18|18|18|18|18|18|18|18|18|19|19|19|19|19|30|30|30|30|30|31|31|31|31|31|31|31|31|31|31|31|32|32|32|32|32|32|32|32|32|32|32|32|32|33|33|33|33|33|33|33|33|33|33|33|34|34|34|34|34|34|34|34|34|35|35|35|35|35|35|35|35|35|35|36|36|36|36|36|36|36|36|36,5|7|5|5|5|4|2|3|5|7|4|4|6|5|6|4|4|5|4|3|3|3|5|6|7|6|4|6|5|5|2|3|2|3|3|2|3|2|4|5|4|4|3|6|4|4|2|3|2|2|2|2|3|4|3|4|4|4|5|4|4|2|2|2|3|2|3|3|4|3|4|4|3|2|2|2|2|3|3|2|4|4|4|2|3|3|2|3|3|4|4|3|3|2|2|2|3|2|2|2|3|5|5|5|5|4|3|4|4|3|3|3|4|5|6|6|6|5|7|5|4|3|2|2|3|3|5|5|6|5|7|7|5|2|2|3|4|6|6|6|3|7|7|4|4|6|5|5|4|5|8|2|4|2|3|4|3|3|8|3|2|2|3,R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L,9.815246,0.046414,0.117776,0.012519,0.071136,0.003109,-0.018064,0.021695,0.011594,-0.810791,-0.11084,-0.427002,0.098153,0.00047,0.001167,1,-9e-05,0.000108,5.8e-05,-1.224834,-88.999639,37.889506,10.262872,-2.040551,1.447785,1.002967,-0.92964,0.661866,-0.539767,0.015897,-0.000666,-0.66748,-0.331543,0.121338,0.10263,-0.020367,0.014525,0.999996,-0.002699,7.9e-05,-3e-06,-78.971389,-82.394388,-174.236148,9.478697,1.909116,1.614119,-0.026191,0.027196,-0.009914,-0.030186,-0.009403,-0.01732,-0.716553,0.082764,0.30127,0.094788,0.019085,0.016143,1,-0.000151,-4.7e-05,-8.7e-05,50.098915 0.14 sec,Standing,unlabeled,1,1,216,246,26|27|28|29|30|31|32|20|21|22|23|24|25|26|27|28|29|30|31|32|33|19|20|21|22|23|24|25|26|27|29|30|31|32|33|34|18|19|20|21|22|23|24|25|26|27|30|31|32|33|34|18|19|20|21|22|23|24|25|26|27|30|31|32|18|19|20|21|22|23|24|25|26|27|30|31|32|18|19|20|21|22|23|24|25|26|27|30|31|32|19|20|21|22|31|30|31|32|33|34|18|19|20|21|22|23|24|25|26|27|34|18|19|20|21|22|23|24|25|26|27|31|32|34|19|20|21|22|23|24|25|26|27|33|34|19|20|21|22|23|24|25|26|27|20|21|22|23|24|25|26|27|31|32|21|22|23|25|26|27|29|30|31,12|12|12|12|12|12|12|13|13|13|13|13|13|13|13|13|13|13|13|13|13|14|14|14|14|14|14|14|14|14|14|14|14|14|14|14|15|15|15|15|15|15|15|15|15|15|15|15|15|15|15|16|16|16|16|16|16|16|16|16|16|16|16|16|17|17|17|17|17|17|17|17|17|17|17|17|17|18|18|18|18|18|18|18|18|18|18|18|18|18|19|19|19|19|19|30|30|30|30|30|31|31|31|31|31|31|31|31|31|31|31|32|32|32|32|32|32|32|32|32|32|32|32|32|33|33|33|33|33|33|33|33|33|33|33|34|34|34|34|34|34|34|34|34|35|35|35|35|35|35|35|35|35|35|36|36|36|36|36|36|36|36|36,5|7|5|5|5|4|2|3|5|7|4|4|6|5|6|4|4|5|4|3|3|3|5|6|7|6|4|6|5|5|2|3|2|3|3|2|3|2|4|5|4|4|3|6|4|4|2|3|2|2|2|2|3|4|3|4|4|4|5|3|4|2|2|2|3|2|3|3|4|3|4|4|3|2|2|2|2|3|3|2|4|4|4|2|3|3|2|3|3|4|4|3|3|2|2|2|3|2|2|2|3|5|5|5|5|4|3|4|4|3|3|3|4|5|6|6|6|5|7|5|4|3|2|2|3|3|5|5|6|5|7|7|5|2|2|3|4|6|6|6|3|7|7|4|3|6|5|5|4|5|8|2|4|2|3|4|3|3|8|3|2|2|3,R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L,9.817546,0.045644,0.153731,-0.015308,0.050836,0.006024,-0.008542,0.008898,0.012144,-0.800537,-0.115723,-0.426758,0.098175,0.000462,0.001533,1,-4.3e-05,4.4e-05,6.1e-05,-1.592871,-88.994622,38.254222,10.022511,-1.883018,1.482209,0.890095,-1.010593,0.403959,-0.347618,0.069248,-0.003922,-0.657959,-0.331055,0.122559,0.10023,-0.018806,0.01482,0.999998,-0.001738,0.000346,-2e-05,-78.86412,-82.38756,-174.542383,9.463838,1.86214,1.58194,-0.069716,0.055849,-0.038929,-0.023084,-0.008483,-0.02317,-0.706543,0.080078,0.301514,0.09464,0.018612,0.015821,1,-0.000115,-4.2e-05,-0.000116,50.134089 0.15 sec,Standing,unlabeled,1,1,215,245,26|27|28|29|30|31|32|20|21|22|23|24|25|26|27|28|29|30|31|32|33|34|19|20|21|22|23|24|25|26|27|29|30|31|32|33|34|18|19|20|21|22|23|24|25|26|27|30|31|32|33|34|18|19|20|21|22|23|24|25|26|27|30|31|32|18|19|20|21|22|23|24|25|26|27|30|31|32|18|19|20|21|22|23|24|25|26|27|30|31|32|19|20|21|22|31|30|31|32|33|34|18|19|20|21|22|23|24|25|26|27|34|18|19|20|21|22|23|24|25|26|27|31|32|34|19|20|21|22|23|24|25|26|27|33|34|19|20|21|22|23|24|25|26|27|20|21|22|23|24|25|26|27|31|32|21|22|23|25|26|27|29|30|31,12|12|12|12|12|12|12|13|13|13|13|13|13|13|13|13|13|13|13|13|13|13|14|14|14|14|14|14|14|14|14|14|14|14|14|14|14|15|15|15|15|15|15|15|15|15|15|15|15|15|15|15|16|16|16|16|16|16|16|16|16|16|16|16|16|17|17|17|17|17|17|17|17|17|17|17|17|17|18|18|18|18|18|18|18|18|18|18|18|18|18|19|19|19|19|19|30|30|30|30|30|31|31|31|31|31|31|31|31|31|31|31|32|32|32|32|32|32|32|32|32|32|32|32|32|33|33|33|33|33|33|33|33|33|33|33|34|34|34|34|34|34|34|34|34|35|35|35|35|35|35|35|35|35|35|36|36|36|36|36|36|36|36|36,5|7|5|5|5|4|2|3|5|7|4|4|6|5|6|4|4|5|4|3|3|2|3|5|6|7|6|4|6|5|4|2|2|2|3|3|2|3|2|4|5|4|4|3|6|4|4|2|3|2|2|2|2|3|4|3|4|4|4|5|3|4|2|2|2|3|2|3|3|4|3|4|4|3|2|2|2|2|3|3|2|4|4|4|2|3|3|2|3|3|4|4|3|3|2|2|2|3|2|2|2|3|5|5|5|5|4|3|4|4|3|3|3|4|5|6|6|6|5|7|4|4|3|2|2|3|3|5|5|6|5|7|7|5|2|2|3|4|6|6|6|3|7|7|4|3|6|5|5|4|5|8|2|4|2|3|4|3|3|8|3|2|2|3,R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L,9.866035,-0.00999,0.151864,0.020214,0.008852,0.054496,-0.010144,0.006007,0.004063,-0.806641,-0.114014,-0.420654,0.09866,-9.8e-05,0.001516,1,-5.1e-05,3e-05,2e-05,-1.69596,-88.991266,38.353196,9.641919,-1.656235,1.12589,0.620728,-0.726743,-0.011468,-0.21874,0.085201,-0.031967,-0.661621,-0.332764,0.127197,0.096421,-0.016565,0.011236,0.999999,-0.001094,0.000426,-0.00016,-78.591803,-82.394454,-174.940981,9.517436,1.86549,1.573095,-0.089054,0.056773,0.012033,-0.017118,-0.004423,-0.018131,-0.709229,0.081055,0.30957,0.095176,0.018648,0.015731,1,-8.6e-05,-2.2e-05,-9.1e-05,50.15826 0.16 sec,Standing,unlabeled,1,1,216,247,26|27|28|29|30|31|32|20|21|22|23|24|25|26|27|28|29|30|31|32|33|19|20|21|22|23|24|25|26|27|29|30|31|32|33|34|18|19|20|21|22|23|24|25|26|27|30|31|32|33|34|18|19|20|21|22|23|24|25|26|27|30|31|32|18|19|20|21|22|23|24|25|26|27|30|31|32|18|19|20|21|22|23|24|25|26|27|30|31|32|19|20|21|22|31|30|31|32|33|34|18|19|20|21|22|23|24|25|26|27|34|18|19|20|21|22|23|24|25|26|27|31|32|34|19|20|21|22|23|24|25|26|27|33|34|19|20|21|22|23|24|25|26|27|20|21|22|23|24|25|26|27|31|32|21|22|23|25|26|27|29|30|31,12|12|12|12|12|12|12|13|13|13|13|13|13|13|13|13|13|13|13|13|13|14|14|14|14|14|14|14|14|14|14|14|14|14|14|14|15|15|15|15|15|15|15|15|15|15|15|15|15|15|15|16|16|16|16|16|16|16|16|16|16|16|16|16|17|17|17|17|17|17|17|17|17|17|17|17|17|18|18|18|18|18|18|18|18|18|18|18|18|18|19|19|19|19|19|30|30|30|30|30|31|31|31|31|31|31|31|31|31|31|31|32|32|32|32|32|32|32|32|32|32|32|32|32|33|33|33|33|33|33|33|33|33|33|33|34|34|34|34|34|34|34|34|34|35|35|35|35|35|35|35|35|35|35|36|36|36|36|36|36|36|36|36,5|7|5|5|5|4|2|3|5|7|4|4|6|5|6|4|4|5|4|3|3|3|5|6|7|6|4|6|5|5|2|2|2|3|3|2|3|2|4|5|4|4|3|6|4|4|2|3|2|2|2|2|3|4|3|4|4|4|5|4|4|2|2|2|3|2|3|3|4|3|4|4|3|2|2|2|2|3|3|2|4|4|4|2|3|3|2|4|3|4|4|3|3|2|2|2|3|2|2|2|3|5|5|5|5|4|3|4|4|3|3|3|4|5|6|6|6|5|7|5|4|3|2|2|3|3|5|5|6|5|7|7|5|2|2|3|4|6|6|6|3|7|7|4|3|6|5|5|4|5|8|2|4|2|3|4|3|3|8|3|2|2|3,R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L,9.853391,-0.035066,0.205842,-0.007822,-0.042746,0.04282,-0.006396,0.012959,0.00616,-0.803467,-0.108643,-0.422607,0.098534,-0.000348,0.002052,1,-3.2e-05,6.5e-05,3.1e-05,-1.857121,-88.98397,38.512706,9.366396,-1.637221,0.654839,0.506917,-0.272023,-0.299133,-0.09598,0.060815,-0.047485,-0.660156,-0.328125,0.121338,0.093662,-0.016391,0.006528,1,-0.00048,0.000304,-0.000237,-78.338333,-82.412728,-175.249248,9.472579,1.836567,1.565079,-0.097383,0.075886,-0.038386,-0.013187,-0.002172,-0.020597,-0.708252,0.08374,0.303955,0.094728,0.018357,0.015651,1,-6.6e-05,-1.1e-05,-0.000103,50.185155 0.17 sec,Standing,unlabeled,1,1,217,248,26|27|28|29|30|31|32|20|21|22|23|24|25|26|27|28|29|30|31|32|33|19|20|21|22|23|24|25|26|27|29|30|31|32|33|34|18|19|20|21|22|23|24|25|26|27|30|31|32|33|34|18|19|20|21|22|23|24|25|26|27|30|31|32|18|19|20|21|22|23|24|25|26|27|30|31|32|18|19|20|21|22|23|24|25|26|27|30|31|32|19|20|21|22|31|30|31|32|33|34|18|19|20|21|22|23|24|25|26|27|34|18|19|20|21|22|23|24|25|26|27|31|32|34|19|20|21|22|23|24|25|26|27|33|34|19|20|21|22|23|24|25|26|27|20|21|22|23|24|25|26|27|31|32|21|22|23|25|26|27|29|30|31,12|12|12|12|12|12|12|13|13|13|13|13|13|13|13|13|13|13|13|13|13|14|14|14|14|14|14|14|14|14|14|14|14|14|14|14|15|15|15|15|15|15|15|15|15|15|15|15|15|15|15|16|16|16|16|16|16|16|16|16|16|16|16|16|17|17|17|17|17|17|17|17|17|17|17|17|17|18|18|18|18|18|18|18|18|18|18|18|18|18|19|19|19|19|19|30|30|30|30|30|31|31|31|31|31|31|31|31|31|31|31|32|32|32|32|32|32|32|32|32|32|32|32|32|33|33|33|33|33|33|33|33|33|33|33|34|34|34|34|34|34|34|34|34|35|35|35|35|35|35|35|35|35|35|36|36|36|36|36|36|36|36|36,5|7|5|5|5|4|2|3|5|7|4|4|6|5|6|4|4|5|4|3|3|3|5|6|7|6|4|6|5|5|2|3|2|3|3|2|3|2|4|5|4|4|3|6|4|4|2|3|2|2|2|2|3|4|3|4|4|4|5|4|4|2|2|2|3|2|3|3|4|3|4|4|3|2|2|2|2|3|3|2|4|4|4|2|3|3|2|4|3|4|4|3|3|2|2|2|3|2|2|2|3|5|5|5|5|4|3|4|4|3|3|3|4|5|6|6|6|5|7|5|4|3|2|2|3|3|5|5|6|5|7|7|5|2|2|3|4|6|6|6|3|7|7|4|3|6|5|5|4|5|8|3|4|2|3|4|3|3|8|3|2|2|3,R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L,9.823161,-0.029013,0.191751,0.000158,-0.028678,0.012346,-0.008873,0.012893,0.00524,-0.806885,-0.114258,-0.420898,0.098232,-0.000287,0.001911,1,-4.4e-05,6.4e-05,2.6e-05,-1.987767,-88.976639,38.639971,9.396535,-1.54212,0.401869,0.344732,-0.052308,-0.288354,-0.005259,0.016021,-0.053389,-0.665039,-0.336914,0.123047,0.093962,-0.015446,0.004012,1,-2.6e-05,8e-05,-0.000267,-78.216561,-82.439275,-175.371214,9.44837,1.818426,1.549722,-0.112781,0.084465,-0.067938,-0.01659,-0.005601,-0.016387,-0.713135,0.078613,0.308105,0.094485,0.018178,0.015498,1,-8.3e-05,-2.8e-05,-8.2e-05,50.2096 0.18 sec,Standing,unlabeled,1,1,216,250,26|27|28|29|30|31|32|20|21|22|23|24|25|26|27|28|29|30|31|32|33|19|20|21|22|23|24|25|26|27|29|30|31|32|33|34|18|19|20|21|22|23|24|25|26|27|30|31|32|33|34|18|19|20|21|22|23|24|25|26|27|30|31|32|18|19|20|21|22|23|24|25|26|27|30|31|32|33|18|19|20|21|22|23|24|25|26|27|30|31|32|19|20|21|22|31|30|31|32|33|34|18|19|20|21|22|23|24|25|26|27|34|18|19|20|21|22|23|24|25|26|27|31|32|34|19|20|21|22|23|24|25|26|27|33|34|19|20|21|22|23|24|25|26|27|20|21|22|23|24|25|26|27|31|32|21|22|23|25|26|27|29|30|31,12|12|12|12|12|12|12|13|13|13|13|13|13|13|13|13|13|13|13|13|13|14|14|14|14|14|14|14|14|14|14|14|14|14|14|14|15|15|15|15|15|15|15|15|15|15|15|15|15|15|15|16|16|16|16|16|16|16|16|16|16|16|16|16|17|17|17|17|17|17|17|17|17|17|17|17|17|17|18|18|18|18|18|18|18|18|18|18|18|18|18|19|19|19|19|19|30|30|30|30|30|31|31|31|31|31|31|31|31|31|31|31|32|32|32|32|32|32|32|32|32|32|32|32|32|33|33|33|33|33|33|33|33|33|33|33|34|34|34|34|34|34|34|34|34|35|35|35|35|35|35|35|35|35|35|36|36|36|36|36|36|36|36|36,5|7|5|5|5|4|2|3|5|7|4|4|6|5|7|4|4|5|4|3|3|3|5|6|7|6|4|6|5|5|2|3|2|3|3|2|3|2|4|5|4|4|3|6|4|4|2|3|2|2|2|2|3|4|3|4|4|4|5|4|4|2|2|2|3|2|3|3|4|3|4|4|3|2|2|2|2|2|3|3|2|4|4|4|2|3|3|2|4|3|4|4|3|3|2|2|2|3|2|2|2|3|5|5|5|5|4|3|4|4|3|3|3|4|5|6|6|6|5|7|5|4|3|2|2|3|3|5|5|6|5|7|7|5|2|2|3|4|6|6|6|3|7|7|4|3|6|5|5|4|5|8|2|4|2|3|4|3|3|8|3|2|2|3,R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L,9.845709,-0.020146,0.191265,-0.003695,-0.0202,0.034878,-0.008911,0.010085,0.000511,-0.804443,-0.122314,-0.43042,0.098457,-0.000201,0.001908,1,-4.5e-05,5e-05,3e-06,-1.973051,-88.971139,38.621474,9.609872,-1.451095,0.252872,0.192651,0.06533,-0.092714,0.024049,0.002274,-0.050525,-0.662109,-0.343994,0.114502,0.096095,-0.014536,0.002526,1,0.00012,1.1e-05,-0.000253,-78.136713,-82.465921,-175.434934,9.443563,1.797608,1.585023,-0.088109,0.118858,-0.070887,-0.013851,-0.009641,-0.016041,-0.71167,0.069336,0.300537,0.094436,0.01797,0.015854,1,-6.9e-05,-4.8e-05,-8e-05,50.242109 0.19 sec,Standing,unlabeled,1,1,219,250,26|27|28|29|30|31|32|20|21|22|23|24|25|26|27|28|29|30|31|32|33|19|20|21|22|23|24|25|26|27|29|30|31|32|33|34|18|19|20|21|22|23|24|25|26|27|30|31|32|33|34|18|19|20|21|22|23|24|25|26|27|30|31|32|18|19|20|21|22|23|24|25|26|27|30|31|32|33|18|19|20|21|22|23|24|25|26|27|30|31|32|19|20|21|22|31|30|31|32|33|34|18|19|20|21|22|23|24|25|26|27|32|34|18|19|20|21|22|23|24|25|26|27|31|32|34|19|20|21|22|23|24|25|26|27|33|34|19|20|21|22|23|24|25|26|27|20|21|22|23|24|25|26|27|31|32|21|22|23|25|26|27|29|30|31,12|12|12|12|12|12|12|13|13|13|13|13|13|13|13|13|13|13|13|13|13|14|14|14|14|14|14|14|14|14|14|14|14|14|14|14|15|15|15|15|15|15|15|15|15|15|15|15|15|15|15|16|16|16|16|16|16|16|16|16|16|16|16|16|17|17|17|17|17|17|17|17|17|17|17|17|17|17|18|18|18|18|18|18|18|18|18|18|18|18|18|19|19|19|19|19|30|30|30|30|30|31|31|31|31|31|31|31|31|31|31|31|31|32|32|32|32|32|32|32|32|32|32|32|32|32|33|33|33|33|33|33|33|33|33|33|33|34|34|34|34|34|34|34|34|34|35|35|35|35|35|35|35|35|35|35|36|36|36|36|36|36|36|36|36,5|7|5|5|5|4|2|3|5|7|4|4|6|5|7|4|4|5|4|3|3|3|5|6|7|6|4|6|5|5|2|3|2|3|3|2|3|2|4|5|4|4|3|6|4|4|2|3|2|2|2|2|3|4|3|4|4|4|5|4|4|2|2|2|3|2|3|3|4|3|4|4|3|2|2|2|2|2|3|3|2|4|4|4|2|3|3|2|4|3|4|4|3|3|2|2|2|3|2|2|2|3|5|5|5|5|4|3|5|4|3|2|3|3|4|5|6|6|6|5|7|5|4|3|2|2|3|3|5|5|6|5|7|7|5|2|2|3|4|6|6|6|3|7|7|4|4|6|5|5|4|5|8|2|4|2|3|4|3|3|8|3|2|2|3,R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L,9.875883,-0.026992,0.207824,-0.011602,-0.034441,0.065352,-0.012894,0.014148,0.003332,-0.806396,-0.112793,-0.425049,0.098759,-0.000268,0.002071,1,-6.4e-05,7.1e-05,1.7e-05,-2.041792,-88.963125,38.684521,9.695418,-1.450307,0.061555,0.131247,0.250151,-0.013273,0.010112,0.008429,-0.049807,-0.663574,-0.333984,0.120361,0.096951,-0.014527,0.000611,1,5.1e-05,4.2e-05,-0.000249,-78.037222,-82.491673,-175.527535,9.429575,1.805216,1.636442,-0.035341,0.133214,-0.074379,-0.019279,-0.016432,-0.00941,-0.7146,0.079102,0.304443,0.094295,0.018049,0.01637,1,-9.6e-05,-8.2e-05,-4.7e-05,50.27338 0.2 sec,Standing,unlabeled,1,1,216,250,26|27|28|29|30|31|32|20|21|22|23|24|25|26|27|28|29|30|31|32|33|34|19|20|21|22|23|24|25|26|27|29|30|31|32|33|34|18|19|20|21|22|23|24|25|26|27|30|31|32|33|34|18|19|20|21|22|23|24|25|26|27|30|31|32|18|19|20|21|22|23|24|25|26|27|30|31|32|33|18|19|20|21|22|23|24|25|26|27|30|31|32|19|20|21|22|31|30|31|32|33|34|18|19|20|21|22|23|24|25|26|27|34|18|19|20|21|22|23|24|25|26|27|31|32|34|19|20|21|22|23|24|25|26|27|33|34|19|20|21|22|23|24|25|26|27|20|21|22|23|24|25|26|27|31|32|21|22|23|25|26|27|29|30|31,12|12|12|12|12|12|12|13|13|13|13|13|13|13|13|13|13|13|13|13|13|13|14|14|14|14|14|14|14|14|14|14|14|14|14|14|14|15|15|15|15|15|15|15|15|15|15|15|15|15|15|15|16|16|16|16|16|16|16|16|16|16|16|16|16|17|17|17|17|17|17|17|17|17|17|17|17|17|17|18|18|18|18|18|18|18|18|18|18|18|18|18|19|19|19|19|19|30|30|30|30|30|31|31|31|31|31|31|31|31|31|31|31|32|32|32|32|32|32|32|32|32|32|32|32|32|33|33|33|33|33|33|33|33|33|33|33|34|34|34|34|34|34|34|34|34|35|35|35|35|35|35|35|35|35|35|36|36|36|36|36|36|36|36|36,5|7|5|5|5|4|2|3|5|7|4|4|6|5|6|4|4|5|4|3|3|2|3|5|6|7|6|4|6|5|5|2|3|2|3|3|2|3|2|4|5|4|4|3|6|4|4|2|3|2|2|2|2|3|4|3|4|4|4|5|4|4|2|2|2|3|2|3|3|4|3|4|4|3|2|2|2|2|2|3|3|2|4|4|4|2|3|3|2|4|3|4|4|3|3|2|2|2|3|2|2|2|3|5|5|5|5|4|3|5|4|3|3|3|4|5|6|6|6|5|7|5|4|3|2|2|3|3|5|5|6|5|7|7|5|2|2|3|4|5|6|6|3|7|7|4|3|6|5|5|4|5|8|2|4|2|3|4|3|3|8|3|2|2|3,R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L,9.842603,-0.00418,0.246107,-0.055221,-0.03809,0.032764,-0.011622,0.021034,0.004512,-0.803711,-0.116943,-0.424316,0.098426,-3.9e-05,0.002451,1,-5.8e-05,0.000105,2.3e-05,-2.1354,-88.951182,38.77393,9.78729,-1.645417,-0.069185,0.271367,0.432716,0.099041,-0.009095,0.025138,-0.036275,-0.657471,-0.336182,0.118652,0.09787,-0.016472,-0.000703,1,-4.5e-05,0.000126,-0.000181,-77.89083,-82.507571,-175.677522,9.42849,1.791965,1.693421,0.012062,0.169529,-0.068646,-0.023837,-0.019354,-0.000313,-0.706543,0.076904,0.304688,0.094283,0.017922,0.016941,1,-0.000119,-9.7e-05,-2e-06,50.294662 0.21 sec,Standing,unlabeled,1,1,217,250,26|27|28|29|30|31|32|20|21|22|23|24|25|26|27|28|29|30|31|32|33|34|19|20|21|22|23|24|25|26|27|29|30|31|32|33|34|18|19|20|21|22|23|24|25|26|27|30|31|32|33|34|18|19|20|21|22|23|24|25|26|27|30|31|32|18|19|20|21|22|23|24|25|26|27|30|31|32|33|18|19|20|21|22|23|24|25|26|27|30|31|32|19|20|21|22|31|30|31|32|33|34|18|19|20|21|22|23|24|25|26|27|32|34|18|19|20|21|22|23|24|25|26|27|31|32|34|19|20|21|22|23|24|25|26|27|33|34|19|20|21|22|23|24|25|26|27|20|21|22|23|24|25|26|27|31|32|21|22|23|25|26|27|29|30|31,12|12|12|12|12|12|12|13|13|13|13|13|13|13|13|13|13|13|13|13|13|13|14|14|14|14|14|14|14|14|14|14|14|14|14|14|14|15|15|15|15|15|15|15|15|15|15|15|15|15|15|15|16|16|16|16|16|16|16|16|16|16|16|16|16|17|17|17|17|17|17|17|17|17|17|17|17|17|17|18|18|18|18|18|18|18|18|18|18|18|18|18|19|19|19|19|19|30|30|30|30|30|31|31|31|31|31|31|31|31|31|31|31|31|32|32|32|32|32|32|32|32|32|32|32|32|32|33|33|33|33|33|33|33|33|33|33|33|34|34|34|34|34|34|34|34|34|35|35|35|35|35|35|35|35|35|35|36|36|36|36|36|36|36|36|36,5|7|5|5|5|4|2|3|5|7|4|4|6|5|7|4|4|5|4|3|3|2|3|5|6|7|6|4|6|5|5|2|3|2|3|3|2|3|2|4|5|4|4|3|6|4|4|2|3|2|2|2|2|3|4|3|4|4|4|5|4|4|2|2|2|3|2|3|3|4|3|4|4|3|2|2|2|2|2|3|3|2|3|4|4|2|3|3|2|4|3|4|4|3|3|2|2|2|3|2|2|2|3|5|5|5|5|4|3|4|4|3|2|3|3|4|5|6|6|6|5|7|5|4|3|2|2|3|3|5|5|6|5|7|7|5|2|2|3|4|6|6|6|3|7|7|4|3|6|5|5|4|5|8|2|4|2|3|4|3|3|8|3|2|2|3,R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L,9.82838,-0.046452,0.18011,0.024034,-0.031544,0.017372,-0.008572,0.015583,0.001759,-0.796387,-0.112305,-0.425781,0.098284,-0.000464,0.001793,1,-4.3e-05,7.8e-05,9e-06,-2.148744,-88.942377,38.784048,9.759444,-1.972845,-0.205132,0.549857,0.659974,0.109159,0.001292,0.040941,-0.025003,-0.6521,-0.333984,0.117188,0.097592,-0.019741,-0.002071,1,6e-06,0.000205,-0.000125,-77.680335,-82.515176,-175.886475,9.398966,1.809246,1.715652,0.047483,0.160001,-0.090057,-0.026401,-0.025718,0.004286,-0.70459,0.080322,0.308105,0.093987,0.018097,0.017166,1,-0.000132,-0.000129,2.1e-05,50.318274 0.22 sec,Standing,unlabeled,1,1,217,248,26|27|28|29|30|31|32|20|21|22|23|24|25|26|27|28|29|30|31|32|33|19|20|21|22|23|24|25|26|27|29|30|31|32|33|34|18|19|20|21|22|23|24|25|26|27|30|31|32|33|34|18|19|20|21|22|23|24|25|26|27|30|31|32|18|19|20|21|22|23|24|25|26|27|30|31|32|33|18|19|20|21|22|23|24|25|26|27|30|31|32|19|20|21|22|31|30|31|32|33|34|18|19|20|21|22|23|24|25|26|27|34|18|19|20|21|22|23|24|25|26|27|31|32|34|19|20|21|22|23|24|25|26|27|33|34|19|20|21|22|23|24|25|26|27|20|21|22|23|24|25|26|27|31|32|21|22|23|25|26|27|29|30|31,12|12|12|12|12|12|12|13|13|13|13|13|13|13|13|13|13|13|13|13|13|14|14|14|14|14|14|14|14|14|14|14|14|14|14|14|15|15|15|15|15|15|15|15|15|15|15|15|15|15|15|16|16|16|16|16|16|16|16|16|16|16|16|16|17|17|17|17|17|17|17|17|17|17|17|17|17|17|18|18|18|18|18|18|18|18|18|18|18|18|18|19|19|19|19|19|30|30|30|30|30|31|31|31|31|31|31|31|31|31|31|31|32|32|32|32|32|32|32|32|32|32|32|32|32|33|33|33|33|33|33|33|33|33|33|33|34|34|34|34|34|34|34|34|34|35|35|35|35|35|35|35|35|35|35|36|36|36|36|36|36|36|36|36,5|7|5|5|5|4|2|3|5|7|4|4|6|5|6|4|4|5|4|3|3|3|5|6|7|6|4|6|5|5|2|3|2|3|3|2|3|2|4|5|4|4|3|6|4|4|2|3|2|2|2|2|3|4|3|4|4|4|5|4|4|2|2|2|3|2|3|3|4|3|4|4|3|2|2|2|2|2|3|3|2|3|4|4|2|3|3|2|4|3|4|4|3|3|2|2|2|3|2|2|2|3|5|5|5|5|4|3|5|4|3|3|3|4|5|6|6|6|5|7|5|4|3|2|2|3|3|5|5|6|5|7|7|5|2|2|3|4|6|6|6|3|7|7|4|3|6|5|5|4|5|8|2|4|2|3|4|3|3|8|3|2|2|3,R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L,9.820735,-0.031044,0.164602,0.028142,-0.00891,0.009431,-0.005467,0.014342,0.006101,-0.809082,-0.112061,-0.421387,0.098207,-0.000307,0.001639,1,-2.7e-05,7.2e-05,3.1e-05,-2.295013,-88.934229,38.929153,9.587657,-2.283475,-0.504765,0.783521,1.043475,-0.030589,0.077906,0.067057,-0.02531,-0.665771,-0.329834,0.123535,0.095872,-0.022845,-0.005089,1,0.00039,0.000335,-0.000127,-77.314586,-82.51958,-176.20742,9.359669,1.799506,1.669831,0.014696,0.144737,-0.137524,-0.032023,-0.030469,0.013818,-0.714355,0.081299,0.307373,0.093593,0.018004,0.01671,1,-0.00016,-0.000152,6.9e-05,50.333948 0.23 sec,Standing,unlabeled,1,1,217,248,26|27|28|29|30|31|32|20|21|22|23|24|25|26|27|28|29|30|31|32|33|19|20|21|22|23|24|25|26|27|29|30|31|32|33|34|18|19|20|21|22|23|24|25|26|27|30|31|32|33|34|18|19|20|21|22|23|24|25|26|27|30|31|32|18|19|20|21|22|23|24|25|26|27|30|31|32|33|18|19|20|21|22|23|24|25|26|27|30|31|32|19|20|21|22|31|30|31|32|33|34|18|19|20|21|22|23|24|25|26|27|34|18|19|20|21|22|23|24|25|26|27|31|32|34|19|20|21|22|23|24|25|26|27|33|34|19|20|21|22|23|24|25|26|27|20|21|22|23|24|25|26|27|31|32|21|22|23|25|26|27|29|30|31,12|12|12|12|12|12|12|13|13|13|13|13|13|13|13|13|13|13|13|13|13|14|14|14|14|14|14|14|14|14|14|14|14|14|14|14|15|15|15|15|15|15|15|15|15|15|15|15|15|15|15|16|16|16|16|16|16|16|16|16|16|16|16|16|17|17|17|17|17|17|17|17|17|17|17|17|17|17|18|18|18|18|18|18|18|18|18|18|18|18|18|19|19|19|19|19|30|30|30|30|30|31|31|31|31|31|31|31|31|31|31|31|32|32|32|32|32|32|32|32|32|32|32|32|32|33|33|33|33|33|33|33|33|33|33|33|34|34|34|34|34|34|34|34|34|35|35|35|35|35|35|35|35|35|35|36|36|36|36|36|36|36|36|36,5|7|5|5|5|4|2|3|5|7|4|4|6|5|7|4|4|5|4|3|3|3|5|6|7|6|4|6|5|5|2|3|2|3|3|2|3|2|4|5|4|4|3|6|4|4|2|3|2|2|2|2|2|4|3|4|4|4|5|4|4|2|2|2|3|2|3|3|4|3|4|4|3|2|2|2|2|2|3|3|2|3|4|4|2|3|3|2|4|3|4|4|3|3|2|2|2|3|2|2|2|3|5|5|5|5|4|3|4|4|3|3|3|4|5|6|6|6|5|7|5|4|3|2|2|3|3|5|5|6|5|7|7|5|2|2|3|4|6|6|6|3|7|7|4|3|6|5|5|4|5|8|3|4|2|3|4|3|3|8|3|2|2|3,R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L,9.82071,-0.031248,0.166003,0.028177,-0.008995,0.009431,-0.0052,0.014228,-0.002114,-0.805176,-0.116943,-0.425537,0.098207,-0.000313,0.001653,1,-2.6e-05,7.1e-05,-1.1e-05,-2.188315,-88.926286,38.821141,9.297199,-2.342802,-0.753565,0.806597,1.311432,-0.319319,0.204903,0.066118,-0.038794,-0.662354,-0.341553,0.119385,0.092965,-0.023438,-0.00759,0.999999,0.001025,0.000331,-0.000194,-76.866752,-82.531186,-176.537466,9.339881,1.786588,1.674735,0.022021,0.155238,-0.158392,-0.029369,-0.032177,0.018612,-0.712158,0.072754,0.306152,0.093394,0.017877,0.01676,1,-0.000147,-0.000161,9.3e-05,50.347119 0.24 sec,Standing,unlabeled,1,1,216,248,26|27|28|29|30|31|32|20|21|22|23|24|25|26|27|28|29|30|31|32|33|19|20|21|22|23|24|25|26|27|29|30|31|32|33|34|18|19|20|21|22|23|24|25|26|27|30|31|32|33|34|18|19|20|21|22|23|24|25|26|27|30|31|32|18|19|20|21|22|23|24|25|26|27|30|31|32|33|18|19|20|21|22|23|24|25|26|27|30|31|32|19|20|21|22|31|30|31|32|33|34|18|19|20|21|22|23|24|25|26|27|34|18|19|20|21|22|23|24|25|26|27|31|32|34|19|20|21|22|23|24|25|26|27|33|34|19|20|21|22|23|24|25|26|27|20|21|22|23|24|25|26|27|31|32|21|22|23|25|26|27|29|30|31,12|12|12|12|12|12|12|13|13|13|13|13|13|13|13|13|13|13|13|13|13|14|14|14|14|14|14|14|14|14|14|14|14|14|14|14|15|15|15|15|15|15|15|15|15|15|15|15|15|15|15|16|16|16|16|16|16|16|16|16|16|16|16|16|17|17|17|17|17|17|17|17|17|17|17|17|17|17|18|18|18|18|18|18|18|18|18|18|18|18|18|19|19|19|19|19|30|30|30|30|30|31|31|31|31|31|31|31|31|31|31|31|32|32|32|32|32|32|32|32|32|32|32|32|32|33|33|33|33|33|33|33|33|33|33|33|34|34|34|34|34|34|34|34|34|35|35|35|35|35|35|35|35|35|35|36|36|36|36|36|36|36|36|36,5|7|5|5|5|4|2|3|5|7|4|4|6|5|6|4|4|5|4|3|3|3|5|6|7|6|4|6|5|5|2|3|2|3|3|2|3|2|4|5|4|4|3|6|4|4|2|3|2|2|2|2|3|4|3|4|4|4|5|4|4|2|2|2|3|2|3|3|4|3|4|4|3|2|2|2|2|2|3|3|2|3|4|4|2|3|3|2|4|3|4|4|3|3|2|2|2|3|2|2|2|3|5|5|5|5|4|3|4|4|3|3|3|4|5|6|6|6|5|7|5|4|3|2|2|3|3|5|5|6|5|7|7|5|2|2|3|4|5|6|6|3|7|7|4|3|6|5|5|4|5|8|3|4|2|3|4|3|3|8|3|2|2|3,R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L,9.78516,-0.008265,0.169351,0.012373,0.00757,-0.026069,-0.004589,0.011519,-0.00106,-0.802734,-0.110596,-0.428711,0.097852,-8.3e-05,0.001688,1,-2.3e-05,5.8e-05,-5e-06,-2.118977,-88.920008,38.751183,9.091898,-2.208554,-0.797018,0.692116,1.327939,-0.542677,0.347506,0.039177,-0.054883,-0.660889,-0.33374,0.119141,0.090911,-0.022097,-0.008026,0.999998,0.001738,0.000196,-0.000274,-76.433814,-82.555147,-176.770368,9.343188,1.811385,1.55566,-0.072108,0.082649,-0.169849,-0.021633,-0.032137,0.016052,-0.710205,0.080078,0.30542,0.093428,0.018123,0.01557,1,-0.000108,-0.000161,8e-05,50.36857 0.25 sec,Standing,unlabeled,1,1,218,246,26|27|28|29|30|31|32|20|21|22|23|24|25|26|27|28|29|30|31|32|33|19|20|21|22|23|24|25|26|27|29|30|31|32|33|34|18|19|20|21|22|23|24|25|26|27|30|31|32|33|34|18|19|20|21|22|23|24|25|26|27|30|31|32|18|19|20|21|22|23|24|25|26|27|30|31|32|33|18|19|20|21|22|23|24|25|26|27|30|31|32|19|20|21|22|31|30|31|32|33|34|18|19|20|21|22|23|24|25|26|27|34|18|19|20|21|22|23|24|25|26|27|31|32|34|19|20|21|22|23|24|25|26|27|33|34|19|20|21|22|23|24|25|26|27|20|21|22|23|24|25|26|27|31|32|21|22|23|25|26|27|29|30|31,12|12|12|12|12|12|12|13|13|13|13|13|13|13|13|13|13|13|13|13|13|14|14|14|14|14|14|14|14|14|14|14|14|14|14|14|15|15|15|15|15|15|15|15|15|15|15|15|15|15|15|16|16|16|16|16|16|16|16|16|16|16|16|16|17|17|17|17|17|17|17|17|17|17|17|17|17|17|18|18|18|18|18|18|18|18|18|18|18|18|18|19|19|19|19|19|30|30|30|30|30|31|31|31|31|31|31|31|31|31|31|31|32|32|32|32|32|32|32|32|32|32|32|32|32|33|33|33|33|33|33|33|33|33|33|33|34|34|34|34|34|34|34|34|34|35|35|35|35|35|35|35|35|35|35|36|36|36|36|36|36|36|36|36,5|7|5|5|5|4|2|3|5|7|4|4|6|5|7|4|4|5|4|3|3|3|5|6|7|6|4|6|5|5|2|3|2|3|3|2|3|2|4|5|4|4|3|6|4|4|2|3|2|2|2|2|2|3|3|4|4|4|5|3|4|2|2|2|3|2|3|3|4|3|4|4|3|2|3|2|2|2|3|3|2|3|4|4|2|3|3|2|4|3|4|3|3|3|2|2|2|3|2|2|2|3|5|5|5|5|4|3|4|4|3|3|3|4|5|6|6|6|5|7|5|4|3|2|2|3|3|5|5|6|5|7|7|5|2|2|3|4|6|6|6|3|7|7|4|4|6|5|5|4|5|8|3|4|2|3|4|3|3|8|3|2|2|3,R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|R|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L|L,9.805707,-0.056056,0.186952,0.028016,-0.040468,-0.005162,-0.00798,0.011469,0.000449,-0.809814,-0.109131,-0.42334,0.098057,-0.00056,0.001864,1,-4e-05,5.7e-05,2e-06,-2.096907,-88.913586,38.726219,8.999874,-1.954163,-0.763326,0.471508,1.234034,-0.666432,0.473952,0.005899,-0.071645,-0.666016,-0.330322,0.123047,0.089992,-0.019556,-0.007682,0.999997,0.00237,2.9e-05,-0.000358,-76.050245,-82.592789,-176.880996,9.388565,1.839947,1.561015,-0.063316,0.063556,-0.119428,-0.008888,-0.029577,0.020518,-0.716064,0.083252,0.309326,0.093881,0.01841,0.015623,1,-4.4e-05,-0.000148,0.000103,50.386656 0.26 sec,Standing,unlabeled,1,1,217,250,26|27|28|29|30|31|32|20|21|22|23|24|25|26|27|28|29|30|31|32|33|19|20|21|22|23|24...
function S = mystring(C)
F = @(x) join(string(x),"|");
S = cellfun(F,C);
S(ismissing(S)) = ""; % optional
end
  7 Comments
Stephen23
Stephen23 on 13 Sep 2023
Edited: Stephen23 on 13 Sep 2023
I made a small change to the MYSTRING function, it works with your uploaded data:
S = load('T_reduced.mat');
T = S.T;
F = @(t) convertvars(t, regexpPattern("^Walkway.*","IgnoreCase",true), @mystring);
T = structfun(F,T, 'UniformOutput',false)
T = struct with fields:
Balance: [2435×8 timetable] HurriedPace: [2435×8 timetable] HurriedPace_mat: [2435×8 timetable] SelfPace: [2435×8 timetable] SelfPace_mat: [2435×8 timetable] SelfPace_matTURN: [2435×8 timetable] TUG: [2435×8 timetable] TandemGait: [2435×8 timetable]
The cause of the error is due to how different empty arrays are handled:
join(string(cell(0,0)),"|") % Not scalar -> error
ans = 0×1 empty string array
join(string(cell(1,0)),"|") % scalar
ans = <missing>
join(string(cell(0,1)),"|") % scalar
ans = <missing>
function S = mystring(C)
F = @(x) join(string(reshape(x,1,[])),"|"); % <- modified
S = cellfun(F,C);
S(ismissing(S)) = ""; % optional
end
Kimberly Kontson
Kimberly Kontson on 14 Sep 2023
This is working. Thank you so very, very much for the assistance!!

Sign in to comment.

More Answers (0)

Categories

Find more on Data Type Conversion in Help Center and File Exchange

Products


Release

R2021b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!